diff --git a/CMakeLists.txt b/CMakeLists.txt index 180cd20..6ff555b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,5 @@ cmake_minimum_required(VERSION 3.5) +include(cmake/color.cmake) set(BLT_VERSION 0.11.3) set(BLT_TEST_VERSION 0.0.1) @@ -30,48 +31,50 @@ option(BLT_DISABLE_FATAL "Disable blt::logging BLT_FATAL macro" OFF) configure_file(include/blt/config.h.in config/blt/config.h @ONLY) -if(${BUILD_STD} OR ${BUILD_PROFILING}) - message("Building STD") +message("Enabling library compilation") +if (${BUILD_STD} OR ${BUILD_PROFILING}) + message("-- Building ${Yellow}standard${ColourReset} cxx files") file(GLOB_RECURSE STD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/blt/std/*.cpp") -else() +else () set(STD_FILES "") -endif() +endif () -if(${BUILD_PROFILING}) - message("Building Profiling") +if (${BUILD_PROFILING}) + message("-- Building ${Yellow}profiling${ColourReset} cxx files") file(GLOB_RECURSE PROFILING_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/blt/profiling/*.cpp") -else() - message("We are not building profiling") +else () set(PROFILING_FILES "") -endif() +endif () -if(${BUILD_FS}) - message("Building FS") +if (${BUILD_FS}) + message("-- Building ${Yellow}filesystem${ColourReset} cxx files") file(GLOB_RECURSE FS_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/blt/fs/*.cpp") -else() +else () set(FS_FILES "") -endif() +endif () -if(${BUILD_PARSE}) - message("Building Parsers") +if (${BUILD_PARSE}) + message("-- Building ${Yellow}parser${ColourReset} cxx files") file(GLOB_RECURSE PARSE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/blt/parse/*.cpp") -else() +else () set(PARSE_FILES "") -endif() +endif () -if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap) - message("Found Parallel Hashmaps") +if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap) + message("Found Parallel Hashmaps library, using ${Yellow}phmap${ColourReset} over ${Red}std::unordered_map${ColourReset}") include_directories(${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap) -endif() +else() + message("Parallel Hashmaps library not found! using ${Yellow}std::unordered_map${ColourReset}") +endif () #include zlib if the user has it. find_package(ZLIB QUIET) if (${ZLIB_FOUND}) include_directories(${ZLIB_INCLUDE_DIRS}) -else() +else () message("ZLIB was not found, this is fine however if you wish you use gzip with NBT it is required.") -endif() +endif () include_directories(include/) include_directories(${CMAKE_CURRENT_BINARY_DIR}/config/) @@ -82,41 +85,30 @@ message("FS Files ${FS_FILES}") message("Parser Files ${PARSE_FILES}") message("Source: ${CMAKE_SOURCE_DIR}") message("Current Source: ${CMAKE_CURRENT_SOURCE_DIR}") +message("Binary: ${CMAKE_BINARY_DIR}") +message("Current Binary: ${CMAKE_CURRENT_BINARY_DIR}") add_library(${BLT_TARGET} ${STD_FILES} ${PROFILING_FILES} ${FS_FILES} ${PARSE_FILES}) -if(${ZLIB_FOUND}) +if (${ZLIB_FOUND}) target_link_libraries(${BLT_TARGET} PUBLIC ZLIB::ZLIB) -endif() -if (!MSVC) -target_link_libraries(${BLT_TARGET} PUBLIC stdc++fs) -endif() +endif () + +include(cmake/warnings.cmake) target_include_directories(${BLT_TARGET} PUBLIC include/) target_include_directories(${BLT_TARGET} PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/config/) -if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap) - message("Including phmap") +if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap) + message("Including Parallel Hashmap directory") target_include_directories(${BLT_TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap) -endif() +endif () -if(MSVC) - #target_compile_options(${BLT_TARGET} PRIVATE /W4) -else() - # perhaps we should warn on unused variables, but BLT will have lots of them. - target_compile_options(${BLT_TARGET} PRIVATE -Wall -Wextra -Wpedantic) - target_link_options(${BLT_TARGET} PUBLIC -rdynamic) -endif() - -message("BLT ${CMAKE_PROJECT_VERSION} Successfully included!") - -if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") - include(GNUInstallDirs) -endif() +message("BLT ${Yellow}${BLT_VERSION}${ColourReset} Successfully included!") message("Installing to ${CMAKE_INSTALL_LIBDIR} with headers at ${CMAKE_INSTALL_INCLUDEDIR}") file(GLOB_RECURSE BLT_HEADER_FILES "${CMAKE_CURRENT_SOURCE_DIR}/include/*.h") -foreach(S ${BLT_HEADER_FILES}) +foreach (S ${BLT_HEADER_FILES}) string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/include/" "" SO ${S}) string(REGEX REPLACE "\/[A-Z|a-z|0-9|_|-]*\\.h" "/" SA ${SO}) list(APPEND BLT_F_HEADERS ${SA}) @@ -125,7 +117,7 @@ endforeach () install(FILES ${CMAKE_BINARY_DIR}/config/blt/config.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/blt/) -set_target_properties(${BLT_TARGET} PROPERTIES VERSION ${PROJECT_VERSION}) +set_target_properties(${BLT_TARGET} PROPERTIES VERSION ${BLT_VERSION}) set_target_properties(${BLT_TARGET} PROPERTIES SOVERSION ${PROJECT_VERSION_MAJOR}) install(TARGETS ${BLT_TARGET} @@ -133,8 +125,8 @@ install(TARGETS ${BLT_TARGET} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) -if(${BUILD_TESTS}) - message("Building test") +if (${BUILD_TESTS}) + message("Building test version ${BLT_TEST_VERSION}") project(BLT_TESTS VERSION ${BLT_TEST_VERSION}) include_directories(tests/include) @@ -147,28 +139,10 @@ if(${BUILD_TESTS}) target_link_libraries(BLT_TESTS BLT) - if(MSVC) + include(cmake/warnings.cmake) + include(cmake/sanitizers.cmake) - else() - target_compile_options(BLT_TESTS PRIVATE -Wall -Werror -Wpedantic -Wno-comment) - target_link_options(BLT_TESTS PRIVATE -Wall -Werror -Wpedantic -Wno-comment) - endif() - - if (${ENABLE_ADDRSAN} MATCHES ON) - target_compile_options(BLT_TESTS PRIVATE -fsanitize=address) - target_link_options(BLT_TESTS PRIVATE -fsanitize=address) - endif () - - if (${ENABLE_UBSAN} MATCHES ON) - target_compile_options(BLT_TESTS PRIVATE -fsanitize=undefined) - target_link_options(BLT_TESTS PRIVATE -fsanitize=undefined) - endif () - - if (${ENABLE_TSAN} MATCHES ON) - target_compile_options(BLT_TESTS PRIVATE -fsanitize=thread) - target_link_options(BLT_TESTS PRIVATE -fsanitize=thread) - endif () message("Built tests") -endif() +endif () project(BLT) \ No newline at end of file diff --git a/cmake/color.cmake b/cmake/color.cmake new file mode 100644 index 0000000..64453e4 --- /dev/null +++ b/cmake/color.cmake @@ -0,0 +1,19 @@ +if(NOT WIN32) + string(ASCII 27 Esc) + set(ColourReset "${Esc}[m") + set(ColourBold "${Esc}[1m") + set(Red "${Esc}[31m") + set(Green "${Esc}[32m") + set(Yellow "${Esc}[33m") + set(Blue "${Esc}[34m") + set(Magenta "${Esc}[35m") + set(Cyan "${Esc}[36m") + set(White "${Esc}[37m") + set(BoldRed "${Esc}[1;31m") + set(BoldGreen "${Esc}[1;32m") + set(BoldYellow "${Esc}[1;33m") + set(BoldBlue "${Esc}[1;34m") + set(BoldMagenta "${Esc}[1;35m") + set(BoldCyan "${Esc}[1;36m") + set(BoldWhite "${Esc}[1;37m") +endif() \ No newline at end of file diff --git a/cmake/sanitizers.cmake b/cmake/sanitizers.cmake new file mode 100644 index 0000000..888b1fc --- /dev/null +++ b/cmake/sanitizers.cmake @@ -0,0 +1,58 @@ +include(cmake/color.cmake) +message("Enabling requested sanitizers for ${PROJECT_NAME}") +if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + # using Clang + if (${ENABLE_ADDRSAN} MATCHES ON) + message("-- Using Clang address sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=address) + target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address) + endif () + + if (${ENABLE_UBSAN} MATCHES ON) + message("-- Using Clang undefined behaviour sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined) + target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined) + endif () + + if (${ENABLE_TSAN} MATCHES ON) + message("-- Using Clang thread sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=thread) + target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=thread) + endif () +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + # using GCC + if (${ENABLE_ADDRSAN} MATCHES ON) + message("-- Using GCC address sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=address) + target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address) + endif () + + if (${ENABLE_UBSAN} MATCHES ON) + message("-- Using GCC undefined behaviour sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined) + target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=undefined) + endif () + + if (${ENABLE_TSAN} MATCHES ON) + message("-- Using GCC thread sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE -fsanitize=thread) + target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=thread) + endif () +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel") + # using Intel C++ +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + # using Visual Studio C++ + if (${ENABLE_ADDRSAN} MATCHES ON) + message("-- Using GCC address sanitizer") + target_compile_options(${PROJECT_NAME} PRIVATE /fsanitize=address) + target_link_options(${PROJECT_NAME} PRIVATE /fsanitize=address) + endif () + + if (${ENABLE_UBSAN} MATCHES ON) + message("-- ${Red}Undefined behaviour sanitizer not supported on this platform${ColourReset}") + endif () + + if (${ENABLE_TSAN} MATCHES ON) + message("-- ${Red}Thread sanitizer not supported on this platform${ColourReset}") + endif () +endif () \ No newline at end of file diff --git a/cmake/warnings.cmake b/cmake/warnings.cmake new file mode 100644 index 0000000..e99bd09 --- /dev/null +++ b/cmake/warnings.cmake @@ -0,0 +1,28 @@ +include(cmake/color.cmake) +message("Enabling platform specific compile options for ${PROJECT_NAME}") +if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + # using Clang + message("-- Clang Compile: ${Green}-Wall -Wextra -Wpedantic -Weverything -fdiagnostics-color=always${ColourReset}") + message("-- Clang Link: ${Green}-export_dynamic${ColourReset}") + message("-- Clang libs: ${Green}stdc++fs${ColourReset}") + target_compile_options(${PROJECT_NAME} PUBLIC -Wall -Wextra -Wpedantic -Weverything -fdiagnostics-color=always) + target_link_options(${PROJECT_NAME} PUBLIC -export_dynamic) + target_link_libraries(${PROJECT_NAME} PUBLIC stdc++fs) +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + # using GCC + message("-- GCC Compile: ${Green}-Wall -Wextra -Wpedantic -fdiagnostics-color=always${ColourReset}") + message("-- GCC Link: ${Green}-rdynamic${ColourReset}") + message("-- GCC libs: ${Green}stdc++fs${ColourReset}") + target_compile_options(${PROJECT_NAME} PUBLIC -Wall -Wextra -Wpedantic -fdiagnostics-color=always) + target_link_options(${PROJECT_NAME} PUBLIC -rdynamic) + target_link_libraries(${PROJECT_NAME} PUBLIC stdc++fs) + include(GNUInstallDirs) +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel") + # using Intel C++ +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + # using Visual Studio C++ + message("-- MSVC Compile: ${Green}/Wall${ColourReset}") + message("-- MSVC Link: ${Green}${ColourReset}") + message("-- MSVC libs: ${Green}${ColourReset}") + target_compile_options(${PROJECT_NAME} PUBLIC /Wall) +endif () \ No newline at end of file diff --git a/include/blt/unicode_emoji.h b/include/blt/unicode_emoji.h new file mode 100644 index 0000000..53cb232 --- /dev/null +++ b/include/blt/unicode_emoji.h @@ -0,0 +1,5736 @@ +#pragma once + +#ifndef BLT_UNICODE_EMOJI + +namespace blt { + +/** + * @brief Emoji unicodes. + * + * @note The unicode emojis in this namespace are auto-generated from https://raw.githubusercontent.com/ArkinSolomon/discord-emoji-converter/master/emojis.json + * @note This file was taken from DPP (https://github.com/brainboxdotcc/DPP) + */ +namespace unicode_emoji { + inline constexpr const char _100[] = "๐Ÿ’ฏ"; + inline constexpr const char _1234[] = "๐Ÿ”ข"; + inline constexpr const char soccer[] = "โšฝ"; + inline constexpr const char soccer_ball[] = "โšฝ"; + inline constexpr const char basketball[] = "๐Ÿ€"; + inline constexpr const char football[] = "๐Ÿˆ"; + inline constexpr const char baseball[] = "โšพ"; + inline constexpr const char softball[] = "๐ŸฅŽ"; + inline constexpr const char tennis[] = "๐ŸŽพ"; + inline constexpr const char volleyball[] = "๐Ÿ"; + inline constexpr const char rugby_football[] = "๐Ÿ‰"; + inline constexpr const char flying_disc[] = "๐Ÿฅ"; + inline constexpr const char _8ball[] = "๐ŸŽฑ"; + inline constexpr const char yo_yo[] = "๐Ÿช€"; + inline constexpr const char ping_pong[] = "๐Ÿ“"; + inline constexpr const char table_tennis[] = "๐Ÿ“"; + inline constexpr const char badminton[] = "๐Ÿธ"; + inline constexpr const char hockey[] = "๐Ÿ’"; + inline constexpr const char ice_hockey[] = "๐Ÿ’"; + inline constexpr const char field_hockey[] = "๐Ÿ‘"; + inline constexpr const char lacrosse[] = "๐Ÿฅ"; + inline constexpr const char cricket_game[] = "๐Ÿ"; + inline constexpr const char cricket_bat_ball[] = "๐Ÿ"; + inline constexpr const char boomerang[] = "๐Ÿชƒ"; + inline constexpr const char goal[] = "๐Ÿฅ…"; + inline constexpr const char goal_net[] = "๐Ÿฅ…"; + inline constexpr const char golf[] = "โ›ณ"; + inline constexpr const char flag_in_hole[] = "โ›ณ"; + inline constexpr const char kite[] = "๐Ÿช"; + inline constexpr const char playground_slide[] = "๐Ÿ›"; + inline constexpr const char bow_and_arrow[] = "๐Ÿน"; + inline constexpr const char archery[] = "๐Ÿน"; + inline constexpr const char fishing_pole_and_fish[] = "๐ŸŽฃ"; + inline constexpr const char fishing_pole[] = "๐ŸŽฃ"; + inline constexpr const char diving_mask[] = "๐Ÿคฟ"; + inline constexpr const char boxing_glove[] = "๐ŸฅŠ"; + inline constexpr const char boxing_gloves[] = "๐ŸฅŠ"; + inline constexpr const char martial_arts_uniform[] = "๐Ÿฅ‹"; + inline constexpr const char karate_uniform[] = "๐Ÿฅ‹"; + inline constexpr const char running_shirt_with_sash[] = "๐ŸŽฝ"; + inline constexpr const char running_shirt[] = "๐ŸŽฝ"; + inline constexpr const char skateboard[] = "๐Ÿ›น"; + inline constexpr const char roller_skate[] = "๐Ÿ›ผ"; + inline constexpr const char sled[] = "๐Ÿ›ท"; + inline constexpr const char ice_skate[] = "โ›ธ๏ธ"; + inline constexpr const char curling_stone[] = "๐ŸฅŒ"; + inline constexpr const char ski[] = "๐ŸŽฟ"; + inline constexpr const char skis[] = "๐ŸŽฟ"; + inline constexpr const char skier[] = "โ›ท๏ธ"; + inline constexpr const char snowboarder[] = "๐Ÿ‚"; + inline constexpr const char snowboarder_tone1[] = "๐Ÿ‚๐Ÿป"; + inline constexpr const char snowboarder_light_skin_tone[] = "๐Ÿ‚๐Ÿป"; + inline constexpr const char snowboarder_tone2[] = "๐Ÿ‚๐Ÿผ"; + inline constexpr const char snowboarder_medium_light_skin_tone[] = "๐Ÿ‚๐Ÿผ"; + inline constexpr const char snowboarder_tone3[] = "๐Ÿ‚๐Ÿฝ"; + inline constexpr const char snowboarder_medium_skin_tone[] = "๐Ÿ‚๐Ÿฝ"; + inline constexpr const char snowboarder_tone4[] = "๐Ÿ‚๐Ÿพ"; + inline constexpr const char snowboarder_medium_dark_skin_tone[] = "๐Ÿ‚๐Ÿพ"; + inline constexpr const char snowboarder_tone5[] = "๐Ÿ‚๐Ÿฟ"; + inline constexpr const char snowboarder_dark_skin_tone[] = "๐Ÿ‚๐Ÿฟ"; + inline constexpr const char parachute[] = "๐Ÿช‚"; + inline constexpr const char person_lifting_weights[] = "๐Ÿ‹๏ธ"; + inline constexpr const char lifter[] = "๐Ÿ‹๏ธ"; + inline constexpr const char weight_lifter[] = "๐Ÿ‹๏ธ"; + inline constexpr const char person_lifting_weights_tone1[] = "๐Ÿ‹๐Ÿป"; + inline constexpr const char lifter_tone1[] = "๐Ÿ‹๐Ÿป"; + inline constexpr const char weight_lifter_tone1[] = "๐Ÿ‹๐Ÿป"; + inline constexpr const char person_lifting_weights_tone2[] = "๐Ÿ‹๐Ÿผ"; + inline constexpr const char lifter_tone2[] = "๐Ÿ‹๐Ÿผ"; + inline constexpr const char weight_lifter_tone2[] = "๐Ÿ‹๐Ÿผ"; + inline constexpr const char person_lifting_weights_tone3[] = "๐Ÿ‹๐Ÿฝ"; + inline constexpr const char lifter_tone3[] = "๐Ÿ‹๐Ÿฝ"; + inline constexpr const char weight_lifter_tone3[] = "๐Ÿ‹๐Ÿฝ"; + inline constexpr const char person_lifting_weights_tone4[] = "๐Ÿ‹๐Ÿพ"; + inline constexpr const char lifter_tone4[] = "๐Ÿ‹๐Ÿพ"; + inline constexpr const char weight_lifter_tone4[] = "๐Ÿ‹๐Ÿพ"; + inline constexpr const char person_lifting_weights_tone5[] = "๐Ÿ‹๐Ÿฟ"; + inline constexpr const char lifter_tone5[] = "๐Ÿ‹๐Ÿฟ"; + inline constexpr const char weight_lifter_tone5[] = "๐Ÿ‹๐Ÿฟ"; + inline constexpr const char woman_lifting_weights[] = "๐Ÿ‹๏ธโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_tone1[] = "๐Ÿ‹๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_light_skin_tone[] = "๐Ÿ‹๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_tone2[] = "๐Ÿ‹๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_medium_light_skin_tone[] = "๐Ÿ‹๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_tone3[] = "๐Ÿ‹๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_medium_skin_tone[] = "๐Ÿ‹๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_tone4[] = "๐Ÿ‹๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_medium_dark_skin_tone[] = "๐Ÿ‹๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_tone5[] = "๐Ÿ‹๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_lifting_weights_dark_skin_tone[] = "๐Ÿ‹๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_lifting_weights[] = "๐Ÿ‹๏ธโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_tone1[] = "๐Ÿ‹๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_light_skin_tone[] = "๐Ÿ‹๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_tone2[] = "๐Ÿ‹๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_medium_light_skin_tone[] = "๐Ÿ‹๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_tone3[] = "๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_medium_skin_tone[] = "๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_tone4[] = "๐Ÿ‹๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_medium_dark_skin_tone[] = "๐Ÿ‹๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_tone5[] = "๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_lifting_weights_dark_skin_tone[] = "๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char people_wrestling[] = "๐Ÿคผ"; + inline constexpr const char wrestlers[] = "๐Ÿคผ"; + inline constexpr const char wrestling[] = "๐Ÿคผ"; + inline constexpr const char women_wrestling[] = "๐Ÿคผโ€โ™€๏ธ"; + inline constexpr const char men_wrestling[] = "๐Ÿคผโ€โ™‚๏ธ"; + inline constexpr const char person_doing_cartwheel[] = "๐Ÿคธ"; + inline constexpr const char cartwheel[] = "๐Ÿคธ"; + inline constexpr const char person_doing_cartwheel_tone1[] = "๐Ÿคธ๐Ÿป"; + inline constexpr const char cartwheel_tone1[] = "๐Ÿคธ๐Ÿป"; + inline constexpr const char person_doing_cartwheel_tone2[] = "๐Ÿคธ๐Ÿผ"; + inline constexpr const char cartwheel_tone2[] = "๐Ÿคธ๐Ÿผ"; + inline constexpr const char person_doing_cartwheel_tone3[] = "๐Ÿคธ๐Ÿฝ"; + inline constexpr const char cartwheel_tone3[] = "๐Ÿคธ๐Ÿฝ"; + inline constexpr const char person_doing_cartwheel_tone4[] = "๐Ÿคธ๐Ÿพ"; + inline constexpr const char cartwheel_tone4[] = "๐Ÿคธ๐Ÿพ"; + inline constexpr const char person_doing_cartwheel_tone5[] = "๐Ÿคธ๐Ÿฟ"; + inline constexpr const char cartwheel_tone5[] = "๐Ÿคธ๐Ÿฟ"; + inline constexpr const char woman_cartwheeling[] = "๐Ÿคธโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_tone1[] = "๐Ÿคธ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_light_skin_tone[] = "๐Ÿคธ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_tone2[] = "๐Ÿคธ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_medium_light_skin_tone[] = "๐Ÿคธ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_tone3[] = "๐Ÿคธ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_medium_skin_tone[] = "๐Ÿคธ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_tone4[] = "๐Ÿคธ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_medium_dark_skin_tone[] = "๐Ÿคธ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_tone5[] = "๐Ÿคธ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_cartwheeling_dark_skin_tone[] = "๐Ÿคธ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_cartwheeling[] = "๐Ÿคธโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_tone1[] = "๐Ÿคธ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_light_skin_tone[] = "๐Ÿคธ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_tone2[] = "๐Ÿคธ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_medium_light_skin_tone[] = "๐Ÿคธ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_tone3[] = "๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_medium_skin_tone[] = "๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_tone4[] = "๐Ÿคธ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_medium_dark_skin_tone[] = "๐Ÿคธ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_tone5[] = "๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_cartwheeling_dark_skin_tone[] = "๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_bouncing_ball[] = "โ›น๏ธ"; + inline constexpr const char basketball_player[] = "โ›น๏ธ"; + inline constexpr const char person_with_ball[] = "โ›น๏ธ"; + inline constexpr const char person_bouncing_ball_tone1[] = "โ›น๐Ÿป"; + inline constexpr const char basketball_player_tone1[] = "โ›น๐Ÿป"; + inline constexpr const char person_with_ball_tone1[] = "โ›น๐Ÿป"; + inline constexpr const char person_bouncing_ball_tone2[] = "โ›น๐Ÿผ"; + inline constexpr const char basketball_player_tone2[] = "โ›น๐Ÿผ"; + inline constexpr const char person_with_ball_tone2[] = "โ›น๐Ÿผ"; + inline constexpr const char person_bouncing_ball_tone3[] = "โ›น๐Ÿฝ"; + inline constexpr const char basketball_player_tone3[] = "โ›น๐Ÿฝ"; + inline constexpr const char person_with_ball_tone3[] = "โ›น๐Ÿฝ"; + inline constexpr const char person_bouncing_ball_tone4[] = "โ›น๐Ÿพ"; + inline constexpr const char basketball_player_tone4[] = "โ›น๐Ÿพ"; + inline constexpr const char person_with_ball_tone4[] = "โ›น๐Ÿพ"; + inline constexpr const char person_bouncing_ball_tone5[] = "โ›น๐Ÿฟ"; + inline constexpr const char basketball_player_tone5[] = "โ›น๐Ÿฟ"; + inline constexpr const char person_with_ball_tone5[] = "โ›น๐Ÿฟ"; + inline constexpr const char woman_bouncing_ball[] = "โ›น๏ธโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_tone1[] = "โ›น๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_light_skin_tone[] = "โ›น๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_tone2[] = "โ›น๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_medium_light_skin_tone[] = "โ›น๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_tone3[] = "โ›น๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_medium_skin_tone[] = "โ›น๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_tone4[] = "โ›น๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_medium_dark_skin_tone[] = "โ›น๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_tone5[] = "โ›น๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_bouncing_ball_dark_skin_tone[] = "โ›น๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_bouncing_ball[] = "โ›น๏ธโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_tone1[] = "โ›น๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_light_skin_tone[] = "โ›น๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_tone2[] = "โ›น๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_medium_light_skin_tone[] = "โ›น๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_tone3[] = "โ›น๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_medium_skin_tone[] = "โ›น๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_tone4[] = "โ›น๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_medium_dark_skin_tone[] = "โ›น๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_tone5[] = "โ›น๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_bouncing_ball_dark_skin_tone[] = "โ›น๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_fencing[] = "๐Ÿคบ"; + inline constexpr const char fencer[] = "๐Ÿคบ"; + inline constexpr const char fencing[] = "๐Ÿคบ"; + inline constexpr const char person_playing_handball[] = "๐Ÿคพ"; + inline constexpr const char handball[] = "๐Ÿคพ"; + inline constexpr const char person_playing_handball_tone1[] = "๐Ÿคพ๐Ÿป"; + inline constexpr const char handball_tone1[] = "๐Ÿคพ๐Ÿป"; + inline constexpr const char person_playing_handball_tone2[] = "๐Ÿคพ๐Ÿผ"; + inline constexpr const char handball_tone2[] = "๐Ÿคพ๐Ÿผ"; + inline constexpr const char person_playing_handball_tone3[] = "๐Ÿคพ๐Ÿฝ"; + inline constexpr const char handball_tone3[] = "๐Ÿคพ๐Ÿฝ"; + inline constexpr const char person_playing_handball_tone4[] = "๐Ÿคพ๐Ÿพ"; + inline constexpr const char handball_tone4[] = "๐Ÿคพ๐Ÿพ"; + inline constexpr const char person_playing_handball_tone5[] = "๐Ÿคพ๐Ÿฟ"; + inline constexpr const char handball_tone5[] = "๐Ÿคพ๐Ÿฟ"; + inline constexpr const char woman_playing_handball[] = "๐Ÿคพโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_tone1[] = "๐Ÿคพ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_light_skin_tone[] = "๐Ÿคพ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_tone2[] = "๐Ÿคพ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_medium_light_skin_tone[] = "๐Ÿคพ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_tone3[] = "๐Ÿคพ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_medium_skin_tone[] = "๐Ÿคพ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_tone4[] = "๐Ÿคพ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_medium_dark_skin_tone[] = "๐Ÿคพ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_tone5[] = "๐Ÿคพ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_playing_handball_dark_skin_tone[] = "๐Ÿคพ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_playing_handball[] = "๐Ÿคพโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_tone1[] = "๐Ÿคพ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_light_skin_tone[] = "๐Ÿคพ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_tone2[] = "๐Ÿคพ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_medium_light_skin_tone[] = "๐Ÿคพ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_tone3[] = "๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_medium_skin_tone[] = "๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_tone4[] = "๐Ÿคพ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_medium_dark_skin_tone[] = "๐Ÿคพ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_tone5[] = "๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_playing_handball_dark_skin_tone[] = "๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_golfing[] = "๐ŸŒ๏ธ"; + inline constexpr const char golfer[] = "๐ŸŒ๏ธ"; + inline constexpr const char person_golfing_tone1[] = "๐ŸŒ๐Ÿป"; + inline constexpr const char person_golfing_light_skin_tone[] = "๐ŸŒ๐Ÿป"; + inline constexpr const char person_golfing_tone2[] = "๐ŸŒ๐Ÿผ"; + inline constexpr const char person_golfing_medium_light_skin_tone[] = "๐ŸŒ๐Ÿผ"; + inline constexpr const char person_golfing_tone3[] = "๐ŸŒ๐Ÿฝ"; + inline constexpr const char person_golfing_medium_skin_tone[] = "๐ŸŒ๐Ÿฝ"; + inline constexpr const char person_golfing_tone4[] = "๐ŸŒ๐Ÿพ"; + inline constexpr const char person_golfing_medium_dark_skin_tone[] = "๐ŸŒ๐Ÿพ"; + inline constexpr const char person_golfing_tone5[] = "๐ŸŒ๐Ÿฟ"; + inline constexpr const char person_golfing_dark_skin_tone[] = "๐ŸŒ๐Ÿฟ"; + inline constexpr const char woman_golfing[] = "๐ŸŒ๏ธโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_tone1[] = "๐ŸŒ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_light_skin_tone[] = "๐ŸŒ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_tone2[] = "๐ŸŒ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_medium_light_skin_tone[] = "๐ŸŒ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_tone3[] = "๐ŸŒ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_medium_skin_tone[] = "๐ŸŒ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_tone4[] = "๐ŸŒ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_medium_dark_skin_tone[] = "๐ŸŒ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_tone5[] = "๐ŸŒ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_golfing_dark_skin_tone[] = "๐ŸŒ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_golfing[] = "๐ŸŒ๏ธโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_tone1[] = "๐ŸŒ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_light_skin_tone[] = "๐ŸŒ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_tone2[] = "๐ŸŒ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_medium_light_skin_tone[] = "๐ŸŒ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_tone3[] = "๐ŸŒ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_medium_skin_tone[] = "๐ŸŒ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_tone4[] = "๐ŸŒ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_medium_dark_skin_tone[] = "๐ŸŒ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_tone5[] = "๐ŸŒ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_golfing_dark_skin_tone[] = "๐ŸŒ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char horse_racing[] = "๐Ÿ‡"; + inline constexpr const char horse_racing_tone1[] = "๐Ÿ‡๐Ÿป"; + inline constexpr const char horse_racing_tone2[] = "๐Ÿ‡๐Ÿผ"; + inline constexpr const char horse_racing_tone3[] = "๐Ÿ‡๐Ÿฝ"; + inline constexpr const char horse_racing_tone4[] = "๐Ÿ‡๐Ÿพ"; + inline constexpr const char horse_racing_tone5[] = "๐Ÿ‡๐Ÿฟ"; + inline constexpr const char person_in_lotus_position[] = "๐Ÿง˜"; + inline constexpr const char person_in_lotus_position_tone1[] = "๐Ÿง˜๐Ÿป"; + inline constexpr const char person_in_lotus_position_light_skin_tone[] = "๐Ÿง˜๐Ÿป"; + inline constexpr const char person_in_lotus_position_tone2[] = "๐Ÿง˜๐Ÿผ"; + inline constexpr const char person_in_lotus_position_medium_light_skin_tone[] = "๐Ÿง˜๐Ÿผ"; + inline constexpr const char person_in_lotus_position_tone3[] = "๐Ÿง˜๐Ÿฝ"; + inline constexpr const char person_in_lotus_position_medium_skin_tone[] = "๐Ÿง˜๐Ÿฝ"; + inline constexpr const char person_in_lotus_position_tone4[] = "๐Ÿง˜๐Ÿพ"; + inline constexpr const char person_in_lotus_position_medium_dark_skin_tone[] = "๐Ÿง˜๐Ÿพ"; + inline constexpr const char person_in_lotus_position_tone5[] = "๐Ÿง˜๐Ÿฟ"; + inline constexpr const char person_in_lotus_position_dark_skin_tone[] = "๐Ÿง˜๐Ÿฟ"; + inline constexpr const char woman_in_lotus_position[] = "๐Ÿง˜โ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_tone1[] = "๐Ÿง˜๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_light_skin_tone[] = "๐Ÿง˜๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_tone2[] = "๐Ÿง˜๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_medium_light_skin_tone[] = "๐Ÿง˜๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_tone3[] = "๐Ÿง˜๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_medium_skin_tone[] = "๐Ÿง˜๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_tone4[] = "๐Ÿง˜๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_medium_dark_skin_tone[] = "๐Ÿง˜๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_tone5[] = "๐Ÿง˜๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_in_lotus_position_dark_skin_tone[] = "๐Ÿง˜๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_in_lotus_position[] = "๐Ÿง˜โ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_tone1[] = "๐Ÿง˜๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_light_skin_tone[] = "๐Ÿง˜๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_tone2[] = "๐Ÿง˜๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_medium_light_skin_tone[] = "๐Ÿง˜๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_tone3[] = "๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_medium_skin_tone[] = "๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_tone4[] = "๐Ÿง˜๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_medium_dark_skin_tone[] = "๐Ÿง˜๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_tone5[] = "๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_in_lotus_position_dark_skin_tone[] = "๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_surfing[] = "๐Ÿ„"; + inline constexpr const char surfer[] = "๐Ÿ„"; + inline constexpr const char person_surfing_tone1[] = "๐Ÿ„๐Ÿป"; + inline constexpr const char surfer_tone1[] = "๐Ÿ„๐Ÿป"; + inline constexpr const char person_surfing_tone2[] = "๐Ÿ„๐Ÿผ"; + inline constexpr const char surfer_tone2[] = "๐Ÿ„๐Ÿผ"; + inline constexpr const char person_surfing_tone3[] = "๐Ÿ„๐Ÿฝ"; + inline constexpr const char surfer_tone3[] = "๐Ÿ„๐Ÿฝ"; + inline constexpr const char person_surfing_tone4[] = "๐Ÿ„๐Ÿพ"; + inline constexpr const char surfer_tone4[] = "๐Ÿ„๐Ÿพ"; + inline constexpr const char person_surfing_tone5[] = "๐Ÿ„๐Ÿฟ"; + inline constexpr const char surfer_tone5[] = "๐Ÿ„๐Ÿฟ"; + inline constexpr const char woman_surfing[] = "๐Ÿ„โ€โ™€๏ธ"; + inline constexpr const char woman_surfing_tone1[] = "๐Ÿ„๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_light_skin_tone[] = "๐Ÿ„๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_tone2[] = "๐Ÿ„๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_medium_light_skin_tone[] = "๐Ÿ„๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_tone3[] = "๐Ÿ„๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_medium_skin_tone[] = "๐Ÿ„๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_tone4[] = "๐Ÿ„๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_medium_dark_skin_tone[] = "๐Ÿ„๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_tone5[] = "๐Ÿ„๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_surfing_dark_skin_tone[] = "๐Ÿ„๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_surfing[] = "๐Ÿ„โ€โ™‚๏ธ"; + inline constexpr const char man_surfing_tone1[] = "๐Ÿ„๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_light_skin_tone[] = "๐Ÿ„๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_tone2[] = "๐Ÿ„๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_medium_light_skin_tone[] = "๐Ÿ„๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_tone3[] = "๐Ÿ„๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_medium_skin_tone[] = "๐Ÿ„๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_tone4[] = "๐Ÿ„๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_medium_dark_skin_tone[] = "๐Ÿ„๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_tone5[] = "๐Ÿ„๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_surfing_dark_skin_tone[] = "๐Ÿ„๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_swimming[] = "๐ŸŠ"; + inline constexpr const char swimmer[] = "๐ŸŠ"; + inline constexpr const char person_swimming_tone1[] = "๐ŸŠ๐Ÿป"; + inline constexpr const char swimmer_tone1[] = "๐ŸŠ๐Ÿป"; + inline constexpr const char person_swimming_tone2[] = "๐ŸŠ๐Ÿผ"; + inline constexpr const char swimmer_tone2[] = "๐ŸŠ๐Ÿผ"; + inline constexpr const char person_swimming_tone3[] = "๐ŸŠ๐Ÿฝ"; + inline constexpr const char swimmer_tone3[] = "๐ŸŠ๐Ÿฝ"; + inline constexpr const char person_swimming_tone4[] = "๐ŸŠ๐Ÿพ"; + inline constexpr const char swimmer_tone4[] = "๐ŸŠ๐Ÿพ"; + inline constexpr const char person_swimming_tone5[] = "๐ŸŠ๐Ÿฟ"; + inline constexpr const char swimmer_tone5[] = "๐ŸŠ๐Ÿฟ"; + inline constexpr const char woman_swimming[] = "๐ŸŠโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_tone1[] = "๐ŸŠ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_light_skin_tone[] = "๐ŸŠ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_tone2[] = "๐ŸŠ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_medium_light_skin_tone[] = "๐ŸŠ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_tone3[] = "๐ŸŠ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_medium_skin_tone[] = "๐ŸŠ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_tone4[] = "๐ŸŠ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_medium_dark_skin_tone[] = "๐ŸŠ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_tone5[] = "๐ŸŠ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_swimming_dark_skin_tone[] = "๐ŸŠ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_swimming[] = "๐ŸŠโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_tone1[] = "๐ŸŠ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_light_skin_tone[] = "๐ŸŠ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_tone2[] = "๐ŸŠ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_medium_light_skin_tone[] = "๐ŸŠ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_tone3[] = "๐ŸŠ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_medium_skin_tone[] = "๐ŸŠ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_tone4[] = "๐ŸŠ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_medium_dark_skin_tone[] = "๐ŸŠ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_tone5[] = "๐ŸŠ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_swimming_dark_skin_tone[] = "๐ŸŠ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_playing_water_polo[] = "๐Ÿคฝ"; + inline constexpr const char water_polo[] = "๐Ÿคฝ"; + inline constexpr const char person_playing_water_polo_tone1[] = "๐Ÿคฝ๐Ÿป"; + inline constexpr const char water_polo_tone1[] = "๐Ÿคฝ๐Ÿป"; + inline constexpr const char person_playing_water_polo_tone2[] = "๐Ÿคฝ๐Ÿผ"; + inline constexpr const char water_polo_tone2[] = "๐Ÿคฝ๐Ÿผ"; + inline constexpr const char person_playing_water_polo_tone3[] = "๐Ÿคฝ๐Ÿฝ"; + inline constexpr const char water_polo_tone3[] = "๐Ÿคฝ๐Ÿฝ"; + inline constexpr const char person_playing_water_polo_tone4[] = "๐Ÿคฝ๐Ÿพ"; + inline constexpr const char water_polo_tone4[] = "๐Ÿคฝ๐Ÿพ"; + inline constexpr const char person_playing_water_polo_tone5[] = "๐Ÿคฝ๐Ÿฟ"; + inline constexpr const char water_polo_tone5[] = "๐Ÿคฝ๐Ÿฟ"; + inline constexpr const char woman_playing_water_polo[] = "๐Ÿคฝโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_tone1[] = "๐Ÿคฝ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_light_skin_tone[] = "๐Ÿคฝ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_tone2[] = "๐Ÿคฝ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_medium_light_skin_tone[] = "๐Ÿคฝ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_tone3[] = "๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_medium_skin_tone[] = "๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_tone4[] = "๐Ÿคฝ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_medium_dark_skin_tone[] = "๐Ÿคฝ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_tone5[] = "๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_playing_water_polo_dark_skin_tone[] = "๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_playing_water_polo[] = "๐Ÿคฝโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_tone1[] = "๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_light_skin_tone[] = "๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_tone2[] = "๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_medium_light_skin_tone[] = "๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_tone3[] = "๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_medium_skin_tone[] = "๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_tone4[] = "๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_medium_dark_skin_tone[] = "๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_tone5[] = "๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_playing_water_polo_dark_skin_tone[] = "๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_rowing_boat[] = "๐Ÿšฃ"; + inline constexpr const char rowboat[] = "๐Ÿšฃ"; + inline constexpr const char person_rowing_boat_tone1[] = "๐Ÿšฃ๐Ÿป"; + inline constexpr const char rowboat_tone1[] = "๐Ÿšฃ๐Ÿป"; + inline constexpr const char person_rowing_boat_tone2[] = "๐Ÿšฃ๐Ÿผ"; + inline constexpr const char rowboat_tone2[] = "๐Ÿšฃ๐Ÿผ"; + inline constexpr const char person_rowing_boat_tone3[] = "๐Ÿšฃ๐Ÿฝ"; + inline constexpr const char rowboat_tone3[] = "๐Ÿšฃ๐Ÿฝ"; + inline constexpr const char person_rowing_boat_tone4[] = "๐Ÿšฃ๐Ÿพ"; + inline constexpr const char rowboat_tone4[] = "๐Ÿšฃ๐Ÿพ"; + inline constexpr const char person_rowing_boat_tone5[] = "๐Ÿšฃ๐Ÿฟ"; + inline constexpr const char rowboat_tone5[] = "๐Ÿšฃ๐Ÿฟ"; + inline constexpr const char woman_rowing_boat[] = "๐Ÿšฃโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_tone1[] = "๐Ÿšฃ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_light_skin_tone[] = "๐Ÿšฃ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_tone2[] = "๐Ÿšฃ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_medium_light_skin_tone[] = "๐Ÿšฃ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_tone3[] = "๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_medium_skin_tone[] = "๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_tone4[] = "๐Ÿšฃ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_medium_dark_skin_tone[] = "๐Ÿšฃ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_tone5[] = "๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_rowing_boat_dark_skin_tone[] = "๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_rowing_boat[] = "๐Ÿšฃโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_tone1[] = "๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_light_skin_tone[] = "๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_tone2[] = "๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_medium_light_skin_tone[] = "๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_tone3[] = "๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_medium_skin_tone[] = "๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_tone4[] = "๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_medium_dark_skin_tone[] = "๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_tone5[] = "๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_rowing_boat_dark_skin_tone[] = "๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_climbing[] = "๐Ÿง—"; + inline constexpr const char person_climbing_tone1[] = "๐Ÿง—๐Ÿป"; + inline constexpr const char person_climbing_light_skin_tone[] = "๐Ÿง—๐Ÿป"; + inline constexpr const char person_climbing_tone2[] = "๐Ÿง—๐Ÿผ"; + inline constexpr const char person_climbing_medium_light_skin_tone[] = "๐Ÿง—๐Ÿผ"; + inline constexpr const char person_climbing_tone3[] = "๐Ÿง—๐Ÿฝ"; + inline constexpr const char person_climbing_medium_skin_tone[] = "๐Ÿง—๐Ÿฝ"; + inline constexpr const char person_climbing_tone4[] = "๐Ÿง—๐Ÿพ"; + inline constexpr const char person_climbing_medium_dark_skin_tone[] = "๐Ÿง—๐Ÿพ"; + inline constexpr const char person_climbing_tone5[] = "๐Ÿง—๐Ÿฟ"; + inline constexpr const char person_climbing_dark_skin_tone[] = "๐Ÿง—๐Ÿฟ"; + inline constexpr const char woman_climbing[] = "๐Ÿง—โ€โ™€๏ธ"; + inline constexpr const char woman_climbing_tone1[] = "๐Ÿง—๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_light_skin_tone[] = "๐Ÿง—๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_tone2[] = "๐Ÿง—๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_medium_light_skin_tone[] = "๐Ÿง—๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_tone3[] = "๐Ÿง—๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_medium_skin_tone[] = "๐Ÿง—๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_tone4[] = "๐Ÿง—๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_medium_dark_skin_tone[] = "๐Ÿง—๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_tone5[] = "๐Ÿง—๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_climbing_dark_skin_tone[] = "๐Ÿง—๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_climbing[] = "๐Ÿง—โ€โ™‚๏ธ"; + inline constexpr const char man_climbing_tone1[] = "๐Ÿง—๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_light_skin_tone[] = "๐Ÿง—๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_tone2[] = "๐Ÿง—๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_medium_light_skin_tone[] = "๐Ÿง—๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_tone3[] = "๐Ÿง—๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_medium_skin_tone[] = "๐Ÿง—๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_tone4[] = "๐Ÿง—๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_medium_dark_skin_tone[] = "๐Ÿง—๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_tone5[] = "๐Ÿง—๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_climbing_dark_skin_tone[] = "๐Ÿง—๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_mountain_biking[] = "๐Ÿšต"; + inline constexpr const char mountain_bicyclist[] = "๐Ÿšต"; + inline constexpr const char person_mountain_biking_tone1[] = "๐Ÿšต๐Ÿป"; + inline constexpr const char mountain_bicyclist_tone1[] = "๐Ÿšต๐Ÿป"; + inline constexpr const char person_mountain_biking_tone2[] = "๐Ÿšต๐Ÿผ"; + inline constexpr const char mountain_bicyclist_tone2[] = "๐Ÿšต๐Ÿผ"; + inline constexpr const char person_mountain_biking_tone3[] = "๐Ÿšต๐Ÿฝ"; + inline constexpr const char mountain_bicyclist_tone3[] = "๐Ÿšต๐Ÿฝ"; + inline constexpr const char person_mountain_biking_tone4[] = "๐Ÿšต๐Ÿพ"; + inline constexpr const char mountain_bicyclist_tone4[] = "๐Ÿšต๐Ÿพ"; + inline constexpr const char person_mountain_biking_tone5[] = "๐Ÿšต๐Ÿฟ"; + inline constexpr const char mountain_bicyclist_tone5[] = "๐Ÿšต๐Ÿฟ"; + inline constexpr const char woman_mountain_biking[] = "๐Ÿšตโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_tone1[] = "๐Ÿšต๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_light_skin_tone[] = "๐Ÿšต๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_tone2[] = "๐Ÿšต๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_medium_light_skin_tone[] = "๐Ÿšต๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_tone3[] = "๐Ÿšต๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_medium_skin_tone[] = "๐Ÿšต๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_tone4[] = "๐Ÿšต๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_medium_dark_skin_tone[] = "๐Ÿšต๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_tone5[] = "๐Ÿšต๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_mountain_biking_dark_skin_tone[] = "๐Ÿšต๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_mountain_biking[] = "๐Ÿšตโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_tone1[] = "๐Ÿšต๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_light_skin_tone[] = "๐Ÿšต๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_tone2[] = "๐Ÿšต๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_medium_light_skin_tone[] = "๐Ÿšต๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_tone3[] = "๐Ÿšต๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_medium_skin_tone[] = "๐Ÿšต๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_tone4[] = "๐Ÿšต๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_medium_dark_skin_tone[] = "๐Ÿšต๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_tone5[] = "๐Ÿšต๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_mountain_biking_dark_skin_tone[] = "๐Ÿšต๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_biking[] = "๐Ÿšด"; + inline constexpr const char bicyclist[] = "๐Ÿšด"; + inline constexpr const char person_biking_tone1[] = "๐Ÿšด๐Ÿป"; + inline constexpr const char bicyclist_tone1[] = "๐Ÿšด๐Ÿป"; + inline constexpr const char person_biking_tone2[] = "๐Ÿšด๐Ÿผ"; + inline constexpr const char bicyclist_tone2[] = "๐Ÿšด๐Ÿผ"; + inline constexpr const char person_biking_tone3[] = "๐Ÿšด๐Ÿฝ"; + inline constexpr const char bicyclist_tone3[] = "๐Ÿšด๐Ÿฝ"; + inline constexpr const char person_biking_tone4[] = "๐Ÿšด๐Ÿพ"; + inline constexpr const char bicyclist_tone4[] = "๐Ÿšด๐Ÿพ"; + inline constexpr const char person_biking_tone5[] = "๐Ÿšด๐Ÿฟ"; + inline constexpr const char bicyclist_tone5[] = "๐Ÿšด๐Ÿฟ"; + inline constexpr const char woman_biking[] = "๐Ÿšดโ€โ™€๏ธ"; + inline constexpr const char woman_biking_tone1[] = "๐Ÿšด๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_biking_light_skin_tone[] = "๐Ÿšด๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_biking_tone2[] = "๐Ÿšด๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_biking_medium_light_skin_tone[] = "๐Ÿšด๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_biking_tone3[] = "๐Ÿšด๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_biking_medium_skin_tone[] = "๐Ÿšด๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_biking_tone4[] = "๐Ÿšด๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_biking_medium_dark_skin_tone[] = "๐Ÿšด๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_biking_tone5[] = "๐Ÿšด๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_biking_dark_skin_tone[] = "๐Ÿšด๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_biking[] = "๐Ÿšดโ€โ™‚๏ธ"; + inline constexpr const char man_biking_tone1[] = "๐Ÿšด๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_biking_light_skin_tone[] = "๐Ÿšด๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_biking_tone2[] = "๐Ÿšด๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_biking_medium_light_skin_tone[] = "๐Ÿšด๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_biking_tone3[] = "๐Ÿšด๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_biking_medium_skin_tone[] = "๐Ÿšด๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_biking_tone4[] = "๐Ÿšด๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_biking_medium_dark_skin_tone[] = "๐Ÿšด๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_biking_tone5[] = "๐Ÿšด๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_biking_dark_skin_tone[] = "๐Ÿšด๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char trophy[] = "๐Ÿ†"; + inline constexpr const char first_place[] = "๐Ÿฅ‡"; + inline constexpr const char first_place_medal[] = "๐Ÿฅ‡"; + inline constexpr const char second_place[] = "๐Ÿฅˆ"; + inline constexpr const char second_place_medal[] = "๐Ÿฅˆ"; + inline constexpr const char third_place[] = "๐Ÿฅ‰"; + inline constexpr const char third_place_medal[] = "๐Ÿฅ‰"; + inline constexpr const char medal[] = "๐Ÿ…"; + inline constexpr const char sports_medal[] = "๐Ÿ…"; + inline constexpr const char military_medal[] = "๐ŸŽ–๏ธ"; + inline constexpr const char rosette[] = "๐Ÿต๏ธ"; + inline constexpr const char reminder_ribbon[] = "๐ŸŽ—๏ธ"; + inline constexpr const char ticket[] = "๐ŸŽซ"; + inline constexpr const char tickets[] = "๐ŸŽŸ๏ธ"; + inline constexpr const char admission_tickets[] = "๐ŸŽŸ๏ธ"; + inline constexpr const char circus_tent[] = "๐ŸŽช"; + inline constexpr const char person_juggling[] = "๐Ÿคน"; + inline constexpr const char juggling[] = "๐Ÿคน"; + inline constexpr const char juggler[] = "๐Ÿคน"; + inline constexpr const char person_juggling_tone1[] = "๐Ÿคน๐Ÿป"; + inline constexpr const char juggling_tone1[] = "๐Ÿคน๐Ÿป"; + inline constexpr const char juggler_tone1[] = "๐Ÿคน๐Ÿป"; + inline constexpr const char person_juggling_tone2[] = "๐Ÿคน๐Ÿผ"; + inline constexpr const char juggling_tone2[] = "๐Ÿคน๐Ÿผ"; + inline constexpr const char juggler_tone2[] = "๐Ÿคน๐Ÿผ"; + inline constexpr const char person_juggling_tone3[] = "๐Ÿคน๐Ÿฝ"; + inline constexpr const char juggling_tone3[] = "๐Ÿคน๐Ÿฝ"; + inline constexpr const char juggler_tone3[] = "๐Ÿคน๐Ÿฝ"; + inline constexpr const char person_juggling_tone4[] = "๐Ÿคน๐Ÿพ"; + inline constexpr const char juggling_tone4[] = "๐Ÿคน๐Ÿพ"; + inline constexpr const char juggler_tone4[] = "๐Ÿคน๐Ÿพ"; + inline constexpr const char person_juggling_tone5[] = "๐Ÿคน๐Ÿฟ"; + inline constexpr const char juggling_tone5[] = "๐Ÿคน๐Ÿฟ"; + inline constexpr const char juggler_tone5[] = "๐Ÿคน๐Ÿฟ"; + inline constexpr const char woman_juggling[] = "๐Ÿคนโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_tone1[] = "๐Ÿคน๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_light_skin_tone[] = "๐Ÿคน๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_tone2[] = "๐Ÿคน๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_medium_light_skin_tone[] = "๐Ÿคน๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_tone3[] = "๐Ÿคน๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_medium_skin_tone[] = "๐Ÿคน๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_tone4[] = "๐Ÿคน๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_medium_dark_skin_tone[] = "๐Ÿคน๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_tone5[] = "๐Ÿคน๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_juggling_dark_skin_tone[] = "๐Ÿคน๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_juggling[] = "๐Ÿคนโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_tone1[] = "๐Ÿคน๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_light_skin_tone[] = "๐Ÿคน๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_tone2[] = "๐Ÿคน๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_medium_light_skin_tone[] = "๐Ÿคน๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_tone3[] = "๐Ÿคน๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_medium_skin_tone[] = "๐Ÿคน๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_tone4[] = "๐Ÿคน๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_medium_dark_skin_tone[] = "๐Ÿคน๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_tone5[] = "๐Ÿคน๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_juggling_dark_skin_tone[] = "๐Ÿคน๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char performing_arts[] = "๐ŸŽญ"; + inline constexpr const char ballet_shoes[] = "๐Ÿฉฐ"; + inline constexpr const char art[] = "๐ŸŽจ"; + inline constexpr const char clapper[] = "๐ŸŽฌ"; + inline constexpr const char clapper_board[] = "๐ŸŽฌ"; + inline constexpr const char microphone[] = "๐ŸŽค"; + inline constexpr const char headphones[] = "๐ŸŽง"; + inline constexpr const char headphone[] = "๐ŸŽง"; + inline constexpr const char musical_score[] = "๐ŸŽผ"; + inline constexpr const char musical_keyboard[] = "๐ŸŽน"; + inline constexpr const char maracas[] = "๐Ÿช‡"; + inline constexpr const char drum[] = "๐Ÿฅ"; + inline constexpr const char drum_with_drumsticks[] = "๐Ÿฅ"; + inline constexpr const char long_drum[] = "๐Ÿช˜"; + inline constexpr const char saxophone[] = "๐ŸŽท"; + inline constexpr const char trumpet[] = "๐ŸŽบ"; + inline constexpr const char accordion[] = "๐Ÿช—"; + inline constexpr const char guitar[] = "๐ŸŽธ"; + inline constexpr const char banjo[] = "๐Ÿช•"; + inline constexpr const char violin[] = "๐ŸŽป"; + inline constexpr const char flute[] = "๐Ÿชˆ"; + inline constexpr const char game_die[] = "๐ŸŽฒ"; + inline constexpr const char chess_pawn[] = "โ™Ÿ๏ธ"; + inline constexpr const char dart[] = "๐ŸŽฏ"; + inline constexpr const char direct_hit[] = "๐ŸŽฏ"; + inline constexpr const char bowling[] = "๐ŸŽณ"; + inline constexpr const char video_game[] = "๐ŸŽฎ"; + inline constexpr const char slot_machine[] = "๐ŸŽฐ"; + inline constexpr const char jigsaw[] = "๐Ÿงฉ"; + inline constexpr const char puzzle_piece[] = "๐Ÿงฉ"; + inline constexpr const char flag_white[] = "๐Ÿณ๏ธ"; + inline constexpr const char flag_black[] = "๐Ÿด"; + inline constexpr const char pirate_flag[] = "๐Ÿดโ€โ˜ ๏ธ"; + inline constexpr const char checkered_flag[] = "๐Ÿ"; + inline constexpr const char triangular_flag_on_post[] = "๐Ÿšฉ"; + inline constexpr const char rainbow_flag[] = "๐Ÿณ๏ธโ€๐ŸŒˆ"; + inline constexpr const char gay_pride_flag[] = "๐Ÿณ๏ธโ€๐ŸŒˆ"; + inline constexpr const char transgender_flag[] = "๐Ÿณ๏ธโ€โšง๏ธ"; + inline constexpr const char united_nations[] = "๐Ÿ‡บ๐Ÿ‡ณ"; + inline constexpr const char flag_af[] = "๐Ÿ‡ฆ๐Ÿ‡ซ"; + inline constexpr const char flag_ax[] = "๐Ÿ‡ฆ๐Ÿ‡ฝ"; + inline constexpr const char flag_al[] = "๐Ÿ‡ฆ๐Ÿ‡ฑ"; + inline constexpr const char flag_dz[] = "๐Ÿ‡ฉ๐Ÿ‡ฟ"; + inline constexpr const char flag_as[] = "๐Ÿ‡ฆ๐Ÿ‡ธ"; + inline constexpr const char flag_ad[] = "๐Ÿ‡ฆ๐Ÿ‡ฉ"; + inline constexpr const char flag_ao[] = "๐Ÿ‡ฆ๐Ÿ‡ด"; + inline constexpr const char flag_ai[] = "๐Ÿ‡ฆ๐Ÿ‡ฎ"; + inline constexpr const char flag_aq[] = "๐Ÿ‡ฆ๐Ÿ‡ถ"; + inline constexpr const char flag_ag[] = "๐Ÿ‡ฆ๐Ÿ‡ฌ"; + inline constexpr const char flag_ar[] = "๐Ÿ‡ฆ๐Ÿ‡ท"; + inline constexpr const char flag_am[] = "๐Ÿ‡ฆ๐Ÿ‡ฒ"; + inline constexpr const char flag_aw[] = "๐Ÿ‡ฆ๐Ÿ‡ผ"; + inline constexpr const char flag_au[] = "๐Ÿ‡ฆ๐Ÿ‡บ"; + inline constexpr const char flag_at[] = "๐Ÿ‡ฆ๐Ÿ‡น"; + inline constexpr const char flag_az[] = "๐Ÿ‡ฆ๐Ÿ‡ฟ"; + inline constexpr const char flag_bs[] = "๐Ÿ‡ง๐Ÿ‡ธ"; + inline constexpr const char flag_bh[] = "๐Ÿ‡ง๐Ÿ‡ญ"; + inline constexpr const char flag_bd[] = "๐Ÿ‡ง๐Ÿ‡ฉ"; + inline constexpr const char flag_bb[] = "๐Ÿ‡ง๐Ÿ‡ง"; + inline constexpr const char flag_by[] = "๐Ÿ‡ง๐Ÿ‡พ"; + inline constexpr const char flag_be[] = "๐Ÿ‡ง๐Ÿ‡ช"; + inline constexpr const char flag_bz[] = "๐Ÿ‡ง๐Ÿ‡ฟ"; + inline constexpr const char flag_bj[] = "๐Ÿ‡ง๐Ÿ‡ฏ"; + inline constexpr const char flag_bm[] = "๐Ÿ‡ง๐Ÿ‡ฒ"; + inline constexpr const char flag_bt[] = "๐Ÿ‡ง๐Ÿ‡น"; + inline constexpr const char flag_bo[] = "๐Ÿ‡ง๐Ÿ‡ด"; + inline constexpr const char flag_ba[] = "๐Ÿ‡ง๐Ÿ‡ฆ"; + inline constexpr const char flag_bw[] = "๐Ÿ‡ง๐Ÿ‡ผ"; + inline constexpr const char flag_br[] = "๐Ÿ‡ง๐Ÿ‡ท"; + inline constexpr const char flag_io[] = "๐Ÿ‡ฎ๐Ÿ‡ด"; + inline constexpr const char flag_vg[] = "๐Ÿ‡ป๐Ÿ‡ฌ"; + inline constexpr const char flag_bn[] = "๐Ÿ‡ง๐Ÿ‡ณ"; + inline constexpr const char flag_bg[] = "๐Ÿ‡ง๐Ÿ‡ฌ"; + inline constexpr const char flag_bf[] = "๐Ÿ‡ง๐Ÿ‡ซ"; + inline constexpr const char flag_bi[] = "๐Ÿ‡ง๐Ÿ‡ฎ"; + inline constexpr const char flag_kh[] = "๐Ÿ‡ฐ๐Ÿ‡ญ"; + inline constexpr const char flag_cm[] = "๐Ÿ‡จ๐Ÿ‡ฒ"; + inline constexpr const char flag_ca[] = "๐Ÿ‡จ๐Ÿ‡ฆ"; + inline constexpr const char flag_ic[] = "๐Ÿ‡ฎ๐Ÿ‡จ"; + inline constexpr const char flag_cv[] = "๐Ÿ‡จ๐Ÿ‡ป"; + inline constexpr const char flag_bq[] = "๐Ÿ‡ง๐Ÿ‡ถ"; + inline constexpr const char flag_ky[] = "๐Ÿ‡ฐ๐Ÿ‡พ"; + inline constexpr const char flag_cf[] = "๐Ÿ‡จ๐Ÿ‡ซ"; + inline constexpr const char flag_td[] = "๐Ÿ‡น๐Ÿ‡ฉ"; + inline constexpr const char flag_cl[] = "๐Ÿ‡จ๐Ÿ‡ฑ"; + inline constexpr const char flag_cn[] = "๐Ÿ‡จ๐Ÿ‡ณ"; + inline constexpr const char flag_cx[] = "๐Ÿ‡จ๐Ÿ‡ฝ"; + inline constexpr const char flag_cc[] = "๐Ÿ‡จ๐Ÿ‡จ"; + inline constexpr const char flag_co[] = "๐Ÿ‡จ๐Ÿ‡ด"; + inline constexpr const char flag_km[] = "๐Ÿ‡ฐ๐Ÿ‡ฒ"; + inline constexpr const char flag_cg[] = "๐Ÿ‡จ๐Ÿ‡ฌ"; + inline constexpr const char flag_cd[] = "๐Ÿ‡จ๐Ÿ‡ฉ"; + inline constexpr const char flag_ck[] = "๐Ÿ‡จ๐Ÿ‡ฐ"; + inline constexpr const char flag_cr[] = "๐Ÿ‡จ๐Ÿ‡ท"; + inline constexpr const char flag_ci[] = "๐Ÿ‡จ๐Ÿ‡ฎ"; + inline constexpr const char flag_hr[] = "๐Ÿ‡ญ๐Ÿ‡ท"; + inline constexpr const char flag_cu[] = "๐Ÿ‡จ๐Ÿ‡บ"; + inline constexpr const char flag_cw[] = "๐Ÿ‡จ๐Ÿ‡ผ"; + inline constexpr const char flag_cy[] = "๐Ÿ‡จ๐Ÿ‡พ"; + inline constexpr const char flag_cz[] = "๐Ÿ‡จ๐Ÿ‡ฟ"; + inline constexpr const char flag_dk[] = "๐Ÿ‡ฉ๐Ÿ‡ฐ"; + inline constexpr const char flag_dj[] = "๐Ÿ‡ฉ๐Ÿ‡ฏ"; + inline constexpr const char flag_dm[] = "๐Ÿ‡ฉ๐Ÿ‡ฒ"; + inline constexpr const char flag_do[] = "๐Ÿ‡ฉ๐Ÿ‡ด"; + inline constexpr const char flag_ec[] = "๐Ÿ‡ช๐Ÿ‡จ"; + inline constexpr const char flag_eg[] = "๐Ÿ‡ช๐Ÿ‡ฌ"; + inline constexpr const char flag_sv[] = "๐Ÿ‡ธ๐Ÿ‡ป"; + inline constexpr const char flag_gq[] = "๐Ÿ‡ฌ๐Ÿ‡ถ"; + inline constexpr const char flag_er[] = "๐Ÿ‡ช๐Ÿ‡ท"; + inline constexpr const char flag_ee[] = "๐Ÿ‡ช๐Ÿ‡ช"; + inline constexpr const char flag_et[] = "๐Ÿ‡ช๐Ÿ‡น"; + inline constexpr const char flag_eu[] = "๐Ÿ‡ช๐Ÿ‡บ"; + inline constexpr const char flag_fk[] = "๐Ÿ‡ซ๐Ÿ‡ฐ"; + inline constexpr const char flag_fo[] = "๐Ÿ‡ซ๐Ÿ‡ด"; + inline constexpr const char flag_fj[] = "๐Ÿ‡ซ๐Ÿ‡ฏ"; + inline constexpr const char flag_fi[] = "๐Ÿ‡ซ๐Ÿ‡ฎ"; + inline constexpr const char flag_fr[] = "๐Ÿ‡ซ๐Ÿ‡ท"; + inline constexpr const char flag_gf[] = "๐Ÿ‡ฌ๐Ÿ‡ซ"; + inline constexpr const char flag_pf[] = "๐Ÿ‡ต๐Ÿ‡ซ"; + inline constexpr const char flag_tf[] = "๐Ÿ‡น๐Ÿ‡ซ"; + inline constexpr const char flag_ga[] = "๐Ÿ‡ฌ๐Ÿ‡ฆ"; + inline constexpr const char flag_gm[] = "๐Ÿ‡ฌ๐Ÿ‡ฒ"; + inline constexpr const char flag_ge[] = "๐Ÿ‡ฌ๐Ÿ‡ช"; + inline constexpr const char flag_de[] = "๐Ÿ‡ฉ๐Ÿ‡ช"; + inline constexpr const char flag_gh[] = "๐Ÿ‡ฌ๐Ÿ‡ญ"; + inline constexpr const char flag_gi[] = "๐Ÿ‡ฌ๐Ÿ‡ฎ"; + inline constexpr const char flag_gr[] = "๐Ÿ‡ฌ๐Ÿ‡ท"; + inline constexpr const char flag_gl[] = "๐Ÿ‡ฌ๐Ÿ‡ฑ"; + inline constexpr const char flag_gd[] = "๐Ÿ‡ฌ๐Ÿ‡ฉ"; + inline constexpr const char flag_gp[] = "๐Ÿ‡ฌ๐Ÿ‡ต"; + inline constexpr const char flag_gu[] = "๐Ÿ‡ฌ๐Ÿ‡บ"; + inline constexpr const char flag_gt[] = "๐Ÿ‡ฌ๐Ÿ‡น"; + inline constexpr const char flag_gg[] = "๐Ÿ‡ฌ๐Ÿ‡ฌ"; + inline constexpr const char flag_gn[] = "๐Ÿ‡ฌ๐Ÿ‡ณ"; + inline constexpr const char flag_gw[] = "๐Ÿ‡ฌ๐Ÿ‡ผ"; + inline constexpr const char flag_gy[] = "๐Ÿ‡ฌ๐Ÿ‡พ"; + inline constexpr const char flag_ht[] = "๐Ÿ‡ญ๐Ÿ‡น"; + inline constexpr const char flag_hn[] = "๐Ÿ‡ญ๐Ÿ‡ณ"; + inline constexpr const char flag_hk[] = "๐Ÿ‡ญ๐Ÿ‡ฐ"; + inline constexpr const char flag_hu[] = "๐Ÿ‡ญ๐Ÿ‡บ"; + inline constexpr const char flag_is[] = "๐Ÿ‡ฎ๐Ÿ‡ธ"; + inline constexpr const char flag_in[] = "๐Ÿ‡ฎ๐Ÿ‡ณ"; + inline constexpr const char flag_id[] = "๐Ÿ‡ฎ๐Ÿ‡ฉ"; + inline constexpr const char flag_ir[] = "๐Ÿ‡ฎ๐Ÿ‡ท"; + inline constexpr const char flag_iq[] = "๐Ÿ‡ฎ๐Ÿ‡ถ"; + inline constexpr const char flag_ie[] = "๐Ÿ‡ฎ๐Ÿ‡ช"; + inline constexpr const char flag_im[] = "๐Ÿ‡ฎ๐Ÿ‡ฒ"; + inline constexpr const char flag_il[] = "๐Ÿ‡ฎ๐Ÿ‡ฑ"; + inline constexpr const char flag_it[] = "๐Ÿ‡ฎ๐Ÿ‡น"; + inline constexpr const char flag_jm[] = "๐Ÿ‡ฏ๐Ÿ‡ฒ"; + inline constexpr const char flag_jp[] = "๐Ÿ‡ฏ๐Ÿ‡ต"; + inline constexpr const char crossed_flags[] = "๐ŸŽŒ"; + inline constexpr const char flag_je[] = "๐Ÿ‡ฏ๐Ÿ‡ช"; + inline constexpr const char flag_jo[] = "๐Ÿ‡ฏ๐Ÿ‡ด"; + inline constexpr const char flag_kz[] = "๐Ÿ‡ฐ๐Ÿ‡ฟ"; + inline constexpr const char flag_ke[] = "๐Ÿ‡ฐ๐Ÿ‡ช"; + inline constexpr const char flag_ki[] = "๐Ÿ‡ฐ๐Ÿ‡ฎ"; + inline constexpr const char flag_xk[] = "๐Ÿ‡ฝ๐Ÿ‡ฐ"; + inline constexpr const char flag_kw[] = "๐Ÿ‡ฐ๐Ÿ‡ผ"; + inline constexpr const char flag_kg[] = "๐Ÿ‡ฐ๐Ÿ‡ฌ"; + inline constexpr const char flag_la[] = "๐Ÿ‡ฑ๐Ÿ‡ฆ"; + inline constexpr const char flag_lv[] = "๐Ÿ‡ฑ๐Ÿ‡ป"; + inline constexpr const char flag_lb[] = "๐Ÿ‡ฑ๐Ÿ‡ง"; + inline constexpr const char flag_ls[] = "๐Ÿ‡ฑ๐Ÿ‡ธ"; + inline constexpr const char flag_lr[] = "๐Ÿ‡ฑ๐Ÿ‡ท"; + inline constexpr const char flag_ly[] = "๐Ÿ‡ฑ๐Ÿ‡พ"; + inline constexpr const char flag_li[] = "๐Ÿ‡ฑ๐Ÿ‡ฎ"; + inline constexpr const char flag_lt[] = "๐Ÿ‡ฑ๐Ÿ‡น"; + inline constexpr const char flag_lu[] = "๐Ÿ‡ฑ๐Ÿ‡บ"; + inline constexpr const char flag_mo[] = "๐Ÿ‡ฒ๐Ÿ‡ด"; + inline constexpr const char flag_mk[] = "๐Ÿ‡ฒ๐Ÿ‡ฐ"; + inline constexpr const char flag_mg[] = "๐Ÿ‡ฒ๐Ÿ‡ฌ"; + inline constexpr const char flag_mw[] = "๐Ÿ‡ฒ๐Ÿ‡ผ"; + inline constexpr const char flag_my[] = "๐Ÿ‡ฒ๐Ÿ‡พ"; + inline constexpr const char flag_mv[] = "๐Ÿ‡ฒ๐Ÿ‡ป"; + inline constexpr const char flag_ml[] = "๐Ÿ‡ฒ๐Ÿ‡ฑ"; + inline constexpr const char flag_mt[] = "๐Ÿ‡ฒ๐Ÿ‡น"; + inline constexpr const char flag_mh[] = "๐Ÿ‡ฒ๐Ÿ‡ญ"; + inline constexpr const char flag_mq[] = "๐Ÿ‡ฒ๐Ÿ‡ถ"; + inline constexpr const char flag_mr[] = "๐Ÿ‡ฒ๐Ÿ‡ท"; + inline constexpr const char flag_mu[] = "๐Ÿ‡ฒ๐Ÿ‡บ"; + inline constexpr const char flag_yt[] = "๐Ÿ‡พ๐Ÿ‡น"; + inline constexpr const char flag_mx[] = "๐Ÿ‡ฒ๐Ÿ‡ฝ"; + inline constexpr const char flag_fm[] = "๐Ÿ‡ซ๐Ÿ‡ฒ"; + inline constexpr const char flag_md[] = "๐Ÿ‡ฒ๐Ÿ‡ฉ"; + inline constexpr const char flag_mc[] = "๐Ÿ‡ฒ๐Ÿ‡จ"; + inline constexpr const char flag_mn[] = "๐Ÿ‡ฒ๐Ÿ‡ณ"; + inline constexpr const char flag_me[] = "๐Ÿ‡ฒ๐Ÿ‡ช"; + inline constexpr const char flag_ms[] = "๐Ÿ‡ฒ๐Ÿ‡ธ"; + inline constexpr const char flag_ma[] = "๐Ÿ‡ฒ๐Ÿ‡ฆ"; + inline constexpr const char flag_mz[] = "๐Ÿ‡ฒ๐Ÿ‡ฟ"; + inline constexpr const char flag_mm[] = "๐Ÿ‡ฒ๐Ÿ‡ฒ"; + inline constexpr const char flag_na[] = "๐Ÿ‡ณ๐Ÿ‡ฆ"; + inline constexpr const char flag_nr[] = "๐Ÿ‡ณ๐Ÿ‡ท"; + inline constexpr const char flag_np[] = "๐Ÿ‡ณ๐Ÿ‡ต"; + inline constexpr const char flag_nl[] = "๐Ÿ‡ณ๐Ÿ‡ฑ"; + inline constexpr const char flag_nc[] = "๐Ÿ‡ณ๐Ÿ‡จ"; + inline constexpr const char flag_nz[] = "๐Ÿ‡ณ๐Ÿ‡ฟ"; + inline constexpr const char flag_ni[] = "๐Ÿ‡ณ๐Ÿ‡ฎ"; + inline constexpr const char flag_ne[] = "๐Ÿ‡ณ๐Ÿ‡ช"; + inline constexpr const char flag_ng[] = "๐Ÿ‡ณ๐Ÿ‡ฌ"; + inline constexpr const char flag_nu[] = "๐Ÿ‡ณ๐Ÿ‡บ"; + inline constexpr const char flag_nf[] = "๐Ÿ‡ณ๐Ÿ‡ซ"; + inline constexpr const char flag_kp[] = "๐Ÿ‡ฐ๐Ÿ‡ต"; + inline constexpr const char flag_mp[] = "๐Ÿ‡ฒ๐Ÿ‡ต"; + inline constexpr const char flag_no[] = "๐Ÿ‡ณ๐Ÿ‡ด"; + inline constexpr const char flag_om[] = "๐Ÿ‡ด๐Ÿ‡ฒ"; + inline constexpr const char flag_pk[] = "๐Ÿ‡ต๐Ÿ‡ฐ"; + inline constexpr const char flag_pw[] = "๐Ÿ‡ต๐Ÿ‡ผ"; + inline constexpr const char flag_ps[] = "๐Ÿ‡ต๐Ÿ‡ธ"; + inline constexpr const char flag_pa[] = "๐Ÿ‡ต๐Ÿ‡ฆ"; + inline constexpr const char flag_pg[] = "๐Ÿ‡ต๐Ÿ‡ฌ"; + inline constexpr const char flag_py[] = "๐Ÿ‡ต๐Ÿ‡พ"; + inline constexpr const char flag_pe[] = "๐Ÿ‡ต๐Ÿ‡ช"; + inline constexpr const char flag_ph[] = "๐Ÿ‡ต๐Ÿ‡ญ"; + inline constexpr const char flag_pn[] = "๐Ÿ‡ต๐Ÿ‡ณ"; + inline constexpr const char flag_pl[] = "๐Ÿ‡ต๐Ÿ‡ฑ"; + inline constexpr const char flag_pt[] = "๐Ÿ‡ต๐Ÿ‡น"; + inline constexpr const char flag_pr[] = "๐Ÿ‡ต๐Ÿ‡ท"; + inline constexpr const char flag_qa[] = "๐Ÿ‡ถ๐Ÿ‡ฆ"; + inline constexpr const char flag_re[] = "๐Ÿ‡ท๐Ÿ‡ช"; + inline constexpr const char flag_ro[] = "๐Ÿ‡ท๐Ÿ‡ด"; + inline constexpr const char flag_ru[] = "๐Ÿ‡ท๐Ÿ‡บ"; + inline constexpr const char flag_rw[] = "๐Ÿ‡ท๐Ÿ‡ผ"; + inline constexpr const char flag_ws[] = "๐Ÿ‡ผ๐Ÿ‡ธ"; + inline constexpr const char flag_sm[] = "๐Ÿ‡ธ๐Ÿ‡ฒ"; + inline constexpr const char flag_st[] = "๐Ÿ‡ธ๐Ÿ‡น"; + inline constexpr const char flag_sa[] = "๐Ÿ‡ธ๐Ÿ‡ฆ"; + inline constexpr const char flag_sn[] = "๐Ÿ‡ธ๐Ÿ‡ณ"; + inline constexpr const char flag_rs[] = "๐Ÿ‡ท๐Ÿ‡ธ"; + inline constexpr const char flag_sc[] = "๐Ÿ‡ธ๐Ÿ‡จ"; + inline constexpr const char flag_sl[] = "๐Ÿ‡ธ๐Ÿ‡ฑ"; + inline constexpr const char flag_sg[] = "๐Ÿ‡ธ๐Ÿ‡ฌ"; + inline constexpr const char flag_sx[] = "๐Ÿ‡ธ๐Ÿ‡ฝ"; + inline constexpr const char flag_sk[] = "๐Ÿ‡ธ๐Ÿ‡ฐ"; + inline constexpr const char flag_si[] = "๐Ÿ‡ธ๐Ÿ‡ฎ"; + inline constexpr const char flag_gs[] = "๐Ÿ‡ฌ๐Ÿ‡ธ"; + inline constexpr const char flag_sb[] = "๐Ÿ‡ธ๐Ÿ‡ง"; + inline constexpr const char flag_so[] = "๐Ÿ‡ธ๐Ÿ‡ด"; + inline constexpr const char flag_za[] = "๐Ÿ‡ฟ๐Ÿ‡ฆ"; + inline constexpr const char flag_kr[] = "๐Ÿ‡ฐ๐Ÿ‡ท"; + inline constexpr const char flag_ss[] = "๐Ÿ‡ธ๐Ÿ‡ธ"; + inline constexpr const char flag_es[] = "๐Ÿ‡ช๐Ÿ‡ธ"; + inline constexpr const char flag_lk[] = "๐Ÿ‡ฑ๐Ÿ‡ฐ"; + inline constexpr const char flag_bl[] = "๐Ÿ‡ง๐Ÿ‡ฑ"; + inline constexpr const char flag_sh[] = "๐Ÿ‡ธ๐Ÿ‡ญ"; + inline constexpr const char flag_kn[] = "๐Ÿ‡ฐ๐Ÿ‡ณ"; + inline constexpr const char flag_lc[] = "๐Ÿ‡ฑ๐Ÿ‡จ"; + inline constexpr const char flag_pm[] = "๐Ÿ‡ต๐Ÿ‡ฒ"; + inline constexpr const char flag_vc[] = "๐Ÿ‡ป๐Ÿ‡จ"; + inline constexpr const char flag_sd[] = "๐Ÿ‡ธ๐Ÿ‡ฉ"; + inline constexpr const char flag_sr[] = "๐Ÿ‡ธ๐Ÿ‡ท"; + inline constexpr const char flag_sz[] = "๐Ÿ‡ธ๐Ÿ‡ฟ"; + inline constexpr const char flag_se[] = "๐Ÿ‡ธ๐Ÿ‡ช"; + inline constexpr const char flag_ch[] = "๐Ÿ‡จ๐Ÿ‡ญ"; + inline constexpr const char flag_sy[] = "๐Ÿ‡ธ๐Ÿ‡พ"; + inline constexpr const char flag_tw[] = "๐Ÿ‡น๐Ÿ‡ผ"; + inline constexpr const char flag_tj[] = "๐Ÿ‡น๐Ÿ‡ฏ"; + inline constexpr const char flag_tz[] = "๐Ÿ‡น๐Ÿ‡ฟ"; + inline constexpr const char flag_th[] = "๐Ÿ‡น๐Ÿ‡ญ"; + inline constexpr const char flag_tl[] = "๐Ÿ‡น๐Ÿ‡ฑ"; + inline constexpr const char flag_tg[] = "๐Ÿ‡น๐Ÿ‡ฌ"; + inline constexpr const char flag_tk[] = "๐Ÿ‡น๐Ÿ‡ฐ"; + inline constexpr const char flag_to[] = "๐Ÿ‡น๐Ÿ‡ด"; + inline constexpr const char flag_tt[] = "๐Ÿ‡น๐Ÿ‡น"; + inline constexpr const char flag_tn[] = "๐Ÿ‡น๐Ÿ‡ณ"; + inline constexpr const char flag_tr[] = "๐Ÿ‡น๐Ÿ‡ท"; + inline constexpr const char flag_tm[] = "๐Ÿ‡น๐Ÿ‡ฒ"; + inline constexpr const char flag_tc[] = "๐Ÿ‡น๐Ÿ‡จ"; + inline constexpr const char flag_vi[] = "๐Ÿ‡ป๐Ÿ‡ฎ"; + inline constexpr const char flag_tv[] = "๐Ÿ‡น๐Ÿ‡ป"; + inline constexpr const char flag_ug[] = "๐Ÿ‡บ๐Ÿ‡ฌ"; + inline constexpr const char flag_ua[] = "๐Ÿ‡บ๐Ÿ‡ฆ"; + inline constexpr const char flag_ae[] = "๐Ÿ‡ฆ๐Ÿ‡ช"; + inline constexpr const char flag_gb[] = "๐Ÿ‡ฌ๐Ÿ‡ง"; + inline constexpr const char england[] = "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ"; + inline constexpr const char scotland[] = "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ"; + inline constexpr const char wales[] = "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ"; + inline constexpr const char flag_us[] = "๐Ÿ‡บ๐Ÿ‡ธ"; + inline constexpr const char flag_uy[] = "๐Ÿ‡บ๐Ÿ‡พ"; + inline constexpr const char flag_uz[] = "๐Ÿ‡บ๐Ÿ‡ฟ"; + inline constexpr const char flag_vu[] = "๐Ÿ‡ป๐Ÿ‡บ"; + inline constexpr const char flag_va[] = "๐Ÿ‡ป๐Ÿ‡ฆ"; + inline constexpr const char flag_ve[] = "๐Ÿ‡ป๐Ÿ‡ช"; + inline constexpr const char flag_vn[] = "๐Ÿ‡ป๐Ÿ‡ณ"; + inline constexpr const char flag_wf[] = "๐Ÿ‡ผ๐Ÿ‡ซ"; + inline constexpr const char flag_eh[] = "๐Ÿ‡ช๐Ÿ‡ญ"; + inline constexpr const char flag_ye[] = "๐Ÿ‡พ๐Ÿ‡ช"; + inline constexpr const char flag_zm[] = "๐Ÿ‡ฟ๐Ÿ‡ฒ"; + inline constexpr const char flag_zw[] = "๐Ÿ‡ฟ๐Ÿ‡ผ"; + inline constexpr const char flag_ac[] = "๐Ÿ‡ฆ๐Ÿ‡จ"; + inline constexpr const char flag_bv[] = "๐Ÿ‡ง๐Ÿ‡ป"; + inline constexpr const char flag_cp[] = "๐Ÿ‡จ๐Ÿ‡ต"; + inline constexpr const char flag_ea[] = "๐Ÿ‡ช๐Ÿ‡ฆ"; + inline constexpr const char flag_dg[] = "๐Ÿ‡ฉ๐Ÿ‡ฌ"; + inline constexpr const char flag_hm[] = "๐Ÿ‡ญ๐Ÿ‡ฒ"; + inline constexpr const char flag_mf[] = "๐Ÿ‡ฒ๐Ÿ‡ซ"; + inline constexpr const char flag_sj[] = "๐Ÿ‡ธ๐Ÿ‡ฏ"; + inline constexpr const char flag_ta[] = "๐Ÿ‡น๐Ÿ‡ฆ"; + inline constexpr const char flag_um[] = "๐Ÿ‡บ๐Ÿ‡ฒ"; + inline constexpr const char green_apple[] = "๐Ÿ"; + inline constexpr const char apple[] = "๐ŸŽ"; + inline constexpr const char red_apple[] = "๐ŸŽ"; + inline constexpr const char pear[] = "๐Ÿ"; + inline constexpr const char tangerine[] = "๐ŸŠ"; + inline constexpr const char lemon[] = "๐Ÿ‹"; + inline constexpr const char banana[] = "๐ŸŒ"; + inline constexpr const char watermelon[] = "๐Ÿ‰"; + inline constexpr const char grapes[] = "๐Ÿ‡"; + inline constexpr const char strawberry[] = "๐Ÿ“"; + inline constexpr const char blueberries[] = "๐Ÿซ"; + inline constexpr const char melon[] = "๐Ÿˆ"; + inline constexpr const char cherries[] = "๐Ÿ’"; + inline constexpr const char peach[] = "๐Ÿ‘"; + inline constexpr const char mango[] = "๐Ÿฅญ"; + inline constexpr const char pineapple[] = "๐Ÿ"; + inline constexpr const char coconut[] = "๐Ÿฅฅ"; + inline constexpr const char kiwi[] = "๐Ÿฅ"; + inline constexpr const char kiwifruit[] = "๐Ÿฅ"; + inline constexpr const char kiwi_fruit[] = "๐Ÿฅ"; + inline constexpr const char tomato[] = "๐Ÿ…"; + inline constexpr const char eggplant[] = "๐Ÿ†"; + inline constexpr const char avocado[] = "๐Ÿฅ‘"; + inline constexpr const char pea_pod[] = "๐Ÿซ›"; + inline constexpr const char broccoli[] = "๐Ÿฅฆ"; + inline constexpr const char leafy_green[] = "๐Ÿฅฌ"; + inline constexpr const char cucumber[] = "๐Ÿฅ’"; + inline constexpr const char hot_pepper[] = "๐ŸŒถ๏ธ"; + inline constexpr const char bell_pepper[] = "๐Ÿซ‘"; + inline constexpr const char corn[] = "๐ŸŒฝ"; + inline constexpr const char ear_of_corn[] = "๐ŸŒฝ"; + inline constexpr const char carrot[] = "๐Ÿฅ•"; + inline constexpr const char olive[] = "๐Ÿซ’"; + inline constexpr const char garlic[] = "๐Ÿง„"; + inline constexpr const char onion[] = "๐Ÿง…"; + inline constexpr const char potato[] = "๐Ÿฅ”"; + inline constexpr const char sweet_potato[] = "๐Ÿ "; + inline constexpr const char ginger_root[] = "๐Ÿซš"; + inline constexpr const char croissant[] = "๐Ÿฅ"; + inline constexpr const char bagel[] = "๐Ÿฅฏ"; + inline constexpr const char bread[] = "๐Ÿž"; + inline constexpr const char french_bread[] = "๐Ÿฅ–"; + inline constexpr const char baguette_bread[] = "๐Ÿฅ–"; + inline constexpr const char pretzel[] = "๐Ÿฅจ"; + inline constexpr const char cheese[] = "๐Ÿง€"; + inline constexpr const char cheese_wedge[] = "๐Ÿง€"; + inline constexpr const char egg[] = "๐Ÿฅš"; + inline constexpr const char cooking[] = "๐Ÿณ"; + inline constexpr const char butter[] = "๐Ÿงˆ"; + inline constexpr const char pancakes[] = "๐Ÿฅž"; + inline constexpr const char waffle[] = "๐Ÿง‡"; + inline constexpr const char bacon[] = "๐Ÿฅ“"; + inline constexpr const char cut_of_meat[] = "๐Ÿฅฉ"; + inline constexpr const char poultry_leg[] = "๐Ÿ—"; + inline constexpr const char meat_on_bone[] = "๐Ÿ–"; + inline constexpr const char bone[] = "๐Ÿฆด"; + inline constexpr const char hotdog[] = "๐ŸŒญ"; + inline constexpr const char hot_dog[] = "๐ŸŒญ"; + inline constexpr const char hamburger[] = "๐Ÿ”"; + inline constexpr const char fries[] = "๐ŸŸ"; + inline constexpr const char french_fries[] = "๐ŸŸ"; + inline constexpr const char pizza[] = "๐Ÿ•"; + inline constexpr const char flatbread[] = "๐Ÿซ“"; + inline constexpr const char sandwich[] = "๐Ÿฅช"; + inline constexpr const char stuffed_flatbread[] = "๐Ÿฅ™"; + inline constexpr const char stuffed_pita[] = "๐Ÿฅ™"; + inline constexpr const char falafel[] = "๐Ÿง†"; + inline constexpr const char taco[] = "๐ŸŒฎ"; + inline constexpr const char burrito[] = "๐ŸŒฏ"; + inline constexpr const char tamale[] = "๐Ÿซ”"; + inline constexpr const char salad[] = "๐Ÿฅ—"; + inline constexpr const char green_salad[] = "๐Ÿฅ—"; + inline constexpr const char shallow_pan_of_food[] = "๐Ÿฅ˜"; + inline constexpr const char paella[] = "๐Ÿฅ˜"; + inline constexpr const char fondue[] = "๐Ÿซ•"; + inline constexpr const char canned_food[] = "๐Ÿฅซ"; + inline constexpr const char jar[] = "๐Ÿซ™"; + inline constexpr const char spaghetti[] = "๐Ÿ"; + inline constexpr const char ramen[] = "๐Ÿœ"; + inline constexpr const char steaming_bowl[] = "๐Ÿœ"; + inline constexpr const char stew[] = "๐Ÿฒ"; + inline constexpr const char pot_of_food[] = "๐Ÿฒ"; + inline constexpr const char curry[] = "๐Ÿ›"; + inline constexpr const char curry_rice[] = "๐Ÿ›"; + inline constexpr const char sushi[] = "๐Ÿฃ"; + inline constexpr const char bento[] = "๐Ÿฑ"; + inline constexpr const char bento_box[] = "๐Ÿฑ"; + inline constexpr const char dumpling[] = "๐ŸฅŸ"; + inline constexpr const char oyster[] = "๐Ÿฆช"; + inline constexpr const char fried_shrimp[] = "๐Ÿค"; + inline constexpr const char rice_ball[] = "๐Ÿ™"; + inline constexpr const char rice[] = "๐Ÿš"; + inline constexpr const char cooked_rice[] = "๐Ÿš"; + inline constexpr const char rice_cracker[] = "๐Ÿ˜"; + inline constexpr const char fish_cake[] = "๐Ÿฅ"; + inline constexpr const char fortune_cookie[] = "๐Ÿฅ "; + inline constexpr const char moon_cake[] = "๐Ÿฅฎ"; + inline constexpr const char oden[] = "๐Ÿข"; + inline constexpr const char dango[] = "๐Ÿก"; + inline constexpr const char shaved_ice[] = "๐Ÿง"; + inline constexpr const char ice_cream[] = "๐Ÿจ"; + inline constexpr const char icecream[] = "๐Ÿฆ"; + inline constexpr const char pie[] = "๐Ÿฅง"; + inline constexpr const char cupcake[] = "๐Ÿง"; + inline constexpr const char cake[] = "๐Ÿฐ"; + inline constexpr const char shortcake[] = "๐Ÿฐ"; + inline constexpr const char birthday[] = "๐ŸŽ‚"; + inline constexpr const char birthday_cake[] = "๐ŸŽ‚"; + inline constexpr const char custard[] = "๐Ÿฎ"; + inline constexpr const char pudding[] = "๐Ÿฎ"; + inline constexpr const char flan[] = "๐Ÿฎ"; + inline constexpr const char lollipop[] = "๐Ÿญ"; + inline constexpr const char candy[] = "๐Ÿฌ"; + inline constexpr const char chocolate_bar[] = "๐Ÿซ"; + inline constexpr const char popcorn[] = "๐Ÿฟ"; + inline constexpr const char doughnut[] = "๐Ÿฉ"; + inline constexpr const char cookie[] = "๐Ÿช"; + inline constexpr const char chestnut[] = "๐ŸŒฐ"; + inline constexpr const char peanuts[] = "๐Ÿฅœ"; + inline constexpr const char shelled_peanut[] = "๐Ÿฅœ"; + inline constexpr const char beans[] = "๐Ÿซ˜"; + inline constexpr const char honey_pot[] = "๐Ÿฏ"; + inline constexpr const char milk[] = "๐Ÿฅ›"; + inline constexpr const char glass_of_milk[] = "๐Ÿฅ›"; + inline constexpr const char pouring_liquid[] = "๐Ÿซ—"; + inline constexpr const char baby_bottle[] = "๐Ÿผ"; + inline constexpr const char teapot[] = "๐Ÿซ–"; + inline constexpr const char coffee[] = "โ˜•"; + inline constexpr const char hot_beverage[] = "โ˜•"; + inline constexpr const char tea[] = "๐Ÿต"; + inline constexpr const char mate[] = "๐Ÿง‰"; + inline constexpr const char beverage_box[] = "๐Ÿงƒ"; + inline constexpr const char cup_with_straw[] = "๐Ÿฅค"; + inline constexpr const char bubble_tea[] = "๐Ÿง‹"; + inline constexpr const char sake[] = "๐Ÿถ"; + inline constexpr const char beer[] = "๐Ÿบ"; + inline constexpr const char beer_mug[] = "๐Ÿบ"; + inline constexpr const char beers[] = "๐Ÿป"; + inline constexpr const char champagne_glass[] = "๐Ÿฅ‚"; + inline constexpr const char clinking_glass[] = "๐Ÿฅ‚"; + inline constexpr const char wine_glass[] = "๐Ÿท"; + inline constexpr const char tumbler_glass[] = "๐Ÿฅƒ"; + inline constexpr const char whisky[] = "๐Ÿฅƒ"; + inline constexpr const char cocktail[] = "๐Ÿธ"; + inline constexpr const char tropical_drink[] = "๐Ÿน"; + inline constexpr const char champagne[] = "๐Ÿพ"; + inline constexpr const char bottle_with_popping_cork[] = "๐Ÿพ"; + inline constexpr const char ice_cube[] = "๐ŸงŠ"; + inline constexpr const char spoon[] = "๐Ÿฅ„"; + inline constexpr const char fork_and_knife[] = "๐Ÿด"; + inline constexpr const char fork_knife_plate[] = "๐Ÿฝ๏ธ"; + inline constexpr const char fork_and_knife_with_plate[] = "๐Ÿฝ๏ธ"; + inline constexpr const char bowl_with_spoon[] = "๐Ÿฅฃ"; + inline constexpr const char takeout_box[] = "๐Ÿฅก"; + inline constexpr const char chopsticks[] = "๐Ÿฅข"; + inline constexpr const char salt[] = "๐Ÿง‚"; + inline constexpr const char dog[] = "๐Ÿถ"; + inline constexpr const char dog_face[] = "๐Ÿถ"; + inline constexpr const char cat[] = "๐Ÿฑ"; + inline constexpr const char cat_face[] = "๐Ÿฑ"; + inline constexpr const char mouse[] = "๐Ÿญ"; + inline constexpr const char mouse_face[] = "๐Ÿญ"; + inline constexpr const char hamster[] = "๐Ÿน"; + inline constexpr const char rabbit[] = "๐Ÿฐ"; + inline constexpr const char rabbit_face[] = "๐Ÿฐ"; + inline constexpr const char fox[] = "๐ŸฆŠ"; + inline constexpr const char fox_face[] = "๐ŸฆŠ"; + inline constexpr const char bear[] = "๐Ÿป"; + inline constexpr const char panda_face[] = "๐Ÿผ"; + inline constexpr const char panda[] = "๐Ÿผ"; + inline constexpr const char polar_bear[] = "๐Ÿปโ€โ„๏ธ"; + inline constexpr const char koala[] = "๐Ÿจ"; + inline constexpr const char tiger[] = "๐Ÿฏ"; + inline constexpr const char tiger_face[] = "๐Ÿฏ"; + inline constexpr const char lion_face[] = "๐Ÿฆ"; + inline constexpr const char lion[] = "๐Ÿฆ"; + inline constexpr const char cow[] = "๐Ÿฎ"; + inline constexpr const char cow_face[] = "๐Ÿฎ"; + inline constexpr const char pig[] = "๐Ÿท"; + inline constexpr const char pig_face[] = "๐Ÿท"; + inline constexpr const char pig_nose[] = "๐Ÿฝ"; + inline constexpr const char frog[] = "๐Ÿธ"; + inline constexpr const char monkey_face[] = "๐Ÿต"; + inline constexpr const char see_no_evil[] = "๐Ÿ™ˆ"; + inline constexpr const char hear_no_evil[] = "๐Ÿ™‰"; + inline constexpr const char speak_no_evil[] = "๐Ÿ™Š"; + inline constexpr const char monkey[] = "๐Ÿ’"; + inline constexpr const char chicken[] = "๐Ÿ”"; + inline constexpr const char penguin[] = "๐Ÿง"; + inline constexpr const char bird[] = "๐Ÿฆ"; + inline constexpr const char baby_chick[] = "๐Ÿค"; + inline constexpr const char hatching_chick[] = "๐Ÿฃ"; + inline constexpr const char hatched_chick[] = "๐Ÿฅ"; + inline constexpr const char goose[] = "๐Ÿชฟ"; + inline constexpr const char duck[] = "๐Ÿฆ†"; + inline constexpr const char black_bird[] = "๐Ÿฆโ€โฌ›"; + inline constexpr const char eagle[] = "๐Ÿฆ…"; + inline constexpr const char owl[] = "๐Ÿฆ‰"; + inline constexpr const char bat[] = "๐Ÿฆ‡"; + inline constexpr const char wolf[] = "๐Ÿบ"; + inline constexpr const char boar[] = "๐Ÿ—"; + inline constexpr const char horse[] = "๐Ÿด"; + inline constexpr const char horse_face[] = "๐Ÿด"; + inline constexpr const char unicorn[] = "๐Ÿฆ„"; + inline constexpr const char unicorn_face[] = "๐Ÿฆ„"; + inline constexpr const char moose[] = "๐ŸซŽ"; + inline constexpr const char bee[] = "๐Ÿ"; + inline constexpr const char honeybee[] = "๐Ÿ"; + inline constexpr const char worm[] = "๐Ÿชฑ"; + inline constexpr const char bug[] = "๐Ÿ›"; + inline constexpr const char butterfly[] = "๐Ÿฆ‹"; + inline constexpr const char snail[] = "๐ŸŒ"; + inline constexpr const char lady_beetle[] = "๐Ÿž"; + inline constexpr const char ant[] = "๐Ÿœ"; + inline constexpr const char fly[] = "๐Ÿชฐ"; + inline constexpr const char beetle[] = "๐Ÿชฒ"; + inline constexpr const char cockroach[] = "๐Ÿชณ"; + inline constexpr const char mosquito[] = "๐ŸฆŸ"; + inline constexpr const char cricket[] = "๐Ÿฆ—"; + inline constexpr const char spider[] = "๐Ÿ•ท๏ธ"; + inline constexpr const char spider_web[] = "๐Ÿ•ธ๏ธ"; + inline constexpr const char scorpion[] = "๐Ÿฆ‚"; + inline constexpr const char turtle[] = "๐Ÿข"; + inline constexpr const char snake[] = "๐Ÿ"; + inline constexpr const char lizard[] = "๐ŸฆŽ"; + inline constexpr const char t_rex[] = "๐Ÿฆ–"; + inline constexpr const char sauropod[] = "๐Ÿฆ•"; + inline constexpr const char octopus[] = "๐Ÿ™"; + inline constexpr const char squid[] = "๐Ÿฆ‘"; + inline constexpr const char jellyfish[] = "๐Ÿชผ"; + inline constexpr const char shrimp[] = "๐Ÿฆ"; + inline constexpr const char lobster[] = "๐Ÿฆž"; + inline constexpr const char crab[] = "๐Ÿฆ€"; + inline constexpr const char blowfish[] = "๐Ÿก"; + inline constexpr const char tropical_fish[] = "๐Ÿ "; + inline constexpr const char fish[] = "๐ŸŸ"; + inline constexpr const char dolphin[] = "๐Ÿฌ"; + inline constexpr const char whale[] = "๐Ÿณ"; + inline constexpr const char whale2[] = "๐Ÿ‹"; + inline constexpr const char shark[] = "๐Ÿฆˆ"; + inline constexpr const char seal[] = "๐Ÿฆญ"; + inline constexpr const char crocodile[] = "๐ŸŠ"; + inline constexpr const char tiger2[] = "๐Ÿ…"; + inline constexpr const char leopard[] = "๐Ÿ†"; + inline constexpr const char zebra[] = "๐Ÿฆ“"; + inline constexpr const char gorilla[] = "๐Ÿฆ"; + inline constexpr const char orangutan[] = "๐Ÿฆง"; + inline constexpr const char mammoth[] = "๐Ÿฆฃ"; + inline constexpr const char elephant[] = "๐Ÿ˜"; + inline constexpr const char hippopotamus[] = "๐Ÿฆ›"; + inline constexpr const char rhino[] = "๐Ÿฆ"; + inline constexpr const char rhinoceros[] = "๐Ÿฆ"; + inline constexpr const char dromedary_camel[] = "๐Ÿช"; + inline constexpr const char camel[] = "๐Ÿซ"; + inline constexpr const char giraffe[] = "๐Ÿฆ’"; + inline constexpr const char kangaroo[] = "๐Ÿฆ˜"; + inline constexpr const char bison[] = "๐Ÿฆฌ"; + inline constexpr const char water_buffalo[] = "๐Ÿƒ"; + inline constexpr const char ox[] = "๐Ÿ‚"; + inline constexpr const char cow2[] = "๐Ÿ„"; + inline constexpr const char donkey[] = "๐Ÿซ"; + inline constexpr const char racehorse[] = "๐ŸŽ"; + inline constexpr const char pig2[] = "๐Ÿ–"; + inline constexpr const char ram[] = "๐Ÿ"; + inline constexpr const char sheep[] = "๐Ÿ‘"; + inline constexpr const char ewe[] = "๐Ÿ‘"; + inline constexpr const char llama[] = "๐Ÿฆ™"; + inline constexpr const char goat[] = "๐Ÿ"; + inline constexpr const char deer[] = "๐ŸฆŒ"; + inline constexpr const char dog2[] = "๐Ÿ•"; + inline constexpr const char poodle[] = "๐Ÿฉ"; + inline constexpr const char guide_dog[] = "๐Ÿฆฎ"; + inline constexpr const char service_dog[] = "๐Ÿ•โ€๐Ÿฆบ"; + inline constexpr const char cat2[] = "๐Ÿˆ"; + inline constexpr const char black_cat[] = "๐Ÿˆโ€โฌ›"; + inline constexpr const char feather[] = "๐Ÿชถ"; + inline constexpr const char wing[] = "๐Ÿชฝ"; + inline constexpr const char rooster[] = "๐Ÿ“"; + inline constexpr const char turkey[] = "๐Ÿฆƒ"; + inline constexpr const char dodo[] = "๐Ÿฆค"; + inline constexpr const char peacock[] = "๐Ÿฆš"; + inline constexpr const char parrot[] = "๐Ÿฆœ"; + inline constexpr const char swan[] = "๐Ÿฆข"; + inline constexpr const char flamingo[] = "๐Ÿฆฉ"; + inline constexpr const char dove[] = "๐Ÿ•Š๏ธ"; + inline constexpr const char dove_of_peace[] = "๐Ÿ•Š๏ธ"; + inline constexpr const char rabbit2[] = "๐Ÿ‡"; + inline constexpr const char raccoon[] = "๐Ÿฆ"; + inline constexpr const char skunk[] = "๐Ÿฆจ"; + inline constexpr const char badger[] = "๐Ÿฆก"; + inline constexpr const char beaver[] = "๐Ÿฆซ"; + inline constexpr const char otter[] = "๐Ÿฆฆ"; + inline constexpr const char sloth[] = "๐Ÿฆฅ"; + inline constexpr const char mouse2[] = "๐Ÿ"; + inline constexpr const char rat[] = "๐Ÿ€"; + inline constexpr const char chipmunk[] = "๐Ÿฟ๏ธ"; + inline constexpr const char hedgehog[] = "๐Ÿฆ”"; + inline constexpr const char feet[] = "๐Ÿพ"; + inline constexpr const char paw_prints[] = "๐Ÿพ"; + inline constexpr const char dragon[] = "๐Ÿ‰"; + inline constexpr const char dragon_face[] = "๐Ÿฒ"; + inline constexpr const char cactus[] = "๐ŸŒต"; + inline constexpr const char christmas_tree[] = "๐ŸŽ„"; + inline constexpr const char evergreen_tree[] = "๐ŸŒฒ"; + inline constexpr const char deciduous_tree[] = "๐ŸŒณ"; + inline constexpr const char palm_tree[] = "๐ŸŒด"; + inline constexpr const char wood[] = "๐Ÿชต"; + inline constexpr const char seedling[] = "๐ŸŒฑ"; + inline constexpr const char herb[] = "๐ŸŒฟ"; + inline constexpr const char shamrock[] = "โ˜˜๏ธ"; + inline constexpr const char four_leaf_clover[] = "๐Ÿ€"; + inline constexpr const char bamboo[] = "๐ŸŽ"; + inline constexpr const char potted_plant[] = "๐Ÿชด"; + inline constexpr const char tanabata_tree[] = "๐ŸŽ‹"; + inline constexpr const char leaves[] = "๐Ÿƒ"; + inline constexpr const char fallen_leaf[] = "๐Ÿ‚"; + inline constexpr const char maple_leaf[] = "๐Ÿ"; + inline constexpr const char nest_with_eggs[] = "๐Ÿชบ"; + inline constexpr const char empty_nest[] = "๐Ÿชน"; + inline constexpr const char mushroom[] = "๐Ÿ„"; + inline constexpr const char shell[] = "๐Ÿš"; + inline constexpr const char spiral_shell[] = "๐Ÿš"; + inline constexpr const char coral[] = "๐Ÿชธ"; + inline constexpr const char rock[] = "๐Ÿชจ"; + inline constexpr const char ear_of_rice[] = "๐ŸŒพ"; + inline constexpr const char sheaf_of_rice[] = "๐ŸŒพ"; + inline constexpr const char bouquet[] = "๐Ÿ’"; + inline constexpr const char tulip[] = "๐ŸŒท"; + inline constexpr const char rose[] = "๐ŸŒน"; + inline constexpr const char wilted_rose[] = "๐Ÿฅ€"; + inline constexpr const char wilted_flower[] = "๐Ÿฅ€"; + inline constexpr const char hyacinth[] = "๐Ÿชป"; + inline constexpr const char lotus[] = "๐Ÿชท"; + inline constexpr const char hibiscus[] = "๐ŸŒบ"; + inline constexpr const char cherry_blossom[] = "๐ŸŒธ"; + inline constexpr const char blossom[] = "๐ŸŒผ"; + inline constexpr const char sunflower[] = "๐ŸŒป"; + inline constexpr const char sun_with_face[] = "๐ŸŒž"; + inline constexpr const char full_moon_with_face[] = "๐ŸŒ"; + inline constexpr const char first_quarter_moon_with_face[] = "๐ŸŒ›"; + inline constexpr const char last_quarter_moon_with_face[] = "๐ŸŒœ"; + inline constexpr const char new_moon_with_face[] = "๐ŸŒš"; + inline constexpr const char new_moon_face[] = "๐ŸŒš"; + inline constexpr const char full_moon[] = "๐ŸŒ•"; + inline constexpr const char waning_gibbous_moon[] = "๐ŸŒ–"; + inline constexpr const char last_quarter_moon[] = "๐ŸŒ—"; + inline constexpr const char waning_crescent_moon[] = "๐ŸŒ˜"; + inline constexpr const char new_moon[] = "๐ŸŒ‘"; + inline constexpr const char waxing_crescent_moon[] = "๐ŸŒ’"; + inline constexpr const char first_quarter_moon[] = "๐ŸŒ“"; + inline constexpr const char waxing_gibbous_moon[] = "๐ŸŒ”"; + inline constexpr const char crescent_moon[] = "๐ŸŒ™"; + inline constexpr const char earth_americas[] = "๐ŸŒŽ"; + inline constexpr const char earth_africa[] = "๐ŸŒ"; + inline constexpr const char earth_asia[] = "๐ŸŒ"; + inline constexpr const char ringed_planet[] = "๐Ÿช"; + inline constexpr const char dizzy[] = "๐Ÿ’ซ"; + inline constexpr const char star[] = "โญ"; + inline constexpr const char star2[] = "๐ŸŒŸ"; + inline constexpr const char glowing_star[] = "๐ŸŒŸ"; + inline constexpr const char sparkles[] = "โœจ"; + inline constexpr const char zap[] = "โšก"; + inline constexpr const char high_voltage[] = "โšก"; + inline constexpr const char comet[] = "โ˜„๏ธ"; + inline constexpr const char boom[] = "๐Ÿ’ฅ"; + inline constexpr const char collision[] = "๐Ÿ’ฅ"; + inline constexpr const char fire[] = "๐Ÿ”ฅ"; + inline constexpr const char flame[] = "๐Ÿ”ฅ"; + inline constexpr const char cloud_tornado[] = "๐ŸŒช๏ธ"; + inline constexpr const char cloud_with_tornado[] = "๐ŸŒช๏ธ"; + inline constexpr const char tornado[] = "๐ŸŒช๏ธ"; + inline constexpr const char rainbow[] = "๐ŸŒˆ"; + inline constexpr const char sunny[] = "โ˜€๏ธ"; + inline constexpr const char sun[] = "โ˜€๏ธ"; + inline constexpr const char white_sun_small_cloud[] = "๐ŸŒค๏ธ"; + inline constexpr const char white_sun_with_small_cloud[] = "๐ŸŒค๏ธ"; + inline constexpr const char partly_sunny[] = "โ›…"; + inline constexpr const char white_sun_cloud[] = "๐ŸŒฅ๏ธ"; + inline constexpr const char white_sun_behind_cloud[] = "๐ŸŒฅ๏ธ"; + inline constexpr const char cloud[] = "โ˜๏ธ"; + inline constexpr const char white_sun_rain_cloud[] = "๐ŸŒฆ๏ธ"; + inline constexpr const char white_sun_behind_cloud_with_rain[] = "๐ŸŒฆ๏ธ"; + inline constexpr const char cloud_rain[] = "๐ŸŒง๏ธ"; + inline constexpr const char cloud_with_rain[] = "๐ŸŒง๏ธ"; + inline constexpr const char thunder_cloud_rain[] = "โ›ˆ๏ธ"; + inline constexpr const char thunder_cloud_and_rain[] = "โ›ˆ๏ธ"; + inline constexpr const char cloud_lightning[] = "๐ŸŒฉ๏ธ"; + inline constexpr const char cloud_with_lightning[] = "๐ŸŒฉ๏ธ"; + inline constexpr const char cloud_snow[] = "๐ŸŒจ๏ธ"; + inline constexpr const char cloud_with_snow[] = "๐ŸŒจ๏ธ"; + inline constexpr const char snowflake[] = "โ„๏ธ"; + inline constexpr const char snowman2[] = "โ˜ƒ๏ธ"; + inline constexpr const char snowman[] = "โ›„"; + inline constexpr const char wind_blowing_face[] = "๐ŸŒฌ๏ธ"; + inline constexpr const char wind_face[] = "๐ŸŒฌ๏ธ"; + inline constexpr const char dash[] = "๐Ÿ’จ"; + inline constexpr const char dashing_away[] = "๐Ÿ’จ"; + inline constexpr const char droplet[] = "๐Ÿ’ง"; + inline constexpr const char sweat_drops[] = "๐Ÿ’ฆ"; + inline constexpr const char bubbles[] = "๐Ÿซง"; + inline constexpr const char umbrella[] = "โ˜”"; + inline constexpr const char umbrella2[] = "โ˜‚๏ธ"; + inline constexpr const char ocean[] = "๐ŸŒŠ"; + inline constexpr const char water_wave[] = "๐ŸŒŠ"; + inline constexpr const char fog[] = "๐ŸŒซ๏ธ"; + inline constexpr const char watch[] = "โŒš"; + inline constexpr const char mobile_phone[] = "๐Ÿ“ฑ"; + inline constexpr const char iphone[] = "๐Ÿ“ฑ"; + inline constexpr const char calling[] = "๐Ÿ“ฒ"; + inline constexpr const char computer[] = "๐Ÿ’ป"; + inline constexpr const char keyboard[] = "โŒจ๏ธ"; + inline constexpr const char desktop[] = "๐Ÿ–ฅ๏ธ"; + inline constexpr const char desktop_computer[] = "๐Ÿ–ฅ๏ธ"; + inline constexpr const char printer[] = "๐Ÿ–จ๏ธ"; + inline constexpr const char mouse_three_button[] = "๐Ÿ–ฑ๏ธ"; + inline constexpr const char three_button_mouse[] = "๐Ÿ–ฑ๏ธ"; + inline constexpr const char trackball[] = "๐Ÿ–ฒ๏ธ"; + inline constexpr const char joystick[] = "๐Ÿ•น๏ธ"; + inline constexpr const char compression[] = "๐Ÿ—œ๏ธ"; + inline constexpr const char clamp[] = "๐Ÿ—œ๏ธ"; + inline constexpr const char minidisc[] = "๐Ÿ’ฝ"; + inline constexpr const char computer_disk[] = "๐Ÿ’ฝ"; + inline constexpr const char floppy_disk[] = "๐Ÿ’พ"; + inline constexpr const char cd[] = "๐Ÿ’ฟ"; + inline constexpr const char optical_disk[] = "๐Ÿ’ฟ"; + inline constexpr const char dvd[] = "๐Ÿ“€"; + inline constexpr const char vhs[] = "๐Ÿ“ผ"; + inline constexpr const char videocassette[] = "๐Ÿ“ผ"; + inline constexpr const char camera[] = "๐Ÿ“ท"; + inline constexpr const char camera_with_flash[] = "๐Ÿ“ธ"; + inline constexpr const char video_camera[] = "๐Ÿ“น"; + inline constexpr const char movie_camera[] = "๐ŸŽฅ"; + inline constexpr const char projector[] = "๐Ÿ“ฝ๏ธ"; + inline constexpr const char film_projector[] = "๐Ÿ“ฝ๏ธ"; + inline constexpr const char film_frames[] = "๐ŸŽž๏ธ"; + inline constexpr const char telephone_receiver[] = "๐Ÿ“ž"; + inline constexpr const char telephone[] = "โ˜Ž๏ธ"; + inline constexpr const char pager[] = "๐Ÿ“Ÿ"; + inline constexpr const char fax[] = "๐Ÿ“ "; + inline constexpr const char fax_machine[] = "๐Ÿ“ "; + inline constexpr const char tv[] = "๐Ÿ“บ"; + inline constexpr const char television[] = "๐Ÿ“บ"; + inline constexpr const char radio[] = "๐Ÿ“ป"; + inline constexpr const char microphone2[] = "๐ŸŽ™๏ธ"; + inline constexpr const char studio_microphone[] = "๐ŸŽ™๏ธ"; + inline constexpr const char level_slider[] = "๐ŸŽš๏ธ"; + inline constexpr const char control_knobs[] = "๐ŸŽ›๏ธ"; + inline constexpr const char compass[] = "๐Ÿงญ"; + inline constexpr const char stopwatch[] = "โฑ๏ธ"; + inline constexpr const char timer[] = "โฒ๏ธ"; + inline constexpr const char timer_clock[] = "โฒ๏ธ"; + inline constexpr const char alarm_clock[] = "โฐ"; + inline constexpr const char clock[] = "๐Ÿ•ฐ๏ธ"; + inline constexpr const char mantlepiece_clock[] = "๐Ÿ•ฐ๏ธ"; + inline constexpr const char hourglass[] = "โŒ›"; + inline constexpr const char hourglass_flowing_sand[] = "โณ"; + inline constexpr const char satellite[] = "๐Ÿ“ก"; + inline constexpr const char battery[] = "๐Ÿ”‹"; + inline constexpr const char low_battery[] = "๐Ÿชซ"; + inline constexpr const char electric_plug[] = "๐Ÿ”Œ"; + inline constexpr const char bulb[] = "๐Ÿ’ก"; + inline constexpr const char light_bulb[] = "๐Ÿ’ก"; + inline constexpr const char flashlight[] = "๐Ÿ”ฆ"; + inline constexpr const char candle[] = "๐Ÿ•ฏ๏ธ"; + inline constexpr const char diya_lamp[] = "๐Ÿช”"; + inline constexpr const char fire_extinguisher[] = "๐Ÿงฏ"; + inline constexpr const char oil[] = "๐Ÿ›ข๏ธ"; + inline constexpr const char oil_drum[] = "๐Ÿ›ข๏ธ"; + inline constexpr const char money_with_wings[] = "๐Ÿ’ธ"; + inline constexpr const char dollar[] = "๐Ÿ’ต"; + inline constexpr const char yen[] = "๐Ÿ’ด"; + inline constexpr const char yen_banknote[] = "๐Ÿ’ด"; + inline constexpr const char euro[] = "๐Ÿ’ถ"; + inline constexpr const char euro_banknote[] = "๐Ÿ’ถ"; + inline constexpr const char pound[] = "๐Ÿ’ท"; + inline constexpr const char coin[] = "๐Ÿช™"; + inline constexpr const char moneybag[] = "๐Ÿ’ฐ"; + inline constexpr const char money_bag[] = "๐Ÿ’ฐ"; + inline constexpr const char credit_card[] = "๐Ÿ’ณ"; + inline constexpr const char identification_card[] = "๐Ÿชช"; + inline constexpr const char gem[] = "๐Ÿ’Ž"; + inline constexpr const char gem_stone[] = "๐Ÿ’Ž"; + inline constexpr const char scales[] = "โš–๏ธ"; + inline constexpr const char balance_scale[] = "โš–๏ธ"; + inline constexpr const char ladder[] = "๐Ÿชœ"; + inline constexpr const char toolbox[] = "๐Ÿงฐ"; + inline constexpr const char screwdriver[] = "๐Ÿช›"; + inline constexpr const char wrench[] = "๐Ÿ”ง"; + inline constexpr const char hammer[] = "๐Ÿ”จ"; + inline constexpr const char hammer_pick[] = "โš’๏ธ"; + inline constexpr const char hammer_and_pick[] = "โš’๏ธ"; + inline constexpr const char tools[] = "๐Ÿ› ๏ธ"; + inline constexpr const char hammer_and_wrench[] = "๐Ÿ› ๏ธ"; + inline constexpr const char pick[] = "โ›๏ธ"; + inline constexpr const char carpentry_saw[] = "๐Ÿชš"; + inline constexpr const char nut_and_bolt[] = "๐Ÿ”ฉ"; + inline constexpr const char gear[] = "โš™๏ธ"; + inline constexpr const char mouse_trap[] = "๐Ÿชค"; + inline constexpr const char bricks[] = "๐Ÿงฑ"; + inline constexpr const char brick[] = "๐Ÿงฑ"; + inline constexpr const char chains[] = "โ›“๏ธ"; + inline constexpr const char magnet[] = "๐Ÿงฒ"; + inline constexpr const char gun[] = "๐Ÿ”ซ"; + inline constexpr const char pistol[] = "๐Ÿ”ซ"; + inline constexpr const char bomb[] = "๐Ÿ’ฃ"; + inline constexpr const char firecracker[] = "๐Ÿงจ"; + inline constexpr const char axe[] = "๐Ÿช“"; + inline constexpr const char knife[] = "๐Ÿ”ช"; + inline constexpr const char kitchen_knife[] = "๐Ÿ”ช"; + inline constexpr const char dagger[] = "๐Ÿ—ก๏ธ"; + inline constexpr const char dagger_knife[] = "๐Ÿ—ก๏ธ"; + inline constexpr const char crossed_swords[] = "โš”๏ธ"; + inline constexpr const char shield[] = "๐Ÿ›ก๏ธ"; + inline constexpr const char smoking[] = "๐Ÿšฌ"; + inline constexpr const char cigarette[] = "๐Ÿšฌ"; + inline constexpr const char coffin[] = "โšฐ๏ธ"; + inline constexpr const char headstone[] = "๐Ÿชฆ"; + inline constexpr const char urn[] = "โšฑ๏ธ"; + inline constexpr const char funeral_urn[] = "โšฑ๏ธ"; + inline constexpr const char amphora[] = "๐Ÿบ"; + inline constexpr const char crystal_ball[] = "๐Ÿ”ฎ"; + inline constexpr const char prayer_beads[] = "๐Ÿ“ฟ"; + inline constexpr const char nazar_amulet[] = "๐Ÿงฟ"; + inline constexpr const char hamsa[] = "๐Ÿชฌ"; + inline constexpr const char barber[] = "๐Ÿ’ˆ"; + inline constexpr const char barber_pole[] = "๐Ÿ’ˆ"; + inline constexpr const char alembic[] = "โš—๏ธ"; + inline constexpr const char telescope[] = "๐Ÿ”ญ"; + inline constexpr const char microscope[] = "๐Ÿ”ฌ"; + inline constexpr const char hole[] = "๐Ÿ•ณ๏ธ"; + inline constexpr const char x_ray[] = "๐Ÿฉป"; + inline constexpr const char adhesive_bandage[] = "๐Ÿฉน"; + inline constexpr const char stethoscope[] = "๐Ÿฉบ"; + inline constexpr const char pill[] = "๐Ÿ’Š"; + inline constexpr const char syringe[] = "๐Ÿ’‰"; + inline constexpr const char drop_of_blood[] = "๐Ÿฉธ"; + inline constexpr const char dna[] = "๐Ÿงฌ"; + inline constexpr const char microbe[] = "๐Ÿฆ "; + inline constexpr const char petri_dish[] = "๐Ÿงซ"; + inline constexpr const char test_tube[] = "๐Ÿงช"; + inline constexpr const char thermometer[] = "๐ŸŒก๏ธ"; + inline constexpr const char broom[] = "๐Ÿงน"; + inline constexpr const char plunger[] = "๐Ÿช "; + inline constexpr const char basket[] = "๐Ÿงบ"; + inline constexpr const char roll_of_paper[] = "๐Ÿงป"; + inline constexpr const char toilet[] = "๐Ÿšฝ"; + inline constexpr const char potable_water[] = "๐Ÿšฐ"; + inline constexpr const char shower[] = "๐Ÿšฟ"; + inline constexpr const char bathtub[] = "๐Ÿ›"; + inline constexpr const char bath[] = "๐Ÿ›€"; + inline constexpr const char bath_tone1[] = "๐Ÿ›€๐Ÿป"; + inline constexpr const char bath_tone2[] = "๐Ÿ›€๐Ÿผ"; + inline constexpr const char bath_tone3[] = "๐Ÿ›€๐Ÿฝ"; + inline constexpr const char bath_tone4[] = "๐Ÿ›€๐Ÿพ"; + inline constexpr const char bath_tone5[] = "๐Ÿ›€๐Ÿฟ"; + inline constexpr const char soap[] = "๐Ÿงผ"; + inline constexpr const char toothbrush[] = "๐Ÿชฅ"; + inline constexpr const char razor[] = "๐Ÿช’"; + inline constexpr const char hair_pick[] = "๐Ÿชฎ"; + inline constexpr const char sponge[] = "๐Ÿงฝ"; + inline constexpr const char bucket[] = "๐Ÿชฃ"; + inline constexpr const char squeeze_bottle[] = "๐Ÿงด"; + inline constexpr const char lotion_bottle[] = "๐Ÿงด"; + inline constexpr const char bellhop[] = "๐Ÿ›Ž๏ธ"; + inline constexpr const char bellhop_bell[] = "๐Ÿ›Ž๏ธ"; + inline constexpr const char key[] = "๐Ÿ”‘"; + inline constexpr const char key2[] = "๐Ÿ—๏ธ"; + inline constexpr const char old_key[] = "๐Ÿ—๏ธ"; + inline constexpr const char door[] = "๐Ÿšช"; + inline constexpr const char chair[] = "๐Ÿช‘"; + inline constexpr const char couch[] = "๐Ÿ›‹๏ธ"; + inline constexpr const char couch_and_lamp[] = "๐Ÿ›‹๏ธ"; + inline constexpr const char bed[] = "๐Ÿ›๏ธ"; + inline constexpr const char sleeping_accommodation[] = "๐Ÿ›Œ"; + inline constexpr const char person_in_bed[] = "๐Ÿ›Œ"; + inline constexpr const char person_in_bed_tone1[] = "๐Ÿ›Œ๐Ÿป"; + inline constexpr const char person_in_bed_light_skin_tone[] = "๐Ÿ›Œ๐Ÿป"; + inline constexpr const char person_in_bed_tone2[] = "๐Ÿ›Œ๐Ÿผ"; + inline constexpr const char person_in_bed_medium_light_skin_tone[] = "๐Ÿ›Œ๐Ÿผ"; + inline constexpr const char person_in_bed_tone3[] = "๐Ÿ›Œ๐Ÿฝ"; + inline constexpr const char person_in_bed_medium_skin_tone[] = "๐Ÿ›Œ๐Ÿฝ"; + inline constexpr const char person_in_bed_tone4[] = "๐Ÿ›Œ๐Ÿพ"; + inline constexpr const char person_in_bed_medium_dark_skin_tone[] = "๐Ÿ›Œ๐Ÿพ"; + inline constexpr const char person_in_bed_tone5[] = "๐Ÿ›Œ๐Ÿฟ"; + inline constexpr const char person_in_bed_dark_skin_tone[] = "๐Ÿ›Œ๐Ÿฟ"; + inline constexpr const char teddy_bear[] = "๐Ÿงธ"; + inline constexpr const char nesting_dolls[] = "๐Ÿช†"; + inline constexpr const char frame_photo[] = "๐Ÿ–ผ๏ธ"; + inline constexpr const char frame_with_picture[] = "๐Ÿ–ผ๏ธ"; + inline constexpr const char mirror[] = "๐Ÿชž"; + inline constexpr const char window[] = "๐ŸชŸ"; + inline constexpr const char shopping_bags[] = "๐Ÿ›๏ธ"; + inline constexpr const char shopping_cart[] = "๐Ÿ›’"; + inline constexpr const char shopping_trolley[] = "๐Ÿ›’"; + inline constexpr const char gift[] = "๐ŸŽ"; + inline constexpr const char wrapped_gift[] = "๐ŸŽ"; + inline constexpr const char balloon[] = "๐ŸŽˆ"; + inline constexpr const char flags[] = "๐ŸŽ"; + inline constexpr const char carp_streamer[] = "๐ŸŽ"; + inline constexpr const char ribbon[] = "๐ŸŽ€"; + inline constexpr const char magic_wand[] = "๐Ÿช„"; + inline constexpr const char pinata[] = "๐Ÿช…"; + inline constexpr const char confetti_ball[] = "๐ŸŽŠ"; + inline constexpr const char tada[] = "๐ŸŽ‰"; + inline constexpr const char party_popper[] = "๐ŸŽ‰"; + inline constexpr const char dolls[] = "๐ŸŽŽ"; + inline constexpr const char folding_hand_fan[] = "๐Ÿชญ"; + inline constexpr const char izakaya_lantern[] = "๐Ÿฎ"; + inline constexpr const char wind_chime[] = "๐ŸŽ"; + inline constexpr const char mirror_ball[] = "๐Ÿชฉ"; + inline constexpr const char red_envelope[] = "๐Ÿงง"; + inline constexpr const char envelope[] = "โœ‰๏ธ"; + inline constexpr const char envelope_with_arrow[] = "๐Ÿ“ฉ"; + inline constexpr const char incoming_envelope[] = "๐Ÿ“จ"; + inline constexpr const char e_mail[] = "๐Ÿ“ง"; + inline constexpr const char email[] = "๐Ÿ“ง"; + inline constexpr const char love_letter[] = "๐Ÿ’Œ"; + inline constexpr const char inbox_tray[] = "๐Ÿ“ฅ"; + inline constexpr const char outbox_tray[] = "๐Ÿ“ค"; + inline constexpr const char package[] = "๐Ÿ“ฆ"; + inline constexpr const char label[] = "๐Ÿท๏ธ"; + inline constexpr const char placard[] = "๐Ÿชง"; + inline constexpr const char mailbox_closed[] = "๐Ÿ“ช"; + inline constexpr const char mailbox[] = "๐Ÿ“ซ"; + inline constexpr const char mailbox_with_mail[] = "๐Ÿ“ฌ"; + inline constexpr const char mailbox_with_no_mail[] = "๐Ÿ“ญ"; + inline constexpr const char postbox[] = "๐Ÿ“ฎ"; + inline constexpr const char postal_horn[] = "๐Ÿ“ฏ"; + inline constexpr const char scroll[] = "๐Ÿ“œ"; + inline constexpr const char page_with_curl[] = "๐Ÿ“ƒ"; + inline constexpr const char page_facing_up[] = "๐Ÿ“„"; + inline constexpr const char bookmark_tabs[] = "๐Ÿ“‘"; + inline constexpr const char receipt[] = "๐Ÿงพ"; + inline constexpr const char bar_chart[] = "๐Ÿ“Š"; + inline constexpr const char chart_with_upwards_trend[] = "๐Ÿ“ˆ"; + inline constexpr const char chart_with_downwards_trend[] = "๐Ÿ“‰"; + inline constexpr const char notepad_spiral[] = "๐Ÿ—’๏ธ"; + inline constexpr const char spiral_note_pad[] = "๐Ÿ—’๏ธ"; + inline constexpr const char calendar_spiral[] = "๐Ÿ—“๏ธ"; + inline constexpr const char spiral_calendar_pad[] = "๐Ÿ—“๏ธ"; + inline constexpr const char calendar[] = "๐Ÿ“†"; + inline constexpr const char date[] = "๐Ÿ“…"; + inline constexpr const char wastebasket[] = "๐Ÿ—‘๏ธ"; + inline constexpr const char card_index[] = "๐Ÿ“‡"; + inline constexpr const char card_box[] = "๐Ÿ—ƒ๏ธ"; + inline constexpr const char card_file_box[] = "๐Ÿ—ƒ๏ธ"; + inline constexpr const char ballot_box[] = "๐Ÿ—ณ๏ธ"; + inline constexpr const char ballot_box_with_ballot[] = "๐Ÿ—ณ๏ธ"; + inline constexpr const char file_cabinet[] = "๐Ÿ—„๏ธ"; + inline constexpr const char clipboard[] = "๐Ÿ“‹"; + inline constexpr const char file_folder[] = "๐Ÿ“"; + inline constexpr const char open_file_folder[] = "๐Ÿ“‚"; + inline constexpr const char dividers[] = "๐Ÿ—‚๏ธ"; + inline constexpr const char card_index_dividers[] = "๐Ÿ—‚๏ธ"; + inline constexpr const char newspaper2[] = "๐Ÿ—ž๏ธ"; + inline constexpr const char rolled_up_newspaper[] = "๐Ÿ—ž๏ธ"; + inline constexpr const char newspaper[] = "๐Ÿ“ฐ"; + inline constexpr const char notebook[] = "๐Ÿ““"; + inline constexpr const char notebook_with_decorative_cover[] = "๐Ÿ“”"; + inline constexpr const char ledger[] = "๐Ÿ“’"; + inline constexpr const char closed_book[] = "๐Ÿ“•"; + inline constexpr const char green_book[] = "๐Ÿ“—"; + inline constexpr const char blue_book[] = "๐Ÿ“˜"; + inline constexpr const char orange_book[] = "๐Ÿ“™"; + inline constexpr const char books[] = "๐Ÿ“š"; + inline constexpr const char book[] = "๐Ÿ“–"; + inline constexpr const char open_book[] = "๐Ÿ“–"; + inline constexpr const char bookmark[] = "๐Ÿ”–"; + inline constexpr const char safety_pin[] = "๐Ÿงท"; + inline constexpr const char link[] = "๐Ÿ”—"; + inline constexpr const char paperclip[] = "๐Ÿ“Ž"; + inline constexpr const char paperclips[] = "๐Ÿ–‡๏ธ"; + inline constexpr const char linked_paperclips[] = "๐Ÿ–‡๏ธ"; + inline constexpr const char triangular_ruler[] = "๐Ÿ“"; + inline constexpr const char straight_ruler[] = "๐Ÿ“"; + inline constexpr const char abacus[] = "๐Ÿงฎ"; + inline constexpr const char pushpin[] = "๐Ÿ“Œ"; + inline constexpr const char round_pushpin[] = "๐Ÿ“"; + inline constexpr const char scissors[] = "โœ‚๏ธ"; + inline constexpr const char pen_ballpoint[] = "๐Ÿ–Š๏ธ"; + inline constexpr const char lower_left_ballpoint_pen[] = "๐Ÿ–Š๏ธ"; + inline constexpr const char pen[] = "๐Ÿ–Š๏ธ"; + inline constexpr const char pen_fountain[] = "๐Ÿ–‹๏ธ"; + inline constexpr const char lower_left_fountain_pen[] = "๐Ÿ–‹๏ธ"; + inline constexpr const char fountain_pen[] = "๐Ÿ–‹๏ธ"; + inline constexpr const char black_nib[] = "โœ’๏ธ"; + inline constexpr const char paintbrush[] = "๐Ÿ–Œ๏ธ"; + inline constexpr const char lower_left_paintbrush[] = "๐Ÿ–Œ๏ธ"; + inline constexpr const char crayon[] = "๐Ÿ–๏ธ"; + inline constexpr const char lower_left_crayon[] = "๐Ÿ–๏ธ"; + inline constexpr const char pencil[] = "๐Ÿ“"; + inline constexpr const char memo[] = "๐Ÿ“"; + inline constexpr const char pencil2[] = "โœ๏ธ"; + inline constexpr const char mag[] = "๐Ÿ”"; + inline constexpr const char mag_right[] = "๐Ÿ”Ž"; + inline constexpr const char lock_with_ink_pen[] = "๐Ÿ”"; + inline constexpr const char closed_lock_with_key[] = "๐Ÿ”"; + inline constexpr const char lock[] = "๐Ÿ”’"; + inline constexpr const char locked[] = "๐Ÿ”’"; + inline constexpr const char unlock[] = "๐Ÿ”“"; + inline constexpr const char unlocked[] = "๐Ÿ”“"; + inline constexpr const char grinning[] = "๐Ÿ˜€"; + inline constexpr const char grinning_face[] = "๐Ÿ˜€"; + inline constexpr const char smiley[] = "๐Ÿ˜ƒ"; + inline constexpr const char smile[] = "๐Ÿ˜„"; + inline constexpr const char grin[] = "๐Ÿ˜"; + inline constexpr const char laughing[] = "๐Ÿ˜†"; + inline constexpr const char satisfied[] = "๐Ÿ˜†"; + inline constexpr const char face_holding_back_tears[] = "๐Ÿฅน"; + inline constexpr const char sweat_smile[] = "๐Ÿ˜…"; + inline constexpr const char joy[] = "๐Ÿ˜‚"; + inline constexpr const char rofl[] = "๐Ÿคฃ"; + inline constexpr const char rolling_on_the_floor_laughing[] = "๐Ÿคฃ"; + inline constexpr const char smiling_face_with_tear[] = "๐Ÿฅฒ"; + inline constexpr const char relaxed[] = "โ˜บ๏ธ"; + inline constexpr const char smiling_face[] = "โ˜บ๏ธ"; + inline constexpr const char blush[] = "๐Ÿ˜Š"; + inline constexpr const char innocent[] = "๐Ÿ˜‡"; + inline constexpr const char slight_smile[] = "๐Ÿ™‚"; + inline constexpr const char slightly_smiling_face[] = "๐Ÿ™‚"; + inline constexpr const char upside_down[] = "๐Ÿ™ƒ"; + inline constexpr const char upside_down_face[] = "๐Ÿ™ƒ"; + inline constexpr const char wink[] = "๐Ÿ˜‰"; + inline constexpr const char winking_face[] = "๐Ÿ˜‰"; + inline constexpr const char relieved[] = "๐Ÿ˜Œ"; + inline constexpr const char relieved_face[] = "๐Ÿ˜Œ"; + inline constexpr const char heart_eyes[] = "๐Ÿ˜"; + inline constexpr const char smiling_face_with_3_hearts[] = "๐Ÿฅฐ"; + inline constexpr const char kissing_heart[] = "๐Ÿ˜˜"; + inline constexpr const char kissing[] = "๐Ÿ˜—"; + inline constexpr const char kissing_face[] = "๐Ÿ˜—"; + inline constexpr const char kissing_smiling_eyes[] = "๐Ÿ˜™"; + inline constexpr const char kissing_closed_eyes[] = "๐Ÿ˜š"; + inline constexpr const char yum[] = "๐Ÿ˜‹"; + inline constexpr const char stuck_out_tongue[] = "๐Ÿ˜›"; + inline constexpr const char stuck_out_tongue_closed_eyes[] = "๐Ÿ˜"; + inline constexpr const char stuck_out_tongue_winking_eye[] = "๐Ÿ˜œ"; + inline constexpr const char zany_face[] = "๐Ÿคช"; + inline constexpr const char face_with_raised_eyebrow[] = "๐Ÿคจ"; + inline constexpr const char face_with_monocle[] = "๐Ÿง"; + inline constexpr const char nerd[] = "๐Ÿค“"; + inline constexpr const char nerd_face[] = "๐Ÿค“"; + inline constexpr const char sunglasses[] = "๐Ÿ˜Ž"; + inline constexpr const char disguised_face[] = "๐Ÿฅธ"; + inline constexpr const char star_struck[] = "๐Ÿคฉ"; + inline constexpr const char partying_face[] = "๐Ÿฅณ"; + inline constexpr const char smirk[] = "๐Ÿ˜"; + inline constexpr const char smirking_face[] = "๐Ÿ˜"; + inline constexpr const char unamused[] = "๐Ÿ˜’"; + inline constexpr const char unamused_face[] = "๐Ÿ˜’"; + inline constexpr const char disappointed[] = "๐Ÿ˜ž"; + inline constexpr const char pensive[] = "๐Ÿ˜”"; + inline constexpr const char pensive_face[] = "๐Ÿ˜”"; + inline constexpr const char worried[] = "๐Ÿ˜Ÿ"; + inline constexpr const char worried_face[] = "๐Ÿ˜Ÿ"; + inline constexpr const char confused[] = "๐Ÿ˜•"; + inline constexpr const char confused_face[] = "๐Ÿ˜•"; + inline constexpr const char slight_frown[] = "๐Ÿ™"; + inline constexpr const char slightly_frowning_face[] = "๐Ÿ™"; + inline constexpr const char frowning2[] = "โ˜น๏ธ"; + inline constexpr const char white_frowning_face[] = "โ˜น๏ธ"; + inline constexpr const char frowning_face[] = "โ˜น๏ธ"; + inline constexpr const char persevere[] = "๐Ÿ˜ฃ"; + inline constexpr const char confounded[] = "๐Ÿ˜–"; + inline constexpr const char tired_face[] = "๐Ÿ˜ซ"; + inline constexpr const char weary[] = "๐Ÿ˜ฉ"; + inline constexpr const char weary_face[] = "๐Ÿ˜ฉ"; + inline constexpr const char pleading_face[] = "๐Ÿฅบ"; + inline constexpr const char cry[] = "๐Ÿ˜ข"; + inline constexpr const char crying_face[] = "๐Ÿ˜ข"; + inline constexpr const char sob[] = "๐Ÿ˜ญ"; + inline constexpr const char triumph[] = "๐Ÿ˜ค"; + inline constexpr const char angry[] = "๐Ÿ˜ "; + inline constexpr const char angry_face[] = "๐Ÿ˜ "; + inline constexpr const char rage[] = "๐Ÿ˜ก"; + inline constexpr const char pouting_face[] = "๐Ÿ˜ก"; + inline constexpr const char face_with_symbols_over_mouth[] = "๐Ÿคฌ"; + inline constexpr const char exploding_head[] = "๐Ÿคฏ"; + inline constexpr const char flushed[] = "๐Ÿ˜ณ"; + inline constexpr const char flushed_face[] = "๐Ÿ˜ณ"; + inline constexpr const char hot_face[] = "๐Ÿฅต"; + inline constexpr const char cold_face[] = "๐Ÿฅถ"; + inline constexpr const char face_in_clouds[] = "๐Ÿ˜ถโ€๐ŸŒซ๏ธ"; + inline constexpr const char scream[] = "๐Ÿ˜ฑ"; + inline constexpr const char fearful[] = "๐Ÿ˜จ"; + inline constexpr const char fearful_face[] = "๐Ÿ˜จ"; + inline constexpr const char cold_sweat[] = "๐Ÿ˜ฐ"; + inline constexpr const char disappointed_relieved[] = "๐Ÿ˜ฅ"; + inline constexpr const char sweat[] = "๐Ÿ˜“"; + inline constexpr const char hugging[] = "๐Ÿค—"; + inline constexpr const char hugging_face[] = "๐Ÿค—"; + inline constexpr const char thinking[] = "๐Ÿค”"; + inline constexpr const char thinking_face[] = "๐Ÿค”"; + inline constexpr const char face_with_peeking_eye[] = "๐Ÿซฃ"; + inline constexpr const char face_with_hand_over_mouth[] = "๐Ÿคญ"; + inline constexpr const char face_with_open_eyes_and_hand_over_mouth[] = "๐Ÿซข"; + inline constexpr const char saluting_face[] = "๐Ÿซก"; + inline constexpr const char shushing_face[] = "๐Ÿคซ"; + inline constexpr const char melting_face[] = "๐Ÿซ "; + inline constexpr const char lying_face[] = "๐Ÿคฅ"; + inline constexpr const char liar[] = "๐Ÿคฅ"; + inline constexpr const char no_mouth[] = "๐Ÿ˜ถ"; + inline constexpr const char dotted_line_face[] = "๐Ÿซฅ"; + inline constexpr const char neutral_face[] = "๐Ÿ˜"; + inline constexpr const char face_with_diagonal_mouth[] = "๐Ÿซค"; + inline constexpr const char expressionless[] = "๐Ÿ˜‘"; + inline constexpr const char shaking_face[] = "๐Ÿซจ"; + inline constexpr const char grimacing[] = "๐Ÿ˜ฌ"; + inline constexpr const char rolling_eyes[] = "๐Ÿ™„"; + inline constexpr const char face_with_rolling_eyes[] = "๐Ÿ™„"; + inline constexpr const char hushed[] = "๐Ÿ˜ฏ"; + inline constexpr const char hushed_face[] = "๐Ÿ˜ฏ"; + inline constexpr const char frowning[] = "๐Ÿ˜ฆ"; + inline constexpr const char anguished[] = "๐Ÿ˜ง"; + inline constexpr const char open_mouth[] = "๐Ÿ˜ฎ"; + inline constexpr const char astonished[] = "๐Ÿ˜ฒ"; + inline constexpr const char yawning_face[] = "๐Ÿฅฑ"; + inline constexpr const char sleeping[] = "๐Ÿ˜ด"; + inline constexpr const char sleeping_face[] = "๐Ÿ˜ด"; + inline constexpr const char drooling_face[] = "๐Ÿคค"; + inline constexpr const char drool[] = "๐Ÿคค"; + inline constexpr const char sleepy[] = "๐Ÿ˜ช"; + inline constexpr const char sleepy_face[] = "๐Ÿ˜ช"; + inline constexpr const char face_exhaling[] = "๐Ÿ˜ฎโ€๐Ÿ’จ"; + inline constexpr const char dizzy_face[] = "๐Ÿ˜ต"; + inline constexpr const char face_with_spiral_eyes[] = "๐Ÿ˜ตโ€๐Ÿ’ซ"; + inline constexpr const char zipper_mouth[] = "๐Ÿค"; + inline constexpr const char zipper_mouth_face[] = "๐Ÿค"; + inline constexpr const char woozy_face[] = "๐Ÿฅด"; + inline constexpr const char nauseated_face[] = "๐Ÿคข"; + inline constexpr const char sick[] = "๐Ÿคข"; + inline constexpr const char face_vomiting[] = "๐Ÿคฎ"; + inline constexpr const char sneezing_face[] = "๐Ÿคง"; + inline constexpr const char sneeze[] = "๐Ÿคง"; + inline constexpr const char mask[] = "๐Ÿ˜ท"; + inline constexpr const char thermometer_face[] = "๐Ÿค’"; + inline constexpr const char face_with_thermometer[] = "๐Ÿค’"; + inline constexpr const char head_bandage[] = "๐Ÿค•"; + inline constexpr const char face_with_head_bandage[] = "๐Ÿค•"; + inline constexpr const char money_mouth[] = "๐Ÿค‘"; + inline constexpr const char money_mouth_face[] = "๐Ÿค‘"; + inline constexpr const char cowboy[] = "๐Ÿค "; + inline constexpr const char face_with_cowboy_hat[] = "๐Ÿค "; + inline constexpr const char smiling_imp[] = "๐Ÿ˜ˆ"; + inline constexpr const char imp[] = "๐Ÿ‘ฟ"; + inline constexpr const char japanese_ogre[] = "๐Ÿ‘น"; + inline constexpr const char ogre[] = "๐Ÿ‘น"; + inline constexpr const char japanese_goblin[] = "๐Ÿ‘บ"; + inline constexpr const char goblin[] = "๐Ÿ‘บ"; + inline constexpr const char clown[] = "๐Ÿคก"; + inline constexpr const char clown_face[] = "๐Ÿคก"; + inline constexpr const char poop[] = "๐Ÿ’ฉ"; + inline constexpr const char shit[] = "๐Ÿ’ฉ"; + inline constexpr const char hankey[] = "๐Ÿ’ฉ"; + inline constexpr const char poo[] = "๐Ÿ’ฉ"; + inline constexpr const char pile_of_poo[] = "๐Ÿ’ฉ"; + inline constexpr const char ghost[] = "๐Ÿ‘ป"; + inline constexpr const char skull[] = "๐Ÿ’€"; + inline constexpr const char skeleton[] = "๐Ÿ’€"; + inline constexpr const char skull_crossbones[] = "โ˜ ๏ธ"; + inline constexpr const char skull_and_crossbones[] = "โ˜ ๏ธ"; + inline constexpr const char alien[] = "๐Ÿ‘ฝ"; + inline constexpr const char space_invader[] = "๐Ÿ‘พ"; + inline constexpr const char alien_monster[] = "๐Ÿ‘พ"; + inline constexpr const char robot[] = "๐Ÿค–"; + inline constexpr const char robot_face[] = "๐Ÿค–"; + inline constexpr const char jack_o_lantern[] = "๐ŸŽƒ"; + inline constexpr const char smiley_cat[] = "๐Ÿ˜บ"; + inline constexpr const char grinning_cat[] = "๐Ÿ˜บ"; + inline constexpr const char smile_cat[] = "๐Ÿ˜ธ"; + inline constexpr const char joy_cat[] = "๐Ÿ˜น"; + inline constexpr const char heart_eyes_cat[] = "๐Ÿ˜ป"; + inline constexpr const char smirk_cat[] = "๐Ÿ˜ผ"; + inline constexpr const char kissing_cat[] = "๐Ÿ˜ฝ"; + inline constexpr const char scream_cat[] = "๐Ÿ™€"; + inline constexpr const char weary_cat[] = "๐Ÿ™€"; + inline constexpr const char crying_cat_face[] = "๐Ÿ˜ฟ"; + inline constexpr const char crying_cat[] = "๐Ÿ˜ฟ"; + inline constexpr const char pouting_cat[] = "๐Ÿ˜พ"; + inline constexpr const char heart_hands[] = "๐Ÿซถ"; + inline constexpr const char heart_hands_tone1[] = "๐Ÿซถ๐Ÿป"; + inline constexpr const char heart_hands_light_skin_tone[] = "๐Ÿซถ๐Ÿป"; + inline constexpr const char heart_hands_tone2[] = "๐Ÿซถ๐Ÿผ"; + inline constexpr const char heart_hands_medium_light_skin_tone[] = "๐Ÿซถ๐Ÿผ"; + inline constexpr const char heart_hands_tone3[] = "๐Ÿซถ๐Ÿฝ"; + inline constexpr const char heart_hands_medium_skin_tone[] = "๐Ÿซถ๐Ÿฝ"; + inline constexpr const char heart_hands_tone4[] = "๐Ÿซถ๐Ÿพ"; + inline constexpr const char heart_hands_medium_dark_skin_tone[] = "๐Ÿซถ๐Ÿพ"; + inline constexpr const char heart_hands_tone5[] = "๐Ÿซถ๐Ÿฟ"; + inline constexpr const char heart_hands_dark_skin_tone[] = "๐Ÿซถ๐Ÿฟ"; + inline constexpr const char palms_up_together[] = "๐Ÿคฒ"; + inline constexpr const char palms_up_together_tone1[] = "๐Ÿคฒ๐Ÿป"; + inline constexpr const char palms_up_together_light_skin_tone[] = "๐Ÿคฒ๐Ÿป"; + inline constexpr const char palms_up_together_tone2[] = "๐Ÿคฒ๐Ÿผ"; + inline constexpr const char palms_up_together_medium_light_skin_tone[] = "๐Ÿคฒ๐Ÿผ"; + inline constexpr const char palms_up_together_tone3[] = "๐Ÿคฒ๐Ÿฝ"; + inline constexpr const char palms_up_together_medium_skin_tone[] = "๐Ÿคฒ๐Ÿฝ"; + inline constexpr const char palms_up_together_tone4[] = "๐Ÿคฒ๐Ÿพ"; + inline constexpr const char palms_up_together_medium_dark_skin_tone[] = "๐Ÿคฒ๐Ÿพ"; + inline constexpr const char palms_up_together_tone5[] = "๐Ÿคฒ๐Ÿฟ"; + inline constexpr const char palms_up_together_dark_skin_tone[] = "๐Ÿคฒ๐Ÿฟ"; + inline constexpr const char open_hands[] = "๐Ÿ‘"; + inline constexpr const char open_hands_tone1[] = "๐Ÿ‘๐Ÿป"; + inline constexpr const char open_hands_tone2[] = "๐Ÿ‘๐Ÿผ"; + inline constexpr const char open_hands_tone3[] = "๐Ÿ‘๐Ÿฝ"; + inline constexpr const char open_hands_tone4[] = "๐Ÿ‘๐Ÿพ"; + inline constexpr const char open_hands_tone5[] = "๐Ÿ‘๐Ÿฟ"; + inline constexpr const char raised_hands[] = "๐Ÿ™Œ"; + inline constexpr const char raising_hands[] = "๐Ÿ™Œ"; + inline constexpr const char raised_hands_tone1[] = "๐Ÿ™Œ๐Ÿป"; + inline constexpr const char raised_hands_tone2[] = "๐Ÿ™Œ๐Ÿผ"; + inline constexpr const char raised_hands_tone3[] = "๐Ÿ™Œ๐Ÿฝ"; + inline constexpr const char raised_hands_tone4[] = "๐Ÿ™Œ๐Ÿพ"; + inline constexpr const char raised_hands_tone5[] = "๐Ÿ™Œ๐Ÿฟ"; + inline constexpr const char clap[] = "๐Ÿ‘"; + inline constexpr const char clap_tone1[] = "๐Ÿ‘๐Ÿป"; + inline constexpr const char clap_tone2[] = "๐Ÿ‘๐Ÿผ"; + inline constexpr const char clap_tone3[] = "๐Ÿ‘๐Ÿฝ"; + inline constexpr const char clap_tone4[] = "๐Ÿ‘๐Ÿพ"; + inline constexpr const char clap_tone5[] = "๐Ÿ‘๐Ÿฟ"; + inline constexpr const char handshake[] = "๐Ÿค"; + inline constexpr const char shaking_hands[] = "๐Ÿค"; + inline constexpr const char handshake_tone1[] = "๐Ÿค๐Ÿป"; + inline constexpr const char handshake_light_skin_tone[] = "๐Ÿค๐Ÿป"; + inline constexpr const char handshake_tone1_tone2[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_light_skin_tone_medium_light_skin_tone[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_tone1_tone3[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_light_skin_tone_medium_skin_tone[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_tone1_tone4[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_tone1_tone5[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_light_skin_tone_dark_skin_tone[] = "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_tone2_tone1[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_medium_light_skin_tone_light_skin_tone[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_tone2[] = "๐Ÿค๐Ÿผ"; + inline constexpr const char handshake_medium_light_skin_tone[] = "๐Ÿค๐Ÿผ"; + inline constexpr const char handshake_tone2_tone3[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_tone2_tone4[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_tone2_tone5[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_tone3_tone1[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_medium_skin_tone_light_skin_tone[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_tone3_tone2[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_tone3[] = "๐Ÿค๐Ÿฝ"; + inline constexpr const char handshake_medium_skin_tone[] = "๐Ÿค๐Ÿฝ"; + inline constexpr const char handshake_tone3_tone4[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_tone3_tone5[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_medium_skin_tone_dark_skin_tone[] = "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_tone4_tone1[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_tone4_tone2[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_tone4_tone3[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_tone4[] = "๐Ÿค๐Ÿพ"; + inline constexpr const char handshake_medium_dark_skin_tone[] = "๐Ÿค๐Ÿพ"; + inline constexpr const char handshake_tone4_tone5[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char handshake_tone5_tone1[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_dark_skin_tone_light_skin_tone[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿป"; + inline constexpr const char handshake_tone5_tone2[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿผ"; + inline constexpr const char handshake_tone5_tone3[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_dark_skin_tone_medium_skin_tone[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char handshake_tone5_tone4[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿพ"; + inline constexpr const char handshake_tone5[] = "๐Ÿค๐Ÿฟ"; + inline constexpr const char handshake_dark_skin_tone[] = "๐Ÿค๐Ÿฟ"; + inline constexpr const char thumbsup[] = "๐Ÿ‘"; + inline constexpr const char plus1[] = "๐Ÿ‘"; + inline constexpr const char thumbup[] = "๐Ÿ‘"; + inline constexpr const char thumbs_up[] = "๐Ÿ‘"; + inline constexpr const char thumbsup_tone1[] = "๐Ÿ‘๐Ÿป"; + inline constexpr const char plus1_tone1[] = "๐Ÿ‘๐Ÿป"; + inline constexpr const char thumbup_tone1[] = "๐Ÿ‘๐Ÿป"; + inline constexpr const char thumbsup_tone2[] = "๐Ÿ‘๐Ÿผ"; + inline constexpr const char plus1_tone2[] = "๐Ÿ‘๐Ÿผ"; + inline constexpr const char thumbup_tone2[] = "๐Ÿ‘๐Ÿผ"; + inline constexpr const char thumbsup_tone3[] = "๐Ÿ‘๐Ÿฝ"; + inline constexpr const char plus1_tone3[] = "๐Ÿ‘๐Ÿฝ"; + inline constexpr const char thumbup_tone3[] = "๐Ÿ‘๐Ÿฝ"; + inline constexpr const char thumbsup_tone4[] = "๐Ÿ‘๐Ÿพ"; + inline constexpr const char plus1_tone4[] = "๐Ÿ‘๐Ÿพ"; + inline constexpr const char thumbup_tone4[] = "๐Ÿ‘๐Ÿพ"; + inline constexpr const char thumbsup_tone5[] = "๐Ÿ‘๐Ÿฟ"; + inline constexpr const char plus1_tone5[] = "๐Ÿ‘๐Ÿฟ"; + inline constexpr const char thumbup_tone5[] = "๐Ÿ‘๐Ÿฟ"; + inline constexpr const char thumbsdown[] = "๐Ÿ‘Ž"; + inline constexpr const char minus1[] = "๐Ÿ‘Ž"; + inline constexpr const char thumbdown[] = "๐Ÿ‘Ž"; + inline constexpr const char thumbs_down[] = "๐Ÿ‘Ž"; + inline constexpr const char thumbsdown_tone1[] = "๐Ÿ‘Ž๐Ÿป"; + inline constexpr const char _1_tone1[] = "๐Ÿ‘Ž๐Ÿป"; + inline constexpr const char thumbdown_tone1[] = "๐Ÿ‘Ž๐Ÿป"; + inline constexpr const char thumbsdown_tone2[] = "๐Ÿ‘Ž๐Ÿผ"; + inline constexpr const char _1_tone2[] = "๐Ÿ‘Ž๐Ÿผ"; + inline constexpr const char thumbdown_tone2[] = "๐Ÿ‘Ž๐Ÿผ"; + inline constexpr const char thumbsdown_tone3[] = "๐Ÿ‘Ž๐Ÿฝ"; + inline constexpr const char _1_tone3[] = "๐Ÿ‘Ž๐Ÿฝ"; + inline constexpr const char thumbdown_tone3[] = "๐Ÿ‘Ž๐Ÿฝ"; + inline constexpr const char thumbsdown_tone4[] = "๐Ÿ‘Ž๐Ÿพ"; + inline constexpr const char _1_tone4[] = "๐Ÿ‘Ž๐Ÿพ"; + inline constexpr const char thumbdown_tone4[] = "๐Ÿ‘Ž๐Ÿพ"; + inline constexpr const char thumbsdown_tone5[] = "๐Ÿ‘Ž๐Ÿฟ"; + inline constexpr const char _1_tone5[] = "๐Ÿ‘Ž๐Ÿฟ"; + inline constexpr const char thumbdown_tone5[] = "๐Ÿ‘Ž๐Ÿฟ"; + inline constexpr const char punch[] = "๐Ÿ‘Š"; + inline constexpr const char oncoming_fist[] = "๐Ÿ‘Š"; + inline constexpr const char punch_tone1[] = "๐Ÿ‘Š๐Ÿป"; + inline constexpr const char punch_tone2[] = "๐Ÿ‘Š๐Ÿผ"; + inline constexpr const char punch_tone3[] = "๐Ÿ‘Š๐Ÿฝ"; + inline constexpr const char punch_tone4[] = "๐Ÿ‘Š๐Ÿพ"; + inline constexpr const char punch_tone5[] = "๐Ÿ‘Š๐Ÿฟ"; + inline constexpr const char fist[] = "โœŠ"; + inline constexpr const char raised_fist[] = "โœŠ"; + inline constexpr const char fist_tone1[] = "โœŠ๐Ÿป"; + inline constexpr const char fist_tone2[] = "โœŠ๐Ÿผ"; + inline constexpr const char fist_tone3[] = "โœŠ๐Ÿฝ"; + inline constexpr const char fist_tone4[] = "โœŠ๐Ÿพ"; + inline constexpr const char fist_tone5[] = "โœŠ๐Ÿฟ"; + inline constexpr const char left_facing_fist[] = "๐Ÿค›"; + inline constexpr const char left_fist[] = "๐Ÿค›"; + inline constexpr const char left_facing_fist_tone1[] = "๐Ÿค›๐Ÿป"; + inline constexpr const char left_fist_tone1[] = "๐Ÿค›๐Ÿป"; + inline constexpr const char left_facing_fist_tone2[] = "๐Ÿค›๐Ÿผ"; + inline constexpr const char left_fist_tone2[] = "๐Ÿค›๐Ÿผ"; + inline constexpr const char left_facing_fist_tone3[] = "๐Ÿค›๐Ÿฝ"; + inline constexpr const char left_fist_tone3[] = "๐Ÿค›๐Ÿฝ"; + inline constexpr const char left_facing_fist_tone4[] = "๐Ÿค›๐Ÿพ"; + inline constexpr const char left_fist_tone4[] = "๐Ÿค›๐Ÿพ"; + inline constexpr const char left_facing_fist_tone5[] = "๐Ÿค›๐Ÿฟ"; + inline constexpr const char left_fist_tone5[] = "๐Ÿค›๐Ÿฟ"; + inline constexpr const char right_facing_fist[] = "๐Ÿคœ"; + inline constexpr const char right_fist[] = "๐Ÿคœ"; + inline constexpr const char right_facing_fist_tone1[] = "๐Ÿคœ๐Ÿป"; + inline constexpr const char right_fist_tone1[] = "๐Ÿคœ๐Ÿป"; + inline constexpr const char right_facing_fist_tone2[] = "๐Ÿคœ๐Ÿผ"; + inline constexpr const char right_fist_tone2[] = "๐Ÿคœ๐Ÿผ"; + inline constexpr const char right_facing_fist_tone3[] = "๐Ÿคœ๐Ÿฝ"; + inline constexpr const char right_fist_tone3[] = "๐Ÿคœ๐Ÿฝ"; + inline constexpr const char right_facing_fist_tone4[] = "๐Ÿคœ๐Ÿพ"; + inline constexpr const char right_fist_tone4[] = "๐Ÿคœ๐Ÿพ"; + inline constexpr const char right_facing_fist_tone5[] = "๐Ÿคœ๐Ÿฟ"; + inline constexpr const char right_fist_tone5[] = "๐Ÿคœ๐Ÿฟ"; + inline constexpr const char leftwards_pushing_hand[] = "๐Ÿซท"; + inline constexpr const char leftwards_pushing_hand_tone1[] = "๐Ÿซท๐Ÿป"; + inline constexpr const char leftwards_pushing_hand_light_skin_tone[] = "๐Ÿซท๐Ÿป"; + inline constexpr const char leftwards_pushing_hand_tone2[] = "๐Ÿซท๐Ÿผ"; + inline constexpr const char leftwards_pushing_hand_medium_light_skin_tone[] = "๐Ÿซท๐Ÿผ"; + inline constexpr const char leftwards_pushing_hand_tone3[] = "๐Ÿซท๐Ÿฝ"; + inline constexpr const char leftwards_pushing_hand_medium_skin_tone[] = "๐Ÿซท๐Ÿฝ"; + inline constexpr const char leftwards_pushing_hand_tone4[] = "๐Ÿซท๐Ÿพ"; + inline constexpr const char leftwards_pushing_hand_medium_dark_skin_tone[] = "๐Ÿซท๐Ÿพ"; + inline constexpr const char leftwards_pushing_hand_tone5[] = "๐Ÿซท๐Ÿฟ"; + inline constexpr const char leftwards_pushing_hand_dark_skin_tone[] = "๐Ÿซท๐Ÿฟ"; + inline constexpr const char rightwards_pushing_hand[] = "๐Ÿซธ"; + inline constexpr const char rightwards_pushing_hand_tone1[] = "๐Ÿซธ๐Ÿป"; + inline constexpr const char rightwards_pushing_hand_light_skin_tone[] = "๐Ÿซธ๐Ÿป"; + inline constexpr const char rightwards_pushing_hand_tone2[] = "๐Ÿซธ๐Ÿผ"; + inline constexpr const char rightwards_pushing_hand_medium_light_skin_tone[] = "๐Ÿซธ๐Ÿผ"; + inline constexpr const char rightwards_pushing_hand_tone3[] = "๐Ÿซธ๐Ÿฝ"; + inline constexpr const char rightwards_pushing_hand_medium_skin_tone[] = "๐Ÿซธ๐Ÿฝ"; + inline constexpr const char rightwards_pushing_hand_tone4[] = "๐Ÿซธ๐Ÿพ"; + inline constexpr const char rightwards_pushing_hand_medium_dark_skin_tone[] = "๐Ÿซธ๐Ÿพ"; + inline constexpr const char rightwards_pushing_hand_tone5[] = "๐Ÿซธ๐Ÿฟ"; + inline constexpr const char rightwards_pushing_hand_dark_skin_tone[] = "๐Ÿซธ๐Ÿฟ"; + inline constexpr const char fingers_crossed[] = "๐Ÿคž"; + inline constexpr const char hand_with_index_and_middle_finger_crossed[] = "๐Ÿคž"; + inline constexpr const char fingers_crossed_tone1[] = "๐Ÿคž๐Ÿป"; + inline constexpr const char hand_with_index_and_middle_fingers_crossed_tone1[] = "๐Ÿคž๐Ÿป"; + inline constexpr const char fingers_crossed_tone2[] = "๐Ÿคž๐Ÿผ"; + inline constexpr const char hand_with_index_and_middle_fingers_crossed_tone2[] = "๐Ÿคž๐Ÿผ"; + inline constexpr const char fingers_crossed_tone3[] = "๐Ÿคž๐Ÿฝ"; + inline constexpr const char hand_with_index_and_middle_fingers_crossed_tone3[] = "๐Ÿคž๐Ÿฝ"; + inline constexpr const char fingers_crossed_tone4[] = "๐Ÿคž๐Ÿพ"; + inline constexpr const char hand_with_index_and_middle_fingers_crossed_tone4[] = "๐Ÿคž๐Ÿพ"; + inline constexpr const char fingers_crossed_tone5[] = "๐Ÿคž๐Ÿฟ"; + inline constexpr const char hand_with_index_and_middle_fingers_crossed_tone5[] = "๐Ÿคž๐Ÿฟ"; + inline constexpr const char v[] = "โœŒ๏ธ"; + inline constexpr const char victory_hand[] = "โœŒ๏ธ"; + inline constexpr const char v_tone1[] = "โœŒ๐Ÿป"; + inline constexpr const char v_tone2[] = "โœŒ๐Ÿผ"; + inline constexpr const char v_tone3[] = "โœŒ๐Ÿฝ"; + inline constexpr const char v_tone4[] = "โœŒ๐Ÿพ"; + inline constexpr const char v_tone5[] = "โœŒ๐Ÿฟ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed[] = "๐Ÿซฐ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_tone1[] = "๐Ÿซฐ๐Ÿป"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_light_skin_tone[] = "๐Ÿซฐ๐Ÿป"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_tone2[] = "๐Ÿซฐ๐Ÿผ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_medium_light_skin_tone[] = "๐Ÿซฐ๐Ÿผ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_tone3[] = "๐Ÿซฐ๐Ÿฝ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_medium_skin_tone[] = "๐Ÿซฐ๐Ÿฝ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_tone4[] = "๐Ÿซฐ๐Ÿพ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_medium_dark_skin_tone[] = "๐Ÿซฐ๐Ÿพ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_tone5[] = "๐Ÿซฐ๐Ÿฟ"; + inline constexpr const char hand_with_index_finger_and_thumb_crossed_dark_skin_tone[] = "๐Ÿซฐ๐Ÿฟ"; + inline constexpr const char love_you_gesture[] = "๐ŸคŸ"; + inline constexpr const char love_you_gesture_tone1[] = "๐ŸคŸ๐Ÿป"; + inline constexpr const char love_you_gesture_light_skin_tone[] = "๐ŸคŸ๐Ÿป"; + inline constexpr const char love_you_gesture_tone2[] = "๐ŸคŸ๐Ÿผ"; + inline constexpr const char love_you_gesture_medium_light_skin_tone[] = "๐ŸคŸ๐Ÿผ"; + inline constexpr const char love_you_gesture_tone3[] = "๐ŸคŸ๐Ÿฝ"; + inline constexpr const char love_you_gesture_medium_skin_tone[] = "๐ŸคŸ๐Ÿฝ"; + inline constexpr const char love_you_gesture_tone4[] = "๐ŸคŸ๐Ÿพ"; + inline constexpr const char love_you_gesture_medium_dark_skin_tone[] = "๐ŸคŸ๐Ÿพ"; + inline constexpr const char love_you_gesture_tone5[] = "๐ŸคŸ๐Ÿฟ"; + inline constexpr const char love_you_gesture_dark_skin_tone[] = "๐ŸคŸ๐Ÿฟ"; + inline constexpr const char metal[] = "๐Ÿค˜"; + inline constexpr const char sign_of_the_horns[] = "๐Ÿค˜"; + inline constexpr const char metal_tone1[] = "๐Ÿค˜๐Ÿป"; + inline constexpr const char sign_of_the_horns_tone1[] = "๐Ÿค˜๐Ÿป"; + inline constexpr const char metal_tone2[] = "๐Ÿค˜๐Ÿผ"; + inline constexpr const char sign_of_the_horns_tone2[] = "๐Ÿค˜๐Ÿผ"; + inline constexpr const char metal_tone3[] = "๐Ÿค˜๐Ÿฝ"; + inline constexpr const char sign_of_the_horns_tone3[] = "๐Ÿค˜๐Ÿฝ"; + inline constexpr const char metal_tone4[] = "๐Ÿค˜๐Ÿพ"; + inline constexpr const char sign_of_the_horns_tone4[] = "๐Ÿค˜๐Ÿพ"; + inline constexpr const char metal_tone5[] = "๐Ÿค˜๐Ÿฟ"; + inline constexpr const char sign_of_the_horns_tone5[] = "๐Ÿค˜๐Ÿฟ"; + inline constexpr const char ok_hand[] = "๐Ÿ‘Œ"; + inline constexpr const char ok_hand_tone1[] = "๐Ÿ‘Œ๐Ÿป"; + inline constexpr const char ok_hand_tone2[] = "๐Ÿ‘Œ๐Ÿผ"; + inline constexpr const char ok_hand_tone3[] = "๐Ÿ‘Œ๐Ÿฝ"; + inline constexpr const char ok_hand_tone4[] = "๐Ÿ‘Œ๐Ÿพ"; + inline constexpr const char ok_hand_tone5[] = "๐Ÿ‘Œ๐Ÿฟ"; + inline constexpr const char pinched_fingers[] = "๐ŸคŒ"; + inline constexpr const char pinched_fingers_tone2[] = "๐ŸคŒ๐Ÿผ"; + inline constexpr const char pinched_fingers_medium_light_skin_tone[] = "๐ŸคŒ๐Ÿผ"; + inline constexpr const char pinched_fingers_tone1[] = "๐ŸคŒ๐Ÿป"; + inline constexpr const char pinched_fingers_light_skin_tone[] = "๐ŸคŒ๐Ÿป"; + inline constexpr const char pinched_fingers_tone3[] = "๐ŸคŒ๐Ÿฝ"; + inline constexpr const char pinched_fingers_medium_skin_tone[] = "๐ŸคŒ๐Ÿฝ"; + inline constexpr const char pinched_fingers_tone4[] = "๐ŸคŒ๐Ÿพ"; + inline constexpr const char pinched_fingers_medium_dark_skin_tone[] = "๐ŸคŒ๐Ÿพ"; + inline constexpr const char pinched_fingers_tone5[] = "๐ŸคŒ๐Ÿฟ"; + inline constexpr const char pinched_fingers_dark_skin_tone[] = "๐ŸคŒ๐Ÿฟ"; + inline constexpr const char pinching_hand[] = "๐Ÿค"; + inline constexpr const char pinching_hand_tone1[] = "๐Ÿค๐Ÿป"; + inline constexpr const char pinching_hand_light_skin_tone[] = "๐Ÿค๐Ÿป"; + inline constexpr const char pinching_hand_tone2[] = "๐Ÿค๐Ÿผ"; + inline constexpr const char pinching_hand_medium_light_skin_tone[] = "๐Ÿค๐Ÿผ"; + inline constexpr const char pinching_hand_tone3[] = "๐Ÿค๐Ÿฝ"; + inline constexpr const char pinching_hand_medium_skin_tone[] = "๐Ÿค๐Ÿฝ"; + inline constexpr const char pinching_hand_tone4[] = "๐Ÿค๐Ÿพ"; + inline constexpr const char pinching_hand_medium_dark_skin_tone[] = "๐Ÿค๐Ÿพ"; + inline constexpr const char pinching_hand_tone5[] = "๐Ÿค๐Ÿฟ"; + inline constexpr const char pinching_hand_dark_skin_tone[] = "๐Ÿค๐Ÿฟ"; + inline constexpr const char palm_down_hand[] = "๐Ÿซณ"; + inline constexpr const char palm_down_hand_tone1[] = "๐Ÿซณ๐Ÿป"; + inline constexpr const char palm_down_hand_light_skin_tone[] = "๐Ÿซณ๐Ÿป"; + inline constexpr const char palm_down_hand_tone2[] = "๐Ÿซณ๐Ÿผ"; + inline constexpr const char palm_down_hand_medium_light_skin_tone[] = "๐Ÿซณ๐Ÿผ"; + inline constexpr const char palm_down_hand_tone3[] = "๐Ÿซณ๐Ÿฝ"; + inline constexpr const char palm_down_hand_medium_skin_tone[] = "๐Ÿซณ๐Ÿฝ"; + inline constexpr const char palm_down_hand_tone4[] = "๐Ÿซณ๐Ÿพ"; + inline constexpr const char palm_down_hand_medium_dark_skin_tone[] = "๐Ÿซณ๐Ÿพ"; + inline constexpr const char palm_down_hand_tone5[] = "๐Ÿซณ๐Ÿฟ"; + inline constexpr const char palm_down_hand_dark_skin_tone[] = "๐Ÿซณ๐Ÿฟ"; + inline constexpr const char palm_up_hand[] = "๐Ÿซด"; + inline constexpr const char palm_up_hand_tone1[] = "๐Ÿซด๐Ÿป"; + inline constexpr const char palm_up_hand_light_skin_tone[] = "๐Ÿซด๐Ÿป"; + inline constexpr const char palm_up_hand_tone2[] = "๐Ÿซด๐Ÿผ"; + inline constexpr const char palm_up_hand_medium_light_skin_tone[] = "๐Ÿซด๐Ÿผ"; + inline constexpr const char palm_up_hand_tone3[] = "๐Ÿซด๐Ÿฝ"; + inline constexpr const char palm_up_hand_medium_skin_tone[] = "๐Ÿซด๐Ÿฝ"; + inline constexpr const char palm_up_hand_tone4[] = "๐Ÿซด๐Ÿพ"; + inline constexpr const char palm_up_hand_medium_dark_skin_tone[] = "๐Ÿซด๐Ÿพ"; + inline constexpr const char palm_up_hand_tone5[] = "๐Ÿซด๐Ÿฟ"; + inline constexpr const char palm_up_hand_dark_skin_tone[] = "๐Ÿซด๐Ÿฟ"; + inline constexpr const char point_left[] = "๐Ÿ‘ˆ"; + inline constexpr const char point_left_tone1[] = "๐Ÿ‘ˆ๐Ÿป"; + inline constexpr const char point_left_tone2[] = "๐Ÿ‘ˆ๐Ÿผ"; + inline constexpr const char point_left_tone3[] = "๐Ÿ‘ˆ๐Ÿฝ"; + inline constexpr const char point_left_tone4[] = "๐Ÿ‘ˆ๐Ÿพ"; + inline constexpr const char point_left_tone5[] = "๐Ÿ‘ˆ๐Ÿฟ"; + inline constexpr const char point_right[] = "๐Ÿ‘‰"; + inline constexpr const char point_right_tone1[] = "๐Ÿ‘‰๐Ÿป"; + inline constexpr const char point_right_tone2[] = "๐Ÿ‘‰๐Ÿผ"; + inline constexpr const char point_right_tone3[] = "๐Ÿ‘‰๐Ÿฝ"; + inline constexpr const char point_right_tone4[] = "๐Ÿ‘‰๐Ÿพ"; + inline constexpr const char point_right_tone5[] = "๐Ÿ‘‰๐Ÿฟ"; + inline constexpr const char point_up_2[] = "๐Ÿ‘†"; + inline constexpr const char point_up_2_tone1[] = "๐Ÿ‘†๐Ÿป"; + inline constexpr const char point_up_2_tone2[] = "๐Ÿ‘†๐Ÿผ"; + inline constexpr const char point_up_2_tone3[] = "๐Ÿ‘†๐Ÿฝ"; + inline constexpr const char point_up_2_tone4[] = "๐Ÿ‘†๐Ÿพ"; + inline constexpr const char point_up_2_tone5[] = "๐Ÿ‘†๐Ÿฟ"; + inline constexpr const char point_down[] = "๐Ÿ‘‡"; + inline constexpr const char point_down_tone1[] = "๐Ÿ‘‡๐Ÿป"; + inline constexpr const char point_down_tone2[] = "๐Ÿ‘‡๐Ÿผ"; + inline constexpr const char point_down_tone3[] = "๐Ÿ‘‡๐Ÿฝ"; + inline constexpr const char point_down_tone4[] = "๐Ÿ‘‡๐Ÿพ"; + inline constexpr const char point_down_tone5[] = "๐Ÿ‘‡๐Ÿฟ"; + inline constexpr const char point_up[] = "โ˜๏ธ"; + inline constexpr const char point_up_tone1[] = "โ˜๐Ÿป"; + inline constexpr const char point_up_tone2[] = "โ˜๐Ÿผ"; + inline constexpr const char point_up_tone3[] = "โ˜๐Ÿฝ"; + inline constexpr const char point_up_tone4[] = "โ˜๐Ÿพ"; + inline constexpr const char point_up_tone5[] = "โ˜๐Ÿฟ"; + inline constexpr const char raised_hand[] = "โœ‹"; + inline constexpr const char raised_hand_tone1[] = "โœ‹๐Ÿป"; + inline constexpr const char raised_hand_tone2[] = "โœ‹๐Ÿผ"; + inline constexpr const char raised_hand_tone3[] = "โœ‹๐Ÿฝ"; + inline constexpr const char raised_hand_tone4[] = "โœ‹๐Ÿพ"; + inline constexpr const char raised_hand_tone5[] = "โœ‹๐Ÿฟ"; + inline constexpr const char raised_back_of_hand[] = "๐Ÿคš"; + inline constexpr const char back_of_hand[] = "๐Ÿคš"; + inline constexpr const char raised_back_of_hand_tone1[] = "๐Ÿคš๐Ÿป"; + inline constexpr const char back_of_hand_tone1[] = "๐Ÿคš๐Ÿป"; + inline constexpr const char raised_back_of_hand_tone2[] = "๐Ÿคš๐Ÿผ"; + inline constexpr const char back_of_hand_tone2[] = "๐Ÿคš๐Ÿผ"; + inline constexpr const char raised_back_of_hand_tone3[] = "๐Ÿคš๐Ÿฝ"; + inline constexpr const char back_of_hand_tone3[] = "๐Ÿคš๐Ÿฝ"; + inline constexpr const char raised_back_of_hand_tone4[] = "๐Ÿคš๐Ÿพ"; + inline constexpr const char back_of_hand_tone4[] = "๐Ÿคš๐Ÿพ"; + inline constexpr const char raised_back_of_hand_tone5[] = "๐Ÿคš๐Ÿฟ"; + inline constexpr const char back_of_hand_tone5[] = "๐Ÿคš๐Ÿฟ"; + inline constexpr const char hand_splayed[] = "๐Ÿ–๏ธ"; + inline constexpr const char raised_hand_with_fingers_splayed[] = "๐Ÿ–๏ธ"; + inline constexpr const char hand_splayed_tone1[] = "๐Ÿ–๐Ÿป"; + inline constexpr const char raised_hand_with_fingers_splayed_tone1[] = "๐Ÿ–๐Ÿป"; + inline constexpr const char hand_splayed_tone2[] = "๐Ÿ–๐Ÿผ"; + inline constexpr const char raised_hand_with_fingers_splayed_tone2[] = "๐Ÿ–๐Ÿผ"; + inline constexpr const char hand_splayed_tone3[] = "๐Ÿ–๐Ÿฝ"; + inline constexpr const char raised_hand_with_fingers_splayed_tone3[] = "๐Ÿ–๐Ÿฝ"; + inline constexpr const char hand_splayed_tone4[] = "๐Ÿ–๐Ÿพ"; + inline constexpr const char raised_hand_with_fingers_splayed_tone4[] = "๐Ÿ–๐Ÿพ"; + inline constexpr const char hand_splayed_tone5[] = "๐Ÿ–๐Ÿฟ"; + inline constexpr const char raised_hand_with_fingers_splayed_tone5[] = "๐Ÿ–๐Ÿฟ"; + inline constexpr const char vulcan[] = "๐Ÿ––"; + inline constexpr const char raised_hand_with_part_between_middle_and_ring_fingers[] = "๐Ÿ––"; + inline constexpr const char vulcan_salute[] = "๐Ÿ––"; + inline constexpr const char vulcan_tone1[] = "๐Ÿ––๐Ÿป"; + inline constexpr const char raised_hand_with_part_between_middle_and_ring_fingers_tone1[] = "๐Ÿ––๐Ÿป"; + inline constexpr const char vulcan_tone2[] = "๐Ÿ––๐Ÿผ"; + inline constexpr const char raised_hand_with_part_between_middle_and_ring_fingers_tone2[] = "๐Ÿ––๐Ÿผ"; + inline constexpr const char vulcan_tone3[] = "๐Ÿ––๐Ÿฝ"; + inline constexpr const char raised_hand_with_part_between_middle_and_ring_fingers_tone3[] = "๐Ÿ––๐Ÿฝ"; + inline constexpr const char vulcan_tone4[] = "๐Ÿ––๐Ÿพ"; + inline constexpr const char raised_hand_with_part_between_middle_and_ring_fingers_tone4[] = "๐Ÿ––๐Ÿพ"; + inline constexpr const char vulcan_tone5[] = "๐Ÿ––๐Ÿฟ"; + inline constexpr const char raised_hand_with_part_between_middle_and_ring_fingers_tone5[] = "๐Ÿ––๐Ÿฟ"; + inline constexpr const char wave[] = "๐Ÿ‘‹"; + inline constexpr const char waving_hand[] = "๐Ÿ‘‹"; + inline constexpr const char wave_tone1[] = "๐Ÿ‘‹๐Ÿป"; + inline constexpr const char wave_tone2[] = "๐Ÿ‘‹๐Ÿผ"; + inline constexpr const char wave_tone3[] = "๐Ÿ‘‹๐Ÿฝ"; + inline constexpr const char wave_tone4[] = "๐Ÿ‘‹๐Ÿพ"; + inline constexpr const char wave_tone5[] = "๐Ÿ‘‹๐Ÿฟ"; + inline constexpr const char call_me[] = "๐Ÿค™"; + inline constexpr const char call_me_hand[] = "๐Ÿค™"; + inline constexpr const char call_me_tone1[] = "๐Ÿค™๐Ÿป"; + inline constexpr const char call_me_hand_tone1[] = "๐Ÿค™๐Ÿป"; + inline constexpr const char call_me_tone2[] = "๐Ÿค™๐Ÿผ"; + inline constexpr const char call_me_hand_tone2[] = "๐Ÿค™๐Ÿผ"; + inline constexpr const char call_me_tone3[] = "๐Ÿค™๐Ÿฝ"; + inline constexpr const char call_me_hand_tone3[] = "๐Ÿค™๐Ÿฝ"; + inline constexpr const char call_me_tone4[] = "๐Ÿค™๐Ÿพ"; + inline constexpr const char call_me_hand_tone4[] = "๐Ÿค™๐Ÿพ"; + inline constexpr const char call_me_tone5[] = "๐Ÿค™๐Ÿฟ"; + inline constexpr const char call_me_hand_tone5[] = "๐Ÿค™๐Ÿฟ"; + inline constexpr const char leftwards_hand[] = "๐Ÿซฒ"; + inline constexpr const char leftwards_hand_tone1[] = "๐Ÿซฒ๐Ÿป"; + inline constexpr const char leftwards_hand_light_skin_tone[] = "๐Ÿซฒ๐Ÿป"; + inline constexpr const char leftwards_hand_tone2[] = "๐Ÿซฒ๐Ÿผ"; + inline constexpr const char leftwards_hand_medium_light_skin_tone[] = "๐Ÿซฒ๐Ÿผ"; + inline constexpr const char leftwards_hand_tone3[] = "๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char leftwards_hand_medium_skin_tone[] = "๐Ÿซฒ๐Ÿฝ"; + inline constexpr const char leftwards_hand_tone4[] = "๐Ÿซฒ๐Ÿพ"; + inline constexpr const char leftwards_hand_medium_dark_skin_tone[] = "๐Ÿซฒ๐Ÿพ"; + inline constexpr const char leftwards_hand_tone5[] = "๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char leftwards_hand_dark_skin_tone[] = "๐Ÿซฒ๐Ÿฟ"; + inline constexpr const char rightwards_hand[] = "๐Ÿซฑ"; + inline constexpr const char rightwards_hand_tone1[] = "๐Ÿซฑ๐Ÿป"; + inline constexpr const char rightwards_hand_light_skin_tone[] = "๐Ÿซฑ๐Ÿป"; + inline constexpr const char rightwards_hand_tone2[] = "๐Ÿซฑ๐Ÿผ"; + inline constexpr const char rightwards_hand_medium_light_skin_tone[] = "๐Ÿซฑ๐Ÿผ"; + inline constexpr const char rightwards_hand_tone3[] = "๐Ÿซฑ๐Ÿฝ"; + inline constexpr const char rightwards_hand_medium_skin_tone[] = "๐Ÿซฑ๐Ÿฝ"; + inline constexpr const char rightwards_hand_tone4[] = "๐Ÿซฑ๐Ÿพ"; + inline constexpr const char rightwards_hand_medium_dark_skin_tone[] = "๐Ÿซฑ๐Ÿพ"; + inline constexpr const char rightwards_hand_tone5[] = "๐Ÿซฑ๐Ÿฟ"; + inline constexpr const char rightwards_hand_dark_skin_tone[] = "๐Ÿซฑ๐Ÿฟ"; + inline constexpr const char muscle[] = "๐Ÿ’ช"; + inline constexpr const char flexed_biceps[] = "๐Ÿ’ช"; + inline constexpr const char muscle_tone1[] = "๐Ÿ’ช๐Ÿป"; + inline constexpr const char muscle_tone2[] = "๐Ÿ’ช๐Ÿผ"; + inline constexpr const char muscle_tone3[] = "๐Ÿ’ช๐Ÿฝ"; + inline constexpr const char muscle_tone4[] = "๐Ÿ’ช๐Ÿพ"; + inline constexpr const char muscle_tone5[] = "๐Ÿ’ช๐Ÿฟ"; + inline constexpr const char mechanical_arm[] = "๐Ÿฆพ"; + inline constexpr const char middle_finger[] = "๐Ÿ–•"; + inline constexpr const char reversed_hand_with_middle_finger_extended[] = "๐Ÿ–•"; + inline constexpr const char middle_finger_tone1[] = "๐Ÿ–•๐Ÿป"; + inline constexpr const char reversed_hand_with_middle_finger_extended_tone1[] = "๐Ÿ–•๐Ÿป"; + inline constexpr const char middle_finger_tone2[] = "๐Ÿ–•๐Ÿผ"; + inline constexpr const char reversed_hand_with_middle_finger_extended_tone2[] = "๐Ÿ–•๐Ÿผ"; + inline constexpr const char middle_finger_tone3[] = "๐Ÿ–•๐Ÿฝ"; + inline constexpr const char reversed_hand_with_middle_finger_extended_tone3[] = "๐Ÿ–•๐Ÿฝ"; + inline constexpr const char middle_finger_tone4[] = "๐Ÿ–•๐Ÿพ"; + inline constexpr const char reversed_hand_with_middle_finger_extended_tone4[] = "๐Ÿ–•๐Ÿพ"; + inline constexpr const char middle_finger_tone5[] = "๐Ÿ–•๐Ÿฟ"; + inline constexpr const char reversed_hand_with_middle_finger_extended_tone5[] = "๐Ÿ–•๐Ÿฟ"; + inline constexpr const char writing_hand[] = "โœ๏ธ"; + inline constexpr const char writing_hand_tone1[] = "โœ๐Ÿป"; + inline constexpr const char writing_hand_tone2[] = "โœ๐Ÿผ"; + inline constexpr const char writing_hand_tone3[] = "โœ๐Ÿฝ"; + inline constexpr const char writing_hand_tone4[] = "โœ๐Ÿพ"; + inline constexpr const char writing_hand_tone5[] = "โœ๐Ÿฟ"; + inline constexpr const char pray[] = "๐Ÿ™"; + inline constexpr const char folded_hands[] = "๐Ÿ™"; + inline constexpr const char pray_tone1[] = "๐Ÿ™๐Ÿป"; + inline constexpr const char pray_tone2[] = "๐Ÿ™๐Ÿผ"; + inline constexpr const char pray_tone3[] = "๐Ÿ™๐Ÿฝ"; + inline constexpr const char pray_tone4[] = "๐Ÿ™๐Ÿพ"; + inline constexpr const char pray_tone5[] = "๐Ÿ™๐Ÿฟ"; + inline constexpr const char index_pointing_at_the_viewer[] = "๐Ÿซต"; + inline constexpr const char index_pointing_at_the_viewer_tone1[] = "๐Ÿซต๐Ÿป"; + inline constexpr const char index_pointing_at_the_viewer_light_skin_tone[] = "๐Ÿซต๐Ÿป"; + inline constexpr const char index_pointing_at_the_viewer_tone2[] = "๐Ÿซต๐Ÿผ"; + inline constexpr const char index_pointing_at_the_viewer_medium_light_skin_tone[] = "๐Ÿซต๐Ÿผ"; + inline constexpr const char index_pointing_at_the_viewer_tone3[] = "๐Ÿซต๐Ÿฝ"; + inline constexpr const char index_pointing_at_the_viewer_medium_skin_tone[] = "๐Ÿซต๐Ÿฝ"; + inline constexpr const char index_pointing_at_the_viewer_tone4[] = "๐Ÿซต๐Ÿพ"; + inline constexpr const char index_pointing_at_the_viewer_medium_dark_skin_tone[] = "๐Ÿซต๐Ÿพ"; + inline constexpr const char index_pointing_at_the_viewer_tone5[] = "๐Ÿซต๐Ÿฟ"; + inline constexpr const char index_pointing_at_the_viewer_dark_skin_tone[] = "๐Ÿซต๐Ÿฟ"; + inline constexpr const char foot[] = "๐Ÿฆถ"; + inline constexpr const char foot_tone1[] = "๐Ÿฆถ๐Ÿป"; + inline constexpr const char foot_light_skin_tone[] = "๐Ÿฆถ๐Ÿป"; + inline constexpr const char foot_tone2[] = "๐Ÿฆถ๐Ÿผ"; + inline constexpr const char foot_medium_light_skin_tone[] = "๐Ÿฆถ๐Ÿผ"; + inline constexpr const char foot_tone3[] = "๐Ÿฆถ๐Ÿฝ"; + inline constexpr const char foot_medium_skin_tone[] = "๐Ÿฆถ๐Ÿฝ"; + inline constexpr const char foot_tone4[] = "๐Ÿฆถ๐Ÿพ"; + inline constexpr const char foot_medium_dark_skin_tone[] = "๐Ÿฆถ๐Ÿพ"; + inline constexpr const char foot_tone5[] = "๐Ÿฆถ๐Ÿฟ"; + inline constexpr const char foot_dark_skin_tone[] = "๐Ÿฆถ๐Ÿฟ"; + inline constexpr const char leg[] = "๐Ÿฆต"; + inline constexpr const char leg_tone1[] = "๐Ÿฆต๐Ÿป"; + inline constexpr const char leg_light_skin_tone[] = "๐Ÿฆต๐Ÿป"; + inline constexpr const char leg_tone2[] = "๐Ÿฆต๐Ÿผ"; + inline constexpr const char leg_medium_light_skin_tone[] = "๐Ÿฆต๐Ÿผ"; + inline constexpr const char leg_tone3[] = "๐Ÿฆต๐Ÿฝ"; + inline constexpr const char leg_medium_skin_tone[] = "๐Ÿฆต๐Ÿฝ"; + inline constexpr const char leg_tone4[] = "๐Ÿฆต๐Ÿพ"; + inline constexpr const char leg_medium_dark_skin_tone[] = "๐Ÿฆต๐Ÿพ"; + inline constexpr const char leg_tone5[] = "๐Ÿฆต๐Ÿฟ"; + inline constexpr const char leg_dark_skin_tone[] = "๐Ÿฆต๐Ÿฟ"; + inline constexpr const char mechanical_leg[] = "๐Ÿฆฟ"; + inline constexpr const char lipstick[] = "๐Ÿ’„"; + inline constexpr const char kiss[] = "๐Ÿ’‹"; + inline constexpr const char kiss_mark[] = "๐Ÿ’‹"; + inline constexpr const char lips[] = "๐Ÿ‘„"; + inline constexpr const char mouth[] = "๐Ÿ‘„"; + inline constexpr const char biting_lip[] = "๐Ÿซฆ"; + inline constexpr const char tooth[] = "๐Ÿฆท"; + inline constexpr const char tongue[] = "๐Ÿ‘…"; + inline constexpr const char ear[] = "๐Ÿ‘‚"; + inline constexpr const char ear_tone1[] = "๐Ÿ‘‚๐Ÿป"; + inline constexpr const char ear_tone2[] = "๐Ÿ‘‚๐Ÿผ"; + inline constexpr const char ear_tone3[] = "๐Ÿ‘‚๐Ÿฝ"; + inline constexpr const char ear_tone4[] = "๐Ÿ‘‚๐Ÿพ"; + inline constexpr const char ear_tone5[] = "๐Ÿ‘‚๐Ÿฟ"; + inline constexpr const char ear_with_hearing_aid[] = "๐Ÿฆป"; + inline constexpr const char ear_with_hearing_aid_tone1[] = "๐Ÿฆป๐Ÿป"; + inline constexpr const char ear_with_hearing_aid_light_skin_tone[] = "๐Ÿฆป๐Ÿป"; + inline constexpr const char ear_with_hearing_aid_tone2[] = "๐Ÿฆป๐Ÿผ"; + inline constexpr const char ear_with_hearing_aid_medium_light_skin_tone[] = "๐Ÿฆป๐Ÿผ"; + inline constexpr const char ear_with_hearing_aid_tone3[] = "๐Ÿฆป๐Ÿฝ"; + inline constexpr const char ear_with_hearing_aid_medium_skin_tone[] = "๐Ÿฆป๐Ÿฝ"; + inline constexpr const char ear_with_hearing_aid_tone4[] = "๐Ÿฆป๐Ÿพ"; + inline constexpr const char ear_with_hearing_aid_medium_dark_skin_tone[] = "๐Ÿฆป๐Ÿพ"; + inline constexpr const char ear_with_hearing_aid_tone5[] = "๐Ÿฆป๐Ÿฟ"; + inline constexpr const char ear_with_hearing_aid_dark_skin_tone[] = "๐Ÿฆป๐Ÿฟ"; + inline constexpr const char nose[] = "๐Ÿ‘ƒ"; + inline constexpr const char nose_tone1[] = "๐Ÿ‘ƒ๐Ÿป"; + inline constexpr const char nose_tone2[] = "๐Ÿ‘ƒ๐Ÿผ"; + inline constexpr const char nose_tone3[] = "๐Ÿ‘ƒ๐Ÿฝ"; + inline constexpr const char nose_tone4[] = "๐Ÿ‘ƒ๐Ÿพ"; + inline constexpr const char nose_tone5[] = "๐Ÿ‘ƒ๐Ÿฟ"; + inline constexpr const char footprints[] = "๐Ÿ‘ฃ"; + inline constexpr const char eye[] = "๐Ÿ‘๏ธ"; + inline constexpr const char eyes[] = "๐Ÿ‘€"; + inline constexpr const char anatomical_heart[] = "๐Ÿซ€"; + inline constexpr const char lungs[] = "๐Ÿซ"; + inline constexpr const char brain[] = "๐Ÿง "; + inline constexpr const char speaking_head[] = "๐Ÿ—ฃ๏ธ"; + inline constexpr const char speaking_head_in_silhouette[] = "๐Ÿ—ฃ๏ธ"; + inline constexpr const char bust_in_silhouette[] = "๐Ÿ‘ค"; + inline constexpr const char busts_in_silhouette[] = "๐Ÿ‘ฅ"; + inline constexpr const char people_hugging[] = "๐Ÿซ‚"; + inline constexpr const char baby[] = "๐Ÿ‘ถ"; + inline constexpr const char baby_tone1[] = "๐Ÿ‘ถ๐Ÿป"; + inline constexpr const char baby_tone2[] = "๐Ÿ‘ถ๐Ÿผ"; + inline constexpr const char baby_tone3[] = "๐Ÿ‘ถ๐Ÿฝ"; + inline constexpr const char baby_tone4[] = "๐Ÿ‘ถ๐Ÿพ"; + inline constexpr const char baby_tone5[] = "๐Ÿ‘ถ๐Ÿฟ"; + inline constexpr const char child[] = "๐Ÿง’"; + inline constexpr const char child_tone1[] = "๐Ÿง’๐Ÿป"; + inline constexpr const char child_light_skin_tone[] = "๐Ÿง’๐Ÿป"; + inline constexpr const char child_tone2[] = "๐Ÿง’๐Ÿผ"; + inline constexpr const char child_medium_light_skin_tone[] = "๐Ÿง’๐Ÿผ"; + inline constexpr const char child_tone3[] = "๐Ÿง’๐Ÿฝ"; + inline constexpr const char child_medium_skin_tone[] = "๐Ÿง’๐Ÿฝ"; + inline constexpr const char child_tone4[] = "๐Ÿง’๐Ÿพ"; + inline constexpr const char child_medium_dark_skin_tone[] = "๐Ÿง’๐Ÿพ"; + inline constexpr const char child_tone5[] = "๐Ÿง’๐Ÿฟ"; + inline constexpr const char child_dark_skin_tone[] = "๐Ÿง’๐Ÿฟ"; + inline constexpr const char girl[] = "๐Ÿ‘ง"; + inline constexpr const char girl_tone1[] = "๐Ÿ‘ง๐Ÿป"; + inline constexpr const char girl_tone2[] = "๐Ÿ‘ง๐Ÿผ"; + inline constexpr const char girl_tone3[] = "๐Ÿ‘ง๐Ÿฝ"; + inline constexpr const char girl_tone4[] = "๐Ÿ‘ง๐Ÿพ"; + inline constexpr const char girl_tone5[] = "๐Ÿ‘ง๐Ÿฟ"; + inline constexpr const char boy[] = "๐Ÿ‘ฆ"; + inline constexpr const char boy_tone1[] = "๐Ÿ‘ฆ๐Ÿป"; + inline constexpr const char boy_tone2[] = "๐Ÿ‘ฆ๐Ÿผ"; + inline constexpr const char boy_tone3[] = "๐Ÿ‘ฆ๐Ÿฝ"; + inline constexpr const char boy_tone4[] = "๐Ÿ‘ฆ๐Ÿพ"; + inline constexpr const char boy_tone5[] = "๐Ÿ‘ฆ๐Ÿฟ"; + inline constexpr const char adult[] = "๐Ÿง‘"; + inline constexpr const char person[] = "๐Ÿง‘"; + inline constexpr const char adult_tone1[] = "๐Ÿง‘๐Ÿป"; + inline constexpr const char adult_light_skin_tone[] = "๐Ÿง‘๐Ÿป"; + inline constexpr const char adult_tone2[] = "๐Ÿง‘๐Ÿผ"; + inline constexpr const char adult_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผ"; + inline constexpr const char adult_tone3[] = "๐Ÿง‘๐Ÿฝ"; + inline constexpr const char adult_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝ"; + inline constexpr const char adult_tone4[] = "๐Ÿง‘๐Ÿพ"; + inline constexpr const char adult_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพ"; + inline constexpr const char adult_tone5[] = "๐Ÿง‘๐Ÿฟ"; + inline constexpr const char adult_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟ"; + inline constexpr const char woman[] = "๐Ÿ‘ฉ"; + inline constexpr const char woman_tone1[] = "๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char woman_tone2[] = "๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char woman_tone3[] = "๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char woman_tone4[] = "๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char woman_tone5[] = "๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char man[] = "๐Ÿ‘จ"; + inline constexpr const char man_tone1[] = "๐Ÿ‘จ๐Ÿป"; + inline constexpr const char man_tone2[] = "๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char man_tone3[] = "๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char man_tone4[] = "๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char man_tone5[] = "๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char person_curly_hair[] = "๐Ÿง‘โ€๐Ÿฆฑ"; + inline constexpr const char person_tone1_curly_hair[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ"; + inline constexpr const char person_light_skin_tone_curly_hair[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ"; + inline constexpr const char person_tone2_curly_hair[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ"; + inline constexpr const char person_medium_light_skin_tone_curly_hair[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ"; + inline constexpr const char person_tone3_curly_hair[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ"; + inline constexpr const char person_medium_skin_tone_curly_hair[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ"; + inline constexpr const char person_tone4_curly_hair[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ"; + inline constexpr const char person_medium_dark_skin_tone_curly_hair[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ"; + inline constexpr const char person_tone5_curly_hair[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ"; + inline constexpr const char person_dark_skin_tone_curly_hair[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired[] = "๐Ÿ‘ฉโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ"; + inline constexpr const char woman_curly_haired_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired[] = "๐Ÿ‘จโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ"; + inline constexpr const char man_curly_haired_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ"; + inline constexpr const char person_red_hair[] = "๐Ÿง‘โ€๐Ÿฆฐ"; + inline constexpr const char person_tone1_red_hair[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ"; + inline constexpr const char person_light_skin_tone_red_hair[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ"; + inline constexpr const char person_tone2_red_hair[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ"; + inline constexpr const char person_medium_light_skin_tone_red_hair[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ"; + inline constexpr const char person_tone3_red_hair[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ"; + inline constexpr const char person_medium_skin_tone_red_hair[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ"; + inline constexpr const char person_tone4_red_hair[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ"; + inline constexpr const char person_medium_dark_skin_tone_red_hair[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ"; + inline constexpr const char person_tone5_red_hair[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ"; + inline constexpr const char person_dark_skin_tone_red_hair[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired[] = "๐Ÿ‘ฉโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ"; + inline constexpr const char woman_red_haired_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired[] = "๐Ÿ‘จโ€๐Ÿฆฐ"; + inline constexpr const char man_red_hair[] = "๐Ÿ‘จโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ"; + inline constexpr const char man_red_haired_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ"; + inline constexpr const char blond_haired_person[] = "๐Ÿ‘ฑ"; + inline constexpr const char person_with_blond_hair[] = "๐Ÿ‘ฑ"; + inline constexpr const char blond_haired_person_tone1[] = "๐Ÿ‘ฑ๐Ÿป"; + inline constexpr const char person_with_blond_hair_tone1[] = "๐Ÿ‘ฑ๐Ÿป"; + inline constexpr const char blond_haired_person_tone2[] = "๐Ÿ‘ฑ๐Ÿผ"; + inline constexpr const char person_with_blond_hair_tone2[] = "๐Ÿ‘ฑ๐Ÿผ"; + inline constexpr const char blond_haired_person_tone3[] = "๐Ÿ‘ฑ๐Ÿฝ"; + inline constexpr const char person_with_blond_hair_tone3[] = "๐Ÿ‘ฑ๐Ÿฝ"; + inline constexpr const char blond_haired_person_tone4[] = "๐Ÿ‘ฑ๐Ÿพ"; + inline constexpr const char person_with_blond_hair_tone4[] = "๐Ÿ‘ฑ๐Ÿพ"; + inline constexpr const char blond_haired_person_tone5[] = "๐Ÿ‘ฑ๐Ÿฟ"; + inline constexpr const char person_with_blond_hair_tone5[] = "๐Ÿ‘ฑ๐Ÿฟ"; + inline constexpr const char blond_haired_woman[] = "๐Ÿ‘ฑโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_tone1[] = "๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_light_skin_tone[] = "๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_tone2[] = "๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_medium_light_skin_tone[] = "๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_tone3[] = "๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_medium_skin_tone[] = "๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_tone4[] = "๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_medium_dark_skin_tone[] = "๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_tone5[] = "๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char blond_haired_woman_dark_skin_tone[] = "๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char blond_haired_man[] = "๐Ÿ‘ฑโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_tone1[] = "๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_light_skin_tone[] = "๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_tone2[] = "๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_medium_light_skin_tone[] = "๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_tone3[] = "๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_medium_skin_tone[] = "๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_tone4[] = "๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_medium_dark_skin_tone[] = "๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_tone5[] = "๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char blond_haired_man_dark_skin_tone[] = "๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_white_hair[] = "๐Ÿง‘โ€๐Ÿฆณ"; + inline constexpr const char person_tone1_white_hair[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆณ"; + inline constexpr const char person_light_skin_tone_white_hair[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆณ"; + inline constexpr const char person_tone2_white_hair[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆณ"; + inline constexpr const char person_medium_light_skin_tone_white_hair[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆณ"; + inline constexpr const char person_tone3_white_hair[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ"; + inline constexpr const char person_medium_skin_tone_white_hair[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ"; + inline constexpr const char person_tone4_white_hair[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆณ"; + inline constexpr const char person_medium_dark_skin_tone_white_hair[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆณ"; + inline constexpr const char person_tone5_white_hair[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ"; + inline constexpr const char person_dark_skin_tone_white_hair[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired[] = "๐Ÿ‘ฉโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ"; + inline constexpr const char woman_white_haired_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired[] = "๐Ÿ‘จโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ"; + inline constexpr const char man_white_haired_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ"; + inline constexpr const char person_bald[] = "๐Ÿง‘โ€๐Ÿฆฒ"; + inline constexpr const char person_tone1_bald[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ"; + inline constexpr const char person_light_skin_tone_bald[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ"; + inline constexpr const char person_tone2_bald[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ"; + inline constexpr const char person_medium_light_skin_tone_bald[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ"; + inline constexpr const char person_tone3_bald[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ"; + inline constexpr const char person_medium_skin_tone_bald[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ"; + inline constexpr const char person_tone4_bald[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ"; + inline constexpr const char person_medium_dark_skin_tone_bald[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ"; + inline constexpr const char person_tone5_bald[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ"; + inline constexpr const char person_dark_skin_tone_bald[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald[] = "๐Ÿ‘ฉโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ"; + inline constexpr const char woman_bald_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ"; + inline constexpr const char man_bald[] = "๐Ÿ‘จโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ"; + inline constexpr const char man_bald_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ"; + inline constexpr const char bearded_person[] = "๐Ÿง”"; + inline constexpr const char person_beard[] = "๐Ÿง”"; + inline constexpr const char bearded_person_tone1[] = "๐Ÿง”๐Ÿป"; + inline constexpr const char bearded_person_light_skin_tone[] = "๐Ÿง”๐Ÿป"; + inline constexpr const char bearded_person_tone2[] = "๐Ÿง”๐Ÿผ"; + inline constexpr const char bearded_person_medium_light_skin_tone[] = "๐Ÿง”๐Ÿผ"; + inline constexpr const char bearded_person_tone3[] = "๐Ÿง”๐Ÿฝ"; + inline constexpr const char bearded_person_medium_skin_tone[] = "๐Ÿง”๐Ÿฝ"; + inline constexpr const char bearded_person_tone4[] = "๐Ÿง”๐Ÿพ"; + inline constexpr const char bearded_person_medium_dark_skin_tone[] = "๐Ÿง”๐Ÿพ"; + inline constexpr const char bearded_person_tone5[] = "๐Ÿง”๐Ÿฟ"; + inline constexpr const char bearded_person_dark_skin_tone[] = "๐Ÿง”๐Ÿฟ"; + inline constexpr const char woman_beard[] = "๐Ÿง”โ€โ™€๏ธ"; + inline constexpr const char woman_tone1_beard[] = "๐Ÿง”๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_light_skin_tone_beard[] = "๐Ÿง”๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_tone2_beard[] = "๐Ÿง”๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_medium_light_skin_tone_beard[] = "๐Ÿง”๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_tone3_beard[] = "๐Ÿง”๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_medium_skin_tone_beard[] = "๐Ÿง”๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_tone4_beard[] = "๐Ÿง”๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_medium_dark_skin_tone_beard[] = "๐Ÿง”๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_tone5_beard[] = "๐Ÿง”๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_dark_skin_tone_beard[] = "๐Ÿง”๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_beard[] = "๐Ÿง”โ€โ™‚๏ธ"; + inline constexpr const char man_tone1_beard[] = "๐Ÿง”๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_light_skin_tone_beard[] = "๐Ÿง”๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_tone2_beard[] = "๐Ÿง”๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_medium_light_skin_tone_beard[] = "๐Ÿง”๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_tone3_beard[] = "๐Ÿง”๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_medium_skin_tone_beard[] = "๐Ÿง”๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_tone4_beard[] = "๐Ÿง”๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_medium_dark_skin_tone_beard[] = "๐Ÿง”๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_tone5_beard[] = "๐Ÿง”๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_dark_skin_tone_beard[] = "๐Ÿง”๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char older_adult[] = "๐Ÿง“"; + inline constexpr const char older_person[] = "๐Ÿง“"; + inline constexpr const char older_adult_tone1[] = "๐Ÿง“๐Ÿป"; + inline constexpr const char older_adult_light_skin_tone[] = "๐Ÿง“๐Ÿป"; + inline constexpr const char older_adult_tone2[] = "๐Ÿง“๐Ÿผ"; + inline constexpr const char older_adult_medium_light_skin_tone[] = "๐Ÿง“๐Ÿผ"; + inline constexpr const char older_adult_tone3[] = "๐Ÿง“๐Ÿฝ"; + inline constexpr const char older_adult_medium_skin_tone[] = "๐Ÿง“๐Ÿฝ"; + inline constexpr const char older_adult_tone4[] = "๐Ÿง“๐Ÿพ"; + inline constexpr const char older_adult_medium_dark_skin_tone[] = "๐Ÿง“๐Ÿพ"; + inline constexpr const char older_adult_tone5[] = "๐Ÿง“๐Ÿฟ"; + inline constexpr const char older_adult_dark_skin_tone[] = "๐Ÿง“๐Ÿฟ"; + inline constexpr const char older_woman[] = "๐Ÿ‘ต"; + inline constexpr const char grandma[] = "๐Ÿ‘ต"; + inline constexpr const char old_woman[] = "๐Ÿ‘ต"; + inline constexpr const char older_woman_tone1[] = "๐Ÿ‘ต๐Ÿป"; + inline constexpr const char grandma_tone1[] = "๐Ÿ‘ต๐Ÿป"; + inline constexpr const char older_woman_tone2[] = "๐Ÿ‘ต๐Ÿผ"; + inline constexpr const char grandma_tone2[] = "๐Ÿ‘ต๐Ÿผ"; + inline constexpr const char older_woman_tone3[] = "๐Ÿ‘ต๐Ÿฝ"; + inline constexpr const char grandma_tone3[] = "๐Ÿ‘ต๐Ÿฝ"; + inline constexpr const char older_woman_tone4[] = "๐Ÿ‘ต๐Ÿพ"; + inline constexpr const char grandma_tone4[] = "๐Ÿ‘ต๐Ÿพ"; + inline constexpr const char older_woman_tone5[] = "๐Ÿ‘ต๐Ÿฟ"; + inline constexpr const char grandma_tone5[] = "๐Ÿ‘ต๐Ÿฟ"; + inline constexpr const char older_man[] = "๐Ÿ‘ด"; + inline constexpr const char old_man[] = "๐Ÿ‘ด"; + inline constexpr const char older_man_tone1[] = "๐Ÿ‘ด๐Ÿป"; + inline constexpr const char older_man_tone2[] = "๐Ÿ‘ด๐Ÿผ"; + inline constexpr const char older_man_tone3[] = "๐Ÿ‘ด๐Ÿฝ"; + inline constexpr const char older_man_tone4[] = "๐Ÿ‘ด๐Ÿพ"; + inline constexpr const char older_man_tone5[] = "๐Ÿ‘ด๐Ÿฟ"; + inline constexpr const char man_with_chinese_cap[] = "๐Ÿ‘ฒ"; + inline constexpr const char man_with_gua_pi_mao[] = "๐Ÿ‘ฒ"; + inline constexpr const char man_with_chinese_cap_tone1[] = "๐Ÿ‘ฒ๐Ÿป"; + inline constexpr const char man_with_gua_pi_mao_tone1[] = "๐Ÿ‘ฒ๐Ÿป"; + inline constexpr const char man_with_chinese_cap_tone2[] = "๐Ÿ‘ฒ๐Ÿผ"; + inline constexpr const char man_with_gua_pi_mao_tone2[] = "๐Ÿ‘ฒ๐Ÿผ"; + inline constexpr const char man_with_chinese_cap_tone3[] = "๐Ÿ‘ฒ๐Ÿฝ"; + inline constexpr const char man_with_gua_pi_mao_tone3[] = "๐Ÿ‘ฒ๐Ÿฝ"; + inline constexpr const char man_with_chinese_cap_tone4[] = "๐Ÿ‘ฒ๐Ÿพ"; + inline constexpr const char man_with_gua_pi_mao_tone4[] = "๐Ÿ‘ฒ๐Ÿพ"; + inline constexpr const char man_with_chinese_cap_tone5[] = "๐Ÿ‘ฒ๐Ÿฟ"; + inline constexpr const char man_with_gua_pi_mao_tone5[] = "๐Ÿ‘ฒ๐Ÿฟ"; + inline constexpr const char person_wearing_turban[] = "๐Ÿ‘ณ"; + inline constexpr const char man_with_turban[] = "๐Ÿ‘ณ"; + inline constexpr const char person_wearing_turban_tone1[] = "๐Ÿ‘ณ๐Ÿป"; + inline constexpr const char man_with_turban_tone1[] = "๐Ÿ‘ณ๐Ÿป"; + inline constexpr const char person_wearing_turban_tone2[] = "๐Ÿ‘ณ๐Ÿผ"; + inline constexpr const char man_with_turban_tone2[] = "๐Ÿ‘ณ๐Ÿผ"; + inline constexpr const char person_wearing_turban_tone3[] = "๐Ÿ‘ณ๐Ÿฝ"; + inline constexpr const char man_with_turban_tone3[] = "๐Ÿ‘ณ๐Ÿฝ"; + inline constexpr const char person_wearing_turban_tone4[] = "๐Ÿ‘ณ๐Ÿพ"; + inline constexpr const char man_with_turban_tone4[] = "๐Ÿ‘ณ๐Ÿพ"; + inline constexpr const char person_wearing_turban_tone5[] = "๐Ÿ‘ณ๐Ÿฟ"; + inline constexpr const char man_with_turban_tone5[] = "๐Ÿ‘ณ๐Ÿฟ"; + inline constexpr const char woman_wearing_turban[] = "๐Ÿ‘ณโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_tone1[] = "๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_light_skin_tone[] = "๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_tone2[] = "๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_medium_light_skin_tone[] = "๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_tone3[] = "๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_medium_skin_tone[] = "๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_tone4[] = "๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_medium_dark_skin_tone[] = "๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_tone5[] = "๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_wearing_turban_dark_skin_tone[] = "๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_wearing_turban[] = "๐Ÿ‘ณโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_tone1[] = "๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_light_skin_tone[] = "๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_tone2[] = "๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_medium_light_skin_tone[] = "๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_tone3[] = "๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_medium_skin_tone[] = "๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_tone4[] = "๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_medium_dark_skin_tone[] = "๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_tone5[] = "๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_wearing_turban_dark_skin_tone[] = "๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char woman_with_headscarf[] = "๐Ÿง•"; + inline constexpr const char woman_with_headscarf_tone1[] = "๐Ÿง•๐Ÿป"; + inline constexpr const char woman_with_headscarf_light_skin_tone[] = "๐Ÿง•๐Ÿป"; + inline constexpr const char woman_with_headscarf_tone2[] = "๐Ÿง•๐Ÿผ"; + inline constexpr const char woman_with_headscarf_medium_light_skin_tone[] = "๐Ÿง•๐Ÿผ"; + inline constexpr const char woman_with_headscarf_tone3[] = "๐Ÿง•๐Ÿฝ"; + inline constexpr const char woman_with_headscarf_medium_skin_tone[] = "๐Ÿง•๐Ÿฝ"; + inline constexpr const char woman_with_headscarf_tone4[] = "๐Ÿง•๐Ÿพ"; + inline constexpr const char woman_with_headscarf_medium_dark_skin_tone[] = "๐Ÿง•๐Ÿพ"; + inline constexpr const char woman_with_headscarf_tone5[] = "๐Ÿง•๐Ÿฟ"; + inline constexpr const char woman_with_headscarf_dark_skin_tone[] = "๐Ÿง•๐Ÿฟ"; + inline constexpr const char police_officer[] = "๐Ÿ‘ฎ"; + inline constexpr const char cop[] = "๐Ÿ‘ฎ"; + inline constexpr const char police_officer_tone1[] = "๐Ÿ‘ฎ๐Ÿป"; + inline constexpr const char cop_tone1[] = "๐Ÿ‘ฎ๐Ÿป"; + inline constexpr const char police_officer_tone2[] = "๐Ÿ‘ฎ๐Ÿผ"; + inline constexpr const char cop_tone2[] = "๐Ÿ‘ฎ๐Ÿผ"; + inline constexpr const char police_officer_tone3[] = "๐Ÿ‘ฎ๐Ÿฝ"; + inline constexpr const char cop_tone3[] = "๐Ÿ‘ฎ๐Ÿฝ"; + inline constexpr const char police_officer_tone4[] = "๐Ÿ‘ฎ๐Ÿพ"; + inline constexpr const char cop_tone4[] = "๐Ÿ‘ฎ๐Ÿพ"; + inline constexpr const char police_officer_tone5[] = "๐Ÿ‘ฎ๐Ÿฟ"; + inline constexpr const char cop_tone5[] = "๐Ÿ‘ฎ๐Ÿฟ"; + inline constexpr const char woman_police_officer[] = "๐Ÿ‘ฎโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_tone1[] = "๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_light_skin_tone[] = "๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_tone2[] = "๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_medium_light_skin_tone[] = "๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_tone3[] = "๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_medium_skin_tone[] = "๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_tone4[] = "๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_medium_dark_skin_tone[] = "๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_tone5[] = "๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_police_officer_dark_skin_tone[] = "๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_police_officer[] = "๐Ÿ‘ฎโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_tone1[] = "๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_light_skin_tone[] = "๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_tone2[] = "๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_medium_light_skin_tone[] = "๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_tone3[] = "๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_medium_skin_tone[] = "๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_tone4[] = "๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_medium_dark_skin_tone[] = "๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_tone5[] = "๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_police_officer_dark_skin_tone[] = "๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char construction_worker[] = "๐Ÿ‘ท"; + inline constexpr const char construction_worker_tone1[] = "๐Ÿ‘ท๐Ÿป"; + inline constexpr const char construction_worker_tone2[] = "๐Ÿ‘ท๐Ÿผ"; + inline constexpr const char construction_worker_tone3[] = "๐Ÿ‘ท๐Ÿฝ"; + inline constexpr const char construction_worker_tone4[] = "๐Ÿ‘ท๐Ÿพ"; + inline constexpr const char construction_worker_tone5[] = "๐Ÿ‘ท๐Ÿฟ"; + inline constexpr const char woman_construction_worker[] = "๐Ÿ‘ทโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_tone1[] = "๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_light_skin_tone[] = "๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_tone2[] = "๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_medium_light_skin_tone[] = "๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_tone3[] = "๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_medium_skin_tone[] = "๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_tone4[] = "๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_medium_dark_skin_tone[] = "๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_tone5[] = "๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_construction_worker_dark_skin_tone[] = "๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_construction_worker[] = "๐Ÿ‘ทโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_tone1[] = "๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_light_skin_tone[] = "๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_tone2[] = "๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_medium_light_skin_tone[] = "๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_tone3[] = "๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_medium_skin_tone[] = "๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_tone4[] = "๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_medium_dark_skin_tone[] = "๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_tone5[] = "๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_construction_worker_dark_skin_tone[] = "๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char guard[] = "๐Ÿ’‚"; + inline constexpr const char guardsman[] = "๐Ÿ’‚"; + inline constexpr const char guard_tone1[] = "๐Ÿ’‚๐Ÿป"; + inline constexpr const char guardsman_tone1[] = "๐Ÿ’‚๐Ÿป"; + inline constexpr const char guard_tone2[] = "๐Ÿ’‚๐Ÿผ"; + inline constexpr const char guardsman_tone2[] = "๐Ÿ’‚๐Ÿผ"; + inline constexpr const char guard_tone3[] = "๐Ÿ’‚๐Ÿฝ"; + inline constexpr const char guardsman_tone3[] = "๐Ÿ’‚๐Ÿฝ"; + inline constexpr const char guard_tone4[] = "๐Ÿ’‚๐Ÿพ"; + inline constexpr const char guardsman_tone4[] = "๐Ÿ’‚๐Ÿพ"; + inline constexpr const char guard_tone5[] = "๐Ÿ’‚๐Ÿฟ"; + inline constexpr const char guardsman_tone5[] = "๐Ÿ’‚๐Ÿฟ"; + inline constexpr const char woman_guard[] = "๐Ÿ’‚โ€โ™€๏ธ"; + inline constexpr const char woman_guard_tone1[] = "๐Ÿ’‚๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_guard_light_skin_tone[] = "๐Ÿ’‚๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_guard_tone2[] = "๐Ÿ’‚๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_guard_medium_light_skin_tone[] = "๐Ÿ’‚๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_guard_tone3[] = "๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_guard_medium_skin_tone[] = "๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_guard_tone4[] = "๐Ÿ’‚๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_guard_medium_dark_skin_tone[] = "๐Ÿ’‚๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_guard_tone5[] = "๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_guard_dark_skin_tone[] = "๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_guard[] = "๐Ÿ’‚โ€โ™‚๏ธ"; + inline constexpr const char man_guard_tone1[] = "๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_guard_light_skin_tone[] = "๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_guard_tone2[] = "๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_guard_medium_light_skin_tone[] = "๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_guard_tone3[] = "๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_guard_medium_skin_tone[] = "๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_guard_tone4[] = "๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_guard_medium_dark_skin_tone[] = "๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_guard_tone5[] = "๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_guard_dark_skin_tone[] = "๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char detective[] = "๐Ÿ•ต๏ธ"; + inline constexpr const char spy[] = "๐Ÿ•ต๏ธ"; + inline constexpr const char sleuth_or_spy[] = "๐Ÿ•ต๏ธ"; + inline constexpr const char detective_tone1[] = "๐Ÿ•ต๐Ÿป"; + inline constexpr const char spy_tone1[] = "๐Ÿ•ต๐Ÿป"; + inline constexpr const char sleuth_or_spy_tone1[] = "๐Ÿ•ต๐Ÿป"; + inline constexpr const char detective_tone2[] = "๐Ÿ•ต๐Ÿผ"; + inline constexpr const char spy_tone2[] = "๐Ÿ•ต๐Ÿผ"; + inline constexpr const char sleuth_or_spy_tone2[] = "๐Ÿ•ต๐Ÿผ"; + inline constexpr const char detective_tone3[] = "๐Ÿ•ต๐Ÿฝ"; + inline constexpr const char spy_tone3[] = "๐Ÿ•ต๐Ÿฝ"; + inline constexpr const char sleuth_or_spy_tone3[] = "๐Ÿ•ต๐Ÿฝ"; + inline constexpr const char detective_tone4[] = "๐Ÿ•ต๐Ÿพ"; + inline constexpr const char spy_tone4[] = "๐Ÿ•ต๐Ÿพ"; + inline constexpr const char sleuth_or_spy_tone4[] = "๐Ÿ•ต๐Ÿพ"; + inline constexpr const char detective_tone5[] = "๐Ÿ•ต๐Ÿฟ"; + inline constexpr const char spy_tone5[] = "๐Ÿ•ต๐Ÿฟ"; + inline constexpr const char sleuth_or_spy_tone5[] = "๐Ÿ•ต๐Ÿฟ"; + inline constexpr const char woman_detective[] = "๐Ÿ•ต๏ธโ€โ™€๏ธ"; + inline constexpr const char woman_detective_tone1[] = "๐Ÿ•ต๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_detective_light_skin_tone[] = "๐Ÿ•ต๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_detective_tone2[] = "๐Ÿ•ต๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_detective_medium_light_skin_tone[] = "๐Ÿ•ต๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_detective_tone3[] = "๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_detective_medium_skin_tone[] = "๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_detective_tone4[] = "๐Ÿ•ต๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_detective_medium_dark_skin_tone[] = "๐Ÿ•ต๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_detective_tone5[] = "๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_detective_dark_skin_tone[] = "๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_detective[] = "๐Ÿ•ต๏ธโ€โ™‚๏ธ"; + inline constexpr const char man_detective_tone1[] = "๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_detective_light_skin_tone[] = "๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_detective_tone2[] = "๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_detective_medium_light_skin_tone[] = "๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_detective_tone3[] = "๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_detective_medium_skin_tone[] = "๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_detective_tone4[] = "๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_detective_medium_dark_skin_tone[] = "๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_detective_tone5[] = "๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_detective_dark_skin_tone[] = "๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char health_worker[] = "๐Ÿง‘โ€โš•๏ธ"; + inline constexpr const char health_worker_tone1[] = "๐Ÿง‘๐Ÿปโ€โš•๏ธ"; + inline constexpr const char health_worker_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โš•๏ธ"; + inline constexpr const char health_worker_tone2[] = "๐Ÿง‘๐Ÿผโ€โš•๏ธ"; + inline constexpr const char health_worker_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โš•๏ธ"; + inline constexpr const char health_worker_tone3[] = "๐Ÿง‘๐Ÿฝโ€โš•๏ธ"; + inline constexpr const char health_worker_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โš•๏ธ"; + inline constexpr const char health_worker_tone4[] = "๐Ÿง‘๐Ÿพโ€โš•๏ธ"; + inline constexpr const char health_worker_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โš•๏ธ"; + inline constexpr const char health_worker_tone5[] = "๐Ÿง‘๐Ÿฟโ€โš•๏ธ"; + inline constexpr const char health_worker_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โš•๏ธ"; + inline constexpr const char woman_health_worker[] = "๐Ÿ‘ฉโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ"; + inline constexpr const char woman_health_worker_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ"; + inline constexpr const char man_health_worker[] = "๐Ÿ‘จโ€โš•๏ธ"; + inline constexpr const char man_health_worker_tone1[] = "๐Ÿ‘จ๐Ÿปโ€โš•๏ธ"; + inline constexpr const char man_health_worker_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โš•๏ธ"; + inline constexpr const char man_health_worker_tone2[] = "๐Ÿ‘จ๐Ÿผโ€โš•๏ธ"; + inline constexpr const char man_health_worker_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โš•๏ธ"; + inline constexpr const char man_health_worker_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ"; + inline constexpr const char man_health_worker_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ"; + inline constexpr const char man_health_worker_tone4[] = "๐Ÿ‘จ๐Ÿพโ€โš•๏ธ"; + inline constexpr const char man_health_worker_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โš•๏ธ"; + inline constexpr const char man_health_worker_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ"; + inline constexpr const char man_health_worker_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ"; + inline constexpr const char farmer[] = "๐Ÿง‘โ€๐ŸŒพ"; + inline constexpr const char farmer_tone1[] = "๐Ÿง‘๐Ÿปโ€๐ŸŒพ"; + inline constexpr const char farmer_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐ŸŒพ"; + inline constexpr const char farmer_tone2[] = "๐Ÿง‘๐Ÿผโ€๐ŸŒพ"; + inline constexpr const char farmer_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐ŸŒพ"; + inline constexpr const char farmer_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŒพ"; + inline constexpr const char farmer_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŒพ"; + inline constexpr const char farmer_tone4[] = "๐Ÿง‘๐Ÿพโ€๐ŸŒพ"; + inline constexpr const char farmer_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐ŸŒพ"; + inline constexpr const char farmer_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŒพ"; + inline constexpr const char farmer_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŒพ"; + inline constexpr const char woman_farmer[] = "๐Ÿ‘ฉโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ"; + inline constexpr const char woman_farmer_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ"; + inline constexpr const char man_farmer[] = "๐Ÿ‘จโ€๐ŸŒพ"; + inline constexpr const char man_farmer_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ"; + inline constexpr const char man_farmer_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ"; + inline constexpr const char man_farmer_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ"; + inline constexpr const char man_farmer_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ"; + inline constexpr const char man_farmer_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ"; + inline constexpr const char man_farmer_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ"; + inline constexpr const char man_farmer_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ"; + inline constexpr const char man_farmer_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ"; + inline constexpr const char man_farmer_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ"; + inline constexpr const char man_farmer_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ"; + inline constexpr const char cook[] = "๐Ÿง‘โ€๐Ÿณ"; + inline constexpr const char cook_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿณ"; + inline constexpr const char cook_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿณ"; + inline constexpr const char cook_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿณ"; + inline constexpr const char cook_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿณ"; + inline constexpr const char cook_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿณ"; + inline constexpr const char cook_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿณ"; + inline constexpr const char cook_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿณ"; + inline constexpr const char cook_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿณ"; + inline constexpr const char cook_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿณ"; + inline constexpr const char cook_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿณ"; + inline constexpr const char woman_cook[] = "๐Ÿ‘ฉโ€๐Ÿณ"; + inline constexpr const char woman_cook_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ"; + inline constexpr const char woman_cook_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ"; + inline constexpr const char woman_cook_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ"; + inline constexpr const char woman_cook_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ"; + inline constexpr const char woman_cook_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ"; + inline constexpr const char woman_cook_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ"; + inline constexpr const char woman_cook_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ"; + inline constexpr const char woman_cook_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ"; + inline constexpr const char woman_cook_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ"; + inline constexpr const char woman_cook_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ"; + inline constexpr const char man_cook[] = "๐Ÿ‘จโ€๐Ÿณ"; + inline constexpr const char man_cook_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿณ"; + inline constexpr const char man_cook_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿณ"; + inline constexpr const char man_cook_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿณ"; + inline constexpr const char man_cook_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿณ"; + inline constexpr const char man_cook_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ"; + inline constexpr const char man_cook_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ"; + inline constexpr const char man_cook_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿณ"; + inline constexpr const char man_cook_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿณ"; + inline constexpr const char man_cook_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ"; + inline constexpr const char man_cook_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ"; + inline constexpr const char student[] = "๐Ÿง‘โ€๐ŸŽ“"; + inline constexpr const char student_tone1[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽ“"; + inline constexpr const char student_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽ“"; + inline constexpr const char student_tone2[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽ“"; + inline constexpr const char student_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽ“"; + inline constexpr const char student_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽ“"; + inline constexpr const char student_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽ“"; + inline constexpr const char student_tone4[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽ“"; + inline constexpr const char student_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽ“"; + inline constexpr const char student_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽ“"; + inline constexpr const char student_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽ“"; + inline constexpr const char woman_student[] = "๐Ÿ‘ฉโ€๐ŸŽ“"; + inline constexpr const char woman_student_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“"; + inline constexpr const char woman_student_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“"; + inline constexpr const char woman_student_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“"; + inline constexpr const char woman_student_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“"; + inline constexpr const char woman_student_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“"; + inline constexpr const char woman_student_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“"; + inline constexpr const char woman_student_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“"; + inline constexpr const char woman_student_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“"; + inline constexpr const char woman_student_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“"; + inline constexpr const char woman_student_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“"; + inline constexpr const char man_student[] = "๐Ÿ‘จโ€๐ŸŽ“"; + inline constexpr const char man_student_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“"; + inline constexpr const char man_student_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“"; + inline constexpr const char man_student_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“"; + inline constexpr const char man_student_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“"; + inline constexpr const char man_student_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“"; + inline constexpr const char man_student_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“"; + inline constexpr const char man_student_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“"; + inline constexpr const char man_student_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“"; + inline constexpr const char man_student_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“"; + inline constexpr const char man_student_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“"; + inline constexpr const char singer[] = "๐Ÿง‘โ€๐ŸŽค"; + inline constexpr const char singer_tone1[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽค"; + inline constexpr const char singer_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽค"; + inline constexpr const char singer_tone2[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽค"; + inline constexpr const char singer_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽค"; + inline constexpr const char singer_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽค"; + inline constexpr const char singer_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽค"; + inline constexpr const char singer_tone4[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽค"; + inline constexpr const char singer_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽค"; + inline constexpr const char singer_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽค"; + inline constexpr const char singer_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽค"; + inline constexpr const char woman_singer[] = "๐Ÿ‘ฉโ€๐ŸŽค"; + inline constexpr const char woman_singer_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค"; + inline constexpr const char woman_singer_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค"; + inline constexpr const char woman_singer_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค"; + inline constexpr const char woman_singer_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค"; + inline constexpr const char woman_singer_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค"; + inline constexpr const char woman_singer_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค"; + inline constexpr const char woman_singer_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค"; + inline constexpr const char woman_singer_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค"; + inline constexpr const char woman_singer_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค"; + inline constexpr const char woman_singer_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค"; + inline constexpr const char man_singer[] = "๐Ÿ‘จโ€๐ŸŽค"; + inline constexpr const char man_singer_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŽค"; + inline constexpr const char man_singer_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŽค"; + inline constexpr const char man_singer_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŽค"; + inline constexpr const char man_singer_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŽค"; + inline constexpr const char man_singer_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค"; + inline constexpr const char man_singer_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค"; + inline constexpr const char man_singer_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŽค"; + inline constexpr const char man_singer_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŽค"; + inline constexpr const char man_singer_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค"; + inline constexpr const char man_singer_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค"; + inline constexpr const char teacher[] = "๐Ÿง‘โ€๐Ÿซ"; + inline constexpr const char teacher_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿซ"; + inline constexpr const char teacher_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿซ"; + inline constexpr const char teacher_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿซ"; + inline constexpr const char teacher_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿซ"; + inline constexpr const char teacher_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿซ"; + inline constexpr const char teacher_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿซ"; + inline constexpr const char teacher_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿซ"; + inline constexpr const char teacher_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿซ"; + inline constexpr const char teacher_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿซ"; + inline constexpr const char teacher_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿซ"; + inline constexpr const char woman_teacher[] = "๐Ÿ‘ฉโ€๐Ÿซ"; + inline constexpr const char woman_teacher_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ"; + inline constexpr const char woman_teacher_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ"; + inline constexpr const char woman_teacher_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ"; + inline constexpr const char woman_teacher_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ"; + inline constexpr const char woman_teacher_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ"; + inline constexpr const char woman_teacher_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ"; + inline constexpr const char woman_teacher_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ"; + inline constexpr const char woman_teacher_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ"; + inline constexpr const char woman_teacher_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ"; + inline constexpr const char woman_teacher_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ"; + inline constexpr const char man_teacher[] = "๐Ÿ‘จโ€๐Ÿซ"; + inline constexpr const char man_teacher_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿซ"; + inline constexpr const char man_teacher_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿซ"; + inline constexpr const char man_teacher_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿซ"; + inline constexpr const char man_teacher_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿซ"; + inline constexpr const char man_teacher_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ"; + inline constexpr const char man_teacher_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ"; + inline constexpr const char man_teacher_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿซ"; + inline constexpr const char man_teacher_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿซ"; + inline constexpr const char man_teacher_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ"; + inline constexpr const char man_teacher_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ"; + inline constexpr const char factory_worker[] = "๐Ÿง‘โ€๐Ÿญ"; + inline constexpr const char factory_worker_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿญ"; + inline constexpr const char factory_worker_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿญ"; + inline constexpr const char factory_worker_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿญ"; + inline constexpr const char factory_worker_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿญ"; + inline constexpr const char factory_worker_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿญ"; + inline constexpr const char factory_worker_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿญ"; + inline constexpr const char factory_worker_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿญ"; + inline constexpr const char factory_worker_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿญ"; + inline constexpr const char factory_worker_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿญ"; + inline constexpr const char factory_worker_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker[] = "๐Ÿ‘ฉโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ"; + inline constexpr const char woman_factory_worker_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ"; + inline constexpr const char man_factory_worker[] = "๐Ÿ‘จโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ"; + inline constexpr const char man_factory_worker_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ"; + inline constexpr const char technologist[] = "๐Ÿง‘โ€๐Ÿ’ป"; + inline constexpr const char technologist_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ’ป"; + inline constexpr const char technologist_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ’ป"; + inline constexpr const char technologist_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ’ป"; + inline constexpr const char technologist_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ’ป"; + inline constexpr const char technologist_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป"; + inline constexpr const char technologist_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป"; + inline constexpr const char technologist_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ’ป"; + inline constexpr const char technologist_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ’ป"; + inline constexpr const char technologist_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป"; + inline constexpr const char technologist_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist[] = "๐Ÿ‘ฉโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป"; + inline constexpr const char woman_technologist_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป"; + inline constexpr const char man_technologist[] = "๐Ÿ‘จโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป"; + inline constexpr const char man_technologist_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป"; + inline constexpr const char office_worker[] = "๐Ÿง‘โ€๐Ÿ’ผ"; + inline constexpr const char office_worker_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ"; + inline constexpr const char office_worker_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker[] = "๐Ÿ‘ฉโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ"; + inline constexpr const char woman_office_worker_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker[] = "๐Ÿ‘จโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ"; + inline constexpr const char man_office_worker_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ"; + inline constexpr const char mechanic[] = "๐Ÿง‘โ€๐Ÿ”ง"; + inline constexpr const char mechanic_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ”ง"; + inline constexpr const char mechanic_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ”ง"; + inline constexpr const char mechanic_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ”ง"; + inline constexpr const char mechanic_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ”ง"; + inline constexpr const char mechanic_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง"; + inline constexpr const char mechanic_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง"; + inline constexpr const char mechanic_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ”ง"; + inline constexpr const char mechanic_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ”ง"; + inline constexpr const char mechanic_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง"; + inline constexpr const char mechanic_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic[] = "๐Ÿ‘ฉโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง"; + inline constexpr const char woman_mechanic_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic[] = "๐Ÿ‘จโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง"; + inline constexpr const char man_mechanic_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง"; + inline constexpr const char scientist[] = "๐Ÿง‘โ€๐Ÿ”ฌ"; + inline constexpr const char scientist_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ"; + inline constexpr const char scientist_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist[] = "๐Ÿ‘ฉโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ"; + inline constexpr const char woman_scientist_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist[] = "๐Ÿ‘จโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ"; + inline constexpr const char man_scientist_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ"; + inline constexpr const char artist[] = "๐Ÿง‘โ€๐ŸŽจ"; + inline constexpr const char artist_tone1[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽจ"; + inline constexpr const char artist_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽจ"; + inline constexpr const char artist_tone2[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽจ"; + inline constexpr const char artist_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽจ"; + inline constexpr const char artist_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽจ"; + inline constexpr const char artist_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽจ"; + inline constexpr const char artist_tone4[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽจ"; + inline constexpr const char artist_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽจ"; + inline constexpr const char artist_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽจ"; + inline constexpr const char artist_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽจ"; + inline constexpr const char woman_artist[] = "๐Ÿ‘ฉโ€๐ŸŽจ"; + inline constexpr const char woman_artist_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ"; + inline constexpr const char woman_artist_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ"; + inline constexpr const char woman_artist_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ"; + inline constexpr const char woman_artist_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ"; + inline constexpr const char woman_artist_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ"; + inline constexpr const char woman_artist_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ"; + inline constexpr const char woman_artist_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ"; + inline constexpr const char woman_artist_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ"; + inline constexpr const char woman_artist_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ"; + inline constexpr const char woman_artist_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ"; + inline constexpr const char man_artist[] = "๐Ÿ‘จโ€๐ŸŽจ"; + inline constexpr const char man_artist_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ"; + inline constexpr const char man_artist_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ"; + inline constexpr const char man_artist_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ"; + inline constexpr const char man_artist_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ"; + inline constexpr const char man_artist_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ"; + inline constexpr const char man_artist_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ"; + inline constexpr const char man_artist_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ"; + inline constexpr const char man_artist_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ"; + inline constexpr const char man_artist_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ"; + inline constexpr const char man_artist_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ"; + inline constexpr const char firefighter[] = "๐Ÿง‘โ€๐Ÿš’"; + inline constexpr const char firefighter_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿš’"; + inline constexpr const char firefighter_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿš’"; + inline constexpr const char firefighter_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿš’"; + inline constexpr const char firefighter_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿš’"; + inline constexpr const char firefighter_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿš’"; + inline constexpr const char firefighter_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿš’"; + inline constexpr const char firefighter_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿš’"; + inline constexpr const char firefighter_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿš’"; + inline constexpr const char firefighter_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿš’"; + inline constexpr const char firefighter_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿš’"; + inline constexpr const char woman_firefighter[] = "๐Ÿ‘ฉโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’"; + inline constexpr const char woman_firefighter_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’"; + inline constexpr const char man_firefighter[] = "๐Ÿ‘จโ€๐Ÿš’"; + inline constexpr const char man_firefighter_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿš’"; + inline constexpr const char man_firefighter_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿš’"; + inline constexpr const char man_firefighter_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿš’"; + inline constexpr const char man_firefighter_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿš’"; + inline constexpr const char man_firefighter_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’"; + inline constexpr const char man_firefighter_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’"; + inline constexpr const char man_firefighter_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿš’"; + inline constexpr const char man_firefighter_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿš’"; + inline constexpr const char man_firefighter_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’"; + inline constexpr const char man_firefighter_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’"; + inline constexpr const char pilot[] = "๐Ÿง‘โ€โœˆ๏ธ"; + inline constexpr const char pilot_tone1[] = "๐Ÿง‘๐Ÿปโ€โœˆ๏ธ"; + inline constexpr const char pilot_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โœˆ๏ธ"; + inline constexpr const char pilot_tone2[] = "๐Ÿง‘๐Ÿผโ€โœˆ๏ธ"; + inline constexpr const char pilot_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โœˆ๏ธ"; + inline constexpr const char pilot_tone3[] = "๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ"; + inline constexpr const char pilot_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ"; + inline constexpr const char pilot_tone4[] = "๐Ÿง‘๐Ÿพโ€โœˆ๏ธ"; + inline constexpr const char pilot_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โœˆ๏ธ"; + inline constexpr const char pilot_tone5[] = "๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ"; + inline constexpr const char pilot_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot[] = "๐Ÿ‘ฉโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ"; + inline constexpr const char woman_pilot_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ"; + inline constexpr const char man_pilot[] = "๐Ÿ‘จโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_tone1[] = "๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_tone2[] = "๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_tone4[] = "๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ"; + inline constexpr const char man_pilot_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ"; + inline constexpr const char astronaut[] = "๐Ÿง‘โ€๐Ÿš€"; + inline constexpr const char astronaut_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿš€"; + inline constexpr const char astronaut_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿš€"; + inline constexpr const char astronaut_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿš€"; + inline constexpr const char astronaut_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿš€"; + inline constexpr const char astronaut_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿš€"; + inline constexpr const char astronaut_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿš€"; + inline constexpr const char astronaut_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿš€"; + inline constexpr const char astronaut_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿš€"; + inline constexpr const char astronaut_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿš€"; + inline constexpr const char astronaut_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿš€"; + inline constexpr const char woman_astronaut[] = "๐Ÿ‘ฉโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€"; + inline constexpr const char woman_astronaut_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€"; + inline constexpr const char man_astronaut[] = "๐Ÿ‘จโ€๐Ÿš€"; + inline constexpr const char man_astronaut_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿš€"; + inline constexpr const char man_astronaut_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿš€"; + inline constexpr const char man_astronaut_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿš€"; + inline constexpr const char man_astronaut_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿš€"; + inline constexpr const char man_astronaut_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€"; + inline constexpr const char man_astronaut_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€"; + inline constexpr const char man_astronaut_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿš€"; + inline constexpr const char man_astronaut_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿš€"; + inline constexpr const char man_astronaut_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€"; + inline constexpr const char man_astronaut_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€"; + inline constexpr const char judge[] = "๐Ÿง‘โ€โš–๏ธ"; + inline constexpr const char judge_tone1[] = "๐Ÿง‘๐Ÿปโ€โš–๏ธ"; + inline constexpr const char judge_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โš–๏ธ"; + inline constexpr const char judge_tone2[] = "๐Ÿง‘๐Ÿผโ€โš–๏ธ"; + inline constexpr const char judge_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โš–๏ธ"; + inline constexpr const char judge_tone3[] = "๐Ÿง‘๐Ÿฝโ€โš–๏ธ"; + inline constexpr const char judge_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โš–๏ธ"; + inline constexpr const char judge_tone4[] = "๐Ÿง‘๐Ÿพโ€โš–๏ธ"; + inline constexpr const char judge_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โš–๏ธ"; + inline constexpr const char judge_tone5[] = "๐Ÿง‘๐Ÿฟโ€โš–๏ธ"; + inline constexpr const char judge_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โš–๏ธ"; + inline constexpr const char woman_judge[] = "๐Ÿ‘ฉโ€โš–๏ธ"; + inline constexpr const char woman_judge_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ"; + inline constexpr const char woman_judge_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ"; + inline constexpr const char woman_judge_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ"; + inline constexpr const char woman_judge_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ"; + inline constexpr const char woman_judge_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ"; + inline constexpr const char woman_judge_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ"; + inline constexpr const char woman_judge_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ"; + inline constexpr const char woman_judge_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ"; + inline constexpr const char woman_judge_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ"; + inline constexpr const char woman_judge_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ"; + inline constexpr const char man_judge[] = "๐Ÿ‘จโ€โš–๏ธ"; + inline constexpr const char man_judge_tone1[] = "๐Ÿ‘จ๐Ÿปโ€โš–๏ธ"; + inline constexpr const char man_judge_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โš–๏ธ"; + inline constexpr const char man_judge_tone2[] = "๐Ÿ‘จ๐Ÿผโ€โš–๏ธ"; + inline constexpr const char man_judge_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โš–๏ธ"; + inline constexpr const char man_judge_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ"; + inline constexpr const char man_judge_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ"; + inline constexpr const char man_judge_tone4[] = "๐Ÿ‘จ๐Ÿพโ€โš–๏ธ"; + inline constexpr const char man_judge_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โš–๏ธ"; + inline constexpr const char man_judge_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ"; + inline constexpr const char man_judge_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ"; + inline constexpr const char person_with_veil[] = "๐Ÿ‘ฐ"; + inline constexpr const char person_with_veil_tone1[] = "๐Ÿ‘ฐ๐Ÿป"; + inline constexpr const char person_with_veil_tone2[] = "๐Ÿ‘ฐ๐Ÿผ"; + inline constexpr const char person_with_veil_tone3[] = "๐Ÿ‘ฐ๐Ÿฝ"; + inline constexpr const char person_with_veil_tone4[] = "๐Ÿ‘ฐ๐Ÿพ"; + inline constexpr const char person_with_veil_tone5[] = "๐Ÿ‘ฐ๐Ÿฟ"; + inline constexpr const char woman_with_veil[] = "๐Ÿ‘ฐโ€โ™€๏ธ"; + inline constexpr const char bride_with_veil[] = "๐Ÿ‘ฐโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_tone1[] = "๐Ÿ‘ฐ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_light_skin_tone[] = "๐Ÿ‘ฐ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_tone2[] = "๐Ÿ‘ฐ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_medium_light_skin_tone[] = "๐Ÿ‘ฐ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_tone3[] = "๐Ÿ‘ฐ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_medium_skin_tone[] = "๐Ÿ‘ฐ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_tone4[] = "๐Ÿ‘ฐ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_medium_dark_skin_tone[] = "๐Ÿ‘ฐ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_tone5[] = "๐Ÿ‘ฐ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_with_veil_dark_skin_tone[] = "๐Ÿ‘ฐ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_with_veil[] = "๐Ÿ‘ฐโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_tone1[] = "๐Ÿ‘ฐ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_light_skin_tone[] = "๐Ÿ‘ฐ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_tone2[] = "๐Ÿ‘ฐ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_medium_light_skin_tone[] = "๐Ÿ‘ฐ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_tone3[] = "๐Ÿ‘ฐ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_medium_skin_tone[] = "๐Ÿ‘ฐ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_tone4[] = "๐Ÿ‘ฐ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_medium_dark_skin_tone[] = "๐Ÿ‘ฐ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_tone5[] = "๐Ÿ‘ฐ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_with_veil_dark_skin_tone[] = "๐Ÿ‘ฐ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_in_tuxedo[] = "๐Ÿคต"; + inline constexpr const char person_in_tuxedo_tone1[] = "๐Ÿคต๐Ÿป"; + inline constexpr const char tuxedo_tone1[] = "๐Ÿคต๐Ÿป"; + inline constexpr const char person_in_tuxedo_tone2[] = "๐Ÿคต๐Ÿผ"; + inline constexpr const char tuxedo_tone2[] = "๐Ÿคต๐Ÿผ"; + inline constexpr const char person_in_tuxedo_tone3[] = "๐Ÿคต๐Ÿฝ"; + inline constexpr const char tuxedo_tone3[] = "๐Ÿคต๐Ÿฝ"; + inline constexpr const char person_in_tuxedo_tone4[] = "๐Ÿคต๐Ÿพ"; + inline constexpr const char tuxedo_tone4[] = "๐Ÿคต๐Ÿพ"; + inline constexpr const char person_in_tuxedo_tone5[] = "๐Ÿคต๐Ÿฟ"; + inline constexpr const char tuxedo_tone5[] = "๐Ÿคต๐Ÿฟ"; + inline constexpr const char woman_in_tuxedo[] = "๐Ÿคตโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_tone1[] = "๐Ÿคต๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_light_skin_tone[] = "๐Ÿคต๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_tone2[] = "๐Ÿคต๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_medium_light_skin_tone[] = "๐Ÿคต๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_tone3[] = "๐Ÿคต๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_medium_skin_tone[] = "๐Ÿคต๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_tone4[] = "๐Ÿคต๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_medium_dark_skin_tone[] = "๐Ÿคต๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_tone5[] = "๐Ÿคต๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_in_tuxedo_dark_skin_tone[] = "๐Ÿคต๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_in_tuxedo[] = "๐Ÿคตโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_tone1[] = "๐Ÿคต๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_light_skin_tone[] = "๐Ÿคต๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_tone2[] = "๐Ÿคต๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_medium_light_skin_tone[] = "๐Ÿคต๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_tone3[] = "๐Ÿคต๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_medium_skin_tone[] = "๐Ÿคต๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_tone4[] = "๐Ÿคต๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_medium_dark_skin_tone[] = "๐Ÿคต๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_tone5[] = "๐Ÿคต๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_in_tuxedo_dark_skin_tone[] = "๐Ÿคต๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_with_crown[] = "๐Ÿซ…"; + inline constexpr const char person_with_crown_tone1[] = "๐Ÿซ…๐Ÿป"; + inline constexpr const char person_with_crown_light_skin_tone[] = "๐Ÿซ…๐Ÿป"; + inline constexpr const char person_with_crown_tone2[] = "๐Ÿซ…๐Ÿผ"; + inline constexpr const char person_with_crown_medium_light_skin_tone[] = "๐Ÿซ…๐Ÿผ"; + inline constexpr const char person_with_crown_tone3[] = "๐Ÿซ…๐Ÿฝ"; + inline constexpr const char person_with_crown_medium_skin_tone[] = "๐Ÿซ…๐Ÿฝ"; + inline constexpr const char person_with_crown_tone4[] = "๐Ÿซ…๐Ÿพ"; + inline constexpr const char person_with_crown_medium_dark_skin_tone[] = "๐Ÿซ…๐Ÿพ"; + inline constexpr const char person_with_crown_tone5[] = "๐Ÿซ…๐Ÿฟ"; + inline constexpr const char person_with_crown_dark_skin_tone[] = "๐Ÿซ…๐Ÿฟ"; + inline constexpr const char princess[] = "๐Ÿ‘ธ"; + inline constexpr const char princess_tone1[] = "๐Ÿ‘ธ๐Ÿป"; + inline constexpr const char princess_tone2[] = "๐Ÿ‘ธ๐Ÿผ"; + inline constexpr const char princess_tone3[] = "๐Ÿ‘ธ๐Ÿฝ"; + inline constexpr const char princess_tone4[] = "๐Ÿ‘ธ๐Ÿพ"; + inline constexpr const char princess_tone5[] = "๐Ÿ‘ธ๐Ÿฟ"; + inline constexpr const char prince[] = "๐Ÿคด"; + inline constexpr const char prince_tone1[] = "๐Ÿคด๐Ÿป"; + inline constexpr const char prince_tone2[] = "๐Ÿคด๐Ÿผ"; + inline constexpr const char prince_tone3[] = "๐Ÿคด๐Ÿฝ"; + inline constexpr const char prince_tone4[] = "๐Ÿคด๐Ÿพ"; + inline constexpr const char prince_tone5[] = "๐Ÿคด๐Ÿฟ"; + inline constexpr const char superhero[] = "๐Ÿฆธ"; + inline constexpr const char superhero_tone1[] = "๐Ÿฆธ๐Ÿป"; + inline constexpr const char superhero_light_skin_tone[] = "๐Ÿฆธ๐Ÿป"; + inline constexpr const char superhero_tone2[] = "๐Ÿฆธ๐Ÿผ"; + inline constexpr const char superhero_medium_light_skin_tone[] = "๐Ÿฆธ๐Ÿผ"; + inline constexpr const char superhero_tone3[] = "๐Ÿฆธ๐Ÿฝ"; + inline constexpr const char superhero_medium_skin_tone[] = "๐Ÿฆธ๐Ÿฝ"; + inline constexpr const char superhero_tone4[] = "๐Ÿฆธ๐Ÿพ"; + inline constexpr const char superhero_medium_dark_skin_tone[] = "๐Ÿฆธ๐Ÿพ"; + inline constexpr const char superhero_tone5[] = "๐Ÿฆธ๐Ÿฟ"; + inline constexpr const char superhero_dark_skin_tone[] = "๐Ÿฆธ๐Ÿฟ"; + inline constexpr const char woman_superhero[] = "๐Ÿฆธโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_tone1[] = "๐Ÿฆธ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_light_skin_tone[] = "๐Ÿฆธ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_tone2[] = "๐Ÿฆธ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_medium_light_skin_tone[] = "๐Ÿฆธ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_tone3[] = "๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_medium_skin_tone[] = "๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_tone4[] = "๐Ÿฆธ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_medium_dark_skin_tone[] = "๐Ÿฆธ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_tone5[] = "๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_superhero_dark_skin_tone[] = "๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_superhero[] = "๐Ÿฆธโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_tone1[] = "๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_light_skin_tone[] = "๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_tone2[] = "๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_medium_light_skin_tone[] = "๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_tone3[] = "๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_medium_skin_tone[] = "๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_tone4[] = "๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_medium_dark_skin_tone[] = "๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_tone5[] = "๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_superhero_dark_skin_tone[] = "๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char supervillain[] = "๐Ÿฆน"; + inline constexpr const char supervillain_tone1[] = "๐Ÿฆน๐Ÿป"; + inline constexpr const char supervillain_light_skin_tone[] = "๐Ÿฆน๐Ÿป"; + inline constexpr const char supervillain_tone2[] = "๐Ÿฆน๐Ÿผ"; + inline constexpr const char supervillain_medium_light_skin_tone[] = "๐Ÿฆน๐Ÿผ"; + inline constexpr const char supervillain_tone3[] = "๐Ÿฆน๐Ÿฝ"; + inline constexpr const char supervillain_medium_skin_tone[] = "๐Ÿฆน๐Ÿฝ"; + inline constexpr const char supervillain_tone4[] = "๐Ÿฆน๐Ÿพ"; + inline constexpr const char supervillain_medium_dark_skin_tone[] = "๐Ÿฆน๐Ÿพ"; + inline constexpr const char supervillain_tone5[] = "๐Ÿฆน๐Ÿฟ"; + inline constexpr const char supervillain_dark_skin_tone[] = "๐Ÿฆน๐Ÿฟ"; + inline constexpr const char woman_supervillain[] = "๐Ÿฆนโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_tone1[] = "๐Ÿฆน๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_light_skin_tone[] = "๐Ÿฆน๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_tone2[] = "๐Ÿฆน๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_medium_light_skin_tone[] = "๐Ÿฆน๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_tone3[] = "๐Ÿฆน๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_medium_skin_tone[] = "๐Ÿฆน๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_tone4[] = "๐Ÿฆน๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_medium_dark_skin_tone[] = "๐Ÿฆน๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_tone5[] = "๐Ÿฆน๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_supervillain_dark_skin_tone[] = "๐Ÿฆน๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_supervillain[] = "๐Ÿฆนโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_tone1[] = "๐Ÿฆน๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_light_skin_tone[] = "๐Ÿฆน๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_tone2[] = "๐Ÿฆน๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_medium_light_skin_tone[] = "๐Ÿฆน๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_tone3[] = "๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_medium_skin_tone[] = "๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_tone4[] = "๐Ÿฆน๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_medium_dark_skin_tone[] = "๐Ÿฆน๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_tone5[] = "๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_supervillain_dark_skin_tone[] = "๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char ninja[] = "๐Ÿฅท"; + inline constexpr const char ninja_tone1[] = "๐Ÿฅท๐Ÿป"; + inline constexpr const char ninja_light_skin_tone[] = "๐Ÿฅท๐Ÿป"; + inline constexpr const char ninja_tone2[] = "๐Ÿฅท๐Ÿผ"; + inline constexpr const char ninja_medium_light_skin_tone[] = "๐Ÿฅท๐Ÿผ"; + inline constexpr const char ninja_tone3[] = "๐Ÿฅท๐Ÿฝ"; + inline constexpr const char ninja_medium_skin_tone[] = "๐Ÿฅท๐Ÿฝ"; + inline constexpr const char ninja_tone4[] = "๐Ÿฅท๐Ÿพ"; + inline constexpr const char ninja_medium_dark_skin_tone[] = "๐Ÿฅท๐Ÿพ"; + inline constexpr const char ninja_tone5[] = "๐Ÿฅท๐Ÿฟ"; + inline constexpr const char ninja_dark_skin_tone[] = "๐Ÿฅท๐Ÿฟ"; + inline constexpr const char mx_claus[] = "๐Ÿง‘โ€๐ŸŽ„"; + inline constexpr const char mx_claus_tone1[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽ„"; + inline constexpr const char mx_claus_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐ŸŽ„"; + inline constexpr const char mx_claus_tone2[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽ„"; + inline constexpr const char mx_claus_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐ŸŽ„"; + inline constexpr const char mx_claus_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽ„"; + inline constexpr const char mx_claus_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐ŸŽ„"; + inline constexpr const char mx_claus_tone4[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽ„"; + inline constexpr const char mx_claus_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐ŸŽ„"; + inline constexpr const char mx_claus_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽ„"; + inline constexpr const char mx_claus_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐ŸŽ„"; + inline constexpr const char mrs_claus[] = "๐Ÿคถ"; + inline constexpr const char mother_christmas[] = "๐Ÿคถ"; + inline constexpr const char mrs_claus_tone1[] = "๐Ÿคถ๐Ÿป"; + inline constexpr const char mother_christmas_tone1[] = "๐Ÿคถ๐Ÿป"; + inline constexpr const char mrs_claus_tone2[] = "๐Ÿคถ๐Ÿผ"; + inline constexpr const char mother_christmas_tone2[] = "๐Ÿคถ๐Ÿผ"; + inline constexpr const char mrs_claus_tone3[] = "๐Ÿคถ๐Ÿฝ"; + inline constexpr const char mother_christmas_tone3[] = "๐Ÿคถ๐Ÿฝ"; + inline constexpr const char mrs_claus_tone4[] = "๐Ÿคถ๐Ÿพ"; + inline constexpr const char mother_christmas_tone4[] = "๐Ÿคถ๐Ÿพ"; + inline constexpr const char mrs_claus_tone5[] = "๐Ÿคถ๐Ÿฟ"; + inline constexpr const char mother_christmas_tone5[] = "๐Ÿคถ๐Ÿฟ"; + inline constexpr const char santa[] = "๐ŸŽ…"; + inline constexpr const char santa_claus[] = "๐ŸŽ…"; + inline constexpr const char santa_tone1[] = "๐ŸŽ…๐Ÿป"; + inline constexpr const char santa_tone2[] = "๐ŸŽ…๐Ÿผ"; + inline constexpr const char santa_tone3[] = "๐ŸŽ…๐Ÿฝ"; + inline constexpr const char santa_tone4[] = "๐ŸŽ…๐Ÿพ"; + inline constexpr const char santa_tone5[] = "๐ŸŽ…๐Ÿฟ"; + inline constexpr const char mage[] = "๐Ÿง™"; + inline constexpr const char mage_tone1[] = "๐Ÿง™๐Ÿป"; + inline constexpr const char mage_light_skin_tone[] = "๐Ÿง™๐Ÿป"; + inline constexpr const char mage_tone2[] = "๐Ÿง™๐Ÿผ"; + inline constexpr const char mage_medium_light_skin_tone[] = "๐Ÿง™๐Ÿผ"; + inline constexpr const char mage_tone3[] = "๐Ÿง™๐Ÿฝ"; + inline constexpr const char mage_medium_skin_tone[] = "๐Ÿง™๐Ÿฝ"; + inline constexpr const char mage_tone4[] = "๐Ÿง™๐Ÿพ"; + inline constexpr const char mage_medium_dark_skin_tone[] = "๐Ÿง™๐Ÿพ"; + inline constexpr const char mage_tone5[] = "๐Ÿง™๐Ÿฟ"; + inline constexpr const char mage_dark_skin_tone[] = "๐Ÿง™๐Ÿฟ"; + inline constexpr const char woman_mage[] = "๐Ÿง™โ€โ™€๏ธ"; + inline constexpr const char woman_mage_tone1[] = "๐Ÿง™๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_mage_light_skin_tone[] = "๐Ÿง™๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_mage_tone2[] = "๐Ÿง™๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_mage_medium_light_skin_tone[] = "๐Ÿง™๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_mage_tone3[] = "๐Ÿง™๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_mage_medium_skin_tone[] = "๐Ÿง™๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_mage_tone4[] = "๐Ÿง™๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_mage_medium_dark_skin_tone[] = "๐Ÿง™๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_mage_tone5[] = "๐Ÿง™๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_mage_dark_skin_tone[] = "๐Ÿง™๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_mage[] = "๐Ÿง™โ€โ™‚๏ธ"; + inline constexpr const char man_mage_tone1[] = "๐Ÿง™๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_mage_light_skin_tone[] = "๐Ÿง™๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_mage_tone2[] = "๐Ÿง™๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_mage_medium_light_skin_tone[] = "๐Ÿง™๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_mage_tone3[] = "๐Ÿง™๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_mage_medium_skin_tone[] = "๐Ÿง™๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_mage_tone4[] = "๐Ÿง™๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_mage_medium_dark_skin_tone[] = "๐Ÿง™๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_mage_tone5[] = "๐Ÿง™๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_mage_dark_skin_tone[] = "๐Ÿง™๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char elf[] = "๐Ÿง"; + inline constexpr const char elf_tone1[] = "๐Ÿง๐Ÿป"; + inline constexpr const char elf_light_skin_tone[] = "๐Ÿง๐Ÿป"; + inline constexpr const char elf_tone2[] = "๐Ÿง๐Ÿผ"; + inline constexpr const char elf_medium_light_skin_tone[] = "๐Ÿง๐Ÿผ"; + inline constexpr const char elf_tone3[] = "๐Ÿง๐Ÿฝ"; + inline constexpr const char elf_medium_skin_tone[] = "๐Ÿง๐Ÿฝ"; + inline constexpr const char elf_tone4[] = "๐Ÿง๐Ÿพ"; + inline constexpr const char elf_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพ"; + inline constexpr const char elf_tone5[] = "๐Ÿง๐Ÿฟ"; + inline constexpr const char elf_dark_skin_tone[] = "๐Ÿง๐Ÿฟ"; + inline constexpr const char woman_elf[] = "๐Ÿงโ€โ™€๏ธ"; + inline constexpr const char woman_elf_tone1[] = "๐Ÿง๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_elf_light_skin_tone[] = "๐Ÿง๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_elf_tone2[] = "๐Ÿง๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_elf_medium_light_skin_tone[] = "๐Ÿง๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_elf_tone3[] = "๐Ÿง๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_elf_medium_skin_tone[] = "๐Ÿง๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_elf_tone4[] = "๐Ÿง๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_elf_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_elf_tone5[] = "๐Ÿง๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_elf_dark_skin_tone[] = "๐Ÿง๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_elf[] = "๐Ÿงโ€โ™‚๏ธ"; + inline constexpr const char man_elf_tone1[] = "๐Ÿง๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_elf_light_skin_tone[] = "๐Ÿง๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_elf_tone2[] = "๐Ÿง๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_elf_medium_light_skin_tone[] = "๐Ÿง๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_elf_tone3[] = "๐Ÿง๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_elf_medium_skin_tone[] = "๐Ÿง๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_elf_tone4[] = "๐Ÿง๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_elf_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_elf_tone5[] = "๐Ÿง๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_elf_dark_skin_tone[] = "๐Ÿง๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char troll[] = "๐ŸงŒ"; + inline constexpr const char vampire[] = "๐Ÿง›"; + inline constexpr const char vampire_tone1[] = "๐Ÿง›๐Ÿป"; + inline constexpr const char vampire_light_skin_tone[] = "๐Ÿง›๐Ÿป"; + inline constexpr const char vampire_tone2[] = "๐Ÿง›๐Ÿผ"; + inline constexpr const char vampire_medium_light_skin_tone[] = "๐Ÿง›๐Ÿผ"; + inline constexpr const char vampire_tone3[] = "๐Ÿง›๐Ÿฝ"; + inline constexpr const char vampire_medium_skin_tone[] = "๐Ÿง›๐Ÿฝ"; + inline constexpr const char vampire_tone4[] = "๐Ÿง›๐Ÿพ"; + inline constexpr const char vampire_medium_dark_skin_tone[] = "๐Ÿง›๐Ÿพ"; + inline constexpr const char vampire_tone5[] = "๐Ÿง›๐Ÿฟ"; + inline constexpr const char vampire_dark_skin_tone[] = "๐Ÿง›๐Ÿฟ"; + inline constexpr const char woman_vampire[] = "๐Ÿง›โ€โ™€๏ธ"; + inline constexpr const char woman_vampire_tone1[] = "๐Ÿง›๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_light_skin_tone[] = "๐Ÿง›๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_tone2[] = "๐Ÿง›๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_medium_light_skin_tone[] = "๐Ÿง›๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_tone3[] = "๐Ÿง›๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_medium_skin_tone[] = "๐Ÿง›๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_tone4[] = "๐Ÿง›๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_medium_dark_skin_tone[] = "๐Ÿง›๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_tone5[] = "๐Ÿง›๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_vampire_dark_skin_tone[] = "๐Ÿง›๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_vampire[] = "๐Ÿง›โ€โ™‚๏ธ"; + inline constexpr const char man_vampire_tone1[] = "๐Ÿง›๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_light_skin_tone[] = "๐Ÿง›๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_tone2[] = "๐Ÿง›๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_medium_light_skin_tone[] = "๐Ÿง›๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_tone3[] = "๐Ÿง›๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_medium_skin_tone[] = "๐Ÿง›๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_tone4[] = "๐Ÿง›๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_medium_dark_skin_tone[] = "๐Ÿง›๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_tone5[] = "๐Ÿง›๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_vampire_dark_skin_tone[] = "๐Ÿง›๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char zombie[] = "๐ŸงŸ"; + inline constexpr const char woman_zombie[] = "๐ŸงŸโ€โ™€๏ธ"; + inline constexpr const char man_zombie[] = "๐ŸงŸโ€โ™‚๏ธ"; + inline constexpr const char genie[] = "๐Ÿงž"; + inline constexpr const char woman_genie[] = "๐Ÿงžโ€โ™€๏ธ"; + inline constexpr const char man_genie[] = "๐Ÿงžโ€โ™‚๏ธ"; + inline constexpr const char merperson[] = "๐Ÿงœ"; + inline constexpr const char merperson_tone1[] = "๐Ÿงœ๐Ÿป"; + inline constexpr const char merperson_light_skin_tone[] = "๐Ÿงœ๐Ÿป"; + inline constexpr const char merperson_tone2[] = "๐Ÿงœ๐Ÿผ"; + inline constexpr const char merperson_medium_light_skin_tone[] = "๐Ÿงœ๐Ÿผ"; + inline constexpr const char merperson_tone3[] = "๐Ÿงœ๐Ÿฝ"; + inline constexpr const char merperson_medium_skin_tone[] = "๐Ÿงœ๐Ÿฝ"; + inline constexpr const char merperson_tone4[] = "๐Ÿงœ๐Ÿพ"; + inline constexpr const char merperson_medium_dark_skin_tone[] = "๐Ÿงœ๐Ÿพ"; + inline constexpr const char merperson_tone5[] = "๐Ÿงœ๐Ÿฟ"; + inline constexpr const char merperson_dark_skin_tone[] = "๐Ÿงœ๐Ÿฟ"; + inline constexpr const char mermaid[] = "๐Ÿงœโ€โ™€๏ธ"; + inline constexpr const char mermaid_tone1[] = "๐Ÿงœ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char mermaid_light_skin_tone[] = "๐Ÿงœ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char mermaid_tone2[] = "๐Ÿงœ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char mermaid_medium_light_skin_tone[] = "๐Ÿงœ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char mermaid_tone3[] = "๐Ÿงœ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char mermaid_medium_skin_tone[] = "๐Ÿงœ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char mermaid_tone4[] = "๐Ÿงœ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char mermaid_medium_dark_skin_tone[] = "๐Ÿงœ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char mermaid_tone5[] = "๐Ÿงœ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char mermaid_dark_skin_tone[] = "๐Ÿงœ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char merman[] = "๐Ÿงœโ€โ™‚๏ธ"; + inline constexpr const char merman_tone1[] = "๐Ÿงœ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char merman_light_skin_tone[] = "๐Ÿงœ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char merman_tone2[] = "๐Ÿงœ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char merman_medium_light_skin_tone[] = "๐Ÿงœ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char merman_tone3[] = "๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char merman_medium_skin_tone[] = "๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char merman_tone4[] = "๐Ÿงœ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char merman_medium_dark_skin_tone[] = "๐Ÿงœ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char merman_tone5[] = "๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char merman_dark_skin_tone[] = "๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char fairy[] = "๐Ÿงš"; + inline constexpr const char fairy_tone1[] = "๐Ÿงš๐Ÿป"; + inline constexpr const char fairy_light_skin_tone[] = "๐Ÿงš๐Ÿป"; + inline constexpr const char fairy_tone2[] = "๐Ÿงš๐Ÿผ"; + inline constexpr const char fairy_medium_light_skin_tone[] = "๐Ÿงš๐Ÿผ"; + inline constexpr const char fairy_tone3[] = "๐Ÿงš๐Ÿฝ"; + inline constexpr const char fairy_medium_skin_tone[] = "๐Ÿงš๐Ÿฝ"; + inline constexpr const char fairy_tone4[] = "๐Ÿงš๐Ÿพ"; + inline constexpr const char fairy_medium_dark_skin_tone[] = "๐Ÿงš๐Ÿพ"; + inline constexpr const char fairy_tone5[] = "๐Ÿงš๐Ÿฟ"; + inline constexpr const char fairy_dark_skin_tone[] = "๐Ÿงš๐Ÿฟ"; + inline constexpr const char woman_fairy[] = "๐Ÿงšโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_tone1[] = "๐Ÿงš๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_light_skin_tone[] = "๐Ÿงš๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_tone2[] = "๐Ÿงš๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_medium_light_skin_tone[] = "๐Ÿงš๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_tone3[] = "๐Ÿงš๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_medium_skin_tone[] = "๐Ÿงš๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_tone4[] = "๐Ÿงš๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_medium_dark_skin_tone[] = "๐Ÿงš๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_tone5[] = "๐Ÿงš๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_fairy_dark_skin_tone[] = "๐Ÿงš๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_fairy[] = "๐Ÿงšโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_tone1[] = "๐Ÿงš๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_light_skin_tone[] = "๐Ÿงš๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_tone2[] = "๐Ÿงš๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_medium_light_skin_tone[] = "๐Ÿงš๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_tone3[] = "๐Ÿงš๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_medium_skin_tone[] = "๐Ÿงš๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_tone4[] = "๐Ÿงš๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_medium_dark_skin_tone[] = "๐Ÿงš๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_tone5[] = "๐Ÿงš๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_fairy_dark_skin_tone[] = "๐Ÿงš๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char angel[] = "๐Ÿ‘ผ"; + inline constexpr const char baby_angel[] = "๐Ÿ‘ผ"; + inline constexpr const char angel_tone1[] = "๐Ÿ‘ผ๐Ÿป"; + inline constexpr const char angel_tone2[] = "๐Ÿ‘ผ๐Ÿผ"; + inline constexpr const char angel_tone3[] = "๐Ÿ‘ผ๐Ÿฝ"; + inline constexpr const char angel_tone4[] = "๐Ÿ‘ผ๐Ÿพ"; + inline constexpr const char angel_tone5[] = "๐Ÿ‘ผ๐Ÿฟ"; + inline constexpr const char pregnant_person[] = "๐Ÿซ„"; + inline constexpr const char pregnant_person_tone1[] = "๐Ÿซ„๐Ÿป"; + inline constexpr const char pregnant_person_light_skin_tone[] = "๐Ÿซ„๐Ÿป"; + inline constexpr const char pregnant_person_tone2[] = "๐Ÿซ„๐Ÿผ"; + inline constexpr const char pregnant_person_medium_light_skin_tone[] = "๐Ÿซ„๐Ÿผ"; + inline constexpr const char pregnant_person_tone3[] = "๐Ÿซ„๐Ÿฝ"; + inline constexpr const char pregnant_person_medium_skin_tone[] = "๐Ÿซ„๐Ÿฝ"; + inline constexpr const char pregnant_person_tone4[] = "๐Ÿซ„๐Ÿพ"; + inline constexpr const char pregnant_person_medium_dark_skin_tone[] = "๐Ÿซ„๐Ÿพ"; + inline constexpr const char pregnant_person_tone5[] = "๐Ÿซ„๐Ÿฟ"; + inline constexpr const char pregnant_person_dark_skin_tone[] = "๐Ÿซ„๐Ÿฟ"; + inline constexpr const char pregnant_woman[] = "๐Ÿคฐ"; + inline constexpr const char expecting_woman[] = "๐Ÿคฐ"; + inline constexpr const char pregnant_woman_tone1[] = "๐Ÿคฐ๐Ÿป"; + inline constexpr const char expecting_woman_tone1[] = "๐Ÿคฐ๐Ÿป"; + inline constexpr const char pregnant_woman_tone2[] = "๐Ÿคฐ๐Ÿผ"; + inline constexpr const char expecting_woman_tone2[] = "๐Ÿคฐ๐Ÿผ"; + inline constexpr const char pregnant_woman_tone3[] = "๐Ÿคฐ๐Ÿฝ"; + inline constexpr const char expecting_woman_tone3[] = "๐Ÿคฐ๐Ÿฝ"; + inline constexpr const char pregnant_woman_tone4[] = "๐Ÿคฐ๐Ÿพ"; + inline constexpr const char expecting_woman_tone4[] = "๐Ÿคฐ๐Ÿพ"; + inline constexpr const char pregnant_woman_tone5[] = "๐Ÿคฐ๐Ÿฟ"; + inline constexpr const char expecting_woman_tone5[] = "๐Ÿคฐ๐Ÿฟ"; + inline constexpr const char pregnant_man[] = "๐Ÿซƒ"; + inline constexpr const char pregnant_man_tone1[] = "๐Ÿซƒ๐Ÿป"; + inline constexpr const char pregnant_man_light_skin_tone[] = "๐Ÿซƒ๐Ÿป"; + inline constexpr const char pregnant_man_tone2[] = "๐Ÿซƒ๐Ÿผ"; + inline constexpr const char pregnant_man_medium_light_skin_tone[] = "๐Ÿซƒ๐Ÿผ"; + inline constexpr const char pregnant_man_tone3[] = "๐Ÿซƒ๐Ÿฝ"; + inline constexpr const char pregnant_man_medium_skin_tone[] = "๐Ÿซƒ๐Ÿฝ"; + inline constexpr const char pregnant_man_tone4[] = "๐Ÿซƒ๐Ÿพ"; + inline constexpr const char pregnant_man_medium_dark_skin_tone[] = "๐Ÿซƒ๐Ÿพ"; + inline constexpr const char pregnant_man_tone5[] = "๐Ÿซƒ๐Ÿฟ"; + inline constexpr const char pregnant_man_dark_skin_tone[] = "๐Ÿซƒ๐Ÿฟ"; + inline constexpr const char breast_feeding[] = "๐Ÿคฑ"; + inline constexpr const char breast_feeding_tone1[] = "๐Ÿคฑ๐Ÿป"; + inline constexpr const char breast_feeding_light_skin_tone[] = "๐Ÿคฑ๐Ÿป"; + inline constexpr const char breast_feeding_tone2[] = "๐Ÿคฑ๐Ÿผ"; + inline constexpr const char breast_feeding_medium_light_skin_tone[] = "๐Ÿคฑ๐Ÿผ"; + inline constexpr const char breast_feeding_tone3[] = "๐Ÿคฑ๐Ÿฝ"; + inline constexpr const char breast_feeding_medium_skin_tone[] = "๐Ÿคฑ๐Ÿฝ"; + inline constexpr const char breast_feeding_tone4[] = "๐Ÿคฑ๐Ÿพ"; + inline constexpr const char breast_feeding_medium_dark_skin_tone[] = "๐Ÿคฑ๐Ÿพ"; + inline constexpr const char breast_feeding_tone5[] = "๐Ÿคฑ๐Ÿฟ"; + inline constexpr const char breast_feeding_dark_skin_tone[] = "๐Ÿคฑ๐Ÿฟ"; + inline constexpr const char person_feeding_baby[] = "๐Ÿง‘โ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿผ"; + inline constexpr const char person_feeding_baby_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby[] = "๐Ÿ‘ฉโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿผ"; + inline constexpr const char woman_feeding_baby_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby[] = "๐Ÿ‘จโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿผ"; + inline constexpr const char man_feeding_baby_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿผ"; + inline constexpr const char person_bowing[] = "๐Ÿ™‡"; + inline constexpr const char bow[] = "๐Ÿ™‡"; + inline constexpr const char person_bowing_tone1[] = "๐Ÿ™‡๐Ÿป"; + inline constexpr const char bow_tone1[] = "๐Ÿ™‡๐Ÿป"; + inline constexpr const char person_bowing_tone2[] = "๐Ÿ™‡๐Ÿผ"; + inline constexpr const char bow_tone2[] = "๐Ÿ™‡๐Ÿผ"; + inline constexpr const char person_bowing_tone3[] = "๐Ÿ™‡๐Ÿฝ"; + inline constexpr const char bow_tone3[] = "๐Ÿ™‡๐Ÿฝ"; + inline constexpr const char person_bowing_tone4[] = "๐Ÿ™‡๐Ÿพ"; + inline constexpr const char bow_tone4[] = "๐Ÿ™‡๐Ÿพ"; + inline constexpr const char person_bowing_tone5[] = "๐Ÿ™‡๐Ÿฟ"; + inline constexpr const char bow_tone5[] = "๐Ÿ™‡๐Ÿฟ"; + inline constexpr const char woman_bowing[] = "๐Ÿ™‡โ€โ™€๏ธ"; + inline constexpr const char woman_bowing_tone1[] = "๐Ÿ™‡๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_light_skin_tone[] = "๐Ÿ™‡๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_tone2[] = "๐Ÿ™‡๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_medium_light_skin_tone[] = "๐Ÿ™‡๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_tone3[] = "๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_medium_skin_tone[] = "๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_tone4[] = "๐Ÿ™‡๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_medium_dark_skin_tone[] = "๐Ÿ™‡๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_tone5[] = "๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_bowing_dark_skin_tone[] = "๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_bowing[] = "๐Ÿ™‡โ€โ™‚๏ธ"; + inline constexpr const char man_bowing_tone1[] = "๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_light_skin_tone[] = "๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_tone2[] = "๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_medium_light_skin_tone[] = "๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_tone3[] = "๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_medium_skin_tone[] = "๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_tone4[] = "๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_medium_dark_skin_tone[] = "๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_tone5[] = "๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_bowing_dark_skin_tone[] = "๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_tipping_hand[] = "๐Ÿ’"; + inline constexpr const char information_desk_person[] = "๐Ÿ’"; + inline constexpr const char person_tipping_hand_tone1[] = "๐Ÿ’๐Ÿป"; + inline constexpr const char information_desk_person_tone1[] = "๐Ÿ’๐Ÿป"; + inline constexpr const char person_tipping_hand_tone2[] = "๐Ÿ’๐Ÿผ"; + inline constexpr const char information_desk_person_tone2[] = "๐Ÿ’๐Ÿผ"; + inline constexpr const char person_tipping_hand_tone3[] = "๐Ÿ’๐Ÿฝ"; + inline constexpr const char information_desk_person_tone3[] = "๐Ÿ’๐Ÿฝ"; + inline constexpr const char person_tipping_hand_tone4[] = "๐Ÿ’๐Ÿพ"; + inline constexpr const char information_desk_person_tone4[] = "๐Ÿ’๐Ÿพ"; + inline constexpr const char person_tipping_hand_tone5[] = "๐Ÿ’๐Ÿฟ"; + inline constexpr const char information_desk_person_tone5[] = "๐Ÿ’๐Ÿฟ"; + inline constexpr const char woman_tipping_hand[] = "๐Ÿ’โ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_tone1[] = "๐Ÿ’๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_light_skin_tone[] = "๐Ÿ’๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_tone2[] = "๐Ÿ’๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_medium_light_skin_tone[] = "๐Ÿ’๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_tone3[] = "๐Ÿ’๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_medium_skin_tone[] = "๐Ÿ’๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_tone4[] = "๐Ÿ’๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_medium_dark_skin_tone[] = "๐Ÿ’๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_tone5[] = "๐Ÿ’๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_tipping_hand_dark_skin_tone[] = "๐Ÿ’๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_tipping_hand[] = "๐Ÿ’โ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_tone1[] = "๐Ÿ’๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_light_skin_tone[] = "๐Ÿ’๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_tone2[] = "๐Ÿ’๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_medium_light_skin_tone[] = "๐Ÿ’๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_tone3[] = "๐Ÿ’๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_medium_skin_tone[] = "๐Ÿ’๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_tone4[] = "๐Ÿ’๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_medium_dark_skin_tone[] = "๐Ÿ’๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_tone5[] = "๐Ÿ’๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_tipping_hand_dark_skin_tone[] = "๐Ÿ’๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_gesturing_no[] = "๐Ÿ™…"; + inline constexpr const char no_good[] = "๐Ÿ™…"; + inline constexpr const char person_gesturing_no_tone1[] = "๐Ÿ™…๐Ÿป"; + inline constexpr const char no_good_tone1[] = "๐Ÿ™…๐Ÿป"; + inline constexpr const char person_gesturing_no_tone2[] = "๐Ÿ™…๐Ÿผ"; + inline constexpr const char no_good_tone2[] = "๐Ÿ™…๐Ÿผ"; + inline constexpr const char person_gesturing_no_tone3[] = "๐Ÿ™…๐Ÿฝ"; + inline constexpr const char no_good_tone3[] = "๐Ÿ™…๐Ÿฝ"; + inline constexpr const char person_gesturing_no_tone4[] = "๐Ÿ™…๐Ÿพ"; + inline constexpr const char no_good_tone4[] = "๐Ÿ™…๐Ÿพ"; + inline constexpr const char person_gesturing_no_tone5[] = "๐Ÿ™…๐Ÿฟ"; + inline constexpr const char no_good_tone5[] = "๐Ÿ™…๐Ÿฟ"; + inline constexpr const char woman_gesturing_no[] = "๐Ÿ™…โ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_tone1[] = "๐Ÿ™…๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_light_skin_tone[] = "๐Ÿ™…๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_tone2[] = "๐Ÿ™…๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_medium_light_skin_tone[] = "๐Ÿ™…๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_tone3[] = "๐Ÿ™…๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_medium_skin_tone[] = "๐Ÿ™…๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_tone4[] = "๐Ÿ™…๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_medium_dark_skin_tone[] = "๐Ÿ™…๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_tone5[] = "๐Ÿ™…๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_no_dark_skin_tone[] = "๐Ÿ™…๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_gesturing_no[] = "๐Ÿ™…โ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_tone1[] = "๐Ÿ™…๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_light_skin_tone[] = "๐Ÿ™…๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_tone2[] = "๐Ÿ™…๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_medium_light_skin_tone[] = "๐Ÿ™…๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_tone3[] = "๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_medium_skin_tone[] = "๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_tone4[] = "๐Ÿ™…๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_medium_dark_skin_tone[] = "๐Ÿ™…๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_tone5[] = "๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_no_dark_skin_tone[] = "๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_gesturing_ok[] = "๐Ÿ™†"; + inline constexpr const char person_gesturing_ok_tone1[] = "๐Ÿ™†๐Ÿป"; + inline constexpr const char person_gesturing_ok_tone2[] = "๐Ÿ™†๐Ÿผ"; + inline constexpr const char person_gesturing_ok_tone3[] = "๐Ÿ™†๐Ÿฝ"; + inline constexpr const char person_gesturing_ok_tone4[] = "๐Ÿ™†๐Ÿพ"; + inline constexpr const char person_gesturing_ok_tone5[] = "๐Ÿ™†๐Ÿฟ"; + inline constexpr const char woman_gesturing_ok[] = "๐Ÿ™†โ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_tone1[] = "๐Ÿ™†๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_light_skin_tone[] = "๐Ÿ™†๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_tone2[] = "๐Ÿ™†๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_medium_light_skin_tone[] = "๐Ÿ™†๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_tone3[] = "๐Ÿ™†๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_medium_skin_tone[] = "๐Ÿ™†๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_tone4[] = "๐Ÿ™†๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_medium_dark_skin_tone[] = "๐Ÿ™†๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_tone5[] = "๐Ÿ™†๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_gesturing_ok_dark_skin_tone[] = "๐Ÿ™†๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_gesturing_ok[] = "๐Ÿ™†โ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_tone1[] = "๐Ÿ™†๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_light_skin_tone[] = "๐Ÿ™†๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_tone2[] = "๐Ÿ™†๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_medium_light_skin_tone[] = "๐Ÿ™†๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_tone3[] = "๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_medium_skin_tone[] = "๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_tone4[] = "๐Ÿ™†๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_medium_dark_skin_tone[] = "๐Ÿ™†๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_tone5[] = "๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_gesturing_ok_dark_skin_tone[] = "๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_raising_hand[] = "๐Ÿ™‹"; + inline constexpr const char raising_hand[] = "๐Ÿ™‹"; + inline constexpr const char person_raising_hand_tone1[] = "๐Ÿ™‹๐Ÿป"; + inline constexpr const char raising_hand_tone1[] = "๐Ÿ™‹๐Ÿป"; + inline constexpr const char person_raising_hand_tone2[] = "๐Ÿ™‹๐Ÿผ"; + inline constexpr const char raising_hand_tone2[] = "๐Ÿ™‹๐Ÿผ"; + inline constexpr const char person_raising_hand_tone3[] = "๐Ÿ™‹๐Ÿฝ"; + inline constexpr const char raising_hand_tone3[] = "๐Ÿ™‹๐Ÿฝ"; + inline constexpr const char person_raising_hand_tone4[] = "๐Ÿ™‹๐Ÿพ"; + inline constexpr const char raising_hand_tone4[] = "๐Ÿ™‹๐Ÿพ"; + inline constexpr const char person_raising_hand_tone5[] = "๐Ÿ™‹๐Ÿฟ"; + inline constexpr const char raising_hand_tone5[] = "๐Ÿ™‹๐Ÿฟ"; + inline constexpr const char woman_raising_hand[] = "๐Ÿ™‹โ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_tone1[] = "๐Ÿ™‹๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_light_skin_tone[] = "๐Ÿ™‹๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_tone2[] = "๐Ÿ™‹๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_medium_light_skin_tone[] = "๐Ÿ™‹๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_tone3[] = "๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_medium_skin_tone[] = "๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_tone4[] = "๐Ÿ™‹๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_medium_dark_skin_tone[] = "๐Ÿ™‹๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_tone5[] = "๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_raising_hand_dark_skin_tone[] = "๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_raising_hand[] = "๐Ÿ™‹โ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_tone1[] = "๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_light_skin_tone[] = "๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_tone2[] = "๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_medium_light_skin_tone[] = "๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_tone3[] = "๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_medium_skin_tone[] = "๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_tone4[] = "๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_medium_dark_skin_tone[] = "๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_tone5[] = "๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_raising_hand_dark_skin_tone[] = "๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char deaf_person[] = "๐Ÿง"; + inline constexpr const char deaf_person_tone1[] = "๐Ÿง๐Ÿป"; + inline constexpr const char deaf_person_light_skin_tone[] = "๐Ÿง๐Ÿป"; + inline constexpr const char deaf_person_tone2[] = "๐Ÿง๐Ÿผ"; + inline constexpr const char deaf_person_medium_light_skin_tone[] = "๐Ÿง๐Ÿผ"; + inline constexpr const char deaf_person_tone3[] = "๐Ÿง๐Ÿฝ"; + inline constexpr const char deaf_person_medium_skin_tone[] = "๐Ÿง๐Ÿฝ"; + inline constexpr const char deaf_person_tone4[] = "๐Ÿง๐Ÿพ"; + inline constexpr const char deaf_person_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพ"; + inline constexpr const char deaf_person_tone5[] = "๐Ÿง๐Ÿฟ"; + inline constexpr const char deaf_person_dark_skin_tone[] = "๐Ÿง๐Ÿฟ"; + inline constexpr const char deaf_woman[] = "๐Ÿงโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_tone1[] = "๐Ÿง๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_light_skin_tone[] = "๐Ÿง๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_tone2[] = "๐Ÿง๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_medium_light_skin_tone[] = "๐Ÿง๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_tone3[] = "๐Ÿง๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_medium_skin_tone[] = "๐Ÿง๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_tone4[] = "๐Ÿง๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_tone5[] = "๐Ÿง๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char deaf_woman_dark_skin_tone[] = "๐Ÿง๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char deaf_man[] = "๐Ÿงโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_tone1[] = "๐Ÿง๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_light_skin_tone[] = "๐Ÿง๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_tone2[] = "๐Ÿง๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_medium_light_skin_tone[] = "๐Ÿง๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_tone3[] = "๐Ÿง๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_medium_skin_tone[] = "๐Ÿง๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_tone4[] = "๐Ÿง๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_tone5[] = "๐Ÿง๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char deaf_man_dark_skin_tone[] = "๐Ÿง๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_facepalming[] = "๐Ÿคฆ"; + inline constexpr const char face_palm[] = "๐Ÿคฆ"; + inline constexpr const char facepalm[] = "๐Ÿคฆ"; + inline constexpr const char person_facepalming_tone1[] = "๐Ÿคฆ๐Ÿป"; + inline constexpr const char face_palm_tone1[] = "๐Ÿคฆ๐Ÿป"; + inline constexpr const char facepalm_tone1[] = "๐Ÿคฆ๐Ÿป"; + inline constexpr const char person_facepalming_tone2[] = "๐Ÿคฆ๐Ÿผ"; + inline constexpr const char face_palm_tone2[] = "๐Ÿคฆ๐Ÿผ"; + inline constexpr const char facepalm_tone2[] = "๐Ÿคฆ๐Ÿผ"; + inline constexpr const char person_facepalming_tone3[] = "๐Ÿคฆ๐Ÿฝ"; + inline constexpr const char face_palm_tone3[] = "๐Ÿคฆ๐Ÿฝ"; + inline constexpr const char facepalm_tone3[] = "๐Ÿคฆ๐Ÿฝ"; + inline constexpr const char person_facepalming_tone4[] = "๐Ÿคฆ๐Ÿพ"; + inline constexpr const char face_palm_tone4[] = "๐Ÿคฆ๐Ÿพ"; + inline constexpr const char facepalm_tone4[] = "๐Ÿคฆ๐Ÿพ"; + inline constexpr const char person_facepalming_tone5[] = "๐Ÿคฆ๐Ÿฟ"; + inline constexpr const char face_palm_tone5[] = "๐Ÿคฆ๐Ÿฟ"; + inline constexpr const char facepalm_tone5[] = "๐Ÿคฆ๐Ÿฟ"; + inline constexpr const char woman_facepalming[] = "๐Ÿคฆโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_tone1[] = "๐Ÿคฆ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_light_skin_tone[] = "๐Ÿคฆ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_tone2[] = "๐Ÿคฆ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_medium_light_skin_tone[] = "๐Ÿคฆ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_tone3[] = "๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_medium_skin_tone[] = "๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_tone4[] = "๐Ÿคฆ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_medium_dark_skin_tone[] = "๐Ÿคฆ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_tone5[] = "๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_facepalming_dark_skin_tone[] = "๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_facepalming[] = "๐Ÿคฆโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_tone1[] = "๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_light_skin_tone[] = "๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_tone2[] = "๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_medium_light_skin_tone[] = "๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_tone3[] = "๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_medium_skin_tone[] = "๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_tone4[] = "๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_medium_dark_skin_tone[] = "๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_tone5[] = "๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_facepalming_dark_skin_tone[] = "๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_shrugging[] = "๐Ÿคท"; + inline constexpr const char shrug[] = "๐Ÿคท"; + inline constexpr const char person_shrugging_tone1[] = "๐Ÿคท๐Ÿป"; + inline constexpr const char shrug_tone1[] = "๐Ÿคท๐Ÿป"; + inline constexpr const char person_shrugging_tone2[] = "๐Ÿคท๐Ÿผ"; + inline constexpr const char shrug_tone2[] = "๐Ÿคท๐Ÿผ"; + inline constexpr const char person_shrugging_tone3[] = "๐Ÿคท๐Ÿฝ"; + inline constexpr const char shrug_tone3[] = "๐Ÿคท๐Ÿฝ"; + inline constexpr const char person_shrugging_tone4[] = "๐Ÿคท๐Ÿพ"; + inline constexpr const char shrug_tone4[] = "๐Ÿคท๐Ÿพ"; + inline constexpr const char person_shrugging_tone5[] = "๐Ÿคท๐Ÿฟ"; + inline constexpr const char shrug_tone5[] = "๐Ÿคท๐Ÿฟ"; + inline constexpr const char woman_shrugging[] = "๐Ÿคทโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_tone1[] = "๐Ÿคท๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_light_skin_tone[] = "๐Ÿคท๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_tone2[] = "๐Ÿคท๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_medium_light_skin_tone[] = "๐Ÿคท๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_tone3[] = "๐Ÿคท๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_medium_skin_tone[] = "๐Ÿคท๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_tone4[] = "๐Ÿคท๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_medium_dark_skin_tone[] = "๐Ÿคท๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_tone5[] = "๐Ÿคท๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_shrugging_dark_skin_tone[] = "๐Ÿคท๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_shrugging[] = "๐Ÿคทโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_tone1[] = "๐Ÿคท๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_light_skin_tone[] = "๐Ÿคท๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_tone2[] = "๐Ÿคท๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_medium_light_skin_tone[] = "๐Ÿคท๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_tone3[] = "๐Ÿคท๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_medium_skin_tone[] = "๐Ÿคท๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_tone4[] = "๐Ÿคท๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_medium_dark_skin_tone[] = "๐Ÿคท๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_tone5[] = "๐Ÿคท๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_shrugging_dark_skin_tone[] = "๐Ÿคท๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_pouting[] = "๐Ÿ™Ž"; + inline constexpr const char person_with_pouting_face[] = "๐Ÿ™Ž"; + inline constexpr const char person_pouting_tone1[] = "๐Ÿ™Ž๐Ÿป"; + inline constexpr const char person_with_pouting_face_tone1[] = "๐Ÿ™Ž๐Ÿป"; + inline constexpr const char person_pouting_tone2[] = "๐Ÿ™Ž๐Ÿผ"; + inline constexpr const char person_with_pouting_face_tone2[] = "๐Ÿ™Ž๐Ÿผ"; + inline constexpr const char person_pouting_tone3[] = "๐Ÿ™Ž๐Ÿฝ"; + inline constexpr const char person_with_pouting_face_tone3[] = "๐Ÿ™Ž๐Ÿฝ"; + inline constexpr const char person_pouting_tone4[] = "๐Ÿ™Ž๐Ÿพ"; + inline constexpr const char person_with_pouting_face_tone4[] = "๐Ÿ™Ž๐Ÿพ"; + inline constexpr const char person_pouting_tone5[] = "๐Ÿ™Ž๐Ÿฟ"; + inline constexpr const char person_with_pouting_face_tone5[] = "๐Ÿ™Ž๐Ÿฟ"; + inline constexpr const char woman_pouting[] = "๐Ÿ™Žโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_tone1[] = "๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_light_skin_tone[] = "๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_tone2[] = "๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_medium_light_skin_tone[] = "๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_tone3[] = "๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_medium_skin_tone[] = "๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_tone4[] = "๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_medium_dark_skin_tone[] = "๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_tone5[] = "๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_pouting_dark_skin_tone[] = "๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_pouting[] = "๐Ÿ™Žโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_tone1[] = "๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_light_skin_tone[] = "๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_tone2[] = "๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_medium_light_skin_tone[] = "๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_tone3[] = "๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_medium_skin_tone[] = "๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_tone4[] = "๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_medium_dark_skin_tone[] = "๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_tone5[] = "๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_pouting_dark_skin_tone[] = "๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_frowning[] = "๐Ÿ™"; + inline constexpr const char person_frowning_tone1[] = "๐Ÿ™๐Ÿป"; + inline constexpr const char person_frowning_tone2[] = "๐Ÿ™๐Ÿผ"; + inline constexpr const char person_frowning_tone3[] = "๐Ÿ™๐Ÿฝ"; + inline constexpr const char person_frowning_tone4[] = "๐Ÿ™๐Ÿพ"; + inline constexpr const char person_frowning_tone5[] = "๐Ÿ™๐Ÿฟ"; + inline constexpr const char woman_frowning[] = "๐Ÿ™โ€โ™€๏ธ"; + inline constexpr const char woman_frowning_tone1[] = "๐Ÿ™๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_light_skin_tone[] = "๐Ÿ™๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_tone2[] = "๐Ÿ™๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_medium_light_skin_tone[] = "๐Ÿ™๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_tone3[] = "๐Ÿ™๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_medium_skin_tone[] = "๐Ÿ™๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_tone4[] = "๐Ÿ™๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_medium_dark_skin_tone[] = "๐Ÿ™๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_tone5[] = "๐Ÿ™๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_frowning_dark_skin_tone[] = "๐Ÿ™๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_frowning[] = "๐Ÿ™โ€โ™‚๏ธ"; + inline constexpr const char man_frowning_tone1[] = "๐Ÿ™๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_light_skin_tone[] = "๐Ÿ™๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_tone2[] = "๐Ÿ™๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_medium_light_skin_tone[] = "๐Ÿ™๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_tone3[] = "๐Ÿ™๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_medium_skin_tone[] = "๐Ÿ™๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_tone4[] = "๐Ÿ™๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_medium_dark_skin_tone[] = "๐Ÿ™๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_tone5[] = "๐Ÿ™๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_frowning_dark_skin_tone[] = "๐Ÿ™๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_getting_haircut[] = "๐Ÿ’‡"; + inline constexpr const char haircut[] = "๐Ÿ’‡"; + inline constexpr const char person_getting_haircut_tone1[] = "๐Ÿ’‡๐Ÿป"; + inline constexpr const char haircut_tone1[] = "๐Ÿ’‡๐Ÿป"; + inline constexpr const char person_getting_haircut_tone2[] = "๐Ÿ’‡๐Ÿผ"; + inline constexpr const char haircut_tone2[] = "๐Ÿ’‡๐Ÿผ"; + inline constexpr const char person_getting_haircut_tone3[] = "๐Ÿ’‡๐Ÿฝ"; + inline constexpr const char haircut_tone3[] = "๐Ÿ’‡๐Ÿฝ"; + inline constexpr const char person_getting_haircut_tone4[] = "๐Ÿ’‡๐Ÿพ"; + inline constexpr const char haircut_tone4[] = "๐Ÿ’‡๐Ÿพ"; + inline constexpr const char person_getting_haircut_tone5[] = "๐Ÿ’‡๐Ÿฟ"; + inline constexpr const char haircut_tone5[] = "๐Ÿ’‡๐Ÿฟ"; + inline constexpr const char woman_getting_haircut[] = "๐Ÿ’‡โ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_tone1[] = "๐Ÿ’‡๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_light_skin_tone[] = "๐Ÿ’‡๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_tone2[] = "๐Ÿ’‡๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_medium_light_skin_tone[] = "๐Ÿ’‡๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_tone3[] = "๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_medium_skin_tone[] = "๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_tone4[] = "๐Ÿ’‡๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_medium_dark_skin_tone[] = "๐Ÿ’‡๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_tone5[] = "๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_getting_haircut_dark_skin_tone[] = "๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_getting_haircut[] = "๐Ÿ’‡โ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_tone1[] = "๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_light_skin_tone[] = "๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_tone2[] = "๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_medium_light_skin_tone[] = "๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_tone3[] = "๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_medium_skin_tone[] = "๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_tone4[] = "๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_medium_dark_skin_tone[] = "๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_tone5[] = "๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_getting_haircut_dark_skin_tone[] = "๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_getting_massage[] = "๐Ÿ’†"; + inline constexpr const char massage[] = "๐Ÿ’†"; + inline constexpr const char person_getting_massage_tone1[] = "๐Ÿ’†๐Ÿป"; + inline constexpr const char massage_tone1[] = "๐Ÿ’†๐Ÿป"; + inline constexpr const char person_getting_massage_tone2[] = "๐Ÿ’†๐Ÿผ"; + inline constexpr const char massage_tone2[] = "๐Ÿ’†๐Ÿผ"; + inline constexpr const char person_getting_massage_tone3[] = "๐Ÿ’†๐Ÿฝ"; + inline constexpr const char massage_tone3[] = "๐Ÿ’†๐Ÿฝ"; + inline constexpr const char person_getting_massage_tone4[] = "๐Ÿ’†๐Ÿพ"; + inline constexpr const char massage_tone4[] = "๐Ÿ’†๐Ÿพ"; + inline constexpr const char person_getting_massage_tone5[] = "๐Ÿ’†๐Ÿฟ"; + inline constexpr const char massage_tone5[] = "๐Ÿ’†๐Ÿฟ"; + inline constexpr const char woman_getting_face_massage[] = "๐Ÿ’†โ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_tone1[] = "๐Ÿ’†๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_light_skin_tone[] = "๐Ÿ’†๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_tone2[] = "๐Ÿ’†๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_medium_light_skin_tone[] = "๐Ÿ’†๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_tone3[] = "๐Ÿ’†๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_medium_skin_tone[] = "๐Ÿ’†๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_tone4[] = "๐Ÿ’†๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_medium_dark_skin_tone[] = "๐Ÿ’†๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_tone5[] = "๐Ÿ’†๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_getting_face_massage_dark_skin_tone[] = "๐Ÿ’†๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_getting_face_massage[] = "๐Ÿ’†โ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_tone1[] = "๐Ÿ’†๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_light_skin_tone[] = "๐Ÿ’†๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_tone2[] = "๐Ÿ’†๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_medium_light_skin_tone[] = "๐Ÿ’†๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_tone3[] = "๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_medium_skin_tone[] = "๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_tone4[] = "๐Ÿ’†๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_medium_dark_skin_tone[] = "๐Ÿ’†๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_tone5[] = "๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_getting_face_massage_dark_skin_tone[] = "๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_in_steamy_room[] = "๐Ÿง–"; + inline constexpr const char person_in_steamy_room_tone1[] = "๐Ÿง–๐Ÿป"; + inline constexpr const char person_in_steamy_room_light_skin_tone[] = "๐Ÿง–๐Ÿป"; + inline constexpr const char person_in_steamy_room_tone2[] = "๐Ÿง–๐Ÿผ"; + inline constexpr const char person_in_steamy_room_medium_light_skin_tone[] = "๐Ÿง–๐Ÿผ"; + inline constexpr const char person_in_steamy_room_tone3[] = "๐Ÿง–๐Ÿฝ"; + inline constexpr const char person_in_steamy_room_medium_skin_tone[] = "๐Ÿง–๐Ÿฝ"; + inline constexpr const char person_in_steamy_room_tone4[] = "๐Ÿง–๐Ÿพ"; + inline constexpr const char person_in_steamy_room_medium_dark_skin_tone[] = "๐Ÿง–๐Ÿพ"; + inline constexpr const char person_in_steamy_room_tone5[] = "๐Ÿง–๐Ÿฟ"; + inline constexpr const char person_in_steamy_room_dark_skin_tone[] = "๐Ÿง–๐Ÿฟ"; + inline constexpr const char woman_in_steamy_room[] = "๐Ÿง–โ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_tone1[] = "๐Ÿง–๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_light_skin_tone[] = "๐Ÿง–๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_tone2[] = "๐Ÿง–๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_medium_light_skin_tone[] = "๐Ÿง–๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_tone3[] = "๐Ÿง–๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_medium_skin_tone[] = "๐Ÿง–๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_tone4[] = "๐Ÿง–๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_medium_dark_skin_tone[] = "๐Ÿง–๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_tone5[] = "๐Ÿง–๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_in_steamy_room_dark_skin_tone[] = "๐Ÿง–๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_in_steamy_room[] = "๐Ÿง–โ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_tone1[] = "๐Ÿง–๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_light_skin_tone[] = "๐Ÿง–๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_tone2[] = "๐Ÿง–๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_medium_light_skin_tone[] = "๐Ÿง–๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_tone3[] = "๐Ÿง–๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_medium_skin_tone[] = "๐Ÿง–๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_tone4[] = "๐Ÿง–๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_medium_dark_skin_tone[] = "๐Ÿง–๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_tone5[] = "๐Ÿง–๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_in_steamy_room_dark_skin_tone[] = "๐Ÿง–๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char nail_care[] = "๐Ÿ’…"; + inline constexpr const char nail_polish[] = "๐Ÿ’…"; + inline constexpr const char nail_care_tone1[] = "๐Ÿ’…๐Ÿป"; + inline constexpr const char nail_care_tone2[] = "๐Ÿ’…๐Ÿผ"; + inline constexpr const char nail_care_tone3[] = "๐Ÿ’…๐Ÿฝ"; + inline constexpr const char nail_care_tone4[] = "๐Ÿ’…๐Ÿพ"; + inline constexpr const char nail_care_tone5[] = "๐Ÿ’…๐Ÿฟ"; + inline constexpr const char selfie[] = "๐Ÿคณ"; + inline constexpr const char selfie_tone1[] = "๐Ÿคณ๐Ÿป"; + inline constexpr const char selfie_tone2[] = "๐Ÿคณ๐Ÿผ"; + inline constexpr const char selfie_tone3[] = "๐Ÿคณ๐Ÿฝ"; + inline constexpr const char selfie_tone4[] = "๐Ÿคณ๐Ÿพ"; + inline constexpr const char selfie_tone5[] = "๐Ÿคณ๐Ÿฟ"; + inline constexpr const char dancer[] = "๐Ÿ’ƒ"; + inline constexpr const char woman_dancing[] = "๐Ÿ’ƒ"; + inline constexpr const char dancer_tone1[] = "๐Ÿ’ƒ๐Ÿป"; + inline constexpr const char dancer_tone2[] = "๐Ÿ’ƒ๐Ÿผ"; + inline constexpr const char dancer_tone3[] = "๐Ÿ’ƒ๐Ÿฝ"; + inline constexpr const char dancer_tone4[] = "๐Ÿ’ƒ๐Ÿพ"; + inline constexpr const char dancer_tone5[] = "๐Ÿ’ƒ๐Ÿฟ"; + inline constexpr const char man_dancing[] = "๐Ÿ•บ"; + inline constexpr const char male_dancer[] = "๐Ÿ•บ"; + inline constexpr const char man_dancing_tone1[] = "๐Ÿ•บ๐Ÿป"; + inline constexpr const char male_dancer_tone1[] = "๐Ÿ•บ๐Ÿป"; + inline constexpr const char man_dancing_tone2[] = "๐Ÿ•บ๐Ÿผ"; + inline constexpr const char male_dancer_tone2[] = "๐Ÿ•บ๐Ÿผ"; + inline constexpr const char man_dancing_tone3[] = "๐Ÿ•บ๐Ÿฝ"; + inline constexpr const char male_dancer_tone3[] = "๐Ÿ•บ๐Ÿฝ"; + inline constexpr const char man_dancing_tone5[] = "๐Ÿ•บ๐Ÿฟ"; + inline constexpr const char male_dancer_tone5[] = "๐Ÿ•บ๐Ÿฟ"; + inline constexpr const char man_dancing_tone4[] = "๐Ÿ•บ๐Ÿพ"; + inline constexpr const char male_dancer_tone4[] = "๐Ÿ•บ๐Ÿพ"; + inline constexpr const char people_with_bunny_ears_partying[] = "๐Ÿ‘ฏ"; + inline constexpr const char dancers[] = "๐Ÿ‘ฏ"; + inline constexpr const char women_with_bunny_ears_partying[] = "๐Ÿ‘ฏโ€โ™€๏ธ"; + inline constexpr const char men_with_bunny_ears_partying[] = "๐Ÿ‘ฏโ€โ™‚๏ธ"; + inline constexpr const char levitate[] = "๐Ÿ•ด๏ธ"; + inline constexpr const char man_in_business_suit_levitating[] = "๐Ÿ•ด๏ธ"; + inline constexpr const char levitate_tone1[] = "๐Ÿ•ด๐Ÿป"; + inline constexpr const char man_in_business_suit_levitating_tone1[] = "๐Ÿ•ด๐Ÿป"; + inline constexpr const char man_in_business_suit_levitating_light_skin_tone[] = "๐Ÿ•ด๐Ÿป"; + inline constexpr const char levitate_tone2[] = "๐Ÿ•ด๐Ÿผ"; + inline constexpr const char man_in_business_suit_levitating_tone2[] = "๐Ÿ•ด๐Ÿผ"; + inline constexpr const char man_in_business_suit_levitating_medium_light_skin_tone[] = "๐Ÿ•ด๐Ÿผ"; + inline constexpr const char levitate_tone3[] = "๐Ÿ•ด๐Ÿฝ"; + inline constexpr const char man_in_business_suit_levitating_tone3[] = "๐Ÿ•ด๐Ÿฝ"; + inline constexpr const char man_in_business_suit_levitating_medium_skin_tone[] = "๐Ÿ•ด๐Ÿฝ"; + inline constexpr const char levitate_tone4[] = "๐Ÿ•ด๐Ÿพ"; + inline constexpr const char man_in_business_suit_levitating_tone4[] = "๐Ÿ•ด๐Ÿพ"; + inline constexpr const char man_in_business_suit_levitating_medium_dark_skin_tone[] = "๐Ÿ•ด๐Ÿพ"; + inline constexpr const char levitate_tone5[] = "๐Ÿ•ด๐Ÿฟ"; + inline constexpr const char man_in_business_suit_levitating_tone5[] = "๐Ÿ•ด๐Ÿฟ"; + inline constexpr const char man_in_business_suit_levitating_dark_skin_tone[] = "๐Ÿ•ด๐Ÿฟ"; + inline constexpr const char person_in_manual_wheelchair[] = "๐Ÿง‘โ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ"; + inline constexpr const char person_in_manual_wheelchair_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair[] = "๐Ÿ‘ฉโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ"; + inline constexpr const char woman_in_manual_wheelchair_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair[] = "๐Ÿ‘จโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ"; + inline constexpr const char man_in_manual_wheelchair_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ"; + inline constexpr const char person_in_motorized_wheelchair[] = "๐Ÿง‘โ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ"; + inline constexpr const char person_in_motorized_wheelchair_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair[] = "๐Ÿ‘ฉโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ"; + inline constexpr const char woman_in_motorized_wheelchair_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair[] = "๐Ÿ‘จโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ"; + inline constexpr const char man_in_motorized_wheelchair_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ"; + inline constexpr const char person_walking[] = "๐Ÿšถ"; + inline constexpr const char walking[] = "๐Ÿšถ"; + inline constexpr const char person_walking_tone1[] = "๐Ÿšถ๐Ÿป"; + inline constexpr const char walking_tone1[] = "๐Ÿšถ๐Ÿป"; + inline constexpr const char person_walking_tone2[] = "๐Ÿšถ๐Ÿผ"; + inline constexpr const char walking_tone2[] = "๐Ÿšถ๐Ÿผ"; + inline constexpr const char person_walking_tone3[] = "๐Ÿšถ๐Ÿฝ"; + inline constexpr const char walking_tone3[] = "๐Ÿšถ๐Ÿฝ"; + inline constexpr const char person_walking_tone4[] = "๐Ÿšถ๐Ÿพ"; + inline constexpr const char walking_tone4[] = "๐Ÿšถ๐Ÿพ"; + inline constexpr const char person_walking_tone5[] = "๐Ÿšถ๐Ÿฟ"; + inline constexpr const char walking_tone5[] = "๐Ÿšถ๐Ÿฟ"; + inline constexpr const char woman_walking[] = "๐Ÿšถโ€โ™€๏ธ"; + inline constexpr const char woman_walking_tone1[] = "๐Ÿšถ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_walking_light_skin_tone[] = "๐Ÿšถ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_walking_tone2[] = "๐Ÿšถ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_walking_medium_light_skin_tone[] = "๐Ÿšถ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_walking_tone3[] = "๐Ÿšถ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_walking_medium_skin_tone[] = "๐Ÿšถ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_walking_tone4[] = "๐Ÿšถ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_walking_medium_dark_skin_tone[] = "๐Ÿšถ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_walking_tone5[] = "๐Ÿšถ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_walking_dark_skin_tone[] = "๐Ÿšถ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_walking[] = "๐Ÿšถโ€โ™‚๏ธ"; + inline constexpr const char man_walking_tone1[] = "๐Ÿšถ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_walking_light_skin_tone[] = "๐Ÿšถ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_walking_tone2[] = "๐Ÿšถ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_walking_medium_light_skin_tone[] = "๐Ÿšถ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_walking_tone3[] = "๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_walking_medium_skin_tone[] = "๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_walking_tone4[] = "๐Ÿšถ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_walking_medium_dark_skin_tone[] = "๐Ÿšถ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_walking_tone5[] = "๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_walking_dark_skin_tone[] = "๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_with_probing_cane[] = "๐Ÿง‘โ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ"; + inline constexpr const char person_with_probing_cane_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane[] = "๐Ÿ‘ฉโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ"; + inline constexpr const char woman_with_probing_cane_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane[] = "๐Ÿ‘จโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_tone1[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_tone2[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_tone4[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ"; + inline constexpr const char man_with_probing_cane_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ"; + inline constexpr const char person_kneeling[] = "๐ŸงŽ"; + inline constexpr const char person_kneeling_tone1[] = "๐ŸงŽ๐Ÿป"; + inline constexpr const char person_kneeling_light_skin_tone[] = "๐ŸงŽ๐Ÿป"; + inline constexpr const char person_kneeling_tone2[] = "๐ŸงŽ๐Ÿผ"; + inline constexpr const char person_kneeling_medium_light_skin_tone[] = "๐ŸงŽ๐Ÿผ"; + inline constexpr const char person_kneeling_tone3[] = "๐ŸงŽ๐Ÿฝ"; + inline constexpr const char person_kneeling_medium_skin_tone[] = "๐ŸงŽ๐Ÿฝ"; + inline constexpr const char person_kneeling_tone4[] = "๐ŸงŽ๐Ÿพ"; + inline constexpr const char person_kneeling_medium_dark_skin_tone[] = "๐ŸงŽ๐Ÿพ"; + inline constexpr const char person_kneeling_tone5[] = "๐ŸงŽ๐Ÿฟ"; + inline constexpr const char person_kneeling_dark_skin_tone[] = "๐ŸงŽ๐Ÿฟ"; + inline constexpr const char woman_kneeling[] = "๐ŸงŽโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_tone1[] = "๐ŸงŽ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_light_skin_tone[] = "๐ŸงŽ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_tone2[] = "๐ŸงŽ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_medium_light_skin_tone[] = "๐ŸงŽ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_tone3[] = "๐ŸงŽ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_medium_skin_tone[] = "๐ŸงŽ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_tone4[] = "๐ŸงŽ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_medium_dark_skin_tone[] = "๐ŸงŽ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_tone5[] = "๐ŸงŽ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_kneeling_dark_skin_tone[] = "๐ŸงŽ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_kneeling[] = "๐ŸงŽโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_tone1[] = "๐ŸงŽ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_light_skin_tone[] = "๐ŸงŽ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_tone2[] = "๐ŸงŽ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_medium_light_skin_tone[] = "๐ŸงŽ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_tone3[] = "๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_medium_skin_tone[] = "๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_tone4[] = "๐ŸงŽ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_medium_dark_skin_tone[] = "๐ŸงŽ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_tone5[] = "๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_kneeling_dark_skin_tone[] = "๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_running[] = "๐Ÿƒ"; + inline constexpr const char runner[] = "๐Ÿƒ"; + inline constexpr const char person_running_tone1[] = "๐Ÿƒ๐Ÿป"; + inline constexpr const char runner_tone1[] = "๐Ÿƒ๐Ÿป"; + inline constexpr const char person_running_tone2[] = "๐Ÿƒ๐Ÿผ"; + inline constexpr const char runner_tone2[] = "๐Ÿƒ๐Ÿผ"; + inline constexpr const char person_running_tone3[] = "๐Ÿƒ๐Ÿฝ"; + inline constexpr const char runner_tone3[] = "๐Ÿƒ๐Ÿฝ"; + inline constexpr const char person_running_tone4[] = "๐Ÿƒ๐Ÿพ"; + inline constexpr const char runner_tone4[] = "๐Ÿƒ๐Ÿพ"; + inline constexpr const char person_running_tone5[] = "๐Ÿƒ๐Ÿฟ"; + inline constexpr const char runner_tone5[] = "๐Ÿƒ๐Ÿฟ"; + inline constexpr const char woman_running[] = "๐Ÿƒโ€โ™€๏ธ"; + inline constexpr const char woman_running_tone1[] = "๐Ÿƒ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_running_light_skin_tone[] = "๐Ÿƒ๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_running_tone2[] = "๐Ÿƒ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_running_medium_light_skin_tone[] = "๐Ÿƒ๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_running_tone3[] = "๐Ÿƒ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_running_medium_skin_tone[] = "๐Ÿƒ๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_running_tone4[] = "๐Ÿƒ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_running_medium_dark_skin_tone[] = "๐Ÿƒ๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_running_tone5[] = "๐Ÿƒ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_running_dark_skin_tone[] = "๐Ÿƒ๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_running[] = "๐Ÿƒโ€โ™‚๏ธ"; + inline constexpr const char man_running_tone1[] = "๐Ÿƒ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_running_light_skin_tone[] = "๐Ÿƒ๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_running_tone2[] = "๐Ÿƒ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_running_medium_light_skin_tone[] = "๐Ÿƒ๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_running_tone3[] = "๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_running_medium_skin_tone[] = "๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_running_tone4[] = "๐Ÿƒ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_running_medium_dark_skin_tone[] = "๐Ÿƒ๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_running_tone5[] = "๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_running_dark_skin_tone[] = "๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char person_standing[] = "๐Ÿง"; + inline constexpr const char person_standing_tone1[] = "๐Ÿง๐Ÿป"; + inline constexpr const char person_standing_light_skin_tone[] = "๐Ÿง๐Ÿป"; + inline constexpr const char person_standing_tone2[] = "๐Ÿง๐Ÿผ"; + inline constexpr const char person_standing_medium_light_skin_tone[] = "๐Ÿง๐Ÿผ"; + inline constexpr const char person_standing_tone3[] = "๐Ÿง๐Ÿฝ"; + inline constexpr const char person_standing_medium_skin_tone[] = "๐Ÿง๐Ÿฝ"; + inline constexpr const char person_standing_tone4[] = "๐Ÿง๐Ÿพ"; + inline constexpr const char person_standing_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพ"; + inline constexpr const char person_standing_tone5[] = "๐Ÿง๐Ÿฟ"; + inline constexpr const char person_standing_dark_skin_tone[] = "๐Ÿง๐Ÿฟ"; + inline constexpr const char woman_standing[] = "๐Ÿงโ€โ™€๏ธ"; + inline constexpr const char woman_standing_tone1[] = "๐Ÿง๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_standing_light_skin_tone[] = "๐Ÿง๐Ÿปโ€โ™€๏ธ"; + inline constexpr const char woman_standing_tone2[] = "๐Ÿง๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_standing_medium_light_skin_tone[] = "๐Ÿง๐Ÿผโ€โ™€๏ธ"; + inline constexpr const char woman_standing_tone3[] = "๐Ÿง๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_standing_medium_skin_tone[] = "๐Ÿง๐Ÿฝโ€โ™€๏ธ"; + inline constexpr const char woman_standing_tone4[] = "๐Ÿง๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_standing_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพโ€โ™€๏ธ"; + inline constexpr const char woman_standing_tone5[] = "๐Ÿง๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char woman_standing_dark_skin_tone[] = "๐Ÿง๐Ÿฟโ€โ™€๏ธ"; + inline constexpr const char man_standing[] = "๐Ÿงโ€โ™‚๏ธ"; + inline constexpr const char man_standing_tone1[] = "๐Ÿง๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_standing_light_skin_tone[] = "๐Ÿง๐Ÿปโ€โ™‚๏ธ"; + inline constexpr const char man_standing_tone2[] = "๐Ÿง๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_standing_medium_light_skin_tone[] = "๐Ÿง๐Ÿผโ€โ™‚๏ธ"; + inline constexpr const char man_standing_tone3[] = "๐Ÿง๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_standing_medium_skin_tone[] = "๐Ÿง๐Ÿฝโ€โ™‚๏ธ"; + inline constexpr const char man_standing_tone4[] = "๐Ÿง๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_standing_medium_dark_skin_tone[] = "๐Ÿง๐Ÿพโ€โ™‚๏ธ"; + inline constexpr const char man_standing_tone5[] = "๐Ÿง๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char man_standing_dark_skin_tone[] = "๐Ÿง๐Ÿฟโ€โ™‚๏ธ"; + inline constexpr const char people_holding_hands[] = "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘"; + inline constexpr const char people_holding_hands_tone1[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_tone1_tone2[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_light_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_tone1_tone3[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_light_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_tone1_tone4[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_tone1_tone5[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_light_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_tone2_tone1[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_medium_light_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_tone2[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_tone2_tone3[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_tone2_tone4[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_tone2_tone5[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_tone3_tone1[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_medium_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_tone3_tone2[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_tone3[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_medium_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_tone3_tone4[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_tone3_tone5[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_medium_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_tone4_tone1[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_tone4_tone2[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_tone4_tone3[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_tone4[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_tone4_tone5[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_tone5_tone1[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_dark_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char people_holding_hands_tone5_tone2[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char people_holding_hands_tone5_tone3[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_dark_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char people_holding_hands_tone5_tone4[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char people_holding_hands_tone5[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char people_holding_hands_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple[] = "๐Ÿ‘ซ"; + inline constexpr const char woman_and_man_holding_hands_tone1[] = "๐Ÿ‘ซ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_light_skin_tone[] = "๐Ÿ‘ซ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_tone1_tone2[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_tone1_tone3[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_tone1_tone4[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_tone1_tone5[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_tone2_tone1[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_tone2[] = "๐Ÿ‘ซ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_medium_light_skin_tone[] = "๐Ÿ‘ซ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_tone2_tone3[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_tone2_tone4[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_tone2_tone5[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_tone3_tone1[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_tone3_tone2[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_tone3[] = "๐Ÿ‘ซ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_medium_skin_tone[] = "๐Ÿ‘ซ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_tone3_tone4[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_tone3_tone5[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_tone4_tone1[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_tone4_tone2[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_tone4_tone3[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_tone4[] = "๐Ÿ‘ซ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_medium_dark_skin_tone[] = "๐Ÿ‘ซ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_tone4_tone5[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_tone5_tone1[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char woman_and_man_holding_hands_tone5_tone2[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char woman_and_man_holding_hands_tone5_tone3[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char woman_and_man_holding_hands_tone5_tone4[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char woman_and_man_holding_hands_tone5[] = "๐Ÿ‘ซ๐Ÿฟ"; + inline constexpr const char woman_and_man_holding_hands_dark_skin_tone[] = "๐Ÿ‘ซ๐Ÿฟ"; + inline constexpr const char two_women_holding_hands[] = "๐Ÿ‘ญ"; + inline constexpr const char women_holding_hands_tone1[] = "๐Ÿ‘ญ๐Ÿป"; + inline constexpr const char women_holding_hands_light_skin_tone[] = "๐Ÿ‘ญ๐Ÿป"; + inline constexpr const char women_holding_hands_tone1_tone2[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_tone1_tone3[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_tone1_tone4[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_tone1_tone5[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_tone2_tone1[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_tone2[] = "๐Ÿ‘ญ๐Ÿผ"; + inline constexpr const char women_holding_hands_medium_light_skin_tone[] = "๐Ÿ‘ญ๐Ÿผ"; + inline constexpr const char women_holding_hands_tone2_tone3[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_tone2_tone4[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_tone2_tone5[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_tone3_tone1[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_tone3_tone2[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_tone3[] = "๐Ÿ‘ญ๐Ÿฝ"; + inline constexpr const char women_holding_hands_medium_skin_tone[] = "๐Ÿ‘ญ๐Ÿฝ"; + inline constexpr const char women_holding_hands_tone3_tone4[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_tone3_tone5[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_tone4_tone1[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_tone4_tone2[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_tone4_tone3[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_tone4[] = "๐Ÿ‘ญ๐Ÿพ"; + inline constexpr const char women_holding_hands_medium_dark_skin_tone[] = "๐Ÿ‘ญ๐Ÿพ"; + inline constexpr const char women_holding_hands_tone4_tone5[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char women_holding_hands_tone5_tone1[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char women_holding_hands_tone5_tone2[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char women_holding_hands_tone5_tone3[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char women_holding_hands_tone5_tone4[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char women_holding_hands_tone5[] = "๐Ÿ‘ญ๐Ÿฟ"; + inline constexpr const char women_holding_hands_dark_skin_tone[] = "๐Ÿ‘ญ๐Ÿฟ"; + inline constexpr const char two_men_holding_hands[] = "๐Ÿ‘ฌ"; + inline constexpr const char men_holding_hands_tone1[] = "๐Ÿ‘ฌ๐Ÿป"; + inline constexpr const char men_holding_hands_light_skin_tone[] = "๐Ÿ‘ฌ๐Ÿป"; + inline constexpr const char men_holding_hands_tone1_tone2[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_tone1_tone3[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_tone1_tone4[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_tone1_tone5[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_tone2_tone1[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_tone2[] = "๐Ÿ‘ฌ๐Ÿผ"; + inline constexpr const char men_holding_hands_medium_light_skin_tone[] = "๐Ÿ‘ฌ๐Ÿผ"; + inline constexpr const char men_holding_hands_tone2_tone3[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_tone2_tone4[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_tone2_tone5[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_tone3_tone1[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_tone3_tone2[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_tone3[] = "๐Ÿ‘ฌ๐Ÿฝ"; + inline constexpr const char men_holding_hands_medium_skin_tone[] = "๐Ÿ‘ฌ๐Ÿฝ"; + inline constexpr const char men_holding_hands_tone3_tone4[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_tone3_tone5[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_tone4_tone1[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_tone4_tone2[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_tone4_tone3[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_tone4[] = "๐Ÿ‘ฌ๐Ÿพ"; + inline constexpr const char men_holding_hands_medium_dark_skin_tone[] = "๐Ÿ‘ฌ๐Ÿพ"; + inline constexpr const char men_holding_hands_tone4_tone5[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char men_holding_hands_tone5_tone1[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char men_holding_hands_tone5_tone2[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char men_holding_hands_tone5_tone3[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char men_holding_hands_tone5_tone4[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char men_holding_hands_tone5[] = "๐Ÿ‘ฌ๐Ÿฟ"; + inline constexpr const char men_holding_hands_dark_skin_tone[] = "๐Ÿ‘ฌ๐Ÿฟ"; + inline constexpr const char couple_with_heart[] = "๐Ÿ’‘"; + inline constexpr const char couple_with_heart_tone1[] = "๐Ÿ’‘๐Ÿป"; + inline constexpr const char couple_with_heart_light_skin_tone[] = "๐Ÿ’‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_tone1_tone2[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_light_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_tone1_tone3[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_light_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_tone1_tone4[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_tone1_tone5[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_light_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_tone2_tone1[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_medium_light_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_tone2[] = "๐Ÿ’‘๐Ÿผ"; + inline constexpr const char couple_with_heart_medium_light_skin_tone[] = "๐Ÿ’‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_tone2_tone3[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_tone2_tone4[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_tone2_tone5[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_tone3_tone1[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_medium_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_tone3_tone2[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_tone3[] = "๐Ÿ’‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_medium_skin_tone[] = "๐Ÿ’‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_tone3_tone4[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_tone3_tone5[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_medium_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_tone4_tone1[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_tone4_tone2[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_tone4_tone3[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_tone4[] = "๐Ÿ’‘๐Ÿพ"; + inline constexpr const char couple_with_heart_medium_dark_skin_tone[] = "๐Ÿ’‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_tone4_tone5[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_person_person_tone5_tone1[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_dark_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป"; + inline constexpr const char couple_with_heart_person_person_tone5_tone2[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char couple_with_heart_person_person_tone5_tone3[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_dark_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char couple_with_heart_person_person_tone5_tone4[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_person_person_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char couple_with_heart_tone5[] = "๐Ÿ’‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_dark_skin_tone[] = "๐Ÿ’‘๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man[] = "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ"; + inline constexpr const char couple_with_heart_woman_man_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_tone1_tone2[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_tone1_tone3[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_tone1_tone4[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_tone1_tone5[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_tone2_tone1[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_tone2_tone3[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_tone2_tone4[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_tone2_tone5[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_tone3_tone1[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_tone3_tone2[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_tone3_tone4[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_tone3_tone5[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_tone4_tone1[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_tone4_tone2[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_tone4_tone3[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_tone4_tone5[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_tone5_tone1[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_man_tone5_tone2[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_man_tone5_tone3[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_man_tone5_tone4[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_man_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_man_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_ww[] = "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ"; + inline constexpr const char couple_with_heart_ww[] = "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ"; + inline constexpr const char couple_with_heart_woman_woman_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_tone1_tone2[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_tone1_tone3[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_tone1_tone4[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_tone1_tone5[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_tone2_tone1[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_tone2_tone3[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_tone2_tone4[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_tone2_tone5[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_tone3_tone1[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_tone3_tone2[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_tone3_tone4[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_tone3_tone5[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_tone4_tone1[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_tone4_tone2[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_tone4_tone3[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_tone4_tone5[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_tone5_tone1[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char couple_with_heart_woman_woman_tone5_tone2[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char couple_with_heart_woman_woman_tone5_tone3[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char couple_with_heart_woman_woman_tone5_tone4[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char couple_with_heart_woman_woman_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_with_heart_woman_woman_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char couple_mm[] = "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ"; + inline constexpr const char couple_with_heart_mm[] = "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ"; + inline constexpr const char couple_with_heart_man_man_tone1[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_tone1_tone2[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_tone1_tone3[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_tone1_tone4[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_tone1_tone5[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_tone2_tone1[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_tone2[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_tone2_tone3[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_tone2_tone4[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_tone2_tone5[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_tone3_tone1[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_tone3_tone2[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_tone3_tone4[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_tone3_tone5[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_tone4_tone1[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_tone4_tone2[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_tone4_tone3[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_tone4[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_tone4_tone5[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_tone5_tone1[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char couple_with_heart_man_man_tone5_tone2[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char couple_with_heart_man_man_tone5_tone3[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char couple_with_heart_man_man_tone5_tone4[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char couple_with_heart_man_man_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couple_with_heart_man_man_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char couplekiss[] = "๐Ÿ’"; + inline constexpr const char kiss_tone1[] = "๐Ÿ’๐Ÿป"; + inline constexpr const char kiss_light_skin_tone[] = "๐Ÿ’๐Ÿป"; + inline constexpr const char kiss_person_person_tone1_tone2[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_light_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_tone1_tone3[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_light_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_tone1_tone4[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_tone1_tone5[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_light_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_tone2_tone1[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_medium_light_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_tone2[] = "๐Ÿ’๐Ÿผ"; + inline constexpr const char kiss_medium_light_skin_tone[] = "๐Ÿ’๐Ÿผ"; + inline constexpr const char kiss_person_person_tone2_tone3[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_tone2_tone4[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_tone2_tone5[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_tone3_tone1[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_medium_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_tone3_tone2[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_tone3[] = "๐Ÿ’๐Ÿฝ"; + inline constexpr const char kiss_medium_skin_tone[] = "๐Ÿ’๐Ÿฝ"; + inline constexpr const char kiss_person_person_tone3_tone4[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_tone3_tone5[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_medium_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_tone4_tone1[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_tone4_tone2[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_tone4_tone3[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_tone4[] = "๐Ÿ’๐Ÿพ"; + inline constexpr const char kiss_medium_dark_skin_tone[] = "๐Ÿ’๐Ÿพ"; + inline constexpr const char kiss_person_person_tone4_tone5[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ"; + inline constexpr const char kiss_person_person_tone5_tone1[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_dark_skin_tone_light_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป"; + inline constexpr const char kiss_person_person_tone5_tone2[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ"; + inline constexpr const char kiss_person_person_tone5_tone3[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_dark_skin_tone_medium_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ"; + inline constexpr const char kiss_person_person_tone5_tone4[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_person_person_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ"; + inline constexpr const char kiss_tone5[] = "๐Ÿ’๐Ÿฟ"; + inline constexpr const char kiss_dark_skin_tone[] = "๐Ÿ’๐Ÿฟ"; + inline constexpr const char kiss_woman_man[] = "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"; + inline constexpr const char kiss_woman_man_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_tone1_tone2[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_tone1_tone3[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_tone1_tone4[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_tone1_tone5[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_tone2_tone1[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_tone2_tone3[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_tone2_tone4[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_tone2_tone5[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_tone3_tone1[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_tone3_tone2[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_tone3_tone4[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_tone3_tone5[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_tone4_tone1[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_tone4_tone2[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_tone4_tone3[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_tone4_tone5[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_tone5_tone1[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_woman_man_tone5_tone2[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_woman_man_tone5_tone3[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_woman_man_tone5_tone4[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_woman_man_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_woman_man_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_ww[] = "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ"; + inline constexpr const char couplekiss_ww[] = "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ"; + inline constexpr const char kiss_woman_woman_tone1[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_tone1_tone2[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_tone1_tone3[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_tone1_tone4[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_tone1_tone5[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_tone2_tone1[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_tone2[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_tone2_tone3[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_tone2_tone4[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_tone2_tone5[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_tone3_tone1[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_tone3_tone2[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_tone3[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_tone3_tone4[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_tone3_tone5[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_tone4_tone1[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_tone4_tone2[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_tone4_tone3[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_tone4[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_tone4_tone5[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_tone5_tone1[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป"; + inline constexpr const char kiss_woman_woman_tone5_tone2[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ"; + inline constexpr const char kiss_woman_woman_tone5_tone3[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ"; + inline constexpr const char kiss_woman_woman_tone5_tone4[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ"; + inline constexpr const char kiss_woman_woman_tone5[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_woman_woman_dark_skin_tone[] = "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ"; + inline constexpr const char kiss_mm[] = "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"; + inline constexpr const char couplekiss_mm[] = "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"; + inline constexpr const char kiss_man_man[] = "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"; + inline constexpr const char kiss_man_man_tone1[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_tone1_tone2[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_light_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_tone1_tone3[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_tone1_tone4[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_tone1_tone5[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_tone2_tone1[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_medium_light_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_tone2[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_tone2_tone3[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_medium_light_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_tone2_tone4[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_medium_light_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_tone2_tone5[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_medium_light_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_tone3_tone1[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_medium_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_tone3_tone2[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_medium_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_tone3[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_tone3_tone4[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_medium_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_tone3_tone5[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_medium_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_tone4_tone1[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_medium_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_tone4_tone2[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_medium_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_tone4_tone3[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_medium_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_tone4[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_tone4_tone5[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_medium_dark_skin_tone_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_tone5_tone1[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_dark_skin_tone_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป"; + inline constexpr const char kiss_man_man_tone5_tone2[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_dark_skin_tone_medium_light_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ"; + inline constexpr const char kiss_man_man_tone5_tone3[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_dark_skin_tone_medium_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ"; + inline constexpr const char kiss_man_man_tone5_tone4[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_dark_skin_tone_medium_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ"; + inline constexpr const char kiss_man_man_tone5[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char kiss_man_man_dark_skin_tone[] = "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ"; + inline constexpr const char family[] = "๐Ÿ‘ช"; + inline constexpr const char family_man_woman_boy[] = "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ"; + inline constexpr const char family_mwg[] = "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง"; + inline constexpr const char family_mwgb[] = "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"; + inline constexpr const char family_mwbb[] = "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"; + inline constexpr const char family_mwgg[] = "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"; + inline constexpr const char family_wwb[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ"; + inline constexpr const char family_wwg[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง"; + inline constexpr const char family_wwgb[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"; + inline constexpr const char family_wwbb[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"; + inline constexpr const char family_wwgg[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"; + inline constexpr const char family_mmb[] = "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ"; + inline constexpr const char family_mmg[] = "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง"; + inline constexpr const char family_mmgb[] = "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"; + inline constexpr const char family_mmbb[] = "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"; + inline constexpr const char family_mmgg[] = "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง"; + inline constexpr const char family_woman_boy[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฆ"; + inline constexpr const char family_woman_girl[] = "๐Ÿ‘ฉโ€๐Ÿ‘ง"; + inline constexpr const char family_woman_girl_boy[] = "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"; + inline constexpr const char family_woman_boy_boy[] = "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"; + inline constexpr const char family_woman_girl_girl[] = "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"; + inline constexpr const char family_man_boy[] = "๐Ÿ‘จโ€๐Ÿ‘ฆ"; + inline constexpr const char family_man_girl[] = "๐Ÿ‘จโ€๐Ÿ‘ง"; + inline constexpr const char family_man_girl_boy[] = "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"; + inline constexpr const char family_man_boy_boy[] = "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"; + inline constexpr const char family_man_girl_girl[] = "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง"; + inline constexpr const char knot[] = "๐Ÿชข"; + inline constexpr const char yarn[] = "๐Ÿงถ"; + inline constexpr const char thread[] = "๐Ÿงต"; + inline constexpr const char sewing_needle[] = "๐Ÿชก"; + inline constexpr const char coat[] = "๐Ÿงฅ"; + inline constexpr const char lab_coat[] = "๐Ÿฅผ"; + inline constexpr const char safety_vest[] = "๐Ÿฆบ"; + inline constexpr const char womans_clothes[] = "๐Ÿ‘š"; + inline constexpr const char shirt[] = "๐Ÿ‘•"; + inline constexpr const char t_shirt[] = "๐Ÿ‘•"; + inline constexpr const char jeans[] = "๐Ÿ‘–"; + inline constexpr const char briefs[] = "๐Ÿฉฒ"; + inline constexpr const char shorts[] = "๐Ÿฉณ"; + inline constexpr const char necktie[] = "๐Ÿ‘”"; + inline constexpr const char dress[] = "๐Ÿ‘—"; + inline constexpr const char bikini[] = "๐Ÿ‘™"; + inline constexpr const char one_piece_swimsuit[] = "๐Ÿฉฑ"; + inline constexpr const char kimono[] = "๐Ÿ‘˜"; + inline constexpr const char sari[] = "๐Ÿฅป"; + inline constexpr const char thong_sandal[] = "๐Ÿฉด"; + inline constexpr const char womans_flat_shoe[] = "๐Ÿฅฟ"; + inline constexpr const char flat_shoe[] = "๐Ÿฅฟ"; + inline constexpr const char high_heel[] = "๐Ÿ‘ "; + inline constexpr const char sandal[] = "๐Ÿ‘ก"; + inline constexpr const char womans_sandal[] = "๐Ÿ‘ก"; + inline constexpr const char boot[] = "๐Ÿ‘ข"; + inline constexpr const char womans_boot[] = "๐Ÿ‘ข"; + inline constexpr const char mans_shoe[] = "๐Ÿ‘ž"; + inline constexpr const char athletic_shoe[] = "๐Ÿ‘Ÿ"; + inline constexpr const char running_shoe[] = "๐Ÿ‘Ÿ"; + inline constexpr const char hiking_boot[] = "๐Ÿฅพ"; + inline constexpr const char socks[] = "๐Ÿงฆ"; + inline constexpr const char gloves[] = "๐Ÿงค"; + inline constexpr const char scarf[] = "๐Ÿงฃ"; + inline constexpr const char tophat[] = "๐ŸŽฉ"; + inline constexpr const char top_hat[] = "๐ŸŽฉ"; + inline constexpr const char billed_cap[] = "๐Ÿงข"; + inline constexpr const char womans_hat[] = "๐Ÿ‘’"; + inline constexpr const char mortar_board[] = "๐ŸŽ“"; + inline constexpr const char helmet_with_cross[] = "โ›‘๏ธ"; + inline constexpr const char helmet_with_white_cross[] = "โ›‘๏ธ"; + inline constexpr const char military_helmet[] = "๐Ÿช–"; + inline constexpr const char crown[] = "๐Ÿ‘‘"; + inline constexpr const char ring[] = "๐Ÿ’"; + inline constexpr const char pouch[] = "๐Ÿ‘"; + inline constexpr const char clutch_bag[] = "๐Ÿ‘"; + inline constexpr const char purse[] = "๐Ÿ‘›"; + inline constexpr const char handbag[] = "๐Ÿ‘œ"; + inline constexpr const char briefcase[] = "๐Ÿ’ผ"; + inline constexpr const char school_satchel[] = "๐ŸŽ’"; + inline constexpr const char backpack[] = "๐ŸŽ’"; + inline constexpr const char luggage[] = "๐Ÿงณ"; + inline constexpr const char eyeglasses[] = "๐Ÿ‘“"; + inline constexpr const char glasses[] = "๐Ÿ‘“"; + inline constexpr const char dark_sunglasses[] = "๐Ÿ•ถ๏ธ"; + inline constexpr const char goggles[] = "๐Ÿฅฝ"; + inline constexpr const char closed_umbrella[] = "๐ŸŒ‚"; + inline constexpr const char pink_heart[] = "๐Ÿฉท"; + inline constexpr const char heart[] = "โค๏ธ"; + inline constexpr const char red_heart[] = "โค๏ธ"; + inline constexpr const char orange_heart[] = "๐Ÿงก"; + inline constexpr const char yellow_heart[] = "๐Ÿ’›"; + inline constexpr const char green_heart[] = "๐Ÿ’š"; + inline constexpr const char light_blue_heart[] = "๐Ÿฉต"; + inline constexpr const char blue_heart[] = "๐Ÿ’™"; + inline constexpr const char purple_heart[] = "๐Ÿ’œ"; + inline constexpr const char black_heart[] = "๐Ÿ–ค"; + inline constexpr const char grey_heart[] = "๐Ÿฉถ"; + inline constexpr const char white_heart[] = "๐Ÿค"; + inline constexpr const char brown_heart[] = "๐ŸคŽ"; + inline constexpr const char broken_heart[] = "๐Ÿ’”"; + inline constexpr const char heart_exclamation[] = "โฃ๏ธ"; + inline constexpr const char heavy_heart_exclamation_mark_ornament[] = "โฃ๏ธ"; + inline constexpr const char two_hearts[] = "๐Ÿ’•"; + inline constexpr const char revolving_hearts[] = "๐Ÿ’ž"; + inline constexpr const char heartbeat[] = "๐Ÿ’“"; + inline constexpr const char beating_heart[] = "๐Ÿ’“"; + inline constexpr const char heartpulse[] = "๐Ÿ’—"; + inline constexpr const char growing_heart[] = "๐Ÿ’—"; + inline constexpr const char sparkling_heart[] = "๐Ÿ’–"; + inline constexpr const char cupid[] = "๐Ÿ’˜"; + inline constexpr const char gift_heart[] = "๐Ÿ’"; + inline constexpr const char mending_heart[] = "โค๏ธโ€๐Ÿฉน"; + inline constexpr const char heart_on_fire[] = "โค๏ธโ€๐Ÿ”ฅ"; + inline constexpr const char heart_decoration[] = "๐Ÿ’Ÿ"; + inline constexpr const char peace[] = "โ˜ฎ๏ธ"; + inline constexpr const char peace_symbol[] = "โ˜ฎ๏ธ"; + inline constexpr const char cross[] = "โœ๏ธ"; + inline constexpr const char latin_cross[] = "โœ๏ธ"; + inline constexpr const char star_and_crescent[] = "โ˜ช๏ธ"; + inline constexpr const char om_symbol[] = "๐Ÿ•‰๏ธ"; + inline constexpr const char wheel_of_dharma[] = "โ˜ธ๏ธ"; + inline constexpr const char khanda[] = "๐Ÿชฏ"; + inline constexpr const char star_of_david[] = "โœก๏ธ"; + inline constexpr const char six_pointed_star[] = "๐Ÿ”ฏ"; + inline constexpr const char menorah[] = "๐Ÿ•Ž"; + inline constexpr const char yin_yang[] = "โ˜ฏ๏ธ"; + inline constexpr const char orthodox_cross[] = "โ˜ฆ๏ธ"; + inline constexpr const char place_of_worship[] = "๐Ÿ›"; + inline constexpr const char worship_symbol[] = "๐Ÿ›"; + inline constexpr const char ophiuchus[] = "โ›Ž"; + inline constexpr const char aries[] = "โ™ˆ"; + inline constexpr const char taurus[] = "โ™‰"; + inline constexpr const char gemini[] = "โ™Š"; + inline constexpr const char cancer[] = "โ™‹"; + inline constexpr const char leo[] = "โ™Œ"; + inline constexpr const char virgo[] = "โ™"; + inline constexpr const char libra[] = "โ™Ž"; + inline constexpr const char scorpius[] = "โ™"; + inline constexpr const char scorpio[] = "โ™"; + inline constexpr const char sagittarius[] = "โ™"; + inline constexpr const char capricorn[] = "โ™‘"; + inline constexpr const char aquarius[] = "โ™’"; + inline constexpr const char pisces[] = "โ™“"; + inline constexpr const char id[] = "๐Ÿ†”"; + inline constexpr const char atom[] = "โš›๏ธ"; + inline constexpr const char atom_symbol[] = "โš›๏ธ"; + inline constexpr const char accept[] = "๐Ÿ‰‘"; + inline constexpr const char radioactive[] = "โ˜ข๏ธ"; + inline constexpr const char radioactive_sign[] = "โ˜ข๏ธ"; + inline constexpr const char biohazard[] = "โ˜ฃ๏ธ"; + inline constexpr const char biohazard_sign[] = "โ˜ฃ๏ธ"; + inline constexpr const char mobile_phone_off[] = "๐Ÿ“ด"; + inline constexpr const char vibration_mode[] = "๐Ÿ“ณ"; + inline constexpr const char u6709[] = "๐Ÿˆถ"; + inline constexpr const char u7121[] = "๐Ÿˆš"; + inline constexpr const char u7533[] = "๐Ÿˆธ"; + inline constexpr const char u55b6[] = "๐Ÿˆบ"; + inline constexpr const char u6708[] = "๐Ÿˆท๏ธ"; + inline constexpr const char eight_pointed_black_star[] = "โœด๏ธ"; + inline constexpr const char vs[] = "๐Ÿ†š"; + inline constexpr const char white_flower[] = "๐Ÿ’ฎ"; + inline constexpr const char ideograph_advantage[] = "๐Ÿ‰"; + inline constexpr const char secret[] = "ใŠ™๏ธ"; + inline constexpr const char congratulations[] = "ใŠ—๏ธ"; + inline constexpr const char u5408[] = "๐Ÿˆด"; + inline constexpr const char u6e80[] = "๐Ÿˆต"; + inline constexpr const char u5272[] = "๐Ÿˆน"; + inline constexpr const char u7981[] = "๐Ÿˆฒ"; + inline constexpr const char a[] = "๐Ÿ…ฐ๏ธ"; + inline constexpr const char b[] = "๐Ÿ…ฑ๏ธ"; + inline constexpr const char ab[] = "๐Ÿ†Ž"; + inline constexpr const char cl[] = "๐Ÿ†‘"; + inline constexpr const char o2[] = "๐Ÿ…พ๏ธ"; + inline constexpr const char sos[] = "๐Ÿ†˜"; + inline constexpr const char x[] = "โŒ"; + inline constexpr const char cross_mark[] = "โŒ"; + inline constexpr const char o[] = "โญ•"; + inline constexpr const char octagonal_sign[] = "๐Ÿ›‘"; + inline constexpr const char stop_sign[] = "๐Ÿ›‘"; + inline constexpr const char no_entry[] = "โ›”"; + inline constexpr const char name_badge[] = "๐Ÿ“›"; + inline constexpr const char no_entry_sign[] = "๐Ÿšซ"; + inline constexpr const char prohibited[] = "๐Ÿšซ"; + inline constexpr const char anger[] = "๐Ÿ’ข"; + inline constexpr const char hotsprings[] = "โ™จ๏ธ"; + inline constexpr const char hot_springs[] = "โ™จ๏ธ"; + inline constexpr const char no_pedestrians[] = "๐Ÿšท"; + inline constexpr const char do_not_litter[] = "๐Ÿšฏ"; + inline constexpr const char no_littering[] = "๐Ÿšฏ"; + inline constexpr const char no_bicycles[] = "๐Ÿšณ"; + inline constexpr const char non_potable_water[] = "๐Ÿšฑ"; + inline constexpr const char underage[] = "๐Ÿ”ž"; + inline constexpr const char no_mobile_phones[] = "๐Ÿ“ต"; + inline constexpr const char no_smoking[] = "๐Ÿšญ"; + inline constexpr const char exclamation[] = "โ—"; + inline constexpr const char grey_exclamation[] = "โ•"; + inline constexpr const char question[] = "โ“"; + inline constexpr const char question_mark[] = "โ“"; + inline constexpr const char grey_question[] = "โ”"; + inline constexpr const char bangbang[] = "โ€ผ๏ธ"; + inline constexpr const char interrobang[] = "โ‰๏ธ"; + inline constexpr const char low_brightness[] = "๐Ÿ”…"; + inline constexpr const char high_brightness[] = "๐Ÿ”†"; + inline constexpr const char part_alternation_mark[] = "ใ€ฝ๏ธ"; + inline constexpr const char warning[] = "โš ๏ธ"; + inline constexpr const char children_crossing[] = "๐Ÿšธ"; + inline constexpr const char trident[] = "๐Ÿ”ฑ"; + inline constexpr const char fleur_de_lis[] = "โšœ๏ธ"; + inline constexpr const char beginner[] = "๐Ÿ”ฐ"; + inline constexpr const char recycle[] = "โ™ป๏ธ"; + inline constexpr const char white_check_mark[] = "โœ…"; + inline constexpr const char u6307[] = "๐Ÿˆฏ"; + inline constexpr const char chart[] = "๐Ÿ’น"; + inline constexpr const char sparkle[] = "โ‡๏ธ"; + inline constexpr const char eight_spoked_asterisk[] = "โœณ๏ธ"; + inline constexpr const char negative_squared_cross_mark[] = "โŽ"; + inline constexpr const char globe_with_meridians[] = "๐ŸŒ"; + inline constexpr const char diamond_shape_with_a_dot_inside[] = "๐Ÿ’ "; + inline constexpr const char m[] = "โ“‚๏ธ"; + inline constexpr const char circled_m[] = "โ“‚๏ธ"; + inline constexpr const char cyclone[] = "๐ŸŒ€"; + inline constexpr const char zzz[] = "๐Ÿ’ค"; + inline constexpr const char atm[] = "๐Ÿง"; + inline constexpr const char wc[] = "๐Ÿšพ"; + inline constexpr const char water_closet[] = "๐Ÿšพ"; + inline constexpr const char wheelchair[] = "โ™ฟ"; + inline constexpr const char parking[] = "๐Ÿ…ฟ๏ธ"; + inline constexpr const char elevator[] = "๐Ÿ›—"; + inline constexpr const char u7a7a[] = "๐Ÿˆณ"; + inline constexpr const char sa[] = "๐Ÿˆ‚๏ธ"; + inline constexpr const char passport_control[] = "๐Ÿ›‚"; + inline constexpr const char customs[] = "๐Ÿ›ƒ"; + inline constexpr const char baggage_claim[] = "๐Ÿ›„"; + inline constexpr const char left_luggage[] = "๐Ÿ›…"; + inline constexpr const char wireless[] = "๐Ÿ›œ"; + inline constexpr const char mens[] = "๐Ÿšน"; + inline constexpr const char mens_room[] = "๐Ÿšน"; + inline constexpr const char womens[] = "๐Ÿšบ"; + inline constexpr const char womens_room[] = "๐Ÿšบ"; + inline constexpr const char baby_symbol[] = "๐Ÿšผ"; + inline constexpr const char restroom[] = "๐Ÿšป"; + inline constexpr const char put_litter_in_its_place[] = "๐Ÿšฎ"; + inline constexpr const char cinema[] = "๐ŸŽฆ"; + inline constexpr const char signal_strength[] = "๐Ÿ“ถ"; + inline constexpr const char antenna_bars[] = "๐Ÿ“ถ"; + inline constexpr const char koko[] = "๐Ÿˆ"; + inline constexpr const char symbols[] = "๐Ÿ”ฃ"; + inline constexpr const char input_symbols[] = "๐Ÿ”ฃ"; + inline constexpr const char information_source[] = "โ„น๏ธ"; + inline constexpr const char information[] = "โ„น๏ธ"; + inline constexpr const char abc[] = "๐Ÿ”ค"; + inline constexpr const char abcd[] = "๐Ÿ”ก"; + inline constexpr const char capital_abcd[] = "๐Ÿ” "; + inline constexpr const char ng[] = "๐Ÿ†–"; + inline constexpr const char ok[] = "๐Ÿ†—"; + inline constexpr const char up[] = "๐Ÿ†™"; + inline constexpr const char cool[] = "๐Ÿ†’"; + inline constexpr const char _new[] = "๐Ÿ†•"; + inline constexpr const char free[] = "๐Ÿ†“"; + inline constexpr const char zero[] = "0๏ธโƒฃ"; + inline constexpr const char one[] = "1๏ธโƒฃ"; + inline constexpr const char two[] = "2๏ธโƒฃ"; + inline constexpr const char three[] = "3๏ธโƒฃ"; + inline constexpr const char four[] = "4๏ธโƒฃ"; + inline constexpr const char five[] = "5๏ธโƒฃ"; + inline constexpr const char six[] = "6๏ธโƒฃ"; + inline constexpr const char seven[] = "7๏ธโƒฃ"; + inline constexpr const char eight[] = "8๏ธโƒฃ"; + inline constexpr const char nine[] = "9๏ธโƒฃ"; + inline constexpr const char keycap_ten[] = "๐Ÿ”Ÿ"; + inline constexpr const char input_numbers[] = "๐Ÿ”ข"; + inline constexpr const char hash[] = "#๏ธโƒฃ"; + inline constexpr const char asterisk[] = "*๏ธโƒฃ"; + inline constexpr const char keycap_asterisk[] = "*๏ธโƒฃ"; + inline constexpr const char eject[] = "โ๏ธ"; + inline constexpr const char eject_symbol[] = "โ๏ธ"; + inline constexpr const char arrow_forward[] = "โ–ถ๏ธ"; + inline constexpr const char pause_button[] = "โธ๏ธ"; + inline constexpr const char double_vertical_bar[] = "โธ๏ธ"; + inline constexpr const char play_pause[] = "โฏ๏ธ"; + inline constexpr const char stop_button[] = "โน๏ธ"; + inline constexpr const char record_button[] = "โบ๏ธ"; + inline constexpr const char track_next[] = "โญ๏ธ"; + inline constexpr const char next_track[] = "โญ๏ธ"; + inline constexpr const char track_previous[] = "โฎ๏ธ"; + inline constexpr const char previous_track[] = "โฎ๏ธ"; + inline constexpr const char fast_forward[] = "โฉ"; + inline constexpr const char rewind[] = "โช"; + inline constexpr const char arrow_double_up[] = "โซ"; + inline constexpr const char arrow_double_down[] = "โฌ"; + inline constexpr const char arrow_backward[] = "โ—€๏ธ"; + inline constexpr const char arrow_up_small[] = "๐Ÿ”ผ"; + inline constexpr const char arrow_down_small[] = "๐Ÿ”ฝ"; + inline constexpr const char arrow_right[] = "โžก๏ธ"; + inline constexpr const char right_arrow[] = "โžก๏ธ"; + inline constexpr const char arrow_left[] = "โฌ…๏ธ"; + inline constexpr const char left_arrow[] = "โฌ…๏ธ"; + inline constexpr const char arrow_up[] = "โฌ†๏ธ"; + inline constexpr const char up_arrow[] = "โฌ†๏ธ"; + inline constexpr const char arrow_down[] = "โฌ‡๏ธ"; + inline constexpr const char down_arrow[] = "โฌ‡๏ธ"; + inline constexpr const char arrow_upper_right[] = "โ†—๏ธ"; + inline constexpr const char arrow_lower_right[] = "โ†˜๏ธ"; + inline constexpr const char arrow_lower_left[] = "โ†™๏ธ"; + inline constexpr const char arrow_upper_left[] = "โ†–๏ธ"; + inline constexpr const char up_left_arrow[] = "โ†–๏ธ"; + inline constexpr const char arrow_up_down[] = "โ†•๏ธ"; + inline constexpr const char up_down_arrow[] = "โ†•๏ธ"; + inline constexpr const char left_right_arrow[] = "โ†”๏ธ"; + inline constexpr const char arrow_right_hook[] = "โ†ช๏ธ"; + inline constexpr const char leftwards_arrow_with_hook[] = "โ†ฉ๏ธ"; + inline constexpr const char arrow_heading_up[] = "โคด๏ธ"; + inline constexpr const char arrow_heading_down[] = "โคต๏ธ"; + inline constexpr const char twisted_rightwards_arrows[] = "๐Ÿ”€"; + inline constexpr const char repeat[] = "๐Ÿ”"; + inline constexpr const char repeat_one[] = "๐Ÿ”‚"; + inline constexpr const char arrows_counterclockwise[] = "๐Ÿ”„"; + inline constexpr const char arrows_clockwise[] = "๐Ÿ”ƒ"; + inline constexpr const char musical_note[] = "๐ŸŽต"; + inline constexpr const char notes[] = "๐ŸŽถ"; + inline constexpr const char musical_notes[] = "๐ŸŽถ"; + inline constexpr const char heavy_plus_sign[] = "โž•"; + inline constexpr const char heavy_minus_sign[] = "โž–"; + inline constexpr const char heavy_division_sign[] = "โž—"; + inline constexpr const char heavy_multiplication_x[] = "โœ–๏ธ"; + inline constexpr const char heavy_equals_sign[] = "๐ŸŸฐ"; + inline constexpr const char infinity[] = "โ™พ๏ธ"; + inline constexpr const char heavy_dollar_sign[] = "๐Ÿ’ฒ"; + inline constexpr const char currency_exchange[] = "๐Ÿ’ฑ"; + inline constexpr const char tm[] = "โ„ข๏ธ"; + inline constexpr const char trade_mark[] = "โ„ข๏ธ"; + inline constexpr const char copyright[] = "ยฉ๏ธ"; + inline constexpr const char registered[] = "ยฎ๏ธ"; + inline constexpr const char wavy_dash[] = "ใ€ฐ๏ธ"; + inline constexpr const char curly_loop[] = "โžฐ"; + inline constexpr const char loop[] = "โžฟ"; + inline constexpr const char end[] = "๐Ÿ”š"; + inline constexpr const char end_arrow[] = "๐Ÿ”š"; + inline constexpr const char back[] = "๐Ÿ”™"; + inline constexpr const char back_arrow[] = "๐Ÿ”™"; + inline constexpr const char on[] = "๐Ÿ”›"; + inline constexpr const char on_arrow[] = "๐Ÿ”›"; + inline constexpr const char top[] = "๐Ÿ”"; + inline constexpr const char top_arrow[] = "๐Ÿ”"; + inline constexpr const char soon[] = "๐Ÿ”œ"; + inline constexpr const char soon_arrow[] = "๐Ÿ”œ"; + inline constexpr const char heavy_check_mark[] = "โœ”๏ธ"; + inline constexpr const char check_mark[] = "โœ”๏ธ"; + inline constexpr const char ballot_box_with_check[] = "โ˜‘๏ธ"; + inline constexpr const char radio_button[] = "๐Ÿ”˜"; + inline constexpr const char white_circle[] = "โšช"; + inline constexpr const char black_circle[] = "โšซ"; + inline constexpr const char red_circle[] = "๐Ÿ”ด"; + inline constexpr const char blue_circle[] = "๐Ÿ”ต"; + inline constexpr const char brown_circle[] = "๐ŸŸค"; + inline constexpr const char purple_circle[] = "๐ŸŸฃ"; + inline constexpr const char green_circle[] = "๐ŸŸข"; + inline constexpr const char yellow_circle[] = "๐ŸŸก"; + inline constexpr const char orange_circle[] = "๐ŸŸ "; + inline constexpr const char small_red_triangle[] = "๐Ÿ”บ"; + inline constexpr const char small_red_triangle_down[] = "๐Ÿ”ป"; + inline constexpr const char small_orange_diamond[] = "๐Ÿ”ธ"; + inline constexpr const char small_blue_diamond[] = "๐Ÿ”น"; + inline constexpr const char large_orange_diamond[] = "๐Ÿ”ถ"; + inline constexpr const char large_blue_diamond[] = "๐Ÿ”ท"; + inline constexpr const char white_square_button[] = "๐Ÿ”ณ"; + inline constexpr const char black_square_button[] = "๐Ÿ”ฒ"; + inline constexpr const char black_small_square[] = "โ–ช๏ธ"; + inline constexpr const char white_small_square[] = "โ–ซ๏ธ"; + inline constexpr const char black_medium_small_square[] = "โ—พ"; + inline constexpr const char white_medium_small_square[] = "โ—ฝ"; + inline constexpr const char black_medium_square[] = "โ—ผ๏ธ"; + inline constexpr const char white_medium_square[] = "โ—ป๏ธ"; + inline constexpr const char black_large_square[] = "โฌ›"; + inline constexpr const char white_large_square[] = "โฌœ"; + inline constexpr const char orange_square[] = "๐ŸŸง"; + inline constexpr const char blue_square[] = "๐ŸŸฆ"; + inline constexpr const char red_square[] = "๐ŸŸฅ"; + inline constexpr const char brown_square[] = "๐ŸŸซ"; + inline constexpr const char purple_square[] = "๐ŸŸช"; + inline constexpr const char green_square[] = "๐ŸŸฉ"; + inline constexpr const char yellow_square[] = "๐ŸŸจ"; + inline constexpr const char speaker[] = "๐Ÿ”ˆ"; + inline constexpr const char mute[] = "๐Ÿ”‡"; + inline constexpr const char muted_speaker[] = "๐Ÿ”‡"; + inline constexpr const char sound[] = "๐Ÿ”‰"; + inline constexpr const char loud_sound[] = "๐Ÿ”Š"; + inline constexpr const char bell[] = "๐Ÿ””"; + inline constexpr const char no_bell[] = "๐Ÿ”•"; + inline constexpr const char mega[] = "๐Ÿ“ฃ"; + inline constexpr const char megaphone[] = "๐Ÿ“ฃ"; + inline constexpr const char loudspeaker[] = "๐Ÿ“ข"; + inline constexpr const char speech_left[] = "๐Ÿ—จ๏ธ"; + inline constexpr const char left_speech_bubble[] = "๐Ÿ—จ๏ธ"; + inline constexpr const char eye_in_speech_bubble[] = "๐Ÿ‘โ€๐Ÿ—จ"; + inline constexpr const char speech_balloon[] = "๐Ÿ’ฌ"; + inline constexpr const char thought_balloon[] = "๐Ÿ’ญ"; + inline constexpr const char anger_right[] = "๐Ÿ—ฏ๏ธ"; + inline constexpr const char right_anger_bubble[] = "๐Ÿ—ฏ๏ธ"; + inline constexpr const char spades[] = "โ™ ๏ธ"; + inline constexpr const char spade_suit[] = "โ™ ๏ธ"; + inline constexpr const char clubs[] = "โ™ฃ๏ธ"; + inline constexpr const char club_suit[] = "โ™ฃ๏ธ"; + inline constexpr const char hearts[] = "โ™ฅ๏ธ"; + inline constexpr const char heart_suit[] = "โ™ฅ๏ธ"; + inline constexpr const char diamonds[] = "โ™ฆ๏ธ"; + inline constexpr const char diamond_suit[] = "โ™ฆ๏ธ"; + inline constexpr const char black_joker[] = "๐Ÿƒ"; + inline constexpr const char joker[] = "๐Ÿƒ"; + inline constexpr const char flower_playing_cards[] = "๐ŸŽด"; + inline constexpr const char mahjong[] = "๐Ÿ€„"; + inline constexpr const char clock1[] = "๐Ÿ•"; + inline constexpr const char one_oclock[] = "๐Ÿ•"; + inline constexpr const char clock2[] = "๐Ÿ•‘"; + inline constexpr const char two_oclock[] = "๐Ÿ•‘"; + inline constexpr const char clock3[] = "๐Ÿ•’"; + inline constexpr const char three_oclock[] = "๐Ÿ•’"; + inline constexpr const char clock4[] = "๐Ÿ•“"; + inline constexpr const char four_oclock[] = "๐Ÿ•“"; + inline constexpr const char clock5[] = "๐Ÿ•”"; + inline constexpr const char five_oclock[] = "๐Ÿ•”"; + inline constexpr const char clock6[] = "๐Ÿ••"; + inline constexpr const char six_oclock[] = "๐Ÿ••"; + inline constexpr const char clock7[] = "๐Ÿ•–"; + inline constexpr const char seven_oclock[] = "๐Ÿ•–"; + inline constexpr const char clock8[] = "๐Ÿ•—"; + inline constexpr const char eight_oclock[] = "๐Ÿ•—"; + inline constexpr const char clock9[] = "๐Ÿ•˜"; + inline constexpr const char nine_oclock[] = "๐Ÿ•˜"; + inline constexpr const char clock10[] = "๐Ÿ•™"; + inline constexpr const char ten_oclock[] = "๐Ÿ•™"; + inline constexpr const char clock11[] = "๐Ÿ•š"; + inline constexpr const char eleven_oclock[] = "๐Ÿ•š"; + inline constexpr const char clock12[] = "๐Ÿ•›"; + inline constexpr const char twelve_oclock[] = "๐Ÿ•›"; + inline constexpr const char clock130[] = "๐Ÿ•œ"; + inline constexpr const char one_thirty[] = "๐Ÿ•œ"; + inline constexpr const char clock230[] = "๐Ÿ•"; + inline constexpr const char two_thirty[] = "๐Ÿ•"; + inline constexpr const char clock330[] = "๐Ÿ•ž"; + inline constexpr const char three_thirty[] = "๐Ÿ•ž"; + inline constexpr const char clock430[] = "๐Ÿ•Ÿ"; + inline constexpr const char four_thirty[] = "๐Ÿ•Ÿ"; + inline constexpr const char clock530[] = "๐Ÿ• "; + inline constexpr const char five_thirty[] = "๐Ÿ• "; + inline constexpr const char clock630[] = "๐Ÿ•ก"; + inline constexpr const char six_thirty[] = "๐Ÿ•ก"; + inline constexpr const char clock730[] = "๐Ÿ•ข"; + inline constexpr const char seven_thirty[] = "๐Ÿ•ข"; + inline constexpr const char clock830[] = "๐Ÿ•ฃ"; + inline constexpr const char eight_thirty[] = "๐Ÿ•ฃ"; + inline constexpr const char clock930[] = "๐Ÿ•ค"; + inline constexpr const char nine_thirty[] = "๐Ÿ•ค"; + inline constexpr const char clock1030[] = "๐Ÿ•ฅ"; + inline constexpr const char ten_thirty[] = "๐Ÿ•ฅ"; + inline constexpr const char clock1130[] = "๐Ÿ•ฆ"; + inline constexpr const char eleven_thirty[] = "๐Ÿ•ฆ"; + inline constexpr const char clock1230[] = "๐Ÿ•ง"; + inline constexpr const char twelve_thirty[] = "๐Ÿ•ง"; + inline constexpr const char female_sign[] = "โ™€๏ธ"; + inline constexpr const char male_sign[] = "โ™‚๏ธ"; + inline constexpr const char transgender_symbol[] = "โšง"; + inline constexpr const char medical_symbol[] = "โš•๏ธ"; + inline constexpr const char regional_indicator_z[] = "๐Ÿ‡ฟ"; + inline constexpr const char regional_indicator_y[] = "๐Ÿ‡พ"; + inline constexpr const char regional_indicator_x[] = "๐Ÿ‡ฝ"; + inline constexpr const char regional_indicator_w[] = "๐Ÿ‡ผ"; + inline constexpr const char regional_indicator_v[] = "๐Ÿ‡ป"; + inline constexpr const char regional_indicator_u[] = "๐Ÿ‡บ"; + inline constexpr const char regional_indicator_t[] = "๐Ÿ‡น"; + inline constexpr const char regional_indicator_s[] = "๐Ÿ‡ธ"; + inline constexpr const char regional_indicator_r[] = "๐Ÿ‡ท"; + inline constexpr const char regional_indicator_q[] = "๐Ÿ‡ถ"; + inline constexpr const char regional_indicator_p[] = "๐Ÿ‡ต"; + inline constexpr const char regional_indicator_o[] = "๐Ÿ‡ด"; + inline constexpr const char regional_indicator_n[] = "๐Ÿ‡ณ"; + inline constexpr const char regional_indicator_m[] = "๐Ÿ‡ฒ"; + inline constexpr const char regional_indicator_l[] = "๐Ÿ‡ฑ"; + inline constexpr const char regional_indicator_k[] = "๐Ÿ‡ฐ"; + inline constexpr const char regional_indicator_j[] = "๐Ÿ‡ฏ"; + inline constexpr const char regional_indicator_i[] = "๐Ÿ‡ฎ"; + inline constexpr const char regional_indicator_h[] = "๐Ÿ‡ญ"; + inline constexpr const char regional_indicator_g[] = "๐Ÿ‡ฌ"; + inline constexpr const char regional_indicator_f[] = "๐Ÿ‡ซ"; + inline constexpr const char regional_indicator_e[] = "๐Ÿ‡ช"; + inline constexpr const char regional_indicator_d[] = "๐Ÿ‡ฉ"; + inline constexpr const char regional_indicator_c[] = "๐Ÿ‡จ"; + inline constexpr const char regional_indicator_b[] = "๐Ÿ‡ง"; + inline constexpr const char regional_indicator_a[] = "๐Ÿ‡ฆ"; + inline constexpr const char red_car[] = "๐Ÿš—"; + inline constexpr const char automobile[] = "๐Ÿš—"; + inline constexpr const char taxi[] = "๐Ÿš•"; + inline constexpr const char blue_car[] = "๐Ÿš™"; + inline constexpr const char pickup_truck[] = "๐Ÿ›ป"; + inline constexpr const char minibus[] = "๐Ÿš"; + inline constexpr const char bus[] = "๐ŸšŒ"; + inline constexpr const char trolleybus[] = "๐ŸšŽ"; + inline constexpr const char race_car[] = "๐ŸŽ๏ธ"; + inline constexpr const char racing_car[] = "๐ŸŽ๏ธ"; + inline constexpr const char police_car[] = "๐Ÿš“"; + inline constexpr const char ambulance[] = "๐Ÿš‘"; + inline constexpr const char fire_engine[] = "๐Ÿš’"; + inline constexpr const char truck[] = "๐Ÿšš"; + inline constexpr const char articulated_lorry[] = "๐Ÿš›"; + inline constexpr const char tractor[] = "๐Ÿšœ"; + inline constexpr const char probing_cane[] = "๐Ÿฆฏ"; + inline constexpr const char manual_wheelchair[] = "๐Ÿฆฝ"; + inline constexpr const char motorized_wheelchair[] = "๐Ÿฆผ"; + inline constexpr const char crutch[] = "๐Ÿฉผ"; + inline constexpr const char scooter[] = "๐Ÿ›ด"; + inline constexpr const char kick_scooter[] = "๐Ÿ›ด"; + inline constexpr const char bike[] = "๐Ÿšฒ"; + inline constexpr const char bicycle[] = "๐Ÿšฒ"; + inline constexpr const char motor_scooter[] = "๐Ÿ›ต"; + inline constexpr const char motorbike[] = "๐Ÿ›ต"; + inline constexpr const char motorcycle[] = "๐Ÿ๏ธ"; + inline constexpr const char racing_motorcycle[] = "๐Ÿ๏ธ"; + inline constexpr const char auto_rickshaw[] = "๐Ÿ›บ"; + inline constexpr const char wheel[] = "๐Ÿ›ž"; + inline constexpr const char rotating_light[] = "๐Ÿšจ"; + inline constexpr const char oncoming_police_car[] = "๐Ÿš”"; + inline constexpr const char oncoming_bus[] = "๐Ÿš"; + inline constexpr const char oncoming_automobile[] = "๐Ÿš˜"; + inline constexpr const char oncoming_taxi[] = "๐Ÿš–"; + inline constexpr const char aerial_tramway[] = "๐Ÿšก"; + inline constexpr const char mountain_cableway[] = "๐Ÿš "; + inline constexpr const char suspension_railway[] = "๐ŸšŸ"; + inline constexpr const char railway_car[] = "๐Ÿšƒ"; + inline constexpr const char train[] = "๐Ÿš‹"; + inline constexpr const char tram_car[] = "๐Ÿš‹"; + inline constexpr const char mountain_railway[] = "๐Ÿšž"; + inline constexpr const char monorail[] = "๐Ÿš"; + inline constexpr const char bullettrain_side[] = "๐Ÿš„"; + inline constexpr const char bullettrain_front[] = "๐Ÿš…"; + inline constexpr const char bullet_train[] = "๐Ÿš…"; + inline constexpr const char light_rail[] = "๐Ÿšˆ"; + inline constexpr const char steam_locomotive[] = "๐Ÿš‚"; + inline constexpr const char locomotive[] = "๐Ÿš‚"; + inline constexpr const char train2[] = "๐Ÿš†"; + inline constexpr const char metro[] = "๐Ÿš‡"; + inline constexpr const char tram[] = "๐ŸšŠ"; + inline constexpr const char station[] = "๐Ÿš‰"; + inline constexpr const char airplane[] = "โœˆ๏ธ"; + inline constexpr const char airplane_departure[] = "๐Ÿ›ซ"; + inline constexpr const char airplane_arriving[] = "๐Ÿ›ฌ"; + inline constexpr const char airplane_small[] = "๐Ÿ›ฉ๏ธ"; + inline constexpr const char small_airplane[] = "๐Ÿ›ฉ๏ธ"; + inline constexpr const char seat[] = "๐Ÿ’บ"; + inline constexpr const char satellite_orbital[] = "๐Ÿ›ฐ๏ธ"; + inline constexpr const char rocket[] = "๐Ÿš€"; + inline constexpr const char flying_saucer[] = "๐Ÿ›ธ"; + inline constexpr const char helicopter[] = "๐Ÿš"; + inline constexpr const char canoe[] = "๐Ÿ›ถ"; + inline constexpr const char kayak[] = "๐Ÿ›ถ"; + inline constexpr const char sailboat[] = "โ›ต"; + inline constexpr const char speedboat[] = "๐Ÿšค"; + inline constexpr const char motorboat[] = "๐Ÿ›ฅ๏ธ"; + inline constexpr const char motor_boat[] = "๐Ÿ›ฅ๏ธ"; + inline constexpr const char cruise_ship[] = "๐Ÿ›ณ๏ธ"; + inline constexpr const char passenger_ship[] = "๐Ÿ›ณ๏ธ"; + inline constexpr const char ferry[] = "โ›ด๏ธ"; + inline constexpr const char ship[] = "๐Ÿšข"; + inline constexpr const char ring_buoy[] = "๐Ÿ›Ÿ"; + inline constexpr const char anchor[] = "โš“"; + inline constexpr const char hook[] = "๐Ÿช"; + inline constexpr const char fuelpump[] = "โ›ฝ"; + inline constexpr const char fuel_pump[] = "โ›ฝ"; + inline constexpr const char construction[] = "๐Ÿšง"; + inline constexpr const char vertical_traffic_light[] = "๐Ÿšฆ"; + inline constexpr const char traffic_light[] = "๐Ÿšฅ"; + inline constexpr const char busstop[] = "๐Ÿš"; + inline constexpr const char bus_stop[] = "๐Ÿš"; + inline constexpr const char map[] = "๐Ÿ—บ๏ธ"; + inline constexpr const char world_map[] = "๐Ÿ—บ๏ธ"; + inline constexpr const char moyai[] = "๐Ÿ—ฟ"; + inline constexpr const char moai[] = "๐Ÿ—ฟ"; + inline constexpr const char statue_of_liberty[] = "๐Ÿ—ฝ"; + inline constexpr const char tokyo_tower[] = "๐Ÿ—ผ"; + inline constexpr const char european_castle[] = "๐Ÿฐ"; + inline constexpr const char castle[] = "๐Ÿฐ"; + inline constexpr const char japanese_castle[] = "๐Ÿฏ"; + inline constexpr const char stadium[] = "๐ŸŸ๏ธ"; + inline constexpr const char ferris_wheel[] = "๐ŸŽก"; + inline constexpr const char roller_coaster[] = "๐ŸŽข"; + inline constexpr const char carousel_horse[] = "๐ŸŽ "; + inline constexpr const char fountain[] = "โ›ฒ"; + inline constexpr const char beach_umbrella[] = "โ›ฑ๏ธ"; + inline constexpr const char umbrella_on_ground[] = "โ›ฑ๏ธ"; + inline constexpr const char beach[] = "๐Ÿ–๏ธ"; + inline constexpr const char beach_with_umbrella[] = "๐Ÿ–๏ธ"; + inline constexpr const char island[] = "๐Ÿ๏ธ"; + inline constexpr const char desert_island[] = "๐Ÿ๏ธ"; + inline constexpr const char desert[] = "๐Ÿœ๏ธ"; + inline constexpr const char volcano[] = "๐ŸŒ‹"; + inline constexpr const char mountain[] = "โ›ฐ๏ธ"; + inline constexpr const char mountain_snow[] = "๐Ÿ”๏ธ"; + inline constexpr const char snow_capped_mountain[] = "๐Ÿ”๏ธ"; + inline constexpr const char mount_fuji[] = "๐Ÿ—ป"; + inline constexpr const char camping[] = "๐Ÿ•๏ธ"; + inline constexpr const char tent[] = "โ›บ"; + inline constexpr const char house[] = "๐Ÿ "; + inline constexpr const char house_with_garden[] = "๐Ÿก"; + inline constexpr const char homes[] = "๐Ÿ˜๏ธ"; + inline constexpr const char house_buildings[] = "๐Ÿ˜๏ธ"; + inline constexpr const char houses[] = "๐Ÿ˜๏ธ"; + inline constexpr const char house_abandoned[] = "๐Ÿš๏ธ"; + inline constexpr const char derelict_house_building[] = "๐Ÿš๏ธ"; + inline constexpr const char hut[] = "๐Ÿ›–"; + inline constexpr const char construction_site[] = "๐Ÿ—๏ธ"; + inline constexpr const char building_construction[] = "๐Ÿ—๏ธ"; + inline constexpr const char factory[] = "๐Ÿญ"; + inline constexpr const char office[] = "๐Ÿข"; + inline constexpr const char department_store[] = "๐Ÿฌ"; + inline constexpr const char post_office[] = "๐Ÿฃ"; + inline constexpr const char european_post_office[] = "๐Ÿค"; + inline constexpr const char hospital[] = "๐Ÿฅ"; + inline constexpr const char bank[] = "๐Ÿฆ"; + inline constexpr const char hotel[] = "๐Ÿจ"; + inline constexpr const char convenience_store[] = "๐Ÿช"; + inline constexpr const char school[] = "๐Ÿซ"; + inline constexpr const char love_hotel[] = "๐Ÿฉ"; + inline constexpr const char wedding[] = "๐Ÿ’’"; + inline constexpr const char classical_building[] = "๐Ÿ›๏ธ"; + inline constexpr const char church[] = "โ›ช"; + inline constexpr const char mosque[] = "๐Ÿ•Œ"; + inline constexpr const char synagogue[] = "๐Ÿ•"; + inline constexpr const char hindu_temple[] = "๐Ÿ›•"; + inline constexpr const char kaaba[] = "๐Ÿ•‹"; + inline constexpr const char shinto_shrine[] = "โ›ฉ๏ธ"; + inline constexpr const char railway_track[] = "๐Ÿ›ค๏ธ"; + inline constexpr const char railroad_track[] = "๐Ÿ›ค๏ธ"; + inline constexpr const char motorway[] = "๐Ÿ›ฃ๏ธ"; + inline constexpr const char japan[] = "๐Ÿ—พ"; + inline constexpr const char map_of_japan[] = "๐Ÿ—พ"; + inline constexpr const char rice_scene[] = "๐ŸŽ‘"; + inline constexpr const char park[] = "๐Ÿž๏ธ"; + inline constexpr const char national_park[] = "๐Ÿž๏ธ"; + inline constexpr const char sunrise[] = "๐ŸŒ…"; + inline constexpr const char sunrise_over_mountains[] = "๐ŸŒ„"; + inline constexpr const char stars[] = "๐ŸŒ "; + inline constexpr const char shooting_star[] = "๐ŸŒ "; + inline constexpr const char sparkler[] = "๐ŸŽ‡"; + inline constexpr const char fireworks[] = "๐ŸŽ†"; + inline constexpr const char city_sunset[] = "๐ŸŒ‡"; + inline constexpr const char city_sunrise[] = "๐ŸŒ‡"; + inline constexpr const char sunset[] = "๐ŸŒ‡"; + inline constexpr const char city_dusk[] = "๐ŸŒ†"; + inline constexpr const char cityscape[] = "๐Ÿ™๏ธ"; + inline constexpr const char night_with_stars[] = "๐ŸŒƒ"; + inline constexpr const char milky_way[] = "๐ŸŒŒ"; + inline constexpr const char bridge_at_night[] = "๐ŸŒ‰"; + inline constexpr const char foggy[] = "๐ŸŒ"; +} +};