@cherry-markdown/cherry-markdown-dev 0.8.58-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (319) hide show
  1. package/package.json +149 -0
  2. package/src/Cherry.config.js +625 -0
  3. package/src/Cherry.js +1104 -0
  4. package/src/CherryStatic.js +70 -0
  5. package/src/Editor.js +748 -0
  6. package/src/Engine.js +381 -0
  7. package/src/Event.js +140 -0
  8. package/src/Factory.js +180 -0
  9. package/src/Logger.js +31 -0
  10. package/src/Previewer.js +1183 -0
  11. package/src/Sanitizer.js +4 -0
  12. package/src/Sanitizer.node.js +7 -0
  13. package/src/UrlCache.js +98 -0
  14. package/src/addons/advance/cherry-table-echarts-plugin.js +170 -0
  15. package/src/addons/cherry-code-block-mermaid-plugin.js +158 -0
  16. package/src/addons/cherry-code-block-plantuml-plugin.js +106 -0
  17. package/src/core/HookCenter.js +297 -0
  18. package/src/core/HooksConfig.js +100 -0
  19. package/src/core/ParagraphBase.js +332 -0
  20. package/src/core/SentenceBase.js +65 -0
  21. package/src/core/SyntaxBase.js +194 -0
  22. package/src/core/hooks/AutoLink.js +232 -0
  23. package/src/core/hooks/BackgroundColor.js +46 -0
  24. package/src/core/hooks/Blockquote.js +70 -0
  25. package/src/core/hooks/Br.js +85 -0
  26. package/src/core/hooks/CodeBlock.js +446 -0
  27. package/src/core/hooks/Color.js +46 -0
  28. package/src/core/hooks/CommentReference.js +96 -0
  29. package/src/core/hooks/Detail.js +108 -0
  30. package/src/core/hooks/Emoji.config.js +1825 -0
  31. package/src/core/hooks/Emoji.js +119 -0
  32. package/src/core/hooks/Emphasis.js +113 -0
  33. package/src/core/hooks/Footnote.js +125 -0
  34. package/src/core/hooks/FrontMatter.js +51 -0
  35. package/src/core/hooks/Header.js +234 -0
  36. package/src/core/hooks/HighLight.js +37 -0
  37. package/src/core/hooks/Hr.js +52 -0
  38. package/src/core/hooks/HtmlBlock.js +184 -0
  39. package/src/core/hooks/Image.js +174 -0
  40. package/src/core/hooks/InlineCode.js +48 -0
  41. package/src/core/hooks/InlineMath.js +107 -0
  42. package/src/core/hooks/Link.js +160 -0
  43. package/src/core/hooks/List.js +264 -0
  44. package/src/core/hooks/MathBlock.js +103 -0
  45. package/src/core/hooks/Panel.js +145 -0
  46. package/src/core/hooks/Paragraph.js +84 -0
  47. package/src/core/hooks/Ruby.js +34 -0
  48. package/src/core/hooks/Size.js +51 -0
  49. package/src/core/hooks/Strikethrough.js +54 -0
  50. package/src/core/hooks/Sub.js +47 -0
  51. package/src/core/hooks/SuggestList.js +333 -0
  52. package/src/core/hooks/Suggester.js +707 -0
  53. package/src/core/hooks/Sup.js +47 -0
  54. package/src/core/hooks/Table.js +275 -0
  55. package/src/core/hooks/Toc.js +292 -0
  56. package/src/core/hooks/Transfer.js +47 -0
  57. package/src/core/hooks/Underline.js +37 -0
  58. package/src/index.core.js +29 -0
  59. package/src/index.engine.core.js +68 -0
  60. package/src/index.engine.js +28 -0
  61. package/src/index.js +32 -0
  62. package/src/libs/mermaidAPI.8.4.8.js +1 -0
  63. package/src/libs/mermaidAPI.8.5.2.js +42 -0
  64. package/src/libs/rawdeflate.js +1663 -0
  65. package/src/locales/en_US.js +139 -0
  66. package/src/locales/index.js +25 -0
  67. package/src/locales/ru_RU.js +139 -0
  68. package/src/locales/zh_CN.js +142 -0
  69. package/src/sass/base.scss +26 -0
  70. package/src/sass/bubble_formula.scss +166 -0
  71. package/src/sass/ch-icon.scss +118 -0
  72. package/src/sass/cherry.scss +1116 -0
  73. package/src/sass/components/bubble.scss +173 -0
  74. package/src/sass/components/shortcut_key_config.scss +108 -0
  75. package/src/sass/formula_utils_bubble.scss +82 -0
  76. package/src/sass/icon_template.scss +24 -0
  77. package/src/sass/icons/uEA03-list.svg +19 -0
  78. package/src/sass/icons/uEA04-check.svg +14 -0
  79. package/src/sass/icons/uEA09-square.svg +10 -0
  80. package/src/sass/icons/uEA0A-bold.svg +20 -0
  81. package/src/sass/icons/uEA0B-code.svg +18 -0
  82. package/src/sass/icons/uEA0C-color.svg +13 -0
  83. package/src/sass/icons/uEA0D-header.svg +8 -0
  84. package/src/sass/icons/uEA0E-image.svg +15 -0
  85. package/src/sass/icons/uEA0F-italic.svg +8 -0
  86. package/src/sass/icons/uEA10-link.svg +16 -0
  87. package/src/sass/icons/uEA11-ol.svg +21 -0
  88. package/src/sass/icons/uEA12-size.svg +11 -0
  89. package/src/sass/icons/uEA13-strike.svg +16 -0
  90. package/src/sass/icons/uEA14-table.svg +12 -0
  91. package/src/sass/icons/uEA15-ul.svg +17 -0
  92. package/src/sass/icons/uEA16-underline.svg +13 -0
  93. package/src/sass/icons/uEA17-word.svg +16 -0
  94. package/src/sass/icons/uEA18-blockquote.svg +11 -0
  95. package/src/sass/icons/uEA19-font.svg +10 -0
  96. package/src/sass/icons/uEA1F-insertClass.svg +39 -0
  97. package/src/sass/icons/uEA20-insertFlow.svg +8 -0
  98. package/src/sass/icons/uEA21-insertFormula.svg +23 -0
  99. package/src/sass/icons/uEA22-insertGantt.svg +13 -0
  100. package/src/sass/icons/uEA23-insertGraph.svg +13 -0
  101. package/src/sass/icons/uEA24-insertPie.svg +19 -0
  102. package/src/sass/icons/uEA25-insertSeq.svg +20 -0
  103. package/src/sass/icons/uEA26-insertState.svg +35 -0
  104. package/src/sass/icons/uEA27-line.svg +11 -0
  105. package/src/sass/icons/uEA28-preview.svg +18 -0
  106. package/src/sass/icons/uEA29-previewClose.svg +24 -0
  107. package/src/sass/icons/uEA2A-toc.svg +24 -0
  108. package/src/sass/icons/uEA2D-sub.svg +15 -0
  109. package/src/sass/icons/uEA2E-sup.svg +15 -0
  110. package/src/sass/icons/uEA2F-h1.svg +16 -0
  111. package/src/sass/icons/uEA30-h2.svg +20 -0
  112. package/src/sass/icons/uEA31-h3.svg +23 -0
  113. package/src/sass/icons/uEA32-h4.svg +16 -0
  114. package/src/sass/icons/uEA33-h5.svg +20 -0
  115. package/src/sass/icons/uEA34-h6.svg +17 -0
  116. package/src/sass/icons/uEA35-video.svg +20 -0
  117. package/src/sass/icons/uEA36-insert.svg +25 -0
  118. package/src/sass/icons/uEA37-little_table.svg +30 -0
  119. package/src/sass/icons/uEA38-pdf.svg +27 -0
  120. package/src/sass/icons/uEA39-checklist.svg +22 -0
  121. package/src/sass/icons/uEA40-close.svg +12 -0
  122. package/src/sass/icons/uEA41-fullscreen.svg +81 -0
  123. package/src/sass/icons/uEA42-minscreen.svg +77 -0
  124. package/src/sass/icons/uEA43-insertChart.svg +23 -0
  125. package/src/sass/icons/uEA44-question.svg +25 -0
  126. package/src/sass/icons/uEA45-settings.svg +32 -0
  127. package/src/sass/icons/uEA46-ok.svg +7 -0
  128. package/src/sass/icons/uEA47-br.svg +22 -0
  129. package/src/sass/icons/uEA48-normal.svg +15 -0
  130. package/src/sass/icons/uEA49-undo.svg +19 -0
  131. package/src/sass/icons/uEA50-redo.svg +21 -0
  132. package/src/sass/icons/uEA51-copy.svg +6 -0
  133. package/src/sass/icons/uEA52-phone.svg +5 -0
  134. package/src/sass/icons/uEA53-cherry-table-delete.svg +17 -0
  135. package/src/sass/icons/uEA54-cherry-table-insert-bottom.svg +16 -0
  136. package/src/sass/icons/uEA55-cherry-table-insert-left.svg +15 -0
  137. package/src/sass/icons/uEA56-cherry-table-insert-right.svg +16 -0
  138. package/src/sass/icons/uEA57-cherry-table-insert-top.svg +16 -0
  139. package/src/sass/icons/uEA58-sort-s.svg +13 -0
  140. package/src/sass/icons/uEA59-pinyin.svg +1 -0
  141. package/src/sass/icons/uEA5A-create.svg +24 -0
  142. package/src/sass/icons/uEA5B-download.svg +34 -0
  143. package/src/sass/icons/uEA5C-edit.svg +3 -0
  144. package/src/sass/icons/uEA5D-export.svg +53 -0
  145. package/src/sass/icons/uEA5E-folder-open.svg +3 -0
  146. package/src/sass/icons/uEA5F-folder.svg +3 -0
  147. package/src/sass/icons/uEA60-help.svg +5 -0
  148. package/src/sass/icons/uEA61-pen-fill.svg +13 -0
  149. package/src/sass/icons/uEA62-pen.svg +3 -0
  150. package/src/sass/icons/uEA64-tips.svg +5 -0
  151. package/src/sass/icons/uEA65-warn.svg +5 -0
  152. package/src/sass/icons/uEA66-mistake.svg +4 -0
  153. package/src/sass/icons/uEA67-success.svg +4 -0
  154. package/src/sass/icons/uEA68-danger.svg +4 -0
  155. package/src/sass/icons/uEA69-info.svg +5 -0
  156. package/src/sass/icons/uEA6A-primary.svg +5 -0
  157. package/src/sass/icons/uEA6B-warning.svg +5 -0
  158. package/src/sass/icons/uEA6C-justify.svg +19 -0
  159. package/src/sass/icons/uEA6D-justifyCenter.svg +19 -0
  160. package/src/sass/icons/uEA6E-justifyLeft.svg +19 -0
  161. package/src/sass/icons/uEA6F-justifyRight.svg +19 -0
  162. package/src/sass/icons/uEA70-chevronsLeft.svg +1 -0
  163. package/src/sass/icons/uEA71-chevronsRight.svg +1 -0
  164. package/src/sass/icons/uEA72-trendingUp.svg +1 -0
  165. package/src/sass/icons/uEA74-codeBlock.svg +1 -0
  166. package/src/sass/icons/uEA75-expand.svg +3 -0
  167. package/src/sass/icons/uEA76-unExpand.svg +3 -0
  168. package/src/sass/icons/uEA77-swap-vert.svg +1 -0
  169. package/src/sass/icons/uEA78-swap.svg +1 -0
  170. package/src/sass/icons/uEA79-keyboard.svg +1 -0
  171. package/src/sass/icons/uEA7A-command.svg +1 -0
  172. package/src/sass/icons/uEA7B-search.svg +1 -0
  173. package/src/sass/index.scss +3 -0
  174. package/src/sass/markdown.scss +668 -0
  175. package/src/sass/markdown_pure.scss +9 -0
  176. package/src/sass/prettyprint/prettyprint.scss +118 -0
  177. package/src/sass/previewer.scss +179 -0
  178. package/src/sass/print.scss +13 -0
  179. package/src/sass/prism/coy.scss +220 -0
  180. package/src/sass/prism/dark.scss +132 -0
  181. package/src/sass/prism/default.scss +143 -0
  182. package/src/sass/prism/funky.scss +133 -0
  183. package/src/sass/prism/okaidia.scss +126 -0
  184. package/src/sass/prism/one-dark.scss +440 -0
  185. package/src/sass/prism/one-light.scss +428 -0
  186. package/src/sass/prism/solarized-light.scss +153 -0
  187. package/src/sass/prism/tomorrow-night.scss +125 -0
  188. package/src/sass/prism/twilight.scss +202 -0
  189. package/src/sass/prism/vs-dark.scss +275 -0
  190. package/src/sass/prism/vs-light.scss +168 -0
  191. package/src/sass/themes/blue.scss +411 -0
  192. package/src/sass/themes/dark.scss +517 -0
  193. package/src/sass/themes/default.scss +255 -0
  194. package/src/sass/themes/green.scss +395 -0
  195. package/src/sass/themes/light.scss +368 -0
  196. package/src/sass/themes/red.scss +397 -0
  197. package/src/sass/themes/violet.scss +410 -0
  198. package/src/sass/variable.scss +84 -0
  199. package/src/toolbars/Bubble.js +234 -0
  200. package/src/toolbars/BubbleFormula.js +298 -0
  201. package/src/toolbars/BubbleTable.js +147 -0
  202. package/src/toolbars/FloatMenu.js +131 -0
  203. package/src/toolbars/HiddenToolbar.js +36 -0
  204. package/src/toolbars/HookCenter.js +234 -0
  205. package/src/toolbars/MenuBase.js +569 -0
  206. package/src/toolbars/PreviewerBubble.js +608 -0
  207. package/src/toolbars/ShortcutKeyConfigPanel.js +345 -0
  208. package/src/toolbars/Sidebar.js +36 -0
  209. package/src/toolbars/Toc.js +242 -0
  210. package/src/toolbars/Toolbar.js +449 -0
  211. package/src/toolbars/ToolbarRight.js +37 -0
  212. package/src/toolbars/hooks/Audio.js +79 -0
  213. package/src/toolbars/hooks/BarTable.js +41 -0
  214. package/src/toolbars/hooks/Bold.js +73 -0
  215. package/src/toolbars/hooks/Br.js +34 -0
  216. package/src/toolbars/hooks/ChangeLocale.js +62 -0
  217. package/src/toolbars/hooks/ChatGpt.js +182 -0
  218. package/src/toolbars/hooks/CheckList.js +41 -0
  219. package/src/toolbars/hooks/Code.js +49 -0
  220. package/src/toolbars/hooks/CodeTheme.js +66 -0
  221. package/src/toolbars/hooks/Color.js +298 -0
  222. package/src/toolbars/hooks/Copy.js +141 -0
  223. package/src/toolbars/hooks/Detail.js +69 -0
  224. package/src/toolbars/hooks/DrawIo.js +57 -0
  225. package/src/toolbars/hooks/Export.js +49 -0
  226. package/src/toolbars/hooks/File.js +79 -0
  227. package/src/toolbars/hooks/Formula.js +69 -0
  228. package/src/toolbars/hooks/FullScreen.js +50 -0
  229. package/src/toolbars/hooks/Graph.js +263 -0
  230. package/src/toolbars/hooks/H1.js +71 -0
  231. package/src/toolbars/hooks/H2.js +71 -0
  232. package/src/toolbars/hooks/H3.js +71 -0
  233. package/src/toolbars/hooks/Header.js +118 -0
  234. package/src/toolbars/hooks/Hr.js +35 -0
  235. package/src/toolbars/hooks/Image.js +91 -0
  236. package/src/toolbars/hooks/InlineCode.js +53 -0
  237. package/src/toolbars/hooks/Insert.js +193 -0
  238. package/src/toolbars/hooks/Italic.js +72 -0
  239. package/src/toolbars/hooks/Justify.js +49 -0
  240. package/src/toolbars/hooks/LineTable.js +41 -0
  241. package/src/toolbars/hooks/Link.js +49 -0
  242. package/src/toolbars/hooks/List.js +55 -0
  243. package/src/toolbars/hooks/MobilePreview.js +44 -0
  244. package/src/toolbars/hooks/Ol.js +41 -0
  245. package/src/toolbars/hooks/Panel.js +140 -0
  246. package/src/toolbars/hooks/Pdf.js +78 -0
  247. package/src/toolbars/hooks/Publish.js +123 -0
  248. package/src/toolbars/hooks/QuickTable.js +43 -0
  249. package/src/toolbars/hooks/Quote.js +45 -0
  250. package/src/toolbars/hooks/Redo.js +33 -0
  251. package/src/toolbars/hooks/Ruby.js +59 -0
  252. package/src/toolbars/hooks/Search.js +53 -0
  253. package/src/toolbars/hooks/Settings.js +220 -0
  254. package/src/toolbars/hooks/ShortcutKey.js +62 -0
  255. package/src/toolbars/hooks/Size.js +118 -0
  256. package/src/toolbars/hooks/Split.js +37 -0
  257. package/src/toolbars/hooks/Strikethrough.js +71 -0
  258. package/src/toolbars/hooks/Sub.js +58 -0
  259. package/src/toolbars/hooks/Sup.js +58 -0
  260. package/src/toolbars/hooks/SwitchModel.js +56 -0
  261. package/src/toolbars/hooks/Table.js +56 -0
  262. package/src/toolbars/hooks/Theme.js +62 -0
  263. package/src/toolbars/hooks/Toc.js +35 -0
  264. package/src/toolbars/hooks/TogglePreview.js +91 -0
  265. package/src/toolbars/hooks/Ul.js +41 -0
  266. package/src/toolbars/hooks/Underline.js +68 -0
  267. package/src/toolbars/hooks/Undo.js +30 -0
  268. package/src/toolbars/hooks/Video.js +79 -0
  269. package/src/toolbars/hooks/Word.js +78 -0
  270. package/src/toolbars/hooks/WordCount.js +106 -0
  271. package/src/utils/autoindent.js +58 -0
  272. package/src/utils/cm-search-replace.js +794 -0
  273. package/src/utils/code-preview-language-setting.js +180 -0
  274. package/src/utils/codeBlockContentHandler.js +400 -0
  275. package/src/utils/config.js +174 -0
  276. package/src/utils/copy.js +55 -0
  277. package/src/utils/dialog.js +214 -0
  278. package/src/utils/dom.js +163 -0
  279. package/src/utils/downloadUtil.js +23 -0
  280. package/src/utils/env.js +22 -0
  281. package/src/utils/error.js +61 -0
  282. package/src/utils/event.js +38 -0
  283. package/src/utils/export.js +166 -0
  284. package/src/utils/file.js +164 -0
  285. package/src/utils/formulaUtilsHandler.js +232 -0
  286. package/src/utils/htmlparser.js +976 -0
  287. package/src/utils/image.js +99 -0
  288. package/src/utils/imgSizeHandler.js +279 -0
  289. package/src/utils/lazyLoadImg.js +327 -0
  290. package/src/utils/lineFeed.js +49 -0
  291. package/src/utils/listContentHandler.js +227 -0
  292. package/src/utils/lookbehind-replace.js +81 -0
  293. package/src/utils/mathjax.js +89 -0
  294. package/src/utils/myersDiff.js +211 -0
  295. package/src/utils/pasteHelper.js +253 -0
  296. package/src/utils/platformTransform.js +71 -0
  297. package/src/utils/recount-pos.js +59 -0
  298. package/src/utils/regexp.js +295 -0
  299. package/src/utils/sanitize.js +477 -0
  300. package/src/utils/selection.js +50 -0
  301. package/src/utils/shortcutKey.js +291 -0
  302. package/src/utils/svgUtils.js +96 -0
  303. package/src/utils/tableContentHandler.js +876 -0
  304. package/test/core/CommonMark.spec.ts +62 -0
  305. package/test/core/hooks/AutoLink.spec.ts +28 -0
  306. package/test/core/hooks/List.spec.ts +79 -0
  307. package/test/core/hooks/__snapshots__/List.spec.ts.snap +11 -0
  308. package/test/example.md +778 -0
  309. package/test/node.js +10 -0
  310. package/test/suites/commonmark.spec.json +5218 -0
  311. package/test/tsconfig.test.json +6 -0
  312. package/test/utils/regexp.spec.ts +28 -0
  313. package/types/cherry.d.ts +675 -0
  314. package/types/codemirror.d.ts +22 -0
  315. package/types/editor.d.ts +72 -0
  316. package/types/global.d.ts +16 -0
  317. package/types/menus.d.ts +24 -0
  318. package/types/previewer.d.ts +53 -0
  319. package/types/syntax.d.ts +52 -0
