Contents.swift 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. //
  2. // Emojione.swift
  3. //
  4. // Created by Rafael Kellermann Streit (@rafaelks) on 10/10/16.
  5. // Copyright (c) 2016.
  6. //
  7. import Foundation
  8. struct Emojione {
  9. static let values = [
  10. "100": "\u{0001f4af}",
  11. "1234": "\u{0001f522}",
  12. "grinning": "\u{0001f600}",
  13. "grimacing": "\u{0001f62c}",
  14. "grin": "\u{0001f601}",
  15. "joy": "\u{0001f602}",
  16. "smiley": "\u{0001f603}",
  17. "smile": "\u{0001f604}",
  18. "sweat_smile": "\u{0001f605}",
  19. "laughing": "\u{0001f606}",
  20. "innocent": "\u{0001f607}",
  21. "wink": "\u{0001f609}",
  22. "blush": "\u{0001f60a}",
  23. "slight_smile": "\u{0001f642}",
  24. "upside_down": "\u{0001f643}",
  25. "relaxed": "\u{0000263a}",
  26. "yum": "\u{0001f60b}",
  27. "relieved": "\u{0001f60c}",
  28. "heart_eyes": "\u{0001f60d}",
  29. "kissing_heart": "\u{0001f618}",
  30. "kissing": "\u{0001f617}",
  31. "kissing_smiling_eyes": "\u{0001f619}",
  32. "kissing_closed_eyes": "\u{0001f61a}",
  33. "stuck_out_tongue_winking_eye": "\u{0001f61c}",
  34. "stuck_out_tongue_closed_eyes": "\u{0001f61d}",
  35. "stuck_out_tongue": "\u{0001f61b}",
  36. "money_mouth": "\u{0001f911}",
  37. "nerd": "\u{0001f913}",
  38. "sunglasses": "\u{0001f60e}",
  39. "hugging": "\u{0001f917}",
  40. "smirk": "\u{0001f60f}",
  41. "no_mouth": "\u{0001f636}",
  42. "neutral_face": "\u{0001f610}",
  43. "expressionless": "\u{0001f611}",
  44. "unamused": "\u{0001f612}",
  45. "rolling_eyes": "\u{0001f644}",
  46. "thinking": "\u{0001f914}",
  47. "flushed": "\u{0001f633}",
  48. "disappointed": "\u{0001f61e}",
  49. "worried": "\u{0001f61f}",
  50. "angry": "\u{0001f620}",
  51. "rage": "\u{0001f621}",
  52. "pensive": "\u{0001f614}",
  53. "confused": "\u{0001f615}",
  54. "slight_frown": "\u{0001f641}",
  55. "frowning2": "\u{00002639}",
  56. "persevere": "\u{0001f623}",
  57. "confounded": "\u{0001f616}",
  58. "tired_face": "\u{0001f62b}",
  59. "weary": "\u{0001f629}",
  60. "triumph": "\u{0001f624}",
  61. "open_mouth": "\u{0001f62e}",
  62. "scream": "\u{0001f631}",
  63. "fearful": "\u{0001f628}",
  64. "cold_sweat": "\u{0001f630}",
  65. "hushed": "\u{0001f62f}",
  66. "frowning": "\u{0001f626}",
  67. "anguished": "\u{0001f627}",
  68. "cry": "\u{0001f622}",
  69. "disappointed_relieved": "\u{0001f625}",
  70. "sleepy": "\u{0001f62a}",
  71. "sweat": "\u{0001f613}",
  72. "sob": "\u{0001f62d}",
  73. "dizzy_face": "\u{0001f635}",
  74. "astonished": "\u{0001f632}",
  75. "zipper_mouth": "\u{0001f910}",
  76. "mask": "\u{0001f637}",
  77. "thermometer_face": "\u{0001f912}",
  78. "head_bandage": "\u{0001f915}",
  79. "sleeping": "\u{0001f634}",
  80. "zzz": "\u{0001f4a4}",
  81. "poop": "\u{0001f4a9}",
  82. "smiling_imp": "\u{0001f608}",
  83. "imp": "\u{0001f47f}",
  84. "japanese_ogre": "\u{0001f479}",
  85. "japanese_goblin": "\u{0001f47a}",
  86. "skull": "\u{0001f480}",
  87. "ghost": "\u{0001f47b}",
  88. "alien": "\u{0001f47d}",
  89. "robot": "\u{0001f916}",
  90. "smiley_cat": "\u{0001f63a}",
  91. "smile_cat": "\u{0001f638}",
  92. "joy_cat": "\u{0001f639}",
  93. "heart_eyes_cat": "\u{0001f63b}",
  94. "smirk_cat": "\u{0001f63c}",
  95. "kissing_cat": "\u{0001f63d}",
  96. "scream_cat": "\u{0001f640}",
  97. "crying_cat_face": "\u{0001f63f}",
  98. "pouting_cat": "\u{0001f63e}",
  99. "raised_hands": "\u{0001f64c}",
  100. "clap": "\u{0001f44f}",
  101. "wave": "\u{0001f44b}",
  102. "thumbsup": "\u{0001f44d}",
  103. "thumbsdown": "\u{0001f44e}",
  104. "punch": "\u{0001f44a}",
  105. "fist": "\u{0000270a}",
  106. "v": "\u{0000270c}",
  107. "ok_hand": "\u{0001f44c}",
  108. "raised_hand": "\u{0000270b}",
  109. "open_hands": "\u{0001f450}",
  110. "muscle": "\u{0001f4aa}",
  111. "pray": "\u{0001f64f}",
  112. "point_up": "\u{0000261d}",
  113. "point_up_2": "\u{0001f446}",
  114. "point_down": "\u{0001f447}",
  115. "point_left": "\u{0001f448}",
  116. "point_right": "\u{0001f449}",
  117. "middle_finger": "\u{0001f595}",
  118. "hand_splayed": "\u{0001f590}",
  119. "metal": "\u{0001f918}",
  120. "vulcan": "\u{0001f596}",
  121. "writing_hand": "\u{0000270d}",
  122. "nail_care": "\u{0001f485}",
  123. "lips": "\u{0001f444}",
  124. "tongue": "\u{0001f445}",
  125. "ear": "\u{0001f442}",
  126. "nose": "\u{0001f443}",
  127. "eye": "\u{0001f441}",
  128. "eyes": "\u{0001f440}",
  129. "bust_in_silhouette": "\u{0001f464}",
  130. "busts_in_silhouette": "\u{0001f465}",
  131. "speaking_head": "\u{0001f5e3}",
  132. "baby": "\u{0001f476}",
  133. "boy": "\u{0001f466}",
  134. "girl": "\u{0001f467}",
  135. "man": "\u{0001f468}",
  136. "woman": "\u{0001f469}",
  137. "person_with_blond_hair": "\u{0001f471}",
  138. "older_man": "\u{0001f474}",
  139. "older_woman": "\u{0001f475}",
  140. "man_with_gua_pi_mao": "\u{0001f472}",
  141. "man_with_turban": "\u{0001f473}",
  142. "cop": "\u{0001f46e}",
  143. "construction_worker": "\u{0001f477}",
  144. "guardsman": "\u{0001f482}",
  145. "spy": "\u{0001f575}",
  146. "santa": "\u{0001f385}",
  147. "angel": "\u{0001f47c}",
  148. "princess": "\u{0001f478}",
  149. "bride_with_veil": "\u{0001f470}",
  150. "walking": "\u{0001f6b6}",
  151. "runner": "\u{0001f3c3}",
  152. "dancer": "\u{0001f483}",
  153. "dancers": "\u{0001f46f}",
  154. "couple": "\u{0001f46b}",
  155. "two_men_holding_hands": "\u{0001f46c}",
  156. "two_women_holding_hands": "\u{0001f46d}",
  157. "bow": "\u{0001f647}",
  158. "information_desk_person": "\u{0001f481}",
  159. "no_good": "\u{0001f645}",
  160. "ok_woman": "\u{0001f646}",
  161. "raising_hand": "\u{0001f64b}",
  162. "person_with_pouting_face": "\u{0001f64e}",
  163. "person_frowning": "\u{0001f64d}",
  164. "haircut": "\u{0001f487}",
  165. "massage": "\u{0001f486}",
  166. "couple_with_heart": "\u{0001f491}",
  167. "couple_ww": "\u{0001f469}\u{00002764}\u{0001f469}",
  168. "couple_mm": "\u{0001f468}\u{00002764}\u{0001f468}",
  169. "couplekiss": "\u{0001f48f}",
  170. "kiss_ww": "\u{0001f469}\u{00002764}\u{0001f48b}\u{0001f469}",
  171. "kiss_mm": "\u{0001f468}\u{00002764}\u{0001f48b}\u{0001f468}",
  172. "family": "\u{0001f46a}",
  173. "family_mwg": "\u{0001f468}\u{0001f469}\u{0001f467}",
  174. "family_mwgb": "\u{0001f468}\u{0001f469}\u{0001f467}\u{0001f466}",
  175. "family_mwbb": "\u{0001f468}\u{0001f469}\u{0001f466}\u{0001f466}",
  176. "family_mwgg": "\u{0001f468}\u{0001f469}\u{0001f467}\u{0001f467}",
  177. "family_wwb": "\u{0001f469}\u{0001f469}\u{0001f466}",
  178. "family_wwg": "\u{0001f469}\u{0001f469}\u{0001f467}",
  179. "family_wwgb": "\u{0001f469}\u{0001f469}\u{0001f467}\u{0001f466}",
  180. "family_wwbb": "\u{0001f469}\u{0001f469}\u{0001f466}\u{0001f466}",
  181. "family_wwgg": "\u{0001f469}\u{0001f469}\u{0001f467}\u{0001f467}",
  182. "family_mmb": "\u{0001f468}\u{0001f468}\u{0001f466}",
  183. "family_mmg": "\u{0001f468}\u{0001f468}\u{0001f467}",
  184. "family_mmgb": "\u{0001f468}\u{0001f468}\u{0001f467}\u{0001f466}",
  185. "family_mmbb": "\u{0001f468}\u{0001f468}\u{0001f466}\u{0001f466}",
  186. "family_mmgg": "\u{0001f468}\u{0001f468}\u{0001f467}\u{0001f467}",
  187. "womans_clothes": "\u{0001f45a}",
  188. "shirt": "\u{0001f455}",
  189. "jeans": "\u{0001f456}",
  190. "necktie": "\u{0001f454}",
  191. "dress": "\u{0001f457}",
  192. "bikini": "\u{0001f459}",
  193. "kimono": "\u{0001f458}",
  194. "lipstick": "\u{0001f484}",
  195. "kiss": "\u{0001f48b}",
  196. "footprints": "\u{0001f463}",
  197. "high_heel": "\u{0001f460}",
  198. "sandal": "\u{0001f461}",
  199. "boot": "\u{0001f462}",
  200. "mans_shoe": "\u{0001f45e}",
  201. "athletic_shoe": "\u{0001f45f}",
  202. "womans_hat": "\u{0001f452}",
  203. "tophat": "\u{0001f3a9}",
  204. "helmet_with_cross": "\u{000026d1}",
  205. "mortar_board": "\u{0001f393}",
  206. "crown": "\u{0001f451}",
  207. "school_satchel": "\u{0001f392}",
  208. "pouch": "\u{0001f45d}",
  209. "purse": "\u{0001f45b}",
  210. "handbag": "\u{0001f45c}",
  211. "briefcase": "\u{0001f4bc}",
  212. "eyeglasses": "\u{0001f453}",
  213. "dark_sunglasses": "\u{0001f576}",
  214. "ring": "\u{0001f48d}",
  215. "closed_umbrella": "\u{0001f302}",
  216. "dog": "\u{0001f436}",
  217. "cat": "\u{0001f431}",
  218. "mouse": "\u{0001f42d}",
  219. "hamster": "\u{0001f439}",
  220. "rabbit": "\u{0001f430}",
  221. "bear": "\u{0001f43b}",
  222. "panda_face": "\u{0001f43c}",
  223. "koala": "\u{0001f428}",
  224. "tiger": "\u{0001f42f}",
  225. "lion_face": "\u{0001f981}",
  226. "cow": "\u{0001f42e}",
  227. "pig": "\u{0001f437}",
  228. "pig_nose": "\u{0001f43d}",
  229. "frog": "\u{0001f438}",
  230. "octopus": "\u{0001f419}",
  231. "monkey_face": "\u{0001f435}",
  232. "see_no_evil": "\u{0001f648}",
  233. "hear_no_evil": "\u{0001f649}",
  234. "speak_no_evil": "\u{0001f64a}",
  235. "monkey": "\u{0001f412}",
  236. "chicken": "\u{0001f414}",
  237. "penguin": "\u{0001f427}",
  238. "bird": "\u{0001f426}",
  239. "baby_chick": "\u{0001f424}",
  240. "hatching_chick": "\u{0001f423}",
  241. "hatched_chick": "\u{0001f425}",
  242. "wolf": "\u{0001f43a}",
  243. "boar": "\u{0001f417}",
  244. "horse": "\u{0001f434}",
  245. "unicorn": "\u{0001f984}",
  246. "bee": "\u{0001f41d}",
  247. "bug": "\u{0001f41b}",
  248. "snail": "\u{0001f40c}",
  249. "beetle": "\u{0001f41e}",
  250. "ant": "\u{0001f41c}",
  251. "spider": "\u{0001f577}",
  252. "scorpion": "\u{0001f982}",
  253. "crab": "\u{0001f980}",
  254. "snake": "\u{0001f40d}",
  255. "turtle": "\u{0001f422}",
  256. "tropical_fish": "\u{0001f420}",
  257. "fish": "\u{0001f41f}",
  258. "blowfish": "\u{0001f421}",
  259. "dolphin": "\u{0001f42c}",
  260. "whale": "\u{0001f433}",
  261. "whale2": "\u{0001f40b}",
  262. "crocodile": "\u{0001f40a}",
  263. "leopard": "\u{0001f406}",
  264. "tiger2": "\u{0001f405}",
  265. "water_buffalo": "\u{0001f403}",
  266. "ox": "\u{0001f402}",
  267. "cow2": "\u{0001f404}",
  268. "dromedary_camel": "\u{0001f42a}",
  269. "camel": "\u{0001f42b}",
  270. "elephant": "\u{0001f418}",
  271. "goat": "\u{0001f410}",
  272. "ram": "\u{0001f40f}",
  273. "sheep": "\u{0001f411}",
  274. "racehorse": "\u{0001f40e}",
  275. "pig2": "\u{0001f416}",
  276. "rat": "\u{0001f400}",
  277. "mouse2": "\u{0001f401}",
  278. "rooster": "\u{0001f413}",
  279. "turkey": "\u{0001f983}",
  280. "dove": "\u{0001f54a}",
  281. "dog2": "\u{0001f415}",
  282. "poodle": "\u{0001f429}",
  283. "cat2": "\u{0001f408}",
  284. "rabbit2": "\u{0001f407}",
  285. "chipmunk": "\u{0001f43f}",
  286. "feet": "\u{0001f43e}",
  287. "dragon": "\u{0001f409}",
  288. "dragon_face": "\u{0001f432}",
  289. "cactus": "\u{0001f335}",
  290. "christmas_tree": "\u{0001f384}",
  291. "evergreen_tree": "\u{0001f332}",
  292. "deciduous_tree": "\u{0001f333}",
  293. "palm_tree": "\u{0001f334}",
  294. "seedling": "\u{0001f331}",
  295. "herb": "\u{0001f33f}",
  296. "shamrock": "\u{00002618}",
  297. "four_leaf_clover": "\u{0001f340}",
  298. "bamboo": "\u{0001f38d}",
  299. "tanabata_tree": "\u{0001f38b}",
  300. "leaves": "\u{0001f343}",
  301. "fallen_leaf": "\u{0001f342}",
  302. "maple_leaf": "\u{0001f341}",
  303. "ear_of_rice": "\u{0001f33e}",
  304. "hibiscus": "\u{0001f33a}",
  305. "sunflower": "\u{0001f33b}",
  306. "rose": "\u{0001f339}",
  307. "tulip": "\u{0001f337}",
  308. "blossom": "\u{0001f33c}",
  309. "cherry_blossom": "\u{0001f338}",
  310. "bouquet": "\u{0001f490}",
  311. "mushroom": "\u{0001f344}",
  312. "chestnut": "\u{0001f330}",
  313. "jack_o_lantern": "\u{0001f383}",
  314. "shell": "\u{0001f41a}",
  315. "spider_web": "\u{0001f578}",
  316. "earth_americas": "\u{0001f30e}",
  317. "earth_africa": "\u{0001f30d}",
  318. "earth_asia": "\u{0001f30f}",
  319. "full_moon": "\u{0001f315}",
  320. "waning_gibbous_moon": "\u{0001f316}",
  321. "last_quarter_moon": "\u{0001f317}",
  322. "waning_crescent_moon": "\u{0001f318}",
  323. "new_moon": "\u{0001f311}",
  324. "waxing_crescent_moon": "\u{0001f312}",
  325. "first_quarter_moon": "\u{0001f313}",
  326. "waxing_gibbous_moon": "\u{0001f314}",
  327. "new_moon_with_face": "\u{0001f31a}",
  328. "full_moon_with_face": "\u{0001f31d}",
  329. "first_quarter_moon_with_face": "\u{0001f31b}",
  330. "last_quarter_moon_with_face": "\u{0001f31c}",
  331. "sun_with_face": "\u{0001f31e}",
  332. "crescent_moon": "\u{0001f319}",
  333. "star": "\u{00002b50}",
  334. "star2": "\u{0001f31f}",
  335. "dizzy": "\u{0001f4ab}",
  336. "sparkles": "\u{00002728}",
  337. "comet": "\u{00002604}",
  338. "sunny": "\u{00002600}",
  339. "white_sun_small_cloud": "\u{0001f324}",
  340. "partly_sunny": "\u{000026c5}",
  341. "white_sun_cloud": "\u{0001f325}",
  342. "white_sun_rain_cloud": "\u{0001f326}",
  343. "cloud": "\u{00002601}",
  344. "cloud_rain": "\u{0001f327}",
  345. "thunder_cloud_rain": "\u{000026c8}",
  346. "cloud_lightning": "\u{0001f329}",
  347. "zap": "\u{000026a1}",
  348. "fire": "\u{0001f525}",
  349. "boom": "\u{0001f4a5}",
  350. "snowflake": "\u{00002744}",
  351. "cloud_snow": "\u{0001f328}",
  352. "snowman2": "\u{00002603}",
  353. "snowman": "\u{000026c4}",
  354. "wind_blowing_face": "\u{0001f32c}",
  355. "dash": "\u{0001f4a8}",
  356. "cloud_tornado": "\u{0001f32a}",
  357. "fog": "\u{0001f32b}",
  358. "umbrella2": "\u{00002602}",
  359. "umbrella": "\u{00002614}",
  360. "droplet": "\u{0001f4a7}",
  361. "sweat_drops": "\u{0001f4a6}",
  362. "ocean": "\u{0001f30a}",
  363. "green_apple": "\u{0001f34f}",
  364. "apple": "\u{0001f34e}",
  365. "pear": "\u{0001f350}",
  366. "tangerine": "\u{0001f34a}",
  367. "lemon": "\u{0001f34b}",
  368. "banana": "\u{0001f34c}",
  369. "watermelon": "\u{0001f349}",
  370. "grapes": "\u{0001f347}",
  371. "strawberry": "\u{0001f353}",
  372. "melon": "\u{0001f348}",
  373. "cherries": "\u{0001f352}",
  374. "peach": "\u{0001f351}",
  375. "pineapple": "\u{0001f34d}",
  376. "tomato": "\u{0001f345}",
  377. "eggplant": "\u{0001f346}",
  378. "hot_pepper": "\u{0001f336}",
  379. "corn": "\u{0001f33d}",
  380. "sweet_potato": "\u{0001f360}",
  381. "honey_pot": "\u{0001f36f}",
  382. "bread": "\u{0001f35e}",
  383. "cheese": "\u{0001f9c0}",
  384. "poultry_leg": "\u{0001f357}",
  385. "meat_on_bone": "\u{0001f356}",
  386. "fried_shrimp": "\u{0001f364}",
  387. "cooking": "\u{0001f373}",
  388. "hamburger": "\u{0001f354}",
  389. "fries": "\u{0001f35f}",
  390. "hotdog": "\u{0001f32d}",
  391. "pizza": "\u{0001f355}",
  392. "spaghetti": "\u{0001f35d}",
  393. "taco": "\u{0001f32e}",
  394. "burrito": "\u{0001f32f}",
  395. "ramen": "\u{0001f35c}",
  396. "stew": "\u{0001f372}",
  397. "fish_cake": "\u{0001f365}",
  398. "sushi": "\u{0001f363}",
  399. "bento": "\u{0001f371}",
  400. "curry": "\u{0001f35b}",
  401. "rice_ball": "\u{0001f359}",
  402. "rice": "\u{0001f35a}",
  403. "rice_cracker": "\u{0001f358}",
  404. "oden": "\u{0001f362}",
  405. "dango": "\u{0001f361}",
  406. "shaved_ice": "\u{0001f367}",
  407. "ice_cream": "\u{0001f368}",
  408. "icecream": "\u{0001f366}",
  409. "cake": "\u{0001f370}",
  410. "birthday": "\u{0001f382}",
  411. "custard": "\u{0001f36e}",
  412. "candy": "\u{0001f36c}",
  413. "lollipop": "\u{0001f36d}",
  414. "chocolate_bar": "\u{0001f36b}",
  415. "popcorn": "\u{0001f37f}",
  416. "doughnut": "\u{0001f369}",
  417. "cookie": "\u{0001f36a}",
  418. "beer": "\u{0001f37a}",
  419. "beers": "\u{0001f37b}",
  420. "wine_glass": "\u{0001f377}",
  421. "cocktail": "\u{0001f378}",
  422. "tropical_drink": "\u{0001f379}",
  423. "champagne": "\u{0001f37e}",
  424. "sake": "\u{0001f376}",
  425. "tea": "\u{0001f375}",
  426. "coffee": "\u{00002615}",
  427. "baby_bottle": "\u{0001f37c}",
  428. "fork_and_knife": "\u{0001f374}",
  429. "fork_knife_plate": "\u{0001f37d}",
  430. "soccer": "\u{000026bd}",
  431. "basketball": "\u{0001f3c0}",
  432. "football": "\u{0001f3c8}",
  433. "baseball": "\u{000026be}",
  434. "tennis": "\u{0001f3be}",
  435. "volleyball": "\u{0001f3d0}",
  436. "rugby_football": "\u{0001f3c9}",
  437. "8ball": "\u{0001f3b1}",
  438. "golf": "\u{000026f3}",
  439. "golfer": "\u{0001f3cc}",
  440. "ping_pong": "\u{0001f3d3}",
  441. "badminton": "\u{0001f3f8}",
  442. "hockey": "\u{0001f3d2}",
  443. "field_hockey": "\u{0001f3d1}",
  444. "cricket": "\u{0001f3cf}",
  445. "ski": "\u{0001f3bf}",
  446. "skier": "\u{000026f7}",
  447. "snowboarder": "\u{0001f3c2}",
  448. "ice_skate": "\u{000026f8}",
  449. "bow_and_arrow": "\u{0001f3f9}",
  450. "fishing_pole_and_fish": "\u{0001f3a3}",
  451. "rowboat": "\u{0001f6a3}",
  452. "swimmer": "\u{0001f3ca}",
  453. "surfer": "\u{0001f3c4}",
  454. "bath": "\u{0001f6c0}",
  455. "basketball_player": "\u{000026f9}",
  456. "lifter": "\u{0001f3cb}",
  457. "bicyclist": "\u{0001f6b4}",
  458. "mountain_bicyclist": "\u{0001f6b5}",
  459. "horse_racing": "\u{0001f3c7}",
  460. "levitate": "\u{0001f574}",
  461. "trophy": "\u{0001f3c6}",
  462. "running_shirt_with_sash": "\u{0001f3bd}",
  463. "medal": "\u{0001f3c5}",
  464. "military_medal": "\u{0001f396}",
  465. "reminder_ribbon": "\u{0001f397}",
  466. "rosette": "\u{0001f3f5}",
  467. "ticket": "\u{0001f3ab}",
  468. "tickets": "\u{0001f39f}",
  469. "performing_arts": "\u{0001f3ad}",
  470. "art": "\u{0001f3a8}",
  471. "circus_tent": "\u{0001f3aa}",
  472. "microphone": "\u{0001f3a4}",
  473. "headphones": "\u{0001f3a7}",
  474. "musical_score": "\u{0001f3bc}",
  475. "musical_keyboard": "\u{0001f3b9}",
  476. "saxophone": "\u{0001f3b7}",
  477. "trumpet": "\u{0001f3ba}",
  478. "guitar": "\u{0001f3b8}",
  479. "violin": "\u{0001f3bb}",
  480. "clapper": "\u{0001f3ac}",
  481. "video_game": "\u{0001f3ae}",
  482. "space_invader": "\u{0001f47e}",
  483. "dart": "\u{0001f3af}",
  484. "game_die": "\u{0001f3b2}",
  485. "slot_machine": "\u{0001f3b0}",
  486. "bowling": "\u{0001f3b3}",
  487. "red_car": "\u{0001f697}",
  488. "taxi": "\u{0001f695}",
  489. "blue_car": "\u{0001f699}",
  490. "bus": "\u{0001f68c}",
  491. "trolleybus": "\u{0001f68e}",
  492. "race_car": "\u{0001f3ce}",
  493. "police_car": "\u{0001f693}",
  494. "ambulance": "\u{0001f691}",
  495. "fire_engine": "\u{0001f692}",
  496. "minibus": "\u{0001f690}",
  497. "truck": "\u{0001f69a}",
  498. "articulated_lorry": "\u{0001f69b}",
  499. "tractor": "\u{0001f69c}",
  500. "motorcycle": "\u{0001f3cd}",
  501. "bike": "\u{0001f6b2}",
  502. "rotating_light": "\u{0001f6a8}",
  503. "oncoming_police_car": "\u{0001f694}",
  504. "oncoming_bus": "\u{0001f68d}",
  505. "oncoming_automobile": "\u{0001f698}",
  506. "oncoming_taxi": "\u{0001f696}",
  507. "aerial_tramway": "\u{0001f6a1}",
  508. "mountain_cableway": "\u{0001f6a0}",
  509. "suspension_railway": "\u{0001f69f}",
  510. "railway_car": "\u{0001f683}",
  511. "train": "\u{0001f68b}",
  512. "monorail": "\u{0001f69d}",
  513. "bullettrain_side": "\u{0001f684}",
  514. "bullettrain_front": "\u{0001f685}",
  515. "light_rail": "\u{0001f688}",
  516. "mountain_railway": "\u{0001f69e}",
  517. "steam_locomotive": "\u{0001f682}",
  518. "train2": "\u{0001f686}",
  519. "metro": "\u{0001f687}",
  520. "tram": "\u{0001f68a}",
  521. "station": "\u{0001f689}",
  522. "helicopter": "\u{0001f681}",
  523. "airplane_small": "\u{0001f6e9}",
  524. "airplane": "\u{00002708}",
  525. "airplane_departure": "\u{0001f6eb}",
  526. "airplane_arriving": "\u{0001f6ec}",
  527. "sailboat": "\u{000026f5}",
  528. "motorboat": "\u{0001f6e5}",
  529. "speedboat": "\u{0001f6a4}",
  530. "ferry": "\u{000026f4}",
  531. "cruise_ship": "\u{0001f6f3}",
  532. "rocket": "\u{0001f680}",
  533. "satellite_orbital": "\u{0001f6f0}",
  534. "seat": "\u{0001f4ba}",
  535. "anchor": "\u{00002693}",
  536. "construction": "\u{0001f6a7}",
  537. "fuelpump": "\u{000026fd}",
  538. "busstop": "\u{0001f68f}",
  539. "vertical_traffic_light": "\u{0001f6a6}",
  540. "traffic_light": "\u{0001f6a5}",
  541. "checkered_flag": "\u{0001f3c1}",
  542. "ship": "\u{0001f6a2}",
  543. "ferris_wheel": "\u{0001f3a1}",
  544. "roller_coaster": "\u{0001f3a2}",
  545. "carousel_horse": "\u{0001f3a0}",
  546. "construction_site": "\u{0001f3d7}",
  547. "foggy": "\u{0001f301}",
  548. "tokyo_tower": "\u{0001f5fc}",
  549. "factory": "\u{0001f3ed}",
  550. "fountain": "\u{000026f2}",
  551. "rice_scene": "\u{0001f391}",
  552. "mountain": "\u{000026f0}",
  553. "mountain_snow": "\u{0001f3d4}",
  554. "mount_fuji": "\u{0001f5fb}",
  555. "volcano": "\u{0001f30b}",
  556. "japan": "\u{0001f5fe}",
  557. "camping": "\u{0001f3d5}",
  558. "tent": "\u{000026fa}",
  559. "park": "\u{0001f3de}",
  560. "motorway": "\u{0001f6e3}",
  561. "railway_track": "\u{0001f6e4}",
  562. "sunrise": "\u{0001f305}",
  563. "sunrise_over_mountains": "\u{0001f304}",
  564. "desert": "\u{0001f3dc}",
  565. "beach": "\u{0001f3d6}",
  566. "island": "\u{0001f3dd}",
  567. "city_sunset": "\u{0001f307}",
  568. "city_dusk": "\u{0001f306}",
  569. "cityscape": "\u{0001f3d9}",
  570. "night_with_stars": "\u{0001f303}",
  571. "bridge_at_night": "\u{0001f309}",
  572. "milky_way": "\u{0001f30c}",
  573. "stars": "\u{0001f320}",
  574. "sparkler": "\u{0001f387}",
  575. "fireworks": "\u{0001f386}",
  576. "rainbow": "\u{0001f308}",
  577. "homes": "\u{0001f3d8}",
  578. "european_castle": "\u{0001f3f0}",
  579. "japanese_castle": "\u{0001f3ef}",
  580. "stadium": "\u{0001f3df}",
  581. "statue_of_liberty": "\u{0001f5fd}",
  582. "house": "\u{0001f3e0}",
  583. "house_with_garden": "\u{0001f3e1}",
  584. "house_abandoned": "\u{0001f3da}",
  585. "office": "\u{0001f3e2}",
  586. "department_store": "\u{0001f3ec}",
  587. "post_office": "\u{0001f3e3}",
  588. "european_post_office": "\u{0001f3e4}",
  589. "hospital": "\u{0001f3e5}",
  590. "bank": "\u{0001f3e6}",
  591. "hotel": "\u{0001f3e8}",
  592. "convenience_store": "\u{0001f3ea}",
  593. "school": "\u{0001f3eb}",
  594. "love_hotel": "\u{0001f3e9}",
  595. "wedding": "\u{0001f492}",
  596. "classical_building": "\u{0001f3db}",
  597. "church": "\u{000026ea}",
  598. "mosque": "\u{0001f54c}",
  599. "synagogue": "\u{0001f54d}",
  600. "kaaba": "\u{0001f54b}",
  601. "shinto_shrine": "\u{000026e9}",
  602. "watch": "\u{0000231a}",
  603. "iphone": "\u{0001f4f1}",
  604. "calling": "\u{0001f4f2}",
  605. "computer": "\u{0001f4bb}",
  606. "keyboard": "\u{00002328}",
  607. "desktop": "\u{0001f5a5}",
  608. "printer": "\u{0001f5a8}",
  609. "mouse_three_button": "\u{0001f5b1}",
  610. "trackball": "\u{0001f5b2}",
  611. "joystick": "\u{0001f579}",
  612. "compression": "\u{0001f5dc}",
  613. "minidisc": "\u{0001f4bd}",
  614. "floppy_disk": "\u{0001f4be}",
  615. "cd": "\u{0001f4bf}",
  616. "dvd": "\u{0001f4c0}",
  617. "vhs": "\u{0001f4fc}",
  618. "camera": "\u{0001f4f7}",
  619. "camera_with_flash": "\u{0001f4f8}",
  620. "video_camera": "\u{0001f4f9}",
  621. "movie_camera": "\u{0001f3a5}",
  622. "projector": "\u{0001f4fd}",
  623. "film_frames": "\u{0001f39e}",
  624. "telephone_receiver": "\u{0001f4de}",
  625. "telephone": "\u{0000260e}",
  626. "pager": "\u{0001f4df}",
  627. "fax": "\u{0001f4e0}",
  628. "tv": "\u{0001f4fa}",
  629. "radio": "\u{0001f4fb}",
  630. "microphone2": "\u{0001f399}",
  631. "level_slider": "\u{0001f39a}",
  632. "control_knobs": "\u{0001f39b}",
  633. "stopwatch": "\u{000023f1}",
  634. "timer": "\u{000023f2}",
  635. "alarm_clock": "\u{000023f0}",
  636. "clock": "\u{0001f570}",
  637. "hourglass_flowing_sand": "\u{000023f3}",
  638. "hourglass": "\u{0000231b}",
  639. "satellite": "\u{0001f4e1}",
  640. "battery": "\u{0001f50b}",
  641. "electric_plug": "\u{0001f50c}",
  642. "bulb": "\u{0001f4a1}",
  643. "flashlight": "\u{0001f526}",
  644. "candle": "\u{0001f56f}",
  645. "wastebasket": "\u{0001f5d1}",
  646. "oil": "\u{0001f6e2}",
  647. "money_with_wings": "\u{0001f4b8}",
  648. "dollar": "\u{0001f4b5}",
  649. "yen": "\u{0001f4b4}",
  650. "euro": "\u{0001f4b6}",
  651. "pound": "\u{0001f4b7}",
  652. "moneybag": "\u{0001f4b0}",
  653. "credit_card": "\u{0001f4b3}",
  654. "gem": "\u{0001f48e}",
  655. "scales": "\u{00002696}",
  656. "wrench": "\u{0001f527}",
  657. "hammer": "\u{0001f528}",
  658. "hammer_pick": "\u{00002692}",
  659. "tools": "\u{0001f6e0}",
  660. "pick": "\u{000026cf}",
  661. "nut_and_bolt": "\u{0001f529}",
  662. "gear": "\u{00002699}",
  663. "chains": "\u{000026d3}",
  664. "gun": "\u{0001f52b}",
  665. "bomb": "\u{0001f4a3}",
  666. "knife": "\u{0001f52a}",
  667. "dagger": "\u{0001f5e1}",
  668. "crossed_swords": "\u{00002694}",
  669. "shield": "\u{0001f6e1}",
  670. "smoking": "\u{0001f6ac}",
  671. "skull_crossbones": "\u{00002620}",
  672. "coffin": "\u{000026b0}",
  673. "urn": "\u{000026b1}",
  674. "amphora": "\u{0001f3fa}",
  675. "crystal_ball": "\u{0001f52e}",
  676. "prayer_beads": "\u{0001f4ff}",
  677. "barber": "\u{0001f488}",
  678. "alembic": "\u{00002697}",
  679. "telescope": "\u{0001f52d}",
  680. "microscope": "\u{0001f52c}",
  681. "hole": "\u{0001f573}",
  682. "pill": "\u{0001f48a}",
  683. "syringe": "\u{0001f489}",
  684. "thermometer": "\u{0001f321}",
  685. "label": "\u{0001f3f7}",
  686. "bookmark": "\u{0001f516}",
  687. "toilet": "\u{0001f6bd}",
  688. "shower": "\u{0001f6bf}",
  689. "bathtub": "\u{0001f6c1}",
  690. "key": "\u{0001f511}",
  691. "key2": "\u{0001f5dd}",
  692. "couch": "\u{0001f6cb}",
  693. "sleeping_accommodation": "\u{0001f6cc}",
  694. "bed": "\u{0001f6cf}",
  695. "door": "\u{0001f6aa}",
  696. "bellhop": "\u{0001f6ce}",
  697. "frame_photo": "\u{0001f5bc}",
  698. "map": "\u{0001f5fa}",
  699. "beach_umbrella": "\u{000026f1}",
  700. "moyai": "\u{0001f5ff}",
  701. "shopping_bags": "\u{0001f6cd}",
  702. "balloon": "\u{0001f388}",
  703. "flags": "\u{0001f38f}",
  704. "ribbon": "\u{0001f380}",
  705. "gift": "\u{0001f381}",
  706. "confetti_ball": "\u{0001f38a}",
  707. "tada": "\u{0001f389}",
  708. "dolls": "\u{0001f38e}",
  709. "wind_chime": "\u{0001f390}",
  710. "crossed_flags": "\u{0001f38c}",
  711. "izakaya_lantern": "\u{0001f3ee}",
  712. "envelope": "\u{00002709}",
  713. "envelope_with_arrow": "\u{0001f4e9}",
  714. "incoming_envelope": "\u{0001f4e8}",
  715. "e-mail": "\u{0001f4e7}",
  716. "love_letter": "\u{0001f48c}",
  717. "postbox": "\u{0001f4ee}",
  718. "mailbox_closed": "\u{0001f4ea}",
  719. "mailbox": "\u{0001f4eb}",
  720. "mailbox_with_mail": "\u{0001f4ec}",
  721. "mailbox_with_no_mail": "\u{0001f4ed}",
  722. "package": "\u{0001f4e6}",
  723. "postal_horn": "\u{0001f4ef}",
  724. "inbox_tray": "\u{0001f4e5}",
  725. "outbox_tray": "\u{0001f4e4}",
  726. "scroll": "\u{0001f4dc}",
  727. "page_with_curl": "\u{0001f4c3}",
  728. "bookmark_tabs": "\u{0001f4d1}",
  729. "bar_chart": "\u{0001f4ca}",
  730. "chart_with_upwards_trend": "\u{0001f4c8}",
  731. "chart_with_downwards_trend": "\u{0001f4c9}",
  732. "page_facing_up": "\u{0001f4c4}",
  733. "date": "\u{0001f4c5}",
  734. "calendar": "\u{0001f4c6}",
  735. "calendar_spiral": "\u{0001f5d3}",
  736. "card_index": "\u{0001f4c7}",
  737. "card_box": "\u{0001f5c3}",
  738. "ballot_box": "\u{0001f5f3}",
  739. "file_cabinet": "\u{0001f5c4}",
  740. "clipboard": "\u{0001f4cb}",
  741. "notepad_spiral": "\u{0001f5d2}",
  742. "file_folder": "\u{0001f4c1}",
  743. "open_file_folder": "\u{0001f4c2}",
  744. "dividers": "\u{0001f5c2}",
  745. "newspaper2": "\u{0001f5de}",
  746. "newspaper": "\u{0001f4f0}",
  747. "notebook": "\u{0001f4d3}",
  748. "closed_book": "\u{0001f4d5}",
  749. "green_book": "\u{0001f4d7}",
  750. "blue_book": "\u{0001f4d8}",
  751. "orange_book": "\u{0001f4d9}",
  752. "notebook_with_decorative_cover": "\u{0001f4d4}",
  753. "ledger": "\u{0001f4d2}",
  754. "books": "\u{0001f4da}",
  755. "book": "\u{0001f4d6}",
  756. "link": "\u{0001f517}",
  757. "paperclip": "\u{0001f4ce}",
  758. "paperclips": "\u{0001f587}",
  759. "scissors": "\u{00002702}",
  760. "triangular_ruler": "\u{0001f4d0}",
  761. "straight_ruler": "\u{0001f4cf}",
  762. "pushpin": "\u{0001f4cc}",
  763. "round_pushpin": "\u{0001f4cd}",
  764. "triangular_flag_on_post": "\u{0001f6a9}",
  765. "flag_white": "\u{0001f3f3}",
  766. "flag_black": "\u{0001f3f4}",
  767. "closed_lock_with_key": "\u{0001f510}",
  768. "lock": "\u{0001f512}",
  769. "unlock": "\u{0001f513}",
  770. "lock_with_ink_pen": "\u{0001f50f}",
  771. "pen_ballpoint": "\u{0001f58a}",
  772. "pen_fountain": "\u{0001f58b}",
  773. "black_nib": "\u{00002712}",
  774. "pencil": "\u{0001f4dd}",
  775. "pencil2": "\u{0000270f}",
  776. "crayon": "\u{0001f58d}",
  777. "paintbrush": "\u{0001f58c}",
  778. "mag": "\u{0001f50d}",
  779. "mag_right": "\u{0001f50e}",
  780. "heart": "\u{00002764}",
  781. "yellow_heart": "\u{0001f49b}",
  782. "green_heart": "\u{0001f49a}",
  783. "blue_heart": "\u{0001f499}",
  784. "purple_heart": "\u{0001f49c}",
  785. "broken_heart": "\u{0001f494}",
  786. "heart_exclamation": "\u{00002763}",
  787. "two_hearts": "\u{0001f495}",
  788. "revolving_hearts": "\u{0001f49e}",
  789. "heartbeat": "\u{0001f493}",
  790. "heartpulse": "\u{0001f497}",
  791. "sparkling_heart": "\u{0001f496}",
  792. "cupid": "\u{0001f498}",
  793. "gift_heart": "\u{0001f49d}",
  794. "heart_decoration": "\u{0001f49f}",
  795. "peace": "\u{0000262e}",
  796. "cross": "\u{0000271d}",
  797. "star_and_crescent": "\u{0000262a}",
  798. "om_symbol": "\u{0001f549}",
  799. "wheel_of_dharma": "\u{00002638}",
  800. "star_of_david": "\u{00002721}",
  801. "six_pointed_star": "\u{0001f52f}",
  802. "menorah": "\u{0001f54e}",
  803. "yin_yang": "\u{0000262f}",
  804. "orthodox_cross": "\u{00002626}",
  805. "place_of_worship": "\u{0001f6d0}",
  806. "ophiuchus": "\u{000026ce}",
  807. "aries": "\u{00002648}",
  808. "taurus": "\u{00002649}",
  809. "gemini": "\u{0000264a}",
  810. "cancer": "\u{0000264b}",
  811. "leo": "\u{0000264c}",
  812. "virgo": "\u{0000264d}",
  813. "libra": "\u{0000264e}",
  814. "scorpius": "\u{0000264f}",
  815. "sagittarius": "\u{00002650}",
  816. "capricorn": "\u{00002651}",
  817. "aquarius": "\u{00002652}",
  818. "pisces": "\u{00002653}",
  819. "id": "\u{0001f194}",
  820. "atom": "\u{0000269b}",
  821. "u7a7a": "\u{0001f233}",
  822. "u5272": "\u{0001f239}",
  823. "radioactive": "\u{00002622}",
  824. "biohazard": "\u{00002623}",
  825. "mobile_phone_off": "\u{0001f4f4}",
  826. "vibration_mode": "\u{0001f4f3}",
  827. "u6709": "\u{0001f236}",
  828. "u7121": "\u{0001f21a}",
  829. "u7533": "\u{0001f238}",
  830. "u55b6": "\u{0001f23a}",
  831. "u6708": "\u{0001f237}",
  832. "eight_pointed_black_star": "\u{00002734}",
  833. "vs": "\u{0001f19a}",
  834. "accept": "\u{0001f251}",
  835. "white_flower": "\u{0001f4ae}",
  836. "ideograph_advantage": "\u{0001f250}",
  837. "secret": "\u{00003299}",
  838. "congratulations": "\u{00003297}",
  839. "u5408": "\u{0001f234}",
  840. "u6e80": "\u{0001f235}",
  841. "u7981": "\u{0001f232}",
  842. "a": "\u{0001f170}",
  843. "b": "\u{0001f171}",
  844. "ab": "\u{0001f18e}",
  845. "cl": "\u{0001f191}",
  846. "o2": "\u{0001f17e}",
  847. "sos": "\u{0001f198}",
  848. "no_entry": "\u{000026d4}",
  849. "name_badge": "\u{0001f4db}",
  850. "no_entry_sign": "\u{0001f6ab}",
  851. "x": "\u{0000274c}",
  852. "o": "\u{00002b55}",
  853. "anger": "\u{0001f4a2}",
  854. "hotsprings": "\u{00002668}",
  855. "no_pedestrians": "\u{0001f6b7}",
  856. "do_not_litter": "\u{0001f6af}",
  857. "no_bicycles": "\u{0001f6b3}",
  858. "non-potable_water": "\u{0001f6b1}",
  859. "underage": "\u{0001f51e}",
  860. "no_mobile_phones": "\u{0001f4f5}",
  861. "exclamation": "\u{00002757}",
  862. "grey_exclamation": "\u{00002755}",
  863. "question": "\u{00002753}",
  864. "grey_question": "\u{00002754}",
  865. "bangbang": "\u{0000203c}",
  866. "interrobang": "\u{00002049}",
  867. "low_brightness": "\u{0001f505}",
  868. "high_brightness": "\u{0001f506}",
  869. "trident": "\u{0001f531}",
  870. "fleur-de-lis": "\u{0000269c}",
  871. "part_alternation_mark": "\u{0000303d}",
  872. "warning": "\u{000026a0}",
  873. "children_crossing": "\u{0001f6b8}",
  874. "beginner": "\u{0001f530}",
  875. "recycle": "\u{0000267b}",
  876. "u6307": "\u{0001f22f}",
  877. "chart": "\u{0001f4b9}",
  878. "sparkle": "\u{00002747}",
  879. "eight_spoked_asterisk": "\u{00002733}",
  880. "negative_squared_cross_mark": "\u{0000274e}",
  881. "white_check_mark": "\u{00002705}",
  882. "diamond_shape_with_a_dot_inside": "\u{0001f4a0}",
  883. "cyclone": "\u{0001f300}",
  884. "loop": "\u{000027bf}",
  885. "globe_with_meridians": "\u{0001f310}",
  886. "m": "\u{000024c2}",
  887. "atm": "\u{0001f3e7}",
  888. "sa": "\u{0001f202}",
  889. "passport_control": "\u{0001f6c2}",
  890. "customs": "\u{0001f6c3}",
  891. "baggage_claim": "\u{0001f6c4}",
  892. "left_luggage": "\u{0001f6c5}",
  893. "wheelchair": "\u{0000267f}",
  894. "no_smoking": "\u{0001f6ad}",
  895. "wc": "\u{0001f6be}",
  896. "parking": "\u{0001f17f}",
  897. "potable_water": "\u{0001f6b0}",
  898. "mens": "\u{0001f6b9}",
  899. "womens": "\u{0001f6ba}",
  900. "baby_symbol": "\u{0001f6bc}",
  901. "restroom": "\u{0001f6bb}",
  902. "put_litter_in_its_place": "\u{0001f6ae}",
  903. "cinema": "\u{0001f3a6}",
  904. "signal_strength": "\u{0001f4f6}",
  905. "koko": "\u{0001f201}",
  906. "ng": "\u{0001f196}",
  907. "ok": "\u{0001f197}",
  908. "up": "\u{0001f199}",
  909. "cool": "\u{0001f192}",
  910. "new": "\u{0001f195}",
  911. "free": "\u{0001f193}",
  912. "zero": "0\u{000020e3}",
  913. "one": "1\u{000020e3}",
  914. "two": "2\u{000020e3}",
  915. "three": "3\u{000020e3}",
  916. "four": "4\u{000020e3}",
  917. "five": "5\u{000020e3}",
  918. "six": "6\u{000020e3}",
  919. "seven": "7\u{000020e3}",
  920. "eight": "8\u{000020e3}",
  921. "nine": "9\u{000020e3}",
  922. "keycap_ten": "\u{0001f51f}",
  923. "arrow_forward": "\u{000025b6}",
  924. "pause_button": "\u{000023f8}",
  925. "play_pause": "\u{000023ef}",
  926. "stop_button": "\u{000023f9}",
  927. "record_button": "\u{000023fa}",
  928. "track_next": "\u{000023ed}",
  929. "track_previous": "\u{000023ee}",
  930. "fast_forward": "\u{000023e9}",
  931. "rewind": "\u{000023ea}",
  932. "twisted_rightwards_arrows": "\u{0001f500}",
  933. "repeat": "\u{0001f501}",
  934. "repeat_one": "\u{0001f502}",
  935. "arrow_backward": "\u{000025c0}",
  936. "arrow_up_small": "\u{0001f53c}",
  937. "arrow_down_small": "\u{0001f53d}",
  938. "arrow_double_up": "\u{000023eb}",
  939. "arrow_double_down": "\u{000023ec}",
  940. "arrow_right": "\u{000027a1}",
  941. "arrow_left": "\u{00002b05}",
  942. "arrow_up": "\u{00002b06}",
  943. "arrow_down": "\u{00002b07}",
  944. "arrow_upper_right": "\u{00002197}",
  945. "arrow_lower_right": "\u{00002198}",
  946. "arrow_lower_left": "\u{00002199}",
  947. "arrow_upper_left": "\u{00002196}",
  948. "arrow_up_down": "\u{00002195}",
  949. "left_right_arrow": "\u{00002194}",
  950. "arrows_counterclockwise": "\u{0001f504}",
  951. "arrow_right_hook": "\u{000021aa}",
  952. "leftwards_arrow_with_hook": "\u{000021a9}",
  953. "arrow_heading_up": "\u{00002934}",
  954. "arrow_heading_down": "\u{00002935}",
  955. "hash": "#\u{000020e3}",
  956. "asterisk": "\u{0000002a}\u{000020e3}",
  957. "information_source": "\u{00002139}",
  958. "abc": "\u{0001f524}",
  959. "abcd": "\u{0001f521}",
  960. "capital_abcd": "\u{0001f520}",
  961. "symbols": "\u{0001f523}",
  962. "musical_note": "\u{0001f3b5}",
  963. "notes": "\u{0001f3b6}",
  964. "wavy_dash": "\u{00003030}",
  965. "curly_loop": "\u{000027b0}",
  966. "heavy_check_mark": "\u{00002714}",
  967. "arrows_clockwise": "\u{0001f503}",
  968. "heavy_plus_sign": "\u{00002795}",
  969. "heavy_minus_sign": "\u{00002796}",
  970. "heavy_division_sign": "\u{00002797}",
  971. "heavy_multiplication_x": "\u{00002716}",
  972. "heavy_dollar_sign": "\u{0001f4b2}",
  973. "currency_exchange": "\u{0001f4b1}",
  974. "copyright": "\u{000000a9}",
  975. "registered": "\u{000000ae}",
  976. "tm": "\u{00002122}",
  977. "end": "\u{0001f51a}",
  978. "back": "\u{0001f519}",
  979. "on": "\u{0001f51b}",
  980. "top": "\u{0001f51d}",
  981. "soon": "\u{0001f51c}",
  982. "ballot_box_with_check": "\u{00002611}",
  983. "radio_button": "\u{0001f518}",
  984. "white_circle": "\u{000026aa}",
  985. "black_circle": "\u{000026ab}",
  986. "red_circle": "\u{0001f534}",
  987. "large_blue_circle": "\u{0001f535}",
  988. "small_orange_diamond": "\u{0001f538}",
  989. "small_blue_diamond": "\u{0001f539}",
  990. "large_orange_diamond": "\u{0001f536}",
  991. "large_blue_diamond": "\u{0001f537}",
  992. "small_red_triangle": "\u{0001f53a}",
  993. "black_small_square": "\u{000025aa}",
  994. "white_small_square": "\u{000025ab}",
  995. "black_large_square": "\u{00002b1b}",
  996. "white_large_square": "\u{00002b1c}",
  997. "small_red_triangle_down": "\u{0001f53b}",
  998. "black_medium_square": "\u{000025fc}",
  999. "white_medium_square": "\u{000025fb}",
  1000. "black_medium_small_square": "\u{000025fe}",
  1001. "white_medium_small_square": "\u{000025fd}",
  1002. "black_square_button": "\u{0001f532}",
  1003. "white_square_button": "\u{0001f533}",
  1004. "speaker": "\u{0001f508}",
  1005. "sound": "\u{0001f509}",
  1006. "loud_sound": "\u{0001f50a}",
  1007. "mute": "\u{0001f507}",
  1008. "mega": "\u{0001f4e3}",
  1009. "loudspeaker": "\u{0001f4e2}",
  1010. "bell": "\u{0001f514}",
  1011. "no_bell": "\u{0001f515}",
  1012. "black_joker": "\u{0001f0cf}",
  1013. "mahjong": "\u{0001f004}",
  1014. "spades": "\u{00002660}",
  1015. "clubs": "\u{00002663}",
  1016. "hearts": "\u{00002665}",
  1017. "diamonds": "\u{00002666}",
  1018. "flower_playing_cards": "\u{0001f3b4}",
  1019. "thought_balloon": "\u{0001f4ad}",
  1020. "anger_right": "\u{0001f5ef}",
  1021. "speech_balloon": "\u{0001f4ac}",
  1022. "clock1": "\u{0001f550}",
  1023. "clock2": "\u{0001f551}",
  1024. "clock3": "\u{0001f552}",
  1025. "clock4": "\u{0001f553}",
  1026. "clock5": "\u{0001f554}",
  1027. "clock6": "\u{0001f555}",
  1028. "clock7": "\u{0001f556}",
  1029. "clock8": "\u{0001f557}",
  1030. "clock9": "\u{0001f558}",
  1031. "clock10": "\u{0001f559}",
  1032. "clock11": "\u{0001f55a}",
  1033. "clock12": "\u{0001f55b}",
  1034. "clock130": "\u{0001f55c}",
  1035. "clock230": "\u{0001f55d}",
  1036. "clock330": "\u{0001f55e}",
  1037. "clock430": "\u{0001f55f}",
  1038. "clock530": "\u{0001f560}",
  1039. "clock630": "\u{0001f561}",
  1040. "clock730": "\u{0001f562}",
  1041. "clock830": "\u{0001f563}",
  1042. "clock930": "\u{0001f564}",
  1043. "clock1030": "\u{0001f565}",
  1044. "clock1130": "\u{0001f566}",
  1045. "clock1230": "\u{0001f567}",
  1046. "eye_in_speech_bubble": "\u{0001f441}\u{0001f5e8}",
  1047. "flag_ac": "\u{0001f1e6}\u{0001f1e8}",
  1048. "flag_af": "\u{0001f1e6}\u{0001f1eb}",
  1049. "flag_al": "\u{0001f1e6}\u{0001f1f1}",
  1050. "flag_dz": "\u{0001f1e9}\u{0001f1ff}",
  1051. "flag_ad": "\u{0001f1e6}\u{0001f1e9}",
  1052. "flag_ao": "\u{0001f1e6}\u{0001f1f4}",
  1053. "flag_ai": "\u{0001f1e6}\u{0001f1ee}",
  1054. "flag_ag": "\u{0001f1e6}\u{0001f1ec}",
  1055. "flag_ar": "\u{0001f1e6}\u{0001f1f7}",
  1056. "flag_am": "\u{0001f1e6}\u{0001f1f2}",
  1057. "flag_aw": "\u{0001f1e6}\u{0001f1fc}",
  1058. "flag_au": "\u{0001f1e6}\u{0001f1fa}",
  1059. "flag_at": "\u{0001f1e6}\u{0001f1f9}",
  1060. "flag_az": "\u{0001f1e6}\u{0001f1ff}",
  1061. "flag_bs": "\u{0001f1e7}\u{0001f1f8}",
  1062. "flag_bh": "\u{0001f1e7}\u{0001f1ed}",
  1063. "flag_bd": "\u{0001f1e7}\u{0001f1e9}",
  1064. "flag_bb": "\u{0001f1e7}\u{0001f1e7}",
  1065. "flag_by": "\u{0001f1e7}\u{0001f1fe}",
  1066. "flag_be": "\u{0001f1e7}\u{0001f1ea}",
  1067. "flag_bz": "\u{0001f1e7}\u{0001f1ff}",
  1068. "flag_bj": "\u{0001f1e7}\u{0001f1ef}",
  1069. "flag_bm": "\u{0001f1e7}\u{0001f1f2}",
  1070. "flag_bt": "\u{0001f1e7}\u{0001f1f9}",
  1071. "flag_bo": "\u{0001f1e7}\u{0001f1f4}",
  1072. "flag_ba": "\u{0001f1e7}\u{0001f1e6}",
  1073. "flag_bw": "\u{0001f1e7}\u{0001f1fc}",
  1074. "flag_br": "\u{0001f1e7}\u{0001f1f7}",
  1075. "flag_bn": "\u{0001f1e7}\u{0001f1f3}",
  1076. "flag_bg": "\u{0001f1e7}\u{0001f1ec}",
  1077. "flag_bf": "\u{0001f1e7}\u{0001f1eb}",
  1078. "flag_bi": "\u{0001f1e7}\u{0001f1ee}",
  1079. "flag_cv": "\u{0001f1e8}\u{0001f1fb}",
  1080. "flag_kh": "\u{0001f1f0}\u{0001f1ed}",
  1081. "flag_cm": "\u{0001f1e8}\u{0001f1f2}",
  1082. "flag_ca": "\u{0001f1e8}\u{0001f1e6}",
  1083. "flag_ky": "\u{0001f1f0}\u{0001f1fe}",
  1084. "flag_cf": "\u{0001f1e8}\u{0001f1eb}",
  1085. "flag_td": "\u{0001f1f9}\u{0001f1e9}",
  1086. "flag_cl": "\u{0001f1e8}\u{0001f1f1}",
  1087. "flag_cn": "\u{0001f1e8}\u{0001f1f3}",
  1088. "flag_co": "\u{0001f1e8}\u{0001f1f4}",
  1089. "flag_km": "\u{0001f1f0}\u{0001f1f2}",
  1090. "flag_cg": "\u{0001f1e8}\u{0001f1ec}",
  1091. "flag_cd": "\u{0001f1e8}\u{0001f1e9}",
  1092. "flag_cr": "\u{0001f1e8}\u{0001f1f7}",
  1093. "flag_hr": "\u{0001f1ed}\u{0001f1f7}",
  1094. "flag_cu": "\u{0001f1e8}\u{0001f1fa}",
  1095. "flag_cy": "\u{0001f1e8}\u{0001f1fe}",
  1096. "flag_cz": "\u{0001f1e8}\u{0001f1ff}",
  1097. "flag_dk": "\u{0001f1e9}\u{0001f1f0}",
  1098. "flag_dj": "\u{0001f1e9}\u{0001f1ef}",
  1099. "flag_dm": "\u{0001f1e9}\u{0001f1f2}",
  1100. "flag_do": "\u{0001f1e9}\u{0001f1f4}",
  1101. "flag_ec": "\u{0001f1ea}\u{0001f1e8}",
  1102. "flag_eg": "\u{0001f1ea}\u{0001f1ec}",
  1103. "flag_sv": "\u{0001f1f8}\u{0001f1fb}",
  1104. "flag_gq": "\u{0001f1ec}\u{0001f1f6}",
  1105. "flag_er": "\u{0001f1ea}\u{0001f1f7}",
  1106. "flag_ee": "\u{0001f1ea}\u{0001f1ea}",
  1107. "flag_et": "\u{0001f1ea}\u{0001f1f9}",
  1108. "flag_fk": "\u{0001f1eb}\u{0001f1f0}",
  1109. "flag_fo": "\u{0001f1eb}\u{0001f1f4}",
  1110. "flag_fj": "\u{0001f1eb}\u{0001f1ef}",
  1111. "flag_fi": "\u{0001f1eb}\u{0001f1ee}",
  1112. "flag_fr": "\u{0001f1eb}\u{0001f1f7}",
  1113. "flag_pf": "\u{0001f1f5}\u{0001f1eb}",
  1114. "flag_ga": "\u{0001f1ec}\u{0001f1e6}",
  1115. "flag_gm": "\u{0001f1ec}\u{0001f1f2}",
  1116. "flag_ge": "\u{0001f1ec}\u{0001f1ea}",
  1117. "flag_de": "\u{0001f1e9}\u{0001f1ea}",
  1118. "flag_gh": "\u{0001f1ec}\u{0001f1ed}",
  1119. "flag_gi": "\u{0001f1ec}\u{0001f1ee}",
  1120. "flag_gr": "\u{0001f1ec}\u{0001f1f7}",
  1121. "flag_gl": "\u{0001f1ec}\u{0001f1f1}",
  1122. "flag_gd": "\u{0001f1ec}\u{0001f1e9}",
  1123. "flag_gu": "\u{0001f1ec}\u{0001f1fa}",
  1124. "flag_gt": "\u{0001f1ec}\u{0001f1f9}",
  1125. "flag_gn": "\u{0001f1ec}\u{0001f1f3}",
  1126. "flag_gw": "\u{0001f1ec}\u{0001f1fc}",
  1127. "flag_gy": "\u{0001f1ec}\u{0001f1fe}",
  1128. "flag_ht": "\u{0001f1ed}\u{0001f1f9}",
  1129. "flag_hn": "\u{0001f1ed}\u{0001f1f3}",
  1130. "flag_hk": "\u{0001f1ed}\u{0001f1f0}",
  1131. "flag_hu": "\u{0001f1ed}\u{0001f1fa}",
  1132. "flag_is": "\u{0001f1ee}\u{0001f1f8}",
  1133. "flag_in": "\u{0001f1ee}\u{0001f1f3}",
  1134. "flag_id": "\u{0001f1ee}\u{0001f1e9}",
  1135. "flag_ir": "\u{0001f1ee}\u{0001f1f7}",
  1136. "flag_iq": "\u{0001f1ee}\u{0001f1f6}",
  1137. "flag_ie": "\u{0001f1ee}\u{0001f1ea}",
  1138. "flag_il": "\u{0001f1ee}\u{0001f1f1}",
  1139. "flag_it": "\u{0001f1ee}\u{0001f1f9}",
  1140. "flag_ci": "\u{0001f1e8}\u{0001f1ee}",
  1141. "flag_jm": "\u{0001f1ef}\u{0001f1f2}",
  1142. "flag_jp": "\u{0001f1ef}\u{0001f1f5}",
  1143. "flag_je": "\u{0001f1ef}\u{0001f1ea}",
  1144. "flag_jo": "\u{0001f1ef}\u{0001f1f4}",
  1145. "flag_kz": "\u{0001f1f0}\u{0001f1ff}",
  1146. "flag_ke": "\u{0001f1f0}\u{0001f1ea}",
  1147. "flag_ki": "\u{0001f1f0}\u{0001f1ee}",
  1148. "flag_xk": "\u{0001f1fd}\u{0001f1f0}",
  1149. "flag_kw": "\u{0001f1f0}\u{0001f1fc}",
  1150. "flag_kg": "\u{0001f1f0}\u{0001f1ec}",
  1151. "flag_la": "\u{0001f1f1}\u{0001f1e6}",
  1152. "flag_lv": "\u{0001f1f1}\u{0001f1fb}",
  1153. "flag_lb": "\u{0001f1f1}\u{0001f1e7}",
  1154. "flag_ls": "\u{0001f1f1}\u{0001f1f8}",
  1155. "flag_lr": "\u{0001f1f1}\u{0001f1f7}",
  1156. "flag_ly": "\u{0001f1f1}\u{0001f1fe}",
  1157. "flag_li": "\u{0001f1f1}\u{0001f1ee}",
  1158. "flag_lt": "\u{0001f1f1}\u{0001f1f9}",
  1159. "flag_lu": "\u{0001f1f1}\u{0001f1fa}",
  1160. "flag_mo": "\u{0001f1f2}\u{0001f1f4}",
  1161. "flag_mk": "\u{0001f1f2}\u{0001f1f0}",
  1162. "flag_mg": "\u{0001f1f2}\u{0001f1ec}",
  1163. "flag_mw": "\u{0001f1f2}\u{0001f1fc}",
  1164. "flag_my": "\u{0001f1f2}\u{0001f1fe}",
  1165. "flag_mv": "\u{0001f1f2}\u{0001f1fb}",
  1166. "flag_ml": "\u{0001f1f2}\u{0001f1f1}",
  1167. "flag_mt": "\u{0001f1f2}\u{0001f1f9}",
  1168. "flag_mh": "\u{0001f1f2}\u{0001f1ed}",
  1169. "flag_mr": "\u{0001f1f2}\u{0001f1f7}",
  1170. "flag_mu": "\u{0001f1f2}\u{0001f1fa}",
  1171. "flag_mx": "\u{0001f1f2}\u{0001f1fd}",
  1172. "flag_fm": "\u{0001f1eb}\u{0001f1f2}",
  1173. "flag_md": "\u{0001f1f2}\u{0001f1e9}",
  1174. "flag_mc": "\u{0001f1f2}\u{0001f1e8}",
  1175. "flag_mn": "\u{0001f1f2}\u{0001f1f3}",
  1176. "flag_me": "\u{0001f1f2}\u{0001f1ea}",
  1177. "flag_ms": "\u{0001f1f2}\u{0001f1f8}",
  1178. "flag_ma": "\u{0001f1f2}\u{0001f1e6}",
  1179. "flag_mz": "\u{0001f1f2}\u{0001f1ff}",
  1180. "flag_mm": "\u{0001f1f2}\u{0001f1f2}",
  1181. "flag_na": "\u{0001f1f3}\u{0001f1e6}",
  1182. "flag_nr": "\u{0001f1f3}\u{0001f1f7}",
  1183. "flag_np": "\u{0001f1f3}\u{0001f1f5}",
  1184. "flag_nl": "\u{0001f1f3}\u{0001f1f1}",
  1185. "flag_nc": "\u{0001f1f3}\u{0001f1e8}",
  1186. "flag_nz": "\u{0001f1f3}\u{0001f1ff}",
  1187. "flag_ni": "\u{0001f1f3}\u{0001f1ee}",
  1188. "flag_ne": "\u{0001f1f3}\u{0001f1ea}",
  1189. "flag_ng": "\u{0001f1f3}\u{0001f1ec}",
  1190. "flag_nu": "\u{0001f1f3}\u{0001f1fa}",
  1191. "flag_kp": "\u{0001f1f0}\u{0001f1f5}",
  1192. "flag_no": "\u{0001f1f3}\u{0001f1f4}",
  1193. "flag_om": "\u{0001f1f4}\u{0001f1f2}",
  1194. "flag_pk": "\u{0001f1f5}\u{0001f1f0}",
  1195. "flag_pw": "\u{0001f1f5}\u{0001f1fc}",
  1196. "flag_ps": "\u{0001f1f5}\u{0001f1f8}",
  1197. "flag_pa": "\u{0001f1f5}\u{0001f1e6}",
  1198. "flag_pg": "\u{0001f1f5}\u{0001f1ec}",
  1199. "flag_py": "\u{0001f1f5}\u{0001f1fe}",
  1200. "flag_pe": "\u{0001f1f5}\u{0001f1ea}",
  1201. "flag_ph": "\u{0001f1f5}\u{0001f1ed}",
  1202. "flag_pl": "\u{0001f1f5}\u{0001f1f1}",
  1203. "flag_pt": "\u{0001f1f5}\u{0001f1f9}",
  1204. "flag_pr": "\u{0001f1f5}\u{0001f1f7}",
  1205. "flag_qa": "\u{0001f1f6}\u{0001f1e6}",
  1206. "flag_ro": "\u{0001f1f7}\u{0001f1f4}",
  1207. "flag_ru": "\u{0001f1f7}\u{0001f1fa}",
  1208. "flag_rw": "\u{0001f1f7}\u{0001f1fc}",
  1209. "flag_sh": "\u{0001f1f8}\u{0001f1ed}",
  1210. "flag_kn": "\u{0001f1f0}\u{0001f1f3}",
  1211. "flag_lc": "\u{0001f1f1}\u{0001f1e8}",
  1212. "flag_vc": "\u{0001f1fb}\u{0001f1e8}",
  1213. "flag_ws": "\u{0001f1fc}\u{0001f1f8}",
  1214. "flag_sm": "\u{0001f1f8}\u{0001f1f2}",
  1215. "flag_st": "\u{0001f1f8}\u{0001f1f9}",
  1216. "flag_sa": "\u{0001f1f8}\u{0001f1e6}",
  1217. "flag_sn": "\u{0001f1f8}\u{0001f1f3}",
  1218. "flag_rs": "\u{0001f1f7}\u{0001f1f8}",
  1219. "flag_sc": "\u{0001f1f8}\u{0001f1e8}",
  1220. "flag_sl": "\u{0001f1f8}\u{0001f1f1}",
  1221. "flag_sg": "\u{0001f1f8}\u{0001f1ec}",
  1222. "flag_sk": "\u{0001f1f8}\u{0001f1f0}",
  1223. "flag_si": "\u{0001f1f8}\u{0001f1ee}",
  1224. "flag_sb": "\u{0001f1f8}\u{0001f1e7}",
  1225. "flag_so": "\u{0001f1f8}\u{0001f1f4}",
  1226. "flag_za": "\u{0001f1ff}\u{0001f1e6}",
  1227. "flag_kr": "\u{0001f1f0}\u{0001f1f7}",
  1228. "flag_es": "\u{0001f1ea}\u{0001f1f8}",
  1229. "flag_lk": "\u{0001f1f1}\u{0001f1f0}",
  1230. "flag_sd": "\u{0001f1f8}\u{0001f1e9}",
  1231. "flag_sr": "\u{0001f1f8}\u{0001f1f7}",
  1232. "flag_sz": "\u{0001f1f8}\u{0001f1ff}",
  1233. "flag_se": "\u{0001f1f8}\u{0001f1ea}",
  1234. "flag_ch": "\u{0001f1e8}\u{0001f1ed}",
  1235. "flag_sy": "\u{0001f1f8}\u{0001f1fe}",
  1236. "flag_tw": "\u{0001f1f9}\u{0001f1fc}",
  1237. "flag_tj": "\u{0001f1f9}\u{0001f1ef}",
  1238. "flag_tz": "\u{0001f1f9}\u{0001f1ff}",
  1239. "flag_th": "\u{0001f1f9}\u{0001f1ed}",
  1240. "flag_tl": "\u{0001f1f9}\u{0001f1f1}",
  1241. "flag_tg": "\u{0001f1f9}\u{0001f1ec}",
  1242. "flag_to": "\u{0001f1f9}\u{0001f1f4}",
  1243. "flag_tt": "\u{0001f1f9}\u{0001f1f9}",
  1244. "flag_tn": "\u{0001f1f9}\u{0001f1f3}",
  1245. "flag_tr": "\u{0001f1f9}\u{0001f1f7}",
  1246. "flag_tm": "\u{0001f1f9}\u{0001f1f2}",
  1247. "flag_tv": "\u{0001f1f9}\u{0001f1fb}",
  1248. "flag_ug": "\u{0001f1fa}\u{0001f1ec}",
  1249. "flag_ua": "\u{0001f1fa}\u{0001f1e6}",
  1250. "flag_ae": "\u{0001f1e6}\u{0001f1ea}",
  1251. "flag_gb": "\u{0001f1ec}\u{0001f1e7}",
  1252. "flag_us": "\u{0001f1fa}\u{0001f1f8}",
  1253. "flag_vi": "\u{0001f1fb}\u{0001f1ee}",
  1254. "flag_uy": "\u{0001f1fa}\u{0001f1fe}",
  1255. "flag_uz": "\u{0001f1fa}\u{0001f1ff}",
  1256. "flag_vu": "\u{0001f1fb}\u{0001f1fa}",
  1257. "flag_va": "\u{0001f1fb}\u{0001f1e6}",
  1258. "flag_ve": "\u{0001f1fb}\u{0001f1ea}",
  1259. "flag_vn": "\u{0001f1fb}\u{0001f1f3}",
  1260. "flag_wf": "\u{0001f1fc}\u{0001f1eb}",
  1261. "flag_eh": "\u{0001f1ea}\u{0001f1ed}",
  1262. "flag_ye": "\u{0001f1fe}\u{0001f1ea}",
  1263. "flag_zm": "\u{0001f1ff}\u{0001f1f2}",
  1264. "flag_zw": "\u{0001f1ff}\u{0001f1fc}",
  1265. "flag_re": "\u{0001f1f7}\u{0001f1ea}",
  1266. "flag_ax": "\u{0001f1e6}\u{0001f1fd}",
  1267. "flag_ta": "\u{0001f1f9}\u{0001f1e6}",
  1268. "flag_io": "\u{0001f1ee}\u{0001f1f4}",
  1269. "flag_bq": "\u{0001f1e7}\u{0001f1f6}",
  1270. "flag_cx": "\u{0001f1e8}\u{0001f1fd}",
  1271. "flag_cc": "\u{0001f1e8}\u{0001f1e8}",
  1272. "flag_gg": "\u{0001f1ec}\u{0001f1ec}",
  1273. "flag_im": "\u{0001f1ee}\u{0001f1f2}",
  1274. "flag_yt": "\u{0001f1fe}\u{0001f1f9}",
  1275. "flag_nf": "\u{0001f1f3}\u{0001f1eb}",
  1276. "flag_pn": "\u{0001f1f5}\u{0001f1f3}",
  1277. "flag_bl": "\u{0001f1e7}\u{0001f1f1}",
  1278. "flag_pm": "\u{0001f1f5}\u{0001f1f2}",
  1279. "flag_gs": "\u{0001f1ec}\u{0001f1f8}",
  1280. "flag_tk": "\u{0001f1f9}\u{0001f1f0}",
  1281. "flag_bv": "\u{0001f1e7}\u{0001f1fb}",
  1282. "flag_hm": "\u{0001f1ed}\u{0001f1f2}",
  1283. "flag_sj": "\u{0001f1f8}\u{0001f1ef}",
  1284. "flag_um": "\u{0001f1fa}\u{0001f1f2}",
  1285. "flag_ic": "\u{0001f1ee}\u{0001f1e8}",
  1286. "flag_ea": "\u{0001f1ea}\u{0001f1e6}",
  1287. "flag_cp": "\u{0001f1e8}\u{0001f1f5}",
  1288. "flag_dg": "\u{0001f1e9}\u{0001f1ec}",
  1289. "flag_as": "\u{0001f1e6}\u{0001f1f8}",
  1290. "flag_aq": "\u{0001f1e6}\u{0001f1f6}",
  1291. "flag_vg": "\u{0001f1fb}\u{0001f1ec}",
  1292. "flag_ck": "\u{0001f1e8}\u{0001f1f0}",
  1293. "flag_cw": "\u{0001f1e8}\u{0001f1fc}",
  1294. "flag_eu": "\u{0001f1ea}\u{0001f1fa}",
  1295. "flag_gf": "\u{0001f1ec}\u{0001f1eb}",
  1296. "flag_tf": "\u{0001f1f9}\u{0001f1eb}",
  1297. "flag_gp": "\u{0001f1ec}\u{0001f1f5}",
  1298. "flag_mq": "\u{0001f1f2}\u{0001f1f6}",
  1299. "flag_mp": "\u{0001f1f2}\u{0001f1f5}",
  1300. "flag_sx": "\u{0001f1f8}\u{0001f1fd}",
  1301. "flag_ss": "\u{0001f1f8}\u{0001f1f8}",
  1302. "flag_tc": "\u{0001f1f9}\u{0001f1e8}",
  1303. "flag_mf": "\u{0001f1f2}\u{0001f1eb}",
  1304. "raised_hands_tone1": "\u{0001f64c}\u{0001f3fb}",
  1305. "raised_hands_tone2": "\u{0001f64c}\u{0001f3fc}",
  1306. "raised_hands_tone3": "\u{0001f64c}\u{0001f3fd}",
  1307. "raised_hands_tone4": "\u{0001f64c}\u{0001f3fe}",
  1308. "raised_hands_tone5": "\u{0001f64c}\u{0001f3ff}",
  1309. "clap_tone1": "\u{0001f44f}\u{0001f3fb}",
  1310. "clap_tone2": "\u{0001f44f}\u{0001f3fc}",
  1311. "clap_tone3": "\u{0001f44f}\u{0001f3fd}",
  1312. "clap_tone4": "\u{0001f44f}\u{0001f3fe}",
  1313. "clap_tone5": "\u{0001f44f}\u{0001f3ff}",
  1314. "wave_tone1": "\u{0001f44b}\u{0001f3fb}",
  1315. "wave_tone2": "\u{0001f44b}\u{0001f3fc}",
  1316. "wave_tone3": "\u{0001f44b}\u{0001f3fd}",
  1317. "wave_tone4": "\u{0001f44b}\u{0001f3fe}",
  1318. "wave_tone5": "\u{0001f44b}\u{0001f3ff}",
  1319. "thumbsup_tone1": "\u{0001f44d}\u{0001f3fb}",
  1320. "thumbsup_tone2": "\u{0001f44d}\u{0001f3fc}",
  1321. "thumbsup_tone3": "\u{0001f44d}\u{0001f3fd}",
  1322. "thumbsup_tone4": "\u{0001f44d}\u{0001f3fe}",
  1323. "thumbsup_tone5": "\u{0001f44d}\u{0001f3ff}",
  1324. "thumbsdown_tone1": "\u{0001f44e}\u{0001f3fb}",
  1325. "thumbsdown_tone2": "\u{0001f44e}\u{0001f3fc}",
  1326. "thumbsdown_tone3": "\u{0001f44e}\u{0001f3fd}",
  1327. "thumbsdown_tone4": "\u{0001f44e}\u{0001f3fe}",
  1328. "thumbsdown_tone5": "\u{0001f44e}\u{0001f3ff}",
  1329. "punch_tone1": "\u{0001f44a}\u{0001f3fb}",
  1330. "punch_tone2": "\u{0001f44a}\u{0001f3fc}",
  1331. "punch_tone3": "\u{0001f44a}\u{0001f3fd}",
  1332. "punch_tone4": "\u{0001f44a}\u{0001f3fe}",
  1333. "punch_tone5": "\u{0001f44a}\u{0001f3ff}",
  1334. "fist_tone1": "\u{0000270a}\u{0001f3fb}",
  1335. "fist_tone2": "\u{0000270a}\u{0001f3fc}",
  1336. "fist_tone3": "\u{0000270a}\u{0001f3fd}",
  1337. "fist_tone4": "\u{0000270a}\u{0001f3fe}",
  1338. "fist_tone5": "\u{0000270a}\u{0001f3ff}",
  1339. "v_tone1": "\u{0000270c}\u{0001f3fb}",
  1340. "v_tone2": "\u{0000270c}\u{0001f3fc}",
  1341. "v_tone3": "\u{0000270c}\u{0001f3fd}",
  1342. "v_tone4": "\u{0000270c}\u{0001f3fe}",
  1343. "v_tone5": "\u{0000270c}\u{0001f3ff}",
  1344. "ok_hand_tone1": "\u{0001f44c}\u{0001f3fb}",
  1345. "ok_hand_tone2": "\u{0001f44c}\u{0001f3fc}",
  1346. "ok_hand_tone3": "\u{0001f44c}\u{0001f3fd}",
  1347. "ok_hand_tone4": "\u{0001f44c}\u{0001f3fe}",
  1348. "ok_hand_tone5": "\u{0001f44c}\u{0001f3ff}",
  1349. "raised_hand_tone1": "\u{0000270b}\u{0001f3fb}",
  1350. "raised_hand_tone2": "\u{0000270b}\u{0001f3fc}",
  1351. "raised_hand_tone3": "\u{0000270b}\u{0001f3fd}",
  1352. "raised_hand_tone4": "\u{0000270b}\u{0001f3fe}",
  1353. "raised_hand_tone5": "\u{0000270b}\u{0001f3ff}",
  1354. "open_hands_tone1": "\u{0001f450}\u{0001f3fb}",
  1355. "open_hands_tone2": "\u{0001f450}\u{0001f3fc}",
  1356. "open_hands_tone3": "\u{0001f450}\u{0001f3fd}",
  1357. "open_hands_tone4": "\u{0001f450}\u{0001f3fe}",
  1358. "open_hands_tone5": "\u{0001f450}\u{0001f3ff}",
  1359. "muscle_tone1": "\u{0001f4aa}\u{0001f3fb}",
  1360. "muscle_tone2": "\u{0001f4aa}\u{0001f3fc}",
  1361. "muscle_tone3": "\u{0001f4aa}\u{0001f3fd}",
  1362. "muscle_tone4": "\u{0001f4aa}\u{0001f3fe}",
  1363. "muscle_tone5": "\u{0001f4aa}\u{0001f3ff}",
  1364. "pray_tone1": "\u{0001f64f}\u{0001f3fb}",
  1365. "pray_tone2": "\u{0001f64f}\u{0001f3fc}",
  1366. "pray_tone3": "\u{0001f64f}\u{0001f3fd}",
  1367. "pray_tone4": "\u{0001f64f}\u{0001f3fe}",
  1368. "pray_tone5": "\u{0001f64f}\u{0001f3ff}",
  1369. "point_up_tone1": "\u{0000261d}\u{0001f3fb}",
  1370. "point_up_tone2": "\u{0000261d}\u{0001f3fc}",
  1371. "point_up_tone3": "\u{0000261d}\u{0001f3fd}",
  1372. "point_up_tone4": "\u{0000261d}\u{0001f3fe}",
  1373. "point_up_tone5": "\u{0000261d}\u{0001f3ff}",
  1374. "point_up_2_tone1": "\u{0001f446}\u{0001f3fb}",
  1375. "point_up_2_tone2": "\u{0001f446}\u{0001f3fc}",
  1376. "point_up_2_tone3": "\u{0001f446}\u{0001f3fd}",
  1377. "point_up_2_tone4": "\u{0001f446}\u{0001f3fe}",
  1378. "point_up_2_tone5": "\u{0001f446}\u{0001f3ff}",
  1379. "point_down_tone1": "\u{0001f447}\u{0001f3fb}",
  1380. "point_down_tone2": "\u{0001f447}\u{0001f3fc}",
  1381. "point_down_tone3": "\u{0001f447}\u{0001f3fd}",
  1382. "point_down_tone4": "\u{0001f447}\u{0001f3fe}",
  1383. "point_down_tone5": "\u{0001f447}\u{0001f3ff}",
  1384. "point_left_tone1": "\u{0001f448}\u{0001f3fb}",
  1385. "point_left_tone2": "\u{0001f448}\u{0001f3fc}",
  1386. "point_left_tone3": "\u{0001f448}\u{0001f3fd}",
  1387. "point_left_tone4": "\u{0001f448}\u{0001f3fe}",
  1388. "point_left_tone5": "\u{0001f448}\u{0001f3ff}",
  1389. "point_right_tone1": "\u{0001f449}\u{0001f3fb}",
  1390. "point_right_tone2": "\u{0001f449}\u{0001f3fc}",
  1391. "point_right_tone3": "\u{0001f449}\u{0001f3fd}",
  1392. "point_right_tone4": "\u{0001f449}\u{0001f3fe}",
  1393. "point_right_tone5": "\u{0001f449}\u{0001f3ff}",
  1394. "middle_finger_tone1": "\u{0001f595}\u{0001f3fb}",
  1395. "middle_finger_tone2": "\u{0001f595}\u{0001f3fc}",
  1396. "middle_finger_tone3": "\u{0001f595}\u{0001f3fd}",
  1397. "middle_finger_tone4": "\u{0001f595}\u{0001f3fe}",
  1398. "middle_finger_tone5": "\u{0001f595}\u{0001f3ff}",
  1399. "hand_splayed_tone1": "\u{0001f590}\u{0001f3fb}",
  1400. "hand_splayed_tone2": "\u{0001f590}\u{0001f3fc}",
  1401. "hand_splayed_tone3": "\u{0001f590}\u{0001f3fd}",
  1402. "hand_splayed_tone4": "\u{0001f590}\u{0001f3fe}",
  1403. "hand_splayed_tone5": "\u{0001f590}\u{0001f3ff}",
  1404. "metal_tone1": "\u{0001f918}\u{0001f3fb}",
  1405. "metal_tone2": "\u{0001f918}\u{0001f3fc}",
  1406. "metal_tone3": "\u{0001f918}\u{0001f3fd}",
  1407. "metal_tone4": "\u{0001f918}\u{0001f3fe}",
  1408. "metal_tone5": "\u{0001f918}\u{0001f3ff}",
  1409. "vulcan_tone1": "\u{0001f596}\u{0001f3fb}",
  1410. "vulcan_tone2": "\u{0001f596}\u{0001f3fc}",
  1411. "vulcan_tone3": "\u{0001f596}\u{0001f3fd}",
  1412. "vulcan_tone4": "\u{0001f596}\u{0001f3fe}",
  1413. "vulcan_tone5": "\u{0001f596}\u{0001f3ff}",
  1414. "writing_hand_tone1": "\u{0000270d}\u{0001f3fb}",
  1415. "writing_hand_tone2": "\u{0000270d}\u{0001f3fc}",
  1416. "writing_hand_tone3": "\u{0000270d}\u{0001f3fd}",
  1417. "writing_hand_tone4": "\u{0000270d}\u{0001f3fe}",
  1418. "writing_hand_tone5": "\u{0000270d}\u{0001f3ff}",
  1419. "nail_care_tone1": "\u{0001f485}\u{0001f3fb}",
  1420. "nail_care_tone2": "\u{0001f485}\u{0001f3fc}",
  1421. "nail_care_tone3": "\u{0001f485}\u{0001f3fd}",
  1422. "nail_care_tone4": "\u{0001f485}\u{0001f3fe}",
  1423. "nail_care_tone5": "\u{0001f485}\u{0001f3ff}",
  1424. "ear_tone1": "\u{0001f442}\u{0001f3fb}",
  1425. "ear_tone2": "\u{0001f442}\u{0001f3fc}",
  1426. "ear_tone3": "\u{0001f442}\u{0001f3fd}",
  1427. "ear_tone4": "\u{0001f442}\u{0001f3fe}",
  1428. "ear_tone5": "\u{0001f442}\u{0001f3ff}",
  1429. "nose_tone1": "\u{0001f443}\u{0001f3fb}",
  1430. "nose_tone2": "\u{0001f443}\u{0001f3fc}",
  1431. "nose_tone3": "\u{0001f443}\u{0001f3fd}",
  1432. "nose_tone4": "\u{0001f443}\u{0001f3fe}",
  1433. "nose_tone5": "\u{0001f443}\u{0001f3ff}",
  1434. "baby_tone1": "\u{0001f476}\u{0001f3fb}",
  1435. "baby_tone2": "\u{0001f476}\u{0001f3fc}",
  1436. "baby_tone3": "\u{0001f476}\u{0001f3fd}",
  1437. "baby_tone4": "\u{0001f476}\u{0001f3fe}",
  1438. "baby_tone5": "\u{0001f476}\u{0001f3ff}",
  1439. "boy_tone1": "\u{0001f466}\u{0001f3fb}",
  1440. "boy_tone2": "\u{0001f466}\u{0001f3fc}",
  1441. "boy_tone3": "\u{0001f466}\u{0001f3fd}",
  1442. "boy_tone4": "\u{0001f466}\u{0001f3fe}",
  1443. "boy_tone5": "\u{0001f466}\u{0001f3ff}",
  1444. "girl_tone1": "\u{0001f467}\u{0001f3fb}",
  1445. "girl_tone2": "\u{0001f467}\u{0001f3fc}",
  1446. "girl_tone3": "\u{0001f467}\u{0001f3fd}",
  1447. "girl_tone4": "\u{0001f467}\u{0001f3fe}",
  1448. "girl_tone5": "\u{0001f467}\u{0001f3ff}",
  1449. "man_tone1": "\u{0001f468}\u{0001f3fb}",
  1450. "man_tone2": "\u{0001f468}\u{0001f3fc}",
  1451. "man_tone3": "\u{0001f468}\u{0001f3fd}",
  1452. "man_tone4": "\u{0001f468}\u{0001f3fe}",
  1453. "man_tone5": "\u{0001f468}\u{0001f3ff}",
  1454. "woman_tone1": "\u{0001f469}\u{0001f3fb}",
  1455. "woman_tone2": "\u{0001f469}\u{0001f3fc}",
  1456. "woman_tone3": "\u{0001f469}\u{0001f3fd}",
  1457. "woman_tone4": "\u{0001f469}\u{0001f3fe}",
  1458. "woman_tone5": "\u{0001f469}\u{0001f3ff}",
  1459. "person_with_blond_hair_tone1": "\u{0001f471}\u{0001f3fb}",
  1460. "person_with_blond_hair_tone2": "\u{0001f471}\u{0001f3fc}",
  1461. "person_with_blond_hair_tone3": "\u{0001f471}\u{0001f3fd}",
  1462. "person_with_blond_hair_tone4": "\u{0001f471}\u{0001f3fe}",
  1463. "person_with_blond_hair_tone5": "\u{0001f471}\u{0001f3ff}",
  1464. "older_man_tone1": "\u{0001f474}\u{0001f3fb}",
  1465. "older_man_tone2": "\u{0001f474}\u{0001f3fc}",
  1466. "older_man_tone3": "\u{0001f474}\u{0001f3fd}",
  1467. "older_man_tone4": "\u{0001f474}\u{0001f3fe}",
  1468. "older_man_tone5": "\u{0001f474}\u{0001f3ff}",
  1469. "older_woman_tone1": "\u{0001f475}\u{0001f3fb}",
  1470. "older_woman_tone2": "\u{0001f475}\u{0001f3fc}",
  1471. "older_woman_tone3": "\u{0001f475}\u{0001f3fd}",
  1472. "older_woman_tone4": "\u{0001f475}\u{0001f3fe}",
  1473. "older_woman_tone5": "\u{0001f475}\u{0001f3ff}",
  1474. "man_with_gua_pi_mao_tone1": "\u{0001f472}\u{0001f3fb}",
  1475. "man_with_gua_pi_mao_tone2": "\u{0001f472}\u{0001f3fc}",
  1476. "man_with_gua_pi_mao_tone3": "\u{0001f472}\u{0001f3fd}",
  1477. "man_with_gua_pi_mao_tone4": "\u{0001f472}\u{0001f3fe}",
  1478. "man_with_gua_pi_mao_tone5": "\u{0001f472}\u{0001f3ff}",
  1479. "man_with_turban_tone1": "\u{0001f473}\u{0001f3fb}",
  1480. "man_with_turban_tone2": "\u{0001f473}\u{0001f3fc}",
  1481. "man_with_turban_tone3": "\u{0001f473}\u{0001f3fd}",
  1482. "man_with_turban_tone4": "\u{0001f473}\u{0001f3fe}",
  1483. "man_with_turban_tone5": "\u{0001f473}\u{0001f3ff}",
  1484. "cop_tone1": "\u{0001f46e}\u{0001f3fb}",
  1485. "cop_tone2": "\u{0001f46e}\u{0001f3fc}",
  1486. "cop_tone3": "\u{0001f46e}\u{0001f3fd}",
  1487. "cop_tone4": "\u{0001f46e}\u{0001f3fe}",
  1488. "cop_tone5": "\u{0001f46e}\u{0001f3ff}",
  1489. "construction_worker_tone1": "\u{0001f477}\u{0001f3fb}",
  1490. "construction_worker_tone2": "\u{0001f477}\u{0001f3fc}",
  1491. "construction_worker_tone3": "\u{0001f477}\u{0001f3fd}",
  1492. "construction_worker_tone4": "\u{0001f477}\u{0001f3fe}",
  1493. "construction_worker_tone5": "\u{0001f477}\u{0001f3ff}",
  1494. "guardsman_tone1": "\u{0001f482}\u{0001f3fb}",
  1495. "guardsman_tone2": "\u{0001f482}\u{0001f3fc}",
  1496. "guardsman_tone3": "\u{0001f482}\u{0001f3fd}",
  1497. "guardsman_tone4": "\u{0001f482}\u{0001f3fe}",
  1498. "guardsman_tone5": "\u{0001f482}\u{0001f3ff}",
  1499. "santa_tone1": "\u{0001f385}\u{0001f3fb}",
  1500. "santa_tone2": "\u{0001f385}\u{0001f3fc}",
  1501. "santa_tone3": "\u{0001f385}\u{0001f3fd}",
  1502. "santa_tone4": "\u{0001f385}\u{0001f3fe}",
  1503. "santa_tone5": "\u{0001f385}\u{0001f3ff}",
  1504. "angel_tone1": "\u{0001f47c}\u{0001f3fb}",
  1505. "angel_tone2": "\u{0001f47c}\u{0001f3fc}",
  1506. "angel_tone3": "\u{0001f47c}\u{0001f3fd}",
  1507. "angel_tone4": "\u{0001f47c}\u{0001f3fe}",
  1508. "angel_tone5": "\u{0001f47c}\u{0001f3ff}",
  1509. "princess_tone1": "\u{0001f478}\u{0001f3fb}",
  1510. "princess_tone2": "\u{0001f478}\u{0001f3fc}",
  1511. "princess_tone3": "\u{0001f478}\u{0001f3fd}",
  1512. "princess_tone4": "\u{0001f478}\u{0001f3fe}",
  1513. "princess_tone5": "\u{0001f478}\u{0001f3ff}",
  1514. "bride_with_veil_tone1": "\u{0001f470}\u{0001f3fb}",
  1515. "bride_with_veil_tone2": "\u{0001f470}\u{0001f3fc}",
  1516. "bride_with_veil_tone3": "\u{0001f470}\u{0001f3fd}",
  1517. "bride_with_veil_tone4": "\u{0001f470}\u{0001f3fe}",
  1518. "bride_with_veil_tone5": "\u{0001f470}\u{0001f3ff}",
  1519. "walking_tone1": "\u{0001f6b6}\u{0001f3fb}",
  1520. "walking_tone2": "\u{0001f6b6}\u{0001f3fc}",
  1521. "walking_tone3": "\u{0001f6b6}\u{0001f3fd}",
  1522. "walking_tone4": "\u{0001f6b6}\u{0001f3fe}",
  1523. "walking_tone5": "\u{0001f6b6}\u{0001f3ff}",
  1524. "runner_tone1": "\u{0001f3c3}\u{0001f3fb}",
  1525. "runner_tone2": "\u{0001f3c3}\u{0001f3fc}",
  1526. "runner_tone3": "\u{0001f3c3}\u{0001f3fd}",
  1527. "runner_tone4": "\u{0001f3c3}\u{0001f3fe}",
  1528. "runner_tone5": "\u{0001f3c3}\u{0001f3ff}",
  1529. "dancer_tone1": "\u{0001f483}\u{0001f3fb}",
  1530. "dancer_tone2": "\u{0001f483}\u{0001f3fc}",
  1531. "dancer_tone3": "\u{0001f483}\u{0001f3fd}",
  1532. "dancer_tone4": "\u{0001f483}\u{0001f3fe}",
  1533. "dancer_tone5": "\u{0001f483}\u{0001f3ff}",
  1534. "bow_tone1": "\u{0001f647}\u{0001f3fb}",
  1535. "bow_tone2": "\u{0001f647}\u{0001f3fc}",
  1536. "bow_tone3": "\u{0001f647}\u{0001f3fd}",
  1537. "bow_tone4": "\u{0001f647}\u{0001f3fe}",
  1538. "bow_tone5": "\u{0001f647}\u{0001f3ff}",
  1539. "information_desk_person_tone1": "\u{0001f481}\u{0001f3fb}",
  1540. "information_desk_person_tone2": "\u{0001f481}\u{0001f3fc}",
  1541. "information_desk_person_tone3": "\u{0001f481}\u{0001f3fd}",
  1542. "information_desk_person_tone4": "\u{0001f481}\u{0001f3fe}",
  1543. "information_desk_person_tone5": "\u{0001f481}\u{0001f3ff}",
  1544. "no_good_tone1": "\u{0001f645}\u{0001f3fb}",
  1545. "no_good_tone2": "\u{0001f645}\u{0001f3fc}",
  1546. "no_good_tone3": "\u{0001f645}\u{0001f3fd}",
  1547. "no_good_tone4": "\u{0001f645}\u{0001f3fe}",
  1548. "no_good_tone5": "\u{0001f645}\u{0001f3ff}",
  1549. "ok_woman_tone1": "\u{0001f646}\u{0001f3fb}",
  1550. "ok_woman_tone2": "\u{0001f646}\u{0001f3fc}",
  1551. "ok_woman_tone3": "\u{0001f646}\u{0001f3fd}",
  1552. "ok_woman_tone4": "\u{0001f646}\u{0001f3fe}",
  1553. "ok_woman_tone5": "\u{0001f646}\u{0001f3ff}",
  1554. "raising_hand_tone1": "\u{0001f64b}\u{0001f3fb}",
  1555. "raising_hand_tone2": "\u{0001f64b}\u{0001f3fc}",
  1556. "raising_hand_tone3": "\u{0001f64b}\u{0001f3fd}",
  1557. "raising_hand_tone4": "\u{0001f64b}\u{0001f3fe}",
  1558. "raising_hand_tone5": "\u{0001f64b}\u{0001f3ff}",
  1559. "person_with_pouting_face_tone1": "\u{0001f64e}\u{0001f3fb}",
  1560. "person_with_pouting_face_tone2": "\u{0001f64e}\u{0001f3fc}",
  1561. "person_with_pouting_face_tone3": "\u{0001f64e}\u{0001f3fd}",
  1562. "person_with_pouting_face_tone4": "\u{0001f64e}\u{0001f3fe}",
  1563. "person_with_pouting_face_tone5": "\u{0001f64e}\u{0001f3ff}",
  1564. "person_frowning_tone1": "\u{0001f64d}\u{0001f3fb}",
  1565. "person_frowning_tone2": "\u{0001f64d}\u{0001f3fc}",
  1566. "person_frowning_tone3": "\u{0001f64d}\u{0001f3fd}",
  1567. "person_frowning_tone4": "\u{0001f64d}\u{0001f3fe}",
  1568. "person_frowning_tone5": "\u{0001f64d}\u{0001f3ff}",
  1569. "haircut_tone1": "\u{0001f487}\u{0001f3fb}",
  1570. "haircut_tone2": "\u{0001f487}\u{0001f3fc}",
  1571. "haircut_tone3": "\u{0001f487}\u{0001f3fd}",
  1572. "haircut_tone4": "\u{0001f487}\u{0001f3fe}",
  1573. "haircut_tone5": "\u{0001f487}\u{0001f3ff}",
  1574. "massage_tone1": "\u{0001f486}\u{0001f3fb}",
  1575. "massage_tone2": "\u{0001f486}\u{0001f3fc}",
  1576. "massage_tone3": "\u{0001f486}\u{0001f3fd}",
  1577. "massage_tone4": "\u{0001f486}\u{0001f3fe}",
  1578. "massage_tone5": "\u{0001f486}\u{0001f3ff}",
  1579. "rowboat_tone1": "\u{0001f6a3}\u{0001f3fb}",
  1580. "rowboat_tone2": "\u{0001f6a3}\u{0001f3fc}",
  1581. "rowboat_tone3": "\u{0001f6a3}\u{0001f3fd}",
  1582. "rowboat_tone4": "\u{0001f6a3}\u{0001f3fe}",
  1583. "rowboat_tone5": "\u{0001f6a3}\u{0001f3ff}",
  1584. "swimmer_tone1": "\u{0001f3ca}\u{0001f3fb}",
  1585. "swimmer_tone2": "\u{0001f3ca}\u{0001f3fc}",
  1586. "swimmer_tone3": "\u{0001f3ca}\u{0001f3fd}",
  1587. "swimmer_tone4": "\u{0001f3ca}\u{0001f3fe}",
  1588. "swimmer_tone5": "\u{0001f3ca}\u{0001f3ff}",
  1589. "surfer_tone1": "\u{0001f3c4}\u{0001f3fb}",
  1590. "surfer_tone2": "\u{0001f3c4}\u{0001f3fc}",
  1591. "surfer_tone3": "\u{0001f3c4}\u{0001f3fd}",
  1592. "surfer_tone4": "\u{0001f3c4}\u{0001f3fe}",
  1593. "surfer_tone5": "\u{0001f3c4}\u{0001f3ff}",
  1594. "bath_tone1": "\u{0001f6c0}\u{0001f3fb}",
  1595. "bath_tone2": "\u{0001f6c0}\u{0001f3fc}",
  1596. "bath_tone3": "\u{0001f6c0}\u{0001f3fd}",
  1597. "bath_tone4": "\u{0001f6c0}\u{0001f3fe}",
  1598. "bath_tone5": "\u{0001f6c0}\u{0001f3ff}",
  1599. "basketball_player_tone1": "\u{000026f9}\u{0001f3fb}",
  1600. "basketball_player_tone2": "\u{000026f9}\u{0001f3fc}",
  1601. "basketball_player_tone3": "\u{000026f9}\u{0001f3fd}",
  1602. "basketball_player_tone4": "\u{000026f9}\u{0001f3fe}",
  1603. "basketball_player_tone5": "\u{000026f9}\u{0001f3ff}",
  1604. "lifter_tone1": "\u{0001f3cb}\u{0001f3fb}",
  1605. "lifter_tone2": "\u{0001f3cb}\u{0001f3fc}",
  1606. "lifter_tone3": "\u{0001f3cb}\u{0001f3fd}",
  1607. "lifter_tone4": "\u{0001f3cb}\u{0001f3fe}",
  1608. "lifter_tone5": "\u{0001f3cb}\u{0001f3ff}",
  1609. "bicyclist_tone1": "\u{0001f6b4}\u{0001f3fb}",
  1610. "bicyclist_tone2": "\u{0001f6b4}\u{0001f3fc}",
  1611. "bicyclist_tone3": "\u{0001f6b4}\u{0001f3fd}",
  1612. "bicyclist_tone4": "\u{0001f6b4}\u{0001f3fe}",
  1613. "bicyclist_tone5": "\u{0001f6b4}\u{0001f3ff}",
  1614. "mountain_bicyclist_tone1": "\u{0001f6b5}\u{0001f3fb}",
  1615. "mountain_bicyclist_tone2": "\u{0001f6b5}\u{0001f3fc}",
  1616. "mountain_bicyclist_tone3": "\u{0001f6b5}\u{0001f3fd}",
  1617. "mountain_bicyclist_tone4": "\u{0001f6b5}\u{0001f3fe}",
  1618. "mountain_bicyclist_tone5": "\u{0001f6b5}\u{0001f3ff}",
  1619. "horse_racing_tone1": "\u{0001f3c7}\u{0001f3fb}",
  1620. "horse_racing_tone2": "\u{0001f3c7}\u{0001f3fc}",
  1621. "horse_racing_tone3": "\u{0001f3c7}\u{0001f3fd}",
  1622. "horse_racing_tone4": "\u{0001f3c7}\u{0001f3fe}",
  1623. "horse_racing_tone5": "\u{0001f3c7}\u{0001f3ff}",
  1624. "spy_tone1": "\u{0001f575}\u{0001f3fb}",
  1625. "spy_tone2": "\u{0001f575}\u{0001f3fc}",
  1626. "spy_tone3": "\u{0001f575}\u{0001f3fd}",
  1627. "spy_tone4": "\u{0001f575}\u{0001f3fe}",
  1628. "spy_tone5": "\u{0001f575}\u{0001f3ff}",
  1629. "tone1": "\u{0001f3fb}",
  1630. "tone2": "\u{0001f3fc}",
  1631. "tone3": "\u{0001f3fd}",
  1632. "tone4": "\u{0001f3fe}",
  1633. "tone5": "\u{0001f3ff}",
  1634. "prince_tone1": "\u{0001f934}\u{0001f3fb}",
  1635. "prince_tone2": "\u{0001f934}\u{0001f3fc}",
  1636. "prince_tone3": "\u{0001f934}\u{0001f3fd}",
  1637. "prince_tone4": "\u{0001f934}\u{0001f3fe}",
  1638. "prince_tone5": "\u{0001f934}\u{0001f3ff}",
  1639. "mrs_claus_tone1": "\u{0001f936}\u{0001f3fb}",
  1640. "mrs_claus_tone2": "\u{0001f936}\u{0001f3fc}",
  1641. "mrs_claus_tone3": "\u{0001f936}\u{0001f3fd}",
  1642. "mrs_claus_tone4": "\u{0001f936}\u{0001f3fe}",
  1643. "mrs_claus_tone5": "\u{0001f936}\u{0001f3ff}",
  1644. "man_in_tuxedo_tone1": "\u{0001f935}\u{0001f3fb}",
  1645. "man_in_tuxedo_tone2": "\u{0001f935}\u{0001f3fc}",
  1646. "man_in_tuxedo_tone3": "\u{0001f935}\u{0001f3fd}",
  1647. "man_in_tuxedo_tone4": "\u{0001f935}\u{0001f3fe}",
  1648. "man_in_tuxedo_tone5": "\u{0001f935}\u{0001f3ff}",
  1649. "shrug_tone1": "\u{0001f937}\u{0001f3fb}",
  1650. "shrug_tone2": "\u{0001f937}\u{0001f3fc}",
  1651. "shrug_tone3": "\u{0001f937}\u{0001f3fd}",
  1652. "shrug_tone4": "\u{0001f937}\u{0001f3fe}",
  1653. "shrug_tone5": "\u{0001f937}\u{0001f3ff}",
  1654. "face_palm_tone1": "\u{0001f926}\u{0001f3fb}",
  1655. "face_palm_tone2": "\u{0001f926}\u{0001f3fc}",
  1656. "face_palm_tone3": "\u{0001f926}\u{0001f3fd}",
  1657. "face_palm_tone4": "\u{0001f926}\u{0001f3fe}",
  1658. "face_palm_tone5": "\u{0001f926}\u{0001f3ff}",
  1659. "pregnant_woman_tone1": "\u{0001f930}\u{0001f3fb}",
  1660. "pregnant_woman_tone2": "\u{0001f930}\u{0001f3fc}",
  1661. "pregnant_woman_tone3": "\u{0001f930}\u{0001f3fd}",
  1662. "pregnant_woman_tone4": "\u{0001f930}\u{0001f3fe}",
  1663. "pregnant_woman_tone5": "\u{0001f930}\u{0001f3ff}",
  1664. "man_dancing_tone1": "\u{0001f57a}\u{0001f3fb}",
  1665. "man_dancing_tone2": "\u{0001f57a}\u{0001f3fc}",
  1666. "man_dancing_tone3": "\u{0001f57a}\u{0001f3fd}",
  1667. "man_dancing_tone4": "\u{0001f57a}\u{0001f3fe}",
  1668. "man_dancing_tone5": "\u{0001f57a}\u{0001f3ff}",
  1669. "selfie_tone1": "\u{0001f933}\u{0001f3fb}",
  1670. "selfie_tone2": "\u{0001f933}\u{0001f3fc}",
  1671. "selfie_tone3": "\u{0001f933}\u{0001f3fd}",
  1672. "selfie_tone4": "\u{0001f933}\u{0001f3fe}",
  1673. "selfie_tone5": "\u{0001f933}\u{0001f3ff}",
  1674. "fingers_crossed_tone1": "\u{0001f91e}\u{0001f3fb}",
  1675. "fingers_crossed_tone2": "\u{0001f91e}\u{0001f3fc}",
  1676. "fingers_crossed_tone3": "\u{0001f91e}\u{0001f3fd}",
  1677. "fingers_crossed_tone4": "\u{0001f91e}\u{0001f3fe}",
  1678. "fingers_crossed_tone5": "\u{0001f91e}\u{0001f3ff}",
  1679. "call_me_tone1": "\u{0001f919}\u{0001f3fb}",
  1680. "call_me_tone2": "\u{0001f919}\u{0001f3fc}",
  1681. "call_me_tone3": "\u{0001f919}\u{0001f3fd}",
  1682. "call_me_tone4": "\u{0001f919}\u{0001f3fe}",
  1683. "call_me_tone5": "\u{0001f919}\u{0001f3ff}",
  1684. "left_facing_fist_tone1": "\u{0001f91b}\u{0001f3fb}",
  1685. "left_facing_fist_tone2": "\u{0001f91b}\u{0001f3fc}",
  1686. "left_facing_fist_tone3": "\u{0001f91b}\u{0001f3fd}",
  1687. "left_facing_fist_tone4": "\u{0001f91b}\u{0001f3fe}",
  1688. "left_facing_fist_tone5": "\u{0001f91b}\u{0001f3ff}",
  1689. "right_facing_fist_tone1": "\u{0001f91c}\u{0001f3fb}",
  1690. "right_facing_fist_tone2": "\u{0001f91c}\u{0001f3fc}",
  1691. "right_facing_fist_tone3": "\u{0001f91c}\u{0001f3fd}",
  1692. "right_facing_fist_tone4": "\u{0001f91c}\u{0001f3fe}",
  1693. "right_facing_fist_tone5": "\u{0001f91c}\u{0001f3ff}",
  1694. "raised_back_of_hand_tone1": "\u{0001f91a}\u{0001f3fb}",
  1695. "raised_back_of_hand_tone2": "\u{0001f91a}\u{0001f3fc}",
  1696. "raised_back_of_hand_tone3": "\u{0001f91a}\u{0001f3fd}",
  1697. "raised_back_of_hand_tone4": "\u{0001f91a}\u{0001f3fe}",
  1698. "raised_back_of_hand_tone5": "\u{0001f91a}\u{0001f3ff}",
  1699. "handshake_tone1": "\u{0001f91d}\u{0001f3fb}",
  1700. "handshake_tone2": "\u{0001f91d}\u{0001f3fc}",
  1701. "handshake_tone3": "\u{0001f91d}\u{0001f3fd}",
  1702. "handshake_tone4": "\u{0001f91d}\u{0001f3fe}",
  1703. "handshake_tone5": "\u{0001f91d}\u{0001f3ff}",
  1704. "cartwheel_tone1": "\u{0001f938}\u{0001f3fb}",
  1705. "cartwheel_tone2": "\u{0001f938}\u{0001f3fc}",
  1706. "cartwheel_tone3": "\u{0001f938}\u{0001f3fd}",
  1707. "cartwheel_tone4": "\u{0001f938}\u{0001f3fe}",
  1708. "cartwheel_tone5": "\u{0001f938}\u{0001f3ff}",
  1709. "wrestlers_tone1": "\u{0001f93c}\u{0001f3fb}",
  1710. "wrestlers_tone2": "\u{0001f93c}\u{0001f3fc}",
  1711. "wrestlers_tone3": "\u{0001f93c}\u{0001f3fd}",
  1712. "wrestlers_tone4": "\u{0001f93c}\u{0001f3fe}",
  1713. "wrestlers_tone5": "\u{0001f93c}\u{0001f3ff}",
  1714. "water_polo_tone1": "\u{0001f93d}\u{0001f3fb}",
  1715. "water_polo_tone2": "\u{0001f93d}\u{0001f3fc}",
  1716. "water_polo_tone3": "\u{0001f93d}\u{0001f3fd}",
  1717. "water_polo_tone4": "\u{0001f93d}\u{0001f3fe}",
  1718. "water_polo_tone5": "\u{0001f93d}\u{0001f3ff}",
  1719. "handball_tone1": "\u{0001f93e}\u{0001f3fb}",
  1720. "handball_tone2": "\u{0001f93e}\u{0001f3fc}",
  1721. "handball_tone3": "\u{0001f93e}\u{0001f3fd}",
  1722. "handball_tone4": "\u{0001f93e}\u{0001f3fe}",
  1723. "handball_tone5": "\u{0001f93e}\u{0001f3ff}",
  1724. "juggling_tone1": "\u{0001f939}\u{0001f3fb}",
  1725. "juggling_tone2": "\u{0001f939}\u{0001f3fc}",
  1726. "juggling_tone3": "\u{0001f939}\u{0001f3fd}",
  1727. "juggling_tone4": "\u{0001f939}\u{0001f3fe}",
  1728. "juggling_tone5": "\u{0001f939}\u{0001f3ff}",
  1729. "speech_left": "\u{0001f5e8}",
  1730. "eject": "\u{000023cf}",
  1731. "gay_pride_flag": "\u{0001f3f3}\u{0001f308}",
  1732. "cowboy": "\u{0001f920}",
  1733. "clown": "\u{0001f921}",
  1734. "nauseated_face": "\u{0001f922}",
  1735. "rofl": "\u{0001f923}",
  1736. "drooling_face": "\u{0001f924}",
  1737. "lying_face": "\u{0001f925}",
  1738. "sneezing_face": "\u{0001f927}",
  1739. "prince": "\u{0001f934}",
  1740. "man_in_tuxedo": "\u{0001f935}",
  1741. "mrs_claus": "\u{0001f936}",
  1742. "face_palm": "\u{0001f926}",
  1743. "shrug": "\u{0001f937}",
  1744. "pregnant_woman": "\u{0001f930}",
  1745. "selfie": "\u{0001f933}",
  1746. "man_dancing": "\u{0001f57a}",
  1747. "call_me": "\u{0001f919}",
  1748. "raised_back_of_hand": "\u{0001f91a}",
  1749. "left_facing_fist": "\u{0001f91b}",
  1750. "right_facing_fist": "\u{0001f91c}",
  1751. "handshake": "\u{0001f91d}",
  1752. "fingers_crossed": "\u{0001f91e}",
  1753. "black_heart": "\u{0001f5a4}",
  1754. "eagle": "\u{0001f985}",
  1755. "duck": "\u{0001f986}",
  1756. "bat": "\u{0001f987}",
  1757. "shark": "\u{0001f988}",
  1758. "owl": "\u{0001f989}",
  1759. "fox": "\u{0001f98a}",
  1760. "butterfly": "\u{0001f98b}",
  1761. "deer": "\u{0001f98c}",
  1762. "gorilla": "\u{0001f98d}",
  1763. "lizard": "\u{0001f98e}",
  1764. "rhino": "\u{0001f98f}",
  1765. "wilted_rose": "\u{0001f940}",
  1766. "croissant": "\u{0001f950}",
  1767. "avocado": "\u{0001f951}",
  1768. "cucumber": "\u{0001f952}",
  1769. "bacon": "\u{0001f953}",
  1770. "potato": "\u{0001f954}",
  1771. "carrot": "\u{0001f955}",
  1772. "french_bread": "\u{0001f956}",
  1773. "salad": "\u{0001f957}",
  1774. "shallow_pan_of_food": "\u{0001f958}",
  1775. "stuffed_flatbread": "\u{0001f959}",
  1776. "champagne_glass": "\u{0001f942}",
  1777. "tumbler_glass": "\u{0001f943}",
  1778. "spoon": "\u{0001f944}",
  1779. "octagonal_sign": "\u{0001f6d1}",
  1780. "shopping_cart": "\u{0001f6d2}",
  1781. "scooter": "\u{0001f6f4}",
  1782. "motor_scooter": "\u{0001f6f5}",
  1783. "canoe": "\u{0001f6f6}",
  1784. "cartwheel": "\u{0001f938}",
  1785. "juggling": "\u{0001f939}",
  1786. "wrestlers": "\u{0001f93c}",
  1787. "boxing_glove": "\u{0001f94a}",
  1788. "martial_arts_uniform": "\u{0001f94b}",
  1789. "water_polo": "\u{0001f93d}",
  1790. "handball": "\u{0001f93e}",
  1791. "goal": "\u{0001f945}",
  1792. "fencer": "\u{0001f93a}",
  1793. "first_place": "\u{0001f947}",
  1794. "second_place": "\u{0001f948}",
  1795. "third_place": "\u{0001f949}",
  1796. "drum": "\u{0001f941}",
  1797. "shrimp": "\u{0001f990}",
  1798. "squid": "\u{0001f991}",
  1799. "egg": "\u{0001f95a}",
  1800. "milk": "\u{0001f95b}",
  1801. "peanuts": "\u{0001f95c}",
  1802. "kiwi": "\u{0001f95d}",
  1803. "pancakes": "\u{0001f95e}",
  1804. "regional_indicator_z": "\u{0001f1ff}",
  1805. "regional_indicator_y": "\u{0001f1fe}",
  1806. "regional_indicator_x": "\u{0001f1fd}",
  1807. "regional_indicator_w": "\u{0001f1fc}",
  1808. "regional_indicator_v": "\u{0001f1fb}",
  1809. "regional_indicator_u": "\u{0001f1fa}",
  1810. "regional_indicator_t": "\u{0001f1f9}",
  1811. "regional_indicator_s": "\u{0001f1f8}",
  1812. "regional_indicator_r": "\u{0001f1f7}",
  1813. "regional_indicator_q": "\u{0001f1f6}",
  1814. "regional_indicator_p": "\u{0001f1f5}",
  1815. "regional_indicator_o": "\u{0001f1f4}",
  1816. "regional_indicator_n": "\u{0001f1f3}",
  1817. "regional_indicator_m": "\u{0001f1f2}",
  1818. "regional_indicator_l": "\u{0001f1f1}",
  1819. "regional_indicator_k": "\u{0001f1f0}",
  1820. "regional_indicator_j": "\u{0001f1ef}",
  1821. "regional_indicator_i": "\u{0001f1ee}",
  1822. "regional_indicator_h": "\u{0001f1ed}",
  1823. "regional_indicator_g": "\u{0001f1ec}",
  1824. "regional_indicator_f": "\u{0001f1eb}",
  1825. "regional_indicator_e": "\u{0001f1ea}",
  1826. "regional_indicator_d": "\u{0001f1e9}",
  1827. "regional_indicator_c": "\u{0001f1e8}",
  1828. "regional_indicator_b": "\u{0001f1e7}",
  1829. "regional_indicator_a": "\u{0001f1e6}",
  1830. ]
  1831. static func transform(string: String) -> String {
  1832. let oldString = string as NSString
  1833. var transformedString = string as NSString
  1834. let regex = try! NSRegularExpression(pattern: ":([-+\\w]+):", options: [])
  1835. let matches = regex.matches(in: transformedString as String, options: [], range: NSMakeRange(0, transformedString.length))
  1836. for result in matches {
  1837. guard result.numberOfRanges == 2 else { continue }
  1838. let shortname = oldString.substring(with: result.rangeAt(1))
  1839. if let emoji = values[shortname] {
  1840. transformedString = transformedString.replacingOccurrences(of: ":\(shortname):", with: emoji) as NSString
  1841. }
  1842. }
  1843. return transformedString as String
  1844. }
  1845. }
  1846. Emojione.transform(string: "Tractor: :tractor:")
  1847. Emojione.transform(string: "Rocket.Chat: :rocket: :tractor: :thumbsup: :bomb: :fire: :foobar:")
  1848. Emojione.transform(string: "Regional Indicator A: :regional_indicator_a:")