@@ -0,0 +1,1825 @@
1
+ /**
2
+ * Copyright (C) 2021 THL A29 Limited, a Tencent company.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ export const gfmUnicode = {
17
+ defaultURL: 'https://github.githubassets.com/images/icons/emoji/unicode/${code}.png?v8',
18
+ emojis: {
19
+ '+1': '1f44d',
20
+ '-1': '1f44e',
21
+ 100: '1f4af',
22
+ 1234: '1f522',
23
+ '1st_place_medal': '1f947',
24
+ '2nd_place_medal': '1f948',
25
+ '3rd_place_medal': '1f949',
26
+ '8ball': '1f3b1',
27
+ a: '1f170',
28
+ ab: '1f18e',
29
+ abacus: '1f9ee',
30
+ abc: '1f524',
31
+ abcd: '1f521',
32
+ accept: '1f251',
33
+ adhesive_bandage: '1fa79',
34
+ adult: '1f9d1',
35
+ aerial_tramway: '1f6a1',
36
+ afghanistan: '1f1e6-1f1eb',
37
+ airplane: '2708',
38
+ aland_islands: '1f1e6-1f1fd',
39
+ alarm_clock: '23f0',
40
+ albania: '1f1e6-1f1f1',
41
+ alembic: '2697',
42
+ algeria: '1f1e9-1f1ff',
43
+ alien: '1f47d',
44
+ ambulance: '1f691',
45
+ american_samoa: '1f1e6-1f1f8',
46
+ amphora: '1f3fa',
47
+ anchor: '2693',
48
+ andorra: '1f1e6-1f1e9',
49
+ angel: '1f47c',
50
+ anger: '1f4a2',
51
+ angola: '1f1e6-1f1f4',
52
+ angry: '1f620',
53
+ anguilla: '1f1e6-1f1ee',
54
+ anguished: '1f627',
55
+ ant: '1f41c',
56
+ antarctica: '1f1e6-1f1f6',
57
+ antigua_barbuda: '1f1e6-1f1ec',
58
+ apple: '1f34e',
59
+ aquarius: '2652',
60
+ argentina: '1f1e6-1f1f7',
61
+ aries: '2648',
62
+ armenia: '1f1e6-1f1f2',
63
+ arrow_backward: '25c0',
64
+ arrow_double_down: '23ec',
65
+ arrow_double_up: '23eb',
66
+ arrow_down: '2b07',
67
+ arrow_down_small: '1f53d',
68
+ arrow_forward: '25b6',
69
+ arrow_heading_down: '2935',
70
+ arrow_heading_up: '2934',
71
+ arrow_left: '2b05',
72
+ arrow_lower_left: '2199',
73
+ arrow_lower_right: '2198',
74
+ arrow_right: '27a1',
75
+ arrow_right_hook: '21aa',
76
+ arrow_up: '2b06',
77
+ arrow_up_down: '2195',
78
+ arrow_up_small: '1f53c',
79
+ arrow_upper_left: '2196',
80
+ arrow_upper_right: '2197',
81
+ arrows_clockwise: '1f503',
82
+ arrows_counterclockwise: '1f504',
83
+ art: '1f3a8',
84
+ articulated_lorry: '1f69b',
85
+ artificial_satellite: '1f6f0',
86
+ artist: '1f9d1-1f3a8',
87
+ aruba: '1f1e6-1f1fc',
88
+ ascension_island: '1f1e6-1f1e8',
89
+ asterisk: '002a-20e3',
90
+ astonished: '1f632',
91
+ astronaut: '1f9d1-1f680',
92
+ athletic_shoe: '1f45f',
93
+ atm: '1f3e7',
94
+ atom_symbol: '269b',
95
+ australia: '1f1e6-1f1fa',
96
+ austria: '1f1e6-1f1f9',
97
+ auto_rickshaw: '1f6fa',
98
+ avocado: '1f951',
99
+ axe: '1fa93',
100
+ azerbaijan: '1f1e6-1f1ff',
101
+ b: '1f171',
102
+ baby: '1f476',
103
+ baby_bottle: '1f37c',
104
+ baby_chick: '1f424',
105
+ baby_symbol: '1f6bc',
106
+ back: '1f519',
107
+ bacon: '1f953',
108
+ badger: '1f9a1',
109
+ badminton: '1f3f8',
110
+ bagel: '1f96f',
111
+ baggage_claim: '1f6c4',
112
+ baguette_bread: '1f956',
113
+ bahamas: '1f1e7-1f1f8',
114
+ bahrain: '1f1e7-1f1ed',
115
+ balance_scale: '2696',
116
+ bald_man: '1f468-1f9b2',
117
+ bald_woman: '1f469-1f9b2',
118
+ ballet_shoes: '1fa70',
119
+ balloon: '1f388',
120
+ ballot_box: '1f5f3',
121
+ ballot_box_with_check: '2611',
122
+ bamboo: '1f38d',
123
+ banana: '1f34c',
124
+ bangbang: '203c',
125
+ bangladesh: '1f1e7-1f1e9',
126
+ banjo: '1fa95',
127
+ bank: '1f3e6',
128
+ bar_chart: '1f4ca',
129
+ barbados: '1f1e7-1f1e7',
130
+ barber: '1f488',
131
+ baseball: '26be',
132
+ basket: '1f9fa',
133
+ basketball: '1f3c0',
134
+ basketball_man: '26f9-2642',
135
+ basketball_woman: '26f9-2640',
136
+ bat: '1f987',
137
+ bath: '1f6c0',
138
+ bathtub: '1f6c1',
139
+ battery: '1f50b',
140
+ beach_umbrella: '1f3d6',
141
+ bear: '1f43b',
142
+ bearded_person: '1f9d4',
143
+ bed: '1f6cf',
144
+ bee: '1f41d',
145
+ beer: '1f37a',
146
+ beers: '1f37b',
147
+ beetle: '1f41e',
148
+ beginner: '1f530',
149
+ belarus: '1f1e7-1f1fe',
150
+ belgium: '1f1e7-1f1ea',
151
+ belize: '1f1e7-1f1ff',
152
+ bell: '1f514',
153
+ bellhop_bell: '1f6ce',
154
+ benin: '1f1e7-1f1ef',
155
+ bento: '1f371',
156
+ bermuda: '1f1e7-1f1f2',
157
+ beverage_box: '1f9c3',
158
+ bhutan: '1f1e7-1f1f9',
159
+ bicyclist: '1f6b4',
160
+ bike: '1f6b2',
161
+ biking_man: '1f6b4-2642',
162
+ biking_woman: '1f6b4-2640',
163
+ bikini: '1f459',
164
+ billed_cap: '1f9e2',
165
+ biohazard: '2623',
166
+ bird: '1f426',
167
+ birthday: '1f382',
168
+ black_circle: '26ab',
169
+ black_flag: '1f3f4',
170
+ black_heart: '1f5a4',
171
+ black_joker: '1f0cf',
172
+ black_large_square: '2b1b',
173
+ black_medium_small_square: '25fe',
174
+ black_medium_square: '25fc',
175
+ black_nib: '2712',
176
+ black_small_square: '25aa',
177
+ black_square_button: '1f532',
178
+ blond_haired_man: '1f471-2642',
179
+ blond_haired_person: '1f471',
180
+ blond_haired_woman: '1f471-2640',
181
+ blonde_woman: '1f471-2640',
182
+ blossom: '1f33c',
183
+ blowfish: '1f421',
184
+ blue_book: '1f4d8',
185
+ blue_car: '1f699',
186
+ blue_heart: '1f499',
187
+ blue_square: '1f7e6',
188
+ blush: '1f60a',
189
+ boar: '1f417',
190
+ boat: '26f5',
191
+ bolivia: '1f1e7-1f1f4',
192
+ bomb: '1f4a3',
193
+ bone: '1f9b4',
194
+ book: '1f4d6',
195
+ bookmark: '1f516',
196
+ bookmark_tabs: '1f4d1',
197
+ books: '1f4da',
198
+ boom: '1f4a5',
199
+ boot: '1f462',
200
+ bosnia_herzegovina: '1f1e7-1f1e6',
201
+ botswana: '1f1e7-1f1fc',
202
+ bouncing_ball_man: '26f9-2642',
203
+ bouncing_ball_person: '26f9',
204
+ bouncing_ball_woman: '26f9-2640',
205
+ bouquet: '1f490',
206
+ bouvet_island: '1f1e7-1f1fb',
207
+ bow: '1f647',
208
+ bow_and_arrow: '1f3f9',
209
+ bowing_man: '1f647-2642',
210
+ bowing_woman: '1f647-2640',
211
+ bowl_with_spoon: '1f963',
212
+ bowling: '1f3b3',
213
+ boxing_glove: '1f94a',
214
+ boy: '1f466',
215
+ brain: '1f9e0',
216
+ brazil: '1f1e7-1f1f7',
217
+ bread: '1f35e',
218
+ breast_feeding: '1f931',
219
+ bricks: '1f9f1',
220
+ bride_with_veil: '1f470',
221
+ bridge_at_night: '1f309',
222
+ briefcase: '1f4bc',
223
+ british_indian_ocean_territory: '1f1ee-1f1f4',
224
+ british_virgin_islands: '1f1fb-1f1ec',
225
+ broccoli: '1f966',
226
+ broken_heart: '1f494',
227
+ broom: '1f9f9',
228
+ brown_circle: '1f7e4',
229
+ brown_heart: '1f90e',
230
+ brown_square: '1f7eb',
231
+ brunei: '1f1e7-1f1f3',
232
+ bug: '1f41b',
233
+ building_construction: '1f3d7',
234
+ bulb: '1f4a1',
235
+ bulgaria: '1f1e7-1f1ec',
236
+ bullettrain_front: '1f685',
237
+ bullettrain_side: '1f684',
238
+ burkina_faso: '1f1e7-1f1eb',
239
+ burrito: '1f32f',
240
+ burundi: '1f1e7-1f1ee',
241
+ bus: '1f68c',
242
+ business_suit_levitating: '1f574',
243
+ busstop: '1f68f',
244
+ bust_in_silhouette: '1f464',
245
+ busts_in_silhouette: '1f465',
246
+ butter: '1f9c8',
247
+ butterfly: '1f98b',
248
+ cactus: '1f335',
249
+ cake: '1f370',
250
+ calendar: '1f4c6',
251
+ call_me_hand: '1f919',
252
+ calling: '1f4f2',
253
+ cambodia: '1f1f0-1f1ed',
254
+ camel: '1f42b',
255
+ camera: '1f4f7',
256
+ camera_flash: '1f4f8',
257
+ cameroon: '1f1e8-1f1f2',
258
+ camping: '1f3d5',
259
+ canada: '1f1e8-1f1e6',
260
+ canary_islands: '1f1ee-1f1e8',
261
+ cancer: '264b',
262
+ candle: '1f56f',
263
+ candy: '1f36c',
264
+ canned_food: '1f96b',
265
+ canoe: '1f6f6',
266
+ cape_verde: '1f1e8-1f1fb',
267
+ capital_abcd: '1f520',
268
+ capricorn: '2651',
269
+ car: '1f697',
270
+ card_file_box: '1f5c3',
271
+ card_index: '1f4c7',
272
+ card_index_dividers: '1f5c2',
273
+ caribbean_netherlands: '1f1e7-1f1f6',
274
+ carousel_horse: '1f3a0',
275
+ carrot: '1f955',
276
+ cartwheeling: '1f938',
277
+ cat: '1f431',
278
+ cat2: '1f408',
279
+ cayman_islands: '1f1f0-1f1fe',
280
+ cd: '1f4bf',
281
+ central_african_republic: '1f1e8-1f1eb',
282
+ ceuta_melilla: '1f1ea-1f1e6',
283
+ chad: '1f1f9-1f1e9',
284
+ chains: '26d3',
285
+ chair: '1fa91',
286
+ champagne: '1f37e',
287
+ chart: '1f4b9',
288
+ chart_with_downwards_trend: '1f4c9',
289
+ chart_with_upwards_trend: '1f4c8',
290
+ checkered_flag: '1f3c1',
291
+ cheese: '1f9c0',
292
+ cherries: '1f352',
293
+ cherry_blossom: '1f338',
294
+ chess_pawn: '265f',
295
+ chestnut: '1f330',
296
+ chicken: '1f414',
297
+ child: '1f9d2',
298
+ children_crossing: '1f6b8',
299
+ chile: '1f1e8-1f1f1',
300
+ chipmunk: '1f43f',
301
+ chocolate_bar: '1f36b',
302
+ chopsticks: '1f962',
303
+ christmas_island: '1f1e8-1f1fd',
304
+ christmas_tree: '1f384',
305
+ church: '26ea',
306
+ cinema: '1f3a6',
307
+ circus_tent: '1f3aa',
308
+ city_sunrise: '1f307',
309
+ city_sunset: '1f306',
310
+ cityscape: '1f3d9',
311
+ cl: '1f191',
312
+ clamp: '1f5dc',
313
+ clap: '1f44f',
314
+ clapper: '1f3ac',
315
+ classical_building: '1f3db',
316
+ climbing: '1f9d7',
317
+ climbing_man: '1f9d7-2642',
318
+ climbing_woman: '1f9d7-2640',
319
+ clinking_glasses: '1f942',
320
+ clipboard: '1f4cb',
321
+ clipperton_island: '1f1e8-1f1f5',
322
+ clock1: '1f550',
323
+ clock10: '1f559',
324
+ clock1030: '1f565',
325
+ clock11: '1f55a',
326
+ clock1130: '1f566',
327
+ clock12: '1f55b',
328
+ clock1230: '1f567',
329
+ clock130: '1f55c',
330
+ clock2: '1f551',
331
+ clock230: '1f55d',
332
+ clock3: '1f552',
333
+ clock330: '1f55e',
334
+ clock4: '1f553',
335
+ clock430: '1f55f',
336
+ clock5: '1f554',
337
+ clock530: '1f560',
338
+ clock6: '1f555',
339
+ clock630: '1f561',
340
+ clock7: '1f556',
341
+ clock730: '1f562',
342
+ clock8: '1f557',
343
+ clock830: '1f563',
344
+ clock9: '1f558',
345
+ clock930: '1f564',
346
+ closed_book: '1f4d5',
347
+ closed_lock_with_key: '1f510',
348
+ closed_umbrella: '1f302',
349
+ cloud: '2601',
350
+ cloud_with_lightning: '1f329',
351
+ cloud_with_lightning_and_rain: '26c8',
352
+ cloud_with_rain: '1f327',
353
+ cloud_with_snow: '1f328',
354
+ clown_face: '1f921',
355
+ clubs: '2663',
356
+ cn: '1f1e8-1f1f3',
357
+ coat: '1f9e5',
358
+ cocktail: '1f378',
359
+ coconut: '1f965',
360
+ cocos_islands: '1f1e8-1f1e8',
361
+ coffee: '2615',
362
+ coffin: '26b0',
363
+ cold_face: '1f976',
364
+ cold_sweat: '1f630',
365
+ collision: '1f4a5',
366
+ colombia: '1f1e8-1f1f4',
367
+ comet: '2604',
368
+ comoros: '1f1f0-1f1f2',
369
+ compass: '1f9ed',
370
+ computer: '1f4bb',
371
+ computer_mouse: '1f5b1',
372
+ confetti_ball: '1f38a',
373
+ confounded: '1f616',
374
+ confused: '1f615',
375
+ congo_brazzaville: '1f1e8-1f1ec',
376
+ congo_kinshasa: '1f1e8-1f1e9',
377
+ congratulations: '3297',
378
+ construction: '1f6a7',
379
+ construction_worker: '1f477',
380
+ construction_worker_man: '1f477-2642',
381
+ construction_worker_woman: '1f477-2640',
382
+ control_knobs: '1f39b',
383
+ convenience_store: '1f3ea',
384
+ cook: '1f9d1-1f373',
385
+ cook_islands: '1f1e8-1f1f0',
386
+ cookie: '1f36a',
387
+ cool: '1f192',
388
+ cop: '1f46e',
389
+ copyright: '00a9',
390
+ corn: '1f33d',
391
+ costa_rica: '1f1e8-1f1f7',
392
+ cote_divoire: '1f1e8-1f1ee',
393
+ couch_and_lamp: '1f6cb',
394
+ couple: '1f46b',
395
+ couple_with_heart: '1f491',
396
+ couple_with_heart_man_man: '1f468-2764-1f468',
397
+ couple_with_heart_woman_man: '1f469-2764-1f468',
398
+ couple_with_heart_woman_woman: '1f469-2764-1f469',
399
+ couplekiss: '1f48f',
400
+ couplekiss_man_man: '1f468-2764-1f48b-1f468',
401
+ couplekiss_man_woman: '1f469-2764-1f48b-1f468',
402
+ couplekiss_woman_woman: '1f469-2764-1f48b-1f469',
403
+ cow: '1f42e',
404
+ cow2: '1f404',
405
+ cowboy_hat_face: '1f920',
406
+ crab: '1f980',
407
+ crayon: '1f58d',
408
+ credit_card: '1f4b3',
409
+ crescent_moon: '1f319',
410
+ cricket: '1f997',
411
+ cricket_game: '1f3cf',
412
+ croatia: '1f1ed-1f1f7',
413
+ crocodile: '1f40a',
414
+ croissant: '1f950',
415
+ crossed_fingers: '1f91e',
416
+ crossed_flags: '1f38c',
417
+ crossed_swords: '2694',
418
+ crown: '1f451',
419
+ cry: '1f622',
420
+ crying_cat_face: '1f63f',
421
+ crystal_ball: '1f52e',
422
+ cuba: '1f1e8-1f1fa',
423
+ cucumber: '1f952',
424
+ cup_with_straw: '1f964',
425
+ cupcake: '1f9c1',
426
+ cupid: '1f498',
427
+ curacao: '1f1e8-1f1fc',
428
+ curling_stone: '1f94c',
429
+ curly_haired_man: '1f468-1f9b1',
430
+ curly_haired_woman: '1f469-1f9b1',
431
+ curly_loop: '27b0',
432
+ currency_exchange: '1f4b1',
433
+ curry: '1f35b',
434
+ cursing_face: '1f92c',
435
+ custard: '1f36e',
436
+ customs: '1f6c3',
437
+ cut_of_meat: '1f969',
438
+ cyclone: '1f300',
439
+ cyprus: '1f1e8-1f1fe',
440
+ czech_republic: '1f1e8-1f1ff',
441
+ dagger: '1f5e1',
442
+ dancer: '1f483',
443
+ dancers: '1f46f',
444
+ dancing_men: '1f46f-2642',
445
+ dancing_women: '1f46f-2640',
446
+ dango: '1f361',
447
+ dark_sunglasses: '1f576',
448
+ dart: '1f3af',
449
+ dash: '1f4a8',
450
+ date: '1f4c5',
451
+ de: '1f1e9-1f1ea',
452
+ deaf_man: '1f9cf-2642',
453
+ deaf_person: '1f9cf',
454
+ deaf_woman: '1f9cf-2640',
455
+ deciduous_tree: '1f333',
456
+ deer: '1f98c',
457
+ denmark: '1f1e9-1f1f0',
458
+ department_store: '1f3ec',
459
+ derelict_house: '1f3da',
460
+ desert: '1f3dc',
461
+ desert_island: '1f3dd',
462
+ desktop_computer: '1f5a5',
463
+ detective: '1f575',
464
+ diamond_shape_with_a_dot_inside: '1f4a0',
465
+ diamonds: '2666',
466
+ diego_garcia: '1f1e9-1f1ec',
467
+ disappointed: '1f61e',
468
+ disappointed_relieved: '1f625',
469
+ diving_mask: '1f93f',
470
+ diya_lamp: '1fa94',
471
+ dizzy: '1f4ab',
472
+ dizzy_face: '1f635',
473
+ djibouti: '1f1e9-1f1ef',
474
+ dna: '1f9ec',
475
+ do_not_litter: '1f6af',
476
+ dog: '1f436',
477
+ dog2: '1f415',
478
+ dollar: '1f4b5',
479
+ dolls: '1f38e',
480
+ dolphin: '1f42c',
481
+ dominica: '1f1e9-1f1f2',
482
+ dominican_republic: '1f1e9-1f1f4',
483
+ door: '1f6aa',
484
+ doughnut: '1f369',
485
+ dove: '1f54a',
486
+ dragon: '1f409',
487
+ dragon_face: '1f432',
488
+ dress: '1f457',
489
+ dromedary_camel: '1f42a',
490
+ drooling_face: '1f924',
491
+ drop_of_blood: '1fa78',
492
+ droplet: '1f4a7',
493
+ drum: '1f941',
494
+ duck: '1f986',
495
+ dumpling: '1f95f',
496
+ dvd: '1f4c0',
497
+ 'e-mail': '1f4e7',
498
+ eagle: '1f985',
499
+ ear: '1f442',
500
+ ear_of_rice: '1f33e',
501
+ ear_with_hearing_aid: '1f9bb',
502
+ earth_africa: '1f30d',
503
+ earth_americas: '1f30e',
504
+ earth_asia: '1f30f',
505
+ ecuador: '1f1ea-1f1e8',
506
+ egg: '1f95a',
507
+ eggplant: '1f346',
508
+ egypt: '1f1ea-1f1ec',
509
+ eight: '0038-20e3',
510
+ eight_pointed_black_star: '2734',
511
+ eight_spoked_asterisk: '2733',
512
+ eject_button: '23cf',
513
+ el_salvador: '1f1f8-1f1fb',
514
+ electric_plug: '1f50c',
515
+ elephant: '1f418',
516
+ elf: '1f9dd',
517
+ elf_man: '1f9dd-2642',
518
+ elf_woman: '1f9dd-2640',
519
+ email: '2709',
520
+ end: '1f51a',
521
+ england: '1f3f4-e0067-e0062-e0065-e006e-e0067-e007f',
522
+ envelope: '2709',
523
+ envelope_with_arrow: '1f4e9',
524
+ equatorial_guinea: '1f1ec-1f1f6',
525
+ eritrea: '1f1ea-1f1f7',
526
+ es: '1f1ea-1f1f8',
527
+ estonia: '1f1ea-1f1ea',
528
+ ethiopia: '1f1ea-1f1f9',
529
+ eu: '1f1ea-1f1fa',
530
+ euro: '1f4b6',
531
+ european_castle: '1f3f0',
532
+ european_post_office: '1f3e4',
533
+ european_union: '1f1ea-1f1fa',
534
+ evergreen_tree: '1f332',
535
+ exclamation: '2757',
536
+ exploding_head: '1f92f',
537
+ expressionless: '1f611',
538
+ eye: '1f441',
539
+ eye_speech_bubble: '1f441-1f5e8',
540
+ eyeglasses: '1f453',
541
+ eyes: '1f440',
542
+ face_with_head_bandage: '1f915',
543
+ face_with_thermometer: '1f912',
544
+ facepalm: '1f926',
545
+ facepunch: '1f44a',
546
+ factory: '1f3ed',
547
+ factory_worker: '1f9d1-1f3ed',
548
+ fairy: '1f9da',
549
+ fairy_man: '1f9da-2642',
550
+ fairy_woman: '1f9da-2640',
551
+ falafel: '1f9c6',
552
+ falkland_islands: '1f1eb-1f1f0',
553
+ fallen_leaf: '1f342',
554
+ family: '1f46a',
555
+ family_man_boy: '1f468-1f466',
556
+ family_man_boy_boy: '1f468-1f466-1f466',
557
+ family_man_girl: '1f468-1f467',
558
+ family_man_girl_boy: '1f468-1f467-1f466',
559
+ family_man_girl_girl: '1f468-1f467-1f467',
560
+ family_man_man_boy: '1f468-1f468-1f466',
561
+ family_man_man_boy_boy: '1f468-1f468-1f466-1f466',
562
+ family_man_man_girl: '1f468-1f468-1f467',
563
+ family_man_man_girl_boy: '1f468-1f468-1f467-1f466',
564
+ family_man_man_girl_girl: '1f468-1f468-1f467-1f467',
565
+ family_man_woman_boy: '1f468-1f469-1f466',
566
+ family_man_woman_boy_boy: '1f468-1f469-1f466-1f466',
567
+ family_man_woman_girl: '1f468-1f469-1f467',
568
+ family_man_woman_girl_boy: '1f468-1f469-1f467-1f466',
569
+ family_man_woman_girl_girl: '1f468-1f469-1f467-1f467',
570
+ family_woman_boy: '1f469-1f466',
571
+ family_woman_boy_boy: '1f469-1f466-1f466',
572
+ family_woman_girl: '1f469-1f467',
573
+ family_woman_girl_boy: '1f469-1f467-1f466',
574
+ family_woman_girl_girl: '1f469-1f467-1f467',
575
+ family_woman_woman_boy: '1f469-1f469-1f466',
576
+ family_woman_woman_boy_boy: '1f469-1f469-1f466-1f466',
577
+ family_woman_woman_girl: '1f469-1f469-1f467',
578
+ family_woman_woman_girl_boy: '1f469-1f469-1f467-1f466',
579
+ family_woman_woman_girl_girl: '1f469-1f469-1f467-1f467',
580
+ farmer: '1f9d1-1f33e',
581
+ faroe_islands: '1f1eb-1f1f4',
582
+ fast_forward: '23e9',
583
+ fax: '1f4e0',
584
+ fearful: '1f628',
585
+ feet: '1f43e',
586
+ female_detective: '1f575-2640',
587
+ female_sign: '2640',
588
+ ferris_wheel: '1f3a1',
589
+ ferry: '26f4',
590
+ field_hockey: '1f3d1',
591
+ fiji: '1f1eb-1f1ef',
592
+ file_cabinet: '1f5c4',
593
+ file_folder: '1f4c1',
594
+ film_projector: '1f4fd',
595
+ film_strip: '1f39e',
596
+ finland: '1f1eb-1f1ee',
597
+ fire: '1f525',
598
+ fire_engine: '1f692',
599
+ fire_extinguisher: '1f9ef',
600
+ firecracker: '1f9e8',
601
+ firefighter: '1f9d1-1f692',
602
+ fireworks: '1f386',
603
+ first_quarter_moon: '1f313',
604
+ first_quarter_moon_with_face: '1f31b',
605
+ fish: '1f41f',
606
+ fish_cake: '1f365',
607
+ fishing_pole_and_fish: '1f3a3',
608
+ fist: '270a',
609
+ fist_left: '1f91b',
610
+ fist_oncoming: '1f44a',
611
+ fist_raised: '270a',
612
+ fist_right: '1f91c',
613
+ five: '0035-20e3',
614
+ flags: '1f38f',
615
+ flamingo: '1f9a9',
616
+ flashlight: '1f526',
617
+ flat_shoe: '1f97f',
618
+ fleur_de_lis: '269c',
619
+ flight_arrival: '1f6ec',
620
+ flight_departure: '1f6eb',
621
+ flipper: '1f42c',
622
+ floppy_disk: '1f4be',
623
+ flower_playing_cards: '1f3b4',
624
+ flushed: '1f633',
625
+ flying_disc: '1f94f',
626
+ flying_saucer: '1f6f8',
627
+ fog: '1f32b',
628
+ foggy: '1f301',
629
+ foot: '1f9b6',
630
+ football: '1f3c8',
631
+ footprints: '1f463',
632
+ fork_and_knife: '1f374',
633
+ fortune_cookie: '1f960',
634
+ fountain: '26f2',
635
+ fountain_pen: '1f58b',
636
+ four: '0034-20e3',
637
+ four_leaf_clover: '1f340',
638
+ fox_face: '1f98a',
639
+ fr: '1f1eb-1f1f7',
640
+ framed_picture: '1f5bc',
641
+ free: '1f193',
642
+ french_guiana: '1f1ec-1f1eb',
643
+ french_polynesia: '1f1f5-1f1eb',
644
+ french_southern_territories: '1f1f9-1f1eb',
645
+ fried_egg: '1f373',
646
+ fried_shrimp: '1f364',
647
+ fries: '1f35f',
648
+ frog: '1f438',
649
+ frowning: '1f626',
650
+ frowning_face: '2639',
651
+ frowning_man: '1f64d-2642',
652
+ frowning_person: '1f64d',
653
+ frowning_woman: '1f64d-2640',
654
+ fu: '1f595',
655
+ fuelpump: '26fd',
656
+ full_moon: '1f315',
657
+ full_moon_with_face: '1f31d',
658
+ funeral_urn: '26b1',
659
+ gabon: '1f1ec-1f1e6',
660
+ gambia: '1f1ec-1f1f2',
661
+ game_die: '1f3b2',
662
+ garlic: '1f9c4',
663
+ gb: '1f1ec-1f1e7',
664
+ gear: '2699',
665
+ gem: '1f48e',
666
+ gemini: '264a',
667
+ genie: '1f9de',
668
+ genie_man: '1f9de-2642',
669
+ genie_woman: '1f9de-2640',
670
+ georgia: '1f1ec-1f1ea',
671
+ ghana: '1f1ec-1f1ed',
672
+ ghost: '1f47b',
673
+ gibraltar: '1f1ec-1f1ee',
674
+ gift: '1f381',
675
+ gift_heart: '1f49d',
676
+ giraffe: '1f992',
677
+ girl: '1f467',
678
+ globe_with_meridians: '1f310',
679
+ gloves: '1f9e4',
680
+ goal_net: '1f945',
681
+ goat: '1f410',
682
+ goggles: '1f97d',
683
+ golf: '26f3',
684
+ golfing: '1f3cc',
685
+ golfing_man: '1f3cc-2642',
686
+ golfing_woman: '1f3cc-2640',
687
+ gorilla: '1f98d',
688
+ grapes: '1f347',
689
+ greece: '1f1ec-1f1f7',
690
+ green_apple: '1f34f',
691
+ green_book: '1f4d7',
692
+ green_circle: '1f7e2',
693
+ green_heart: '1f49a',
694
+ green_salad: '1f957',
695
+ green_square: '1f7e9',
696
+ greenland: '1f1ec-1f1f1',
697
+ grenada: '1f1ec-1f1e9',
698
+ grey_exclamation: '2755',
699
+ grey_question: '2754',
700
+ grimacing: '1f62c',
701
+ grin: '1f601',
702
+ grinning: '1f600',
703
+ guadeloupe: '1f1ec-1f1f5',
704
+ guam: '1f1ec-1f1fa',
705
+ guard: '1f482',
706
+ guardsman: '1f482-2642',
707
+ guardswoman: '1f482-2640',
708
+ guatemala: '1f1ec-1f1f9',
709
+ guernsey: '1f1ec-1f1ec',
710
+ guide_dog: '1f9ae',
711
+ guinea: '1f1ec-1f1f3',
712
+ guinea_bissau: '1f1ec-1f1fc',
713
+ guitar: '1f3b8',
714
+ gun: '1f52b',
715
+ guyana: '1f1ec-1f1fe',
716
+ haircut: '1f487',
717
+ haircut_man: '1f487-2642',
718
+ haircut_woman: '1f487-2640',
719
+ haiti: '1f1ed-1f1f9',
720
+ hamburger: '1f354',
721
+ hammer: '1f528',
722
+ hammer_and_pick: '2692',
723
+ hammer_and_wrench: '1f6e0',
724
+ hamster: '1f439',
725
+ hand: '270b',
726
+ hand_over_mouth: '1f92d',
727
+ handbag: '1f45c',
728
+ handball_person: '1f93e',
729
+ handshake: '1f91d',
730
+ hankey: '1f4a9',
731
+ hash: '0023-20e3',
732
+ hatched_chick: '1f425',
733
+ hatching_chick: '1f423',
734
+ headphones: '1f3a7',
735
+ health_worker: '1f9d1-2695',
736
+ hear_no_evil: '1f649',
737
+ heard_mcdonald_islands: '1f1ed-1f1f2',
738
+ heart: '2764',
739
+ heart_decoration: '1f49f',
740
+ heart_eyes: '1f60d',
741
+ heart_eyes_cat: '1f63b',
742
+ heartbeat: '1f493',
743
+ heartpulse: '1f497',
744
+ hearts: '2665',
745
+ heavy_check_mark: '2714',
746
+ heavy_division_sign: '2797',
747
+ heavy_dollar_sign: '1f4b2',
748
+ heavy_exclamation_mark: '2757',
749
+ heavy_heart_exclamation: '2763',
750
+ heavy_minus_sign: '2796',
751
+ heavy_multiplication_x: '2716',
752
+ heavy_plus_sign: '2795',
753
+ hedgehog: '1f994',
754
+ helicopter: '1f681',
755
+ herb: '1f33f',
756
+ hibiscus: '1f33a',
757
+ high_brightness: '1f506',
758
+ high_heel: '1f460',
759
+ hiking_boot: '1f97e',
760
+ hindu_temple: '1f6d5',
761
+ hippopotamus: '1f99b',
762
+ hocho: '1f52a',
763
+ hole: '1f573',
764
+ honduras: '1f1ed-1f1f3',
765
+ honey_pot: '1f36f',
766
+ honeybee: '1f41d',
767
+ hong_kong: '1f1ed-1f1f0',
768
+ horse: '1f434',
769
+ horse_racing: '1f3c7',
770
+ hospital: '1f3e5',
771
+ hot_face: '1f975',
772
+ hot_pepper: '1f336',
773
+ hotdog: '1f32d',
774
+ hotel: '1f3e8',
775
+ hotsprings: '2668',
776
+ hourglass: '231b',
777
+ hourglass_flowing_sand: '23f3',
778
+ house: '1f3e0',
779
+ house_with_garden: '1f3e1',
780
+ houses: '1f3d8',
781
+ hugs: '1f917',
782
+ hungary: '1f1ed-1f1fa',
783
+ hushed: '1f62f',
784
+ ice_cream: '1f368',
785
+ ice_cube: '1f9ca',
786
+ ice_hockey: '1f3d2',
787
+ ice_skate: '26f8',
788
+ icecream: '1f366',
789
+ iceland: '1f1ee-1f1f8',
790
+ id: '1f194',
791
+ ideograph_advantage: '1f250',
792
+ imp: '1f47f',
793
+ inbox_tray: '1f4e5',
794
+ incoming_envelope: '1f4e8',
795
+ india: '1f1ee-1f1f3',
796
+ indonesia: '1f1ee-1f1e9',
797
+ infinity: '267e',
798
+ information_desk_person: '1f481',
799
+ information_source: '2139',
800
+ innocent: '1f607',
801
+ interrobang: '2049',
802
+ iphone: '1f4f1',
803
+ iran: '1f1ee-1f1f7',
804
+ iraq: '1f1ee-1f1f6',
805
+ ireland: '1f1ee-1f1ea',
806
+ isle_of_man: '1f1ee-1f1f2',
807
+ israel: '1f1ee-1f1f1',
808
+ it: '1f1ee-1f1f9',
809
+ izakaya_lantern: '1f3ee',
810
+ jack_o_lantern: '1f383',
811
+ jamaica: '1f1ef-1f1f2',
812
+ japan: '1f5fe',
813
+ japanese_castle: '1f3ef',
814
+ japanese_goblin: '1f47a',
815
+ japanese_ogre: '1f479',
816
+ jeans: '1f456',
817
+ jersey: '1f1ef-1f1ea',
818
+ jigsaw: '1f9e9',
819
+ jordan: '1f1ef-1f1f4',
820
+ joy: '1f602',
821
+ joy_cat: '1f639',
822
+ joystick: '1f579',
823
+ jp: '1f1ef-1f1f5',
824
+ judge: '1f9d1-2696',
825
+ juggling_person: '1f939',
826
+ kaaba: '1f54b',
827
+ kangaroo: '1f998',
828
+ kazakhstan: '1f1f0-1f1ff',
829
+ kenya: '1f1f0-1f1ea',
830
+ key: '1f511',
831
+ keyboard: '2328',
832
+ keycap_ten: '1f51f',
833
+ kick_scooter: '1f6f4',
834
+ kimono: '1f458',
835
+ kiribati: '1f1f0-1f1ee',
836
+ kiss: '1f48b',
837
+ kissing: '1f617',
838
+ kissing_cat: '1f63d',
839
+ kissing_closed_eyes: '1f61a',
840
+ kissing_heart: '1f618',
841
+ kissing_smiling_eyes: '1f619',
842
+ kite: '1fa81',
843
+ kiwi_fruit: '1f95d',
844
+ kneeling_man: '1f9ce-2642',
845
+ kneeling_person: '1f9ce',
846
+ kneeling_woman: '1f9ce-2640',
847
+ knife: '1f52a',
848
+ koala: '1f428',
849
+ koko: '1f201',
850
+ kosovo: '1f1fd-1f1f0',
851
+ kr: '1f1f0-1f1f7',
852
+ kuwait: '1f1f0-1f1fc',
853
+ kyrgyzstan: '1f1f0-1f1ec',
854
+ lab_coat: '1f97c',
855
+ label: '1f3f7',
856
+ lacrosse: '1f94d',
857
+ lantern: '1f3ee',
858
+ laos: '1f1f1-1f1e6',
859
+ large_blue_circle: '1f535',
860
+ large_blue_diamond: '1f537',
861
+ large_orange_diamond: '1f536',
862
+ last_quarter_moon: '1f317',
863
+ last_quarter_moon_with_face: '1f31c',
864
+ latin_cross: '271d',
865
+ latvia: '1f1f1-1f1fb',
866
+ laughing: '1f606',
867
+ leafy_green: '1f96c',
868
+ leaves: '1f343',
869
+ lebanon: '1f1f1-1f1e7',
870
+ ledger: '1f4d2',
871
+ left_luggage: '1f6c5',
872
+ left_right_arrow: '2194',
873
+ left_speech_bubble: '1f5e8',
874
+ leftwards_arrow_with_hook: '21a9',
875
+ leg: '1f9b5',
876
+ lemon: '1f34b',
877
+ leo: '264c',
878
+ leopard: '1f406',
879
+ lesotho: '1f1f1-1f1f8',
880
+ level_slider: '1f39a',
881
+ liberia: '1f1f1-1f1f7',
882
+ libra: '264e',
883
+ libya: '1f1f1-1f1fe',
884
+ liechtenstein: '1f1f1-1f1ee',
885
+ light_rail: '1f688',
886
+ link: '1f517',
887
+ lion: '1f981',
888
+ lips: '1f444',
889
+ lipstick: '1f484',
890
+ lithuania: '1f1f1-1f1f9',
891
+ lizard: '1f98e',
892
+ llama: '1f999',
893
+ lobster: '1f99e',
894
+ lock: '1f512',
895
+ lock_with_ink_pen: '1f50f',
896
+ lollipop: '1f36d',
897
+ loop: '27bf',
898
+ lotion_bottle: '1f9f4',
899
+ lotus_position: '1f9d8',
900
+ lotus_position_man: '1f9d8-2642',
901
+ lotus_position_woman: '1f9d8-2640',
902
+ loud_sound: '1f50a',
903
+ loudspeaker: '1f4e2',
904
+ love_hotel: '1f3e9',
905
+ love_letter: '1f48c',
906
+ love_you_gesture: '1f91f',
907
+ low_brightness: '1f505',
908
+ luggage: '1f9f3',
909
+ luxembourg: '1f1f1-1f1fa',
910
+ lying_face: '1f925',
911
+ m: '24c2',
912
+ macau: '1f1f2-1f1f4',
913
+ macedonia: '1f1f2-1f1f0',
914
+ madagascar: '1f1f2-1f1ec',
915
+ mag: '1f50d',
916
+ mag_right: '1f50e',
917
+ mage: '1f9d9',
918
+ mage_man: '1f9d9-2642',
919
+ mage_woman: '1f9d9-2640',
920
+ magnet: '1f9f2',
921
+ mahjong: '1f004',
922
+ mailbox: '1f4eb',
923
+ mailbox_closed: '1f4ea',
924
+ mailbox_with_mail: '1f4ec',
925
+ mailbox_with_no_mail: '1f4ed',
926
+ malawi: '1f1f2-1f1fc',
927
+ malaysia: '1f1f2-1f1fe',
928
+ maldives: '1f1f2-1f1fb',
929
+ male_detective: '1f575-2642',
930
+ male_sign: '2642',
931
+ mali: '1f1f2-1f1f1',
932
+ malta: '1f1f2-1f1f9',
933
+ man: '1f468',
934
+ man_artist: '1f468-1f3a8',
935
+ man_astronaut: '1f468-1f680',
936
+ man_cartwheeling: '1f938-2642',
937
+ man_cook: '1f468-1f373',
938
+ man_dancing: '1f57a',
939
+ man_facepalming: '1f926-2642',
940
+ man_factory_worker: '1f468-1f3ed',
941
+ man_farmer: '1f468-1f33e',
942
+ man_firefighter: '1f468-1f692',
943
+ man_health_worker: '1f468-2695',
944
+ man_in_manual_wheelchair: '1f468-1f9bd',
945
+ man_in_motorized_wheelchair: '1f468-1f9bc',
946
+ man_in_tuxedo: '1f935',
947
+ man_judge: '1f468-2696',
948
+ man_juggling: '1f939-2642',
949
+ man_mechanic: '1f468-1f527',
950
+ man_office_worker: '1f468-1f4bc',
951
+ man_pilot: '1f468-2708',
952
+ man_playing_handball: '1f93e-2642',
953
+ man_playing_water_polo: '1f93d-2642',
954
+ man_scientist: '1f468-1f52c',
955
+ man_shrugging: '1f937-2642',
956
+ man_singer: '1f468-1f3a4',
957
+ man_student: '1f468-1f393',
958
+ man_teacher: '1f468-1f3eb',
959
+ man_technologist: '1f468-1f4bb',
960
+ man_with_gua_pi_mao: '1f472',
961
+ man_with_probing_cane: '1f468-1f9af',
962
+ man_with_turban: '1f473-2642',
963
+ mandarin: '1f34a',
964
+ mango: '1f96d',
965
+ mans_shoe: '1f45e',
966
+ mantelpiece_clock: '1f570',
967
+ manual_wheelchair: '1f9bd',
968
+ maple_leaf: '1f341',
969
+ marshall_islands: '1f1f2-1f1ed',
970
+ martial_arts_uniform: '1f94b',
971
+ martinique: '1f1f2-1f1f6',
972
+ mask: '1f637',
973
+ massage: '1f486',
974
+ massage_man: '1f486-2642',
975
+ massage_woman: '1f486-2640',
976
+ mate: '1f9c9',
977
+ mauritania: '1f1f2-1f1f7',
978
+ mauritius: '1f1f2-1f1fa',
979
+ mayotte: '1f1fe-1f1f9',
980
+ meat_on_bone: '1f356',
981
+ mechanic: '1f9d1-1f527',
982
+ mechanical_arm: '1f9be',
983
+ mechanical_leg: '1f9bf',
984
+ medal_military: '1f396',
985
+ medal_sports: '1f3c5',
986
+ medical_symbol: '2695',
987
+ mega: '1f4e3',
988
+ melon: '1f348',
989
+ memo: '1f4dd',
990
+ men_wrestling: '1f93c-2642',
991
+ menorah: '1f54e',
992
+ mens: '1f6b9',
993
+ mermaid: '1f9dc-2640',
994
+ merman: '1f9dc-2642',
995
+ merperson: '1f9dc',
996
+ metal: '1f918',
997
+ metro: '1f687',
998
+ mexico: '1f1f2-1f1fd',
999
+ microbe: '1f9a0',
1000
+ micronesia: '1f1eb-1f1f2',
1001
+ microphone: '1f3a4',
1002
+ microscope: '1f52c',
1003
+ middle_finger: '1f595',
1004
+ milk_glass: '1f95b',
1005
+ milky_way: '1f30c',
1006
+ minibus: '1f690',
1007
+ minidisc: '1f4bd',
1008
+ mobile_phone_off: '1f4f4',
1009
+ moldova: '1f1f2-1f1e9',
1010
+ monaco: '1f1f2-1f1e8',
1011
+ money_mouth_face: '1f911',
1012
+ money_with_wings: '1f4b8',
1013
+ moneybag: '1f4b0',
1014
+ mongolia: '1f1f2-1f1f3',
1015
+ monkey: '1f412',
1016
+ monkey_face: '1f435',
1017
+ monocle_face: '1f9d0',
1018
+ monorail: '1f69d',
1019
+ montenegro: '1f1f2-1f1ea',
1020
+ montserrat: '1f1f2-1f1f8',
1021
+ moon: '1f314',
1022
+ moon_cake: '1f96e',
1023
+ morocco: '1f1f2-1f1e6',
1024
+ mortar_board: '1f393',
1025
+ mosque: '1f54c',
1026
+ mosquito: '1f99f',
1027
+ motor_boat: '1f6e5',
1028
+ motor_scooter: '1f6f5',
1029
+ motorcycle: '1f3cd',
1030
+ motorized_wheelchair: '1f9bc',
1031
+ motorway: '1f6e3',
1032
+ mount_fuji: '1f5fb',
1033
+ mountain: '26f0',
1034
+ mountain_bicyclist: '1f6b5',
1035
+ mountain_biking_man: '1f6b5-2642',
1036
+ mountain_biking_woman: '1f6b5-2640',
1037
+ mountain_cableway: '1f6a0',
1038
+ mountain_railway: '1f69e',
1039
+ mountain_snow: '1f3d4',
1040
+ mouse: '1f42d',
1041
+ mouse2: '1f401',
1042
+ movie_camera: '1f3a5',
1043
+ moyai: '1f5ff',
1044
+ mozambique: '1f1f2-1f1ff',
1045
+ mrs_claus: '1f936',
1046
+ muscle: '1f4aa',
1047
+ mushroom: '1f344',
1048
+ musical_keyboard: '1f3b9',
1049
+ musical_note: '1f3b5',
1050
+ musical_score: '1f3bc',
1051
+ mute: '1f507',
1052
+ myanmar: '1f1f2-1f1f2',
1053
+ nail_care: '1f485',
1054
+ name_badge: '1f4db',
1055
+ namibia: '1f1f3-1f1e6',
1056
+ national_park: '1f3de',
1057
+ nauru: '1f1f3-1f1f7',
1058
+ nauseated_face: '1f922',
1059
+ nazar_amulet: '1f9ff',
1060
+ necktie: '1f454',
1061
+ negative_squared_cross_mark: '274e',
1062
+ nepal: '1f1f3-1f1f5',
1063
+ nerd_face: '1f913',
1064
+ netherlands: '1f1f3-1f1f1',
1065
+ neutral_face: '1f610',
1066
+ new: '1f195',
1067
+ new_caledonia: '1f1f3-1f1e8',
1068
+ new_moon: '1f311',
1069
+ new_moon_with_face: '1f31a',
1070
+ new_zealand: '1f1f3-1f1ff',
1071
+ newspaper: '1f4f0',
1072
+ newspaper_roll: '1f5de',
1073
+ next_track_button: '23ed',
1074
+ ng: '1f196',
1075
+ ng_man: '1f645-2642',
1076
+ ng_woman: '1f645-2640',
1077
+ nicaragua: '1f1f3-1f1ee',
1078
+ niger: '1f1f3-1f1ea',
1079
+ nigeria: '1f1f3-1f1ec',
1080
+ night_with_stars: '1f303',
1081
+ nine: '0039-20e3',
1082
+ niue: '1f1f3-1f1fa',
1083
+ no_bell: '1f515',
1084
+ no_bicycles: '1f6b3',
1085
+ no_entry: '26d4',
1086
+ no_entry_sign: '1f6ab',
1087
+ no_good: '1f645',
1088
+ no_good_man: '1f645-2642',
1089
+ no_good_woman: '1f645-2640',
1090
+ no_mobile_phones: '1f4f5',
1091
+ no_mouth: '1f636',
1092
+ no_pedestrians: '1f6b7',
1093
+ no_smoking: '1f6ad',
1094
+ 'non-potable_water': '1f6b1',
1095
+ norfolk_island: '1f1f3-1f1eb',
1096
+ north_korea: '1f1f0-1f1f5',
1097
+ northern_mariana_islands: '1f1f2-1f1f5',
1098
+ norway: '1f1f3-1f1f4',
1099
+ nose: '1f443',
1100
+ notebook: '1f4d3',
1101
+ notebook_with_decorative_cover: '1f4d4',
1102
+ notes: '1f3b6',
1103
+ nut_and_bolt: '1f529',
1104
+ o: '2b55',
1105
+ o2: '1f17e',
1106
+ ocean: '1f30a',
1107
+ octopus: '1f419',
1108
+ oden: '1f362',
1109
+ office: '1f3e2',
1110
+ office_worker: '1f9d1-1f4bc',
1111
+ oil_drum: '1f6e2',
1112
+ ok: '1f197',
1113
+ ok_hand: '1f44c',
1114
+ ok_man: '1f646-2642',
1115
+ ok_person: '1f646',
1116
+ ok_woman: '1f646-2640',
1117
+ old_key: '1f5dd',
1118
+ older_adult: '1f9d3',
1119
+ older_man: '1f474',
1120
+ older_woman: '1f475',
1121
+ om: '1f549',
1122
+ oman: '1f1f4-1f1f2',
1123
+ on: '1f51b',
1124
+ oncoming_automobile: '1f698',
1125
+ oncoming_bus: '1f68d',
1126
+ oncoming_police_car: '1f694',
1127
+ oncoming_taxi: '1f696',
1128
+ one: '0031-20e3',
1129
+ one_piece_swimsuit: '1fa71',
1130
+ onion: '1f9c5',
1131
+ open_book: '1f4d6',
1132
+ open_file_folder: '1f4c2',
1133
+ open_hands: '1f450',
1134
+ open_mouth: '1f62e',
1135
+ open_umbrella: '2602',
1136
+ ophiuchus: '26ce',
1137
+ orange: '1f34a',
1138
+ orange_book: '1f4d9',
1139
+ orange_circle: '1f7e0',
1140
+ orange_heart: '1f9e1',
1141
+ orange_square: '1f7e7',
1142
+ orangutan: '1f9a7',
1143
+ orthodox_cross: '2626',
1144
+ otter: '1f9a6',
1145
+ outbox_tray: '1f4e4',
1146
+ owl: '1f989',
1147
+ ox: '1f402',
1148
+ oyster: '1f9aa',
1149
+ package: '1f4e6',
1150
+ page_facing_up: '1f4c4',
1151
+ page_with_curl: '1f4c3',
1152
+ pager: '1f4df',
1153
+ paintbrush: '1f58c',
1154
+ pakistan: '1f1f5-1f1f0',
1155
+ palau: '1f1f5-1f1fc',
1156
+ palestinian_territories: '1f1f5-1f1f8',
1157
+ palm_tree: '1f334',
1158
+ palms_up_together: '1f932',
1159
+ panama: '1f1f5-1f1e6',
1160
+ pancakes: '1f95e',
1161
+ panda_face: '1f43c',
1162
+ paperclip: '1f4ce',
1163
+ paperclips: '1f587',
1164
+ papua_new_guinea: '1f1f5-1f1ec',
1165
+ parachute: '1fa82',
1166
+ paraguay: '1f1f5-1f1fe',
1167
+ parasol_on_ground: '26f1',
1168
+ parking: '1f17f',
1169
+ parrot: '1f99c',
1170
+ part_alternation_mark: '303d',
1171
+ partly_sunny: '26c5',
1172
+ partying_face: '1f973',
1173
+ passenger_ship: '1f6f3',
1174
+ passport_control: '1f6c2',
1175
+ pause_button: '23f8',
1176
+ paw_prints: '1f43e',
1177
+ peace_symbol: '262e',
1178
+ peach: '1f351',
1179
+ peacock: '1f99a',
1180
+ peanuts: '1f95c',
1181
+ pear: '1f350',
1182
+ pen: '1f58a',
1183
+ pencil: '1f4dd',
1184
+ pencil2: '270f',
1185
+ penguin: '1f427',
1186
+ pensive: '1f614',
1187
+ people_holding_hands: '1f9d1-1f91d-1f9d1',
1188
+ performing_arts: '1f3ad',
1189
+ persevere: '1f623',
1190
+ person_bald: '1f9d1-1f9b2',
1191
+ person_curly_hair: '1f9d1-1f9b1',
1192
+ person_fencing: '1f93a',
1193
+ person_in_manual_wheelchair: '1f9d1-1f9bd',
1194
+ person_in_motorized_wheelchair: '1f9d1-1f9bc',
1195
+ person_red_hair: '1f9d1-1f9b0',
1196
+ person_white_hair: '1f9d1-1f9b3',
1197
+ person_with_probing_cane: '1f9d1-1f9af',
1198
+ person_with_turban: '1f473',
1199
+ peru: '1f1f5-1f1ea',
1200
+ petri_dish: '1f9eb',
1201
+ philippines: '1f1f5-1f1ed',
1202
+ phone: '260e',
1203
+ pick: '26cf',
1204
+ pie: '1f967',
1205
+ pig: '1f437',
1206
+ pig2: '1f416',
1207
+ pig_nose: '1f43d',
1208
+ pill: '1f48a',
1209
+ pilot: '1f9d1-2708',
1210
+ pinching_hand: '1f90f',
1211
+ pineapple: '1f34d',
1212
+ ping_pong: '1f3d3',
1213
+ pirate_flag: '1f3f4-2620',
1214
+ pisces: '2653',
1215
+ pitcairn_islands: '1f1f5-1f1f3',
1216
+ pizza: '1f355',
1217
+ place_of_worship: '1f6d0',
1218
+ plate_with_cutlery: '1f37d',
1219
+ play_or_pause_button: '23ef',
1220
+ pleading_face: '1f97a',
1221
+ point_down: '1f447',
1222
+ point_left: '1f448',
1223
+ point_right: '1f449',
1224
+ point_up: '261d',
1225
+ point_up_2: '1f446',
1226
+ poland: '1f1f5-1f1f1',
1227
+ police_car: '1f693',
1228
+ police_officer: '1f46e',
1229
+ policeman: '1f46e-2642',
1230
+ policewoman: '1f46e-2640',
1231
+ poodle: '1f429',
1232
+ poop: '1f4a9',
1233
+ popcorn: '1f37f',
1234
+ portugal: '1f1f5-1f1f9',
1235
+ post_office: '1f3e3',
1236
+ postal_horn: '1f4ef',
1237
+ postbox: '1f4ee',
1238
+ potable_water: '1f6b0',
1239
+ potato: '1f954',
1240
+ pouch: '1f45d',
1241
+ poultry_leg: '1f357',
1242
+ pound: '1f4b7',
1243
+ pout: '1f621',
1244
+ pouting_cat: '1f63e',
1245
+ pouting_face: '1f64e',
1246
+ pouting_man: '1f64e-2642',
1247
+ pouting_woman: '1f64e-2640',
1248
+ pray: '1f64f',
1249
+ prayer_beads: '1f4ff',
1250
+ pregnant_woman: '1f930',
1251
+ pretzel: '1f968',
1252
+ previous_track_button: '23ee',
1253
+ prince: '1f934',
1254
+ princess: '1f478',
1255
+ printer: '1f5a8',
1256
+ probing_cane: '1f9af',
1257
+ puerto_rico: '1f1f5-1f1f7',
1258
+ punch: '1f44a',
1259
+ purple_circle: '1f7e3',
1260
+ purple_heart: '1f49c',
1261
+ purple_square: '1f7ea',
1262
+ purse: '1f45b',
1263
+ pushpin: '1f4cc',
1264
+ put_litter_in_its_place: '1f6ae',
1265
+ qatar: '1f1f6-1f1e6',
1266
+ question: '2753',
1267
+ rabbit: '1f430',
1268
+ rabbit2: '1f407',
1269
+ raccoon: '1f99d',
1270
+ racehorse: '1f40e',
1271
+ racing_car: '1f3ce',
1272
+ radio: '1f4fb',
1273
+ radio_button: '1f518',
1274
+ radioactive: '2622',
1275
+ rage: '1f621',
1276
+ railway_car: '1f683',
1277
+ railway_track: '1f6e4',
1278
+ rainbow: '1f308',
1279
+ rainbow_flag: '1f3f3-1f308',
1280
+ raised_back_of_hand: '1f91a',
1281
+ raised_eyebrow: '1f928',
1282
+ raised_hand: '270b',
1283
+ raised_hand_with_fingers_splayed: '1f590',
1284
+ raised_hands: '1f64c',
1285
+ raising_hand: '1f64b',
1286
+ raising_hand_man: '1f64b-2642',
1287
+ raising_hand_woman: '1f64b-2640',
1288
+ ram: '1f40f',
1289
+ ramen: '1f35c',
1290
+ rat: '1f400',
1291
+ razor: '1fa92',
1292
+ receipt: '1f9fe',
1293
+ record_button: '23fa',
1294
+ recycle: '267b',
1295
+ red_car: '1f697',
1296
+ red_circle: '1f534',
1297
+ red_envelope: '1f9e7',
1298
+ red_haired_man: '1f468-1f9b0',
1299
+ red_haired_woman: '1f469-1f9b0',
1300
+ red_square: '1f7e5',
1301
+ registered: '00ae',
1302
+ relaxed: '263a',
1303
+ relieved: '1f60c',
1304
+ reminder_ribbon: '1f397',
1305
+ repeat: '1f501',
1306
+ repeat_one: '1f502',
1307
+ rescue_worker_helmet: '26d1',
1308
+ restroom: '1f6bb',
1309
+ reunion: '1f1f7-1f1ea',
1310
+ revolving_hearts: '1f49e',
1311
+ rewind: '23ea',
1312
+ rhinoceros: '1f98f',
1313
+ ribbon: '1f380',
1314
+ rice: '1f35a',
1315
+ rice_ball: '1f359',
1316
+ rice_cracker: '1f358',
1317
+ rice_scene: '1f391',
1318
+ right_anger_bubble: '1f5ef',
1319
+ ring: '1f48d',
1320
+ ringed_planet: '1fa90',
1321
+ robot: '1f916',
1322
+ rocket: '1f680',
1323
+ rofl: '1f923',
1324
+ roll_eyes: '1f644',
1325
+ roll_of_paper: '1f9fb',
1326
+ roller_coaster: '1f3a2',
1327
+ romania: '1f1f7-1f1f4',
1328
+ rooster: '1f413',
1329
+ rose: '1f339',
1330
+ rosette: '1f3f5',
1331
+ rotating_light: '1f6a8',
1332
+ round_pushpin: '1f4cd',
1333
+ rowboat: '1f6a3',
1334
+ rowing_man: '1f6a3-2642',
1335
+ rowing_woman: '1f6a3-2640',
1336
+ ru: '1f1f7-1f1fa',
1337
+ rugby_football: '1f3c9',
1338
+ runner: '1f3c3',
1339
+ running: '1f3c3',
1340
+ running_man: '1f3c3-2642',
1341
+ running_shirt_with_sash: '1f3bd',
1342
+ running_woman: '1f3c3-2640',
1343
+ rwanda: '1f1f7-1f1fc',
1344
+ sa: '1f202',
1345
+ safety_pin: '1f9f7',
1346
+ safety_vest: '1f9ba',
1347
+ sagittarius: '2650',
1348
+ sailboat: '26f5',
1349
+ sake: '1f376',
1350
+ salt: '1f9c2',
1351
+ samoa: '1f1fc-1f1f8',
1352
+ san_marino: '1f1f8-1f1f2',
1353
+ sandal: '1f461',
1354
+ sandwich: '1f96a',
1355
+ santa: '1f385',
1356
+ sao_tome_principe: '1f1f8-1f1f9',
1357
+ sari: '1f97b',
1358
+ sassy_man: '1f481-2642',
1359
+ sassy_woman: '1f481-2640',
1360
+ satellite: '1f4e1',
1361
+ satisfied: '1f606',
1362
+ saudi_arabia: '1f1f8-1f1e6',
1363
+ sauna_man: '1f9d6-2642',
1364
+ sauna_person: '1f9d6',
1365
+ sauna_woman: '1f9d6-2640',
1366
+ sauropod: '1f995',
1367
+ saxophone: '1f3b7',
1368
+ scarf: '1f9e3',
1369
+ school: '1f3eb',
1370
+ school_satchel: '1f392',
1371
+ scientist: '1f9d1-1f52c',
1372
+ scissors: '2702',
1373
+ scorpion: '1f982',
1374
+ scorpius: '264f',
1375
+ scotland: '1f3f4-e0067-e0062-e0073-e0063-e0074-e007f',
1376
+ scream: '1f631',
1377
+ scream_cat: '1f640',
1378
+ scroll: '1f4dc',
1379
+ seat: '1f4ba',
1380
+ secret: '3299',
1381
+ see_no_evil: '1f648',
1382
+ seedling: '1f331',
1383
+ selfie: '1f933',
1384
+ senegal: '1f1f8-1f1f3',
1385
+ serbia: '1f1f7-1f1f8',
1386
+ service_dog: '1f415-1f9ba',
1387
+ seven: '0037-20e3',
1388
+ seychelles: '1f1f8-1f1e8',
1389
+ shallow_pan_of_food: '1f958',
1390
+ shamrock: '2618',
1391
+ shark: '1f988',
1392
+ shaved_ice: '1f367',
1393
+ sheep: '1f411',
1394
+ shell: '1f41a',
1395
+ shield: '1f6e1',
1396
+ shinto_shrine: '26e9',
1397
+ ship: '1f6a2',
1398
+ shirt: '1f455',
1399
+ poo: '1f4a9',
1400
+ shoe: '1f45e',
1401
+ shopping: '1f6cd',
1402
+ shopping_cart: '1f6d2',
1403
+ shorts: '1fa73',
1404
+ shower: '1f6bf',
1405
+ shrimp: '1f990',
1406
+ shrug: '1f937',
1407
+ shushing_face: '1f92b',
1408
+ sierra_leone: '1f1f8-1f1f1',
1409
+ signal_strength: '1f4f6',
1410
+ singapore: '1f1f8-1f1ec',
1411
+ singer: '1f9d1-1f3a4',
1412
+ sint_maarten: '1f1f8-1f1fd',
1413
+ six: '0036-20e3',
1414
+ six_pointed_star: '1f52f',
1415
+ skateboard: '1f6f9',
1416
+ ski: '1f3bf',
1417
+ skier: '26f7',
1418
+ skull: '1f480',
1419
+ skull_and_crossbones: '2620',
1420
+ skunk: '1f9a8',
1421
+ sled: '1f6f7',
1422
+ sleeping: '1f634',
1423
+ sleeping_bed: '1f6cc',
1424
+ sleepy: '1f62a',
1425
+ slightly_frowning_face: '1f641',
1426
+ slightly_smiling_face: '1f642',
1427
+ slot_machine: '1f3b0',
1428
+ sloth: '1f9a5',
1429
+ slovakia: '1f1f8-1f1f0',
1430
+ slovenia: '1f1f8-1f1ee',
1431
+ small_airplane: '1f6e9',
1432
+ small_blue_diamond: '1f539',
1433
+ small_orange_diamond: '1f538',
1434
+ small_red_triangle: '1f53a',
1435
+ small_red_triangle_down: '1f53b',
1436
+ smile: '1f604',
1437
+ smile_cat: '1f638',
1438
+ smiley: '1f603',
1439
+ smiley_cat: '1f63a',
1440
+ smiling_face_with_three_hearts: '1f970',
1441
+ smiling_imp: '1f608',
1442
+ smirk: '1f60f',
1443
+ smirk_cat: '1f63c',
1444
+ smoking: '1f6ac',
1445
+ snail: '1f40c',
1446
+ snake: '1f40d',
1447
+ sneezing_face: '1f927',
1448
+ snowboarder: '1f3c2',
1449
+ snowflake: '2744',
1450
+ snowman: '26c4',
1451
+ snowman_with_snow: '2603',
1452
+ soap: '1f9fc',
1453
+ sob: '1f62d',
1454
+ soccer: '26bd',
1455
+ socks: '1f9e6',
1456
+ softball: '1f94e',
1457
+ solomon_islands: '1f1f8-1f1e7',
1458
+ somalia: '1f1f8-1f1f4',
1459
+ soon: '1f51c',
1460
+ sos: '1f198',
1461
+ sound: '1f509',
1462
+ south_africa: '1f1ff-1f1e6',
1463
+ south_georgia_south_sandwich_islands: '1f1ec-1f1f8',
1464
+ south_sudan: '1f1f8-1f1f8',
1465
+ space_invader: '1f47e',
1466
+ spades: '2660',
1467
+ spaghetti: '1f35d',
1468
+ sparkle: '2747',
1469
+ sparkler: '1f387',
1470
+ sparkles: '2728',
1471
+ sparkling_heart: '1f496',
1472
+ speak_no_evil: '1f64a',
1473
+ speaker: '1f508',
1474
+ speaking_head: '1f5e3',
1475
+ speech_balloon: '1f4ac',
1476
+ speedboat: '1f6a4',
1477
+ spider: '1f577',
1478
+ spider_web: '1f578',
1479
+ spiral_calendar: '1f5d3',
1480
+ spiral_notepad: '1f5d2',
1481
+ sponge: '1f9fd',
1482
+ spoon: '1f944',
1483
+ squid: '1f991',
1484
+ sri_lanka: '1f1f1-1f1f0',
1485
+ st_barthelemy: '1f1e7-1f1f1',
1486
+ st_helena: '1f1f8-1f1ed',
1487
+ st_kitts_nevis: '1f1f0-1f1f3',
1488
+ st_lucia: '1f1f1-1f1e8',
1489
+ st_martin: '1f1f2-1f1eb',
1490
+ st_pierre_miquelon: '1f1f5-1f1f2',
1491
+ st_vincent_grenadines: '1f1fb-1f1e8',
1492
+ stadium: '1f3df',
1493
+ standing_man: '1f9cd-2642',
1494
+ standing_person: '1f9cd',
1495
+ standing_woman: '1f9cd-2640',
1496
+ star: '2b50',
1497
+ star2: '1f31f',
1498
+ star_and_crescent: '262a',
1499
+ star_of_david: '2721',
1500
+ star_struck: '1f929',
1501
+ stars: '1f320',
1502
+ station: '1f689',
1503
+ statue_of_liberty: '1f5fd',
1504
+ steam_locomotive: '1f682',
1505
+ stethoscope: '1fa7a',
1506
+ stew: '1f372',
1507
+ stop_button: '23f9',
1508
+ stop_sign: '1f6d1',
1509
+ stopwatch: '23f1',
1510
+ straight_ruler: '1f4cf',
1511
+ strawberry: '1f353',
1512
+ stuck_out_tongue: '1f61b',
1513
+ stuck_out_tongue_closed_eyes: '1f61d',
1514
+ stuck_out_tongue_winking_eye: '1f61c',
1515
+ student: '1f9d1-1f393',
1516
+ studio_microphone: '1f399',
1517
+ stuffed_flatbread: '1f959',
1518
+ sudan: '1f1f8-1f1e9',
1519
+ sun_behind_large_cloud: '1f325',
1520
+ sun_behind_rain_cloud: '1f326',
1521
+ sun_behind_small_cloud: '1f324',
1522
+ sun_with_face: '1f31e',
1523
+ sunflower: '1f33b',
1524
+ sunglasses: '1f60e',
1525
+ sunny: '2600',
1526
+ sunrise: '1f305',
1527
+ sunrise_over_mountains: '1f304',
1528
+ superhero: '1f9b8',
1529
+ superhero_man: '1f9b8-2642',
1530
+ superhero_woman: '1f9b8-2640',
1531
+ supervillain: '1f9b9',
1532
+ supervillain_man: '1f9b9-2642',
1533
+ supervillain_woman: '1f9b9-2640',
1534
+ surfer: '1f3c4',
1535
+ surfing_man: '1f3c4-2642',
1536
+ surfing_woman: '1f3c4-2640',
1537
+ suriname: '1f1f8-1f1f7',
1538
+ sushi: '1f363',
1539
+ suspension_railway: '1f69f',
1540
+ svalbard_jan_mayen: '1f1f8-1f1ef',
1541
+ swan: '1f9a2',
1542
+ swaziland: '1f1f8-1f1ff',
1543
+ sweat: '1f613',
1544
+ sweat_drops: '1f4a6',
1545
+ sweat_smile: '1f605',
1546
+ sweden: '1f1f8-1f1ea',
1547
+ sweet_potato: '1f360',
1548
+ swim_brief: '1fa72',
1549
+ swimmer: '1f3ca',
1550
+ swimming_man: '1f3ca-2642',
1551
+ swimming_woman: '1f3ca-2640',
1552
+ switzerland: '1f1e8-1f1ed',
1553
+ symbols: '1f523',
1554
+ synagogue: '1f54d',
1555
+ syria: '1f1f8-1f1fe',
1556
+ syringe: '1f489',
1557
+ 't-rex': '1f996',
1558
+ taco: '1f32e',
1559
+ tada: '1f389',
1560
+ taiwan: '1f1f9-1f1fc',
1561
+ tajikistan: '1f1f9-1f1ef',
1562
+ takeout_box: '1f961',
1563
+ tanabata_tree: '1f38b',
1564
+ tangerine: '1f34a',
1565
+ tanzania: '1f1f9-1f1ff',
1566
+ taurus: '2649',
1567
+ taxi: '1f695',
1568
+ tea: '1f375',
1569
+ teacher: '1f9d1-1f3eb',
1570
+ technologist: '1f9d1-1f4bb',
1571
+ teddy_bear: '1f9f8',
1572
+ telephone: '260e',
1573
+ telephone_receiver: '1f4de',
1574
+ telescope: '1f52d',
1575
+ tennis: '1f3be',
1576
+ tent: '26fa',
1577
+ test_tube: '1f9ea',
1578
+ thailand: '1f1f9-1f1ed',
1579
+ thermometer: '1f321',
1580
+ thinking: '1f914',
1581
+ thought_balloon: '1f4ad',
1582
+ thread: '1f9f5',
1583
+ three: '0033-20e3',
1584
+ thumbsdown: '1f44e',
1585
+ thumbsup: '1f44d',
1586
+ ticket: '1f3ab',
1587
+ tickets: '1f39f',
1588
+ tiger: '1f42f',
1589
+ tiger2: '1f405',
1590
+ timer_clock: '23f2',
1591
+ timor_leste: '1f1f9-1f1f1',
1592
+ tipping_hand_man: '1f481-2642',
1593
+ tipping_hand_person: '1f481',
1594
+ tipping_hand_woman: '1f481-2640',
1595
+ tired_face: '1f62b',
1596
+ tm: '2122',
1597
+ togo: '1f1f9-1f1ec',
1598
+ toilet: '1f6bd',
1599
+ tokelau: '1f1f9-1f1f0',
1600
+ tokyo_tower: '1f5fc',
1601
+ tomato: '1f345',
1602
+ tonga: '1f1f9-1f1f4',
1603
+ tongue: '1f445',
1604
+ toolbox: '1f9f0',
1605
+ tooth: '1f9b7',
1606
+ top: '1f51d',
1607
+ tophat: '1f3a9',
1608
+ tornado: '1f32a',
1609
+ tr: '1f1f9-1f1f7',
1610
+ trackball: '1f5b2',
1611
+ tractor: '1f69c',
1612
+ traffic_light: '1f6a5',
1613
+ train: '1f68b',
1614
+ train2: '1f686',
1615
+ tram: '1f68a',
1616
+ triangular_flag_on_post: '1f6a9',
1617
+ triangular_ruler: '1f4d0',
1618
+ trident: '1f531',
1619
+ trinidad_tobago: '1f1f9-1f1f9',
1620
+ tristan_da_cunha: '1f1f9-1f1e6',
1621
+ triumph: '1f624',
1622
+ trolleybus: '1f68e',
1623
+ trophy: '1f3c6',
1624
+ tropical_drink: '1f379',
1625
+ tropical_fish: '1f420',
1626
+ truck: '1f69a',
1627
+ trumpet: '1f3ba',
1628
+ tshirt: '1f455',
1629
+ tulip: '1f337',
1630
+ tumbler_glass: '1f943',
1631
+ tunisia: '1f1f9-1f1f3',
1632
+ turkey: '1f983',
1633
+ turkmenistan: '1f1f9-1f1f2',
1634
+ turks_caicos_islands: '1f1f9-1f1e8',
1635
+ turtle: '1f422',
1636
+ tuvalu: '1f1f9-1f1fb',
1637
+ tv: '1f4fa',
1638
+ twisted_rightwards_arrows: '1f500',
1639
+ two: '0032-20e3',
1640
+ two_hearts: '1f495',
1641
+ two_men_holding_hands: '1f46c',
1642
+ two_women_holding_hands: '1f46d',
1643
+ u5272: '1f239',
1644
+ u5408: '1f234',
1645
+ u55b6: '1f23a',
1646
+ u6307: '1f22f',
1647
+ u6708: '1f237',
1648
+ u6709: '1f236',
1649
+ u6e80: '1f235',
1650
+ u7121: '1f21a',
1651
+ u7533: '1f238',
1652
+ u7981: '1f232',
1653
+ u7a7a: '1f233',
1654
+ uganda: '1f1fa-1f1ec',
1655
+ uk: '1f1ec-1f1e7',
1656
+ ukraine: '1f1fa-1f1e6',
1657
+ umbrella: '2614',
1658
+ unamused: '1f612',
1659
+ underage: '1f51e',
1660
+ unicorn: '1f984',
1661
+ united_arab_emirates: '1f1e6-1f1ea',
1662
+ united_nations: '1f1fa-1f1f3',
1663
+ unlock: '1f513',
1664
+ up: '1f199',
1665
+ upside_down_face: '1f643',
1666
+ uruguay: '1f1fa-1f1fe',
1667
+ us: '1f1fa-1f1f8',
1668
+ us_outlying_islands: '1f1fa-1f1f2',
1669
+ us_virgin_islands: '1f1fb-1f1ee',
1670
+ uzbekistan: '1f1fa-1f1ff',
1671
+ v: '270c',
1672
+ vampire: '1f9db',
1673
+ vampire_man: '1f9db-2642',
1674
+ vampire_woman: '1f9db-2640',
1675
+ vanuatu: '1f1fb-1f1fa',
1676
+ vatican_city: '1f1fb-1f1e6',
1677
+ venezuela: '1f1fb-1f1ea',
1678
+ vertical_traffic_light: '1f6a6',
1679
+ vhs: '1f4fc',
1680
+ vibration_mode: '1f4f3',
1681
+ video_camera: '1f4f9',
1682
+ video_game: '1f3ae',
1683
+ vietnam: '1f1fb-1f1f3',
1684
+ violin: '1f3bb',
1685
+ virgo: '264d',
1686
+ volcano: '1f30b',
1687
+ volleyball: '1f3d0',
1688
+ vomiting_face: '1f92e',
1689
+ vs: '1f19a',
1690
+ vulcan_salute: '1f596',
1691
+ waffle: '1f9c7',
1692
+ wales: '1f3f4-e0067-e0062-e0077-e006c-e0073-e007f',
1693
+ walking: '1f6b6',
1694
+ walking_man: '1f6b6-2642',
1695
+ walking_woman: '1f6b6-2640',
1696
+ wallis_futuna: '1f1fc-1f1eb',
1697
+ waning_crescent_moon: '1f318',
1698
+ waning_gibbous_moon: '1f316',
1699
+ warning: '26a0',
1700
+ wastebasket: '1f5d1',
1701
+ watch: '231a',
1702
+ water_buffalo: '1f403',
1703
+ water_polo: '1f93d',
1704
+ watermelon: '1f349',
1705
+ wave: '1f44b',
1706
+ wavy_dash: '3030',
1707
+ waxing_crescent_moon: '1f312',
1708
+ waxing_gibbous_moon: '1f314',
1709
+ wc: '1f6be',
1710
+ weary: '1f629',
1711
+ wedding: '1f492',
1712
+ weight_lifting: '1f3cb',
1713
+ weight_lifting_man: '1f3cb-2642',
1714
+ weight_lifting_woman: '1f3cb-2640',
1715
+ western_sahara: '1f1ea-1f1ed',
1716
+ whale: '1f433',
1717
+ whale2: '1f40b',
1718
+ wheel_of_dharma: '2638',
1719
+ wheelchair: '267f',
1720
+ white_check_mark: '2705',
1721
+ white_circle: '26aa',
1722
+ white_flag: '1f3f3',
1723
+ white_flower: '1f4ae',
1724
+ white_haired_man: '1f468-1f9b3',
1725
+ white_haired_woman: '1f469-1f9b3',
1726
+ white_heart: '1f90d',
1727
+ white_large_square: '2b1c',
1728
+ white_medium_small_square: '25fd',
1729
+ white_medium_square: '25fb',
1730
+ white_small_square: '25ab',
1731
+ white_square_button: '1f533',
1732
+ wilted_flower: '1f940',
1733
+ wind_chime: '1f390',
1734
+ wind_face: '1f32c',
1735
+ wine_glass: '1f377',
1736
+ wink: '1f609',
1737
+ wolf: '1f43a',
1738
+ woman: '1f469',
1739
+ woman_artist: '1f469-1f3a8',
1740
+ woman_astronaut: '1f469-1f680',
1741
+ woman_cartwheeling: '1f938-2640',
1742
+ woman_cook: '1f469-1f373',
1743
+ woman_dancing: '1f483',
1744
+ woman_facepalming: '1f926-2640',
1745
+ woman_factory_worker: '1f469-1f3ed',
1746
+ woman_farmer: '1f469-1f33e',
1747
+ woman_firefighter: '1f469-1f692',
1748
+ woman_health_worker: '1f469-2695',
1749
+ woman_in_manual_wheelchair: '1f469-1f9bd',
1750
+ woman_in_motorized_wheelchair: '1f469-1f9bc',
1751
+ woman_judge: '1f469-2696',
1752
+ woman_juggling: '1f939-2640',
1753
+ woman_mechanic: '1f469-1f527',
1754
+ woman_office_worker: '1f469-1f4bc',
1755
+ woman_pilot: '1f469-2708',
1756
+ woman_playing_handball: '1f93e-2640',
1757
+ woman_playing_water_polo: '1f93d-2640',
1758
+ woman_scientist: '1f469-1f52c',
1759
+ woman_shrugging: '1f937-2640',
1760
+ woman_singer: '1f469-1f3a4',
1761
+ woman_student: '1f469-1f393',
1762
+ woman_teacher: '1f469-1f3eb',
1763
+ woman_technologist: '1f469-1f4bb',
1764
+ woman_with_headscarf: '1f9d5',
1765
+ woman_with_probing_cane: '1f469-1f9af',
1766
+ woman_with_turban: '1f473-2640',
1767
+ womans_clothes: '1f45a',
1768
+ womans_hat: '1f452',
1769
+ women_wrestling: '1f93c-2640',
1770
+ womens: '1f6ba',
1771
+ woozy_face: '1f974',
1772
+ world_map: '1f5fa',
1773
+ worried: '1f61f',
1774
+ wrench: '1f527',
1775
+ wrestling: '1f93c',
1776
+ writing_hand: '270d',
1777
+ x: '274c',
1778
+ yarn: '1f9f6',
1779
+ yawning_face: '1f971',
1780
+ yellow_circle: '1f7e1',
1781
+ yellow_heart: '1f49b',
1782
+ yellow_square: '1f7e8',
1783
+ yemen: '1f1fe-1f1ea',
1784
+ yen: '1f4b4',
1785
+ yin_yang: '262f',
1786
+ yo_yo: '1fa80',
1787
+ yum: '1f60b',
1788
+ zambia: '1f1ff-1f1f2',
1789
+ zany_face: '1f92a',
1790
+ zap: '26a1',
1791
+ zebra: '1f993',
1792
+ zero: '0030-20e3',
1793
+ zimbabwe: '1f1ff-1f1fc',
1794
+ zipper_mouth_face: '1f910',
1795
+ zombie: '1f9df',
1796
+ zombie_man: '1f9df-2642',
1797
+ zombie_woman: '1f9df-2640',
1798
+ zzz: '1f4a4',
1799
+ },
1800
+ };
1801
+
1802
+ export const githubCustom = {
1803
+ defaultURL: 'https://github.githubassets.com/images/icons/emoji/${code}.png?v8',
1804
+ emojis: {
1805
+ atom: 'atom',
1806
+ basecamp: 'basecamp',
1807
+ basecampy: 'basecampy',
1808
+ bowtie: 'bowtie',
1809
+ electron: 'electron',
1810
+ feelsgood: 'feelsgood',
1811
+ finnadie: 'finnadie',
1812
+ goberserk: 'goberserk',
1813
+ godmode: 'godmode',
1814
+ hurtrealbad: 'hurtrealbad',
1815
+ neckbeard: 'neckbeard',
1816
+ octocat: 'octocat',
1817
+ rage1: 'rage1',
1818
+ rage2: 'rage2',
1819
+ rage3: 'rage3',
1820
+ rage4: 'rage4',
1821
+ shipit: 'shipit',
1822
+ suspect: 'suspect',
1823
+ trollface: 'trollface',
1824
+ },
1825
+ };