@blueking/ai-ui-sdk 0.0.15-beta.1 โ†’ 0.0.15-beta.10

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 (317) hide show
  1. package/dist/assets/images/ai.png +0 -0
  2. package/dist/assets/images/user.png +0 -0
  3. package/dist/assets/svg/picture-fail.svg +1 -0
  4. package/dist/common/util.d.ts +10 -0
  5. package/dist/common/util.js +34 -0
  6. package/dist/component/render-image/index.script.vue.js +37 -0
  7. package/dist/component/render-image/index.vue.d.ts +6 -0
  8. package/dist/component/render-image/index.vue.js +3 -0
  9. package/dist/component/render-input/index.script.vue.js +205 -0
  10. package/dist/component/render-input/index.vue.css +134 -0
  11. package/dist/component/render-input/index.vue.d.ts +18 -0
  12. package/dist/component/render-input/index.vue.js +5 -0
  13. package/dist/component/render-input/render-drag.script.vue.js +61 -0
  14. package/dist/component/render-input/render-drag.vue.css +32 -0
  15. package/dist/component/render-input/render-drag.vue.d.ts +13 -0
  16. package/dist/component/render-input/render-drag.vue.js +5 -0
  17. package/dist/component/render-input/render-quill.script.vue.js +197 -0
  18. package/dist/component/render-input/render-quill.vue.css +27 -0
  19. package/dist/component/render-input/render-quill.vue.d.ts +24 -0
  20. package/dist/component/render-input/render-quill.vue.js +4 -0
  21. package/dist/component/render-knowledge-icon/index.script.vue.js +40 -0
  22. package/dist/component/render-knowledge-icon/index.vue.css +4 -0
  23. package/dist/component/render-knowledge-icon/index.vue.d.ts +14 -0
  24. package/dist/component/render-knowledge-icon/index.vue.js +5 -0
  25. package/dist/component/render-markdown/mark-down-code.d.ts +2 -0
  26. package/dist/component/render-markdown/mark-down-code.js +171 -0
  27. package/dist/component/render-markdown/mark-down-emoji.d.ts +2 -0
  28. package/dist/component/render-markdown/mark-down-emoji.js +4 -0
  29. package/dist/component/render-markdown/mark-down.d.ts +74 -0
  30. package/dist/component/render-markdown/mark-down.js +147 -0
  31. package/dist/component/render-markdown/mark-down.postcss.css +131 -0
  32. package/dist/component/render-message/image-not-supported-message.script.vue.js +99 -0
  33. package/dist/component/render-message/image-not-supported-message.vue.css +66 -0
  34. package/dist/component/render-message/image-not-supported-message.vue.d.ts +21 -0
  35. package/dist/component/render-message/image-not-supported-message.vue.js +5 -0
  36. package/dist/component/render-message/index.script.vue.js +104 -0
  37. package/dist/component/render-message/index.vue.d.ts +13 -0
  38. package/dist/component/render-message/index.vue.js +3 -0
  39. package/dist/component/render-message/openai-message.script.vue.js +215 -0
  40. package/dist/component/render-message/openai-message.vue.css +98 -0
  41. package/dist/component/render-message/openai-message.vue.d.ts +15 -0
  42. package/dist/component/render-message/openai-message.vue.js +5 -0
  43. package/dist/component/render-message/skeleton-message.script.vue.js +7 -0
  44. package/dist/component/render-message/skeleton-message.vue.css +7 -0
  45. package/dist/component/render-message/skeleton-message.vue.d.ts +2 -0
  46. package/dist/component/render-message/skeleton-message.vue.js +6 -0
  47. package/dist/component/render-message/system-message.script.vue.js +17 -0
  48. package/dist/component/render-message/system-message.vue.css +20 -0
  49. package/dist/component/render-message/system-message.vue.d.ts +6 -0
  50. package/dist/component/render-message/system-message.vue.js +5 -0
  51. package/dist/component/render-message/time-message.script.vue.js +41 -0
  52. package/dist/component/render-message/time-message.vue.css +14 -0
  53. package/dist/component/render-message/time-message.vue.d.ts +6 -0
  54. package/dist/component/render-message/time-message.vue.js +5 -0
  55. package/dist/component/render-message/token-expired-message.script.vue.js +78 -0
  56. package/dist/component/render-message/token-expired-message.vue.css +60 -0
  57. package/dist/component/render-message/token-expired-message.vue.d.ts +15 -0
  58. package/dist/component/render-message/token-expired-message.vue.js +5 -0
  59. package/dist/component/render-message/user-message.script.vue.js +241 -0
  60. package/dist/component/render-message/user-message.vue.css +100 -0
  61. package/dist/component/render-message/user-message.vue.d.ts +21 -0
  62. package/dist/component/render-message/user-message.vue.js +5 -0
  63. package/dist/event/index.d.ts +4 -0
  64. package/dist/event/index.js +18 -0
  65. package/dist/hooks/use-chat.d.ts +1 -2
  66. package/dist/hooks/use-chat.js +35 -3
  67. package/dist/hooks/use-mouse-drag.d.ts +13 -0
  68. package/dist/hooks/use-mouse-drag.js +59 -0
  69. package/dist/http/fetch/error-interceptor.js +23 -1
  70. package/dist/http/fetch/index.js +182 -0
  71. package/dist/main.d.ts +5 -0
  72. package/dist/main.js +7 -0
  73. package/dist/node_modules/bkui-vue/lib/icon/angle-double-down-line.js +191 -0
  74. package/dist/node_modules/bkui-vue/lib/icon/angle-double-left-line.js +191 -0
  75. package/dist/node_modules/bkui-vue/lib/icon/angle-double-left.js +191 -0
  76. package/dist/node_modules/bkui-vue/lib/icon/angle-double-right-line.js +191 -0
  77. package/dist/node_modules/bkui-vue/lib/icon/angle-double-right.js +191 -0
  78. package/dist/node_modules/bkui-vue/lib/icon/angle-double-up-line.js +191 -0
  79. package/dist/node_modules/bkui-vue/lib/icon/angle-down-fill.js +191 -0
  80. package/dist/node_modules/bkui-vue/lib/icon/angle-down-line.js +191 -0
  81. package/dist/node_modules/bkui-vue/lib/icon/angle-down.js +191 -0
  82. package/dist/node_modules/bkui-vue/lib/icon/angle-left.js +191 -0
  83. package/dist/node_modules/bkui-vue/lib/icon/angle-right.js +191 -0
  84. package/dist/node_modules/bkui-vue/lib/icon/angle-up-fill.js +191 -0
  85. package/dist/node_modules/bkui-vue/lib/icon/angle-up.js +191 -0
  86. package/dist/node_modules/bkui-vue/lib/icon/archive-fill.js +191 -0
  87. package/dist/node_modules/bkui-vue/lib/icon/arrows-left.js +191 -0
  88. package/dist/node_modules/bkui-vue/lib/icon/arrows-right.js +191 -0
  89. package/dist/node_modules/bkui-vue/lib/icon/assistant.js +191 -0
  90. package/dist/node_modules/bkui-vue/lib/icon/audio-fill.js +191 -0
  91. package/dist/node_modules/bkui-vue/lib/icon/bk.js +191 -0
  92. package/dist/node_modules/bkui-vue/lib/icon/circle.js +191 -0
  93. package/dist/node_modules/bkui-vue/lib/icon/close-line.js +191 -0
  94. package/dist/node_modules/bkui-vue/lib/icon/close.js +191 -0
  95. package/dist/node_modules/bkui-vue/lib/icon/code.js +191 -0
  96. package/dist/node_modules/bkui-vue/lib/icon/cog-shape.js +191 -0
  97. package/dist/node_modules/bkui-vue/lib/icon/collapse-left.js +191 -0
  98. package/dist/node_modules/bkui-vue/lib/icon/copy-shape.js +191 -0
  99. package/dist/node_modules/bkui-vue/lib/icon/copy.js +191 -0
  100. package/dist/node_modules/bkui-vue/lib/icon/data-shape.js +191 -0
  101. package/dist/node_modules/bkui-vue/lib/icon/del.js +191 -0
  102. package/dist/node_modules/bkui-vue/lib/icon/doc-fill.js +191 -0
  103. package/dist/node_modules/bkui-vue/lib/icon/done.js +191 -0
  104. package/dist/node_modules/bkui-vue/lib/icon/down-shape.js +191 -0
  105. package/dist/node_modules/bkui-vue/lib/icon/down-small.js +191 -0
  106. package/dist/node_modules/bkui-vue/lib/icon/edit-line.js +191 -0
  107. package/dist/node_modules/bkui-vue/lib/icon/ellipsis.js +191 -0
  108. package/dist/node_modules/bkui-vue/lib/icon/enlarge-line.js +191 -0
  109. package/dist/node_modules/bkui-vue/lib/icon/error.js +191 -0
  110. package/dist/node_modules/bkui-vue/lib/icon/excel-fill.js +191 -0
  111. package/dist/node_modules/bkui-vue/lib/icon/exclamation-circle-shape.js +191 -0
  112. package/dist/node_modules/bkui-vue/lib/icon/eye.js +191 -0
  113. package/dist/node_modules/bkui-vue/lib/icon/filliscreen-line.js +191 -0
  114. package/dist/node_modules/bkui-vue/lib/icon/fix-line.js +191 -0
  115. package/dist/node_modules/bkui-vue/lib/icon/fix-shape.js +191 -0
  116. package/dist/node_modules/bkui-vue/lib/icon/folder-open.js +191 -0
  117. package/dist/node_modules/bkui-vue/lib/icon/folder-shape-open.js +191 -0
  118. package/dist/node_modules/bkui-vue/lib/icon/folder-shape.js +191 -0
  119. package/dist/node_modules/bkui-vue/lib/icon/folder.js +191 -0
  120. package/dist/node_modules/bkui-vue/lib/icon/funnel.js +191 -0
  121. package/dist/node_modules/bkui-vue/lib/icon/grag-fill.js +191 -0
  122. package/dist/node_modules/bkui-vue/lib/icon/help-document-fill.js +191 -0
  123. package/dist/node_modules/bkui-vue/lib/icon/help-fill.js +191 -0
  124. package/dist/node_modules/bkui-vue/lib/icon/help.js +191 -0
  125. package/dist/node_modules/bkui-vue/lib/icon/image-fill.js +191 -0
  126. package/dist/node_modules/bkui-vue/lib/icon/img-error.js +191 -0
  127. package/dist/node_modules/bkui-vue/lib/icon/img-placehoulder.js +191 -0
  128. package/dist/node_modules/bkui-vue/lib/icon/index.js +113 -0
  129. package/dist/node_modules/bkui-vue/lib/icon/info-line.js +191 -0
  130. package/dist/node_modules/bkui-vue/lib/icon/info.js +191 -0
  131. package/dist/node_modules/bkui-vue/lib/icon/left-shape.js +191 -0
  132. package/dist/node_modules/bkui-vue/lib/icon/left-turn-line.js +191 -0
  133. package/dist/node_modules/bkui-vue/lib/icon/loading.js +191 -0
  134. package/dist/node_modules/bkui-vue/lib/icon/narrow-line.js +191 -0
  135. package/dist/node_modules/bkui-vue/lib/icon/original.js +191 -0
  136. package/dist/node_modules/bkui-vue/lib/icon/pdf-fill.js +191 -0
  137. package/dist/node_modules/bkui-vue/lib/icon/play-shape.js +191 -0
  138. package/dist/node_modules/bkui-vue/lib/icon/plus.js +191 -0
  139. package/dist/node_modules/bkui-vue/lib/icon/ppt-fill.js +191 -0
  140. package/dist/node_modules/bkui-vue/lib/icon/qq.js +191 -0
  141. package/dist/node_modules/bkui-vue/lib/icon/right-shape.js +191 -0
  142. package/dist/node_modules/bkui-vue/lib/icon/right-turn-line.js +191 -0
  143. package/dist/node_modules/bkui-vue/lib/icon/search.js +191 -0
  144. package/dist/node_modules/bkui-vue/lib/icon/share.js +191 -0
  145. package/dist/node_modules/bkui-vue/lib/icon/spinner.js +191 -0
  146. package/dist/node_modules/bkui-vue/lib/icon/success.js +191 -0
  147. package/dist/node_modules/bkui-vue/lib/icon/switcher-loading.js +191 -0
  148. package/dist/node_modules/bkui-vue/lib/icon/text-all.js +191 -0
  149. package/dist/node_modules/bkui-vue/lib/icon/text-file.js +191 -0
  150. package/dist/node_modules/bkui-vue/lib/icon/text-fill.js +191 -0
  151. package/dist/node_modules/bkui-vue/lib/icon/transfer.js +191 -0
  152. package/dist/node_modules/bkui-vue/lib/icon/tree-application-shape.js +191 -0
  153. package/dist/node_modules/bkui-vue/lib/icon/unfull-screen.js +191 -0
  154. package/dist/node_modules/bkui-vue/lib/icon/unvisible.js +191 -0
  155. package/dist/node_modules/bkui-vue/lib/icon/up-shape.js +191 -0
  156. package/dist/node_modules/bkui-vue/lib/icon/upload.js +191 -0
  157. package/dist/node_modules/bkui-vue/lib/icon/video-fill.js +191 -0
  158. package/dist/node_modules/bkui-vue/lib/icon/warn.js +191 -0
  159. package/dist/node_modules/bkui-vue/lib/icon/weixin-pro.js +191 -0
  160. package/dist/node_modules/bkui-vue/lib/icon/weixin.js +191 -0
  161. package/dist/node_modules/bkui-vue/lib/styles/reset.css +439 -0
  162. package/dist/node_modules/call-bind/index.js +24 -0
  163. package/dist/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  164. package/dist/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  165. package/dist/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  166. package/dist/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  167. package/dist/node_modules/call-bind-apply-helpers/index.js +15 -0
  168. package/dist/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  169. package/dist/node_modules/call-bound/index.js +19 -0
  170. package/dist/node_modules/deep-equal/index.js +112 -0
  171. package/dist/node_modules/define-data-property/index.js +56 -0
  172. package/dist/node_modules/define-properties/index.js +47 -0
  173. package/dist/node_modules/dunder-proto/get.js +30 -0
  174. package/dist/node_modules/es-define-property/index.js +14 -0
  175. package/dist/node_modules/es-errors/eval.js +4 -0
  176. package/dist/node_modules/es-errors/index.js +4 -0
  177. package/dist/node_modules/es-errors/range.js +4 -0
  178. package/dist/node_modules/es-errors/ref.js +4 -0
  179. package/dist/node_modules/es-errors/syntax.js +4 -0
  180. package/dist/node_modules/es-errors/type.js +4 -0
  181. package/dist/node_modules/es-errors/uri.js +4 -0
  182. package/dist/node_modules/es-object-atoms/index.js +4 -0
  183. package/dist/node_modules/extend/index.js +117 -0
  184. package/dist/node_modules/fast-diff/diff.js +738 -0
  185. package/dist/node_modules/function-bind/implementation.js +84 -0
  186. package/dist/node_modules/function-bind/index.js +5 -0
  187. package/dist/node_modules/functions-have-names/index.js +31 -0
  188. package/dist/node_modules/get-intrinsic/index.js +378 -0
  189. package/dist/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  190. package/dist/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  191. package/dist/node_modules/get-proto/index.js +27 -0
  192. package/dist/node_modules/gopd/gOPD.js +4 -0
  193. package/dist/node_modules/gopd/index.js +15 -0
  194. package/dist/node_modules/has-property-descriptors/index.js +22 -0
  195. package/dist/node_modules/has-symbols/index.js +14 -0
  196. package/dist/node_modules/has-symbols/shams.js +45 -0
  197. package/dist/node_modules/has-tostringtag/shams.js +8 -0
  198. package/dist/node_modules/hasown/index.js +8 -0
  199. package/dist/node_modules/is-arguments/index.js +44 -0
  200. package/dist/node_modules/is-date-object/index.js +27 -0
  201. package/dist/node_modules/is-regex/index.js +69 -0
  202. package/dist/node_modules/math-intrinsics/abs.js +4 -0
  203. package/dist/node_modules/math-intrinsics/floor.js +4 -0
  204. package/dist/node_modules/math-intrinsics/isNaN.js +6 -0
  205. package/dist/node_modules/math-intrinsics/max.js +4 -0
  206. package/dist/node_modules/math-intrinsics/min.js +4 -0
  207. package/dist/node_modules/math-intrinsics/pow.js +4 -0
  208. package/dist/node_modules/math-intrinsics/round.js +4 -0
  209. package/dist/node_modules/math-intrinsics/sign.js +11 -0
  210. package/dist/node_modules/object-is/implementation.js +19 -0
  211. package/dist/node_modules/object-is/index.js +18 -0
  212. package/dist/node_modules/object-is/polyfill.js +7 -0
  213. package/dist/node_modules/object-is/shim.js +14 -0
  214. package/dist/node_modules/object-keys/implementation.js +122 -0
  215. package/dist/node_modules/object-keys/index.js +32 -0
  216. package/dist/node_modules/object-keys/isArguments.js +17 -0
  217. package/dist/node_modules/quill/dist/quill.js +11562 -0
  218. package/dist/node_modules/quill/dist/quill.snow.css +945 -0
  219. package/dist/node_modules/quill-delta/lib/delta.js +344 -0
  220. package/dist/node_modules/quill-delta/lib/op.js +155 -0
  221. package/dist/node_modules/regexp.prototype.flags/implementation.js +39 -0
  222. package/dist/node_modules/regexp.prototype.flags/index.js +18 -0
  223. package/dist/node_modules/regexp.prototype.flags/polyfill.js +39 -0
  224. package/dist/node_modules/regexp.prototype.flags/shim.js +26 -0
  225. package/dist/node_modules/set-function-length/index.js +42 -0
  226. package/dist/node_modules/set-function-name/index.js +23 -0
  227. package/dist/node_modules/x-mavon-editor/dist/css/index.css +1 -0
  228. package/dist/node_modules/x-mavon-editor/dist/font/fontello.eot +0 -0
  229. package/dist/node_modules/x-mavon-editor/dist/font/fontello.svg +72 -0
  230. package/dist/node_modules/x-mavon-editor/dist/font/fontello.ttf +0 -0
  231. package/dist/node_modules/x-mavon-editor/dist/font/fontello.woff +0 -0
  232. package/dist/node_modules/x-mavon-editor/dist/font/fontello.woff2 +0 -0
  233. package/dist/node_modules/x-mavon-editor/dist/highlightjs/highlight.min.js +1150 -0
  234. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/bash.min.js +20 -0
  235. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/css.min.js +31 -0
  236. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/go.min.js +14 -0
  237. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/java.min.js +37 -0
  238. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/javascript.min.js +76 -0
  239. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/json.min.js +7 -0
  240. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/markdown.min.js +31 -0
  241. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/perl.min.js +36 -0
  242. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/php.min.js +37 -0
  243. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/python.min.js +42 -0
  244. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/ruby.min.js +48 -0
  245. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/sql.min.js +17 -0
  246. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/swift.min.js +60 -0
  247. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/typescript.min.js +92 -0
  248. package/dist/node_modules/x-mavon-editor/dist/highlightjs/languages/xml.min.js +28 -0
  249. package/dist/node_modules/x-mavon-editor/dist/highlightjs/styles/atom-one-dark.min.css +1 -0
  250. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
  251. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_AMS-Regular.woff +0 -0
  252. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  253. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  254. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  255. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  256. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  257. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  258. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  259. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  260. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  261. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  262. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  263. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  264. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  265. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Bold.ttf +0 -0
  266. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Bold.woff +0 -0
  267. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
  268. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  269. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  270. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  271. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Italic.ttf +0 -0
  272. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Italic.woff +0 -0
  273. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
  274. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Regular.ttf +0 -0
  275. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Regular.woff +0 -0
  276. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
  277. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  278. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  279. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  280. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Math-Italic.ttf +0 -0
  281. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Math-Italic.woff +0 -0
  282. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
  283. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  284. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  285. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  286. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  287. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  288. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  289. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  290. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  291. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  292. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Script-Regular.ttf +0 -0
  293. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Script-Regular.woff +0 -0
  294. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
  295. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
  296. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size1-Regular.woff +0 -0
  297. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  298. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
  299. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size2-Regular.woff +0 -0
  300. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  301. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
  302. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size3-Regular.woff +0 -0
  303. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  304. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
  305. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size4-Regular.woff +0 -0
  306. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  307. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  308. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  309. package/dist/node_modules/x-mavon-editor/dist/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  310. package/dist/node_modules/x-mavon-editor/dist/katex/katex.min.css +1 -0
  311. package/dist/node_modules/x-mavon-editor/dist/katex/katex.min.js +1 -0
  312. package/dist/node_modules/x-mavon-editor/dist/markdown/github-markdown.min.css +2 -0
  313. package/dist/node_modules/x-mavon-editor/dist/mavon-editor.js +31 -0
  314. package/dist/types/enum.d.ts +8 -0
  315. package/dist/types/enum.js +10 -0
  316. package/dist/types/model.d.ts +14 -0
  317. package/package.json +10 -4
@@ -0,0 +1,31 @@
1
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("vue")):"function"==typeof define&&define.amd?define("MavonEditor",["vue"],t):"object"==typeof exports?exports.MavonEditor=t(require("vue")):e.MavonEditor=t(e.Vue)}(window,(function(__WEBPACK_EXTERNAL_MODULE__0__){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=81)}([function(e,t){e.exports=__WEBPACK_EXTERNAL_MODULE__0__},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty;function o(e,t){return r.call(e,t)}function i(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!=(65535&e)&&65534!=(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function a(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var s=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,l=new RegExp(s.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),c=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i,u=n(62);var p=/[&<>"]/,d=/[&<>"]/g,h={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"};function f(e){return h[e]}var _=/[.?*+^$[\]\\(){}|-]/g;var g=n(40);t.lib={},t.lib.mdurl=n(63),t.lib.ucmicro=n(147),t.assign=function(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach((function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=o,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(s,"$1")},t.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(l,(function(e,t,n){return t||function(e,t){var n;return o(u,t)?u[t]:35===t.charCodeAt(0)&&c.test(t)&&i(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?a(n):e}(e,n)}))},t.isValidEntityCode=i,t.fromCodePoint=a,t.escapeHtml=function(e){return p.test(e)?e.replace(d,f):e},t.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},t.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},t.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},t.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},t.isPunctChar=function(e){return g.test(e)},t.escapeRE=function(e){return e.replace(_,"\\$&")},t.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"แนพ"==="แบž".toLowerCase()&&(e=e.replace(/แบž/g,"รŸ")),e.toLowerCase().toUpperCase()}},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=(e,t)=>{const n=e.__vccOpts||e;for(const[e,r]of t)n[e]=r;return n}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){var r=n(6),o=n(16);e.exports=n(7)?function(e,t,n){return r.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var r=n(14),o=n(47),i=n(28),a=Object.defineProperty;t.f=n(7)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){e.exports=!n(15)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(e,t,n){var r=n(91),o=n(27);e.exports=function(e){return r(o(e))}},function(e,t,n){var r=n(32)("wks"),o=n(17),i=n(2).Symbol,a="function"==typeof i;(e.exports=function(e){return r[e]||(r[e]=a&&i[e]||(a?i:o)("Symbol."+e))}).store=r},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(module,exports,__webpack_require__){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var _typeof2=__webpack_require__(25),_typeof3=_interopRequireDefault(_typeof2),_keydownListen=__webpack_require__(112),_langHljsCss=__webpack_require__(113),_langHljsCss2=_interopRequireDefault(_langHljsCss),_langHljs=__webpack_require__(56),_langHljs2=_interopRequireDefault(_langHljs),_extraFunction=__webpack_require__(57),_util=__webpack_require__(114),_toolbar_left_click2=__webpack_require__(115),_toolbar_right_click2=__webpack_require__(116),_config=__webpack_require__(117),_markdown=__webpack_require__(134),_markdown2=_interopRequireDefault(_markdown),_mdToolbarLeft=__webpack_require__(72),_mdToolbarLeft2=_interopRequireDefault(_mdToolbarLeft),_mdToolbarRight=__webpack_require__(74),_mdToolbarRight2=_interopRequireDefault(_mdToolbarRight),_autoTextarea=__webpack_require__(230),_autoTextarea2=_interopRequireDefault(_autoTextarea);function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}__webpack_require__(237),__webpack_require__(246),exports.default={emits:["imgDel","change","fullScreen","readModel","previewToggle","subfieldToggle","htmlCode","helpToggle","save","navigationToggle","update:modelValue"],mixins:[_markdown2.default],props:{scrollStyle:{type:Boolean,default:!0},boxShadow:{type:Boolean,default:!0},transition:{type:Boolean,default:!0},autofocus:{type:Boolean,default:!0},fontSize:{type:String,default:"14px"},toolbarsBackground:{type:String,default:"#ffffff"},editorBackground:{type:String,default:"#ffffff"},previewBackground:{type:String,default:"#fbfbfb"},boxShadowStyle:{type:String,default:"0 2px 12px 0 rgba(0, 0, 0, 0.1)"},help:{type:String,default:null},modelValue:{type:String,default:""},language:{type:String,default:"zh-CN"},subfield:{type:Boolean,default:!0},navigation:{type:Boolean,default:!1},defaultOpen:{type:String,default:null},editable:{type:Boolean,default:!0},toolbarsFlag:{type:Boolean,default:!0},toolbars:{type:Object,default:function(){return _config.CONFIG.toolbars}},html:{type:Boolean,default:!0},xssOptions:{type:[Object,Boolean],default:function(){return{}}},codeStyle:{type:String,default:function(){return"github"}},placeholder:{type:String,default:null},ishljs:{type:Boolean,default:!0},externalLink:{type:[Object,Boolean],default:!0},imageFilter:{type:Function,default:null},imageClick:{type:Function,default:null},tabSize:{type:Number,default:0},shortCut:{type:Boolean,default:!0}},data:function(){var e,t,n=this;return{s_right_click_menu_show:!1,right_click_menu_top:0,right_click_menu_left:0,s_subfield:n.subfield,s_autofocus:!0,s_navigation:n.navigation,s_scrollStyle:n.scrollStyle,d_value:"",d_render:"",s_preview_switch:(t=n.defaultOpen,t||(t=n.subfield?"preview":"edit"),"preview"===t),s_fullScreen:!1,s_help:!1,s_html_code:!1,d_help:null,d_words:null,edit_scroll_height:-1,s_readmodel:!1,s_table_enter:!1,d_history:(e=[],e.push(n.modelValue),e),d_history_index:0,currentTimeout:"",d_image_file:[],d_preview_imgsrc:null,s_external_link:{markdown_css:function(){return"https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.9.0/github-markdown.min.css"},hljs_js:function(){return"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"},hljs_lang:function(e){return"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/languages/"+e+".min.js"},hljs_css:function(e){return _langHljsCss2.default[e]?"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/"+e+".min.css":""},katex_js:function(){return"https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.js"},katex_css:function(){return"https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.css"}},p_external_link:{},textarea_selectionEnd:0,textarea_selectionEnds:[0],_xssHandler:null}},created:function(){var e=this;this.initLanguage(),this.initExternalFuc(),this.$nextTick((function(){e.editableTextarea()}))},mounted:function(){var e=this;(0,_keydownListen.keydownListen)(this),(0,_extraFunction.ImagePreviewListener)(this),this.autofocus&&this.getTextareaDom().focus(),(0,_extraFunction.fullscreenchange)(this),this.d_value=this.modelValue||"",document.body.appendChild(this.$refs.help),this.loadExternalLink("markdown_css","css"),this.loadExternalLink("katex_css","css"),this.loadExternalLink("katex_js","js",(function(){e.iRender(!0)})),this.loadExternalLink("hljs_js","js",(function(){e.iRender(!0)})),"object"===(0,_typeof3.default)(e.externalLink)&&"function"==typeof e.externalLink.markdown_css||e.codeStyleChange(e.codeStyle,!0)},beforeUnmount:function(){document.body.removeChild(this.$refs.help)},getMarkdownIt:function(){var e=this.mixins[0].data().markdownIt;return e||(e=(0,_markdown.initMarkdown)()),e},methods:{loadExternalLink:function(e,t,n){if("function"==typeof this.p_external_link[e]){var r={css:_extraFunction.loadLink,js:_extraFunction.loadScript};r.hasOwnProperty(t)&&r[t](this.p_external_link[e](),n)}else!1!==this.p_external_link[e]&&console.error("external_link."+e,"is not a function, if you want to disabled this error log, set external_link."+e,"to function or false")},initExternalFuc:function(){for(var e=["markdown_css","hljs_js","hljs_css","hljs_lang","katex_js","katex_css"],t=(0,_typeof3.default)(this.externalLink),n="object"===t,r="boolean"===t,o=0;o<e.length;o++)r&&!this.externalLink||n&&!1===this.externalLink[e[o]]?this.p_external_link[e[o]]=!1:n&&"function"==typeof this.externalLink[e[o]]?this.p_external_link[e[o]]=this.externalLink[e[o]]:this.p_external_link[e[o]]=this.s_external_link[e[o]]},textAreaFocus:function(){this.$refs.vNoteTextarea.$refs.vTextarea.focus()},$drag:function(e){var t=e.dataTransfer;if(t){var n=t.files;n.length>0&&(e.preventDefault(),this.$refs.toolbar_left.$imgFilesAdd(n))}},$imgTouch:function(e){},$imgDel:function(e){this.markdownIt.image_del(e[1]);var t=e[0],n=new RegExp("\\!\\["+e[1]._name+"\\]\\("+t+"\\)","g");this.d_value=this.d_value.replace(n,""),this.iRender(),this.$emit("imgDel",e)},$imgAdd:function(e,t,n){void 0===n&&(n=!0);var r=this;if(null==this.__rFilter&&(this.__rFilter=/^image\//i),this.__oFReader=new FileReader,this.__oFReader.onload=function(o){r.markdownIt.image_add(e,o.target.result),t.miniurl=o.target.result,!0===n&&(t._name=t.name.replace(/[\[\]\(\)\+\{\}&\|\\\*^%$#@\-]/g,""),r.insertText(r.getTextareaDom(),{prefix:"!["+t._name+"]("+e+")",subfix:"",str:""}),r.$nextTick((function(){r.$emit("imgAdd",e,t)})))},t){var o=t;this.__rFilter.test(o.type)&&this.__oFReader.readAsDataURL(o)}},$imgUpdateByUrl:function(e,t){var n=this;this.markdownIt.image_add(e,t),this.$nextTick((function(){n.d_render=this.markdownIt.render(this.d_value)}))},$imgAddByUrl:function(e,t){return!!this.$refs.toolbar_left.$imgAddByUrl(e,t)&&(this.$imgUpdateByUrl(e,t),!0)},$img2Url:function $img2Url(fileIndex,url){var reg_str="/(!\\[[^\\[]*?\\](?=\\())\\(\\s*("+fileIndex+")\\s*\\)/g",reg=eval(reg_str);this.d_value=this.d_value.replace(reg,"$1("+url+")"),this.$refs.toolbar_left.$changeUrl(fileIndex,url),this.iRender()},$imglst2Url:function(e){if(e instanceof Array)for(var t=0;t<e.length;t++)this.$img2Url(e[t][0],e[t][1])},toolbar_left_click:function(e){(0,_toolbar_left_click2.toolbar_left_click)(e,this)},toolbar_left_addlink:function(e,t,n){(0,_toolbar_left_click2.toolbar_left_addlink)(e,t,n,this)},toolbar_right_click:function(e){(0,_toolbar_right_click2.toolbar_right_click)(e,this)},getNavigation:function(e,t){return(0,_extraFunction.getNavigation)(e,t)},change:function(e,t){this.$emit("change",e,t)},fullscreen:function(e,t){this.$emit("fullScreen",e,t)},readmodel:function(e,t){this.$emit("readModel",e,t)},previewtoggle:function(e,t){this.$emit("previewToggle",e,t)},subfieldtoggle:function(e,t){this.$emit("subfieldToggle",e,t)},htmlcode:function(e,t){this.$emit("htmlCode",e,t)},helptoggle:function(e,t){this.$emit("helpToggle",e,t)},save:function(e,t){this.$emit("save",e,t)},navigationtoggle:function(e,t){this.$emit("navigationToggle",e,t)},$toolbar_right_read_change_status:function(){this.s_readmodel=!this.s_readmodel,this.readmodel&&this.readmodel(this.s_readmodel,this.d_value),this.s_readmodel&&this.toolbars.navigation&&this.getNavigation(this,!0)},$v_edit_scroll:function(e){(0,_extraFunction.scrollLink)(e,this)},getTextareaDom:function(){return this.$refs.vNoteTextarea.$refs.vTextarea},insertText:function(e,t){var n=t.prefix,r=t.subfix,o=t.str,i=t.type;(0,_extraFunction.insertTextAtCaret)(e,{prefix:n,subfix:r,str:o,type:i},this)},insertTab:function(){(0,_extraFunction.insertTab)(this,this.tabSize)},insertOl:function(){(0,_extraFunction.insertOl)(this)},removeLine:function(){(0,_extraFunction.removeLine)(this)},insertUl:function(){(0,_extraFunction.insertUl)(this)},unInsertTab:function(){(0,_extraFunction.unInsertTab)(this,this.tabSize)},insertCodeBlock:function(){(0,_extraFunction.insertCodeBlock)(this)},insertEnter:function(e){(0,_extraFunction.insertEnter)(this,e)},saveHistory:function(){this.d_history.splice(this.d_history_index+1,this.d_history.length),this.d_history.push(this.d_value),this.textarea_selectionEnds.splice(this.d_history_index+1,this.textarea_selectionEnds.length),this.textarea_selectionEnds.push(this.textarea_selectionEnd),this.d_history_index=this.d_history.length-1},saveSelectionEndsHistory:function(){var e=this.$refs.vNoteTextarea&&this.$refs.vNoteTextarea.$el.querySelector("textarea");this.textarea_selectionEnd=e?e.selectionEnd:this.textarea_selectionEnd},initLanguage:function(){var e=_config.CONFIG.langList.indexOf(this.language)>=0?this.language:"zh-CN",t=this;t.$render(_config.CONFIG["help_"+e],(function(e){t.d_help=e})),this.d_words=_config.CONFIG["words_"+e]},editableTextarea:function(){var e=this.$refs.vNoteTextarea.$refs.vTextarea;this.editable?e.removeAttribute("disabled"):e.setAttribute("disabled","disabled")},codeStyleChange:function(e,t){if(t=t||!1,"function"==typeof this.p_external_link.hljs_css){var n=this.p_external_link.hljs_css(e);0===n.length&&t&&(console.warn("hljs color scheme",e,"do not exist, loading default github"),n=this.p_external_link.hljs_css("github")),n.length>0?(0,_extraFunction.loadLink)(n,null,"md-code-style"):console.warn("hljs color scheme",e,"do not exist, hljs color scheme will not change")}else!1!==this.p_external_link.hljs_css&&console.error("external_link.hljs_css is not a function, if you want to disabled this error log, set external_link.hljs_css to function or false")},iRender:function(e){var t=this;this.$render(t.d_value,(function(n){t.d_render=n,e||t.change&&t.change(t.d_value,t.d_render),t.s_navigation&&(0,_extraFunction.getNavigation)(t,!1),t.$emit("update:modelValue",t.d_value),t.d_value!==t.d_history[t.d_history_index]&&(window.clearTimeout(t.currentTimeout),t.currentTimeout=setTimeout((function(){t.saveHistory()}),500))}))},$emptyHistory:function(){this.d_history=[this.d_value],this.d_history_index=0}},watch:{d_value:function(e,t){this.saveSelectionEndsHistory(),this.iRender()},modelValue:function(e,t){e!==this.d_value&&(this.d_value=e)},subfield:function(e,t){this.s_subfield=e},d_history_index:function(){this.d_history_index>20&&(this.d_history.shift(),this.d_history_index=this.d_history_index-1),this.d_value=this.d_history[this.d_history_index]},language:function(e){this.initLanguage()},editable:function(){this.editableTextarea()},defaultOpen:function(e){var t=e;return t||(t=this.subfield?"preview":"edit"),this.s_preview_switch="preview"===t,this.s_preview_switch},codeStyle:function(e){this.codeStyleChange(e)}},components:{"v-autoTextarea":_autoTextarea2.default,"v-md-toolbar-left":_mdToolbarLeft2.default,"v-md-toolbar-right":_mdToolbarRight2.default}}},function(e,t){e.exports=!0},function(e,t){var n=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=n)},function(e,t,n){var r=n(10);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={emits:["toolbar_left_addlink","imgTouch","imgAdd","imgDel","imgAdd","imgAdd","toolbar_left_click","toolbar_left_click"],name:"s-md-toolbar-left",props:{editable:{type:Boolean,default:!0},transition:{type:Boolean,default:!0},toolbars:{type:Object,required:!0},d_words:{type:Object,required:!0},image_filter:{type:Function,default:null}},data:function(){return{img_file:[[0,null]],img_timer:null,header_timer:null,s_img_dropdown_open:!1,s_header_dropdown_open:!1,s_img_link_open:!1,trigger:null,num:0,link_text:"",link_addr:"",link_type:"link"}},methods:{$imgLinkAdd:function(){this.$emit("toolbar_left_addlink",this.link_type,this.link_text,this.link_addr),this.s_img_link_open=!1},$toggle_imgLinkAdd:function(e){var t=this;this.link_type=e,this.link_text=this.link_addr="",this.s_img_link_open=!0,this.$nextTick((function(){t.$refs.linkTextInput.focus()})),this.s_img_dropdown_open=!1},$imgFileListClick:function(e){this.$emit("imgTouch",this.img_file[e])},$changeUrl:function(e,t){this.img_file[e][0]=t},$imgFileAdd:function(e){this.img_file.push([++this.num,e]),this.$emit("imgAdd",this.num,e),this.s_img_dropdown_open=!1},$imgFilesAdd:function(e){for(var t="function"==typeof this.image_filter,n=0;n<e.length;n++)(t&&!0===this.image_filter(e[n])||!t&&e[n].type.match(/^image\//i))&&this.$imgFileAdd(e[n])},$imgAdd:function(e){this.$imgFilesAdd(e.target.files),e.target.value=""},$imgDel:function(e){this.$emit("imgDel",this.img_file[e]),this.img_file.splice(e,1),this.num--,this.s_img_dropdown_open=!1},isEqualName:function(e,t){return!(!this.img_file[t][1]||this.img_file[t][1].name!==e&&this.img_file[t][1]._name!==e)},$imgDelByFilename:function(e){for(var t=0;this.img_file.length>t;){if(this.img_file[t][1]===e||this.isEqualName(e,t))return this.$imgDel(t),!0;t+=1}return!1},$imgAddByFilename:function(e,t){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]===e)return!1;return this.img_file[0][0]=e,this.img_file[0][1]=t,this.img_file[0][2]=e,this.img_file.unshift(["./"+this.num,null]),this.$emit("imgAdd",this.img_file[1][0],t,!1),!0},$imgAddByUrl:function(e,t){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]===e)return!1;return this.img_file[0][0]=e,this.img_file[0][1]=t,this.img_file.unshift(["./"+this.num,null]),!0},$imgUpdateByFilename:function(e,t){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]===e||this.isEqualName(e,n))return this.img_file[n][1]=t,this.$emit("imgAdd",e,t,!1),!0;return!1},$mouseenter_img_dropdown:function(){this.editable&&(clearTimeout(this.img_timer),this.s_img_dropdown_open=!0)},$mouseleave_img_dropdown:function(){var e=this;this.img_timer=setTimeout((function(){e.s_img_dropdown_open=!1}),200)},$mouseenter_header_dropdown:function(){this.editable&&(clearTimeout(this.header_timer),this.s_header_dropdown_open=!0)},$mouseleave_header_dropdown:function(){var e=this;this.header_timer=setTimeout((function(){e.s_header_dropdown_open=!1}),200)},$clicks:function(e){this.editable&&this.$emit("toolbar_left_click",e)},$click_header:function(e){this.$emit("toolbar_left_click",e),this.s_header_dropdown_open=!1},handleClose:function(e){this.s_img_dropdown_open=!1}},watch:{s_img_link_open:function(e){this.$parent.$el.style.zIndex=e?1501:1500}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={emits:["toolbar_right_click"],name:"s-md-toolbar-right",props:{s_subfield:{type:Boolean,required:!0},toolbars:{type:Object,required:!0},s_preview_switch:{type:Boolean,required:!0},s_fullScreen:{type:Boolean,required:!0},s_html_code:{type:Boolean,required:!0},s_navigation:{type:Boolean,required:!0},d_words:{type:Object,required:!0}},methods:{$clicks:function(e){this.$emit("toolbar_right_click",e)}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={emits:["update:modelValue"],data:function(){var e=this;return{temp_value:e.modelValue,s_autofocus:function(){if(e.autofocus)return"autofocus"}()}},created:function(){},props:{fullHeight:{type:Boolean,default:!1},autofocus:{type:Boolean,default:!1},modelValue:{type:String,default:""},placeholder:{type:String,default:""},border:{type:Boolean,default:!1},resize:{type:Boolean,default:!1},onchange:{type:Function,default:null},fontSize:{type:String,default:"14px"},lineHeight:{type:String,default:"18px"}},methods:{change:function(e){this.onchange&&this.onchange(this.temp_value,e)}},watch:{modelValue:function(e,t){this.temp_value=e},temp_value:function(e,t){this.$emit("update:modelValue",e)}}}},function(e,t,n){"use strict";n.r(t);var r=n(11),o=n.n(r);for(var i in n.d(t,"default",(function(){return o.a})),r)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return r[e]}))}(i)},function(e,t,n){"use strict";n.r(t);var r=n(18),o=n.n(r);for(var i in n.d(t,"default",(function(){return o.a})),r)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return r[e]}))}(i)},function(e,t,n){"use strict";n.r(t);var r=n(19),o=n.n(r);for(var i in n.d(t,"default",(function(){return o.a})),r)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return r[e]}))}(i)},function(e,t,n){"use strict";n.r(t);var r=n(20),o=n.n(r);for(var i in n.d(t,"default",(function(){return o.a})),r)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return r[e]}))}(i)},function(e,t,n){"use strict";t.__esModule=!0;var r=a(n(83)),o=a(n(101)),i="function"==typeof o.default&&"symbol"==typeof r.default?function(e){return typeof e}:function(e){return e&&"function"==typeof o.default&&e.constructor===o.default&&e!==o.default.prototype?"symbol":typeof e};function a(e){return e&&e.__esModule?e:{default:e}}t.default="function"==typeof o.default&&"symbol"===i(r.default)?function(e){return void 0===e?"undefined":i(e)}:function(e){return e&&"function"==typeof o.default&&e.constructor===o.default&&e!==o.default.prototype?"symbol":void 0===e?"undefined":i(e)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){var r=n(10);e.exports=function(e,t){if(!r(e))return e;var n,o;if(t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;if("function"==typeof(n=e.valueOf)&&!r(o=n.call(e)))return o;if(!t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},function(e,t){e.exports={}},function(e,t,n){var r=n(51),o=n(33);e.exports=Object.keys||function(e){return r(e,o)}},function(e,t,n){var r=n(32)("keys"),o=n(17);e.exports=function(e){return r[e]||(r[e]=o(e))}},function(e,t,n){var r=n(13),o=n(2),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:r.version,mode:n(12)?"pure":"global",copyright:"ยฉ 2020 Denis Pushkarev (zloirock.ru)"})},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(6).f,o=n(4),i=n(9)("toStringTag");e.exports=function(e,t,n){e&&!o(e=n?e:e.prototype,i)&&r(e,i,{configurable:!0,value:t})}},function(e,t,n){t.f=n(9)},function(e,t,n){var r=n(2),o=n(13),i=n(12),a=n(35),s=n(6).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){var r=n(59),o=n(137);for(var i in(t=e.exports=function(e,t){return new o(t).process(e)}).FilterCSS=o,r)t[i]=r[i];"undefined"!=typeof window&&(window.filterCSS=e.exports)},function(e,t){e.exports={indexOf:function(e,t){var n,r;if(Array.prototype.indexOf)return e.indexOf(t);for(n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},forEach:function(e,t,n){var r,o;if(Array.prototype.forEach)return e.forEach(t,n);for(r=0,o=e.length;r<o;r++)t.call(n,e[r],r,e)},trim:function(e){return String.prototype.trim?e.trim():e.replace(/(^\s*)|(\s*$)/g,"")},spaceIndex:function(e){var t=/\s|\n|\t/.exec(e);return t?t.index:-1}}},function(e,t){e.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},function(e,t,n){"use strict";function r(){this.__rules__=[],this.__cache__=null}r.prototype.__find__=function(e){for(var t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1},r.prototype.__compile__=function(){var e=this,t=[""];e.__rules__.forEach((function(e){e.enabled&&e.alt.forEach((function(e){t.indexOf(e)<0&&t.push(e)}))})),e.__cache__={},t.forEach((function(t){e.__cache__[t]=[],e.__rules__.forEach((function(n){n.enabled&&(t&&n.alt.indexOf(t)<0||e.__cache__[t].push(n.fn))}))}))},r.prototype.at=function(e,t,n){var r=this.__find__(e),o=n||{};if(-1===r)throw new Error("Parser rule not found: "+e);this.__rules__[r].fn=t,this.__rules__[r].alt=o.alt||[],this.__cache__=null},r.prototype.before=function(e,t,n,r){var o=this.__find__(e),i=r||{};if(-1===o)throw new Error("Parser rule not found: "+e);this.__rules__.splice(o,0,{name:t,enabled:!0,fn:n,alt:i.alt||[]}),this.__cache__=null},r.prototype.after=function(e,t,n,r){var o=this.__find__(e),i=r||{};if(-1===o)throw new Error("Parser rule not found: "+e);this.__rules__.splice(o+1,0,{name:t,enabled:!0,fn:n,alt:i.alt||[]}),this.__cache__=null},r.prototype.push=function(e,t,n){var r=n||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:r.alt||[]}),this.__cache__=null},r.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(e){var r=this.__find__(e);if(r<0){if(t)return;throw new Error("Rules manager: invalid rule name "+e)}this.__rules__[r].enabled=!0,n.push(e)}),this),this.__cache__=null,n},r.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach((function(e){e.enabled=!1})),this.enable(e,t)},r.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(e){var r=this.__find__(e);if(r<0){if(t)return;throw new Error("Rules manager: invalid rule name "+e)}this.__rules__[r].enabled=!1,n.push(e)}),this),this.__cache__=null,n},r.prototype.getRules=function(e){return null===this.__cache__&&this.__compile__(),this.__cache__[e]||[]},e.exports=r},function(e,t,n){"use strict";function r(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}r.prototype.attrIndex=function(e){var t,n,r;if(!this.attrs)return-1;for(n=0,r=(t=this.attrs).length;n<r;n++)if(t[n][0]===e)return n;return-1},r.prototype.attrPush=function(e){this.attrs?this.attrs.push(e):this.attrs=[e]},r.prototype.attrSet=function(e,t){var n=this.attrIndex(e),r=[e,t];n<0?this.attrPush(r):this.attrs[n]=r},r.prototype.attrGet=function(e){var t=this.attrIndex(e),n=null;return t>=0&&(n=this.attrs[t][1]),n},r.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=r},function(e,t,n){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n=e[1]||"",r=e[3];if(!r)return n;if(t&&"function"==typeof btoa){var o=(a=r,s=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),l="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(s),"/*# ".concat(l," */")),i=r.sources.map((function(e){return"/*# sourceURL=".concat(r.sourceRoot||"").concat(e," */")}));return[n].concat(i).concat([o]).join("\n")}var a,s,l;return[n].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var o={};if(r)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var s=0;s<e.length;s++){var l=[].concat(e[s]);r&&o[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},t}},function(e,t,n){"use strict";function r(e,t){for(var n=[],r={},o=0;o<t.length;o++){var i=t[o],a=i[0],s={id:e+":"+o,css:i[1],media:i[2],sourceMap:i[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(t),n.d(t,"default",(function(){return h}));var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var i={},a=o&&(document.head||document.getElementsByTagName("head")[0]),s=null,l=0,c=!1,u=function(){},p=null,d="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(e,t,n,o){c=n,p=o||{};var a=r(e,t);return f(a),function(t){for(var n=[],o=0;o<a.length;o++){var s=a[o];(l=i[s.id]).refs--,n.push(l)}t?f(a=r(e,t)):a=[];for(o=0;o<n.length;o++){var l;if(0===(l=n[o]).refs){for(var c=0;c<l.parts.length;c++)l.parts[c]();delete i[l.id]}}}}function f(e){for(var t=0;t<e.length;t++){var n=e[t],r=i[n.id];if(r){r.refs++;for(var o=0;o<r.parts.length;o++)r.parts[o](n.parts[o]);for(;o<n.parts.length;o++)r.parts.push(g(n.parts[o]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(o=0;o<n.parts.length;o++)a.push(g(n.parts[o]));i[n.id]={id:n.id,refs:1,parts:a}}}}function _(){var e=document.createElement("style");return e.type="text/css",a.appendChild(e),e}function g(e){var t,n,r=document.querySelector('style[data-vue-ssr-id~="'+e.id+'"]');if(r){if(c)return u;r.parentNode.removeChild(r)}if(d){var o=l++;r=s||(s=_()),t=v.bind(null,r,o,!1),n=v.bind(null,r,o,!0)}else r=_(),t=k.bind(null,r),n=function(){r.parentNode.removeChild(r)};return t(e),function(r){if(r){if(r.css===e.css&&r.media===e.media&&r.sourceMap===e.sourceMap)return;t(e=r)}else n()}}var m,b=(m=[],function(e,t){return m[e]=t,m.filter(Boolean).join("\n")});function v(e,t,n,r){var o=n?"":r.css;if(e.styleSheet)e.styleSheet.cssText=b(t,o);else{var i=document.createTextNode(o),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(i,a[t]):e.appendChild(i)}}function k(e,t){var n=t.css,r=t.media,o=t.sourceMap;if(r&&e.setAttribute("media",r),p.ssrId&&e.setAttribute("data-vue-ssr-id",t.id),o&&(n+="\n/*# sourceURL="+o.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}},function(e,t,n){"use strict";var r=n(12),o=n(46),i=n(49),a=n(5),s=n(29),l=n(89),c=n(34),u=n(96),p=n(9)("iterator"),d=!([].keys&&"next"in[].keys()),h=function(){return this};e.exports=function(e,t,n,f,_,g,m){l(n,t,f);var b,v,k,w=function(e){if(!d&&e in j)return j[e];switch(e){case"keys":case"values":return function(){return new n(this,e)}}return function(){return new n(this,e)}},y=t+" Iterator",x="values"==_,C=!1,j=e.prototype,A=j[p]||j["@@iterator"]||_&&j[_],E=A||w(_),O=_?x?w("entries"):E:void 0,S="Array"==t&&j.entries||A;if(S&&(k=u(S.call(new e)))!==Object.prototype&&k.next&&(c(k,y,!0),r||"function"==typeof k[p]||a(k,p,h)),x&&A&&"values"!==A.name&&(C=!0,E=function(){return A.call(this)}),r&&!m||!d&&!C&&j[p]||a(j,p,E),s[t]=E,s[y]=h,_)if(b={values:x?E:w("values"),keys:g?E:w("keys"),entries:O},m)for(v in b)v in j||i(j,v,b[v]);else o(o.P+o.F*(d||C),t,b);return b}},function(e,t,n){var r=n(2),o=n(13),i=n(87),a=n(5),s=n(4),l=function(e,t,n){var c,u,p,d=e&l.F,h=e&l.G,f=e&l.S,_=e&l.P,g=e&l.B,m=e&l.W,b=h?o:o[t]||(o[t]={}),v=b.prototype,k=h?r:f?r[t]:(r[t]||{}).prototype;for(c in h&&(n=t),n)(u=!d&&k&&void 0!==k[c])&&s(b,c)||(p=u?k[c]:n[c],b[c]=h&&"function"!=typeof k[c]?n[c]:g&&u?i(p,r):m&&k[c]==p?function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(p):_&&"function"==typeof p?i(Function.call,p):p,_&&((b.virtual||(b.virtual={}))[c]=p,e&l.R&&v&&!v[c]&&a(v,c,p)))};l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},function(e,t,n){e.exports=!n(7)&&!n(15)((function(){return 7!=Object.defineProperty(n(48)("div"),"a",{get:function(){return 7}}).a}))},function(e,t,n){var r=n(10),o=n(2).document,i=r(o)&&r(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},function(e,t,n){e.exports=n(5)},function(e,t,n){var r=n(14),o=n(90),i=n(33),a=n(31)("IE_PROTO"),s=function(){},l=function(){var e,t=n(48)("iframe"),r=i.length;for(t.style.display="none",n(95).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),l=e.F;r--;)delete l.prototype[i[r]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s.prototype=r(e),n=new s,s.prototype=null,n[a]=e):n=l(),void 0===t?n:o(n,t)}},function(e,t,n){var r=n(4),o=n(8),i=n(92)(!1),a=n(31)("IE_PROTO");e.exports=function(e,t){var n,s=o(e),l=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);for(;t.length>l;)r(s,n=t[l++])&&(~i(c,n)||c.push(n));return c}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(27);e.exports=function(e){return Object(r(e))}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){var r=n(51),o=n(33).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={"1c":"1c",abnf:"abnf",accesslog:"accesslog",actionscript:"actionscript",as:"actionscript",ada:"ada",apache:"apache",apacheconf:"apache",applescript:"applescript",osascript:"applescript",arduino:"arduino",armasm:"armasm",arm:"armasm",asciidoc:"asciidoc",adoc:"asciidoc",aspectj:"aspectj",autohotkey:"autohotkey",ahk:"autohotkey",autoit:"autoit",avrasm:"avrasm",awk:"awk",axapta:"axapta",bash:"bash",sh:"bash",zsh:"bash",basic:"basic",bnf:"bnf",brainfuck:"brainfuck",bf:"brainfuck",cal:"cal",capnproto:"capnproto",capnp:"capnproto",ceylon:"ceylon",clean:"clean",icl:"clean",dcl:"clean","clojure-repl":"clojure-repl",clojure:"clojure",clj:"clojure",cmake:"cmake","cmake.in":"cmake",coffeescript:"coffeescript",coffee:"coffeescript",cson:"coffeescript",iced:"coffeescript",coq:"coq",cos:"cos",cls:"cos",cpp:"cpp",c:"cpp",cc:"cpp",h:"cpp","c++":"cpp","h++":"cpp",hpp:"cpp",crmsh:"crmsh",crm:"crmsh",pcmk:"crmsh",crystal:"crystal",cr:"crystal",cs:"cs",csharp:"cs",csp:"csp",css:"css",d:"d",dart:"dart",delphi:"delphi",dpr:"delphi",dfm:"delphi",pas:"delphi",pascal:"delphi",freepascal:"delphi",lazarus:"delphi",lpr:"delphi",lfm:"delphi",diff:"diff",patch:"diff",django:"django",jinja:"django",dns:"dns",bind:"dns",zone:"dns",dockerfile:"dockerfile",docker:"dockerfile",dos:"dos",bat:"dos",cmd:"dos",dsconfig:"dsconfig",dts:"dts",dust:"dust",dst:"dust",ebnf:"ebnf",elixir:"elixir",elm:"elm",erb:"erb","erlang-repl":"erlang-repl",erlang:"erlang",erl:"erlang",excel:"excel",xlsx:"excel",xls:"excel",fix:"fix",flix:"flix",fortran:"fortran",f90:"fortran",f95:"fortran",fsharp:"fsharp",fs:"fsharp",gams:"gams",gms:"gams",gauss:"gauss",gss:"gauss",gcode:"gcode",nc:"gcode",gherkin:"gherkin",feature:"gherkin",glsl:"glsl",go:"go",golang:"go",golo:"golo",gradle:"gradle",groovy:"groovy",haml:"haml",handlebars:"handlebars",hbs:"handlebars","html.hbs":"handlebars","html.handlebars":"handlebars",haskell:"haskell",hs:"haskell",haxe:"haxe",hx:"haxe",hsp:"hsp",htmlbars:"htmlbars",http:"http",https:"http",hy:"hy",hylang:"hy",inform7:"inform7",i7:"inform7",ini:"ini",toml:"ini",irpf90:"irpf90",java:"java",jsp:"java",javascript:"javascript",js:"javascript",jsx:"javascript","jboss-cli":"jboss-cli","wildfly-cli":"jboss-cli",json:"json","julia-repl":"julia-repl",julia:"julia",kotlin:"kotlin",lasso:"lasso",ls:"livescript",lassoscript:"lasso",ldif:"ldif",leaf:"leaf",less:"less",lisp:"lisp",livecodeserver:"livecodeserver",livescript:"livescript",llvm:"llvm",lsl:"lsl",lua:"lua",makefile:"makefile",mk:"makefile",mak:"makefile",markdown:"markdown",md:"markdown",mkdown:"markdown",mkd:"markdown",mathematica:"mathematica",mma:"mathematica",matlab:"matlab",maxima:"maxima",mel:"mel",mercury:"mercury",m:"mercury",moo:"mercury",mipsasm:"mipsasm",mips:"mipsasm",mizar:"mizar",mojolicious:"mojolicious",monkey:"monkey",moonscript:"moonscript",moon:"moonscript",n1ql:"n1ql",nginx:"nginx",nginxconf:"nginx",nimrod:"nimrod",nim:"nimrod",nix:"nix",nixos:"nix",nsis:"nsis",objectivec:"objectivec",mm:"objectivec",objc:"objectivec","obj-c":"objectivec",ocaml:"ocaml",ml:"sml",openscad:"openscad",scad:"openscad",oxygene:"oxygene",parser3:"parser3",perl:"perl",pl:"perl",pm:"perl",pf:"pf","pf.conf":"pf",php:"php",php3:"php",php4:"php",php5:"php",php6:"php",pony:"pony",powershell:"powershell",ps:"powershell",processing:"processing",profile:"profile",prolog:"prolog",protobuf:"protobuf",puppet:"puppet",pp:"puppet",purebasic:"purebasic",pb:"purebasic",pbi:"purebasic",python:"python",py:"python",gyp:"python",q:"q",k:"q",kdb:"q",qml:"qml",qt:"qml",r:"r",rib:"rib",roboconf:"roboconf",graph:"roboconf",instances:"roboconf",routeros:"routeros",mikrotik:"routeros",rsl:"rsl",ruby:"ruby",rb:"ruby",gemspec:"ruby",podspec:"ruby",thor:"ruby",irb:"ruby",ruleslanguage:"ruleslanguage",rust:"rust",rs:"rust",scala:"scala",scheme:"scheme",scilab:"scilab",sci:"scilab",scss:"scss",shell:"shell",console:"shell",smali:"smali",smalltalk:"smalltalk",st:"smalltalk",sml:"sml",sqf:"sqf",sql:"sql",stan:"stan",stata:"stata",do:"stata",ado:"stata",step21:"step21",p21:"step21",step:"step21",stp:"step21",stylus:"stylus",styl:"stylus",subunit:"subunit",swift:"swift",taggerscript:"taggerscript",tap:"tap",tcl:"tcl",tk:"tcl",tex:"tex",thrift:"thrift",tp:"tp",twig:"twig",craftcms:"twig",typescript:"typescript",ts:"typescript",vala:"vala",vbnet:"vbnet",vb:"vbnet","vbscript-html":"vbscript-html",vbscript:"vbscript",vbs:"vbscript",verilog:"verilog",v:"verilog",sv:"verilog",svh:"verilog",vhdl:"vhdl",vim:"vim",x86asm:"x86asm",xl:"xl",tao:"xl",xml:"xml",html:"xml",xhtml:"xml",rss:"xml",atom:"xml",xjb:"xml",xsd:"xml",xsl:"xml",plist:"xml",xquery:"xquery",xpath:"xquery",xq:"xquery",yaml:"yaml",yml:"yaml",YAML:"yaml",zephir:"zephir",zep:"zephir"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadScript=function(e,t){},t.loadLink=function(e,t,n){};t.insertTextAtCaret=function(e,t,n){var r=t.prefix,o=t.subfix,i=t.str;t.type;if(e.focus(),s(e)){var a=e.selectionStart,l=e.selectionEnd,c=e.value;a===l?(e.value=c.substring(0,a)+r+i+o+c.substring(l,c.length),e.selectionStart=a+r.length,e.selectionEnd=a+(i.length+r.length)):c.substring(a-r.length,a)===r&&c.substring(l,l+o.length)===o&&function(e,t,n,r,o){if("*"===e&&"*"===t&&"*"===n.substring(r-2,r-1)&&"*"===n.substring(o+1,o+2))return!1;return!0}(r,o,c,a,l)?(e.value=c.substring(0,a-r.length)+c.substring(a,l)+c.substring(l+o.length,c.length),e.selectionStart=a-r.length,e.selectionEnd=l-r.length):(e.value=c.substring(0,a)+r+c.substring(a,l)+o+c.substring(l,c.length),e.selectionStart=a+r.length,e.selectionEnd=a+(l-a+r.length))}else alert("Error: Browser version is too low");n.d_value=e.value,e.focus()};var r="```",o="\n```\n",i="language";t.insertCodeBlock=function(e){var t=e.getTextareaDom();if(s(t)){var n=i,l=t.selectionStart,c=t.selectionEnd,u=t.value;l===c?a(n,"",t):function(e){var t=e.selectionStart,n=e.selectionEnd,i=e.value,a=r,s=o;"\n"===i.substring(t-1,t)?a+="\n":s="\n"+s;return i.substring(t-a.length,t)===a&&i.substring(n,n+s.length)===s}(t)?function(e){var t=r,n=o,a=i,s=e.selectionStart,l=e.selectionEnd,c=e.value,u=c.substring(s,l);if("\n"===c.substring(s-1,s))t+="\n";else if(t+a+(n="\n"+n)===c.substring(s-t.length,l+n.length)){var p=c.substring(0,s-t.length);return p+=c.substring(l+n.length,c.length),e.value=p,e.selectionStart=s-t.length,void(e.selectionEnd=e.selectionStart)}var d=c.substring(0,s-t.length);d+=u,d+=c.substring(l+n.length,c.length),e.value=d,e.selectionStart=s-t.length,e.selectionEnd=e.selectionStart+u.length}(t):a("",u.substring(l,c),t),e.d_value=t.value,t.focus()}else alert("Error: Browser version is too low")};function a(e,t,n){var i=r,a=o,s=n.selectionStart,l=n.selectionEnd,c=n.value,u=c.substring(0,s);u+=i+e+"\n",u+=t,u+=a,u+=c.substring(l,c.length),n.value=u,n.selectionStart=s+i.length+(e?0:1),n.selectionEnd=n.selectionStart+e.length+t.length}function s(e){return"number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd}t.insertOl=function(e){var t=e.getTextareaDom();if(s(t)){var n=t.selectionStart,r=t.selectionEnd,o=t.value;if(n===r)t.value=o.substring(0,n)+"1. "+o.substring(r,o.length),t.selectionEnd=t.selectionStart=n+3;else{for(var i=n;i>0&&"\n"!==o.substring(i-1,i);)i--;for(var a=o.substring(i,r),l=a.split("\n"),c=0;c<l.length;c++)l[c]=c+1+". "+l[c];var u=l.join("\n");t.value=o.substring(0,i)+u+o.substring(r,o.length),t.selectionStart=i,t.selectionEnd=r+u.length-a.length}}else alert("Error: Browser version is too low");e.d_value=t.value,t.focus()},t.removeLine=function(e){var t=e.getTextareaDom();if(s(t)){for(var n=t.selectionStart,r=t.selectionEnd,o=t.value,i=n;i>0&&"\n"!==o.substring(i-1,i);)i--;for(var a=r;a<o.length&&"\n"!==o.substring(a,a+1);)a++;a<o.length&&a++,t.value=o.substring(0,i)+o.substring(a,o.length),t.selectionEnd=t.selectionStart=0===i?0:i-1}else alert("Error: Browser version is too low");e.d_value=t.value,t.focus()},t.insertUl=function(e){var t=e.getTextareaDom();if(s(t)){var n=t.selectionStart,r=t.selectionEnd,o=t.value;if(n===r)t.value=o.substring(0,n)+"- "+o.substring(r,o.length),t.selectionEnd=t.selectionStart=n+2;else{for(var i=n;i>0&&"\n"!==o.substring(i-1,i);)i--;var a=o.substring(i,r),l=a.replace(/\n/g,"\n- ");l="- "+l,t.value=o.substring(0,i)+l+o.substring(r,o.length),t.selectionStart=i,t.selectionEnd=r+l.length-a.length}}else alert("Error: Browser version is too low");e.d_value=t.value,t.focus()},t.insertTab=function(e,t){t=t?new Array(t).fill(" ").join(""):"\t";var n=e.getTextareaDom();if(s(n)){var r=n.selectionStart,o=n.selectionEnd,i=n.value,a=i.substring(0,r).split("\n").pop();if(a.match(/^\s*[0-9]+\.\s+\S*/)){var l=a.replace(/(\d+)/,1);n.value=i.substring(0,r-l.length)+t+l+i.substring(o,i.length)}else a.match(/^\s*-\s+\S*/)?n.value=i.substring(0,r-a.length)+t+a+i.substring(o,i.length):n.value=i.substring(0,r)+t+i.substring(o,i.length);n.selectionStart=n.selectionEnd=r+t.length}else alert("Error: Browser version is too low");e.d_value=n.value,n.focus()},t.unInsertTab=function(e,t){var n=new RegExp(t?"\\s{"+t+"}":"\t");console.log("regTab:",n);var r=e.getTextareaDom();if(s(r)){var o=r.selectionStart,i=r.selectionEnd,a=r.value,l=a.substring(0,o).split("\n").pop();l.search(n)>=0&&(r.value=a.substring(0,o-l.length)+l.replace(n,"")+a.substring(i,a.length),r.selectionStart=r.selectionEnd=o-(t||1))}else alert("Error: Browser version is too low");e.d_value=r.value,r.focus()},t.insertEnter=function(e,t){var n=e.getTextareaDom();if(s(n)){var r=n.selectionStart,o=n.selectionEnd,i=n.value,a=i.substring(0,r).split("\n").pop(),l=a.match(/^\s*(?:[0-9]+\.|-)\s+\S+/);if(l){t.preventDefault();var c=l.shift().match(/^\s*(?:[0-9]+\.|-)\s/).shift();if(c.search(/-/)>=0)n.value=i.substring(0,r)+"\n"+c+i.substring(o,i.length),n.selectionStart=n.selectionEnd=r+c.length+1;else{var u=c.replace(/(\d+)/,parseInt(c)+1);n.value=i.substring(0,r)+"\n"+u+i.substring(o,i.length),n.selectionStart=n.selectionEnd=r+u.length+1}}else{var p=a.match(/^\s*(?:[0-9]+\.|-)\s+$/);if(p){t.preventDefault();var d=p.shift().length;n.value=i.substring(0,r-d)+"\n"+i.substring(o,i.length),n.selectionStart=n.selectionEnd=r-d}}}else alert("Error: Browser version is too low");e.d_value=n.value,n.focus()},t.getNavigation=function(e,t){var n=void 0;(n=e.$refs.navigationContent).innerHTML=e.d_render;var r=n.children;if(r.length)for(var o=0;o<r.length;o++)i(r[o],o,r);function i(t,n,r){/^H[1-6]{1}$/.exec(t.tagName)?t.onclick=function(){var t=e.$refs.vShowContent,r=e.$refs.vNoteEdit;e.s_subfield?e.s_preview_switch&&(r.scrollTop=t.children[n].offsetTop*(r.scrollHeight-r.offsetHeight)/(t.scrollHeight-t.offsetHeight)):e.s_preview_switch&&(t.scrollTop=t.children[n].offsetTop)}:t.style.display="none"}},t.scrollLink=function(e,t){var n=e.srcElement?e.srcElement:e.target,r=n.scrollTop/(n.scrollHeight-n.offsetHeight);t.edit_scroll_height>=0&&n.scrollHeight!==t.edit_scroll_height&&n.scrollHeight-n.offsetHeight-n.scrollTop<=30&&(t.$refs.vNoteEdit.scrollTop=n.scrollHeight-n.offsetHeight,r=1),t.edit_scroll_height=n.scrollHeight,t.$refs.vShowContent.scrollHeight>t.$refs.vShowContent.offsetHeight&&(t.$refs.vShowContent.scrollTop=(t.$refs.vShowContent.scrollHeight-t.$refs.vShowContent.offsetHeight)*r)},t.fullscreenchange=function(e){e.$el.addEventListener("fullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener("mozfullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener("webkitfullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener("msfullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1)},t.windowResize=function(e){function t(){e.$el.clientWidth>768?e.s_subfield=e.subfield:e.s_subfield=!1}t(),window.addEventListener("resize",t)};t.ImagePreviewListener=function(e){e.$refs.vShowContent.addEventListener("click",(function(t){var n=(t=t||window.event).srcElement?t.srcElement:t.target;"IMG"===n.tagName&&(null!=e.imageClick?e.imageClick(n):e.d_preview_imgsrc=n.src)}))}},function(e,t,n){var r=n(38).FilterCSS,o=n(38).getDefaultWhiteList,i=n(39);function a(){return{a:["target","href","title"],abbr:["title"],address:[],area:["shape","coords","href","alt"],article:[],aside:[],audio:["autoplay","controls","crossorigin","loop","muted","preload","src"],b:[],bdi:["dir"],bdo:["dir"],big:[],blockquote:["cite"],br:[],caption:[],center:[],cite:[],code:[],col:["align","valign","span","width"],colgroup:["align","valign","span","width"],dd:[],del:["datetime"],details:["open"],div:[],dl:[],dt:[],em:[],figcaption:[],figure:[],font:["color","size","face"],footer:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],header:[],hr:[],i:[],img:["src","alt","title","width","height","loading"],ins:["datetime"],kbd:[],li:[],mark:[],nav:[],ol:[],p:[],pre:[],s:[],section:[],small:[],span:[],sub:[],summary:[],sup:[],strong:[],strike:[],table:["width","border","align","valign"],tbody:["align","valign"],td:["width","rowspan","colspan","align","valign"],tfoot:["align","valign"],th:["width","rowspan","colspan","align","valign"],thead:["align","valign"],tr:["rowspan","align","valign"],tt:[],u:[],ul:[],video:["autoplay","controls","crossorigin","loop","muted","playsinline","poster","preload","src","height","width"]}}var s=new r;function l(e){return e.replace(c,"&lt;").replace(u,"&gt;")}var c=/</g,u=/>/g,p=/"/g,d=/&quot;/g,h=/&#([a-zA-Z0-9]*);?/gim,f=/&colon;?/gim,_=/&newline;?/gim,g=/((j\s*a\s*v\s*a|v\s*b|l\s*i\s*v\s*e)\s*s\s*c\s*r\s*i\s*p\s*t\s*|m\s*o\s*c\s*h\s*a):/gi,m=/e\s*x\s*p\s*r\s*e\s*s\s*s\s*i\s*o\s*n\s*\(.*/gi,b=/u\s*r\s*l\s*\(.*/gi;function v(e){return e.replace(p,"&quot;")}function k(e){return e.replace(d,'"')}function w(e){return e.replace(h,(function(e,t){return"x"===t[0]||"X"===t[0]?String.fromCharCode(parseInt(t.substr(1),16)):String.fromCharCode(parseInt(t,10))}))}function y(e){return e.replace(f,":").replace(_," ")}function x(e){for(var t="",n=0,r=e.length;n<r;n++)t+=e.charCodeAt(n)<32?" ":e.charAt(n);return i.trim(t)}function C(e){return e=x(e=y(e=w(e=k(e))))}function j(e){return e=l(e=v(e))}t.whiteList={a:["target","href","title"],abbr:["title"],address:[],area:["shape","coords","href","alt"],article:[],aside:[],audio:["autoplay","controls","crossorigin","loop","muted","preload","src"],b:[],bdi:["dir"],bdo:["dir"],big:[],blockquote:["cite"],br:[],caption:[],center:[],cite:[],code:[],col:["align","valign","span","width"],colgroup:["align","valign","span","width"],dd:[],del:["datetime"],details:["open"],div:[],dl:[],dt:[],em:[],figcaption:[],figure:[],font:["color","size","face"],footer:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],header:[],hr:[],i:[],img:["src","alt","title","width","height","loading"],ins:["datetime"],kbd:[],li:[],mark:[],nav:[],ol:[],p:[],pre:[],s:[],section:[],small:[],span:[],sub:[],summary:[],sup:[],strong:[],strike:[],table:["width","border","align","valign"],tbody:["align","valign"],td:["width","rowspan","colspan","align","valign"],tfoot:["align","valign"],th:["width","rowspan","colspan","align","valign"],thead:["align","valign"],tr:["rowspan","align","valign"],tt:[],u:[],ul:[],video:["autoplay","controls","crossorigin","loop","muted","playsinline","poster","preload","src","height","width"]},t.getDefaultWhiteList=a,t.onTag=function(e,t,n){},t.onIgnoreTag=function(e,t,n){},t.onTagAttr=function(e,t,n){},t.onIgnoreTagAttr=function(e,t,n){},t.safeAttrValue=function(e,t,n,r){if(n=C(n),"href"===t||"src"===t){if("#"===(n=i.trim(n)))return"#";if("http://"!==n.substr(0,7)&&"https://"!==n.substr(0,8)&&"mailto:"!==n.substr(0,7)&&"tel:"!==n.substr(0,4)&&"data:image/"!==n.substr(0,11)&&"ftp://"!==n.substr(0,6)&&"./"!==n.substr(0,2)&&"../"!==n.substr(0,3)&&"#"!==n[0]&&"/"!==n[0])return""}else if("background"===t){if(g.lastIndex=0,g.test(n))return""}else if("style"===t){if(m.lastIndex=0,m.test(n))return"";if(b.lastIndex=0,b.test(n)&&(g.lastIndex=0,g.test(n)))return"";!1!==r&&(n=(r=r||s).process(n))}return n=j(n)},t.escapeHtml=l,t.escapeQuote=v,t.unescapeQuote=k,t.escapeHtmlEntities=w,t.escapeDangerHtml5Entities=y,t.clearNonPrintableCharacter=x,t.friendlyAttrValue=C,t.escapeAttrValue=j,t.onIgnoreTagStripAll=function(){return""},t.StripTagBody=function(e,t){"function"!=typeof t&&(t=function(){});var n=!Array.isArray(e),r=[],o=!1;return{onIgnoreTag:function(a,s,l){if(function(t){return!!n||-1!==i.indexOf(e,t)}(a)){if(l.isClosing){var c="[/removed]",u=l.position+c.length;return r.push([!1!==o?o:l.position,u]),o=!1,c}return o||(o=l.position),"[removed]"}return t(a,s,l)},remove:function(e){var t="",n=0;return i.forEach(r,(function(r){t+=e.slice(n,r[0]),n=r[1]})),t+=e.slice(n)}}},t.stripCommentTag=function(e){for(var t="",n=0;n<e.length;){var r=e.indexOf("\x3c!--",n);if(-1===r){t+=e.slice(n);break}t+=e.slice(n,r);var o=e.indexOf("--\x3e",r);if(-1===o)break;n=o+3}return t},t.stripBlankChar=function(e){var t=e.split("");return(t=t.filter((function(e){var t=e.charCodeAt(0);return 127!==t&&(!(t<=31)||(10===t||13===t))}))).join("")},t.attributeWrapSign='"',t.cssFilter=s,t.getDefaultCSSWhiteList=o},function(e,t){function n(){var e={"align-content":!1,"align-items":!1,"align-self":!1,"alignment-adjust":!1,"alignment-baseline":!1,all:!1,"anchor-point":!1,animation:!1,"animation-delay":!1,"animation-direction":!1,"animation-duration":!1,"animation-fill-mode":!1,"animation-iteration-count":!1,"animation-name":!1,"animation-play-state":!1,"animation-timing-function":!1,azimuth:!1,"backface-visibility":!1,background:!0,"background-attachment":!0,"background-clip":!0,"background-color":!0,"background-image":!0,"background-origin":!0,"background-position":!0,"background-repeat":!0,"background-size":!0,"baseline-shift":!1,binding:!1,bleed:!1,"bookmark-label":!1,"bookmark-level":!1,"bookmark-state":!1,border:!0,"border-bottom":!0,"border-bottom-color":!0,"border-bottom-left-radius":!0,"border-bottom-right-radius":!0,"border-bottom-style":!0,"border-bottom-width":!0,"border-collapse":!0,"border-color":!0,"border-image":!0,"border-image-outset":!0,"border-image-repeat":!0,"border-image-slice":!0,"border-image-source":!0,"border-image-width":!0,"border-left":!0,"border-left-color":!0,"border-left-style":!0,"border-left-width":!0,"border-radius":!0,"border-right":!0,"border-right-color":!0,"border-right-style":!0,"border-right-width":!0,"border-spacing":!0,"border-style":!0,"border-top":!0,"border-top-color":!0,"border-top-left-radius":!0,"border-top-right-radius":!0,"border-top-style":!0,"border-top-width":!0,"border-width":!0,bottom:!1,"box-decoration-break":!0,"box-shadow":!0,"box-sizing":!0,"box-snap":!0,"box-suppress":!0,"break-after":!0,"break-before":!0,"break-inside":!0,"caption-side":!1,chains:!1,clear:!0,clip:!1,"clip-path":!1,"clip-rule":!1,color:!0,"color-interpolation-filters":!0,"column-count":!1,"column-fill":!1,"column-gap":!1,"column-rule":!1,"column-rule-color":!1,"column-rule-style":!1,"column-rule-width":!1,"column-span":!1,"column-width":!1,columns:!1,contain:!1,content:!1,"counter-increment":!1,"counter-reset":!1,"counter-set":!1,crop:!1,cue:!1,"cue-after":!1,"cue-before":!1,cursor:!1,direction:!1,display:!0,"display-inside":!0,"display-list":!0,"display-outside":!0,"dominant-baseline":!1,elevation:!1,"empty-cells":!1,filter:!1,flex:!1,"flex-basis":!1,"flex-direction":!1,"flex-flow":!1,"flex-grow":!1,"flex-shrink":!1,"flex-wrap":!1,float:!1,"float-offset":!1,"flood-color":!1,"flood-opacity":!1,"flow-from":!1,"flow-into":!1,font:!0,"font-family":!0,"font-feature-settings":!0,"font-kerning":!0,"font-language-override":!0,"font-size":!0,"font-size-adjust":!0,"font-stretch":!0,"font-style":!0,"font-synthesis":!0,"font-variant":!0,"font-variant-alternates":!0,"font-variant-caps":!0,"font-variant-east-asian":!0,"font-variant-ligatures":!0,"font-variant-numeric":!0,"font-variant-position":!0,"font-weight":!0,grid:!1,"grid-area":!1,"grid-auto-columns":!1,"grid-auto-flow":!1,"grid-auto-rows":!1,"grid-column":!1,"grid-column-end":!1,"grid-column-start":!1,"grid-row":!1,"grid-row-end":!1,"grid-row-start":!1,"grid-template":!1,"grid-template-areas":!1,"grid-template-columns":!1,"grid-template-rows":!1,"hanging-punctuation":!1,height:!0,hyphens:!1,icon:!1,"image-orientation":!1,"image-resolution":!1,"ime-mode":!1,"initial-letters":!1,"inline-box-align":!1,"justify-content":!1,"justify-items":!1,"justify-self":!1,left:!1,"letter-spacing":!0,"lighting-color":!0,"line-box-contain":!1,"line-break":!1,"line-grid":!1,"line-height":!1,"line-snap":!1,"line-stacking":!1,"line-stacking-ruby":!1,"line-stacking-shift":!1,"line-stacking-strategy":!1,"list-style":!0,"list-style-image":!0,"list-style-position":!0,"list-style-type":!0,margin:!0,"margin-bottom":!0,"margin-left":!0,"margin-right":!0,"margin-top":!0,"marker-offset":!1,"marker-side":!1,marks:!1,mask:!1,"mask-box":!1,"mask-box-outset":!1,"mask-box-repeat":!1,"mask-box-slice":!1,"mask-box-source":!1,"mask-box-width":!1,"mask-clip":!1,"mask-image":!1,"mask-origin":!1,"mask-position":!1,"mask-repeat":!1,"mask-size":!1,"mask-source-type":!1,"mask-type":!1,"max-height":!0,"max-lines":!1,"max-width":!0,"min-height":!0,"min-width":!0,"move-to":!1,"nav-down":!1,"nav-index":!1,"nav-left":!1,"nav-right":!1,"nav-up":!1,"object-fit":!1,"object-position":!1,opacity:!1,order:!1,orphans:!1,outline:!1,"outline-color":!1,"outline-offset":!1,"outline-style":!1,"outline-width":!1,overflow:!1,"overflow-wrap":!1,"overflow-x":!1,"overflow-y":!1,padding:!0,"padding-bottom":!0,"padding-left":!0,"padding-right":!0,"padding-top":!0,page:!1,"page-break-after":!1,"page-break-before":!1,"page-break-inside":!1,"page-policy":!1,pause:!1,"pause-after":!1,"pause-before":!1,perspective:!1,"perspective-origin":!1,pitch:!1,"pitch-range":!1,"play-during":!1,position:!1,"presentation-level":!1,quotes:!1,"region-fragment":!1,resize:!1,rest:!1,"rest-after":!1,"rest-before":!1,richness:!1,right:!1,rotation:!1,"rotation-point":!1,"ruby-align":!1,"ruby-merge":!1,"ruby-position":!1,"shape-image-threshold":!1,"shape-outside":!1,"shape-margin":!1,size:!1,speak:!1,"speak-as":!1,"speak-header":!1,"speak-numeral":!1,"speak-punctuation":!1,"speech-rate":!1,stress:!1,"string-set":!1,"tab-size":!1,"table-layout":!1,"text-align":!0,"text-align-last":!0,"text-combine-upright":!0,"text-decoration":!0,"text-decoration-color":!0,"text-decoration-line":!0,"text-decoration-skip":!0,"text-decoration-style":!0,"text-emphasis":!0,"text-emphasis-color":!0,"text-emphasis-position":!0,"text-emphasis-style":!0,"text-height":!0,"text-indent":!0,"text-justify":!0,"text-orientation":!0,"text-overflow":!0,"text-shadow":!0,"text-space-collapse":!0,"text-transform":!0,"text-underline-position":!0,"text-wrap":!0,top:!1,transform:!1,"transform-origin":!1,"transform-style":!1,transition:!1,"transition-delay":!1,"transition-duration":!1,"transition-property":!1,"transition-timing-function":!1,"unicode-bidi":!1,"vertical-align":!1,visibility:!1,"voice-balance":!1,"voice-duration":!1,"voice-family":!1,"voice-pitch":!1,"voice-range":!1,"voice-rate":!1,"voice-stress":!1,"voice-volume":!1,volume:!1,"white-space":!1,widows:!1,width:!0,"will-change":!1,"word-break":!0,"word-spacing":!0,"word-wrap":!0,"wrap-flow":!1,"wrap-through":!1,"writing-mode":!1,"z-index":!1};return e}var r=/javascript\s*\:/gim;t.whiteList=n(),t.getDefaultWhiteList=n,t.onAttr=function(e,t,n){},t.onIgnoreAttr=function(e,t,n){},t.safeAttrValue=function(e,t){return r.test(t)?"":t}},function(e,t){e.exports={indexOf:function(e,t){var n,r;if(Array.prototype.indexOf)return e.indexOf(t);for(n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},forEach:function(e,t,n){var r,o;if(Array.prototype.forEach)return e.forEach(t,n);for(r=0,o=e.length;r<o;r++)t.call(n,e[r],r,e)},trim:function(e){return String.prototype.trim?e.trim():e.replace(/(^\s*)|(\s*$)/g,"")},trimRight:function(e){return String.prototype.trimRight?e.trimRight():e.replace(/(\s*$)/g,"")}}},function(e,t,n){var r=n(39);function o(e){var t,n=r.spaceIndex(e);return t=-1===n?e.slice(1,-1):e.slice(1,n+1),"/"===(t=r.trim(t).toLowerCase()).slice(0,1)&&(t=t.slice(1)),"/"===t.slice(-1)&&(t=t.slice(0,-1)),t}function i(e){return"</"===e.slice(0,2)}var a=/[^a-zA-Z0-9\\_:.-]/gim;function s(e,t){for(;t<e.length;t++){var n=e[t];if(" "!==n)return"="===n?t:-1}}function l(e,t){for(;t<e.length;t++){var n=e[t];if(" "!==n)return"'"===n||'"'===n?t:-1}}function c(e,t){for(;t>0;t--){var n=e[t];if(" "!==n)return"="===n?t:-1}}function u(e){return function(e){return'"'===e[0]&&'"'===e[e.length-1]||"'"===e[0]&&"'"===e[e.length-1]}(e)?e.substr(1,e.length-2):e}t.parseTag=function(e,t,n){"use strict";var r="",a=0,s=!1,l=!1,c=0,u=e.length,p="",d="";e:for(c=0;c<u;c++){var h=e.charAt(c);if(!1===s){if("<"===h){s=c;continue}}else if(!1===l){if("<"===h){r+=n(e.slice(a,c)),s=c,a=c;continue}if(">"===h||c===u-1){r+=n(e.slice(a,s)),p=o(d=e.slice(s,c+1)),r+=t(s,r.length,p,d,i(d)),a=c+1,s=!1;continue}if('"'===h||"'"===h)for(var f=1,_=e.charAt(c-f);""===_.trim()||"="===_;){if("="===_){l=h;continue e}_=e.charAt(c-++f)}}else if(h===l){l=!1;continue}}return a<u&&(r+=n(e.substr(a))),r},t.parseAttr=function(e,t){"use strict";var n=0,o=0,i=[],p=!1,d=e.length;function h(e,n){if(!((e=(e=r.trim(e)).replace(a,"").toLowerCase()).length<1)){var o=t(e,n||"");o&&i.push(o)}}for(var f=0;f<d;f++){var _,g=e.charAt(f);if(!1!==p||"="!==g)if(!1===p||f!==o)if(/\s|\n|\t/.test(g)){if(e=e.replace(/\s|\n|\t/g," "),!1===p){if(-1===(_=s(e,f))){h(r.trim(e.slice(n,f))),p=!1,n=f+1;continue}f=_-1;continue}if(-1===(_=c(e,f-1))){h(p,u(r.trim(e.slice(n,f)))),p=!1,n=f+1;continue}}else;else{if(-1===(_=e.indexOf(g,f+1)))break;h(p,r.trim(e.slice(o+1,_))),p=!1,n=(f=_)+1}else p=e.slice(n,f),n=f+1,o='"'===e.charAt(n)||"'"===e.charAt(n)?n:l(e,f+1)}return n<e.length&&(!1===p?h(e.slice(n)):h(p,u(r.trim(e.slice(n))))),r.trim(i.join(" "))}},function(e,t,n){"use strict";e.exports=n(142)},function(e,t,n){"use strict";e.exports.encode=n(143),e.exports.decode=n(144),e.exports.format=n(145),e.exports.parse=n(146)},function(e,t){e.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/},function(e,t){e.exports=/[\0-\x1F\x7F-\x9F]/},function(e,t){e.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/},function(e,t,n){"use strict";var r="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",o="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",i=new RegExp("^(?:"+r+"|"+o+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|<![A-Z]+\\s+[^>]*>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>)"),a=new RegExp("^(?:"+r+"|"+o+")");e.exports.HTML_TAG_RE=i,e.exports.HTML_OPEN_CLOSE_TAG_RE=a},function(e,t,n){"use strict";function r(e,t){var n,r,o,i,a,s=[],l=t.length;for(n=0;n<l;n++)126===(o=t[n]).marker&&-1!==o.end&&(i=t[o.end],(a=e.tokens[o.token]).type="s_open",a.tag="s",a.nesting=1,a.markup="~~",a.content="",(a=e.tokens[i.token]).type="s_close",a.tag="s",a.nesting=-1,a.markup="~~",a.content="","text"===e.tokens[i.token-1].type&&"~"===e.tokens[i.token-1].content&&s.push(i.token-1));for(;s.length;){for(r=(n=s.pop())+1;r<e.tokens.length&&"s_close"===e.tokens[r].type;)r++;n!==--r&&(a=e.tokens[r],e.tokens[r]=e.tokens[n],e.tokens[n]=a)}}e.exports.tokenize=function(e,t){var n,r,o,i,a=e.pos,s=e.src.charCodeAt(a);if(t)return!1;if(126!==s)return!1;if(o=(r=e.scanDelims(e.pos,!0)).length,i=String.fromCharCode(s),o<2)return!1;for(o%2&&(e.push("text","",0).content=i,o--),n=0;n<o;n+=2)e.push("text","",0).content=i+i,e.delimiters.push({marker:s,length:0,token:e.tokens.length-1,end:-1,open:r.can_open,close:r.can_close});return e.pos+=r.length,!0},e.exports.postProcess=function(e){var t,n=e.tokens_meta,o=e.tokens_meta.length;for(r(e,e.delimiters),t=0;t<o;t++)n[t]&&n[t].delimiters&&r(e,n[t].delimiters)}},function(e,t,n){"use strict";function r(e,t){var n,r,o,i,a,s;for(n=t.length-1;n>=0;n--)95!==(r=t[n]).marker&&42!==r.marker||-1!==r.end&&(o=t[r.end],s=n>0&&t[n-1].end===r.end+1&&t[n-1].marker===r.marker&&t[n-1].token===r.token-1&&t[r.end+1].token===o.token+1,a=String.fromCharCode(r.marker),(i=e.tokens[r.token]).type=s?"strong_open":"em_open",i.tag=s?"strong":"em",i.nesting=1,i.markup=s?a+a:a,i.content="",(i=e.tokens[o.token]).type=s?"strong_close":"em_close",i.tag=s?"strong":"em",i.nesting=-1,i.markup=s?a+a:a,i.content="",s&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}e.exports.tokenize=function(e,t){var n,r,o=e.pos,i=e.src.charCodeAt(o);if(t)return!1;if(95!==i&&42!==i)return!1;for(r=e.scanDelims(e.pos,42===i),n=0;n<r.length;n++)e.push("text","",0).content=String.fromCharCode(i),e.delimiters.push({marker:i,length:r.length,token:e.tokens.length-1,end:-1,open:r.can_open,close:r.can_close});return e.pos+=r.length,!0},e.exports.postProcess=function(e){var t,n=e.tokens_meta,o=e.tokens_meta.length;for(r(e,e.delimiters),t=0;t<o;t++)n[t]&&n[t].delimiters&&r(e,n[t].delimiters)}},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="",e.Left="left",e.Center="center",e.Right="right"}(r||(r={})),t.default=r},function(e,t,n){"use strict";n.r(t);var r=n(78),o=n(22);for(var i in o)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return o[e]}))}(i);n(228);var a=n(3);const s=n.n(a)()(o.default,[["render",r.a],["__scopeId","data-v-218640b4"]]);t.default=s},function(e,t,n){var r=n(229);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.i,r,""]]),r.locals&&(e.exports=r.locals);(0,n(44).default)("74ee9320",r,!1,{})},function(e,t,n){"use strict";n.r(t);var r=n(79),o=n(23);for(var i in o)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return o[e]}))}(i);var a=n(3);const s=n.n(a)()(o.default,[["render",r.a]]);t.default=s},function(e,t,n){var r=n(232);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.i,r,""]]),r.locals&&(e.exports=r.locals);(0,n(44).default)("4958985a",r,!1,{})},function(e,t,n){var r=n(234);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.i,r,""]]),r.locals&&(e.exports=r.locals);(0,n(44).default)("0885241c",r,!1,{})},function(e,t,n){"use strict";n.d(t,"a",(function(){return p}));var r=n(0);const o={class:"v-note-panel"},i=["innerHTML"],a={class:"v-note-navigation-title"},s={ref:"help"},l=["innerHTML"],c=["src"],u=["innerHTML"];function p(e,t,n,p,d,h){const f=Object(r.resolveComponent)("v-md-toolbar-left"),_=Object(r.resolveComponent)("v-md-toolbar-right"),g=Object(r.resolveComponent)("v-autoTextarea");return Object(r.openBlock)(),Object(r.createElementBlock)("div",{class:Object(r.normalizeClass)([[{fullscreen:d.s_fullScreen,shadow:n.boxShadow}],"v-note-wrapper markdown-body"]),style:Object(r.normalizeStyle)({"box-shadow":n.boxShadow?n.boxShadowStyle:""})},[Object(r.createCommentVNode)("ๅทฅๅ…ทๆ "),Object(r.withDirectives)(Object(r.createElementVNode)("div",{class:"v-note-op",style:Object(r.normalizeStyle)({background:n.toolbarsBackground})},[Object(r.createVNode)(f,{ref:"toolbar_left",editable:n.editable,transition:n.transition,d_words:d.d_words,onToolbar_left_click:h.toolbar_left_click,onToolbar_left_addlink:h.toolbar_left_addlink,toolbars:n.toolbars,onImgAdd:h.$imgAdd,onImgDel:h.$imgDel,onImgTouch:h.$imgTouch,image_filter:n.imageFilter,class:Object(r.normalizeClass)({transition:n.transition})},{"left-toolbar-before":Object(r.withCtx)(()=>[Object(r.renderSlot)(e.$slots,"left-toolbar-before",{},void 0,!0)]),"left-toolbar-after":Object(r.withCtx)(()=>[Object(r.renderSlot)(e.$slots,"left-toolbar-after",{},void 0,!0)]),_:3},8,["editable","transition","d_words","onToolbar_left_click","onToolbar_left_addlink","toolbars","onImgAdd","onImgDel","onImgTouch","image_filter","class"]),Object(r.createVNode)(_,{ref:"toolbar_right",d_words:d.d_words,onToolbar_right_click:h.toolbar_right_click,toolbars:n.toolbars,s_subfield:d.s_subfield,s_preview_switch:d.s_preview_switch,s_fullScreen:d.s_fullScreen,s_html_code:d.s_html_code,s_navigation:d.s_navigation,class:Object(r.normalizeClass)({transition:n.transition})},{"right-toolbar-before":Object(r.withCtx)(()=>[Object(r.renderSlot)(e.$slots,"right-toolbar-before",{},void 0,!0)]),"right-toolbar-after":Object(r.withCtx)(()=>[Object(r.renderSlot)(e.$slots,"right-toolbar-after",{},void 0,!0)]),_:3},8,["d_words","onToolbar_right_click","toolbars","s_subfield","s_preview_switch","s_fullScreen","s_html_code","s_navigation","class"])],4),[[r.vShow,n.toolbarsFlag]]),Object(r.createCommentVNode)("็ผ–่พ‘ๅฑ•็คบๅŒบๅŸŸ"),Object(r.createElementVNode)("div",o,[Object(r.createCommentVNode)("็ผ–่พ‘ๅŒบ"),Object(r.createElementVNode)("div",{ref:"vNoteEdit",onScroll:t[1]||(t[1]=(...e)=>h.$v_edit_scroll&&h.$v_edit_scroll(...e)),class:Object(r.normalizeClass)(["v-note-edit divarea-wrapper",{"scroll-style":d.s_scrollStyle,"scroll-style-border-radius":d.s_scrollStyle&&!d.s_preview_switch&&!d.s_html_code,"single-edit":!d.s_preview_switch&&!d.s_html_code,"single-show":!d.s_subfield&&d.s_preview_switch||!d.s_subfield&&d.s_html_code,transition:n.transition}]),onClick:t[2]||(t[2]=(...e)=>h.textAreaFocus&&h.textAreaFocus(...e))},[Object(r.createElementVNode)("div",{class:"content-input-wrapper",style:Object(r.normalizeStyle)({"background-color":n.editorBackground})},[Object(r.createCommentVNode)(" ๅŒๆ  "),Object(r.createVNode)(g,{ref:"vNoteTextarea",placeholder:n.placeholder?n.placeholder:d.d_words.start_editor,class:"content-input",fontSize:n.fontSize,lineHeight:"1.5",modelValue:d.d_value,"onUpdate:modelValue":t[0]||(t[0]=e=>d.d_value=e),fullHeight:"",style:Object(r.normalizeStyle)({"background-color":n.editorBackground})},null,8,["placeholder","fontSize","modelValue","style"])],4)],34),Object(r.createCommentVNode)("ๅฑ•็คบๅŒบ"),Object(r.withDirectives)(Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)([{"single-show":!d.s_subfield&&d.s_preview_switch||!d.s_subfield&&d.s_html_code},"v-note-show"])},[Object(r.withDirectives)(Object(r.createElementVNode)("div",{ref:"vShowContent",innerHTML:d.d_render,class:Object(r.normalizeClass)([{"scroll-style":d.s_scrollStyle,"scroll-style-border-radius":d.s_scrollStyle},"v-show-content"]),style:Object(r.normalizeStyle)({"background-color":n.previewBackground})},null,14,i),[[r.vShow,!d.s_html_code]]),Object(r.withDirectives)(Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)([{"scroll-style":d.s_scrollStyle,"scroll-style-border-radius":d.s_scrollStyle},"v-show-content-html"]),style:Object(r.normalizeStyle)({"background-color":n.previewBackground})},Object(r.toDisplayString)(d.d_render),7),[[r.vShow,d.s_html_code]])],2),[[r.vShow,d.s_preview_switch||d.s_html_code]]),Object(r.createCommentVNode)("ๆ ‡้ข˜ๅฏผ่ˆช"),Object(r.createVNode)(r.Transition,{name:"slideTop",persisted:""},{default:Object(r.withCtx)(()=>[Object(r.withDirectives)(Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)(["v-note-navigation-wrapper",{transition:n.transition}])},[Object(r.createElementVNode)("div",a,[Object(r.createTextVNode)(Object(r.toDisplayString)(d.d_words.navigation_title),1),Object(r.createElementVNode)("i",{onClick:t[3]||(t[3]=e=>h.toolbar_right_click("navigation")),class:"fa fa-mavon-times v-note-navigation-close","aria-hidden":"true"})]),Object(r.createElementVNode)("div",{ref:"navigationContent",class:Object(r.normalizeClass)(["v-note-navigation-content",{"scroll-style":d.s_scrollStyle}])},null,2)],2),[[r.vShow,d.s_navigation]])]),_:1})]),Object(r.createCommentVNode)("ๅธฎๅŠฉๆ–‡ๆกฃ"),Object(r.createVNode)(r.Transition,{name:"fade"},{default:Object(r.withCtx)(()=>[Object(r.createElementVNode)("div",s,[d.s_help?(Object(r.openBlock)(),Object(r.createElementBlock)("div",{key:0,onClick:t[5]||(t[5]=Object(r.withModifiers)(e=>h.toolbar_right_click("help"),["self"])),class:"v-note-help-wrapper"},[Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)(["v-note-help-content markdown-body",{shadow:n.boxShadow}])},[Object(r.createElementVNode)("i",{onClick:t[4]||(t[4]=Object(r.withModifiers)(e=>h.toolbar_right_click("help"),["stop","prevent"])),class:"fa fa-mavon-times","aria-hidden":"true"}),Object(r.createElementVNode)("div",{class:"scroll-style v-note-help-show",innerHTML:d.d_help},null,8,l)],2)])):Object(r.createCommentVNode)("v-if",!0)],512)]),_:1}),Object(r.createCommentVNode)(" ้ข„่งˆๅ›พ็‰‡ "),Object(r.createVNode)(r.Transition,{name:"fade"},{default:Object(r.withCtx)(()=>[d.d_preview_imgsrc?(Object(r.openBlock)(),Object(r.createElementBlock)("div",{key:0,onClick:t[6]||(t[6]=e=>d.d_preview_imgsrc=null),class:"v-note-img-wrapper"},[Object(r.createElementVNode)("img",{src:d.d_preview_imgsrc,alt:"none"},null,8,c)])):Object(r.createCommentVNode)("v-if",!0)]),_:1}),Object(r.createCommentVNode)("้˜…่ฏปๆจกๅผ"),Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)([{show:d.s_readmodel},"v-note-read-model scroll-style"]),ref:"vReadModel"},[Object(r.createElementVNode)("div",{ref:"vNoteReadContent",class:"v-note-read-content",innerHTML:d.d_render},null,8,u)],2)],6)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return P}));var r=n(0);const o={class:"v-left-item"},i=["disabled","title"],a=["disabled","title"],s=["disabled","title"],l={key:3,class:"op-icon-divider"},c=["disabled","title"],u=["disabled","title"],p=["disabled","title"],d=["disabled","title"],h=["disabled","title"],f=["disabled","title"],_=["disabled","title"],g=["disabled","title"],m={key:12,class:"op-icon-divider"},b=["disabled","title"],v=["disabled","title"],k=["disabled","title"],w={key:16,class:"op-icon-divider"},y=["disabled","title"],x=["disabled"],C={class:"dropdown-item",style:{overflow:"hidden"}},j=["title","onClick"],A=["onClick","title"],E=["src"],O=["disabled","title"],S=["disabled","title"],T={key:21,class:"op-icon-divider"},D=["title"],L=["title"],q=["title"],M=["title"],z={key:0,class:"add-image-link-wrapper"},$={class:"add-image-link"},B={class:"title"},F={class:"link-text input-wrapper"},I=["placeholder"],N={class:"link-addr input-wrapper"},R=["placeholder"];function P(e,t,n,P,V,H){return Object(r.openBlock)(),Object(r.createElementBlock)("div",o,[Object(r.renderSlot)(e.$slots,"left-toolbar-before",{},void 0,!0),n.toolbars.bold?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:0,disabled:!n.editable,type:"button",onClick:t[0]||(t[0]=e=>H.$clicks("bold")),class:"op-icon fa fa-mavon-bold","aria-hidden":"true",title:n.d_words.tl_bold+" (ctrl+b)"},null,8,i)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.italic?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:1,disabled:!n.editable,type:"button",onClick:t[1]||(t[1]=e=>H.$clicks("italic")),class:"op-icon fa fa-mavon-italic","aria-hidden":"true",title:n.d_words.tl_italic+" (ctrl+i)"},null,8,a)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.header?(Object(r.openBlock)(),Object(r.createElementBlock)("div",{key:2,class:Object(r.normalizeClass)([{selected:V.s_header_dropdown_open},"op-icon fa fa-mavon-header dropdown dropdown-wrapper"]),disabled:!n.editable,type:"button",onMouseleave:t[10]||(t[10]=(...e)=>H.$mouseleave_header_dropdown&&H.$mouseleave_header_dropdown(...e)),onMouseenter:t[11]||(t[11]=(...e)=>H.$mouseenter_header_dropdown&&H.$mouseenter_header_dropdown(...e)),"aria-hidden":"true",title:n.d_words.tl_header+" (ctrl+h)"},[Object(r.createVNode)(r.Transition,{name:"fade",persisted:""},{default:Object(r.withCtx)(()=>[Object(r.withDirectives)(Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)(["op-header popup-dropdown",{transition:n.transition}]),onMouseenter:t[8]||(t[8]=(...e)=>H.$mouseenter_header_dropdown&&H.$mouseenter_header_dropdown(...e)),onMouseleave:t[9]||(t[9]=(...e)=>H.$mouseleave_header_dropdown&&H.$mouseleave_header_dropdown(...e))},[Object(r.createElementVNode)("div",{title:"#",class:"dropdown-item",onClick:t[2]||(t[2]=Object(r.withModifiers)(e=>H.$click_header("header1"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_header_one),1)]),Object(r.createElementVNode)("div",{title:"## ",class:"dropdown-item",onClick:t[3]||(t[3]=Object(r.withModifiers)(e=>H.$click_header("header2"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_header_two),1)]),Object(r.createElementVNode)("div",{title:"### ",class:"dropdown-item",onClick:t[4]||(t[4]=Object(r.withModifiers)(e=>H.$click_header("header3"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_header_three),1)]),Object(r.createElementVNode)("div",{title:"#### ",class:"dropdown-item",onClick:t[5]||(t[5]=Object(r.withModifiers)(e=>H.$click_header("header4"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_header_four),1)]),Object(r.createElementVNode)("div",{title:"##### ",class:"dropdown-item",onClick:t[6]||(t[6]=Object(r.withModifiers)(e=>H.$click_header("header5"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_header_five),1)]),Object(r.createElementVNode)("div",{title:"###### ",class:"dropdown-item",onClick:t[7]||(t[7]=Object(r.withModifiers)(e=>H.$click_header("header6"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_header_six),1)])],34),[[r.vShow,V.s_header_dropdown_open]])]),_:1})],42,s)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.header||n.toolbars.italic||n.toolbars.bold?(Object(r.openBlock)(),Object(r.createElementBlock)("span",l)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.underline?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:4,disabled:!n.editable,type:"button",onClick:t[12]||(t[12]=e=>H.$clicks("underline")),class:"op-icon fa fa-mavon-underline",title:n.d_words.tl_underline+" (ctrl+u)","aria-hidden":"true"},null,8,c)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.strikethrough?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:5,disabled:!n.editable,type:"button",onClick:t[13]||(t[13]=e=>H.$clicks("strikethrough")),class:"op-icon fa fa-mavon-strikethrough",title:n.d_words.tl_strikethrough+" (ctrl+shift+d)","aria-hidden":"true"},null,8,u)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.mark?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:6,disabled:!n.editable,type:"button",onClick:t[14]||(t[14]=e=>H.$clicks("mark")),class:"op-icon fa fa-mavon-thumb-tack",title:n.d_words.tl_mark+" (ctrl+m)","aria-hidden":"true"},null,8,p)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.superscript?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:7,disabled:!n.editable,type:"button",onClick:t[15]||(t[15]=e=>H.$clicks("superscript")),class:"op-icon fa fa-mavon-superscript","aria-hidden":"true",title:n.d_words.tl_superscript+" (ctrl+alt+s)"},null,8,d)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.subscript?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:8,disabled:!n.editable,type:"button",onClick:t[16]||(t[16]=e=>H.$clicks("subscript")),class:"op-icon fa fa-mavon-subscript","aria-hidden":"true",title:n.d_words.tl_subscript+" (ctrl+shift+s)"},null,8,h)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.alignleft?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:9,disabled:!n.editable,type:"button",onClick:t[17]||(t[17]=e=>H.$clicks("alignleft")),class:"op-icon fa fa-mavon-align-left","aria-hidden":"true",title:n.d_words.tl_alignleft+" (ctrl+l)"},null,8,f)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.aligncenter?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:10,disabled:!n.editable,type:"button",onClick:t[18]||(t[18]=e=>H.$clicks("aligncenter")),class:"op-icon fa fa-mavon-align-center","aria-hidden":"true",title:n.d_words.tl_aligncenter+" (ctrl+e)"},null,8,_)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.alignright?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:11,disabled:!n.editable,type:"button",onClick:t[19]||(t[19]=e=>H.$clicks("alignright")),class:"op-icon fa fa-mavon-align-right","aria-hidden":"true",title:n.d_words.tl_alignright+" (ctrl+r)"},null,8,g)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.superscript||n.toolbars.subscript||n.toolbars.underline||n.toolbars.strikethrough||n.toolbars.mark?(Object(r.openBlock)(),Object(r.createElementBlock)("span",m)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.quote?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:13,disabled:!n.editable,type:"button",onClick:t[20]||(t[20]=e=>H.$clicks("quote")),class:"op-icon fa fa-mavon-quote-left","aria-hidden":"true",title:n.d_words.tl_quote+" (ctrl+q)"},null,8,b)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.ol?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:14,disabled:!n.editable,type:"button",onClick:t[21]||(t[21]=e=>H.$clicks("ol")),class:"op-icon fa fa-mavon-list-ol","aria-hidden":"true",title:n.d_words.tl_ol+" (ctrl+o)"},null,8,v)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.ul?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:15,disabled:!n.editable,type:"button",onClick:t[22]||(t[22]=e=>H.$clicks("ul")),class:"op-icon fa fa-mavon-list-ul","aria-hidden":"true",title:n.d_words.tl_ul+" (ctrl+alt+u)"},null,8,k)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.ul||n.toolbars.ol||n.toolbars.quote?(Object(r.openBlock)(),Object(r.createElementBlock)("span",w)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.link?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:17,disabled:!n.editable,type:"button",onClick:t[23]||(t[23]=Object(r.withModifiers)(e=>H.$toggle_imgLinkAdd("link"),["stop"])),class:"op-icon fa fa-mavon-link","aria-hidden":"true",title:n.d_words.tl_link+" (ctrl+l)"},null,8,y)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.imagelink?(Object(r.openBlock)(),Object(r.createElementBlock)("div",{key:18,disabled:!n.editable,class:Object(r.normalizeClass)([{selected:V.s_img_dropdown_open},"op-icon fa fa-mavon-picture-o dropdown dropdown-wrapper"]),type:"button",onMouseleave:t[28]||(t[28]=(...e)=>H.$mouseleave_img_dropdown&&H.$mouseleave_img_dropdown(...e)),onMouseenter:t[29]||(t[29]=(...e)=>H.$mouseenter_img_dropdown&&H.$mouseenter_img_dropdown(...e)),"aria-hidden":"true"},[Object(r.createVNode)(r.Transition,{name:"fade",persisted:""},{default:Object(r.withCtx)(()=>[Object(r.withDirectives)(Object(r.createElementVNode)("div",{class:Object(r.normalizeClass)(["op-image popup-dropdown",{transition:n.transition}]),onMouseleave:t[26]||(t[26]=(...e)=>H.$mouseleave_img_dropdown&&H.$mouseleave_img_dropdown(...e)),onMouseenter:t[27]||(t[27]=(...e)=>H.$mouseenter_img_dropdown&&H.$mouseenter_img_dropdown(...e))},[Object(r.createElementVNode)("div",{class:"dropdown-item",onClick:t[24]||(t[24]=Object(r.withModifiers)(e=>H.$toggle_imgLinkAdd("imagelink"),["stop"]))},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(n.d_words.tl_image),1)]),Object(r.createElementVNode)("div",C,[Object(r.createElementVNode)("input",{type:"file",accept:"image/gif,image/jpeg,image/jpg,image/png,image/svg",onChange:t[25]||(t[25]=e=>H.$imgAdd(e)),multiple:"multiple"},null,32),Object(r.createTextVNode)(Object(r.toDisplayString)(n.d_words.tl_upload),1)]),(Object(r.openBlock)(!0),Object(r.createElementBlock)(r.Fragment,null,Object(r.renderList)(V.img_file,(e,t)=>(Object(r.openBlock)(),Object(r.createElementBlock)(r.Fragment,{key:t},[e&&e[1]?(Object(r.openBlock)(),Object(r.createElementBlock)("div",{key:0,class:"dropdown-item dropdown-images",title:e[1].name,onClick:Object(r.withModifiers)(e=>H.$imgFileListClick(t),["stop"])},[Object(r.createElementVNode)("span",null,Object(r.toDisplayString)(e[1].name),1),Object(r.createElementVNode)("button",{type:"button",onClick:Object(r.withModifiers)(e=>H.$imgDel(t),["stop"]),class:"op-icon fa fa-mavon-times","aria-hidden":"true",title:n.d_words.tl_upload_remove},null,8,A),Object(r.createCommentVNode)(" ็ผฉ็•ฅๅ›พๅฑ•็คบ "),Object(r.createElementVNode)("img",{class:Object(r.normalizeClass)(["image-show",{transition:n.transition}]),src:e[1].miniurl,alt:"none"},null,10,E)],8,j)):Object(r.createCommentVNode)("v-if",!0)],64))),128))],34),[[r.vShow,V.s_img_dropdown_open]])]),_:1})],42,x)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.code?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:19,disabled:!n.editable,type:"button",onClick:t[30]||(t[30]=e=>H.$clicks("code")),class:"op-icon fa fa-mavon-code","aria-hidden":"true",title:n.d_words.tl_code+" (ctrl+alt+c)"},null,8,O)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.table?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:20,disabled:!n.editable,type:"button",onClick:t[31]||(t[31]=e=>H.$clicks("table")),class:"op-icon fa fa-mavon-table","aria-hidden":"true",title:n.d_words.tl_table+" (ctrl+alt+t)"},null,8,S)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.link||n.toolbars.imagelink||n.toolbars.code||n.toolbars.table?(Object(r.openBlock)(),Object(r.createElementBlock)("span",T)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.undo?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:22,type:"button",onClick:t[32]||(t[32]=e=>H.$clicks("undo")),class:"op-icon fa fa-mavon-undo","aria-hidden":"true",title:n.d_words.tl_undo+" (ctrl+z)"},null,8,D)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.redo?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:23,type:"button",onClick:t[33]||(t[33]=e=>H.$clicks("redo")),class:"op-icon fa fa-mavon-repeat","aria-hidden":"true",title:n.d_words.tl_redo+" (ctrl+y)"},null,8,L)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.trash?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:24,type:"button",onClick:t[34]||(t[34]=e=>H.$clicks("trash")),class:"op-icon fa fa-mavon-trash-o","aria-hidden":"true",title:n.d_words.tl_trash+" (ctrl+breakspace)"},null,8,q)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.save?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:25,type:"button",onClick:t[35]||(t[35]=e=>H.$clicks("save")),class:"op-icon fa fa-mavon-floppy-o","aria-hidden":"true",title:n.d_words.tl_save+" (ctrl+s)"},null,8,M)):Object(r.createCommentVNode)("v-if",!0),Object(r.renderSlot)(e.$slots,"left-toolbar-after",{},void 0,!0),Object(r.createCommentVNode)(" ๆทปๅŠ image้“พๆŽฅ "),Object(r.createVNode)(r.Transition,{name:"fade"},{default:Object(r.withCtx)(()=>[V.s_img_link_open?(Object(r.openBlock)(),Object(r.createElementBlock)("div",z,[Object(r.createElementVNode)("div",$,[Object(r.createElementVNode)("i",{onClick:t[36]||(t[36]=Object(r.withModifiers)(e=>V.s_img_link_open=!1,["stop","prevent"])),class:"fa fa-mavon-times","aria-hidden":"true"}),Object(r.createElementVNode)("h3",B,Object(r.toDisplayString)("link"==V.link_type?n.d_words.tl_popup_link_title:n.d_words.tl_popup_img_link_title),1),Object(r.createElementVNode)("div",F,[Object(r.withDirectives)(Object(r.createElementVNode)("input",{ref:"linkTextInput",type:"text","onUpdate:modelValue":t[37]||(t[37]=e=>V.link_text=e),placeholder:"link"==V.link_type?n.d_words.tl_popup_link_text:n.d_words.tl_popup_img_link_text},null,8,I),[[r.vModelText,V.link_text]])]),Object(r.createElementVNode)("div",N,[Object(r.withDirectives)(Object(r.createElementVNode)("input",{type:"text","onUpdate:modelValue":t[38]||(t[38]=e=>V.link_addr=e),placeholder:"link"==V.link_type?n.d_words.tl_popup_link_addr:n.d_words.tl_popup_img_link_addr},null,8,R),[[r.vModelText,V.link_addr]])]),Object(r.createElementVNode)("div",{class:"op-btn cancel",onClick:t[39]||(t[39]=Object(r.withModifiers)(e=>V.s_img_link_open=!1,["stop"]))},Object(r.toDisplayString)(n.d_words.tl_popup_link_cancel),1),Object(r.createElementVNode)("div",{class:"op-btn sure",onClick:t[40]||(t[40]=Object(r.withModifiers)(e=>H.$imgLinkAdd(),["stop"]))},Object(r.toDisplayString)(n.d_words.tl_popup_link_sure),1)])])):Object(r.createCommentVNode)("v-if",!0)]),_:1})])}},function(e,t,n){"use strict";n.d(t,"a",(function(){return m}));var r=n(0);const o={class:"v-right-item"},i=["title"],a=["title"],s=["title"],l=["title"],c=["title"],u=["title"],p=["title"],d=["title"],h={key:8,class:"op-icon-divider"},f=["title"],_=["title"],g=["title"];function m(e,t,n,m,b,v){return Object(r.openBlock)(),Object(r.createElementBlock)("div",o,[Object(r.renderSlot)(e.$slots,"right-toolbar-before"),n.toolbars.navigation?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:0,type:"button",onClick:t[0]||(t[0]=e=>v.$clicks("navigation")),class:"op-icon fa fa-mavon-bars","aria-hidden":"true",title:n.d_words.tl_navigation_on+" (F8)"},null,8,i)),[[r.vShow,!n.s_navigation]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.navigation?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:1,type:"button",onClick:t[1]||(t[1]=e=>v.$clicks("navigation")),class:"op-icon fa fa-mavon-bars selected","aria-hidden":"true",title:n.d_words.tl_navigation_off+" (F8)"},null,8,a)),[[r.vShow,n.s_navigation]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.preview?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:2,type:"button",onClick:t[2]||(t[2]=e=>v.$clicks("preview")),class:"op-icon fa fa-mavon-eye-slash selected","aria-hidden":"true",title:n.d_words.tl_edit+" (F9)"},null,8,s)),[[r.vShow,n.s_preview_switch]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.preview?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:3,type:"button",onClick:t[3]||(t[3]=e=>v.$clicks("preview")),class:"op-icon fa fa-mavon-eye","aria-hidden":"true",title:n.d_words.tl_preview+" (F9)"},null,8,l)),[[r.vShow,!n.s_preview_switch]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.fullscreen?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:4,type:"button",onClick:t[4]||(t[4]=e=>v.$clicks("fullscreen")),class:"op-icon fa fa-mavon-arrows-alt",title:n.d_words.tl_fullscreen_on+" (F10)","aria-hidden":"true"},null,8,c)),[[r.vShow,!n.s_fullScreen]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.fullscreen?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:5,type:"button",onClick:t[5]||(t[5]=e=>v.$clicks("fullscreen")),class:"op-icon fa fa-mavon-compress selected",title:n.d_words.tl_fullscreen_off+" (F10)","aria-hidden":"true"},null,8,u)),[[r.vShow,n.s_fullScreen]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.readmodel?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:6,type:"button",onClick:t[6]||(t[6]=e=>v.$clicks("read")),class:"op-icon fa fa-mavon-window-maximize","aria-hidden":"true",title:n.d_words.tl_read+" (F11)"},null,8,p)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.subfield?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:7,type:"button",onClick:t[7]||(t[7]=e=>v.$clicks("subfield")),class:Object(r.normalizeClass)(["op-icon fa fa-mavon-columns",{selected:n.s_subfield}]),"aria-hidden":"true",title:(n.s_subfield?n.d_words.tl_single_column:n.d_words.tl_double_column)+" (F12)"},null,10,d)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.help&&n.toolbars.htmlcode&&n.toolbars.readmodel&&n.toolbars.fullscreen&&n.toolbars.subfield&&n.toolbars.navigation?(Object(r.openBlock)(),Object(r.createElementBlock)("span",h)):Object(r.createCommentVNode)("v-if",!0),n.toolbars.htmlcode?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:9,type:"button",onClick:t[8]||(t[8]=e=>v.$clicks("html")),class:"op-icon fa fa-mavon-code",title:n.d_words.tl_html_on,"aria-hidden":"true"},null,8,f)),[[r.vShow,!n.s_html_code]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.htmlcode?Object(r.withDirectives)((Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:10,type:"button",onClick:t[9]||(t[9]=e=>v.$clicks("html")),class:"op-icon fa fa-mavon-code selected",title:n.d_words.tl_html_off,"aria-hidden":"true"},null,8,_)),[[r.vShow,n.s_html_code]]):Object(r.createCommentVNode)("v-if",!0),n.toolbars.help?(Object(r.openBlock)(),Object(r.createElementBlock)("button",{key:11,type:"button",onClick:t[10]||(t[10]=e=>v.$clicks("help")),class:"op-icon fa fa-mavon-question-circle",style:{"font-size":"17px",padding:"5px 6px 5px 3px"},title:n.d_words.tl_help,"aria-hidden":"true"},null,8,g)):Object(r.createCommentVNode)("v-if",!0),Object(r.renderSlot)(e.$slots,"right-toolbar-after")])}},function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));var r=n(0);const o=["autofocus","placeholder"];function i(e,t,n,i,a,s){return Object(r.openBlock)(),Object(r.createElementBlock)("div",{style:Object(r.normalizeStyle)({fontSize:n.fontSize,lineHeight:n.lineHeight,height:n.fullHeight?"100%":"auto"}),class:"auto-textarea-wrapper"},[Object(r.createElementVNode)("pre",{style:Object(r.normalizeStyle)({fontSize:n.fontSize,lineHeight:n.lineHeight,minHeight:n.fullHeight?"100%":"auto"}),class:"auto-textarea-block"},[t[2]||(t[2]=Object(r.createElementVNode)("br",null,null,-1)),Object(r.createTextVNode)(Object(r.toDisplayString)(a.temp_value)+" ",1)],4),Object(r.withDirectives)(Object(r.createElementVNode)("textarea",{ref:"vTextarea",autofocus:a.s_autofocus,onKeyup:t[0]||(t[0]=(...e)=>s.change&&s.change(...e)),spellcheck:"false",placeholder:n.placeholder,"onUpdate:modelValue":t[1]||(t[1]=e=>a.temp_value=e),style:Object(r.normalizeStyle)({fontSize:n.fontSize,lineHeight:n.lineHeight}),class:Object(r.normalizeClass)([{"no-border":!n.border,"no-resize":!n.resize},"auto-textarea-input"])}," ",46,o),[[r.vModelText,a.temp_value]])],4)}},function(e,t,n){"use strict";var r=n(82).default,o={markdownIt:r.mixins[0].data().markdownIt,mavonEditor:r,LeftToolbar:n(72).default,RightToolbar:n(74).default,install:function(e){e.component("mavon-editor",r)}};e.exports=o},function(e,t,n){"use strict";n.r(t);var r=n(77),o=n(21);for(var i in o)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return o[e]}))}(i);n(233),n(235);var a=n(3);const s=n.n(a)()(o.default,[["render",r.a],["__scopeId","data-v-152346ef"]]);t.default=s},function(e,t,n){e.exports={default:n(84),__esModule:!0}},function(e,t,n){n(85),n(97),e.exports=n(35).f("iterator")},function(e,t,n){"use strict";var r=n(86)(!0);n(45)(String,"String",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})}))},function(e,t,n){var r=n(26),o=n(27);e.exports=function(e){return function(t,n){var i,a,s=String(o(t)),l=r(n),c=s.length;return l<0||l>=c?e?"":void 0:(i=s.charCodeAt(l))<55296||i>56319||l+1===c||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):i:e?s.slice(l,l+2):a-56320+(i-55296<<10)+65536}}},function(e,t,n){var r=n(88);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){"use strict";var r=n(50),o=n(16),i=n(34),a={};n(5)(a,n(9)("iterator"),(function(){return this})),e.exports=function(e,t,n){e.prototype=r(a,{next:o(1,n)}),i(e,t+" Iterator")}},function(e,t,n){var r=n(6),o=n(14),i=n(30);e.exports=n(7)?Object.defineProperties:function(e,t){o(e);for(var n,a=i(t),s=a.length,l=0;s>l;)r.f(e,n=a[l++],t[n]);return e}},function(e,t,n){var r=n(52);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},function(e,t,n){var r=n(8),o=n(93),i=n(94);e.exports=function(e){return function(t,n,a){var s,l=r(t),c=o(l.length),u=i(a,c);if(e&&n!=n){for(;c>u;)if((s=l[u++])!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},function(e,t,n){var r=n(26),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},function(e,t,n){var r=n(26),o=Math.max,i=Math.min;e.exports=function(e,t){return(e=r(e))<0?o(e+t,0):i(e,t)}},function(e,t,n){var r=n(2).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(4),o=n(53),i=n(31)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),r(e,i)?e[i]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,n){n(98);for(var r=n(2),o=n(5),i=n(29),a=n(9)("toStringTag"),s="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),l=0;l<s.length;l++){var c=s[l],u=r[c],p=u&&u.prototype;p&&!p[a]&&o(p,a,c),i[c]=i.Array}},function(e,t,n){"use strict";var r=n(99),o=n(100),i=n(29),a=n(8);e.exports=n(45)(Array,"Array",(function(e,t){this._t=a(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){e.exports={default:n(102),__esModule:!0}},function(e,t,n){n(103),n(109),n(110),n(111),e.exports=n(13).Symbol},function(e,t,n){"use strict";var r=n(2),o=n(4),i=n(7),a=n(46),s=n(49),l=n(104).KEY,c=n(15),u=n(32),p=n(34),d=n(17),h=n(9),f=n(35),_=n(36),g=n(105),m=n(106),b=n(14),v=n(10),k=n(53),w=n(8),y=n(28),x=n(16),C=n(50),j=n(107),A=n(108),E=n(54),O=n(6),S=n(30),T=A.f,D=O.f,L=j.f,q=r.Symbol,M=r.JSON,z=M&&M.stringify,$=h("_hidden"),B=h("toPrimitive"),F={}.propertyIsEnumerable,I=u("symbol-registry"),N=u("symbols"),R=u("op-symbols"),P=Object.prototype,V="function"==typeof q&&!!E.f,H=r.QObject,U=!H||!H.prototype||!H.prototype.findChild,W=i&&c((function(){return 7!=C(D({},"a",{get:function(){return D(this,"a",{value:7}).a}})).a}))?function(e,t,n){var r=T(P,t);r&&delete P[t],D(e,t,n),r&&e!==P&&D(P,t,r)}:D,G=function(e){var t=N[e]=C(q.prototype);return t._k=e,t},K=V&&"symbol"==typeof q.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof q},Z=function(e,t,n){return e===P&&Z(R,t,n),b(e),t=y(t,!0),b(n),o(N,t)?(n.enumerable?(o(e,$)&&e[$][t]&&(e[$][t]=!1),n=C(n,{enumerable:x(0,!1)})):(o(e,$)||D(e,$,x(1,{})),e[$][t]=!0),W(e,t,n)):D(e,t,n)},Y=function(e,t){b(e);for(var n,r=g(t=w(t)),o=0,i=r.length;i>o;)Z(e,n=r[o++],t[n]);return e},X=function(e){var t=F.call(this,e=y(e,!0));return!(this===P&&o(N,e)&&!o(R,e))&&(!(t||!o(this,e)||!o(N,e)||o(this,$)&&this[$][e])||t)},J=function(e,t){if(e=w(e),t=y(t,!0),e!==P||!o(N,t)||o(R,t)){var n=T(e,t);return!n||!o(N,t)||o(e,$)&&e[$][t]||(n.enumerable=!0),n}},Q=function(e){for(var t,n=L(w(e)),r=[],i=0;n.length>i;)o(N,t=n[i++])||t==$||t==l||r.push(t);return r},ee=function(e){for(var t,n=e===P,r=L(n?R:w(e)),i=[],a=0;r.length>a;)!o(N,t=r[a++])||n&&!o(P,t)||i.push(N[t]);return i};V||(s((q=function(){if(this instanceof q)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===P&&t.call(R,n),o(this,$)&&o(this[$],e)&&(this[$][e]=!1),W(this,e,x(1,n))};return i&&U&&W(P,e,{configurable:!0,set:t}),G(e)}).prototype,"toString",(function(){return this._k})),A.f=J,O.f=Z,n(55).f=j.f=Q,n(37).f=X,E.f=ee,i&&!n(12)&&s(P,"propertyIsEnumerable",X,!0),f.f=function(e){return G(h(e))}),a(a.G+a.W+a.F*!V,{Symbol:q});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ne=0;te.length>ne;)h(te[ne++]);for(var re=S(h.store),oe=0;re.length>oe;)_(re[oe++]);a(a.S+a.F*!V,"Symbol",{for:function(e){return o(I,e+="")?I[e]:I[e]=q(e)},keyFor:function(e){if(!K(e))throw TypeError(e+" is not a symbol!");for(var t in I)if(I[t]===e)return t},useSetter:function(){U=!0},useSimple:function(){U=!1}}),a(a.S+a.F*!V,"Object",{create:function(e,t){return void 0===t?C(e):Y(C(e),t)},defineProperty:Z,defineProperties:Y,getOwnPropertyDescriptor:J,getOwnPropertyNames:Q,getOwnPropertySymbols:ee});var ie=c((function(){E.f(1)}));a(a.S+a.F*ie,"Object",{getOwnPropertySymbols:function(e){return E.f(k(e))}}),M&&a(a.S+a.F*(!V||c((function(){var e=q();return"[null]"!=z([e])||"{}"!=z({a:e})||"{}"!=z(Object(e))}))),"JSON",{stringify:function(e){for(var t,n,r=[e],o=1;arguments.length>o;)r.push(arguments[o++]);if(n=t=r[1],(v(t)||void 0!==e)&&!K(e))return m(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!K(t))return t}),r[1]=t,z.apply(M,r)}}),q.prototype[B]||n(5)(q.prototype,B,q.prototype.valueOf),p(q,"Symbol"),p(Math,"Math",!0),p(r.JSON,"JSON",!0)},function(e,t,n){var r=n(17)("meta"),o=n(10),i=n(4),a=n(6).f,s=0,l=Object.isExtensible||function(){return!0},c=!n(15)((function(){return l(Object.preventExtensions({}))})),u=function(e){a(e,r,{value:{i:"O"+ ++s,w:{}}})},p=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,r)){if(!l(e))return"F";if(!t)return"E";u(e)}return e[r].i},getWeak:function(e,t){if(!i(e,r)){if(!l(e))return!0;if(!t)return!1;u(e)}return e[r].w},onFreeze:function(e){return c&&p.NEED&&l(e)&&!i(e,r)&&u(e),e}}},function(e,t,n){var r=n(30),o=n(54),i=n(37);e.exports=function(e){var t=r(e),n=o.f;if(n)for(var a,s=n(e),l=i.f,c=0;s.length>c;)l.call(e,a=s[c++])&&t.push(a);return t}},function(e,t,n){var r=n(52);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(8),o=n(55).f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return a&&"[object Window]"==i.call(e)?function(e){try{return o(e)}catch(e){return a.slice()}}(e):o(r(e))}},function(e,t,n){var r=n(37),o=n(16),i=n(8),a=n(28),s=n(4),l=n(47),c=Object.getOwnPropertyDescriptor;t.f=n(7)?c:function(e,t){if(e=i(e),t=a(t,!0),l)try{return c(e,t)}catch(e){}if(s(e,t))return o(!r.f.call(e,t),e[t])}},function(e,t){},function(e,t,n){n(36)("asyncIterator")},function(e,t,n){n(36)("observable")},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=119,o=120,i=121,a=122,s=123,l=66,c=73,u=72,p=85,d=68,h=77,f=81,_=79,g=76,m=83,b=90,v=89,k=67,w=84,y=82,x=8,C=9,j=13,A=97,E=98,O=99,S=100,T=101,D=102,L=49,q=50,M=51,z=52,$=53,B=54;t.keydownListen=function(e){e.shortCut&&e.$el.addEventListener("keydown",(function(t){if(t.ctrlKey||t.metaKey||t.altKey||t.shiftKey)if(!t.ctrlKey&&!t.metaKey||t.altKey||t.shiftKey){if((t.ctrlKey||t.metaKey)&&t.altKey&&!t.shiftKey)switch(t.keyCode){case m:t.preventDefault(),e.toolbar_left_click("superscript");break;case p:t.preventDefault(),e.toolbar_left_click("ul");break;case g:t.preventDefault(),e.toolbar_left_click("imagelink");break;case k:t.preventDefault(),e.toolbar_left_click("code");break;case w:t.preventDefault(),e.toolbar_left_click("table")}else if((t.ctrlKey||t.metaKey)&&t.shiftKey&&!t.altKey)switch(t.keyCode){case m:t.preventDefault(),e.toolbar_left_click("subscript");break;case d:t.preventDefault(),e.toolbar_left_click("strikethrough");break;case g:t.preventDefault(),e.toolbar_left_click("alignleft");break;case y:t.preventDefault(),e.toolbar_left_click("alignright");break;case k:t.preventDefault(),e.toolbar_left_click("aligncenter")}else if(!t.ctrlKey&&!t.metaKey&&t.shiftKey&&!t.altKey)switch(t.keyCode){case C:e.$refs.toolbar_left.s_img_link_open||(t.preventDefault(),e.unInsertTab())}}else switch(t.keyCode){case l:t.preventDefault(),e.toolbar_left_click("bold");break;case c:t.preventDefault(),e.toolbar_left_click("italic");break;case u:t.preventDefault(),e.toolbar_left_click("header");break;case p:t.preventDefault(),e.toolbar_left_click("underline");break;case d:t.preventDefault(),e.toolbar_left_click("removeLine");break;case h:t.preventDefault(),e.toolbar_left_click("mark");break;case f:t.preventDefault(),e.toolbar_left_click("quote");break;case _:t.preventDefault(),e.toolbar_left_click("ol");break;case g:t.preventDefault(),e.toolbar_left_click("link");break;case m:t.preventDefault(),e.toolbar_left_click("save");break;case b:t.preventDefault(),e.toolbar_left_click("undo");break;case v:t.preventDefault(),e.toolbar_left_click("redo");break;case x:t.preventDefault(),e.toolbar_left_click("trash");break;case A:t.preventDefault(),e.toolbar_left_click("header1");break;case E:t.preventDefault(),e.toolbar_left_click("header2");break;case O:t.preventDefault(),e.toolbar_left_click("header3");break;case S:t.preventDefault(),e.toolbar_left_click("header4");break;case T:t.preventDefault(),e.toolbar_left_click("header5");break;case D:t.preventDefault(),e.toolbar_left_click("header6");break;case L:t.preventDefault(),e.toolbar_left_click("header1");break;case q:t.preventDefault(),e.toolbar_left_click("header2");break;case M:t.preventDefault(),e.toolbar_left_click("header3");break;case z:t.preventDefault(),e.toolbar_left_click("header4");break;case $:t.preventDefault(),e.toolbar_left_click("header5");break;case B:t.preventDefault(),e.toolbar_left_click("header6")}else switch(t.keyCode){case r:e.toolbars.navigation&&(t.preventDefault(),e.toolbar_right_click("navigation"));break;case o:e.toolbars.preview&&(t.preventDefault(),e.toolbar_right_click("preview"));break;case i:e.toolbars.fullscreen&&(t.preventDefault(),e.toolbar_right_click("fullscreen"));break;case a:e.toolbars.readmodel&&(t.preventDefault(),e.toolbar_right_click("read"));break;case s:e.toolbars.subfield&&(t.preventDefault(),e.toolbar_right_click("subfield"));break;case C:e.$refs.toolbar_left.s_img_link_open||(t.preventDefault(),e.insertTab());break;case j:e.$refs.toolbar_left.s_img_link_open?(t.preventDefault(),e.$refs.toolbar_left.$imgLinkAdd()):e.insertEnter(t)}}))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={agate:1,androidstudio:1,"arduino-light":1,arta:1,ascetic:1,"atom-one-dark":1,"atom-one-light":1,"brown-paper":1,"codepen-embed":1,"color-brewer":1,dark:1,default:1,docco:1,far:1,foundation:1,github:1,googlecode:1,grayscale:1,hybrid:1,idea:1,"ir-black":1,magula:1,"mono-blue":1,"monokai-sublime":1,monokai:1,obsidian:1,"paraiso-dark":1,"paraiso-light":1,pojoaque:1,purebasic:1,rainbow:1,routeros:1,"school-book":1,sunburst:1,"tomorrow-night-blue":1,"tomorrow-night-bright":1,vs:1,vs2015:1,xcode:1,xt256:1,"a11y-dark":1,"a11y-light":1,"an-old-hope":1,"atom-one-dark-reasonable":1,"brown-pap":1,devibeans:1,"github-dark":1,"github-dark-dimmed":1,gml:1,"gradient-dark":1,"gradient-light":1,"isbl-editor-dark":1,"isbl-editor-light":1,"kimbie-dark":1,"kimbie-light":1,lightfair:1,lioshi:1,"night-owl":1,"nnfx-dark":1,"nnfx-light":1,nord:1,pojo:1,"qtcreator-dark":1,"qtcreator-light":1,"shades-of-purple":1,srcery:1,"stackoverflow-dark":1,"stackoverflow-light":1}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o=n(25),i=(r=o)&&r.__esModule?r:{default:r};t.p_ObjectCopy_DEEP=function e(t,n){for(var r in n){var o=(0,i.default)(n[r]);!t[r]||"Object"!==o&&"object"!==o?t[r]=n[r]:t[r]=e(t[r],n[r])}return t},t.p_urlParse=function(){var e=window.location.search,t={},n=e.match(/[?&][^?&]+=[^?&]+/g);n&&n.forEach((function(e){var n=e.substring(1).split("="),r=decodeURIComponent(n[0]),o=decodeURIComponent(n[1]);t[r]=o}));return t},t.stopEvent=function(e){if(!e)return;e.preventDefault&&e.preventDefault();e.stopPropagation&&e.stopPropagation()}},function(e,t,n){"use strict";function r(e){e.d_history_index>0&&e.d_history_index--,e.$nextTick((function(){var t=e.textarea_selectionEnds[e.d_history_index];e.getTextareaDom().selectionStart=t,e.getTextareaDom().selectionEnd=t})),e.getTextareaDom().focus()}function o(e){e.d_history_index<e.d_history.length-1&&e.d_history_index++,e.$nextTick((function(){var t=e.textarea_selectionEnds[e.d_history_index];e.getTextareaDom().selectionStart=t,e.getTextareaDom().selectionEnd=t})),e.getTextareaDom().focus()}function i(e){e.d_value="",e.getTextareaDom().focus()}function a(e){e.save(e.d_value,e.d_render)}function s(e){e.insertOl()}function l(e){e.insertUl()}function c(e){e.removeLine()}function u(e){e.insertCodeBlock()}Object.defineProperty(t,"__esModule",{value:!0});t.toolbar_left_addlink=function(e,t,n,r){var o={prefix:"link"===e?"["+t+"](":"!["+t+"](",subfix:")",str:n};r.insertText(r.getTextareaDom(),o)},t.toolbar_left_click=function(e,t){var n={bold:{prefix:"**",subfix:"**",str:t.d_words.tl_bold},italic:{prefix:"*",subfix:"*",str:t.d_words.tl_italic},header:{prefix:"# ",subfix:"",str:t.d_words.tl_header},header1:{prefix:"# ",subfix:"",str:t.d_words.tl_header_one},header2:{prefix:"## ",subfix:"",str:t.d_words.tl_header_two},header3:{prefix:"### ",subfix:"",str:t.d_words.tl_header_three},header4:{prefix:"#### ",subfix:"",str:t.d_words.tl_header_four},header5:{prefix:"##### ",subfix:"",str:t.d_words.tl_header_five},header6:{prefix:"###### ",subfix:"",str:t.d_words.tl_header_six},underline:{prefix:"++",subfix:"++",str:t.d_words.tl_underline},strikethrough:{prefix:"~~",subfix:"~~",str:t.d_words.tl_strikethrough},mark:{prefix:"==",subfix:"==",str:t.d_words.tl_mark},superscript:{prefix:"^",subfix:"^",str:t.d_words.tl_superscript},subscript:{prefix:"~",subfix:"~",str:t.d_words.tl_subscript},quote:{prefix:"> ",subfix:"",str:t.d_words.tl_quote},link:{prefix:"[](",subfix:")",str:t.d_words.tl_link},imagelink:{prefix:"![](",subfix:")",str:t.d_words.tl_image},table:{prefix:"",subfix:"",str:"|column1|column2|column3|\n|-|-|-|\n|content1|content2|content3|\n"},aligncenter:{prefix:"::: hljs-center\n\n",subfix:"\n\n:::\n",str:t.d_words.tl_aligncenter},alignright:{prefix:"::: hljs-right\n\n",subfix:"\n\n:::\n",str:t.d_words.tl_alignright},alignleft:{prefix:"::: hljs-left\n\n",subfix:"\n\n:::\n",str:t.d_words.tl_alignleft}};n.hasOwnProperty(e)&&t.insertText(t.getTextareaDom(),n[e]);var p={undo:r,redo:o,trash:i,save:a,ol:s,ul:l,removeLine:c,code:u};p.hasOwnProperty(e)&&p[e](t)}},function(e,t,n){"use strict";function r(e){e.s_html_code=!e.s_html_code,e.htmlcode&&e.htmlcode(e.s_html_code,e.d_value)}function o(e){e.s_help=!e.s_help,e.helptoggle&&e.helptoggle(e.s_help,e.d_value)}function i(e){var t=e.$refs.vReadModel;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullscreen?t.webkitRequestFullscreen():t.msRequestFullscreen&&t.msRequestFullscreen()}function a(e){e.s_preview_switch=!e.s_preview_switch,e.previewtoggle&&e.previewtoggle(e.s_preview_switch,e.d_value)}function s(e){e.s_fullScreen=!e.s_fullScreen,e.fullscreen&&e.fullscreen(e.s_fullScreen,e.d_value)}function l(e){e.s_subfield=!e.s_subfield,e.s_preview_switch=e.s_subfield,e.previewtoggle&&e.previewtoggle(e.s_preview_switch,e.d_value),e.subfieldtoggle&&e.subfieldtoggle(e.s_subfield,e.d_value)}function c(e){e.s_navigation=!e.s_navigation,e.s_navigation&&(e.s_preview_switch=!0),e.navigationtoggle&&e.navigationtoggle(e.s_navigation,e.d_value),e.s_navigation&&e.getNavigation(e,!1)}Object.defineProperty(t,"__esModule",{value:!0});t.toolbar_right_click=function(e,t){var n={help:o,html:r,read:i,preview:a,fullscreen:s,navigation:c,subfield:l};n.hasOwnProperty(e)&&n[e](t)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CONFIG=void 0;var r=v(n(118)),o=v(n(119)),i=v(n(120)),a=v(n(121)),s=v(n(122)),l=v(n(123)),c=v(n(124)),u=v(n(125)),p=v(n(126)),d=v(n(127)),h=v(n(128)),f=v(n(129)),_=v(n(130)),g=v(n(131)),m=v(n(132)),b=v(n(133));function v(e){return e&&e.__esModule?e:{default:e}}t.CONFIG={"help_zh-CN":r.default,"help_zh-TW":o.default,"help_pt-BR":s.default,help_en:i.default,help_fr:a.default,help_ru:l.default,help_de:c.default,help_ja:u.default,"words_zh-CN":p.default,"words_zh-TW":d.default,"words_pt-BR":_.default,words_en:h.default,words_fr:f.default,words_ru:g.default,words_de:m.default,words_ja:b.default,langList:["en","zh-CN","zh-TW","fr","pt-BR","ru","de","ja"],toolbars:{bold:!0,italic:!0,header:!0,underline:!0,strikethrough:!0,mark:!0,superscript:!0,subscript:!0,quote:!0,ol:!0,ul:!0,link:!0,imagelink:!0,code:!0,table:!0,undo:!0,redo:!0,trash:!0,save:!0,alignleft:!0,aligncenter:!0,alignright:!0,navigation:!0,subfield:!0,fullscreen:!0,readmodel:!0,htmlcode:!0,help:!0,preview:!0}}},function(e,t){e.exports='@[toc](็›ฎๅฝ•)\n\nMarkdown ่ฏญๆณ•็ฎ€ไป‹\n=============\n> [่ฏญๆณ•่ฏฆ่งฃ](http://commonmark.org/help/)\n\n## **็›ฎๅฝ•**\n```\n@[toc](็›ฎๅฝ•)\n```\n\n## **็ฒ—ไฝ“**\n```\n**็ฒ—ไฝ“**\n__็ฒ—ไฝ“__\n```\n## *ๆ–œไฝ“*\n```\n*ๆ–œไฝ“*\n_ๆ–œไฝ“_\n```\n## ๆ ‡้ข˜\n```\n# ไธ€็บงๆ ‡้ข˜ #\nไธ€็บงๆ ‡้ข˜\n====\n## ไบŒ็บงๆ ‡้ข˜ ##\nไบŒ็บงๆ ‡้ข˜\n----\n### ไธ‰็บงๆ ‡้ข˜ ###\n#### ๅ››็บงๆ ‡้ข˜ ####\n##### ไบ”็บงๆ ‡้ข˜ #####\n###### ๅ…ญ็บงๆ ‡้ข˜ ######\n```\n## ๅˆ†ๅ‰ฒ็บฟ\n```\n***\n---\n```\n****\n## ^ไธŠ^่ง’~ไธ‹~ๆ ‡\n```\nไธŠ่ง’ๆ ‡ x^2^\nไธ‹่ง’ๆ ‡ H~2~0\n```\n## ++ไธ‹ๅˆ’็บฟ++ ~~ไธญๅˆ’็บฟ~~\n```\n++ไธ‹ๅˆ’็บฟ++\n~~ไธญๅˆ’็บฟ~~\n```\n## ==ๆ ‡่ฎฐ==\n```\n==ๆ ‡่ฎฐ==\n```\n## ๆฎต่ฝๅผ•็”จ\n```\n> ไธ€็บง\n>> ไบŒ็บง\n>>> ไธ‰็บง\n...\n```\n\n## ๅˆ—่กจ\n```\nๆœ‰ๅบๅˆ—่กจ\n1.\n2.\n3.\n...\nๆ— ๅบๅˆ—่กจ\n-\n-\n...\n```\n\n## ไปปๅŠกๅˆ—่กจ\n\n- [x] ๅทฒๅฎŒๆˆไปปๅŠก\n- [ ] ๆœชๅฎŒๆˆไปปๅŠก\n\n```\n- [x] ๅทฒๅฎŒๆˆไปปๅŠก\n- [ ] ๆœชๅฎŒๆˆไปปๅŠก\n```\n\n## ้“พๆŽฅ\n```\n[้“พๆŽฅ](www.baidu.com)\n![ๅ›พ็‰‡ๆ่ฟฐ](http://www.image.com)\n```\n## ไปฃ็ ๆฎต่ฝ\n\\``` type\n\nไปฃ็ ๆฎต่ฝ\n\n\\```\n\n\\` ไปฃ็ ๅ— \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n## ่กจๆ ผ(table)\n```\n| ๆ ‡้ข˜1 | ๆ ‡้ข˜2 | ๆ ‡้ข˜3 |\n| :-- | :--: | ----: |\n| ๅทฆๅฏน้ฝ | ๅฑ…ไธญ | ๅณๅฏน้ฝ |\n| ---------------------- | ------------- | ----------------- |\n```\n| ๆ ‡้ข˜1 | ๆ ‡้ข˜2 | ๆ ‡้ข˜3 |\n| :-- | :--: | ----: |\n| ๅทฆๅฏน้ฝ | ๅฑ…ไธญ | ๅณๅฏน้ฝ |\n| ---------------------- | ------------- | ----------------- |\n## ่„šๆณจ(footnote)\n```\nhello[^hello]\n```\n\n่งๅบ•้ƒจ่„šๆณจ[^hello]\n\n[^hello]: ไธ€ไธชๆณจ่„š\n\n## ่กจๆƒ…(emoji)\n[ๅ‚่€ƒ็ฝ‘็ซ™: https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ๅ…ฌๅผ\n\nๆˆ‘ไปฌๅฏไปฅๆธฒๆŸ“ๅ…ฌๅผไพ‹ๅฆ‚๏ผš$x_i + y_i = z_i$ๅ’Œ$\\sum_{i=1}^n a_i=0$\nๆˆ‘ไปฌไนŸๅฏไปฅๅ•่กŒๆธฒๆŸ“\n$$\\sum_{i=1}^n a_i=0$$\nๅ…ทไฝ“ๅฏๅ‚็…ง[katexๆ–‡ๆกฃ](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ๅ’Œ[katexๆ”ฏๆŒ็š„ๅ‡ฝๆ•ฐ](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ไปฅๅŠ[latexๆ–‡ๆกฃ](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## ๅธƒๅฑ€\n\n::: hljs-left\n`::: hljs-left`\n`ๅฑ…ๅทฆ`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`ๅฑ…ไธญ`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`ๅฑ…ๅณ`\n`:::`\n:::\n\n## ๅฎšไน‰\n\nๆœฏ่ฏญไธ€\n\n: ๅฎšไน‰ไธ€\n\nๅŒ…ๅซๆœ‰*่กŒๅ†…ๆ ‡่ฎฐ*็š„ๆœฏ่ฏญไบŒ\n\n: ๅฎšไน‰ไบŒ\n\n {ไธ€ไบ›ๅฎšไน‰ไบŒ็š„ๆ–‡ๅญ—ๆˆ–ไปฃ็ }\n\n ๅฎšไน‰ไบŒ็š„็ฌฌไธ‰ๆฎต\n\n```\nๆœฏ่ฏญไธ€\n\n: ๅฎšไน‰ไธ€\n\nๅŒ…ๅซๆœ‰*่กŒๅ†…ๆ ‡่ฎฐ*็š„ๆœฏ่ฏญไบŒ\n\n: ๅฎšไน‰ไบŒ\n\n {ไธ€ไบ›ๅฎšไน‰ไบŒ็š„ๆ–‡ๅญ—ๆˆ–ไปฃ็ }\n\n ๅฎšไน‰ไบŒ็š„็ฌฌไธ‰ๆฎต\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nHTML ่ง„่Œƒ็”ฑ W3C ็ปดๆŠค\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nHTML ่ง„่Œƒ็”ฑ W3C ็ปดๆŠค\n```\n\n'},function(e,t){e.exports='@[toc](็›ฎ้Œ„)\n\nMarkdown ่ชžๆณ•็ฐกไป‹\n=============\n> [่ชžๆณ•่ฉณ่งฃ](http://commonmark.org/help/)\n\n## **็ฒ—้ซ”**\n```\n**็ฒ—้ซ”**\n__็ฒ—้ซ”__\n```\n## *ๆ–œ้ซ”*\n```\n*ๆ–œ้ซ”*\n_ๆ–œ้ซ”_\n```\n## ๆจ™้กŒ\n```\n# ไธ€็ดšๆจ™้กŒ #\nไธ€็ดšๆจ™้กŒ\n====\n## ไบŒ็ดšๆจ™้กŒ ##\nไบŒ็ดšๆจ™้กŒ\n----\n### ไธ‰็ดšๆจ™้กŒ ###\n#### ๅ››็ดšๆจ™้กŒ ####\n##### ไบ”็ดšๆจ™้กŒ #####\n###### ๅ…ญ็ดšๆจ™้กŒ ######\n```\n## ๅˆ†ๅ‰ฒ็ทš\n```\n***\n---\n```\n****\n## ^ไธŠ^่ง’~ไธ‹~ๆจ™\n```\nไธŠ่ง’ๆจ™ x^2^\nไธ‹่ง’ๆจ™ H~2~0\n```\n## ++ไธ‹ๅŠƒ็ทš++ ~~ไธญๅŠƒ็ทš~~\n```\n++ไธ‹ๅŠƒ็ทš++\n~~ไธญๅŠƒ็ทš~~\n```\n## ==ๆจ™่จ˜==\n```\n==ๆจ™่จ˜==\n```\n## ๆฎต่ฝๅผ•็”จ\n```\n> ไธ€็ดš\n>> ไบŒ็ดš\n>>> ไธ‰็ดš\n...\n```\n\n## ๅˆ—่กจ\n```\nๆœ‰ๅบๅˆ—่กจ\n1.\n2.\n3.\n...\n็„กๅบๅˆ—่กจ\n-\n-\n...\n```\n\n## ไปปๅ‹™ๅˆ—่กจ\n\n- [x] ๅทฒๅฎŒๆˆไปปๅ‹™\n- [ ] ๆœชๅฎŒๆˆไปปๅ‹™\n\n```\n- [x] ๅทฒๅฎŒๆˆไปปๅ‹™\n- [ ] ๆœชๅฎŒๆˆไปปๅ‹™\n```\n\n## ้ˆๆŽฅ\n```\n[้ˆๆŽฅ](www.baidu.com)\n![ๅœ–็‰‡ๆ่ฟฐ](http://www.image.com)\n```\n## ไปฃ็ขผๆฎต่ฝ\n\\``` type\n\nไปฃ็ขผๆฎต่ฝ\n\n\\```\n\n\\` ไปฃ็ขผๅกŠ \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n## ่กจๆ ผ(table)\n```\n| ๆจ™้กŒ1 | ๆจ™้กŒ2 | ๆจ™้กŒ3 |\n| :-- | :--: | ----: |\n| ๅทฆๅฐ้ฝŠ | ๅฑ…ไธญ | ๅณๅฐ้ฝŠ |\n| ---------------------- | ------------- | ----------------- |\n```\n| ๆจ™้กŒ1 | ๆจ™้กŒ2 | ๆจ™้กŒ3 |\n| :-- | :--: | ----: |\n| ๅทฆๅฐ้ฝŠ | ๅฑ…ไธญ | ๅณๅฐ้ฝŠ |\n| ---------------------- | ------------- | ----------------- |\n## ่…ณ่จป(footnote)\n```\nhello[^hello]\n```\n\n่ฆ‹ๅบ•้ƒจ่…ณ่จป[^hello]\n\n[^hello]: ไธ€ๅ€‹่จป่…ณ\n\n## ่กจๆƒ…(emoji)\n[ๅƒ่€ƒ็ถฒ็ซ™: https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ๅ…ฌๅผ\n\nๆˆ‘ๅ€‘ๅฏไปฅๆธฒๆŸ“ๅ…ฌๅผไพ‹ๅฆ‚๏ผš$x_i + y_i = z_i$ๅ’Œ$\\sum_{i=1}^n a_i=0$\nๆˆ‘ๅ€‘ไนŸๅฏไปฅๅ–ฎ่กŒๆธฒๆŸ“\n$$\\sum_{i=1}^n a_i=0$$\nๅ…ท้ซ”ๅฏๅƒ็…ง[katexๆ–‡ๆช”](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ๅ’Œ[katexๆ”ฏๆŒ็š„ๅ‡ฝๆ•ธ](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ไปฅๅŠ[latexๆ–‡ๆช”](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## ๅธƒๅฑ€\n\n::: hljs-left\n`::: hljs-left`\n`ๅฑ…ๅทฆ`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`ๅฑ…ไธญ`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`ๅฑ…ๅณ`\n`:::`\n:::\n\n## ๅฎš็พฉ\n\n่ก“่ชžไธ€\n\n: ๅฎš็พฉไธ€\n\nๅŒ…ๅซๆœ‰*่กŒๅ…งๆจ™่จ˜*็š„่ก“่ชžไบŒ\n\n: ๅฎš็พฉไบŒ\n\n {ไธ€ไบ›ๅฎš็พฉไบŒ็š„ๆ–‡ๅญ—ๆˆ–ไปฃ็ขผ}\n\n ๅฎš็พฉไบŒ็š„็ฌฌไธ‰ๆฎต\n\n```\n่ก“่ชžไธ€\n\n: ๅฎš็พฉไธ€\n\nๅŒ…ๅซๆœ‰*่กŒๅ…งๆจ™่จ˜*็š„่ก“่ชžไบŒ\n\n: ๅฎš็พฉไบŒ\n\n {ไธ€ไบ›ๅฎš็พฉไบŒ็š„ๆ–‡ๅญ—ๆˆ–ไปฃ็ขผ}\n\n ๅฎš็พฉไบŒ็š„็ฌฌไธ‰ๆฎต\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nHTML ่ฆ็ฏ„็”ฑ W3C ็ถญ่ญท\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nHTML ่ฆ็ฏ„็”ฑ W3C ็ถญ่ญท\n```\n\n'},function(e,t){e.exports='@[toc](Catalog)\n\nMarkdown Guide\n===\n> Detailed: [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Bold**\n```\n**bold**\n__bold__\n```\n## *Italic*\n```\n*italic*\n_italic_\n```\n## Header\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Dividing line\n```\n***\n---\n```\n****\n## ^Super^script & ~Sub~script\n```\nsuper x^2^\nsub H~2~0\n```\n## ++Underline++ & ~~Strikethrough~~\n```\n++underline++\n~~strikethrough~~\n```\n## ==Mark==\n```\n==mark==\n```\n## Quote\n\n```\n> quote 1\n>> quote 2\n>>> quote 3\n...\n```\n\n## List\n```\nol\n1.\n2.\n3.\n...\n\nul\n-\n-\n...\n```\n\n## Todo List\n\n- [x] task 1\n- [ ] task 2\n\n```\n- [x] task 1\n- [ ] task 2\n```\n\n## Link\n```\nText Link\n[Text](www.baidu.com)\n\nImage Link\n![Text](http://www.image.com)\n```\n## Code\n\\``` type\n\ncode block\n\n\\```\n\n\\` code \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Table\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n| ---------------------- | ------------- | ----------------- |\n## Footnote\n```\nhello[^hello]\n```\n\nLook at the bottom[^hello]\n\n[^hello]: footnote\n\n## Emojis\nDetailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematics\n\nWe can render formulas for example๏ผš$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$\nWe can also single-line rendering\n$$\\sum_{i=1}^n a_i=0$$\nDetailed: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ๅ’Œ[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ไปฅๅŠ[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`left`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`center`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`right`\n`:::`\n:::\n\n## deflist\n\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n'},function(e,t){e.exports='@[toc](Catalogue)\n\nGuide Markdown\n==============\n> Dรฉtail : [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Bold**\n```\n**bold**\n__bold__\n```\n## *Italic*\n```\n*italic*\n_italic_\n```\n## Header\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Dividing line\n```\n***\n---\n```\n****\n## ^Super^script & ~Sub~script\n```\nsuper x^2^\nsub H~2~0\n```\n## ++Underline++ & ~~Strikethrough~~\n```\n++underline++\n~~strikethrough~~\n```\n## ==Mark==\n```\n==mark==\n```\n## Quote\n\n```\n> quote 1\n>> quote 2\n>>> quote 3\n...\n```\n\n## List\n```\nol\n1.\n2.\n3.\n...\n\nul\n-\n-\n...\n```\n## Link\n\n## Todo List\n\n- [x] ร‰quipe 1\n- [ ] ร‰quipe 2\n\n```\n- [x] ร‰quipe 1\n- [ ] ร‰quipe 2\n```\n\n```\nText Link\n[Text](www.baidu.com)\n\nImage Link\n![Text](http://www.image.com)\n```\n## Code\n\\``` type\n\ncode block\n\n\\```\n\n\\` code \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Table\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n| ---------------------- | ------------- | ----------------- |\n## Footnote\n```\nhello[^hello]\n```\n\nLook at the bottom[^hello]\n\n[^hello]: footnote\n\n## Emojis\nDetailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematics\n\nWe can render formulas for example๏ผš$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$\nWe can also single-line rendering\n$$\\sum_{i=1}^n a_i=0$$\nDetailed: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ๅ’Œ[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ไปฅๅŠ[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`left`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`center`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`right`\n`:::`\n:::\n\n## deflist\n\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n'},function(e,t){e.exports='@[toc](Directory)\n\nGuia Markdown\n===\n> Detalhes: [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Negrito**\n```\n**negrito**\n__negrito__\n```\n## *Itรกlico*\n```\n*itรกlico*\n_itรกlico_\n```\n## Cabeรงalho\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Linha Divisora\n```\n***\n---\n```\n****\n## ^Sobre^scrito & ~Sub~scrito\n```\nsobre x^2^\nsub H~2~0\n```\n## ++Sublinhar++ & ~~Tachar~~\n```\n++sublinhar++\n~~tachar~~\n```\n## ==Marcador==\n```\n==marcador==\n```\n## Citaรงรฃo\n\n```\n> citaรงรฃo 1\n>> citaรงรฃo 2\n>>> citaรงรฃo 3\n...\n```\n\n## Listas\n```\nlista Numerada\n1.\n2.\n3.\n...\n\nlista com marcadores\n-\n-\n...\n```\n\n## Todo Listas\n\n- [x] Tarefa 1\n- [ ] Tarefa 2\n\n```\n- [x] Tarefa 1\n- [ ] Tarefa 2\n```\n\n## Link\n```\nLink Texto\n[Text](www.baidu.com)\n\nLink Imagem\n![Text](http://www.image.com)\n```\n## Cรณdigo\n\\``` tipo\n\nbloco de cรณdigo\n\n\\```\n\n\\` cรณdigo \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Tabela\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| esquerda | centro | direita |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| esquerda | centro | direita |\n| ---------------------- | ------------- | ----------------- |\n## Rodapรฉ\n```\nolรก[^olรก]\n```\n\nOlhe para baixo[^olรก]\n\n[^olรก]: rodapรฉ\n\n## Emojis\nDetalhes: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematics\n\nPodemos mostrar fรณrmulas por exemplo๏ผš$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$\nPodemos tambรฉm mostrar em uma รบnica linha:\n$$\\sum_{i=1}^n a_i=0$$\nDetalhes: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ๅ’Œ[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ไปฅๅŠ[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`esquerda`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`centro`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`direita`\n`:::`\n:::\n\n## Definiรงรตes\n\nTermo 1\n\n: Definiรงรฃo 1\n\nTermo 2 com *markup inline*\n\n: Definiรงรฃo 2\n\n { um pouco de cรณdigo, parte da Definiรงรฃo 2 }\n\n Terceiro parรกgrafo da definiรงรฃo 2.\n\n```\nTermo 1\n\n: Definiรงรฃo 1\n\nTermo 2 com *markup inline*\n\n: Definiรงรฃo 2\n\n { um pouco de cรณdigo, parte da Definiรงรฃo 2 }\n\n Terceiro parรกgrafo da definiรงรฃo 2.\n\n```\n\n## Abreviaรงรตes\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nA especificaรงรฃo HTML\nรฉ mantida pela W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nรฉ mantida pela W3C.\n```\n'},function(e,t){e.exports='@[toc](Catalog) \n \nMarkdown ะฟะพะผะพั‰ัŒ \n=== \n> ะŸะพะดั€ะพะฑะฝะตะต: [http://commonmark.org/help/](http://commonmark.org/help/) \n \n## **ะŸะพะปัƒะถะธั€ะฝั‹ะน** \n``` \n**ะŸะพะปัƒะถะธั€ะฝั‹ะน** \n__ะŸะพะปัƒะถะธั€ะฝั‹ะน__ \n``` \n## *ะšัƒั€ัะธะฒ* \n``` \n*ะšัƒั€ัะธะฒ* \n_ะšัƒั€ัะธะฒ_ \n``` \n## ะ—ะฐะณะพะปะพะฒะพะบ \n``` \n# h1 # \nh1 \n==== \n## h2 ## \nh2 \n---- \n### h3 ### \n#### h4 #### \n##### h5 ##### \n###### h6 ###### \n``` \n## ะ ะฐะทะดะตะปะธั‚ะตะปัŒะฝะฐั ะปะธะฝะธั \n``` \n*** \n--- \n``` \n**** \n## ^ะ’ะตั€ั…ะฝะธะน^ะธะฝะดะตะบั & ~ะะธะถะฝะธะน~ะธะฝะดะตะบั \n``` \nะฒะตั€ั…ะฝะธะน x^2^ \nะฝะธะถะฝะธะน H~2~0 \n``` \n## ++ะŸะพะดั‡ะตั€ะบะฝัƒั‚ั‹ะน++ & ~~ะ—ะฐั‡ะตั€ะบะฝัƒั‚ั‹ะน~~ \n``` \n++ะŸะพะดั‡ะตั€ะบะฝัƒั‚ั‹ะน++ \n~~ะ—ะฐั‡ะตั€ะบะฝัƒั‚ั‹ะน~~ \n``` \n## ==ะžั‚ะผะตั‚ะบะฐ== \n``` \n==ะžั‚ะผะตั‚ะบะฐ== \n``` \n## ะฆะธั‚ะฐั‚ะฐ \n \n``` \n> ะฆะธั‚ะฐั‚ะฐ \n>> ะฆะธั‚ะฐั‚ะฐ 2 \n>>> ะฆะธั‚ะฐั‚ะฐ 3 \n... \n``` \n \n## ะกะฟะธัะพะบ \n``` \nol \n1. \n2. \n3. \n... \n \nul \n- \n- \n... \n``` \n \n## ะกะฟะธัะพะบ ะทะฐะดะฐั‡ \n \n- [x] ะ—ะฐะดะฐั‡ะฐ 1 \n- [ ] ะ—ะฐะดะฐั‡ะฐ 2 \n \n``` \n- [x] ะ—ะฐะดะฐั‡ะฐ 1 \n- [ ] ะ—ะฐะดะฐั‡ะฐ 2 \n``` \n \n## ะกัั‹ะปะบะฐ \n``` \nะกัั‹ะปะบะฐ \n[ะขะตะบัั‚](www.baidu.com) \n \nะกัั‹ะปะบะฐ ะธะทะพะฑั€ะฐะถะตะฝะธั \n![ะขะตะบัั‚](http://www.image.com) \n``` \n## ะšะพะด \n\\``` type \n \ncode block \n \n\\``` \n \n\\` code \\` \n \n```c++ \nint main() \n{ \n printf("hello world!");} \n``` \n`code` \n \n## ะขะฐะฑะปะธั†ะฐ \n``` \n| th1 | th2 | th3 | \n| :-- | :--: | ----: | \n| left | center | right | \n``` \n| th1 | th2 | th3 | \n| :-- | :--: | ----: | \n| left | center | right | \n| ---------------------- | ------------- | ----------------- | \n## ะกะฝะพัะบะฐ \n``` \nะŸั€ะธะฒะตั‚[^ะŸั€ะธะฒะตั‚] \n``` \n \nะขัƒั‚ ั‡ั‚ะพ-ั‚ะพ ะฝะตะฟะพะฝัั‚ะฝะพะต[^ะŸั€ะธะฒะตั‚] \n \n[^ะŸั€ะธะฒะตั‚]: ะ ั‚ัƒั‚ ะพะฑัŠััะฝะตะฝะธะต \n \n## Emojis \nะŸะพะดั€ะพะฑะฝะตะต: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/) \n``` \n:laughing: \n:blush: \n:smiley: \n:) \n... \n``` \n:laughing::blush::smiley::) \n \n## $\\KaTeX$ Mathematics \n \nะœะพะถะฝะพ ะฒั‹ะฒะพะดะธั‚ัŒ ั‚ะฐะบะธะต ั„ะพั€ะผัƒะปั‹๏ผš$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$ \nะ ั‚ะฐะบะถะต ะฒ ะพะดะฝัƒ ัั‚ั€ะพะบัƒ:\n$$\\sum_{i=1}^n a_i=0$$ \nะŸะพะดั€ะพะฑะฝะตะต: \n- [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)\n- [katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)\n- [latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference) \n \n## ะ ะฐะทะผะตั‚ะบะฐ\n \n::: hljs-left \n`::: hljs-left` \n`left` \n`:::` \n::: \n \n::: hljs-center \n`::: hljs-center` \n`center` \n`:::` \n::: \n \n::: hljs-right \n`::: hljs-right` \n`right` \n`:::` \n::: \n \n## ะกะฟะธัะพะบ ะพะฟั€ะตะดะตะปะตะฝะธะน\n \nะขะตั€ะผะธะฝ 1 \n \n: ะžะฟั€ะตะดะตะปะตะฝะธะต 1 \n \nะขะตั€ะผะธะฝ 2 ั ะธัะฟะพะปัŒะทะพะฒะฐะฝะธะตะผ *ั€ะฐะทะผะตั‚ะบะธ*\n \n: ะžะฟั€ะตะดะตะปะตะฝะธะต 2 \n \n { ะšะฐะบะพะน-ะฝะธะฑัƒะดัŒ ะบะพะด, ั‡ะฐัั‚ัŒ ะพะฟั€ะตะดะตะปะตะฝะธั 2 } \n ะขั€ะตั‚ะธะน ะฟะฐั€ะฐะณั€ะฐั„ ะพะฟั€ะตะดะตะปะตะฝะธั 2. \n``` \nะขะตั€ะผะธะฝ 1 \n \n: ะžะฟั€ะตะดะตะปะตะฝะธะต 1 \n \nะขะตั€ะผะธะฝ 2 ั ะธัะฟะพะปัŒะทะพะฒะฐะฝะธะตะผ *ั€ะฐะทะผะตั‚ะบะธ*\n \n: ะžะฟั€ะตะดะตะปะตะฝะธะต 2 \n \n { ะšะฐะบะพะน-ะฝะธะฑัƒะดัŒ ะบะพะด, ั‡ะฐัั‚ัŒ ะพะฟั€ะตะดะตะปะตะฝะธั 2 } \n ะขั€ะตั‚ะธะน ะฟะฐั€ะฐะณั€ะฐั„ ะพะฟั€ะตะดะตะปะตะฝะธั 2. \n``` \n \n## ะกะพะบั€ะฐั‰ะตะฝะธั\n*[HTML]: Hyper Text Markup Language \n*[W3C]: World Wide Web Consortium \nThe HTML specification \nis maintained by the W3C. \n``` \n*[HTML]: Hyper Text Markup Language \n*[W3C]: World Wide Web Consortium \nThe HTML specification \nis maintained by the W3C. \n```\n'},function(e,t){e.exports='@[toc](Catalog)\n\nMarkdown Handbuch\n===\n> Details: [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **Fett**\n```\n**fett**\n__fett__\n```\n## *Kursiv*\n```\n*kursiv*\n_kursiv_\n```\n## รœberschriften\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## Trennlinien\n```\n***\n---\n```\n****\n## ^Hoch^gestellt & ~Tief~gestellt\n```\nhochgestellt x^2^\ntiefgestellt H~2~0\n```\n## ++Unterstrichen++ & ~~Durchgestrichen~~\n```\n++unterstrichen++\n~~durchgestrichen~~\n```\n## ==Markiert==\n```\n==markiert==\n```\n## Zitat\n\n```\n> zitat 1\n>> zitat 2\n>>> zitat 3\n...\n```\n\n## Liste\n```\nol\n1.\n2.\n3.\n...\n\nul\n-\n-\n...\n```\n\n## Todo Liste\n\n- [x] aufgabe 1\n- [ ] aufgabe 2\n\n```\n- [x] aufgabe 1\n- [ ] aufgabe 2\n```\n\n## Link\n```\nText Link\n[Text](www.baidu.com)\n\nLink mit Bild\n![Text](http://www.image.com)\n```\n## Code\n\\``` Typ\n\nCodeblock\n\n\\```\n\n\\` code \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## Tabelle\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| links | mitte | rechts |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| links | mitte | rechts |\n| ---------------------- | ------------- | ----------------- |\n## FuรŸnote\n```\nhallo[^hallo]\n```\n\nSchau zum unteren Rand[^hallo]\n\n[^hallo]: fussnote\n\n## Emojis\nDetails: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ Mathematik\n\nFormeln lassen sich darstellen z.b. ๏ผš$x_i + y_i = z_i$ und $\\sum_{i=1}^n a_i=0$\nFormeln kรถnnen auf einer eigenen Zeile gerendert werden\n$$\\sum_{i=1}^n a_i=0$$\nDetails: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ๅ’Œ[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ไปฅๅŠ[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\n## Layout\n\n::: hljs-left\n`::: hljs-left`\n`links`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`mitte`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`rechts`\n`:::`\n:::\n\n## Liste von Definitionen\n\nTerm 1\n\n: Definition 1\n\nTerm 2 mit *inline markup*\n\n: Definition 2\n\n { ein wenig code, teil von Definition 2 }\n\n Dritter Absatz von Definition 2.\n\n```\nTerm 1\n\n: Definition 1\n\nTerm 2 mit *inline markup*\n\n: Definition 2\n\n { ein wenig code, teil von Definition 2 }\n\n Dritter Absatz von Definition 2.\n\n```\n\n## Abkรผrzungen\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nDie HTML Spezifikation\nwird gepflegt vom W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nDie HTML Spezifikation\nwird gepflegt vom W3C.\n```\n'},function(e,t){e.exports='@[toc](็›ฎๆฌก)\n\nMarkdown ๆ–‡ๆณ•ใ‚ฌใ‚คใƒ‰\n===\n> Detailed: [http://commonmark.org/help/](http://commonmark.org/help/)\n\n## **ๅคชๅญ—**\n```\n**ๅคชๅญ—**\n__ๅคชๅญ—__\n```\n## *ๆ–œไฝ“*\n```\n*ๆ–œไฝ“*\n_ๆ–œไฝ“_\n```\n## ่ฆ‹ๅ‡บใ—\n```\n# h1 #\nh1\n====\n## h2 ##\nh2\n----\n### h3 ###\n#### h4 ####\n##### h5 #####\n###### h6 ######\n```\n## ๆจช็ทš\n```\n***\n---\n```\n****\n## ^ไธŠไป˜ใ^ๆ–‡ๅญ— & ~ไธ‹ไป˜ใ~ๆ–‡ๅญ—\n```\nsuper x^2^\nsub H~2~0\n```\n## ++ไธ‹็ทš++ & ~~ๅ–ใ‚Šๆถˆใ—็ทš~~\n```\n++underline++\n~~strikethrough~~\n```\n## ==่›ๅ…‰ใƒšใƒณ==\n```\n==mark==\n```\n## ๅผ•็”จ\n\n```\n> quote 1\n>> quote 2\n>>> quote 3\n...\n```\n\n## ใƒชใ‚นใƒˆ\n```\n็•ชๅทไป˜ใใƒชใ‚นใƒˆ\n1.\n2.\n3.\n...\n\n็ฎ‡ๆกๆ›ธใใƒชใ‚นใƒˆ\n-\n-\n...\n```\n\n## Todoใƒชใ‚นใƒˆ\n\n- [x] task 1\n- [ ] task 2\n\n```\n- [x] task 1\n- [ ] task 2\n```\n\n## ใƒชใƒณใ‚ฏ\n```\nText Link\n[Text](www.baidu.com)\n\nImage Link\n![Text](http://www.image.com)\n```\n## ใ‚ณใƒผใƒ‰\n\\``` type\n\ncode block\n\n\\```\n\n\\` code \\`\n\n```c++\nint main()\n{\n printf("hello world!");\n}\n```\n`code`\n\n## ่กจ\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n```\n| th1 | th2 | th3 |\n| :-- | :--: | ----: |\n| left | center | right |\n| ---------------------- | ------------- | ----------------- |\n\n## ่„šๆณจ\n```\nhello[^hello]\n```\n\nLook at the bottom[^hello]\n\n[^hello]: footnote\n\n## ็ตตๆ–‡ๅญ—\n> Detailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\n```\n:laughing:\n:blush:\n:smiley:\n:)\n...\n```\n:laughing::blush::smiley::)\n\n## $\\KaTeX$ ๆ•ฐๅผ\n> Detailed: [KaTeXใƒžใƒ‹ใƒฅใ‚ขใƒซ](http://www.intmath.com/cg5/katex-mathjax-comparison.php)ใ€[KaTeX function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)ใ€[LaTeXใƒžใƒ‹ใƒฅใ‚ขใƒซ](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\n\nWe can render formulas for example๏ผš$x_i + y_i = z_i$ and $\\sum_{i=1}^n a_i=0$ \nWe can also single-line rendering\n$$\\sum_{i=1}^n a_i=0$$\n\n## ใƒฌใ‚คใ‚ขใ‚ฆใƒˆ\n\n::: hljs-left\n`::: hljs-left`\n`left`\n`:::`\n:::\n\n::: hljs-center\n`::: hljs-center`\n`center`\n`:::`\n:::\n\n::: hljs-right\n`::: hljs-right`\n`right`\n`:::`\n:::\n\n## ๅฎš็พฉใƒชใ‚นใƒˆ\n\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\nTerm 1\n\n: Definition 1\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n```\n\n## abbr\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n*[HTML]: Hyper Text Markup Language\n*[W3C]: World Wide Web Consortium\nThe HTML specification\nis maintained by the W3C.\n```\n'},function(e){e.exports=JSON.parse('{"start_editor":"ๅผ€ๅง‹็ผ–่พ‘...","navigation_title":"ๅฏผ่ˆช็›ฎๅฝ•","tl_bold":"็ฒ—ไฝ“","tl_italic":"ๆ–œไฝ“","tl_header":"ๆ ‡้ข˜","tl_header_one":"ไธ€็บงๆ ‡้ข˜","tl_header_two":"ไบŒ็บงๆ ‡้ข˜","tl_header_three":"ไธ‰็บงๆ ‡้ข˜","tl_header_four":"ๅ››็บงๆ ‡้ข˜","tl_header_five":"ไบ”็บงๆ ‡้ข˜","tl_header_six":"ๅ…ญ็บงๆ ‡้ข˜","tl_underline":"ไธ‹ๅˆ’็บฟ","tl_strikethrough":"ไธญๅˆ’็บฟ","tl_mark":"ๆ ‡่ฎฐ","tl_superscript":"ไธŠ่ง’ๆ ‡","tl_subscript":"ไธ‹่ง’ๆ ‡","tl_quote":"ๆฎต่ฝๅผ•็”จ","tl_ol":"ๆœ‰ๅบๅˆ—่กจ","tl_ul":"ๆ— ๅบๅˆ—่กจ","tl_link":"้“พๆŽฅ","tl_image":"ๆทปๅŠ ๅ›พ็‰‡้“พๆŽฅ","tl_code":"ไปฃ็ ๅ—","tl_table":"่กจๆ ผ","tl_undo":"ไธŠไธ€ๆญฅ","tl_redo":"ไธ‹ไธ€ๆญฅ","tl_trash":"ๆธ…็ฉบ","tl_save":"ไฟๅญ˜","tl_navigation_on":"ๅผ€ๅฏๆ ‡้ข˜ๅฏผ่ˆช","tl_navigation_off":"ๅ…ณ้—ญๆ ‡้ข˜ๅฏผ่ˆช","tl_preview":"้ข„่งˆ","tl_aligncenter":"ๅฑ…ไธญ","tl_alignleft":"ๅฑ…ๅทฆ","tl_alignright":"ๅฑ…ๅณ","tl_edit":"็ผ–่พ‘","tl_single_column":"ๅ•ๆ ","tl_double_column":"ๅŒๆ ","tl_fullscreen_on":"ๅ…จๅฑ็ผ–่พ‘","tl_fullscreen_off":"้€€ๅ‡บๅ…จๅฑ","tl_read":"ๆฒ‰ๆตธๅผ้˜…่ฏป","tl_html_on":"ๆŸฅ็œ‹htmlๆ–‡ๆœฌ","tl_html_off":"่ฟ”ๅ›žmarkdownๆ–‡ๆœฌ","tl_help":"markdown่ฏญๆณ•ๅธฎๅŠฉ","tl_upload":"ไธŠไผ ๅ›พ็‰‡","tl_upload_remove":"ๅˆ ้™ค","tl_popup_link_title":"ๆทปๅŠ ้“พๆŽฅ","tl_popup_link_text":"้“พๆŽฅๆ่ฟฐ","tl_popup_link_addr":"้“พๆŽฅๅœฐๅ€","tl_popup_img_link_title":"ๆทปๅŠ ๅ›พ็‰‡","tl_popup_img_link_text":"ๅ›พ็‰‡ๆ่ฟฐ","tl_popup_img_link_addr":"ๅ›พ็‰‡้“พๆŽฅ","tl_popup_link_sure":"็กฎๅฎš","tl_popup_link_cancel":"ๅ–ๆถˆ"}')},function(e){e.exports=JSON.parse('{"start_editor":"้–‹ๅง‹็ทจ่ผฏ...","navigation_title":"ๅฐŽ่ˆช็›ฎ้Œ„","tl_bold":"็ฒ—้ซ”","tl_italic":"ๆ–œ้ซ”","tl_header":"ๆจ™้กŒ","tl_header_one":"ไธ€็ดšๆจ™้กŒ","tl_header_two":"ไบŒ็ดšๆจ™้กŒ","tl_header_three":"ไธ‰็ดšๆจ™้กŒ","tl_header_four":"ๅ››็ดšๆจ™้กŒ","tl_header_five":"ไบ”็ดšๆจ™้กŒ","tl_header_six":"ๅ…ญ็ดšๆจ™้กŒ","tl_underline":"ไธ‹ๅŠƒ็ทš","tl_strikethrough":"ไธญๅŠƒ็ทš","tl_mark":"ๆจ™่จ˜","tl_superscript":"ไธŠ่ง’ๆจ™","tl_subscript":"ไธ‹่ง’ๆจ™","tl_quote":"ๆฎต่ฝๅผ•็”จ","tl_ol":"ๆœ‰ๅบๅˆ—่กจ","tl_ul":"็„กๅบๅˆ—่กจ","tl_link":"้ˆๆŽฅ","tl_image":"ๆทปๅŠ ๅœ–็‰‡้ˆๆŽฅ","tl_code":"ไปฃ็ขผๅกŠ","tl_table":"่กจๆ ผ","tl_undo":"ไธŠไธ€ๆญฅ","tl_redo":"ไธ‹ไธ€ๆญฅ","tl_trash":"ๆธ…็ฉบ","tl_save":"ไฟๅญ˜","tl_navigation_on":"้–‹ๅ•Ÿๆจ™้กŒๅฐŽ่ˆช","tl_navigation_off":"้—œ้–‰ๆจ™้กŒๅฐŽ่ˆช","tl_preview":"้ ่ฆฝ","tl_aligncenter":"ๅฑ…ไธญ","tl_alignleft":"ๅฑ…ๅทฆ","tl_alignright":"ๅฑ…ๅณ","tl_edit":"็ทจ่ผฏ","tl_single_column":"ๅ–ฎๆฌ„","tl_double_column":"้›™ๆฌ„","tl_fullscreen_on":"ๅ…จๅฑ็ทจ่ผฏ","tl_fullscreen_off":"้€€ๅ‡บๅ…จๅฑ","tl_read":"ๆฒˆๆตธๅผ้–ฑ่ฎ€","tl_html_on":"ๆŸฅ็œ‹htmlๆ–‡ๆœฌ","tl_html_off":"่ฟ”ๅ›žmarkdownๆ–‡ๆœฌ","tl_help":"markdown่ชžๆณ•ๅนซๅŠฉ","tl_upload":"ไธŠๅ‚ณๅœ–็‰‡","tl_upload_remove":"ๅˆช้™ค","tl_popup_link_title":"ๆทปๅŠ ้ˆๆŽฅ","tl_popup_link_text":"้ˆๆŽฅๆ่ฟฐ","tl_popup_link_addr":"้ˆๆŽฅๅœฐๅ€","tl_popup_img_link_title":"ๆทปๅŠ ๅœ–็‰‡","tl_popup_img_link_text":"ๅœ–็‰‡ๆ่ฟฐ","tl_popup_img_link_addr":"ๅœ–็‰‡้ˆๆŽฅ","tl_popup_link_sure":"็ขบๅฎš","tl_popup_link_cancel":"ๅ–ๆถˆ"}')},function(e){e.exports=JSON.parse('{"start_editor":"Begin editing...","navigation_title":"Navigation","tl_bold":"Bold","tl_italic":"Italic","tl_header":"Header","tl_header_one":"Header 1","tl_header_two":"Header 2","tl_header_three":"Header 3","tl_header_four":"Header 4","tl_header_five":"Header 5","tl_header_six":"Header 6","tl_underline":"Underline","tl_strikethrough":"Strikethrough","tl_mark":"Mark","tl_superscript":"Superscript","tl_subscript":"Subscript","tl_quote":"Quote","tl_ol":"Ol","tl_ul":"Ul","tl_link":"Link","tl_image":"Image Link","tl_code":"Code","tl_table":"Table","tl_undo":"Undo","tl_redo":"Redo","tl_trash":"Trash","tl_save":"Save","tl_navigation_on":"Navigation ON","tl_navigation_off":"Navigation OFF","tl_preview":"Preview","tl_aligncenter":"Center text","tl_alignleft":"Clamp text to the left","tl_alignright":"Clamp text to the right","tl_edit":"Edit","tl_single_column":"Single Column","tl_double_column":"Double Columns","tl_fullscreen_on":"FullScreen ON","tl_fullscreen_off":"FullScreen OFF","tl_read":"Read Model","tl_html_on":"HTML ON","tl_html_off":"HTML OFF","tl_help":"Markdown Guide","tl_upload":"Upload Images","tl_upload_remove":"Remove","tl_popup_link_title":"Add Link","tl_popup_link_text":"Link text","tl_popup_link_addr":"Link address","tl_popup_img_link_title":"Add Image","tl_popup_img_link_text":"Image Text","tl_popup_img_link_addr":"Image Link","tl_popup_link_sure":"Sure","tl_popup_link_cancel":"Cancel"}')},function(e){e.exports=JSON.parse('{"start_editor":"Dรฉbut d\'รฉdition...","navigation_title":"Navigation","tl_bold":"Gras","tl_italic":"Italique","tl_header":"Entรชte","tl_header_one":"Entรชte 1","tl_header_two":"Entรชte 2","tl_header_three":"Entรชte 3","tl_header_four":"Entรชte 4","tl_header_five":"Entรชte 5","tl_header_six":"Entรชte 6","tl_underline":"Soulignรฉ","tl_strikethrough":"Barrรฉ","tl_mark":"Mark","tl_superscript":"Exposant","tl_subscript":"Sous-exposant","tl_quote":"Quote","tl_ol":"Liste ","tl_ul":"Puce","tl_link":"Lien","tl_image":"Image Lien","tl_code":"Code","tl_table":"Table","tl_undo":"Annuler","tl_redo":"Refaire","tl_trash":"Supprimer","tl_save":"Sauver","tl_navigation_on":"Activer la navigation","tl_navigation_off":"Dรฉsactiver le navigation","tl_preview":"Previsualisรฉ","tl_aligncenter":"Center le texte","tl_alignleft":"Fรฉrer le texte ร  gauche","tl_alignright":"Fรฉrer le texte ร  droite","tl_edit":"Editer","tl_single_column":"Seule Colonne","tl_double_column":"Colonnes Doubles","tl_fullscreen_on":"Activer le mode plein รฉcran","tl_fullscreen_off":"Dรฉsactiver le mode plein รฉcran","tl_read":"Lire le modรจle","tl_html_on":"Activer le mode HTML","tl_html_off":"Dรฉsactiver le mode HTML","tl_help":"Guide Markdown","tl_upload":"Tรฉlรฉcharger les images","tl_upload_remove":"Supprimer","tl_popup_link_title":"Ajouter un lien","tl_popup_link_text":"Description","tl_popup_link_addr":"Link","tl_popup_img_link_title":"Ajouter une image","tl_popup_img_link_text":"Description","tl_popup_img_link_addr":"Link","tl_popup_link_sure":"sรปr","tl_popup_link_cancel":"Annuler"}')},function(e){e.exports=JSON.parse('{"start_editor":"Comeรงar ediรงรฃo...","navigation_title":"Navegaรงรฃo","tl_bold":"Negrito","tl_italic":"Itรกlico","tl_header":"Cabeรงalho","tl_header_one":"Cabeรงalho 1","tl_header_two":"Cabeรงalho 2","tl_header_three":"Cabeรงalho 3","tl_header_four":"Cabeรงalho 4","tl_header_five":"Cabeรงalho 5","tl_header_six":"Cabeรงalho 6","tl_underline":"Sublinhar","tl_strikethrough":"Tachar","tl_mark":"Marcaรงรฃo","tl_superscript":"Sobrescrito","tl_subscript":"Subscrito","tl_quote":"Citaรงรฃo","tl_ol":"Lista Numerada","tl_ul":"Lista com marcadores","tl_link":"Link","tl_image":"Link de imagem","tl_code":"Cรณdigo","tl_table":"Tabela","tl_undo":"Desfazer","tl_redo":"Refazer","tl_trash":"Lixo","tl_save":"Salvar","tl_navigation_on":"Mostrar Navegaรงรฃo","tl_navigation_off":"Esconder Navegaรงรฃo","tl_preview":"Preview","tl_aligncenter":"Alinhar no centro","tl_alignleft":"Alinhar ร  esquerda","tl_alignright":"Alinhar ร  direita","tl_edit":"Editar","tl_single_column":"Coluna รšnica","tl_double_column":"Duas Colunas","tl_fullscreen_on":"Ligar Tela Cheia","tl_fullscreen_off":"Desligar Tela Cheia","tl_read":"Modo de Leitura","tl_html_on":"Ligar HTML","tl_html_off":"Desligar HTML","tl_help":"Guia Markdown","tl_upload":"Upload de Imagens","tl_upload_remove":"Remover","tl_popup_link_title":"Adicionar Link","tl_popup_link_text":"Descriรงรฃo","tl_popup_link_addr":"Link","tl_popup_img_link_title":"Adicionar fotos","tl_popup_img_link_text":"Descriรงรฃo","tl_popup_img_link_addr":"Link","tl_popup_link_sure":"Confirmar","tl_popup_link_cancel":"Cancelar"}')},function(e){e.exports=JSON.parse('{"start_editor":"ะะฐั‡ะฝะธั‚ะต ั€ะตะดะฐะบั‚ะธั€ะพะฒะฐะฝะธะต...","navigation_title":"ะะฐะฒะธะณะฐั†ะธั","tl_bold":"ะŸะพะปัƒะถะธั€ะฝั‹ะน","tl_italic":"ะšัƒั€ัะธะฒ","tl_header":"ะ—ะฐะณะพะปะพะฒะบะธ","tl_header_one":"ะ—ะฐะณะพะปะพะฒะพะบ 1","tl_header_two":"ะ—ะฐะณะพะปะพะฒะพะบ 2","tl_header_three":"ะ—ะฐะณะพะปะพะฒะพะบ 3","tl_header_four":"ะ—ะฐะณะพะปะพะฒะพะบ 4","tl_header_five":"ะ—ะฐะณะพะปะพะฒะพะบ 5","tl_header_six":"ะ—ะฐะณะพะปะพะฒะพะบ 6","tl_underline":"ะŸะพะดั‡ะตั€ะบะฝัƒั‚ั‹ะน","tl_strikethrough":"ะ—ะฐั‡ะตั€ะบะฝัƒั‚ั‹ะน","tl_mark":"ะžั‚ะผะตั‚ะบะฐ","tl_superscript":"ะ’ะตั€ั…ะฝะธะน ะธะฝะดะตะบั","tl_subscript":"ะะธะถะฝะธะน ะธะฝะดะตะบั","tl_quote":"ะฆะธั‚ะฐั‚ะฐ","tl_ol":"ะัƒะผะตั€ะพะฒะฐะฝะฝั‹ะน ัะฟะธัะพะบ","tl_ul":"ะกะฟะธัะพะบ","tl_link":"ะกัั‹ะปะบะฐ","tl_image":"ะกัั‹ะปะบะฐ ะธะทะพะฑั€ะฐะถะตะฝะธั","tl_code":"ะšะพะด","tl_table":"ะขะฐะฑะปะธั†ะฐ","tl_undo":"ะžั‚ะผะตะฝะธั‚ัŒ","tl_redo":"ะ’ะตั€ะฝัƒั‚ัŒ","tl_trash":"ะฃะดะฐะปะธั‚ัŒ","tl_save":"ะกะพั…ั€ะฐะฝะธั‚ัŒ","tl_navigation_on":"ะŸะพะบะฐะทะฐั‚ัŒ ะฝะฐะฒะธะณะฐั†ะธัŽ","tl_navigation_off":"ะกะบั€ั‹ั‚ัŒ ะฝะฐะฒะธะณะฐั†ะธัŽ","tl_preview":"ะŸั€ะตะดะฟั€ะพัะผะพั‚ั€","tl_aligncenter":"ะ’ั‹ั€ะพะฒะฝัั‚ัŒ ะฟะพ ั†ะตะฝั‚ั€ัƒ","tl_alignleft":"ะ’ั‹ั€ะพะฒะฝัั‚ัŒ ะฟะพ ะปะตะฒะพะผัƒ ะบั€ะฐัŽ","tl_alignright":"ะ’ั‹ั€ะพะฒะฝัั‚ัŒ ะฟะพ ะฟั€ะฐะฒะพะผัƒ ะบั€ะฐัŽ","tl_edit":"ะ ะตะดะฐะบั‚ะพั€","tl_single_column":"ะžะดะฝะพ ะฟะพะปะต","tl_double_column":"ะ”ะฒะฐ ะฟะพะปั","tl_fullscreen_on":"ะŸะพะปะฝะพัะบั€ะฐะฝะฝั‹ะน ั€ะตะถะธะผ","tl_fullscreen_off":"ะ’ั‹ะบะปัŽั‡ะธั‚ัŒ ะฟะพะปะฝะพัะบั€ะฐะฝะฝั‹ะน ั€ะตะถะธะผ","tl_read":"ะ ะตะถะธะผ ั‡ั‚ะตะฝะธั","tl_html_on":"ะŸะพะบะฐะทะฐั‚ัŒ HTML","tl_html_off":"ะฃะฑั€ะฐั‚ัŒ HTML","tl_help":"Markdown ะฟะพะผะพั‰ัŒ","tl_upload":"ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะธะทะพะฑั€ะฐะถะตะฝะธะต","tl_upload_remove":"ะฃะดะฐะปะธั‚ัŒ","tl_popup_link_title":"ะ”ะพะฑะฐะฒะธั‚ัŒ ััั‹ะปะบัƒ","tl_popup_link_text":"ะขะตะบัั‚ ััั‹ะปะบะธ","tl_popup_link_addr":"ะะดั€ะตั ััั‹ะปะบะธ","tl_popup_img_link_title":"ะ›ะพะบะฐะปัŒะฝะพะต ะธะทะพะฑั€ะฐะถะตะฝะธะต","tl_popup_img_link_text":"ะขะตะบัั‚ ะธะทะพะฑั€ะฐะถะตะฝะธั","tl_popup_img_link_addr":"ะกัั‹ะปะบะฐ ะธะทะพะฑั€ะฐะถะตะฝะธั","tl_popup_link_sure":"ะ”ะพะฑะฐะฒะธั‚ัŒ","tl_popup_link_cancel":"ะžั‚ะผะตะฝะธั‚ัŒ"}')},function(e){e.exports=JSON.parse('{"start_editor":"Bearbeitung beginnen...","navigation_title":"Navigation","tl_bold":"Fett","tl_italic":"Kursiv","tl_header":"รœberschrift","tl_header_one":"รœberschrift 1","tl_header_two":"รœberschrift 2","tl_header_three":"รœberschrift 3","tl_header_four":"รœberschrift 4","tl_header_five":"รœberschrift 5","tl_header_six":"รœberschrift 6","tl_underline":"Unterstrichen","tl_strikethrough":"Durchgestrichen","tl_mark":"Markiert","tl_superscript":"Hochgestellt","tl_subscript":"Tiefgestellt","tl_quote":"Zitat","tl_ol":"Ol","tl_ul":"Ul","tl_link":"Link","tl_image":"Link mit Bild","tl_code":"Code","tl_table":"Tabelle","tl_undo":"Rรผckgรคngig","tl_redo":"Wiederherstellen","tl_trash":"Mรผlleimer","tl_save":"Speichern","tl_navigation_on":"Navigation AN","tl_navigation_off":"Navigation AUS","tl_preview":"Vorschau","tl_aligncenter":"Text zentrieren","tl_alignleft":"Nach links ausrichten","tl_alignright":"Nach rechts ausrichten","tl_edit":"Bearbeiten","tl_single_column":"Einspaltig","tl_double_column":"Zweispaltig","tl_fullscreen_on":"Vollbild AN","tl_fullscreen_off":"Vollbild AUS","tl_read":"Lesemodus","tl_html_on":"HTML AN","tl_html_off":"HTML AUS","tl_help":"Markdown Handbuch","tl_upload":"Bilder-Upload","tl_upload_remove":"Entfernen","tl_popup_link_title":"Link hinzufรผgen","tl_popup_link_text":"Text des Links","tl_popup_link_addr":"Linkziel","tl_popup_img_link_title":"Bild hinzufรผgen","tl_popup_img_link_text":"Text des Bildes","tl_popup_img_link_addr":"Link auf Bild","tl_popup_link_sure":"Ja","tl_popup_link_cancel":"Abbruch"}')},function(e){e.exports=JSON.parse('{"start_editor":"็ทจ้›†ใ‚’ๅง‹ใ‚ใฆใญ๏ผ","navigation_title":"ใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณ","tl_bold":"ๅคชๅญ—","tl_italic":"ๆ–œไฝ“","tl_header":"่ฆ‹ๅ‡บใ—","tl_header_one":"่ฆ‹ๅ‡บใ—1","tl_header_two":"่ฆ‹ๅ‡บใ—2","tl_header_three":"่ฆ‹ๅ‡บใ—3","tl_header_four":"่ฆ‹ๅ‡บใ—4","tl_header_five":"่ฆ‹ๅ‡บใ—5","tl_header_six":"่ฆ‹ๅ‡บใ—6","tl_underline":"ไธ‹็ทš","tl_strikethrough":"ๅ–ใ‚Šๆถˆใ—็ทš","tl_mark":"่›ๅ…‰ใƒšใƒณ","tl_superscript":"ไธŠไป˜ใๆ–‡ๅญ—","tl_subscript":"ไธ‹ไป˜ใๆ–‡ๅญ—","tl_quote":"ๅผ•็”จ","tl_ol":"็•ชๅทไป˜ใใƒชใ‚นใƒˆ","tl_ul":"็ฎ‡ๆกๆ›ธใใƒชใ‚นใƒˆ","tl_link":"ใƒใ‚คใƒ‘ใƒผใƒชใƒณใ‚ฏ","tl_image":"็”ปๅƒใฎใƒชใƒณใ‚ฏ","tl_code":"ใ‚ณใƒผใƒ‰ใฎๆŒฟๅ…ฅ","tl_table":"่กจใฎๆŒฟๅ…ฅ","tl_undo":"ๆˆปใ‚‹","tl_redo":"้€ฒใ‚€","tl_trash":"ๅ‰Š้™ค","tl_save":"ไฟๅญ˜","tl_navigation_on":"ใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณใ‚’่กจ็คบ","tl_navigation_off":"ใƒŠใƒ“ใ‚ฒใƒผใ‚ทใƒงใƒณใ‚’้ž่กจ็คบ","tl_preview":"ใƒ—ใƒฌใƒ“ใƒฅใƒผ","tl_aligncenter":"ไธญๅคฎๆƒใˆ","tl_alignleft":"ๅทฆๆƒใˆ","tl_alignright":"ๅณๆƒใˆ","tl_edit":"็ทจ้›†","tl_single_column":"ไธ€ๅˆ—","tl_double_column":"ไบŒๅˆ—","tl_fullscreen_on":"ๅ…จ็”ป้ข่กจ็คบ","tl_fullscreen_off":"ๅ…จ็”ป้ข่กจ็คบใฎ็ต‚ไบ†","tl_read":"ใƒขใƒ‡ใƒซใฎ่ชญใฟ่พผใฟ","tl_html_on":"HTMLใง่กจ็คบ","tl_html_off":"HTML่กจ็คบใฎ็ต‚ไบ†","tl_help":"ใƒ˜ใƒซใƒ—","tl_upload":"็”ปๅƒใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰","tl_upload_remove":"็”ปๅƒใฎๅ‰Š้™ค","tl_popup_link_title":"ใƒชใƒณใ‚ฏใฎ่ฟฝๅŠ ","tl_popup_link_text":"ใƒชใƒณใ‚ฏใƒ†ใ‚ญใ‚นใƒˆ","tl_popup_link_addr":"ใƒชใƒณใ‚ฏๅ…ˆใฎURL","tl_popup_img_link_title":"็”ปๅƒใฎ่ฟฝๅŠ ","tl_popup_img_link_text":"็”ปๅƒใ‚ฟใ‚คใƒˆใƒซ","tl_popup_img_link_addr":"็”ปๅƒURL","tl_popup_link_sure":"OK","tl_popup_link_cancel":"ๆˆปใ‚‹"}')},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=s(n(25));t.initMarkdown=O;var o=s(n(56)),i=n(57),a=s(n(135));function s(e){return e&&e.__esModule?e:{default:e}}var l={html:!0,xhtmlOut:!0,breaks:!0,langPrefix:"lang-",linkify:!1,typographer:!0,quotes:"โ€œโ€โ€˜โ€™"},c=n(140),u=n(236),p=n(198),d=n(199),h=n(200),f=n(201),_=n(202),g=n(203),m=n(204),b=n(205),v=n(206),k=n(207),w=n(208),y=n(209),x=n(226),C=n(227),j={},A=[],E={hljs:"auto",highlighted:!0,langCheck:function(e){e&&o.default[e]&&!j[e]&&(j[e]=1,A.push(o.default[e]))}};function O(){var e=new c(l),t=e.renderer.rules.link_open||function(e,t,n,r,o){return o.renderToken(e,t,n)};return e.renderer.rules.link_open=function(e,n,r,o,i){var a=e[n].attrIndex("href");if(e[n].attrs[a][1].startsWith("#"))return t(e,n,r,o,i);var s=e[n].attrIndex("target");return s<0?e[n].attrPush(["target","_blank"]):e[n].attrs[s][1]="_blank",t(e,n,r,o,i)},e.use(w,E).use(u.full).use(d.default).use(p.default).use(v.default).use(v.default,"hljs-left").use(v.default,"hljs-center").use(v.default,"hljs-right").use(h.default).use(f.default).use(_.default).use(g.default).use(m.default).use(v.default).use(C).use(x).use(b).use(k).use(y.default),e}t.default={data:function(){return{markdownIt:null}},created:function(){this.markdownIt=O(),this.html?"object"===(0,r.default)(this.xssOptions)&&this.markdownIt.use(a.default,this.xssOptions):(this.markdownIt.set({html:!1}),this.xssOptions=!1)},mounted:function(){E.highlighted=this.ishljs},methods:{$render:function(e,t){j={},A=[];var n=this.markdownIt.render(e);this.ishljs&&A.length>0&&this.$_render(e,t,n),t(n)},$_render:function(e,t,n){for(var r=this,o=0,a=0;a<A.length;a++){var s=r.p_external_link.hljs_lang(A[a]);(0,i.loadScript)(s,(function(){(o+=1)===A.length&&(n=r.markdownIt.render(e),t(n))}))}}},watch:{ishljs:function(e){E.highlighted=e}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){e.options.html&&(o=new r.FilterXSS(t),e.core.ruler.push("mavoneditor_sanitizer",i))};var r=n(136),o=void 0;function i(e){o&&function e(t,n){for(var r=void 0,i=void 0,a=0;a<t.length;a++)-1!==n.indexOf(t[a].type)&&(r=t[a].content,i=t[a].children,t[a].content=o.process(r),i&&i.length&&r!==t[a].content&&e(i,["html_inline"]))}(e.tokens,["inline","html_block"])}},function(e,t,n){var r=n(58),o=n(61),i=n(139);function a(e,t){return new i(t).process(e)}(t=e.exports=a).filterXSS=a,t.FilterXSS=i,function(){for(var e in r)t[e]=r[e];for(var n in o)t[n]=o[n]}(),"undefined"!=typeof window&&(window.filterXSS=e.exports),"undefined"!=typeof self&&"undefined"!=typeof DedicatedWorkerGlobalScope&&self instanceof DedicatedWorkerGlobalScope&&(self.filterXSS=e.exports)},function(e,t,n){var r=n(59),o=n(138);n(60);function i(e){return null==e}function a(e){(e=function(e){var t={};for(var n in e)t[n]=e[n];return t}(e||{})).whiteList=e.whiteList||r.whiteList,e.onAttr=e.onAttr||r.onAttr,e.onIgnoreAttr=e.onIgnoreAttr||r.onIgnoreAttr,e.safeAttrValue=e.safeAttrValue||r.safeAttrValue,this.options=e}a.prototype.process=function(e){if(!(e=(e=e||"").toString()))return"";var t=this.options,n=t.whiteList,r=t.onAttr,a=t.onIgnoreAttr,s=t.safeAttrValue;return o(e,(function(e,t,o,l,c){var u=n[o],p=!1;if(!0===u?p=u:"function"==typeof u?p=u(l):u instanceof RegExp&&(p=u.test(l)),!0!==p&&(p=!1),l=s(o,l)){var d,h={position:t,sourcePosition:e,source:c,isWhite:p};return p?i(d=r(o,l,h))?o+":"+l:d:i(d=a(o,l,h))?void 0:d}}))},e.exports=a},function(e,t,n){var r=n(60);e.exports=function(e,t){";"!==(e=r.trimRight(e))[e.length-1]&&(e+=";");var n=e.length,o=!1,i=0,a=0,s="";function l(){if(!o){var n=r.trim(e.slice(i,a)),l=n.indexOf(":");if(-1!==l){var c=r.trim(n.slice(0,l)),u=r.trim(n.slice(l+1));if(c){var p=t(i,s.length,c,u,n);p&&(s+=p+"; ")}}}i=a+1}for(;a<n;a++){var c=e[a];if("/"===c&&"*"===e[a+1]){var u=e.indexOf("*/",a+2);if(-1===u)break;i=(a=u+1)+1,o=!1}else"("===c?o=!0:")"===c?o=!1:";"===c?o||l():"\n"===c&&l()}return r.trim(s)}},function(e,t,n){var r=n(38).FilterCSS,o=n(58),i=n(61),a=i.parseTag,s=i.parseAttr,l=n(39);function c(e){return null==e}function u(e){(e=function(e){var t={};for(var n in e)t[n]=e[n];return t}(e||{})).stripIgnoreTag&&(e.onIgnoreTag&&console.error('Notes: cannot use these two options "stripIgnoreTag" and "onIgnoreTag" at the same time'),e.onIgnoreTag=o.onIgnoreTagStripAll),e.whiteList||e.allowList?e.whiteList=function(e){var t={};for(var n in e)Array.isArray(e[n])?t[n.toLowerCase()]=e[n].map((function(e){return e.toLowerCase()})):t[n.toLowerCase()]=e[n];return t}(e.whiteList||e.allowList):e.whiteList=o.whiteList,this.attributeWrapSign=!0===e.singleQuotedAttributeValue?"'":o.attributeWrapSign,e.onTag=e.onTag||o.onTag,e.onTagAttr=e.onTagAttr||o.onTagAttr,e.onIgnoreTag=e.onIgnoreTag||o.onIgnoreTag,e.onIgnoreTagAttr=e.onIgnoreTagAttr||o.onIgnoreTagAttr,e.safeAttrValue=e.safeAttrValue||o.safeAttrValue,e.escapeHtml=e.escapeHtml||o.escapeHtml,this.options=e,!1===e.css?this.cssFilter=!1:(e.css=e.css||{},this.cssFilter=new r(e.css))}u.prototype.process=function(e){if(!(e=(e=e||"").toString()))return"";var t=this.options,n=t.whiteList,r=t.onTag,i=t.onIgnoreTag,u=t.onTagAttr,p=t.onIgnoreTagAttr,d=t.safeAttrValue,h=t.escapeHtml,f=this.attributeWrapSign,_=this.cssFilter;t.stripBlankChar&&(e=o.stripBlankChar(e)),t.allowCommentTag||(e=o.stripCommentTag(e));var g=!1;t.stripIgnoreTagBody&&(g=o.StripTagBody(t.stripIgnoreTagBody,i),i=g.onIgnoreTag);var m=a(e,(function(e,t,o,a,g){var m={sourcePosition:e,position:t,isClosing:g,isWhite:Object.prototype.hasOwnProperty.call(n,o)},b=r(o,a,m);if(!c(b))return b;if(m.isWhite){if(m.isClosing)return"</"+o+">";var v=function(e){var t=l.spaceIndex(e);if(-1===t)return{html:"",closing:"/"===e[e.length-2]};var n="/"===(e=l.trim(e.slice(t+1,-1)))[e.length-1];return n&&(e=l.trim(e.slice(0,-1))),{html:e,closing:n}}(a),k=n[o],w=s(v.html,(function(e,t){var n=-1!==l.indexOf(k,e),r=u(o,e,t,n);return c(r)?n?(t=d(o,e,t,_))?e+"="+f+t+f:e:c(r=p(o,e,t,n))?void 0:r:r}));return a="<"+o,w&&(a+=" "+w),v.closing&&(a+=" /"),a+=">"}return c(b=i(o,a,m))?h(a):b}),h);return g&&(m=g.remove(m)),m},e.exports=u},function(e,t,n){"use strict";e.exports=n(141)},function(e,t,n){"use strict";var r=n(1),o=n(149),i=n(153),a=n(154),s=n(163),l=n(177),c=n(191),u=n(63),p=n(193),d={default:n(195),zero:n(196),commonmark:n(197)},h=/^(vbscript|javascript|file|data):/,f=/^data:image\/(gif|png|jpeg|webp);/;function _(e){var t=e.trim().toLowerCase();return!h.test(t)||!!f.test(t)}var g=["http:","https:","mailto:"];function m(e){var t=u.parse(e,!0);if(t.hostname&&(!t.protocol||g.indexOf(t.protocol)>=0))try{t.hostname=p.toASCII(t.hostname)}catch(e){}return u.encode(u.format(t))}function b(e){var t=u.parse(e,!0);if(t.hostname&&(!t.protocol||g.indexOf(t.protocol)>=0))try{t.hostname=p.toUnicode(t.hostname)}catch(e){}return u.decode(u.format(t),u.decode.defaultChars+"%")}function v(e,t){if(!(this instanceof v))return new v(e,t);t||r.isString(e)||(t=e||{},e="default"),this.inline=new l,this.block=new s,this.core=new a,this.renderer=new i,this.linkify=new c,this.validateLink=_,this.normalizeLink=m,this.normalizeLinkText=b,this.utils=r,this.helpers=r.assign({},o),this.options={},this.configure(e),t&&this.set(t)}v.prototype.set=function(e){return r.assign(this.options,e),this},v.prototype.configure=function(e){var t,n=this;if(r.isString(e)&&!(e=d[t=e]))throw new Error('Wrong `markdown-it` preset "'+t+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)})),this},v.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter((function(e){return n.indexOf(e)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},v.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter((function(e){return n.indexOf(e)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},v.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},v.prototype.parse=function(e,t){if("string"!=typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},v.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},v.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},v.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=v},function(e){e.exports=JSON.parse('{"Aacute":"ร","aacute":"รก","Abreve":"ฤ‚","abreve":"ฤƒ","ac":"โˆพ","acd":"โˆฟ","acE":"โˆพฬณ","Acirc":"ร‚","acirc":"รข","acute":"ยด","Acy":"ะ","acy":"ะฐ","AElig":"ร†","aelig":"รฆ","af":"โก","Afr":"๐”„","afr":"๐”ž","Agrave":"ร€","agrave":"ร ","alefsym":"โ„ต","aleph":"โ„ต","Alpha":"ฮ‘","alpha":"ฮฑ","Amacr":"ฤ€","amacr":"ฤ","amalg":"โจฟ","amp":"&","AMP":"&","andand":"โฉ•","And":"โฉ“","and":"โˆง","andd":"โฉœ","andslope":"โฉ˜","andv":"โฉš","ang":"โˆ ","ange":"โฆค","angle":"โˆ ","angmsdaa":"โฆจ","angmsdab":"โฆฉ","angmsdac":"โฆช","angmsdad":"โฆซ","angmsdae":"โฆฌ","angmsdaf":"โฆญ","angmsdag":"โฆฎ","angmsdah":"โฆฏ","angmsd":"โˆก","angrt":"โˆŸ","angrtvb":"โŠพ","angrtvbd":"โฆ","angsph":"โˆข","angst":"ร…","angzarr":"โผ","Aogon":"ฤ„","aogon":"ฤ…","Aopf":"๐”ธ","aopf":"๐•’","apacir":"โฉฏ","ap":"โ‰ˆ","apE":"โฉฐ","ape":"โ‰Š","apid":"โ‰‹","apos":"\'","ApplyFunction":"โก","approx":"โ‰ˆ","approxeq":"โ‰Š","Aring":"ร…","aring":"รฅ","Ascr":"๐’œ","ascr":"๐’ถ","Assign":"โ‰”","ast":"*","asymp":"โ‰ˆ","asympeq":"โ‰","Atilde":"รƒ","atilde":"รฃ","Auml":"ร„","auml":"รค","awconint":"โˆณ","awint":"โจ‘","backcong":"โ‰Œ","backepsilon":"ฯถ","backprime":"โ€ต","backsim":"โˆฝ","backsimeq":"โ‹","Backslash":"โˆ–","Barv":"โซง","barvee":"โŠฝ","barwed":"โŒ…","Barwed":"โŒ†","barwedge":"โŒ…","bbrk":"โŽต","bbrktbrk":"โŽถ","bcong":"โ‰Œ","Bcy":"ะ‘","bcy":"ะฑ","bdquo":"โ€ž","becaus":"โˆต","because":"โˆต","Because":"โˆต","bemptyv":"โฆฐ","bepsi":"ฯถ","bernou":"โ„ฌ","Bernoullis":"โ„ฌ","Beta":"ฮ’","beta":"ฮฒ","beth":"โ„ถ","between":"โ‰ฌ","Bfr":"๐”…","bfr":"๐”Ÿ","bigcap":"โ‹‚","bigcirc":"โ—ฏ","bigcup":"โ‹ƒ","bigodot":"โจ€","bigoplus":"โจ","bigotimes":"โจ‚","bigsqcup":"โจ†","bigstar":"โ˜…","bigtriangledown":"โ–ฝ","bigtriangleup":"โ–ณ","biguplus":"โจ„","bigvee":"โ‹","bigwedge":"โ‹€","bkarow":"โค","blacklozenge":"โงซ","blacksquare":"โ–ช","blacktriangle":"โ–ด","blacktriangledown":"โ–พ","blacktriangleleft":"โ—‚","blacktriangleright":"โ–ธ","blank":"โฃ","blk12":"โ–’","blk14":"โ–‘","blk34":"โ–“","block":"โ–ˆ","bne":"=โƒฅ","bnequiv":"โ‰กโƒฅ","bNot":"โซญ","bnot":"โŒ","Bopf":"๐”น","bopf":"๐•“","bot":"โŠฅ","bottom":"โŠฅ","bowtie":"โ‹ˆ","boxbox":"โง‰","boxdl":"โ”","boxdL":"โ••","boxDl":"โ•–","boxDL":"โ•—","boxdr":"โ”Œ","boxdR":"โ•’","boxDr":"โ•“","boxDR":"โ•”","boxh":"โ”€","boxH":"โ•","boxhd":"โ”ฌ","boxHd":"โ•ค","boxhD":"โ•ฅ","boxHD":"โ•ฆ","boxhu":"โ”ด","boxHu":"โ•ง","boxhU":"โ•จ","boxHU":"โ•ฉ","boxminus":"โŠŸ","boxplus":"โŠž","boxtimes":"โŠ ","boxul":"โ”˜","boxuL":"โ•›","boxUl":"โ•œ","boxUL":"โ•","boxur":"โ””","boxuR":"โ•˜","boxUr":"โ•™","boxUR":"โ•š","boxv":"โ”‚","boxV":"โ•‘","boxvh":"โ”ผ","boxvH":"โ•ช","boxVh":"โ•ซ","boxVH":"โ•ฌ","boxvl":"โ”ค","boxvL":"โ•ก","boxVl":"โ•ข","boxVL":"โ•ฃ","boxvr":"โ”œ","boxvR":"โ•ž","boxVr":"โ•Ÿ","boxVR":"โ• ","bprime":"โ€ต","breve":"ห˜","Breve":"ห˜","brvbar":"ยฆ","bscr":"๐’ท","Bscr":"โ„ฌ","bsemi":"โ","bsim":"โˆฝ","bsime":"โ‹","bsolb":"โง…","bsol":"\\\\","bsolhsub":"โŸˆ","bull":"โ€ข","bullet":"โ€ข","bump":"โ‰Ž","bumpE":"โชฎ","bumpe":"โ‰","Bumpeq":"โ‰Ž","bumpeq":"โ‰","Cacute":"ฤ†","cacute":"ฤ‡","capand":"โฉ„","capbrcup":"โฉ‰","capcap":"โฉ‹","cap":"โˆฉ","Cap":"โ‹’","capcup":"โฉ‡","capdot":"โฉ€","CapitalDifferentialD":"โ……","caps":"โˆฉ๏ธ€","caret":"โ","caron":"ห‡","Cayleys":"โ„ญ","ccaps":"โฉ","Ccaron":"ฤŒ","ccaron":"ฤ","Ccedil":"ร‡","ccedil":"รง","Ccirc":"ฤˆ","ccirc":"ฤ‰","Cconint":"โˆฐ","ccups":"โฉŒ","ccupssm":"โฉ","Cdot":"ฤŠ","cdot":"ฤ‹","cedil":"ยธ","Cedilla":"ยธ","cemptyv":"โฆฒ","cent":"ยข","centerdot":"ยท","CenterDot":"ยท","cfr":"๐” ","Cfr":"โ„ญ","CHcy":"ะง","chcy":"ั‡","check":"โœ“","checkmark":"โœ“","Chi":"ฮง","chi":"ฯ‡","circ":"ห†","circeq":"โ‰—","circlearrowleft":"โ†บ","circlearrowright":"โ†ป","circledast":"โŠ›","circledcirc":"โŠš","circleddash":"โŠ","CircleDot":"โŠ™","circledR":"ยฎ","circledS":"โ“ˆ","CircleMinus":"โŠ–","CirclePlus":"โŠ•","CircleTimes":"โŠ—","cir":"โ—‹","cirE":"โงƒ","cire":"โ‰—","cirfnint":"โจ","cirmid":"โซฏ","cirscir":"โง‚","ClockwiseContourIntegral":"โˆฒ","CloseCurlyDoubleQuote":"โ€","CloseCurlyQuote":"โ€™","clubs":"โ™ฃ","clubsuit":"โ™ฃ","colon":":","Colon":"โˆท","Colone":"โฉด","colone":"โ‰”","coloneq":"โ‰”","comma":",","commat":"@","comp":"โˆ","compfn":"โˆ˜","complement":"โˆ","complexes":"โ„‚","cong":"โ‰…","congdot":"โฉญ","Congruent":"โ‰ก","conint":"โˆฎ","Conint":"โˆฏ","ContourIntegral":"โˆฎ","copf":"๐•”","Copf":"โ„‚","coprod":"โˆ","Coproduct":"โˆ","copy":"ยฉ","COPY":"ยฉ","copysr":"โ„—","CounterClockwiseContourIntegral":"โˆณ","crarr":"โ†ต","cross":"โœ—","Cross":"โจฏ","Cscr":"๐’ž","cscr":"๐’ธ","csub":"โซ","csube":"โซ‘","csup":"โซ","csupe":"โซ’","ctdot":"โ‹ฏ","cudarrl":"โคธ","cudarrr":"โคต","cuepr":"โ‹ž","cuesc":"โ‹Ÿ","cularr":"โ†ถ","cularrp":"โคฝ","cupbrcap":"โฉˆ","cupcap":"โฉ†","CupCap":"โ‰","cup":"โˆช","Cup":"โ‹“","cupcup":"โฉŠ","cupdot":"โŠ","cupor":"โฉ…","cups":"โˆช๏ธ€","curarr":"โ†ท","curarrm":"โคผ","curlyeqprec":"โ‹ž","curlyeqsucc":"โ‹Ÿ","curlyvee":"โ‹Ž","curlywedge":"โ‹","curren":"ยค","curvearrowleft":"โ†ถ","curvearrowright":"โ†ท","cuvee":"โ‹Ž","cuwed":"โ‹","cwconint":"โˆฒ","cwint":"โˆฑ","cylcty":"โŒญ","dagger":"โ€ ","Dagger":"โ€ก","daleth":"โ„ธ","darr":"โ†“","Darr":"โ†ก","dArr":"โ‡“","dash":"โ€","Dashv":"โซค","dashv":"โŠฃ","dbkarow":"โค","dblac":"ห","Dcaron":"ฤŽ","dcaron":"ฤ","Dcy":"ะ”","dcy":"ะด","ddagger":"โ€ก","ddarr":"โ‡Š","DD":"โ……","dd":"โ…†","DDotrahd":"โค‘","ddotseq":"โฉท","deg":"ยฐ","Del":"โˆ‡","Delta":"ฮ”","delta":"ฮด","demptyv":"โฆฑ","dfisht":"โฅฟ","Dfr":"๐”‡","dfr":"๐”ก","dHar":"โฅฅ","dharl":"โ‡ƒ","dharr":"โ‡‚","DiacriticalAcute":"ยด","DiacriticalDot":"ห™","DiacriticalDoubleAcute":"ห","DiacriticalGrave":"`","DiacriticalTilde":"หœ","diam":"โ‹„","diamond":"โ‹„","Diamond":"โ‹„","diamondsuit":"โ™ฆ","diams":"โ™ฆ","die":"ยจ","DifferentialD":"โ…†","digamma":"ฯ","disin":"โ‹ฒ","div":"รท","divide":"รท","divideontimes":"โ‹‡","divonx":"โ‹‡","DJcy":"ะ‚","djcy":"ั’","dlcorn":"โŒž","dlcrop":"โŒ","dollar":"$","Dopf":"๐”ป","dopf":"๐••","Dot":"ยจ","dot":"ห™","DotDot":"โƒœ","doteq":"โ‰","doteqdot":"โ‰‘","DotEqual":"โ‰","dotminus":"โˆธ","dotplus":"โˆ”","dotsquare":"โŠก","doublebarwedge":"โŒ†","DoubleContourIntegral":"โˆฏ","DoubleDot":"ยจ","DoubleDownArrow":"โ‡“","DoubleLeftArrow":"โ‡","DoubleLeftRightArrow":"โ‡”","DoubleLeftTee":"โซค","DoubleLongLeftArrow":"โŸธ","DoubleLongLeftRightArrow":"โŸบ","DoubleLongRightArrow":"โŸน","DoubleRightArrow":"โ‡’","DoubleRightTee":"โŠจ","DoubleUpArrow":"โ‡‘","DoubleUpDownArrow":"โ‡•","DoubleVerticalBar":"โˆฅ","DownArrowBar":"โค“","downarrow":"โ†“","DownArrow":"โ†“","Downarrow":"โ‡“","DownArrowUpArrow":"โ‡ต","DownBreve":"ฬ‘","downdownarrows":"โ‡Š","downharpoonleft":"โ‡ƒ","downharpoonright":"โ‡‚","DownLeftRightVector":"โฅ","DownLeftTeeVector":"โฅž","DownLeftVectorBar":"โฅ–","DownLeftVector":"โ†ฝ","DownRightTeeVector":"โฅŸ","DownRightVectorBar":"โฅ—","DownRightVector":"โ‡","DownTeeArrow":"โ†ง","DownTee":"โŠค","drbkarow":"โค","drcorn":"โŒŸ","drcrop":"โŒŒ","Dscr":"๐’Ÿ","dscr":"๐’น","DScy":"ะ…","dscy":"ั•","dsol":"โงถ","Dstrok":"ฤ","dstrok":"ฤ‘","dtdot":"โ‹ฑ","dtri":"โ–ฟ","dtrif":"โ–พ","duarr":"โ‡ต","duhar":"โฅฏ","dwangle":"โฆฆ","DZcy":"ะ","dzcy":"ัŸ","dzigrarr":"โŸฟ","Eacute":"ร‰","eacute":"รฉ","easter":"โฉฎ","Ecaron":"ฤš","ecaron":"ฤ›","Ecirc":"รŠ","ecirc":"รช","ecir":"โ‰–","ecolon":"โ‰•","Ecy":"ะญ","ecy":"ั","eDDot":"โฉท","Edot":"ฤ–","edot":"ฤ—","eDot":"โ‰‘","ee":"โ…‡","efDot":"โ‰’","Efr":"๐”ˆ","efr":"๐”ข","eg":"โชš","Egrave":"รˆ","egrave":"รจ","egs":"โช–","egsdot":"โช˜","el":"โช™","Element":"โˆˆ","elinters":"โง","ell":"โ„“","els":"โช•","elsdot":"โช—","Emacr":"ฤ’","emacr":"ฤ“","empty":"โˆ…","emptyset":"โˆ…","EmptySmallSquare":"โ—ป","emptyv":"โˆ…","EmptyVerySmallSquare":"โ–ซ","emsp13":"โ€„","emsp14":"โ€…","emsp":"โ€ƒ","ENG":"ลŠ","eng":"ล‹","ensp":"โ€‚","Eogon":"ฤ˜","eogon":"ฤ™","Eopf":"๐”ผ","eopf":"๐•–","epar":"โ‹•","eparsl":"โงฃ","eplus":"โฉฑ","epsi":"ฮต","Epsilon":"ฮ•","epsilon":"ฮต","epsiv":"ฯต","eqcirc":"โ‰–","eqcolon":"โ‰•","eqsim":"โ‰‚","eqslantgtr":"โช–","eqslantless":"โช•","Equal":"โฉต","equals":"=","EqualTilde":"โ‰‚","equest":"โ‰Ÿ","Equilibrium":"โ‡Œ","equiv":"โ‰ก","equivDD":"โฉธ","eqvparsl":"โงฅ","erarr":"โฅฑ","erDot":"โ‰“","escr":"โ„ฏ","Escr":"โ„ฐ","esdot":"โ‰","Esim":"โฉณ","esim":"โ‰‚","Eta":"ฮ—","eta":"ฮท","ETH":"ร","eth":"รฐ","Euml":"ร‹","euml":"รซ","euro":"โ‚ฌ","excl":"!","exist":"โˆƒ","Exists":"โˆƒ","expectation":"โ„ฐ","exponentiale":"โ…‡","ExponentialE":"โ…‡","fallingdotseq":"โ‰’","Fcy":"ะค","fcy":"ั„","female":"โ™€","ffilig":"๏ฌƒ","fflig":"๏ฌ€","ffllig":"๏ฌ„","Ffr":"๐”‰","ffr":"๐”ฃ","filig":"๏ฌ","FilledSmallSquare":"โ—ผ","FilledVerySmallSquare":"โ–ช","fjlig":"fj","flat":"โ™ญ","fllig":"๏ฌ‚","fltns":"โ–ฑ","fnof":"ฦ’","Fopf":"๐”ฝ","fopf":"๐•—","forall":"โˆ€","ForAll":"โˆ€","fork":"โ‹”","forkv":"โซ™","Fouriertrf":"โ„ฑ","fpartint":"โจ","frac12":"ยฝ","frac13":"โ…“","frac14":"ยผ","frac15":"โ…•","frac16":"โ…™","frac18":"โ…›","frac23":"โ…”","frac25":"โ…–","frac34":"ยพ","frac35":"โ…—","frac38":"โ…œ","frac45":"โ…˜","frac56":"โ…š","frac58":"โ…","frac78":"โ…ž","frasl":"โ„","frown":"โŒข","fscr":"๐’ป","Fscr":"โ„ฑ","gacute":"วต","Gamma":"ฮ“","gamma":"ฮณ","Gammad":"ฯœ","gammad":"ฯ","gap":"โช†","Gbreve":"ฤž","gbreve":"ฤŸ","Gcedil":"ฤข","Gcirc":"ฤœ","gcirc":"ฤ","Gcy":"ะ“","gcy":"ะณ","Gdot":"ฤ ","gdot":"ฤก","ge":"โ‰ฅ","gE":"โ‰ง","gEl":"โชŒ","gel":"โ‹›","geq":"โ‰ฅ","geqq":"โ‰ง","geqslant":"โฉพ","gescc":"โชฉ","ges":"โฉพ","gesdot":"โช€","gesdoto":"โช‚","gesdotol":"โช„","gesl":"โ‹›๏ธ€","gesles":"โช”","Gfr":"๐”Š","gfr":"๐”ค","gg":"โ‰ซ","Gg":"โ‹™","ggg":"โ‹™","gimel":"โ„ท","GJcy":"ะƒ","gjcy":"ั“","gla":"โชฅ","gl":"โ‰ท","glE":"โช’","glj":"โชค","gnap":"โชŠ","gnapprox":"โชŠ","gne":"โชˆ","gnE":"โ‰ฉ","gneq":"โชˆ","gneqq":"โ‰ฉ","gnsim":"โ‹ง","Gopf":"๐”พ","gopf":"๐•˜","grave":"`","GreaterEqual":"โ‰ฅ","GreaterEqualLess":"โ‹›","GreaterFullEqual":"โ‰ง","GreaterGreater":"โชข","GreaterLess":"โ‰ท","GreaterSlantEqual":"โฉพ","GreaterTilde":"โ‰ณ","Gscr":"๐’ข","gscr":"โ„Š","gsim":"โ‰ณ","gsime":"โชŽ","gsiml":"โช","gtcc":"โชง","gtcir":"โฉบ","gt":">","GT":">","Gt":"โ‰ซ","gtdot":"โ‹—","gtlPar":"โฆ•","gtquest":"โฉผ","gtrapprox":"โช†","gtrarr":"โฅธ","gtrdot":"โ‹—","gtreqless":"โ‹›","gtreqqless":"โชŒ","gtrless":"โ‰ท","gtrsim":"โ‰ณ","gvertneqq":"โ‰ฉ๏ธ€","gvnE":"โ‰ฉ๏ธ€","Hacek":"ห‡","hairsp":"โ€Š","half":"ยฝ","hamilt":"โ„‹","HARDcy":"ะช","hardcy":"ัŠ","harrcir":"โฅˆ","harr":"โ†”","hArr":"โ‡”","harrw":"โ†ญ","Hat":"^","hbar":"โ„","Hcirc":"ฤค","hcirc":"ฤฅ","hearts":"โ™ฅ","heartsuit":"โ™ฅ","hellip":"โ€ฆ","hercon":"โŠน","hfr":"๐”ฅ","Hfr":"โ„Œ","HilbertSpace":"โ„‹","hksearow":"โคฅ","hkswarow":"โคฆ","hoarr":"โ‡ฟ","homtht":"โˆป","hookleftarrow":"โ†ฉ","hookrightarrow":"โ†ช","hopf":"๐•™","Hopf":"โ„","horbar":"โ€•","HorizontalLine":"โ”€","hscr":"๐’ฝ","Hscr":"โ„‹","hslash":"โ„","Hstrok":"ฤฆ","hstrok":"ฤง","HumpDownHump":"โ‰Ž","HumpEqual":"โ‰","hybull":"โƒ","hyphen":"โ€","Iacute":"ร","iacute":"รญ","ic":"โฃ","Icirc":"รŽ","icirc":"รฎ","Icy":"ะ˜","icy":"ะธ","Idot":"ฤฐ","IEcy":"ะ•","iecy":"ะต","iexcl":"ยก","iff":"โ‡”","ifr":"๐”ฆ","Ifr":"โ„‘","Igrave":"รŒ","igrave":"รฌ","ii":"โ…ˆ","iiiint":"โจŒ","iiint":"โˆญ","iinfin":"โงœ","iiota":"โ„ฉ","IJlig":"ฤฒ","ijlig":"ฤณ","Imacr":"ฤช","imacr":"ฤซ","image":"โ„‘","ImaginaryI":"โ…ˆ","imagline":"โ„","imagpart":"โ„‘","imath":"ฤฑ","Im":"โ„‘","imof":"โŠท","imped":"ฦต","Implies":"โ‡’","incare":"โ„…","in":"โˆˆ","infin":"โˆž","infintie":"โง","inodot":"ฤฑ","intcal":"โŠบ","int":"โˆซ","Int":"โˆฌ","integers":"โ„ค","Integral":"โˆซ","intercal":"โŠบ","Intersection":"โ‹‚","intlarhk":"โจ—","intprod":"โจผ","InvisibleComma":"โฃ","InvisibleTimes":"โข","IOcy":"ะ","iocy":"ั‘","Iogon":"ฤฎ","iogon":"ฤฏ","Iopf":"๐•€","iopf":"๐•š","Iota":"ฮ™","iota":"ฮน","iprod":"โจผ","iquest":"ยฟ","iscr":"๐’พ","Iscr":"โ„","isin":"โˆˆ","isindot":"โ‹ต","isinE":"โ‹น","isins":"โ‹ด","isinsv":"โ‹ณ","isinv":"โˆˆ","it":"โข","Itilde":"ฤจ","itilde":"ฤฉ","Iukcy":"ะ†","iukcy":"ั–","Iuml":"ร","iuml":"รฏ","Jcirc":"ฤด","jcirc":"ฤต","Jcy":"ะ™","jcy":"ะน","Jfr":"๐”","jfr":"๐”ง","jmath":"ศท","Jopf":"๐•","jopf":"๐•›","Jscr":"๐’ฅ","jscr":"๐’ฟ","Jsercy":"ะˆ","jsercy":"ั˜","Jukcy":"ะ„","jukcy":"ั”","Kappa":"ฮš","kappa":"ฮบ","kappav":"ฯฐ","Kcedil":"ฤถ","kcedil":"ฤท","Kcy":"ะš","kcy":"ะบ","Kfr":"๐”Ž","kfr":"๐”จ","kgreen":"ฤธ","KHcy":"ะฅ","khcy":"ั…","KJcy":"ะŒ","kjcy":"ัœ","Kopf":"๐•‚","kopf":"๐•œ","Kscr":"๐’ฆ","kscr":"๐“€","lAarr":"โ‡š","Lacute":"ฤน","lacute":"ฤบ","laemptyv":"โฆด","lagran":"โ„’","Lambda":"ฮ›","lambda":"ฮป","lang":"โŸจ","Lang":"โŸช","langd":"โฆ‘","langle":"โŸจ","lap":"โช…","Laplacetrf":"โ„’","laquo":"ยซ","larrb":"โ‡ค","larrbfs":"โคŸ","larr":"โ†","Larr":"โ†ž","lArr":"โ‡","larrfs":"โค","larrhk":"โ†ฉ","larrlp":"โ†ซ","larrpl":"โคน","larrsim":"โฅณ","larrtl":"โ†ข","latail":"โค™","lAtail":"โค›","lat":"โชซ","late":"โชญ","lates":"โชญ๏ธ€","lbarr":"โคŒ","lBarr":"โคŽ","lbbrk":"โฒ","lbrace":"{","lbrack":"[","lbrke":"โฆ‹","lbrksld":"โฆ","lbrkslu":"โฆ","Lcaron":"ฤฝ","lcaron":"ฤพ","Lcedil":"ฤป","lcedil":"ฤผ","lceil":"โŒˆ","lcub":"{","Lcy":"ะ›","lcy":"ะป","ldca":"โคถ","ldquo":"โ€œ","ldquor":"โ€ž","ldrdhar":"โฅง","ldrushar":"โฅ‹","ldsh":"โ†ฒ","le":"โ‰ค","lE":"โ‰ฆ","LeftAngleBracket":"โŸจ","LeftArrowBar":"โ‡ค","leftarrow":"โ†","LeftArrow":"โ†","Leftarrow":"โ‡","LeftArrowRightArrow":"โ‡†","leftarrowtail":"โ†ข","LeftCeiling":"โŒˆ","LeftDoubleBracket":"โŸฆ","LeftDownTeeVector":"โฅก","LeftDownVectorBar":"โฅ™","LeftDownVector":"โ‡ƒ","LeftFloor":"โŒŠ","leftharpoondown":"โ†ฝ","leftharpoonup":"โ†ผ","leftleftarrows":"โ‡‡","leftrightarrow":"โ†”","LeftRightArrow":"โ†”","Leftrightarrow":"โ‡”","leftrightarrows":"โ‡†","leftrightharpoons":"โ‡‹","leftrightsquigarrow":"โ†ญ","LeftRightVector":"โฅŽ","LeftTeeArrow":"โ†ค","LeftTee":"โŠฃ","LeftTeeVector":"โฅš","leftthreetimes":"โ‹‹","LeftTriangleBar":"โง","LeftTriangle":"โŠฒ","LeftTriangleEqual":"โŠด","LeftUpDownVector":"โฅ‘","LeftUpTeeVector":"โฅ ","LeftUpVectorBar":"โฅ˜","LeftUpVector":"โ†ฟ","LeftVectorBar":"โฅ’","LeftVector":"โ†ผ","lEg":"โช‹","leg":"โ‹š","leq":"โ‰ค","leqq":"โ‰ฆ","leqslant":"โฉฝ","lescc":"โชจ","les":"โฉฝ","lesdot":"โฉฟ","lesdoto":"โช","lesdotor":"โชƒ","lesg":"โ‹š๏ธ€","lesges":"โช“","lessapprox":"โช…","lessdot":"โ‹–","lesseqgtr":"โ‹š","lesseqqgtr":"โช‹","LessEqualGreater":"โ‹š","LessFullEqual":"โ‰ฆ","LessGreater":"โ‰ถ","lessgtr":"โ‰ถ","LessLess":"โชก","lesssim":"โ‰ฒ","LessSlantEqual":"โฉฝ","LessTilde":"โ‰ฒ","lfisht":"โฅผ","lfloor":"โŒŠ","Lfr":"๐”","lfr":"๐”ฉ","lg":"โ‰ถ","lgE":"โช‘","lHar":"โฅข","lhard":"โ†ฝ","lharu":"โ†ผ","lharul":"โฅช","lhblk":"โ–„","LJcy":"ะ‰","ljcy":"ั™","llarr":"โ‡‡","ll":"โ‰ช","Ll":"โ‹˜","llcorner":"โŒž","Lleftarrow":"โ‡š","llhard":"โฅซ","lltri":"โ—บ","Lmidot":"ฤฟ","lmidot":"ล€","lmoustache":"โŽฐ","lmoust":"โŽฐ","lnap":"โช‰","lnapprox":"โช‰","lne":"โช‡","lnE":"โ‰จ","lneq":"โช‡","lneqq":"โ‰จ","lnsim":"โ‹ฆ","loang":"โŸฌ","loarr":"โ‡ฝ","lobrk":"โŸฆ","longleftarrow":"โŸต","LongLeftArrow":"โŸต","Longleftarrow":"โŸธ","longleftrightarrow":"โŸท","LongLeftRightArrow":"โŸท","Longleftrightarrow":"โŸบ","longmapsto":"โŸผ","longrightarrow":"โŸถ","LongRightArrow":"โŸถ","Longrightarrow":"โŸน","looparrowleft":"โ†ซ","looparrowright":"โ†ฌ","lopar":"โฆ…","Lopf":"๐•ƒ","lopf":"๐•","loplus":"โจญ","lotimes":"โจด","lowast":"โˆ—","lowbar":"_","LowerLeftArrow":"โ†™","LowerRightArrow":"โ†˜","loz":"โ—Š","lozenge":"โ—Š","lozf":"โงซ","lpar":"(","lparlt":"โฆ“","lrarr":"โ‡†","lrcorner":"โŒŸ","lrhar":"โ‡‹","lrhard":"โฅญ","lrm":"โ€Ž","lrtri":"โŠฟ","lsaquo":"โ€น","lscr":"๐“","Lscr":"โ„’","lsh":"โ†ฐ","Lsh":"โ†ฐ","lsim":"โ‰ฒ","lsime":"โช","lsimg":"โช","lsqb":"[","lsquo":"โ€˜","lsquor":"โ€š","Lstrok":"ล","lstrok":"ล‚","ltcc":"โชฆ","ltcir":"โฉน","lt":"<","LT":"<","Lt":"โ‰ช","ltdot":"โ‹–","lthree":"โ‹‹","ltimes":"โ‹‰","ltlarr":"โฅถ","ltquest":"โฉป","ltri":"โ—ƒ","ltrie":"โŠด","ltrif":"โ—‚","ltrPar":"โฆ–","lurdshar":"โฅŠ","luruhar":"โฅฆ","lvertneqq":"โ‰จ๏ธ€","lvnE":"โ‰จ๏ธ€","macr":"ยฏ","male":"โ™‚","malt":"โœ ","maltese":"โœ ","Map":"โค…","map":"โ†ฆ","mapsto":"โ†ฆ","mapstodown":"โ†ง","mapstoleft":"โ†ค","mapstoup":"โ†ฅ","marker":"โ–ฎ","mcomma":"โจฉ","Mcy":"ะœ","mcy":"ะผ","mdash":"โ€”","mDDot":"โˆบ","measuredangle":"โˆก","MediumSpace":"โŸ","Mellintrf":"โ„ณ","Mfr":"๐”","mfr":"๐”ช","mho":"โ„ง","micro":"ยต","midast":"*","midcir":"โซฐ","mid":"โˆฃ","middot":"ยท","minusb":"โŠŸ","minus":"โˆ’","minusd":"โˆธ","minusdu":"โจช","MinusPlus":"โˆ“","mlcp":"โซ›","mldr":"โ€ฆ","mnplus":"โˆ“","models":"โŠง","Mopf":"๐•„","mopf":"๐•ž","mp":"โˆ“","mscr":"๐“‚","Mscr":"โ„ณ","mstpos":"โˆพ","Mu":"ฮœ","mu":"ฮผ","multimap":"โŠธ","mumap":"โŠธ","nabla":"โˆ‡","Nacute":"ลƒ","nacute":"ล„","nang":"โˆ โƒ’","nap":"โ‰‰","napE":"โฉฐฬธ","napid":"โ‰‹ฬธ","napos":"ล‰","napprox":"โ‰‰","natural":"โ™ฎ","naturals":"โ„•","natur":"โ™ฎ","nbsp":"ย ","nbump":"โ‰Žฬธ","nbumpe":"โ‰ฬธ","ncap":"โฉƒ","Ncaron":"ล‡","ncaron":"ลˆ","Ncedil":"ล…","ncedil":"ล†","ncong":"โ‰‡","ncongdot":"โฉญฬธ","ncup":"โฉ‚","Ncy":"ะ","ncy":"ะฝ","ndash":"โ€“","nearhk":"โคค","nearr":"โ†—","neArr":"โ‡—","nearrow":"โ†—","ne":"โ‰ ","nedot":"โ‰ฬธ","NegativeMediumSpace":"โ€‹","NegativeThickSpace":"โ€‹","NegativeThinSpace":"โ€‹","NegativeVeryThinSpace":"โ€‹","nequiv":"โ‰ข","nesear":"โคจ","nesim":"โ‰‚ฬธ","NestedGreaterGreater":"โ‰ซ","NestedLessLess":"โ‰ช","NewLine":"\\n","nexist":"โˆ„","nexists":"โˆ„","Nfr":"๐”‘","nfr":"๐”ซ","ngE":"โ‰งฬธ","nge":"โ‰ฑ","ngeq":"โ‰ฑ","ngeqq":"โ‰งฬธ","ngeqslant":"โฉพฬธ","nges":"โฉพฬธ","nGg":"โ‹™ฬธ","ngsim":"โ‰ต","nGt":"โ‰ซโƒ’","ngt":"โ‰ฏ","ngtr":"โ‰ฏ","nGtv":"โ‰ซฬธ","nharr":"โ†ฎ","nhArr":"โ‡Ž","nhpar":"โซฒ","ni":"โˆ‹","nis":"โ‹ผ","nisd":"โ‹บ","niv":"โˆ‹","NJcy":"ะŠ","njcy":"ัš","nlarr":"โ†š","nlArr":"โ‡","nldr":"โ€ฅ","nlE":"โ‰ฆฬธ","nle":"โ‰ฐ","nleftarrow":"โ†š","nLeftarrow":"โ‡","nleftrightarrow":"โ†ฎ","nLeftrightarrow":"โ‡Ž","nleq":"โ‰ฐ","nleqq":"โ‰ฆฬธ","nleqslant":"โฉฝฬธ","nles":"โฉฝฬธ","nless":"โ‰ฎ","nLl":"โ‹˜ฬธ","nlsim":"โ‰ด","nLt":"โ‰ชโƒ’","nlt":"โ‰ฎ","nltri":"โ‹ช","nltrie":"โ‹ฌ","nLtv":"โ‰ชฬธ","nmid":"โˆค","NoBreak":"โ ","NonBreakingSpace":"ย ","nopf":"๐•Ÿ","Nopf":"โ„•","Not":"โซฌ","not":"ยฌ","NotCongruent":"โ‰ข","NotCupCap":"โ‰ญ","NotDoubleVerticalBar":"โˆฆ","NotElement":"โˆ‰","NotEqual":"โ‰ ","NotEqualTilde":"โ‰‚ฬธ","NotExists":"โˆ„","NotGreater":"โ‰ฏ","NotGreaterEqual":"โ‰ฑ","NotGreaterFullEqual":"โ‰งฬธ","NotGreaterGreater":"โ‰ซฬธ","NotGreaterLess":"โ‰น","NotGreaterSlantEqual":"โฉพฬธ","NotGreaterTilde":"โ‰ต","NotHumpDownHump":"โ‰Žฬธ","NotHumpEqual":"โ‰ฬธ","notin":"โˆ‰","notindot":"โ‹ตฬธ","notinE":"โ‹นฬธ","notinva":"โˆ‰","notinvb":"โ‹ท","notinvc":"โ‹ถ","NotLeftTriangleBar":"โงฬธ","NotLeftTriangle":"โ‹ช","NotLeftTriangleEqual":"โ‹ฌ","NotLess":"โ‰ฎ","NotLessEqual":"โ‰ฐ","NotLessGreater":"โ‰ธ","NotLessLess":"โ‰ชฬธ","NotLessSlantEqual":"โฉฝฬธ","NotLessTilde":"โ‰ด","NotNestedGreaterGreater":"โชขฬธ","NotNestedLessLess":"โชกฬธ","notni":"โˆŒ","notniva":"โˆŒ","notnivb":"โ‹พ","notnivc":"โ‹ฝ","NotPrecedes":"โŠ€","NotPrecedesEqual":"โชฏฬธ","NotPrecedesSlantEqual":"โ‹ ","NotReverseElement":"โˆŒ","NotRightTriangleBar":"โงฬธ","NotRightTriangle":"โ‹ซ","NotRightTriangleEqual":"โ‹ญ","NotSquareSubset":"โŠฬธ","NotSquareSubsetEqual":"โ‹ข","NotSquareSuperset":"โАฬธ","NotSquareSupersetEqual":"โ‹ฃ","NotSubset":"โŠ‚โƒ’","NotSubsetEqual":"โŠˆ","NotSucceeds":"โЁ","NotSucceedsEqual":"โชฐฬธ","NotSucceedsSlantEqual":"โ‹ก","NotSucceedsTilde":"โ‰ฟฬธ","NotSuperset":"โŠƒโƒ’","NotSupersetEqual":"โЉ","NotTilde":"โ‰","NotTildeEqual":"โ‰„","NotTildeFullEqual":"โ‰‡","NotTildeTilde":"โ‰‰","NotVerticalBar":"โˆค","nparallel":"โˆฆ","npar":"โˆฆ","nparsl":"โซฝโƒฅ","npart":"โˆ‚ฬธ","npolint":"โจ”","npr":"โŠ€","nprcue":"โ‹ ","nprec":"โŠ€","npreceq":"โชฏฬธ","npre":"โชฏฬธ","nrarrc":"โคณฬธ","nrarr":"โ†›","nrArr":"โ‡","nrarrw":"โ†ฬธ","nrightarrow":"โ†›","nRightarrow":"โ‡","nrtri":"โ‹ซ","nrtrie":"โ‹ญ","nsc":"โЁ","nsccue":"โ‹ก","nsce":"โชฐฬธ","Nscr":"๐’ฉ","nscr":"๐“ƒ","nshortmid":"โˆค","nshortparallel":"โˆฆ","nsim":"โ‰","nsime":"โ‰„","nsimeq":"โ‰„","nsmid":"โˆค","nspar":"โˆฆ","nsqsube":"โ‹ข","nsqsupe":"โ‹ฃ","nsub":"โŠ„","nsubE":"โซ…ฬธ","nsube":"โŠˆ","nsubset":"โŠ‚โƒ’","nsubseteq":"โŠˆ","nsubseteqq":"โซ…ฬธ","nsucc":"โЁ","nsucceq":"โชฐฬธ","nsup":"โŠ…","nsupE":"โซ†ฬธ","nsupe":"โЉ","nsupset":"โŠƒโƒ’","nsupseteq":"โЉ","nsupseteqq":"โซ†ฬธ","ntgl":"โ‰น","Ntilde":"ร‘","ntilde":"รฑ","ntlg":"โ‰ธ","ntriangleleft":"โ‹ช","ntrianglelefteq":"โ‹ฌ","ntriangleright":"โ‹ซ","ntrianglerighteq":"โ‹ญ","Nu":"ฮ","nu":"ฮฝ","num":"#","numero":"โ„–","numsp":"โ€‡","nvap":"โ‰โƒ’","nvdash":"โŠฌ","nvDash":"โŠญ","nVdash":"โŠฎ","nVDash":"โŠฏ","nvge":"โ‰ฅโƒ’","nvgt":">โƒ’","nvHarr":"โค„","nvinfin":"โงž","nvlArr":"โค‚","nvle":"โ‰คโƒ’","nvlt":"<โƒ’","nvltrie":"โŠดโƒ’","nvrArr":"โคƒ","nvrtrie":"โŠตโƒ’","nvsim":"โˆผโƒ’","nwarhk":"โคฃ","nwarr":"โ†–","nwArr":"โ‡–","nwarrow":"โ†–","nwnear":"โคง","Oacute":"ร“","oacute":"รณ","oast":"โŠ›","Ocirc":"ร”","ocirc":"รด","ocir":"โŠš","Ocy":"ะž","ocy":"ะพ","odash":"โŠ","Odblac":"ล","odblac":"ล‘","odiv":"โจธ","odot":"โŠ™","odsold":"โฆผ","OElig":"ล’","oelig":"ล“","ofcir":"โฆฟ","Ofr":"๐”’","ofr":"๐”ฌ","ogon":"ห›","Ograve":"ร’","ograve":"รฒ","ogt":"โง","ohbar":"โฆต","ohm":"ฮฉ","oint":"โˆฎ","olarr":"โ†บ","olcir":"โฆพ","olcross":"โฆป","oline":"โ€พ","olt":"โง€","Omacr":"ลŒ","omacr":"ล","Omega":"ฮฉ","omega":"ฯ‰","Omicron":"ฮŸ","omicron":"ฮฟ","omid":"โฆถ","ominus":"โŠ–","Oopf":"๐•†","oopf":"๐• ","opar":"โฆท","OpenCurlyDoubleQuote":"โ€œ","OpenCurlyQuote":"โ€˜","operp":"โฆน","oplus":"โŠ•","orarr":"โ†ป","Or":"โฉ”","or":"โˆจ","ord":"โฉ","order":"โ„ด","orderof":"โ„ด","ordf":"ยช","ordm":"ยบ","origof":"โŠถ","oror":"โฉ–","orslope":"โฉ—","orv":"โฉ›","oS":"โ“ˆ","Oscr":"๐’ช","oscr":"โ„ด","Oslash":"ร˜","oslash":"รธ","osol":"โŠ˜","Otilde":"ร•","otilde":"รต","otimesas":"โจถ","Otimes":"โจท","otimes":"โŠ—","Ouml":"ร–","ouml":"รถ","ovbar":"โŒฝ","OverBar":"โ€พ","OverBrace":"โž","OverBracket":"โŽด","OverParenthesis":"โœ","para":"ยถ","parallel":"โˆฅ","par":"โˆฅ","parsim":"โซณ","parsl":"โซฝ","part":"โˆ‚","PartialD":"โˆ‚","Pcy":"ะŸ","pcy":"ะฟ","percnt":"%","period":".","permil":"โ€ฐ","perp":"โŠฅ","pertenk":"โ€ฑ","Pfr":"๐”“","pfr":"๐”ญ","Phi":"ฮฆ","phi":"ฯ†","phiv":"ฯ•","phmmat":"โ„ณ","phone":"โ˜Ž","Pi":"ฮ ","pi":"ฯ€","pitchfork":"โ‹”","piv":"ฯ–","planck":"โ„","planckh":"โ„Ž","plankv":"โ„","plusacir":"โจฃ","plusb":"โŠž","pluscir":"โจข","plus":"+","plusdo":"โˆ”","plusdu":"โจฅ","pluse":"โฉฒ","PlusMinus":"ยฑ","plusmn":"ยฑ","plussim":"โจฆ","plustwo":"โจง","pm":"ยฑ","Poincareplane":"โ„Œ","pointint":"โจ•","popf":"๐•ก","Popf":"โ„™","pound":"ยฃ","prap":"โชท","Pr":"โชป","pr":"โ‰บ","prcue":"โ‰ผ","precapprox":"โชท","prec":"โ‰บ","preccurlyeq":"โ‰ผ","Precedes":"โ‰บ","PrecedesEqual":"โชฏ","PrecedesSlantEqual":"โ‰ผ","PrecedesTilde":"โ‰พ","preceq":"โชฏ","precnapprox":"โชน","precneqq":"โชต","precnsim":"โ‹จ","pre":"โชฏ","prE":"โชณ","precsim":"โ‰พ","prime":"โ€ฒ","Prime":"โ€ณ","primes":"โ„™","prnap":"โชน","prnE":"โชต","prnsim":"โ‹จ","prod":"โˆ","Product":"โˆ","profalar":"โŒฎ","profline":"โŒ’","profsurf":"โŒ“","prop":"โˆ","Proportional":"โˆ","Proportion":"โˆท","propto":"โˆ","prsim":"โ‰พ","prurel":"โŠฐ","Pscr":"๐’ซ","pscr":"๐“…","Psi":"ฮจ","psi":"ฯˆ","puncsp":"โ€ˆ","Qfr":"๐””","qfr":"๐”ฎ","qint":"โจŒ","qopf":"๐•ข","Qopf":"โ„š","qprime":"โ—","Qscr":"๐’ฌ","qscr":"๐“†","quaternions":"โ„","quatint":"โจ–","quest":"?","questeq":"โ‰Ÿ","quot":"\\"","QUOT":"\\"","rAarr":"โ‡›","race":"โˆฝฬฑ","Racute":"ล”","racute":"ล•","radic":"โˆš","raemptyv":"โฆณ","rang":"โŸฉ","Rang":"โŸซ","rangd":"โฆ’","range":"โฆฅ","rangle":"โŸฉ","raquo":"ยป","rarrap":"โฅต","rarrb":"โ‡ฅ","rarrbfs":"โค ","rarrc":"โคณ","rarr":"โ†’","Rarr":"โ† ","rArr":"โ‡’","rarrfs":"โคž","rarrhk":"โ†ช","rarrlp":"โ†ฌ","rarrpl":"โฅ…","rarrsim":"โฅด","Rarrtl":"โค–","rarrtl":"โ†ฃ","rarrw":"โ†","ratail":"โคš","rAtail":"โคœ","ratio":"โˆถ","rationals":"โ„š","rbarr":"โค","rBarr":"โค","RBarr":"โค","rbbrk":"โณ","rbrace":"}","rbrack":"]","rbrke":"โฆŒ","rbrksld":"โฆŽ","rbrkslu":"โฆ","Rcaron":"ล˜","rcaron":"ล™","Rcedil":"ล–","rcedil":"ล—","rceil":"โŒ‰","rcub":"}","Rcy":"ะ ","rcy":"ั€","rdca":"โคท","rdldhar":"โฅฉ","rdquo":"โ€","rdquor":"โ€","rdsh":"โ†ณ","real":"โ„œ","realine":"โ„›","realpart":"โ„œ","reals":"โ„","Re":"โ„œ","rect":"โ–ญ","reg":"ยฎ","REG":"ยฎ","ReverseElement":"โˆ‹","ReverseEquilibrium":"โ‡‹","ReverseUpEquilibrium":"โฅฏ","rfisht":"โฅฝ","rfloor":"โŒ‹","rfr":"๐”ฏ","Rfr":"โ„œ","rHar":"โฅค","rhard":"โ‡","rharu":"โ‡€","rharul":"โฅฌ","Rho":"ฮก","rho":"ฯ","rhov":"ฯฑ","RightAngleBracket":"โŸฉ","RightArrowBar":"โ‡ฅ","rightarrow":"โ†’","RightArrow":"โ†’","Rightarrow":"โ‡’","RightArrowLeftArrow":"โ‡„","rightarrowtail":"โ†ฃ","RightCeiling":"โŒ‰","RightDoubleBracket":"โŸง","RightDownTeeVector":"โฅ","RightDownVectorBar":"โฅ•","RightDownVector":"โ‡‚","RightFloor":"โŒ‹","rightharpoondown":"โ‡","rightharpoonup":"โ‡€","rightleftarrows":"โ‡„","rightleftharpoons":"โ‡Œ","rightrightarrows":"โ‡‰","rightsquigarrow":"โ†","RightTeeArrow":"โ†ฆ","RightTee":"โŠข","RightTeeVector":"โฅ›","rightthreetimes":"โ‹Œ","RightTriangleBar":"โง","RightTriangle":"โŠณ","RightTriangleEqual":"โŠต","RightUpDownVector":"โฅ","RightUpTeeVector":"โฅœ","RightUpVectorBar":"โฅ”","RightUpVector":"โ†พ","RightVectorBar":"โฅ“","RightVector":"โ‡€","ring":"หš","risingdotseq":"โ‰“","rlarr":"โ‡„","rlhar":"โ‡Œ","rlm":"โ€","rmoustache":"โŽฑ","rmoust":"โŽฑ","rnmid":"โซฎ","roang":"โŸญ","roarr":"โ‡พ","robrk":"โŸง","ropar":"โฆ†","ropf":"๐•ฃ","Ropf":"โ„","roplus":"โจฎ","rotimes":"โจต","RoundImplies":"โฅฐ","rpar":")","rpargt":"โฆ”","rppolint":"โจ’","rrarr":"โ‡‰","Rrightarrow":"โ‡›","rsaquo":"โ€บ","rscr":"๐“‡","Rscr":"โ„›","rsh":"โ†ฑ","Rsh":"โ†ฑ","rsqb":"]","rsquo":"โ€™","rsquor":"โ€™","rthree":"โ‹Œ","rtimes":"โ‹Š","rtri":"โ–น","rtrie":"โŠต","rtrif":"โ–ธ","rtriltri":"โงŽ","RuleDelayed":"โงด","ruluhar":"โฅจ","rx":"โ„ž","Sacute":"ลš","sacute":"ล›","sbquo":"โ€š","scap":"โชธ","Scaron":"ล ","scaron":"ลก","Sc":"โชผ","sc":"โ‰ป","sccue":"โ‰ฝ","sce":"โชฐ","scE":"โชด","Scedil":"ลž","scedil":"ลŸ","Scirc":"ลœ","scirc":"ล","scnap":"โชบ","scnE":"โชถ","scnsim":"โ‹ฉ","scpolint":"โจ“","scsim":"โ‰ฟ","Scy":"ะก","scy":"ั","sdotb":"โŠก","sdot":"โ‹…","sdote":"โฉฆ","searhk":"โคฅ","searr":"โ†˜","seArr":"โ‡˜","searrow":"โ†˜","sect":"ยง","semi":";","seswar":"โคฉ","setminus":"โˆ–","setmn":"โˆ–","sext":"โœถ","Sfr":"๐”–","sfr":"๐”ฐ","sfrown":"โŒข","sharp":"โ™ฏ","SHCHcy":"ะฉ","shchcy":"ั‰","SHcy":"ะจ","shcy":"ัˆ","ShortDownArrow":"โ†“","ShortLeftArrow":"โ†","shortmid":"โˆฃ","shortparallel":"โˆฅ","ShortRightArrow":"โ†’","ShortUpArrow":"โ†‘","shy":"ยญ","Sigma":"ฮฃ","sigma":"ฯƒ","sigmaf":"ฯ‚","sigmav":"ฯ‚","sim":"โˆผ","simdot":"โฉช","sime":"โ‰ƒ","simeq":"โ‰ƒ","simg":"โชž","simgE":"โช ","siml":"โช","simlE":"โชŸ","simne":"โ‰†","simplus":"โจค","simrarr":"โฅฒ","slarr":"โ†","SmallCircle":"โˆ˜","smallsetminus":"โˆ–","smashp":"โจณ","smeparsl":"โงค","smid":"โˆฃ","smile":"โŒฃ","smt":"โชช","smte":"โชฌ","smtes":"โชฌ๏ธ€","SOFTcy":"ะฌ","softcy":"ัŒ","solbar":"โŒฟ","solb":"โง„","sol":"/","Sopf":"๐•Š","sopf":"๐•ค","spades":"โ™ ","spadesuit":"โ™ ","spar":"โˆฅ","sqcap":"โŠ“","sqcaps":"โŠ“๏ธ€","sqcup":"โŠ”","sqcups":"โŠ”๏ธ€","Sqrt":"โˆš","sqsub":"โŠ","sqsube":"โŠ‘","sqsubset":"โŠ","sqsubseteq":"โŠ‘","sqsup":"โА","sqsupe":"โŠ’","sqsupset":"โА","sqsupseteq":"โŠ’","square":"โ–ก","Square":"โ–ก","SquareIntersection":"โŠ“","SquareSubset":"โŠ","SquareSubsetEqual":"โŠ‘","SquareSuperset":"โА","SquareSupersetEqual":"โŠ’","SquareUnion":"โŠ”","squarf":"โ–ช","squ":"โ–ก","squf":"โ–ช","srarr":"โ†’","Sscr":"๐’ฎ","sscr":"๐“ˆ","ssetmn":"โˆ–","ssmile":"โŒฃ","sstarf":"โ‹†","Star":"โ‹†","star":"โ˜†","starf":"โ˜…","straightepsilon":"ฯต","straightphi":"ฯ•","strns":"ยฏ","sub":"โŠ‚","Sub":"โ‹","subdot":"โชฝ","subE":"โซ…","sube":"โІ","subedot":"โซƒ","submult":"โซ","subnE":"โซ‹","subne":"โŠŠ","subplus":"โชฟ","subrarr":"โฅน","subset":"โŠ‚","Subset":"โ‹","subseteq":"โІ","subseteqq":"โซ…","SubsetEqual":"โІ","subsetneq":"โŠŠ","subsetneqq":"โซ‹","subsim":"โซ‡","subsub":"โซ•","subsup":"โซ“","succapprox":"โชธ","succ":"โ‰ป","succcurlyeq":"โ‰ฝ","Succeeds":"โ‰ป","SucceedsEqual":"โชฐ","SucceedsSlantEqual":"โ‰ฝ","SucceedsTilde":"โ‰ฟ","succeq":"โชฐ","succnapprox":"โชบ","succneqq":"โชถ","succnsim":"โ‹ฉ","succsim":"โ‰ฟ","SuchThat":"โˆ‹","sum":"โˆ‘","Sum":"โˆ‘","sung":"โ™ช","sup1":"ยน","sup2":"ยฒ","sup3":"ยณ","sup":"โŠƒ","Sup":"โ‹‘","supdot":"โชพ","supdsub":"โซ˜","supE":"โซ†","supe":"โЇ","supedot":"โซ„","Superset":"โŠƒ","SupersetEqual":"โЇ","suphsol":"โŸ‰","suphsub":"โซ—","suplarr":"โฅป","supmult":"โซ‚","supnE":"โซŒ","supne":"โŠ‹","supplus":"โซ€","supset":"โŠƒ","Supset":"โ‹‘","supseteq":"โЇ","supseteqq":"โซ†","supsetneq":"โŠ‹","supsetneqq":"โซŒ","supsim":"โซˆ","supsub":"โซ”","supsup":"โซ–","swarhk":"โคฆ","swarr":"โ†™","swArr":"โ‡™","swarrow":"โ†™","swnwar":"โคช","szlig":"รŸ","Tab":"\\t","target":"โŒ–","Tau":"ฮค","tau":"ฯ„","tbrk":"โŽด","Tcaron":"ลค","tcaron":"ลฅ","Tcedil":"ลข","tcedil":"ลฃ","Tcy":"ะข","tcy":"ั‚","tdot":"โƒ›","telrec":"โŒ•","Tfr":"๐”—","tfr":"๐”ฑ","there4":"โˆด","therefore":"โˆด","Therefore":"โˆด","Theta":"ฮ˜","theta":"ฮธ","thetasym":"ฯ‘","thetav":"ฯ‘","thickapprox":"โ‰ˆ","thicksim":"โˆผ","ThickSpace":"โŸโ€Š","ThinSpace":"โ€‰","thinsp":"โ€‰","thkap":"โ‰ˆ","thksim":"โˆผ","THORN":"รž","thorn":"รพ","tilde":"หœ","Tilde":"โˆผ","TildeEqual":"โ‰ƒ","TildeFullEqual":"โ‰…","TildeTilde":"โ‰ˆ","timesbar":"โจฑ","timesb":"โŠ ","times":"ร—","timesd":"โจฐ","tint":"โˆญ","toea":"โคจ","topbot":"โŒถ","topcir":"โซฑ","top":"โŠค","Topf":"๐•‹","topf":"๐•ฅ","topfork":"โซš","tosa":"โคฉ","tprime":"โ€ด","trade":"โ„ข","TRADE":"โ„ข","triangle":"โ–ต","triangledown":"โ–ฟ","triangleleft":"โ—ƒ","trianglelefteq":"โŠด","triangleq":"โ‰œ","triangleright":"โ–น","trianglerighteq":"โŠต","tridot":"โ—ฌ","trie":"โ‰œ","triminus":"โจบ","TripleDot":"โƒ›","triplus":"โจน","trisb":"โง","tritime":"โจป","trpezium":"โข","Tscr":"๐’ฏ","tscr":"๐“‰","TScy":"ะฆ","tscy":"ั†","TSHcy":"ะ‹","tshcy":"ั›","Tstrok":"ลฆ","tstrok":"ลง","twixt":"โ‰ฌ","twoheadleftarrow":"โ†ž","twoheadrightarrow":"โ† ","Uacute":"รš","uacute":"รบ","uarr":"โ†‘","Uarr":"โ†Ÿ","uArr":"โ‡‘","Uarrocir":"โฅ‰","Ubrcy":"ะŽ","ubrcy":"ัž","Ubreve":"ลฌ","ubreve":"ลญ","Ucirc":"ร›","ucirc":"รป","Ucy":"ะฃ","ucy":"ัƒ","udarr":"โ‡…","Udblac":"ลฐ","udblac":"ลฑ","udhar":"โฅฎ","ufisht":"โฅพ","Ufr":"๐”˜","ufr":"๐”ฒ","Ugrave":"ร™","ugrave":"รน","uHar":"โฅฃ","uharl":"โ†ฟ","uharr":"โ†พ","uhblk":"โ–€","ulcorn":"โŒœ","ulcorner":"โŒœ","ulcrop":"โŒ","ultri":"โ—ธ","Umacr":"ลช","umacr":"ลซ","uml":"ยจ","UnderBar":"_","UnderBrace":"โŸ","UnderBracket":"โŽต","UnderParenthesis":"โ","Union":"โ‹ƒ","UnionPlus":"โŠŽ","Uogon":"ลฒ","uogon":"ลณ","Uopf":"๐•Œ","uopf":"๐•ฆ","UpArrowBar":"โค’","uparrow":"โ†‘","UpArrow":"โ†‘","Uparrow":"โ‡‘","UpArrowDownArrow":"โ‡…","updownarrow":"โ†•","UpDownArrow":"โ†•","Updownarrow":"โ‡•","UpEquilibrium":"โฅฎ","upharpoonleft":"โ†ฟ","upharpoonright":"โ†พ","uplus":"โŠŽ","UpperLeftArrow":"โ†–","UpperRightArrow":"โ†—","upsi":"ฯ…","Upsi":"ฯ’","upsih":"ฯ’","Upsilon":"ฮฅ","upsilon":"ฯ…","UpTeeArrow":"โ†ฅ","UpTee":"โŠฅ","upuparrows":"โ‡ˆ","urcorn":"โŒ","urcorner":"โŒ","urcrop":"โŒŽ","Uring":"ลฎ","uring":"ลฏ","urtri":"โ—น","Uscr":"๐’ฐ","uscr":"๐“Š","utdot":"โ‹ฐ","Utilde":"ลจ","utilde":"ลฉ","utri":"โ–ต","utrif":"โ–ด","uuarr":"โ‡ˆ","Uuml":"รœ","uuml":"รผ","uwangle":"โฆง","vangrt":"โฆœ","varepsilon":"ฯต","varkappa":"ฯฐ","varnothing":"โˆ…","varphi":"ฯ•","varpi":"ฯ–","varpropto":"โˆ","varr":"โ†•","vArr":"โ‡•","varrho":"ฯฑ","varsigma":"ฯ‚","varsubsetneq":"โŠŠ๏ธ€","varsubsetneqq":"โซ‹๏ธ€","varsupsetneq":"โŠ‹๏ธ€","varsupsetneqq":"โซŒ๏ธ€","vartheta":"ฯ‘","vartriangleleft":"โŠฒ","vartriangleright":"โŠณ","vBar":"โซจ","Vbar":"โซซ","vBarv":"โซฉ","Vcy":"ะ’","vcy":"ะฒ","vdash":"โŠข","vDash":"โŠจ","Vdash":"โŠฉ","VDash":"โŠซ","Vdashl":"โซฆ","veebar":"โŠป","vee":"โˆจ","Vee":"โ‹","veeeq":"โ‰š","vellip":"โ‹ฎ","verbar":"|","Verbar":"โ€–","vert":"|","Vert":"โ€–","VerticalBar":"โˆฃ","VerticalLine":"|","VerticalSeparator":"โ˜","VerticalTilde":"โ‰€","VeryThinSpace":"โ€Š","Vfr":"๐”™","vfr":"๐”ณ","vltri":"โŠฒ","vnsub":"โŠ‚โƒ’","vnsup":"โŠƒโƒ’","Vopf":"๐•","vopf":"๐•ง","vprop":"โˆ","vrtri":"โŠณ","Vscr":"๐’ฑ","vscr":"๐“‹","vsubnE":"โซ‹๏ธ€","vsubne":"โŠŠ๏ธ€","vsupnE":"โซŒ๏ธ€","vsupne":"โŠ‹๏ธ€","Vvdash":"โŠช","vzigzag":"โฆš","Wcirc":"ลด","wcirc":"ลต","wedbar":"โฉŸ","wedge":"โˆง","Wedge":"โ‹€","wedgeq":"โ‰™","weierp":"โ„˜","Wfr":"๐”š","wfr":"๐”ด","Wopf":"๐•Ž","wopf":"๐•จ","wp":"โ„˜","wr":"โ‰€","wreath":"โ‰€","Wscr":"๐’ฒ","wscr":"๐“Œ","xcap":"โ‹‚","xcirc":"โ—ฏ","xcup":"โ‹ƒ","xdtri":"โ–ฝ","Xfr":"๐”›","xfr":"๐”ต","xharr":"โŸท","xhArr":"โŸบ","Xi":"ฮž","xi":"ฮพ","xlarr":"โŸต","xlArr":"โŸธ","xmap":"โŸผ","xnis":"โ‹ป","xodot":"โจ€","Xopf":"๐•","xopf":"๐•ฉ","xoplus":"โจ","xotime":"โจ‚","xrarr":"โŸถ","xrArr":"โŸน","Xscr":"๐’ณ","xscr":"๐“","xsqcup":"โจ†","xuplus":"โจ„","xutri":"โ–ณ","xvee":"โ‹","xwedge":"โ‹€","Yacute":"ร","yacute":"รฝ","YAcy":"ะฏ","yacy":"ั","Ycirc":"ลถ","ycirc":"ลท","Ycy":"ะซ","ycy":"ั‹","yen":"ยฅ","Yfr":"๐”œ","yfr":"๐”ถ","YIcy":"ะ‡","yicy":"ั—","Yopf":"๐•","yopf":"๐•ช","Yscr":"๐’ด","yscr":"๐“Ž","YUcy":"ะฎ","yucy":"ัŽ","yuml":"รฟ","Yuml":"ลธ","Zacute":"ลน","zacute":"ลบ","Zcaron":"ลฝ","zcaron":"ลพ","Zcy":"ะ—","zcy":"ะท","Zdot":"ลป","zdot":"ลผ","zeetrf":"โ„จ","ZeroWidthSpace":"โ€‹","Zeta":"ฮ–","zeta":"ฮถ","zfr":"๐”ท","Zfr":"โ„จ","ZHcy":"ะ–","zhcy":"ะถ","zigrarr":"โ‡","zopf":"๐•ซ","Zopf":"โ„ค","Zscr":"๐’ต","zscr":"๐“","zwj":"โ€","zwnj":"โ€Œ"}')},function(e,t,n){"use strict";var r={};function o(e,t,n){var i,a,s,l,c,u="";for("string"!=typeof t&&(n=t,t=o.defaultChars),void 0===n&&(n=!0),c=function(e){var t,n,o=r[e];if(o)return o;for(o=r[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),/^[0-9a-z]$/i.test(n)?o.push(n):o.push("%"+("0"+t.toString(16).toUpperCase()).slice(-2));for(t=0;t<e.length;t++)o[e.charCodeAt(t)]=e[t];return o}(t),i=0,a=e.length;i<a;i++)if(s=e.charCodeAt(i),n&&37===s&&i+2<a&&/^[0-9a-f]{2}$/i.test(e.slice(i+1,i+3)))u+=e.slice(i,i+3),i+=2;else if(s<128)u+=c[s];else if(s>=55296&&s<=57343){if(s>=55296&&s<=56319&&i+1<a&&(l=e.charCodeAt(i+1))>=56320&&l<=57343){u+=encodeURIComponent(e[i]+e[i+1]),i++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(e[i]);return u}o.defaultChars=";/?:@&=+$,-_.!~*'()#",o.componentChars="-_.!~*'()",e.exports=o},function(e,t,n){"use strict";var r={};function o(e,t){var n;return"string"!=typeof t&&(t=o.defaultChars),n=function(e){var t,n,o=r[e];if(o)return o;for(o=r[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),o.push(n);for(t=0;t<e.length;t++)o[n=e.charCodeAt(t)]="%"+("0"+n.toString(16).toUpperCase()).slice(-2);return o}(t),e.replace(/(%[a-f0-9]{2})+/gi,(function(e){var t,r,o,i,a,s,l,c="";for(t=0,r=e.length;t<r;t+=3)(o=parseInt(e.slice(t+1,t+3),16))<128?c+=n[o]:192==(224&o)&&t+3<r&&128==(192&(i=parseInt(e.slice(t+4,t+6),16)))?(c+=(l=o<<6&1984|63&i)<128?"๏ฟฝ๏ฟฝ":String.fromCharCode(l),t+=3):224==(240&o)&&t+6<r&&(i=parseInt(e.slice(t+4,t+6),16),a=parseInt(e.slice(t+7,t+9),16),128==(192&i)&&128==(192&a))?(c+=(l=o<<12&61440|i<<6&4032|63&a)<2048||l>=55296&&l<=57343?"๏ฟฝ๏ฟฝ๏ฟฝ":String.fromCharCode(l),t+=6):240==(248&o)&&t+9<r&&(i=parseInt(e.slice(t+4,t+6),16),a=parseInt(e.slice(t+7,t+9),16),s=parseInt(e.slice(t+10,t+12),16),128==(192&i)&&128==(192&a)&&128==(192&s))?((l=o<<18&1835008|i<<12&258048|a<<6&4032|63&s)<65536||l>1114111?c+="๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+="๏ฟฝ";return c}))}o.defaultChars=";/?:@&=+$,#",o.componentChars="",e.exports=o},function(e,t,n){"use strict";e.exports=function(e){var t="";return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||""}},function(e,t,n){"use strict";function r(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var o=/^([a-z0-9.+-]+:)/i,i=/:[0-9]*$/,a=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,s=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),l=["'"].concat(s),c=["%","/","?",";","#"].concat(l),u=["/","?","#"],p=/^[+a-z0-9A-Z_-]{0,63}$/,d=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,h={javascript:!0,"javascript:":!0},f={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};r.prototype.parse=function(e,t){var n,r,i,s,l,_=e;if(_=_.trim(),!t&&1===e.split("#").length){var g=a.exec(_);if(g)return this.pathname=g[1],g[2]&&(this.search=g[2]),this}var m=o.exec(_);if(m&&(i=(m=m[0]).toLowerCase(),this.protocol=m,_=_.substr(m.length)),(t||m||_.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(l="//"===_.substr(0,2))||m&&h[m]||(_=_.substr(2),this.slashes=!0)),!h[m]&&(l||m&&!f[m])){var b,v,k=-1;for(n=0;n<u.length;n++)-1!==(s=_.indexOf(u[n]))&&(-1===k||s<k)&&(k=s);for(-1!==(v=-1===k?_.lastIndexOf("@"):_.lastIndexOf("@",k))&&(b=_.slice(0,v),_=_.slice(v+1),this.auth=b),k=-1,n=0;n<c.length;n++)-1!==(s=_.indexOf(c[n]))&&(-1===k||s<k)&&(k=s);-1===k&&(k=_.length),":"===_[k-1]&&k--;var w=_.slice(0,k);_=_.slice(k),this.parseHost(w),this.hostname=this.hostname||"";var y="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!y){var x=this.hostname.split(/\./);for(n=0,r=x.length;n<r;n++){var C=x[n];if(C&&!C.match(p)){for(var j="",A=0,E=C.length;A<E;A++)C.charCodeAt(A)>127?j+="x":j+=C[A];if(!j.match(p)){var O=x.slice(0,n),S=x.slice(n+1),T=C.match(d);T&&(O.push(T[1]),S.unshift(T[2])),S.length&&(_=S.join(".")+_),this.hostname=O.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),y&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var D=_.indexOf("#");-1!==D&&(this.hash=_.substr(D),_=_.slice(0,D));var L=_.indexOf("?");return-1!==L&&(this.search=_.substr(L),_=_.slice(0,L)),_&&(this.pathname=_),f[i]&&this.hostname&&!this.pathname&&(this.pathname=""),this},r.prototype.parseHost=function(e){var t=i.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=function(e,t){if(e&&e instanceof r)return e;var n=new r;return n.parse(e,t),n}},function(e,t,n){"use strict";t.Any=n(64),t.Cc=n(65),t.Cf=n(148),t.P=n(40),t.Z=n(66)},function(e,t){e.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/},function(e,t,n){"use strict";t.parseLinkLabel=n(150),t.parseLinkDestination=n(151),t.parseLinkTitle=n(152)},function(e,t,n){"use strict";e.exports=function(e,t,n){var r,o,i,a,s=-1,l=e.posMax,c=e.pos;for(e.pos=t+1,r=1;e.pos<l;){if(93===(i=e.src.charCodeAt(e.pos))&&0===--r){o=!0;break}if(a=e.pos,e.md.inline.skipToken(e),91===i)if(a===e.pos-1)r++;else if(n)return e.pos=c,-1}return o&&(s=e.pos),e.pos=c,s}},function(e,t,n){"use strict";var r=n(1).unescapeAll;e.exports=function(e,t,n){var o,i,a=t,s={ok:!1,pos:0,lines:0,str:""};if(60===e.charCodeAt(a)){for(a++;a<n;){if(10===(o=e.charCodeAt(a)))return s;if(60===o)return s;if(62===o)return s.pos=a+1,s.str=r(e.slice(t+1,a)),s.ok=!0,s;92===o&&a+1<n?a+=2:a++}return s}for(i=0;a<n&&32!==(o=e.charCodeAt(a))&&!(o<32||127===o);)if(92===o&&a+1<n){if(32===e.charCodeAt(a+1))break;a+=2}else{if(40===o&&++i>32)return s;if(41===o){if(0===i)break;i--}a++}return t===a||0!==i||(s.str=r(e.slice(t,a)),s.pos=a,s.ok=!0),s}},function(e,t,n){"use strict";var r=n(1).unescapeAll;e.exports=function(e,t,n){var o,i,a=0,s=t,l={ok:!1,pos:0,lines:0,str:""};if(s>=n)return l;if(34!==(i=e.charCodeAt(s))&&39!==i&&40!==i)return l;for(s++,40===i&&(i=41);s<n;){if((o=e.charCodeAt(s))===i)return l.pos=s+1,l.lines=a,l.str=r(e.slice(t+1,s)),l.ok=!0,l;if(40===o&&41===i)return l;10===o?a++:92===o&&s+1<n&&(s++,10===e.charCodeAt(s)&&a++),s++}return l}},function(e,t,n){"use strict";var r=n(1).assign,o=n(1).unescapeAll,i=n(1).escapeHtml,a={};function s(){this.rules=r({},a)}a.code_inline=function(e,t,n,r,o){var a=e[t];return"<code"+o.renderAttrs(a)+">"+i(a.content)+"</code>"},a.code_block=function(e,t,n,r,o){var a=e[t];return"<pre"+o.renderAttrs(a)+"><code>"+i(e[t].content)+"</code></pre>\n"},a.fence=function(e,t,n,r,a){var s,l,c,u,p,d=e[t],h=d.info?o(d.info).trim():"",f="",_="";return h&&(f=(c=h.split(/(\s+)/g))[0],_=c.slice(2).join("")),0===(s=n.highlight&&n.highlight(d.content,f,_)||i(d.content)).indexOf("<pre")?s+"\n":h?(l=d.attrIndex("class"),u=d.attrs?d.attrs.slice():[],l<0?u.push(["class",n.langPrefix+f]):(u[l]=u[l].slice(),u[l][1]+=" "+n.langPrefix+f),p={attrs:u},"<pre><code"+a.renderAttrs(p)+">"+s+"</code></pre>\n"):"<pre><code"+a.renderAttrs(d)+">"+s+"</code></pre>\n"},a.image=function(e,t,n,r,o){var i=e[t];return i.attrs[i.attrIndex("alt")][1]=o.renderInlineAsText(i.children,n,r),o.renderToken(e,t,n)},a.hardbreak=function(e,t,n){return n.xhtmlOut?"<br />\n":"<br>\n"},a.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"<br />\n":"<br>\n":"\n"},a.text=function(e,t){return i(e[t].content)},a.html_block=function(e,t){return e[t].content},a.html_inline=function(e,t){return e[t].content},s.prototype.renderAttrs=function(e){var t,n,r;if(!e.attrs)return"";for(r="",t=0,n=e.attrs.length;t<n;t++)r+=" "+i(e.attrs[t][0])+'="'+i(e.attrs[t][1])+'"';return r},s.prototype.renderToken=function(e,t,n){var r,o="",i=!1,a=e[t];return a.hidden?"":(a.block&&-1!==a.nesting&&t&&e[t-1].hidden&&(o+="\n"),o+=(-1===a.nesting?"</":"<")+a.tag,o+=this.renderAttrs(a),0===a.nesting&&n.xhtmlOut&&(o+=" /"),a.block&&(i=!0,1===a.nesting&&t+1<e.length&&("inline"===(r=e[t+1]).type||r.hidden||-1===r.nesting&&r.tag===a.tag)&&(i=!1)),o+=i?">\n":">")},s.prototype.renderInline=function(e,t,n){for(var r,o="",i=this.rules,a=0,s=e.length;a<s;a++)void 0!==i[r=e[a].type]?o+=i[r](e,a,t,n,this):o+=this.renderToken(e,a,t);return o},s.prototype.renderInlineAsText=function(e,t,n){for(var r="",o=0,i=e.length;o<i;o++)"text"===e[o].type?r+=e[o].content:"image"===e[o].type?r+=this.renderInlineAsText(e[o].children,t,n):"softbreak"===e[o].type&&(r+="\n");return r},s.prototype.render=function(e,t,n){var r,o,i,a="",s=this.rules;for(r=0,o=e.length;r<o;r++)"inline"===(i=e[r].type)?a+=this.renderInline(e[r].children,t,n):void 0!==s[i]?a+=s[i](e,r,t,n,this):a+=this.renderToken(e,r,t,n);return a},e.exports=s},function(e,t,n){"use strict";var r=n(41),o=[["normalize",n(155)],["block",n(156)],["inline",n(157)],["linkify",n(158)],["replacements",n(159)],["smartquotes",n(160)],["text_join",n(161)]];function i(){this.ruler=new r;for(var e=0;e<o.length;e++)this.ruler.push(o[e][0],o[e][1])}i.prototype.process=function(e){var t,n,r;for(t=0,n=(r=this.ruler.getRules("")).length;t<n;t++)r[t](e)},i.prototype.State=n(162),e.exports=i},function(e,t,n){"use strict";var r=/\r\n?|\n/g,o=/\0/g;e.exports=function(e){var t;t=(t=e.src.replace(r,"\n")).replace(o,"๏ฟฝ"),e.src=t}},function(e,t,n){"use strict";e.exports=function(e){var t;e.inlineMode?((t=new e.Token("inline","",0)).content=e.src,t.map=[0,1],t.children=[],e.tokens.push(t)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}},function(e,t,n){"use strict";e.exports=function(e){var t,n,r,o=e.tokens;for(n=0,r=o.length;n<r;n++)"inline"===(t=o[n]).type&&e.md.inline.parse(t.content,e.md,e.env,t.children)}},function(e,t,n){"use strict";var r=n(1).arrayReplaceAt;function o(e){return/^<\/a\s*>/i.test(e)}e.exports=function(e){var t,n,i,a,s,l,c,u,p,d,h,f,_,g,m,b,v,k,w=e.tokens;if(e.md.options.linkify)for(n=0,i=w.length;n<i;n++)if("inline"===w[n].type&&e.md.linkify.pretest(w[n].content))for(_=0,t=(a=w[n].children).length-1;t>=0;t--)if("link_close"!==(l=a[t]).type){if("html_inline"===l.type&&(k=l.content,/^<a[>\s]/i.test(k)&&_>0&&_--,o(l.content)&&_++),!(_>0)&&"text"===l.type&&e.md.linkify.test(l.content)){for(p=l.content,v=e.md.linkify.match(p),c=[],f=l.level,h=0,v.length>0&&0===v[0].index&&t>0&&"text_special"===a[t-1].type&&(v=v.slice(1)),u=0;u<v.length;u++)g=v[u].url,m=e.md.normalizeLink(g),e.md.validateLink(m)&&(b=v[u].text,b=v[u].schema?"mailto:"!==v[u].schema||/^mailto:/i.test(b)?e.md.normalizeLinkText(b):e.md.normalizeLinkText("mailto:"+b).replace(/^mailto:/,""):e.md.normalizeLinkText("http://"+b).replace(/^http:\/\//,""),(d=v[u].index)>h&&((s=new e.Token("text","",0)).content=p.slice(h,d),s.level=f,c.push(s)),(s=new e.Token("link_open","a",1)).attrs=[["href",m]],s.level=f++,s.markup="linkify",s.info="auto",c.push(s),(s=new e.Token("text","",0)).content=b,s.level=f,c.push(s),(s=new e.Token("link_close","a",-1)).level=--f,s.markup="linkify",s.info="auto",c.push(s),h=v[u].lastIndex);h<p.length&&((s=new e.Token("text","",0)).content=p.slice(h),s.level=f,c.push(s)),w[n].children=a=r(a,t,c)}}else for(t--;a[t].level!==l.level&&"link_open"!==a[t].type;)t--}},function(e,t,n){"use strict";var r=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,o=/\((c|tm|r)\)/i,i=/\((c|tm|r)\)/gi,a={c:"ยฉ",r:"ยฎ",tm:"โ„ข"};function s(e,t){return a[t.toLowerCase()]}function l(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)"text"!==(n=e[t]).type||r||(n.content=n.content.replace(i,s)),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}function c(e){var t,n,o=0;for(t=e.length-1;t>=0;t--)"text"!==(n=e[t]).type||o||r.test(n.content)&&(n.content=n.content.replace(/\+-/g,"ยฑ").replace(/\.{2,}/g,"โ€ฆ").replace(/([?!])โ€ฆ/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1โ€”").replace(/(^|\s)--(?=\s|$)/gm,"$1โ€“").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1โ€“")),"link_open"===n.type&&"auto"===n.info&&o--,"link_close"===n.type&&"auto"===n.info&&o++}e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&(o.test(e.tokens[t].content)&&l(e.tokens[t].children),r.test(e.tokens[t].content)&&c(e.tokens[t].children))}},function(e,t,n){"use strict";var r=n(1).isWhiteSpace,o=n(1).isPunctChar,i=n(1).isMdAsciiPunct,a=/['"]/,s=/['"]/g;function l(e,t,n){return e.slice(0,t)+n+e.slice(t+1)}function c(e,t){var n,a,c,u,p,d,h,f,_,g,m,b,v,k,w,y,x,C,j,A,E;for(j=[],n=0;n<e.length;n++){for(a=e[n],h=e[n].level,x=j.length-1;x>=0&&!(j[x].level<=h);x--);if(j.length=x+1,"text"===a.type){p=0,d=(c=a.content).length;e:for(;p<d&&(s.lastIndex=p,u=s.exec(c));){if(w=y=!0,p=u.index+1,C="'"===u[0],_=32,u.index-1>=0)_=c.charCodeAt(u.index-1);else for(x=n-1;x>=0&&("softbreak"!==e[x].type&&"hardbreak"!==e[x].type);x--)if(e[x].content){_=e[x].content.charCodeAt(e[x].content.length-1);break}if(g=32,p<d)g=c.charCodeAt(p);else for(x=n+1;x<e.length&&("softbreak"!==e[x].type&&"hardbreak"!==e[x].type);x++)if(e[x].content){g=e[x].content.charCodeAt(0);break}if(m=i(_)||o(String.fromCharCode(_)),b=i(g)||o(String.fromCharCode(g)),v=r(_),(k=r(g))?w=!1:b&&(v||m||(w=!1)),v?y=!1:m&&(k||b||(y=!1)),34===g&&'"'===u[0]&&_>=48&&_<=57&&(y=w=!1),w&&y&&(w=m,y=b),w||y){if(y)for(x=j.length-1;x>=0&&(f=j[x],!(j[x].level<h));x--)if(f.single===C&&j[x].level===h){f=j[x],C?(A=t.md.options.quotes[2],E=t.md.options.quotes[3]):(A=t.md.options.quotes[0],E=t.md.options.quotes[1]),a.content=l(a.content,u.index,E),e[f.token].content=l(e[f.token].content,f.pos,A),p+=E.length-1,f.token===n&&(p+=A.length-1),d=(c=a.content).length,j.length=x;continue e}w?j.push({token:n,pos:u.index,single:C,level:h}):y&&C&&(a.content=l(a.content,u.index,"โ€™"))}else C&&(a.content=l(a.content,u.index,"โ€™"))}}}}e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&a.test(e.tokens[t].content)&&c(e.tokens[t].children,e)}},function(e,t,n){"use strict";e.exports=function(e){var t,n,r,o,i,a,s=e.tokens;for(t=0,n=s.length;t<n;t++)if("inline"===s[t].type){for(i=(r=s[t].children).length,o=0;o<i;o++)"text_special"===r[o].type&&(r[o].type="text");for(o=a=0;o<i;o++)"text"===r[o].type&&o+1<i&&"text"===r[o+1].type?r[o+1].content=r[o].content+r[o+1].content:(o!==a&&(r[a]=r[o]),a++);o!==a&&(r.length=a)}}},function(e,t,n){"use strict";var r=n(42);function o(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}o.prototype.Token=r,e.exports=o},function(e,t,n){"use strict";var r=n(41),o=[["table",n(164),["paragraph","reference"]],["code",n(165)],["fence",n(166),["paragraph","reference","blockquote","list"]],["blockquote",n(167),["paragraph","reference","blockquote","list"]],["hr",n(168),["paragraph","reference","blockquote","list"]],["list",n(169),["paragraph","reference","blockquote"]],["reference",n(170)],["html_block",n(171),["paragraph","reference","blockquote"]],["heading",n(173),["paragraph","reference","blockquote"]],["lheading",n(174)],["paragraph",n(175)]];function i(){this.ruler=new r;for(var e=0;e<o.length;e++)this.ruler.push(o[e][0],o[e][1],{alt:(o[e][2]||[]).slice()})}i.prototype.tokenize=function(e,t,n){for(var r,o,i,a=this.ruler.getRules(""),s=a.length,l=t,c=!1,u=e.md.options.maxNesting;l<n&&(e.line=l=e.skipEmptyLines(l),!(l>=n))&&!(e.sCount[l]<e.blkIndent);){if(e.level>=u){e.line=n;break}for(i=e.line,o=0;o<s;o++)if(r=a[o](e,l,n,!1)){if(i>=e.line)throw new Error("block rule didn't increment state.line");break}if(!r)throw new Error("none of the block rules matched");e.tight=!c,e.isEmpty(e.line-1)&&(c=!0),(l=e.line)<n&&e.isEmpty(l)&&(c=!0,l++,e.line=l)}},i.prototype.parse=function(e,t,n,r){var o;e&&(o=new this.State(e,t,n,r),this.tokenize(o,o.line,o.lineMax))},i.prototype.State=n(176),e.exports=i},function(e,t,n){"use strict";var r=n(1).isSpace;function o(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.slice(n,r)}function i(e){var t,n=[],r=0,o=e.length,i=!1,a=0,s="";for(t=e.charCodeAt(r);r<o;)124===t&&(i?(s+=e.substring(a,r-1),a=r):(n.push(s+e.substring(a,r)),s="",a=r+1)),i=92===t,r++,t=e.charCodeAt(r);return n.push(s+e.substring(a)),n}e.exports=function(e,t,n,a){var s,l,c,u,p,d,h,f,_,g,m,b,v,k,w,y,x,C;if(t+2>n)return!1;if(d=t+1,e.sCount[d]<e.blkIndent)return!1;if(e.sCount[d]-e.blkIndent>=4)return!1;if((c=e.bMarks[d]+e.tShift[d])>=e.eMarks[d])return!1;if(124!==(x=e.src.charCodeAt(c++))&&45!==x&&58!==x)return!1;if(c>=e.eMarks[d])return!1;if(124!==(C=e.src.charCodeAt(c++))&&45!==C&&58!==C&&!r(C))return!1;if(45===x&&r(C))return!1;for(;c<e.eMarks[d];){if(124!==(s=e.src.charCodeAt(c))&&45!==s&&58!==s&&!r(s))return!1;c++}for(h=(l=o(e,t+1)).split("|"),g=[],u=0;u<h.length;u++){if(!(m=h[u].trim())){if(0===u||u===h.length-1)continue;return!1}if(!/^:?-+:?$/.test(m))return!1;58===m.charCodeAt(m.length-1)?g.push(58===m.charCodeAt(0)?"center":"right"):58===m.charCodeAt(0)?g.push("left"):g.push("")}if(-1===(l=o(e,t).trim()).indexOf("|"))return!1;if(e.sCount[t]-e.blkIndent>=4)return!1;if((h=i(l)).length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),0===(f=h.length)||f!==g.length)return!1;if(a)return!0;for(k=e.parentType,e.parentType="table",y=e.md.block.ruler.getRules("blockquote"),(_=e.push("table_open","table",1)).map=b=[t,0],(_=e.push("thead_open","thead",1)).map=[t,t+1],(_=e.push("tr_open","tr",1)).map=[t,t+1],u=0;u<h.length;u++)_=e.push("th_open","th",1),g[u]&&(_.attrs=[["style","text-align:"+g[u]]]),(_=e.push("inline","",0)).content=h[u].trim(),_.children=[],_=e.push("th_close","th",-1);for(_=e.push("tr_close","tr",-1),_=e.push("thead_close","thead",-1),d=t+2;d<n&&!(e.sCount[d]<e.blkIndent);d++){for(w=!1,u=0,p=y.length;u<p;u++)if(y[u](e,d,n,!0)){w=!0;break}if(w)break;if(!(l=o(e,d).trim()))break;if(e.sCount[d]-e.blkIndent>=4)break;for((h=i(l)).length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),d===t+2&&((_=e.push("tbody_open","tbody",1)).map=v=[t+2,0]),(_=e.push("tr_open","tr",1)).map=[d,d+1],u=0;u<f;u++)_=e.push("td_open","td",1),g[u]&&(_.attrs=[["style","text-align:"+g[u]]]),(_=e.push("inline","",0)).content=h[u]?h[u].trim():"",_.children=[],_=e.push("td_close","td",-1);_=e.push("tr_close","tr",-1)}return v&&(_=e.push("tbody_close","tbody",-1),v[1]=d),_=e.push("table_close","table",-1),b[1]=d,e.parentType=k,e.line=d,!0}},function(e,t,n){"use strict";e.exports=function(e,t,n){var r,o,i;if(e.sCount[t]-e.blkIndent<4)return!1;for(o=r=t+1;r<n;)if(e.isEmpty(r))r++;else{if(!(e.sCount[r]-e.blkIndent>=4))break;o=++r}return e.line=o,(i=e.push("code_block","code",0)).content=e.getLines(t,o,4+e.blkIndent,!1)+"\n",i.map=[t,e.line],!0}},function(e,t,n){"use strict";e.exports=function(e,t,n,r){var o,i,a,s,l,c,u,p=!1,d=e.bMarks[t]+e.tShift[t],h=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(d+3>h)return!1;if(126!==(o=e.src.charCodeAt(d))&&96!==o)return!1;if(l=d,(i=(d=e.skipChars(d,o))-l)<3)return!1;if(u=e.src.slice(l,d),a=e.src.slice(d,h),96===o&&a.indexOf(String.fromCharCode(o))>=0)return!1;if(r)return!0;for(s=t;!(++s>=n)&&!((d=l=e.bMarks[s]+e.tShift[s])<(h=e.eMarks[s])&&e.sCount[s]<e.blkIndent);)if(e.src.charCodeAt(d)===o&&!(e.sCount[s]-e.blkIndent>=4||(d=e.skipChars(d,o))-l<i||(d=e.skipSpaces(d))<h)){p=!0;break}return i=e.sCount[t],e.line=s+(p?1:0),(c=e.push("fence","code",0)).info=a,c.content=e.getLines(t+1,s,i,!0),c.markup=u,c.map=[t,e.line],!0}},function(e,t,n){"use strict";var r=n(1).isSpace;e.exports=function(e,t,n,o){var i,a,s,l,c,u,p,d,h,f,_,g,m,b,v,k,w,y,x,C,j=e.lineMax,A=e.bMarks[t]+e.tShift[t],E=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(62!==e.src.charCodeAt(A))return!1;if(o)return!0;for(f=[],_=[],b=[],v=[],y=e.md.block.ruler.getRules("blockquote"),m=e.parentType,e.parentType="blockquote",d=t;d<n&&(C=e.sCount[d]<e.blkIndent,!((A=e.bMarks[d]+e.tShift[d])>=(E=e.eMarks[d])));d++)if(62!==e.src.charCodeAt(A++)||C){if(u)break;for(w=!1,s=0,c=y.length;s<c;s++)if(y[s](e,d,n,!0)){w=!0;break}if(w){e.lineMax=d,0!==e.blkIndent&&(f.push(e.bMarks[d]),_.push(e.bsCount[d]),v.push(e.tShift[d]),b.push(e.sCount[d]),e.sCount[d]-=e.blkIndent);break}f.push(e.bMarks[d]),_.push(e.bsCount[d]),v.push(e.tShift[d]),b.push(e.sCount[d]),e.sCount[d]=-1}else{for(l=e.sCount[d]+1,32===e.src.charCodeAt(A)?(A++,l++,i=!1,k=!0):9===e.src.charCodeAt(A)?(k=!0,(e.bsCount[d]+l)%4==3?(A++,l++,i=!1):i=!0):k=!1,h=l,f.push(e.bMarks[d]),e.bMarks[d]=A;A<E&&(a=e.src.charCodeAt(A),r(a));)9===a?h+=4-(h+e.bsCount[d]+(i?1:0))%4:h++,A++;u=A>=E,_.push(e.bsCount[d]),e.bsCount[d]=e.sCount[d]+1+(k?1:0),b.push(e.sCount[d]),e.sCount[d]=h-l,v.push(e.tShift[d]),e.tShift[d]=A-e.bMarks[d]}for(g=e.blkIndent,e.blkIndent=0,(x=e.push("blockquote_open","blockquote",1)).markup=">",x.map=p=[t,0],e.md.block.tokenize(e,t,d),(x=e.push("blockquote_close","blockquote",-1)).markup=">",e.lineMax=j,e.parentType=m,p[1]=e.line,s=0;s<v.length;s++)e.bMarks[s+t]=f[s],e.tShift[s+t]=v[s],e.sCount[s+t]=b[s],e.bsCount[s+t]=_[s];return e.blkIndent=g,!0}},function(e,t,n){"use strict";var r=n(1).isSpace;e.exports=function(e,t,n,o){var i,a,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(42!==(i=e.src.charCodeAt(c++))&&45!==i&&95!==i)return!1;for(a=1;c<u;){if((s=e.src.charCodeAt(c++))!==i&&!r(s))return!1;s===i&&a++}return!(a<3)&&(o||(e.line=t+1,(l=e.push("hr","hr",0)).map=[t,e.line],l.markup=Array(a+1).join(String.fromCharCode(i))),!0)}},function(e,t,n){"use strict";var r=n(1).isSpace;function o(e,t){var n,o,i,a;return o=e.bMarks[t]+e.tShift[t],i=e.eMarks[t],42!==(n=e.src.charCodeAt(o++))&&45!==n&&43!==n||o<i&&(a=e.src.charCodeAt(o),!r(a))?-1:o}function i(e,t){var n,o=e.bMarks[t]+e.tShift[t],i=o,a=e.eMarks[t];if(i+1>=a)return-1;if((n=e.src.charCodeAt(i++))<48||n>57)return-1;for(;;){if(i>=a)return-1;if(!((n=e.src.charCodeAt(i++))>=48&&n<=57)){if(41===n||46===n)break;return-1}if(i-o>=10)return-1}return i<a&&(n=e.src.charCodeAt(i),!r(n))?-1:i}e.exports=function(e,t,n,r){var a,s,l,c,u,p,d,h,f,_,g,m,b,v,k,w,y,x,C,j,A,E,O,S,T,D,L,q=t,M=!1,z=!0;if(e.sCount[q]-e.blkIndent>=4)return!1;if(e.listIndent>=0&&e.sCount[q]-e.listIndent>=4&&e.sCount[q]<e.blkIndent)return!1;if(r&&"paragraph"===e.parentType&&e.sCount[q]>=e.blkIndent&&(M=!0),(E=i(e,q))>=0){if(d=!0,S=e.bMarks[q]+e.tShift[q],b=Number(e.src.slice(S,E-1)),M&&1!==b)return!1}else{if(!((E=o(e,q))>=0))return!1;d=!1}if(M&&e.skipSpaces(E)>=e.eMarks[q])return!1;if(r)return!0;for(m=e.src.charCodeAt(E-1),g=e.tokens.length,d?(L=e.push("ordered_list_open","ol",1),1!==b&&(L.attrs=[["start",b]])):L=e.push("bullet_list_open","ul",1),L.map=_=[q,0],L.markup=String.fromCharCode(m),O=!1,D=e.md.block.ruler.getRules("list"),y=e.parentType,e.parentType="list";q<n;){for(A=E,v=e.eMarks[q],p=k=e.sCount[q]+E-(e.bMarks[q]+e.tShift[q]);A<v;){if(9===(a=e.src.charCodeAt(A)))k+=4-(k+e.bsCount[q])%4;else{if(32!==a)break;k++}A++}if((u=(s=A)>=v?1:k-p)>4&&(u=1),c=p+u,(L=e.push("list_item_open","li",1)).markup=String.fromCharCode(m),L.map=h=[q,0],d&&(L.info=e.src.slice(S,E-1)),j=e.tight,C=e.tShift[q],x=e.sCount[q],w=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=c,e.tight=!0,e.tShift[q]=s-e.bMarks[q],e.sCount[q]=k,s>=v&&e.isEmpty(q+1)?e.line=Math.min(e.line+2,n):e.md.block.tokenize(e,q,n,!0),e.tight&&!O||(z=!1),O=e.line-q>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=w,e.tShift[q]=C,e.sCount[q]=x,e.tight=j,(L=e.push("list_item_close","li",-1)).markup=String.fromCharCode(m),q=e.line,h[1]=q,q>=n)break;if(e.sCount[q]<e.blkIndent)break;if(e.sCount[q]-e.blkIndent>=4)break;for(T=!1,l=0,f=D.length;l<f;l++)if(D[l](e,q,n,!0)){T=!0;break}if(T)break;if(d){if((E=i(e,q))<0)break;S=e.bMarks[q]+e.tShift[q]}else if((E=o(e,q))<0)break;if(m!==e.src.charCodeAt(E-1))break}return(L=d?e.push("ordered_list_close","ol",-1):e.push("bullet_list_close","ul",-1)).markup=String.fromCharCode(m),_[1]=q,e.line=q,e.parentType=y,z&&function(e,t){var n,r,o=e.level+2;for(n=t+2,r=e.tokens.length-2;n<r;n++)e.tokens[n].level===o&&"paragraph_open"===e.tokens[n].type&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}(e,g),!0}},function(e,t,n){"use strict";var r=n(1).normalizeReference,o=n(1).isSpace;e.exports=function(e,t,n,i){var a,s,l,c,u,p,d,h,f,_,g,m,b,v,k,w,y=0,x=e.bMarks[t]+e.tShift[t],C=e.eMarks[t],j=t+1;if(e.sCount[t]-e.blkIndent>=4)return!1;if(91!==e.src.charCodeAt(x))return!1;for(;++x<C;)if(93===e.src.charCodeAt(x)&&92!==e.src.charCodeAt(x-1)){if(x+1===C)return!1;if(58!==e.src.charCodeAt(x+1))return!1;break}for(c=e.lineMax,k=e.md.block.ruler.getRules("reference"),_=e.parentType,e.parentType="reference";j<c&&!e.isEmpty(j);j++)if(!(e.sCount[j]-e.blkIndent>3||e.sCount[j]<0)){for(v=!1,p=0,d=k.length;p<d;p++)if(k[p](e,j,c,!0)){v=!0;break}if(v)break}for(C=(b=e.getLines(t,j,e.blkIndent,!1).trim()).length,x=1;x<C;x++){if(91===(a=b.charCodeAt(x)))return!1;if(93===a){f=x;break}(10===a||92===a&&++x<C&&10===b.charCodeAt(x))&&y++}if(f<0||58!==b.charCodeAt(f+1))return!1;for(x=f+2;x<C;x++)if(10===(a=b.charCodeAt(x)))y++;else if(!o(a))break;if(!(g=e.md.helpers.parseLinkDestination(b,x,C)).ok)return!1;if(u=e.md.normalizeLink(g.str),!e.md.validateLink(u))return!1;for(s=x=g.pos,l=y+=g.lines,m=x;x<C;x++)if(10===(a=b.charCodeAt(x)))y++;else if(!o(a))break;for(g=e.md.helpers.parseLinkTitle(b,x,C),x<C&&m!==x&&g.ok?(w=g.str,x=g.pos,y+=g.lines):(w="",x=s,y=l);x<C&&(a=b.charCodeAt(x),o(a));)x++;if(x<C&&10!==b.charCodeAt(x)&&w)for(w="",x=s,y=l;x<C&&(a=b.charCodeAt(x),o(a));)x++;return!(x<C&&10!==b.charCodeAt(x))&&(!!(h=r(b.slice(1,f)))&&(i||(void 0===e.env.references&&(e.env.references={}),void 0===e.env.references[h]&&(e.env.references[h]={title:w,href:u}),e.parentType=_,e.line=t+y+1),!0))}},function(e,t,n){"use strict";var r=n(172),o=n(67).HTML_OPEN_CLOSE_TAG_RE,i=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+r.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(o.source+"\\s*$"),/^$/,!1]];e.exports=function(e,t,n,r){var o,a,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(c))return!1;for(l=e.src.slice(c,u),o=0;o<i.length&&!i[o][0].test(l);o++);if(o===i.length)return!1;if(r)return i[o][2];if(a=t+1,!i[o][1].test(l))for(;a<n&&!(e.sCount[a]<e.blkIndent);a++)if(c=e.bMarks[a]+e.tShift[a],u=e.eMarks[a],l=e.src.slice(c,u),i[o][1].test(l)){0!==l.length&&a++;break}return e.line=a,(s=e.push("html_block","",0)).map=[t,a],s.content=e.getLines(t,a,e.blkIndent,!0),!0}},function(e,t,n){"use strict";e.exports=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","section","source","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"]},function(e,t,n){"use strict";var r=n(1).isSpace;e.exports=function(e,t,n,o){var i,a,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(35!==(i=e.src.charCodeAt(c))||c>=u)return!1;for(a=1,i=e.src.charCodeAt(++c);35===i&&c<u&&a<=6;)a++,i=e.src.charCodeAt(++c);return!(a>6||c<u&&!r(i))&&(o||(u=e.skipSpacesBack(u,c),(s=e.skipCharsBack(u,35,c))>c&&r(e.src.charCodeAt(s-1))&&(u=s),e.line=t+1,(l=e.push("heading_open","h"+String(a),1)).markup="########".slice(0,a),l.map=[t,e.line],(l=e.push("inline","",0)).content=e.src.slice(c,u).trim(),l.map=[t,e.line],l.children=[],(l=e.push("heading_close","h"+String(a),-1)).markup="########".slice(0,a)),!0)}},function(e,t,n){"use strict";e.exports=function(e,t,n){var r,o,i,a,s,l,c,u,p,d,h=t+1,f=e.md.block.ruler.getRules("paragraph");if(e.sCount[t]-e.blkIndent>=4)return!1;for(d=e.parentType,e.parentType="paragraph";h<n&&!e.isEmpty(h);h++)if(!(e.sCount[h]-e.blkIndent>3)){if(e.sCount[h]>=e.blkIndent&&(l=e.bMarks[h]+e.tShift[h])<(c=e.eMarks[h])&&(45===(p=e.src.charCodeAt(l))||61===p)&&(l=e.skipChars(l,p),(l=e.skipSpaces(l))>=c)){u=61===p?1:2;break}if(!(e.sCount[h]<0)){for(o=!1,i=0,a=f.length;i<a;i++)if(f[i](e,h,n,!0)){o=!0;break}if(o)break}}return!!u&&(r=e.getLines(t,h,e.blkIndent,!1).trim(),e.line=h+1,(s=e.push("heading_open","h"+String(u),1)).markup=String.fromCharCode(p),s.map=[t,e.line],(s=e.push("inline","",0)).content=r,s.map=[t,e.line-1],s.children=[],(s=e.push("heading_close","h"+String(u),-1)).markup=String.fromCharCode(p),e.parentType=d,!0)}},function(e,t,n){"use strict";e.exports=function(e,t,n){var r,o,i,a,s,l,c=t+1,u=e.md.block.ruler.getRules("paragraph");for(l=e.parentType,e.parentType="paragraph";c<n&&!e.isEmpty(c);c++)if(!(e.sCount[c]-e.blkIndent>3||e.sCount[c]<0)){for(o=!1,i=0,a=u.length;i<a;i++)if(u[i](e,c,n,!0)){o=!0;break}if(o)break}return r=e.getLines(t,c,e.blkIndent,!1).trim(),e.line=c,(s=e.push("paragraph_open","p",1)).map=[t,e.line],(s=e.push("inline","",0)).content=r,s.map=[t,e.line],s.children=[],s=e.push("paragraph_close","p",-1),e.parentType=l,!0}},function(e,t,n){"use strict";var r=n(42),o=n(1).isSpace;function i(e,t,n,r){var i,a,s,l,c,u,p,d;for(this.src=e,this.md=t,this.env=n,this.tokens=r,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",d=!1,s=l=u=p=0,c=(a=this.src).length;l<c;l++){if(i=a.charCodeAt(l),!d){if(o(i)){u++,9===i?p+=4-p%4:p++;continue}d=!0}10!==i&&l!==c-1||(10!==i&&l++,this.bMarks.push(s),this.eMarks.push(l),this.tShift.push(u),this.sCount.push(p),this.bsCount.push(0),d=!1,u=0,p=0,s=l+1)}this.bMarks.push(a.length),this.eMarks.push(a.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}i.prototype.push=function(e,t,n){var o=new r(e,t,n);return o.block=!0,n<0&&this.level--,o.level=this.level,n>0&&this.level++,this.tokens.push(o),o},i.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},i.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;e<t&&!(this.bMarks[e]+this.tShift[e]<this.eMarks[e]);e++);return e},i.prototype.skipSpaces=function(e){for(var t,n=this.src.length;e<n&&(t=this.src.charCodeAt(e),o(t));e++);return e},i.prototype.skipSpacesBack=function(e,t){if(e<=t)return e;for(;e>t;)if(!o(this.src.charCodeAt(--e)))return e+1;return e},i.prototype.skipChars=function(e,t){for(var n=this.src.length;e<n&&this.src.charCodeAt(e)===t;e++);return e},i.prototype.skipCharsBack=function(e,t,n){if(e<=n)return e;for(;e>n;)if(t!==this.src.charCodeAt(--e))return e+1;return e},i.prototype.getLines=function(e,t,n,r){var i,a,s,l,c,u,p,d=e;if(e>=t)return"";for(u=new Array(t-e),i=0;d<t;d++,i++){for(a=0,p=l=this.bMarks[d],c=d+1<t||r?this.eMarks[d]+1:this.eMarks[d];l<c&&a<n;){if(s=this.src.charCodeAt(l),o(s))9===s?a+=4-(a+this.bsCount[d])%4:a++;else{if(!(l-p<this.tShift[d]))break;a++}l++}u[i]=a>n?new Array(a-n+1).join(" ")+this.src.slice(l,c):this.src.slice(l,c)}return u.join("")},i.prototype.Token=r,e.exports=i},function(e,t,n){"use strict";var r=n(41),o=[["text",n(178)],["linkify",n(179)],["newline",n(180)],["escape",n(181)],["backticks",n(182)],["strikethrough",n(68).tokenize],["emphasis",n(69).tokenize],["link",n(183)],["image",n(184)],["autolink",n(185)],["html_inline",n(186)],["entity",n(187)]],i=[["balance_pairs",n(188)],["strikethrough",n(68).postProcess],["emphasis",n(69).postProcess],["fragments_join",n(189)]];function a(){var e;for(this.ruler=new r,e=0;e<o.length;e++)this.ruler.push(o[e][0],o[e][1]);for(this.ruler2=new r,e=0;e<i.length;e++)this.ruler2.push(i[e][0],i[e][1])}a.prototype.skipToken=function(e){var t,n,r=e.pos,o=this.ruler.getRules(""),i=o.length,a=e.md.options.maxNesting,s=e.cache;if(void 0===s[r]){if(e.level<a){for(n=0;n<i;n++)if(e.level++,t=o[n](e,!0),e.level--,t){if(r>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}else e.pos=e.posMax;t||e.pos++,s[r]=e.pos}else e.pos=s[r]},a.prototype.tokenize=function(e){for(var t,n,r,o=this.ruler.getRules(""),i=o.length,a=e.posMax,s=e.md.options.maxNesting;e.pos<a;){if(r=e.pos,e.level<s)for(n=0;n<i;n++)if(t=o[n](e,!1)){if(r>=e.pos)throw new Error("inline rule didn't increment state.pos");break}if(t){if(e.pos>=a)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},a.prototype.parse=function(e,t,n,r){var o,i,a,s=new this.State(e,t,n,r);for(this.tokenize(s),a=(i=this.ruler2.getRules("")).length,o=0;o<a;o++)i[o](s)},a.prototype.State=n(190),e.exports=a},function(e,t,n){"use strict";function r(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}e.exports=function(e,t){for(var n=e.pos;n<e.posMax&&!r(e.src.charCodeAt(n));)n++;return n!==e.pos&&(t||(e.pending+=e.src.slice(e.pos,n)),e.pos=n,!0)}},function(e,t,n){"use strict";var r=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i;e.exports=function(e,t){var n,o,i,a,s,l,c;return!!e.md.options.linkify&&(!(e.linkLevel>0)&&(!((n=e.pos)+3>e.posMax)&&(58===e.src.charCodeAt(n)&&(47===e.src.charCodeAt(n+1)&&(47===e.src.charCodeAt(n+2)&&(!!(o=e.pending.match(r))&&(i=o[1],!!(a=e.md.linkify.matchAtStart(e.src.slice(n-i.length)))&&(!((s=a.url).length<=i.length)&&(s=s.replace(/\*+$/,""),l=e.md.normalizeLink(s),!!e.md.validateLink(l)&&(t||(e.pending=e.pending.slice(0,-i.length),(c=e.push("link_open","a",1)).attrs=[["href",l]],c.markup="linkify",c.info="auto",(c=e.push("text","",0)).content=e.md.normalizeLinkText(s),(c=e.push("link_close","a",-1)).markup="linkify",c.info="auto"),e.pos+=s.length-i.length,!0))))))))))}},function(e,t,n){"use strict";var r=n(1).isSpace;e.exports=function(e,t){var n,o,i,a=e.pos;if(10!==e.src.charCodeAt(a))return!1;if(n=e.pending.length-1,o=e.posMax,!t)if(n>=0&&32===e.pending.charCodeAt(n))if(n>=1&&32===e.pending.charCodeAt(n-1)){for(i=n-1;i>=1&&32===e.pending.charCodeAt(i-1);)i--;e.pending=e.pending.slice(0,i),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);for(a++;a<o&&r(e.src.charCodeAt(a));)a++;return e.pos=a,!0}},function(e,t,n){"use strict";for(var r=n(1).isSpace,o=[],i=0;i<256;i++)o.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach((function(e){o[e.charCodeAt(0)]=1})),e.exports=function(e,t){var n,i,a,s,l,c=e.pos,u=e.posMax;if(92!==e.src.charCodeAt(c))return!1;if(++c>=u)return!1;if(10===(n=e.src.charCodeAt(c))){for(t||e.push("hardbreak","br",0),c++;c<u&&(n=e.src.charCodeAt(c),r(n));)c++;return e.pos=c,!0}return s=e.src[c],n>=55296&&n<=56319&&c+1<u&&(i=e.src.charCodeAt(c+1))>=56320&&i<=57343&&(s+=e.src[c+1],c++),a="\\"+s,t||(l=e.push("text_special","",0),n<256&&0!==o[n]?l.content=s:l.content=a,l.markup=a,l.info="escape"),e.pos=c+1,!0}},function(e,t,n){"use strict";e.exports=function(e,t){var n,r,o,i,a,s,l,c,u=e.pos;if(96!==e.src.charCodeAt(u))return!1;for(n=u,u++,r=e.posMax;u<r&&96===e.src.charCodeAt(u);)u++;if(l=(o=e.src.slice(n,u)).length,e.backticksScanned&&(e.backticks[l]||0)<=n)return t||(e.pending+=o),e.pos+=l,!0;for(s=u;-1!==(a=e.src.indexOf("`",s));){for(s=a+1;s<r&&96===e.src.charCodeAt(s);)s++;if((c=s-a)===l)return t||((i=e.push("code_inline","code",0)).markup=o,i.content=e.src.slice(u,a).replace(/\n/g," ").replace(/^ (.+) $/,"$1")),e.pos=s,!0;e.backticks[c]=a}return e.backticksScanned=!0,t||(e.pending+=o),e.pos+=l,!0}},function(e,t,n){"use strict";var r=n(1).normalizeReference,o=n(1).isSpace;e.exports=function(e,t){var n,i,a,s,l,c,u,p,d="",h="",f=e.pos,_=e.posMax,g=e.pos,m=!0;if(91!==e.src.charCodeAt(e.pos))return!1;if(l=e.pos+1,(s=e.md.helpers.parseLinkLabel(e,e.pos,!0))<0)return!1;if((c=s+1)<_&&40===e.src.charCodeAt(c)){for(m=!1,c++;c<_&&(i=e.src.charCodeAt(c),o(i)||10===i);c++);if(c>=_)return!1;if(g=c,(u=e.md.helpers.parseLinkDestination(e.src,c,e.posMax)).ok){for(d=e.md.normalizeLink(u.str),e.md.validateLink(d)?c=u.pos:d="",g=c;c<_&&(i=e.src.charCodeAt(c),o(i)||10===i);c++);if(u=e.md.helpers.parseLinkTitle(e.src,c,e.posMax),c<_&&g!==c&&u.ok)for(h=u.str,c=u.pos;c<_&&(i=e.src.charCodeAt(c),o(i)||10===i);c++);}(c>=_||41!==e.src.charCodeAt(c))&&(m=!0),c++}if(m){if(void 0===e.env.references)return!1;if(c<_&&91===e.src.charCodeAt(c)?(g=c+1,(c=e.md.helpers.parseLinkLabel(e,c))>=0?a=e.src.slice(g,c++):c=s+1):c=s+1,a||(a=e.src.slice(l,s)),!(p=e.env.references[r(a)]))return e.pos=f,!1;d=p.href,h=p.title}return t||(e.pos=l,e.posMax=s,e.push("link_open","a",1).attrs=n=[["href",d]],h&&n.push(["title",h]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)),e.pos=c,e.posMax=_,!0}},function(e,t,n){"use strict";var r=n(1).normalizeReference,o=n(1).isSpace;e.exports=function(e,t){var n,i,a,s,l,c,u,p,d,h,f,_,g,m="",b=e.pos,v=e.posMax;if(33!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;if(c=e.pos+2,(l=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1;if((u=l+1)<v&&40===e.src.charCodeAt(u)){for(u++;u<v&&(i=e.src.charCodeAt(u),o(i)||10===i);u++);if(u>=v)return!1;for(g=u,(d=e.md.helpers.parseLinkDestination(e.src,u,e.posMax)).ok&&(m=e.md.normalizeLink(d.str),e.md.validateLink(m)?u=d.pos:m=""),g=u;u<v&&(i=e.src.charCodeAt(u),o(i)||10===i);u++);if(d=e.md.helpers.parseLinkTitle(e.src,u,e.posMax),u<v&&g!==u&&d.ok)for(h=d.str,u=d.pos;u<v&&(i=e.src.charCodeAt(u),o(i)||10===i);u++);else h="";if(u>=v||41!==e.src.charCodeAt(u))return e.pos=b,!1;u++}else{if(void 0===e.env.references)return!1;if(u<v&&91===e.src.charCodeAt(u)?(g=u+1,(u=e.md.helpers.parseLinkLabel(e,u))>=0?s=e.src.slice(g,u++):u=l+1):u=l+1,s||(s=e.src.slice(c,l)),!(p=e.env.references[r(s)]))return e.pos=b,!1;m=p.href,h=p.title}return t||(a=e.src.slice(c,l),e.md.inline.parse(a,e.md,e.env,_=[]),(f=e.push("image","img",0)).attrs=n=[["src",m],["alt",""]],f.children=_,f.content=a,h&&n.push(["title",h])),e.pos=u,e.posMax=v,!0}},function(e,t,n){"use strict";var r=/^([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,o=/^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$/;e.exports=function(e,t){var n,i,a,s,l,c,u=e.pos;if(60!==e.src.charCodeAt(u))return!1;for(l=e.pos,c=e.posMax;;){if(++u>=c)return!1;if(60===(s=e.src.charCodeAt(u)))return!1;if(62===s)break}return n=e.src.slice(l+1,u),o.test(n)?(i=e.md.normalizeLink(n),!!e.md.validateLink(i)&&(t||((a=e.push("link_open","a",1)).attrs=[["href",i]],a.markup="autolink",a.info="auto",(a=e.push("text","",0)).content=e.md.normalizeLinkText(n),(a=e.push("link_close","a",-1)).markup="autolink",a.info="auto"),e.pos+=n.length+2,!0)):!!r.test(n)&&(i=e.md.normalizeLink("mailto:"+n),!!e.md.validateLink(i)&&(t||((a=e.push("link_open","a",1)).attrs=[["href",i]],a.markup="autolink",a.info="auto",(a=e.push("text","",0)).content=e.md.normalizeLinkText(n),(a=e.push("link_close","a",-1)).markup="autolink",a.info="auto"),e.pos+=n.length+2,!0))}},function(e,t,n){"use strict";var r=n(67).HTML_TAG_RE;e.exports=function(e,t){var n,o,i,a,s,l=e.pos;return!!e.md.options.html&&(i=e.posMax,!(60!==e.src.charCodeAt(l)||l+2>=i)&&(!(33!==(n=e.src.charCodeAt(l+1))&&63!==n&&47!==n&&!function(e){var t=32|e;return t>=97&&t<=122}(n))&&(!!(o=e.src.slice(l).match(r))&&(t||((a=e.push("html_inline","",0)).content=o[0],s=a.content,/^<a[>\s]/i.test(s)&&e.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(a.content)&&e.linkLevel--),e.pos+=o[0].length,!0))))}},function(e,t,n){"use strict";var r=n(62),o=n(1).has,i=n(1).isValidEntityCode,a=n(1).fromCodePoint,s=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,l=/^&([a-z][a-z0-9]{1,31});/i;e.exports=function(e,t){var n,c,u,p=e.pos,d=e.posMax;if(38!==e.src.charCodeAt(p))return!1;if(p+1>=d)return!1;if(35===e.src.charCodeAt(p+1)){if(c=e.src.slice(p).match(s))return t||(n="x"===c[1][0].toLowerCase()?parseInt(c[1].slice(1),16):parseInt(c[1],10),(u=e.push("text_special","",0)).content=i(n)?a(n):a(65533),u.markup=c[0],u.info="entity"),e.pos+=c[0].length,!0}else if((c=e.src.slice(p).match(l))&&o(r,c[1]))return t||((u=e.push("text_special","",0)).content=r[c[1]],u.markup=c[0],u.info="entity"),e.pos+=c[0].length,!0;return!1}},function(e,t,n){"use strict";function r(e){var t,n,r,o,i,a,s,l,c={},u=e.length;if(u){var p=0,d=-2,h=[];for(t=0;t<u;t++)if(r=e[t],h.push(0),e[p].marker===r.marker&&d===r.token-1||(p=t),d=r.token,r.length=r.length||0,r.close){for(c.hasOwnProperty(r.marker)||(c[r.marker]=[-1,-1,-1,-1,-1,-1]),i=c[r.marker][(r.open?3:0)+r.length%3],a=n=p-h[p]-1;n>i;n-=h[n]+1)if((o=e[n]).marker===r.marker&&o.open&&o.end<0&&(s=!1,(o.close||r.open)&&(o.length+r.length)%3==0&&(o.length%3==0&&r.length%3==0||(s=!0)),!s)){l=n>0&&!e[n-1].open?h[n-1]+1:0,h[t]=t-n+l,h[n]=l,r.open=!1,o.end=t,o.close=!1,a=-1,d=-2;break}-1!==a&&(c[r.marker][(r.open?3:0)+(r.length||0)%3]=a)}}}e.exports=function(e){var t,n=e.tokens_meta,o=e.tokens_meta.length;for(r(e.delimiters),t=0;t<o;t++)n[t]&&n[t].delimiters&&r(n[t].delimiters)}},function(e,t,n){"use strict";e.exports=function(e){var t,n,r=0,o=e.tokens,i=e.tokens.length;for(t=n=0;t<i;t++)o[t].nesting<0&&r--,o[t].level=r,o[t].nesting>0&&r++,"text"===o[t].type&&t+1<i&&"text"===o[t+1].type?o[t+1].content=o[t].content+o[t+1].content:(t!==n&&(o[n]=o[t]),n++);t!==n&&(o.length=n)}},function(e,t,n){"use strict";var r=n(42),o=n(1).isWhiteSpace,i=n(1).isPunctChar,a=n(1).isMdAsciiPunct;function s(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}s.prototype.pushPending=function(){var e=new r("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},s.prototype.push=function(e,t,n){this.pending&&this.pushPending();var o=new r(e,t,n),i=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),o.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],i={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(o),this.tokens_meta.push(i),o},s.prototype.scanDelims=function(e,t){var n,r,s,l,c,u,p,d,h,f=e,_=!0,g=!0,m=this.posMax,b=this.src.charCodeAt(e);for(n=e>0?this.src.charCodeAt(e-1):32;f<m&&this.src.charCodeAt(f)===b;)f++;return s=f-e,r=f<m?this.src.charCodeAt(f):32,p=a(n)||i(String.fromCharCode(n)),h=a(r)||i(String.fromCharCode(r)),u=o(n),(d=o(r))?_=!1:h&&(u||p||(_=!1)),u?g=!1:p&&(d||h||(g=!1)),t?(l=_,c=g):(l=_&&(!g||p),c=g&&(!_||h)),{can_open:l,can_close:c,length:s}},s.prototype.Token=r,e.exports=s},function(e,t,n){"use strict";function r(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach((function(t){t&&Object.keys(t).forEach((function(n){e[n]=t[n]}))})),e}function o(e){return Object.prototype.toString.call(e)}function i(e){return"[object Function]"===o(e)}function a(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var s={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};var l={"http:":{validate:function(e,t,n){var r=e.slice(t);return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(r)?r.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,n){var r=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(r)?t>=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},c="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|ั€ั„".split("|");function u(e){var t=e.re=n(192)(e.__opts__),r=e.__tlds__.slice();function s(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||r.push("a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]"),r.push(t.src_xn),t.src_tlds=r.join("|"),t.email_fuzzy=RegExp(s(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(s(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(s(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(s(t.tpl_host_fuzzy_test),"i");var l=[];function c(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(t){var n=e.__schemas__[t];if(null!==n){var r={validate:null,link:null};if(e.__compiled__[t]=r,"[object Object]"===o(n))return!function(e){return"[object RegExp]"===o(e)}(n.validate)?i(n.validate)?r.validate=n.validate:c(t,n):r.validate=function(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}(n.validate),void(i(n.normalize)?r.normalize=n.normalize:n.normalize?c(t,n):r.normalize=function(e,t){t.normalize(e)});!function(e){return"[object String]"===o(e)}(n)?c(t,n):l.push(t)}})),l.forEach((function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}};var u=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(a).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><๏ฝœ]|"+t.src_ZPCc+"))("+u+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><๏ฝœ]|"+t.src_ZPCc+"))("+u+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function p(e,t){var n=e.__index__,r=e.__last_index__,o=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=o,this.text=o,this.url=o}function d(e,t){var n=new p(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function h(e,t){if(!(this instanceof h))return new h(e,t);var n;t||(n=e,Object.keys(n||{}).reduce((function(e,t){return e||s.hasOwnProperty(t)}),!1)&&(t=e,e={})),this.__opts__=r({},s,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=r({},l,e),this.__compiled__={},this.__tlds__=c,this.__tlds_replaced__=!1,this.re={},u(this)}h.prototype.add=function(e,t){return this.__schemas__[e]=t,u(this),this},h.prototype.set=function(e){return this.__opts__=r(this.__opts__,e),this},h.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,r,o,i,a,s,l;if(this.re.schema_test.test(e))for((s=this.re.schema_search).lastIndex=0;null!==(t=s.exec(e));)if(o=this.testSchemaAt(e,t[2],s.lastIndex)){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+o;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l<this.__index__)&&null!==(n=e.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(i=n.index+n[1].length,(this.__index__<0||i<this.__index__)&&(this.__schema__="",this.__index__=i,this.__last_index__=n.index+n[0].length)),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&e.indexOf("@")>=0&&null!==(r=e.match(this.re.email_fuzzy))&&(i=r.index+r[1].length,a=r.index+r[0].length,(this.__index__<0||i<this.__index__||i===this.__index__&&a>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=i,this.__last_index__=a)),this.__index__>=0},h.prototype.pretest=function(e){return this.re.pretest.test(e)},h.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},h.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(d(this,t)),t=this.__last_index__);for(var r=t?e.slice(t):e;this.test(r);)n.push(d(this,t)),r=r.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},h.prototype.matchAtStart=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return null;var t=this.re.schema_at_start.exec(e);if(!t)return null;var n=this.testSchemaAt(e,t[2],t[0].length);return n?(this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+n,d(this,0)):null},h.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,t,n){return e!==n[t-1]})).reverse(),u(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,u(this),this)},h.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},h.prototype.onCompile=function(){},e.exports=h},function(e,t,n){"use strict";e.exports=function(e){var t={};e=e||{},t.src_Any=n(64).source,t.src_Cc=n(65).source,t.src_Z=n(66).source,t.src_P=n(40).source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");return t.src_pseudo_letter="(?:(?![><๏ฝœ]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><๏ฝœ]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|[><๏ฝœ]|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><๏ฝœ]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|๏ฝœ]|"+t.src_ZPCc+"))((?![$+<=>^`|๏ฝœ])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|๏ฝœ]|"+t.src_ZPCc+"))((?![$+<=>^`|๏ฝœ])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}},function(e,t,n){(function(e,r){var o;/*! https://mths.be/punycode v1.4.1 by @mathias */!function(i){t&&t.nodeType,e&&e.nodeType;var a="object"==typeof r&&r;a.global!==a&&a.window!==a&&a.self;var s,l=2147483647,c=/^xn--/,u=/[^\x20-\x7E]/,p=/[\x2E\u3002\uFF0E\uFF61]/g,d={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},h=Math.floor,f=String.fromCharCode;function _(e){throw new RangeError(d[e])}function g(e,t){for(var n=e.length,r=[];n--;)r[n]=t(e[n]);return r}function m(e,t){var n=e.split("@"),r="";return n.length>1&&(r=n[0]+"@",e=n[1]),r+g((e=e.replace(p,".")).split("."),t).join(".")}function b(e){for(var t,n,r=[],o=0,i=e.length;o<i;)(t=e.charCodeAt(o++))>=55296&&t<=56319&&o<i?56320==(64512&(n=e.charCodeAt(o++)))?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),o--):r.push(t);return r}function v(e){return g(e,(function(e){var t="";return e>65535&&(t+=f((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=f(e)})).join("")}function k(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function w(e,t,n){var r=0;for(e=n?h(e/700):e>>1,e+=h(e/t);e>455;r+=36)e=h(e/35);return h(r+36*e/(e+38))}function y(e){var t,n,r,o,i,a,s,c,u,p,d,f=[],g=e.length,m=0,b=128,k=72;for((n=e.lastIndexOf("-"))<0&&(n=0),r=0;r<n;++r)e.charCodeAt(r)>=128&&_("not-basic"),f.push(e.charCodeAt(r));for(o=n>0?n+1:0;o<g;){for(i=m,a=1,s=36;o>=g&&_("invalid-input"),((c=(d=e.charCodeAt(o++))-48<10?d-22:d-65<26?d-65:d-97<26?d-97:36)>=36||c>h((l-m)/a))&&_("overflow"),m+=c*a,!(c<(u=s<=k?1:s>=k+26?26:s-k));s+=36)a>h(l/(p=36-u))&&_("overflow"),a*=p;k=w(m-i,t=f.length+1,0==i),h(m/t)>l-b&&_("overflow"),b+=h(m/t),m%=t,f.splice(m++,0,b)}return v(f)}function x(e){var t,n,r,o,i,a,s,c,u,p,d,g,m,v,y,x=[];for(g=(e=b(e)).length,t=128,n=0,i=72,a=0;a<g;++a)(d=e[a])<128&&x.push(f(d));for(r=o=x.length,o&&x.push("-");r<g;){for(s=l,a=0;a<g;++a)(d=e[a])>=t&&d<s&&(s=d);for(s-t>h((l-n)/(m=r+1))&&_("overflow"),n+=(s-t)*m,t=s,a=0;a<g;++a)if((d=e[a])<t&&++n>l&&_("overflow"),d==t){for(c=n,u=36;!(c<(p=u<=i?1:u>=i+26?26:u-i));u+=36)y=c-p,v=36-p,x.push(f(k(p+y%v,0))),c=h(y/v);x.push(f(k(c,0))),i=w(n,m,r==o),n=0,++r}++n,++t}return x.join("")}s={version:"1.4.1",ucs2:{decode:b,encode:v},decode:y,encode:x,toASCII:function(e){return m(e,(function(e){return u.test(e)?"xn--"+x(e):e}))},toUnicode:function(e){return m(e,(function(e){return c.test(e)?y(e.slice(4).toLowerCase()):e}))}},void 0===(o=function(){return s}.call(t,n,t,e))||(e.exports=o)}()}).call(this,n(194)(e),n(70))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"โ€œโ€โ€˜โ€™",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},function(e,t,n){"use strict";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"โ€œโ€โ€˜โ€™",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}}},function(e,t,n){"use strict";e.exports={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"โ€œโ€โ€˜โ€™",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}}},function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return i}));const r=/\\([ \\!"#$%&'()*+,./:;<=>?@[\]^_`{|}~-])/g;function o(e,t){const n=e.posMax,o=e.pos;if(126!==e.src.charCodeAt(o))return!1;if(t)return!1;if(o+2>=n)return!1;e.pos=o+1;let i=!1;for(;e.pos<n;){if(126===e.src.charCodeAt(e.pos)){i=!0;break}e.md.inline.skipToken(e)}if(!i||o+1===e.pos)return e.pos=o,!1;const a=e.src.slice(o+1,e.pos);if(a.match(/(^|[^\\])(\\\\)*\s/))return e.pos=o,!1;e.posMax=e.pos,e.pos=o+1;e.push("sub_open","sub",1).markup="~";e.push("text","",0).content=a.replace(r,"$1");return e.push("sub_close","sub",-1).markup="~",e.pos=e.posMax+1,e.posMax=n,!0}function i(e){e.inline.ruler.after("emphasis","sub",o)}},function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return i}));const r=/\\([ \\!"#$%&'()*+,./:;<=>?@[\]^_`{|}~-])/g;function o(e,t){const n=e.posMax,o=e.pos;if(94!==e.src.charCodeAt(o))return!1;if(t)return!1;if(o+2>=n)return!1;e.pos=o+1;let i=!1;for(;e.pos<n;){if(94===e.src.charCodeAt(e.pos)){i=!0;break}e.md.inline.skipToken(e)}if(!i||o+1===e.pos)return e.pos=o,!1;const a=e.src.slice(o+1,e.pos);if(a.match(/(^|[^\\])(\\\\)*\s/))return e.pos=o,!1;e.posMax=e.pos,e.pos=o+1;e.push("sup_open","sup",1).markup="^";e.push("text","",0).content=a.replace(r,"$1");return e.push("sup_close","sup",-1).markup="^",e.pos=e.posMax+1,e.posMax=n,!0}function i(e){e.inline.ruler.after("emphasis","sup",o)}},function(e,t,n){"use strict";function r(e){const t=e.utils.isSpace;function n(e,t){let n=e.bMarks[t]+e.tShift[t];const r=e.eMarks[t];if(n>=r)return-1;const o=e.src.charCodeAt(n++);if(126!==o&&58!==o)return-1;const i=e.skipSpaces(n);return n===i||i>=r?-1:n}e.block.ruler.before("paragraph","deflist",(function(e,r,o,i){if(i)return!(e.ddIndent<0)&&n(e,r)>=0;let a=r+1;if(a>=o)return!1;if(e.isEmpty(a)&&(a++,a>=o))return!1;if(e.sCount[a]<e.blkIndent)return!1;let s=n(e,a);if(s<0)return!1;const l=e.tokens.length;let c=!0;const u=[r,0];e.push("dl_open","dl",1).map=u;let p=r,d=a;e:for(;;){let r=!1;e.push("dt_open","dt",1).map=[p,p];const i=e.push("inline","",0);for(i.map=[p,p],i.content=e.getLines(p,p+1,e.blkIndent,!1).trim(),i.children=[],e.push("dt_close","dt",-1);;){const i=[a,0];e.push("dd_open","dd",1).map=i;let l=s;const u=e.eMarks[d];let p=e.sCount[d]+s-(e.bMarks[d]+e.tShift[d]);for(;l<u;){const n=e.src.charCodeAt(l);if(!t(n))break;9===n?p+=4-p%4:p++,l++}s=l;const h=e.tight,f=e.ddIndent,_=e.blkIndent,g=e.tShift[d],m=e.sCount[d],b=e.parentType;if(e.blkIndent=e.ddIndent=e.sCount[d]+2,e.tShift[d]=s-e.bMarks[d],e.sCount[d]=p,e.tight=!0,e.parentType="deflist",e.md.block.tokenize(e,d,o,!0),e.tight&&!r||(c=!1),r=e.line-d>1&&e.isEmpty(e.line-1),e.tShift[d]=g,e.sCount[d]=m,e.tight=h,e.parentType=b,e.blkIndent=_,e.ddIndent=f,e.push("dd_close","dd",-1),i[1]=a=e.line,a>=o)break e;if(e.sCount[a]<e.blkIndent)break e;if(s=n(e,a),s<0)break;d=a}if(a>=o)break;if(p=a,e.isEmpty(p))break;if(e.sCount[p]<e.blkIndent)break;if(d=p+1,d>=o)break;if(e.isEmpty(d)&&d++,d>=o)break;if(e.sCount[d]<e.blkIndent)break;if(s=n(e,d),s<0)break}return e.push("dl_close","dl",-1),u[1]=a,e.line=a,c&&function(e,t){const n=e.level+2;for(let r=t+2,o=e.tokens.length-2;r<o;r++)e.tokens[r].level===n&&"paragraph_open"===e.tokens[r].type&&(e.tokens[r+2].hidden=!0,e.tokens[r].hidden=!0,r+=2)}(e,l),!0}),{alt:["paragraph","reference","blockquote"]})}n.r(t),n.d(t,"default",(function(){return r}))},function(e,t,n){"use strict";function r(e){const t=e.utils.escapeRE,n=e.utils.arrayReplaceAt,r=e.utils.lib.ucmicro.P.source,o=e.utils.lib.ucmicro.Z.source;e.block.ruler.before("reference","abbr_def",(function(e,t,n,r){let o,i=e.bMarks[t]+e.tShift[t];const a=e.eMarks[t];if(i+2>=a)return!1;if(42!==e.src.charCodeAt(i++))return!1;if(91!==e.src.charCodeAt(i++))return!1;const s=i;for(;i<a;i++){const t=e.src.charCodeAt(i);if(91===t)return!1;if(93===t){o=i;break}92===t&&i++}if(o<0||58!==e.src.charCodeAt(o+1))return!1;if(r)return!0;const l=e.src.slice(s,o).replace(/\\(.)/g,"$1"),c=e.src.slice(o+2,a).trim();return 0!==l.length&&(0!==c.length&&(e.env.abbreviations||(e.env.abbreviations={}),void 0===e.env.abbreviations[":"+l]&&(e.env.abbreviations[":"+l]=c),e.line=t+1,!0))}),{alt:["paragraph","reference"]}),e.core.ruler.after("linkify","abbr_replace",(function(e){const i=e.tokens;if(!e.env.abbreviations)return;const a=new RegExp("(?:"+Object.keys(e.env.abbreviations).map((function(e){return e.substr(1)})).sort((function(e,t){return t.length-e.length})).map(t).join("|")+")"),s="(^|"+r+"|"+o+"|["+" \r\n$+<=>^`|~".split("").map(t).join("")+"])("+Object.keys(e.env.abbreviations).map((function(e){return e.substr(1)})).sort((function(e,t){return t.length-e.length})).map(t).join("|")+")($|"+r+"|"+o+"|["+" \r\n$+<=>^`|~".split("").map(t).join("")+"])",l=new RegExp(s,"g");for(let t=0,r=i.length;t<r;t++){if("inline"!==i[t].type)continue;let r=i[t].children;for(let o=r.length-1;o>=0;o--){const s=r[o];if("text"!==s.type)continue;let c=0;const u=s.content;l.lastIndex=0;const p=[];if(!a.test(u))continue;let d;for(;d=l.exec(u);){if(d.index>0||d[1].length>0){const t=new e.Token("text","",0);t.content=u.slice(c,d.index+d[1].length),p.push(t)}const t=new e.Token("abbr_open","abbr",1);t.attrs=[["title",e.env.abbreviations[":"+d[2]]]],p.push(t);const n=new e.Token("text","",0);n.content=d[2],p.push(n);const r=new e.Token("abbr_close","abbr",-1);p.push(r),l.lastIndex-=d[3].length,c=l.lastIndex}if(p.length){if(c<u.length){const t=new e.Token("text","",0);t.content=u.slice(c),p.push(t)}i[t].children=r=n(r,o,p)}}}}))}n.r(t),n.d(t,"default",(function(){return r}))},function(e,t,n){"use strict";function r(e,t,n,r){const o=Number(e[t].meta.id+1).toString();let i="";return"string"==typeof r.docId&&(i=`-${r.docId}-`),i+o}function o(e,t){let n=Number(e[t].meta.id+1).toString();return e[t].meta.subId>0&&(n+=":"+e[t].meta.subId),`[${n}]`}function i(e,t,n,r,o){const i=o.rules.footnote_anchor_name(e,t,n,r,o),a=o.rules.footnote_caption(e,t,n,r,o);let s=i;return e[t].meta.subId>0&&(s+=":"+e[t].meta.subId),`<sup class="footnote-ref"><a href="#fn${i}" id="fnref${s}">${a}</a></sup>`}function a(e,t,n){return(n.xhtmlOut?'<hr class="footnotes-sep" />\n':'<hr class="footnotes-sep">\n')+'<section class="footnotes">\n<ol class="footnotes-list">\n'}function s(){return"</ol>\n</section>\n"}function l(e,t,n,r,o){let i=o.rules.footnote_anchor_name(e,t,n,r,o);return e[t].meta.subId>0&&(i+=":"+e[t].meta.subId),`<li id="fn${i}" class="footnote-item">`}function c(){return"</li>\n"}function u(e,t,n,r,o){let i=o.rules.footnote_anchor_name(e,t,n,r,o);return e[t].meta.subId>0&&(i+=":"+e[t].meta.subId),` <a href="#fnref${i}" class="footnote-backref">โ†ฉ๏ธŽ</a>`}function p(e){const t=e.helpers.parseLinkLabel,n=e.utils.isSpace;e.renderer.rules.footnote_ref=i,e.renderer.rules.footnote_block_open=a,e.renderer.rules.footnote_block_close=s,e.renderer.rules.footnote_open=l,e.renderer.rules.footnote_close=c,e.renderer.rules.footnote_anchor=u,e.renderer.rules.footnote_caption=o,e.renderer.rules.footnote_anchor_name=r,e.block.ruler.before("reference","footnote_def",(function(e,t,r,o){const i=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(i+4>a)return!1;if(91!==e.src.charCodeAt(i))return!1;if(94!==e.src.charCodeAt(i+1))return!1;let s;for(s=i+2;s<a;s++){if(32===e.src.charCodeAt(s))return!1;if(93===e.src.charCodeAt(s))break}if(s===i+2)return!1;if(s+1>=a||58!==e.src.charCodeAt(++s))return!1;if(o)return!0;s++,e.env.footnotes||(e.env.footnotes={}),e.env.footnotes.refs||(e.env.footnotes.refs={});const l=e.src.slice(i+2,s-2);e.env.footnotes.refs[":"+l]=-1;const c=new e.Token("footnote_reference_open","",1);c.meta={label:l},c.level=e.level++,e.tokens.push(c);const u=e.bMarks[t],p=e.tShift[t],d=e.sCount[t],h=e.parentType,f=s,_=e.sCount[t]+s-(e.bMarks[t]+e.tShift[t]);let g=_;for(;s<a;){const t=e.src.charCodeAt(s);if(!n(t))break;9===t?g+=4-g%4:g++,s++}e.tShift[t]=s-f,e.sCount[t]=g-_,e.bMarks[t]=f,e.blkIndent+=4,e.parentType="footnote",e.sCount[t]<e.blkIndent&&(e.sCount[t]+=e.blkIndent),e.md.block.tokenize(e,t,r,!0),e.parentType=h,e.blkIndent-=4,e.tShift[t]=p,e.sCount[t]=d,e.bMarks[t]=u;const m=new e.Token("footnote_reference_close","",-1);return m.level=--e.level,e.tokens.push(m),!0}),{alt:["paragraph","reference"]}),e.inline.ruler.after("image","footnote_inline",(function(e,n){const r=e.posMax,o=e.pos;if(o+2>=r)return!1;if(94!==e.src.charCodeAt(o))return!1;if(91!==e.src.charCodeAt(o+1))return!1;const i=o+2,a=t(e,o+1);if(a<0)return!1;if(!n){e.env.footnotes||(e.env.footnotes={}),e.env.footnotes.list||(e.env.footnotes.list=[]);const t=e.env.footnotes.list.length,n=[];e.md.inline.parse(e.src.slice(i,a),e.md,e.env,n);e.push("footnote_ref","",0).meta={id:t},e.env.footnotes.list[t]={content:e.src.slice(i,a),tokens:n}}return e.pos=a+1,e.posMax=r,!0})),e.inline.ruler.after("footnote_inline","footnote_ref",(function(e,t){const n=e.posMax,r=e.pos;if(r+3>n)return!1;if(!e.env.footnotes||!e.env.footnotes.refs)return!1;if(91!==e.src.charCodeAt(r))return!1;if(94!==e.src.charCodeAt(r+1))return!1;let o;for(o=r+2;o<n;o++){if(32===e.src.charCodeAt(o))return!1;if(10===e.src.charCodeAt(o))return!1;if(93===e.src.charCodeAt(o))break}if(o===r+2)return!1;if(o>=n)return!1;o++;const i=e.src.slice(r+2,o-1);if(void 0===e.env.footnotes.refs[":"+i])return!1;if(!t){let t;e.env.footnotes.list||(e.env.footnotes.list=[]),e.env.footnotes.refs[":"+i]<0?(t=e.env.footnotes.list.length,e.env.footnotes.list[t]={label:i,count:0},e.env.footnotes.refs[":"+i]=t):t=e.env.footnotes.refs[":"+i];const n=e.env.footnotes.list[t].count;e.env.footnotes.list[t].count++;e.push("footnote_ref","",0).meta={id:t,subId:n,label:i}}return e.pos=o,e.posMax=n,!0})),e.core.ruler.after("inline","footnote_tail",(function(e){let t,n,r,o=!1;const i={};if(!e.env.footnotes)return;if(e.tokens=e.tokens.filter((function(e){return"footnote_reference_open"===e.type?(o=!0,n=[],r=e.meta.label,!1):"footnote_reference_close"===e.type?(o=!1,i[":"+r]=n,!1):(o&&n.push(e),!o)})),!e.env.footnotes.list)return;const a=e.env.footnotes.list;e.tokens.push(new e.Token("footnote_block_open","",1));for(let n=0,r=a.length;n<r;n++){const r=new e.Token("footnote_open","",1);if(r.meta={id:n,label:a[n].label},e.tokens.push(r),a[n].tokens){t=[];const r=new e.Token("paragraph_open","p",1);r.block=!0,t.push(r);const o=new e.Token("inline","",0);o.children=a[n].tokens,o.content=a[n].content,t.push(o);const i=new e.Token("paragraph_close","p",-1);i.block=!0,t.push(i)}else a[n].label&&(t=i[":"+a[n].label]);let o;t&&(e.tokens=e.tokens.concat(t)),o="paragraph_close"===e.tokens[e.tokens.length-1].type?e.tokens.pop():null;const s=a[n].count>0?a[n].count:1;for(let t=0;t<s;t++){const r=new e.Token("footnote_anchor","",0);r.meta={id:n,subId:t,label:a[n].label},e.tokens.push(r)}o&&e.tokens.push(o),e.tokens.push(new e.Token("footnote_close","",-1))}e.tokens.push(new e.Token("footnote_block_close","",-1))}))}n.r(t),n.d(t,"default",(function(){return p}))},function(e,t,n){"use strict";function r(e){function t(e,t){let n;const r=[],o=t.length;for(let i=0;i<o;i++){const o=t[i];if(43!==o.marker)continue;if(-1===o.end)continue;const a=t[o.end];n=e.tokens[o.token],n.type="ins_open",n.tag="ins",n.nesting=1,n.markup="++",n.content="",n=e.tokens[a.token],n.type="ins_close",n.tag="ins",n.nesting=-1,n.markup="++",n.content="","text"===e.tokens[a.token-1].type&&"+"===e.tokens[a.token-1].content&&r.push(a.token-1)}for(;r.length;){const t=r.pop();let o=t+1;for(;o<e.tokens.length&&"ins_close"===e.tokens[o].type;)o++;o--,t!==o&&(n=e.tokens[o],e.tokens[o]=e.tokens[t],e.tokens[t]=n)}}e.inline.ruler.before("emphasis","ins",(function(e,t){const n=e.pos,r=e.src.charCodeAt(n);if(t)return!1;if(43!==r)return!1;const o=e.scanDelims(e.pos,!0);let i=o.length;const a=String.fromCharCode(r);if(i<2)return!1;if(i%2){e.push("text","",0).content=a,i--}for(let t=0;t<i;t+=2){e.push("text","",0).content=a+a,(o.can_open||o.can_close)&&e.delimiters.push({marker:r,length:0,jump:t/2,token:e.tokens.length-1,end:-1,open:o.can_open,close:o.can_close})}return e.pos+=o.length,!0})),e.inline.ruler2.before("emphasis","ins",(function(e){const n=e.tokens_meta,r=(e.tokens_meta||[]).length;t(e,e.delimiters);for(let o=0;o<r;o++)n[o]&&n[o].delimiters&&t(e,n[o].delimiters)}))}n.r(t),n.d(t,"default",(function(){return r}))},function(e,t,n){"use strict";function r(e){function t(e,t){const n=[],r=t.length;for(let o=0;o<r;o++){const r=t[o];if(61!==r.marker)continue;if(-1===r.end)continue;const i=t[r.end],a=e.tokens[r.token];a.type="mark_open",a.tag="mark",a.nesting=1,a.markup="==",a.content="";const s=e.tokens[i.token];s.type="mark_close",s.tag="mark",s.nesting=-1,s.markup="==",s.content="","text"===e.tokens[i.token-1].type&&"="===e.tokens[i.token-1].content&&n.push(i.token-1)}for(;n.length;){const t=n.pop();let r=t+1;for(;r<e.tokens.length&&"mark_close"===e.tokens[r].type;)r++;if(r--,t!==r){const n=e.tokens[r];e.tokens[r]=e.tokens[t],e.tokens[t]=n}}}e.inline.ruler.before("emphasis","mark",(function(e,t){const n=e.pos,r=e.src.charCodeAt(n);if(t)return!1;if(61!==r)return!1;const o=e.scanDelims(e.pos,!0);let i=o.length;const a=String.fromCharCode(r);if(i<2)return!1;if(i%2){e.push("text","",0).content=a,i--}for(let t=0;t<i;t+=2){e.push("text","",0).content=a+a,(o.can_open||o.can_close)&&e.delimiters.push({marker:r,length:0,jump:t/2,token:e.tokens.length-1,end:-1,open:o.can_open,close:o.can_close})}return e.pos+=o.length,!0})),e.inline.ruler2.before("emphasis","mark",(function(e){let n;const r=e.tokens_meta,o=(e.tokens_meta||[]).length;for(t(e,e.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&t(e,r[n].delimiters)}))}n.r(t),n.d(t,"default",(function(){return r}))},function(e,t){var n=!0,r=!1,o=!1;function i(e,t,n){var r=e.attrIndex(t),o=[t,n];r<0?e.attrPush(o):e.attrs[r]=o}function a(e,t){for(var n=e[t].level-1,r=t-1;r>=0;r--)if(e[r].level===n)return r;return-1}function s(e,t){return"inline"===e[t].type&&function(e){return"paragraph_open"===e.type}(e[t-1])&&function(e){return"list_item_open"===e.type}(e[t-2])&&function(e){return 0===e.content.indexOf("[ ] ")||0===e.content.indexOf("[x] ")||0===e.content.indexOf("[X] ")}(e[t])}function l(e,t){if(e.children.unshift(function(e,t){var r=new t("html_inline","",0),o=n?' disabled="" ':"";0===e.content.indexOf("[ ] ")?r.content='<input class="task-list-item-checkbox"'+o+'type="checkbox">':0!==e.content.indexOf("[x] ")&&0!==e.content.indexOf("[X] ")||(r.content='<input class="task-list-item-checkbox" checked=""'+o+'type="checkbox">');return r}(e,t)),e.children[1].content=e.children[1].content.slice(3),e.content=e.content.slice(3),r)if(o){e.children.pop();var i="task-item-"+Math.ceil(1e7*Math.random()-1e3);e.children[0].content=e.children[0].content.slice(0,-1)+' id="'+i+'">',e.children.push(function(e,t,n){var r=new n("html_inline","",0);return r.content='<label class="task-list-item-label" for="'+t+'">'+e+"</label>",r.attrs=[{for:t}],r}(e.content,i,t))}else e.children.unshift(function(e){var t=new e("html_inline","",0);return t.content="<label>",t}(t)),e.children.push(function(e){var t=new e("html_inline","",0);return t.content="</label>",t}(t))}e.exports=function(e,t){t&&(n=!t.enabled,r=!!t.label,o=!!t.labelAfter),e.core.ruler.after("inline","github-task-lists",(function(e){for(var t=e.tokens,r=2;r<t.length;r++)s(t,r)&&(l(t[r],e.Token),i(t[r-2],"class","task-list-item"+(n?"":" enabled")),i(t[a(t,r-2)],"class","contains-task-list"))}))}},function(e,t,n){"use strict";function r(e,t,n){const r=(n=n||{}).marker||":",o=r.charCodeAt(0),i=r.length,a=n.validate||function(e){return e.trim().split(" ",2)[0]===t},s=n.render||function(e,n,r,o,i){return 1===e[n].nesting&&e[n].attrJoin("class",t),i.renderToken(e,n,r,o,i)};e.block.ruler.before("fence","container_"+t,(function(e,n,s,l){let c,u=!1,p=e.bMarks[n]+e.tShift[n],d=e.eMarks[n];if(o!==e.src.charCodeAt(p))return!1;for(c=p+1;c<=d&&r[(c-p)%i]===e.src[c];c++);const h=Math.floor((c-p)/i);if(h<3)return!1;c-=(c-p)%i;const f=e.src.slice(p,c),_=e.src.slice(c,d);if(!a(_,f))return!1;if(l)return!0;let g=n;for(;(g++,!(g>=s))&&(p=e.bMarks[g]+e.tShift[g],d=e.eMarks[g],!(p<d&&e.sCount[g]<e.blkIndent));)if(o===e.src.charCodeAt(p)&&!(e.sCount[g]-e.blkIndent>=4)){for(c=p+1;c<=d&&r[(c-p)%i]===e.src[c];c++);if(!(Math.floor((c-p)/i)<h||(c-=(c-p)%i,c=e.skipSpaces(c),c<d))){u=!0;break}}const m=e.parentType,b=e.lineMax;e.parentType="container",e.lineMax=g;const v=e.push("container_"+t+"_open","div",1);v.markup=f,v.block=!0,v.info=_,v.map=[n,g],e.md.block.tokenize(e,n+1,g);const k=e.push("container_"+t+"_close","div",-1);return k.markup=e.src.slice(p,c),k.block=!0,e.parentType=m,e.lineMax=b,e.line=g+(u?1:0),!0}),{alt:["paragraph","reference","blockquote","list"]}),e.renderer.rules["container_"+t+"_open"]=s,e.renderer.rules["container_"+t+"_close"]=s}n.r(t),n.d(t,"default",(function(){return r}))},function(e,t,n){"use strict";e.exports=function(e){var t,n=/^@\[toc\](?:\((?:\s+)?([^\)]+)(?:\s+)?\)?)?(?:\s+?)?$/im;var r=function(e){return e.replace(/[^\w\s]/gi,"").split(" ").join("_")};e.renderer.rules.heading_open=function(e,t){var n=e[t].tag,o=e[t+1];return"inline"===o.type?"<"+n+'><a id="'+(r(o.content)+"_"+o.map[0])+'"></a>':"</h1>"},e.renderer.rules.toc_open=function(e,t){return""},e.renderer.rules.toc_close=function(e,t){return""},e.renderer.rules.toc_body=function(e,n){for(var o=[],i=t.tokens,a=i.length,s=0;s<a;s++)if("heading_close"===i[s].type){var l=i[s],c=i[s-1];"inline"===c.type&&o.push({level:+l.tag.substr(1,1),anchor:r(c.content)+"_"+c.map[0],content:c.content})}var u=0,p=o.map((function(e){var t=[];if(e.level>u)for(var n=e.level-u,r=0;r<n;r++)t.push("<ul>"),u++;else if(e.level<u)for(n=u-e.level,r=0;r<n;r++)t.push("</ul>"),u--;return(t=t.concat(['<li><a href="#',e.anchor,'">',e.content,"</a></li>"])).join("")}));return"<h3>"+e[n].content+"</h3>"+p.join("")+new Array(u+1).join("</ul>")},e.core.ruler.push("grab_state",(function(e){t=e})),e.inline.ruler.after("emphasis","toc",(function(e,t){for(;e.src.indexOf("\n")>=0&&e.src.indexOf("\n")<e.src.indexOf("@[toc]");)"softbreak"===e.tokens.slice(-1)[0].type&&(e.src=e.src.split("\n").slice(1).join("\n"),e.pos=0);var r;if(64!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;var o=n.exec(e.src);if(!o)return!1;if((o=o.filter((function(e){return e}))).length<1)return!1;if(t)return!1;(r=e.push("toc_open","toc",1)).markup="@[toc]",r=e.push("toc_body","",0);var i="Table of Contents";o.length>1&&(i=o.pop()),r.content=i,r=e.push("toc_close","toc",-1);var a=0,s=e.src.indexOf("\n");return a=-1!==s?e.pos+s:e.pos+e.posMax+1,e.pos=a,!0}))}},function(e,t){e.exports=function(e,t){void 0===(t=t||{}).highlighted&&(t.highlighted=!0),void 0===t.hljs&&(t.hljs="auto"),"function"!=typeof t.langCheck&&(t.langCheck=function(){}),e.options.highlight=function(n,r){var o=t.hljs;if("auto"===t.hljs&&(o=window.hljs),t.highlighted&&r&&o){if(o.getLanguage(r))return'<pre><div class="hljs"><code class="'+e.options.langPrefix+r+'">'+o.highlight(r,n,!0).value+"</code></div></pre>";"function"==typeof t.langCheck&&t.langCheck(r)}return'<pre><code class="'+e.options.langPrefix+r+'">'+e.utils.escapeHtml(n)+"</code></pre>"}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(210);t.default=function(e,t){e.block.ruler.before("table","gridtable",(0,r.default)(e))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(211),o=n(213),i=n(214);t.default=function(e){return function(t,n,a,s){if(43!==(0,o.default)(t,n))return!1;let l=(0,i.default)(t,n,a);return!!l.Success&&(s||((0,r.default)(e,t,l),t.line=l.CurrentLine),!0)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(212),o=n(71);function i(e,t,n,r,i,a,s){t.push("tr_open","tr",1).map=[i,a];for(let l=0;l<s.length;l++){let c=t.push(n+"_open",n,1);if(c.map=[i+1,a-1],r[l]!==o.default.None&&c.attrSet("style",`text-align: ${r[l]};`),0===s[l].length);else if(1===s[l].length){let e=t.push("inline","",0);e.content=s[l][0].trim(),e.children=[]}else{let n=e.render(s[l].join("\r\n")).trim();"<p>"===n.slice(0,3)&&"</p>"===n.slice(-4)&&-1===n.indexOf("<p>",3)&&(n=n.slice(3,n.length-4));let r=t.push("html_block","",0);r.content=n,r.children=[]}t.push(n+"_close",n,-1)}t.push("tr_close","tr",-1)}t.default=function(e,t,n){let o=n.SeparatorLineOffsets,a=t.push("table_open","table",1);if(a.map=[o[0],o[o.length-1]],n.HeaderLines.length>0){t.push("thead_open","thead",1).map=[o[0],o[1]];const a=(0,r.default)(n.HeaderLines);i(e,t,"th",n.ColumnAlignments,o[0],o[1],a),t.push("thead_close","thead",-1),o=o.slice(1)}a=t.push("tbody_open","tbody",1),a.map=[o[0],o[o.length-1]];for(let a=0;a<n.RowLines.length;a++){let s=(0,r.default)(n.RowLines[a]);i(e,t,"td",n.ColumnAlignments,o[a],o[a+1],s)}t.push("tbody_close","tbody",-1),t.push("table_close","table",-1)}},function(e,t,n){"use strict";function r(e){const t=e.trim();return 0===t.length?"":e.slice(0,e.indexOf(t)+t.length)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){const t=[];for(let n=0;n<e[0].length;n++){let o=[];for(let t=0;t<e.length;t++){const i=r(e[t][n]);0===i.length&&0===o.length||o.push(i)}let i=o.length-1;for(;i>=0&&!(o[i].length>0);i--);i<o.length-1&&(o=o.slice(0,i+1)),t.push(o)}return t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){const n=e.bMarks[t]+e.tShift[t];return n>=e.eMarks[t]?-1:e.src.charCodeAt(n)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(215),o=n(223),i=n(71),a=n(224),s=n(225);function l(e,t){let n=[],r=1,o=-1;for(let a=0;a<t.length;a++){o+=t[a];let s=i.default.None;":"===e.charAt(o)?s=":"===e.charAt(r)?i.default.Center:i.default.Right:":"===e.charAt(r)&&(s=i.default.Left),n.push(s),r+=t[a]}return n}function c(e,t){const n=[];for(var o=0;o<t.length;o++){const i=e[o+1];if(r(i)+1!==t[o])return null;n.push(i)}return n}t.default=function(e,t,n){const r=new s.default;let u=(0,a.default)(e,t);if("+"!==u.charAt(0))return r;if(r.ColumnWidths=(0,o.default)(u),0===r.ColumnWidths.length)return r;r.ColumnAlignments=r.ColumnWidths.map(e=>i.default.None),u.indexOf(":")>=0&&(r.HeaderLess=!0,r.ColumnAlignments=l(u,r.ColumnWidths),u=u.replace(/[:]/g,"-"));const p=new RegExp("^\\+"+r.ColumnWidths.map(e=>`[=:][=]{${e-3}}[=:]\\+`).join("")+"$");r.ColumnOffsets=[0];for(let e=0;e<r.ColumnWidths.length-1;e++)r.ColumnOffsets.push(r.ColumnOffsets[e]+r.ColumnWidths[e]);const d=new RegExp("^\\|"+r.ColumnWidths.map(e=>`([^|]{${Math.ceil((e-1)/2)},${e-1}})\\|`).join("")+"$");r.SeparatorLineOffsets.push(t);let h=[],f=t+1;for(;f<=n;f++){const t=(0,a.default)(e,f);if(43===t.charCodeAt(0)){if(0===h.length)return r;if(r.SeparatorLineOffsets.push(f),t===u)r.RowLines.push(h),0===r.HeaderLines.length&&(r.HeaderLess=!0);else{if(r.HeaderLess||!t.match(p))return r;if(r.HeaderLines.length>0||r.RowLines.length>0)return r;r.HeaderLines=h,t.indexOf(":")>=0&&(r.ColumnAlignments=l(t,r.ColumnWidths))}h=[]}else{if(124!==t.charCodeAt(0)){if(0===h.length&&(r.HeaderLines.length>0||r.RowLines.length>0))break;return r}{const e=t.match(d);if(null===e)return r;const n=c(e,r.ColumnWidths);if(null===n)return r;h.push(n)}}}return r.CurrentLine=f,r.Success=!0,r}},function(e,t,n){"use strict";var r=n(216),o=n(222),i={nul:0,control:0};function a(e,t){if("string"!=typeof e)return s(e,t);for(var n=0,r=0;r<e.length;r++){var o=s(e.charCodeAt(r),t);if(o<0)return-1;n+=o}return n}function s(e,t){return 0===e?t.nul:e<32||e>=127&&e<160?t.control:function(e){var t,n=0,r=o.length-1;if(e<o[0][0]||e>o[r][1])return!1;for(;r>=n;)if(t=Math.floor((n+r)/2),e>o[t][1])n=t+1;else{if(!(e<o[t][0]))return!0;r=t-1}return!1}(e)?0:1+(e>=4352&&(e<=4447||9001==e||9002==e||e>=11904&&e<=42191&&12351!=e||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141))}e.exports=function(e){return a(e,i)},e.exports.config=function(e){return e=r(e||{},i),function(t){return a(t,e)}}},function(e,t,n){var r=n(217);e.exports=function(e,t){return e=e||{},Object.keys(t).forEach((function(n){void 0===e[n]&&(e[n]=r(t[n]))})),e}},function(e,t,n){(function(t){var n=function(){"use strict";function e(n,o,i,a){"object"==typeof o&&(i=o.depth,a=o.prototype,o.filter,o=o.circular);var s=[],l=[],c=void 0!==t;return void 0===o&&(o=!0),void 0===i&&(i=1/0),function n(i,u){if(null===i)return null;if(0==u)return i;var p,d;if("object"!=typeof i)return i;if(e.__isArray(i))p=[];else if(e.__isRegExp(i))p=new RegExp(i.source,r(i)),i.lastIndex&&(p.lastIndex=i.lastIndex);else if(e.__isDate(i))p=new Date(i.getTime());else{if(c&&t.isBuffer(i))return p=t.allocUnsafe?t.allocUnsafe(i.length):new t(i.length),i.copy(p),p;void 0===a?(d=Object.getPrototypeOf(i),p=Object.create(d)):(p=Object.create(a),d=a)}if(o){var h=s.indexOf(i);if(-1!=h)return l[h];s.push(i),l.push(p)}for(var f in i){var _;d&&(_=Object.getOwnPropertyDescriptor(d,f)),_&&null==_.set||(p[f]=n(i[f],u-1))}return p}(n,i)}function n(e){return Object.prototype.toString.call(e)}function r(e){var t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),t}return e.clonePrototype=function(e){if(null===e)return null;var t=function(){};return t.prototype=e,new t},e.__objToStr=n,e.__isDate=function(e){return"object"==typeof e&&"[object Date]"===n(e)},e.__isArray=function(e){return"object"==typeof e&&"[object Array]"===n(e)},e.__isRegExp=function(e){return"object"==typeof e&&"[object RegExp]"===n(e)},e.__getRegExpFlags=r,e}();e.exports&&(e.exports=n)}).call(this,n(218).Buffer)},function(e,t,n){"use strict";(function(e){
2
+ /*!
3
+ * The buffer module from node.js, for the browser.
4
+ *
5
+ * @author Feross Aboukhadijeh <http://feross.org>
6
+ * @license MIT
7
+ */
8
+ var r=n(219),o=n(220),i=n(221);function a(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(e,t){if(a()<t)throw new RangeError("Invalid typed array length");return l.TYPED_ARRAY_SUPPORT?(e=new Uint8Array(t)).__proto__=l.prototype:(null===e&&(e=new l(t)),e.length=t),e}function l(e,t,n){if(!(l.TYPED_ARRAY_SUPPORT||this instanceof l))return new l(e,t,n);if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return p(this,e)}return c(this,e,t,n)}function c(e,t,n,r){if("number"==typeof t)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer?function(e,t,n,r){if(t.byteLength,n<0||t.byteLength<n)throw new RangeError("'offset' is out of bounds");if(t.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");t=void 0===n&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,n):new Uint8Array(t,n,r);l.TYPED_ARRAY_SUPPORT?(e=t).__proto__=l.prototype:e=d(e,t);return e}(e,t,n,r):"string"==typeof t?function(e,t,n){"string"==typeof n&&""!==n||(n="utf8");if(!l.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|f(t,n),o=(e=s(e,r)).write(t,n);o!==r&&(e=e.slice(0,o));return e}(e,t,n):function(e,t){if(l.isBuffer(t)){var n=0|h(t.length);return 0===(e=s(e,n)).length||t.copy(e,0,0,n),e}if(t){if("undefined"!=typeof ArrayBuffer&&t.buffer instanceof ArrayBuffer||"length"in t)return"number"!=typeof t.length||(r=t.length)!=r?s(e,0):d(e,t);if("Buffer"===t.type&&i(t.data))return d(e,t.data)}var r;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(e,t)}function u(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function p(e,t){if(u(t),e=s(e,t<0?0:0|h(t)),!l.TYPED_ARRAY_SUPPORT)for(var n=0;n<t;++n)e[n]=0;return e}function d(e,t){var n=t.length<0?0:0|h(t.length);e=s(e,n);for(var r=0;r<n;r+=1)e[r]=255&t[r];return e}function h(e){if(e>=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function f(e,t){if(l.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return N(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return R(e).length;default:if(r)return N(e).length;t=(""+t).toLowerCase(),r=!0}}function _(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return S(this,t,n);case"utf8":case"utf-8":return A(this,t,n);case"ascii":return E(this,t,n);case"latin1":case"binary":return O(this,t,n);case"base64":return j(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return T(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function g(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function m(e,t,n,r,o){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=l.from(t,r)),l.isBuffer(t))return 0===t.length?-1:b(e,t,n,r,o);if("number"==typeof t)return t&=255,l.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):b(e,[t],n,r,o);throw new TypeError("val must be string, number or Buffer")}function b(e,t,n,r,o){var i,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(o){var u=-1;for(i=n;i<s;i++)if(c(e,i)===c(t,-1===u?0:i-u)){if(-1===u&&(u=i),i-u+1===l)return u*a}else-1!==u&&(i-=i-u),u=-1}else for(n+l>s&&(n=s-l),i=n;i>=0;i--){for(var p=!0,d=0;d<l;d++)if(c(e,i+d)!==c(t,d)){p=!1;break}if(p)return i}return-1}function v(e,t,n,r){n=Number(n)||0;var o=e.length-n;r?(r=Number(r))>o&&(r=o):r=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a<r;++a){var s=parseInt(t.substr(2*a,2),16);if(isNaN(s))return a;e[n+a]=s}return a}function k(e,t,n,r){return P(N(t,e.length-n),e,n,r)}function w(e,t,n,r){return P(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function y(e,t,n,r){return w(e,t,n,r)}function x(e,t,n,r){return P(R(t),e,n,r)}function C(e,t,n,r){return P(function(e,t){for(var n,r,o,i=[],a=0;a<e.length&&!((t-=2)<0);++a)n=e.charCodeAt(a),r=n>>8,o=n%256,i.push(o),i.push(r);return i}(t,e.length-n),e,n,r)}function j(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function A(e,t,n){n=Math.min(e.length,n);for(var r=[],o=t;o<n;){var i,a,s,l,c=e[o],u=null,p=c>239?4:c>223?3:c>191?2:1;if(o+p<=n)switch(p){case 1:c<128&&(u=c);break;case 2:128==(192&(i=e[o+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=e[o+1],a=e[o+2],128==(192&i)&&128==(192&a)&&(l=(15&c)<<12|(63&i)<<6|63&a)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=e[o+1],a=e[o+2],s=e[o+3],128==(192&i)&&128==(192&a)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,p=1):u>65535&&(u-=65536,r.push(u>>>10&1023|55296),u=56320|1023&u),r.push(u),o+=p}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=4096));return n}(r)}t.Buffer=l,t.SlowBuffer=function(e){+e!=e&&(e=0);return l.alloc(+e)},t.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==e.TYPED_ARRAY_SUPPORT?e.TYPED_ARRAY_SUPPORT:function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()&&"function"==typeof e.subarray&&0===e.subarray(1,1).byteLength}catch(e){return!1}}(),t.kMaxLength=a(),l.poolSize=8192,l._augment=function(e){return e.__proto__=l.prototype,e},l.from=function(e,t,n){return c(null,e,t,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(e,t,n){return function(e,t,n,r){return u(t),t<=0?s(e,t):void 0!==n?"string"==typeof r?s(e,t).fill(n,r):s(e,t).fill(n):s(e,t)}(null,e,t,n)},l.allocUnsafe=function(e){return p(null,e)},l.allocUnsafeSlow=function(e){return p(null,e)},l.isBuffer=function(e){return!(null==e||!e._isBuffer)},l.compare=function(e,t){if(!l.isBuffer(e)||!l.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,r=t.length,o=0,i=Math.min(n,r);o<i;++o)if(e[o]!==t[o]){n=e[o],r=t[o];break}return n<r?-1:r<n?1:0},l.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},l.concat=function(e,t){if(!i(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return l.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=l.allocUnsafe(t),o=0;for(n=0;n<e.length;++n){var a=e[n];if(!l.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,o),o+=a.length}return r},l.byteLength=f,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)g(this,t,t+1);return this},l.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)g(this,t,t+3),g(this,t+1,t+2);return this},l.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)g(this,t,t+7),g(this,t+1,t+6),g(this,t+2,t+5),g(this,t+3,t+4);return this},l.prototype.toString=function(){var e=0|this.length;return 0===e?"":0===arguments.length?A(this,0,e):_.apply(this,arguments)},l.prototype.equals=function(e){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===l.compare(this,e)},l.prototype.inspect=function(){var e="",n=t.INSPECT_MAX_BYTES;return this.length>0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),"<Buffer "+e+">"},l.prototype.compare=function(e,t,n,r,o){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),t<0||n>e.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&t>=n)return 0;if(r>=o)return-1;if(t>=n)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(i,a),c=this.slice(r,o),u=e.slice(t,n),p=0;p<s;++p)if(c[p]!==u[p]){i=c[p],a=u[p];break}return i<a?-1:a<i?1:0},l.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},l.prototype.indexOf=function(e,t,n){return m(this,e,t,n,!0)},l.prototype.lastIndexOf=function(e,t,n){return m(this,e,t,n,!1)},l.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var o=this.length-t;if((void 0===n||n>o)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return v(this,e,t,n);case"utf8":case"utf-8":return k(this,e,t,n);case"ascii":return w(this,e,t,n);case"latin1":case"binary":return y(this,e,t,n);case"base64":return x(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return C(this,e,t,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function E(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;o<n;++o)r+=String.fromCharCode(127&e[o]);return r}function O(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;o<n;++o)r+=String.fromCharCode(e[o]);return r}function S(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var o="",i=t;i<n;++i)o+=I(e[i]);return o}function T(e,t,n){for(var r=e.slice(t,n),o="",i=0;i<r.length;i+=2)o+=String.fromCharCode(r[i]+256*r[i+1]);return o}function D(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function L(e,t,n,r,o,i){if(!l.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||t<i)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function q(e,t,n,r){t<0&&(t=65535+t+1);for(var o=0,i=Math.min(e.length-n,2);o<i;++o)e[n+o]=(t&255<<8*(r?o:1-o))>>>8*(r?o:1-o)}function M(e,t,n,r){t<0&&(t=4294967295+t+1);for(var o=0,i=Math.min(e.length-n,4);o<i;++o)e[n+o]=t>>>8*(r?o:3-o)&255}function z(e,t,n,r,o,i){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function $(e,t,n,r,i){return i||z(e,0,n,4),o.write(e,t,n,r,23,4),n+4}function B(e,t,n,r,i){return i||z(e,0,n,8),o.write(e,t,n,r,52,8),n+8}l.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t<e&&(t=e),l.TYPED_ARRAY_SUPPORT)(n=this.subarray(e,t)).__proto__=l.prototype;else{var o=t-e;n=new l(o,void 0);for(var i=0;i<o;++i)n[i]=this[i+e]}return n},l.prototype.readUIntLE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var r=this[e],o=1,i=0;++i<t&&(o*=256);)r+=this[e+i]*o;return r},l.prototype.readUIntBE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var r=this[e+--t],o=1;t>0&&(o*=256);)r+=this[e+--t]*o;return r},l.prototype.readUInt8=function(e,t){return t||D(e,1,this.length),this[e]},l.prototype.readUInt16LE=function(e,t){return t||D(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUInt16BE=function(e,t){return t||D(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUInt32LE=function(e,t){return t||D(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUInt32BE=function(e,t){return t||D(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var r=this[e],o=1,i=0;++i<t&&(o*=256);)r+=this[e+i]*o;return r>=(o*=128)&&(r-=Math.pow(2,8*t)),r},l.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var r=t,o=1,i=this[e+--r];r>0&&(o*=256);)i+=this[e+--r]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*t)),i},l.prototype.readInt8=function(e,t){return t||D(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){t||D(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){t||D(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return t||D(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return t||D(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return t||D(e,4,this.length),o.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return t||D(e,4,this.length),o.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return t||D(e,8,this.length),o.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return t||D(e,8,this.length),o.read(this,e,!1,52,8)},l.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||L(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,i=0;for(this[t]=255&e;++i<n&&(o*=256);)this[t+i]=e/o&255;return t+n},l.prototype.writeUIntBE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||L(this,e,t,n,Math.pow(2,8*n)-1,0);var o=n-1,i=1;for(this[t+o]=255&e;--o>=0&&(i*=256);)this[t+o]=e/i&255;return t+n},l.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,1,255,0),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):q(this,e,t,!0),t+2},l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):q(this,e,t,!1),t+2},l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):M(this,e,t,!0),t+4},l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):M(this,e,t,!1),t+4},l.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);L(this,e,t,n,o-1,-o)}var i=0,a=1,s=0;for(this[t]=255&e;++i<n&&(a*=256);)e<0&&0===s&&0!==this[t+i-1]&&(s=1),this[t+i]=(e/a>>0)-s&255;return t+n},l.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);L(this,e,t,n,o-1,-o)}var i=n-1,a=1,s=0;for(this[t+i]=255&e;--i>=0&&(a*=256);)e<0&&0===s&&0!==this[t+i+1]&&(s=1),this[t+i]=(e/a>>0)-s&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,1,127,-128),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):q(this,e,t,!0),t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):q(this,e,t,!1),t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):M(this,e,t,!0),t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||L(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):M(this,e,t,!1),t+4},l.prototype.writeFloatLE=function(e,t,n){return $(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return $(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return B(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return B(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var o,i=r-n;if(this===e&&n<t&&t<r)for(o=i-1;o>=0;--o)e[o+t]=this[o+n];else if(i<1e3||!l.TYPED_ARRAY_SUPPORT)for(o=0;o<i;++o)e[o+t]=this[o+n];else Uint8Array.prototype.set.call(e,this.subarray(n,n+i),t);return i},l.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===e.length){var o=e.charCodeAt(0);o<256&&(e=o)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!l.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var i;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(i=t;i<n;++i)this[i]=e;else{var a=l.isBuffer(e)?e:N(new l(e,r).toString()),s=a.length;for(i=0;i<n-t;++i)this[i+t]=a[i%s]}return this};var F=/[^+\/0-9A-Za-z-_]/g;function I(e){return e<16?"0"+e.toString(16):e.toString(16)}function N(e,t){var n;t=t||1/0;for(var r=e.length,o=null,i=[],a=0;a<r;++a){if((n=e.charCodeAt(a))>55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;i.push(n)}else if(n<2048){if((t-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function R(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(F,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function P(e,t,n,r){for(var o=0;o<r&&!(o+n>=t.length||o>=e.length);++o)t[o+n]=e[o];return o}}).call(this,n(70))},function(e,t,n){"use strict";t.byteLength=function(e){var t=c(e),n=t[0],r=t[1];return 3*(n+r)/4-r},t.toByteArray=function(e){var t,n,r=c(e),a=r[0],s=r[1],l=new i(function(e,t,n){return 3*(t+n)/4-n}(0,a,s)),u=0,p=s>0?a-4:a;for(n=0;n<p;n+=4)t=o[e.charCodeAt(n)]<<18|o[e.charCodeAt(n+1)]<<12|o[e.charCodeAt(n+2)]<<6|o[e.charCodeAt(n+3)],l[u++]=t>>16&255,l[u++]=t>>8&255,l[u++]=255&t;2===s&&(t=o[e.charCodeAt(n)]<<2|o[e.charCodeAt(n+1)]>>4,l[u++]=255&t);1===s&&(t=o[e.charCodeAt(n)]<<10|o[e.charCodeAt(n+1)]<<4|o[e.charCodeAt(n+2)]>>2,l[u++]=t>>8&255,l[u++]=255&t);return l},t.fromByteArray=function(e){for(var t,n=e.length,o=n%3,i=[],a=0,s=n-o;a<s;a+=16383)i.push(u(e,a,a+16383>s?s:a+16383));1===o?(t=e[n-1],i.push(r[t>>2]+r[t<<4&63]+"==")):2===o&&(t=(e[n-2]<<8)+e[n-1],i.push(r[t>>10]+r[t>>4&63]+r[t<<2&63]+"="));return i.join("")};for(var r=[],o=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,l=a.length;s<l;++s)r[s]=a[s],o[a.charCodeAt(s)]=s;function c(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function u(e,t,n){for(var o,i,a=[],s=t;s<n;s+=3)o=(e[s]<<16&16711680)+(e[s+1]<<8&65280)+(255&e[s+2]),a.push(r[(i=o)>>18&63]+r[i>>12&63]+r[i>>6&63]+r[63&i]);return a.join("")}o["-".charCodeAt(0)]=62,o["_".charCodeAt(0)]=63},function(e,t){
9
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
10
+ t.read=function(e,t,n,r,o){var i,a,s=8*o-r-1,l=(1<<s)-1,c=l>>1,u=-7,p=n?o-1:0,d=n?-1:1,h=e[t+p];for(p+=d,i=h&(1<<-u)-1,h>>=-u,u+=s;u>0;i=256*i+e[t+p],p+=d,u-=8);for(a=i&(1<<-u)-1,i>>=-u,u+=r;u>0;a=256*a+e[t+p],p+=d,u-=8);if(0===i)i=1-c;else{if(i===l)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,r),i-=c}return(h?-1:1)*a*Math.pow(2,i-r)},t.write=function(e,t,n,r,o,i){var a,s,l,c=8*i-o-1,u=(1<<c)-1,p=u>>1,d=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:i-1,f=r?1:-1,_=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=u):(a=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-a))<1&&(a--,l*=2),(t+=a+p>=1?d/l:d*Math.pow(2,1-p))*l>=2&&(a++,l/=2),a+p>=u?(s=0,a=u):a+p>=1?(s=(t*l-1)*Math.pow(2,o),a+=p):(s=t*Math.pow(2,p-1)*Math.pow(2,o),a=0));o>=8;e[n+h]=255&s,h+=f,s/=256,o-=8);for(a=a<<o|s,c+=o;c>0;e[n+h]=255&a,h+=f,a/=256,c-=8);e[n+h-f]|=128*_}},function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},function(e,t){e.exports=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){let t=e.substr(1).match(/[:-][-]+[:-]\+/g);return null==t&&(t=e.substr(1).match(/[:=][=]+[:=]\+/g)),null==t?[]:t.map(e=>e.length)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){const n=e.bMarks[t]+e.blkIndent,r=e.eMarks[t];return e.src.substr(n,r-n)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=class{constructor(){this.Success=!1,this.ColumnWidths=[],this.ColumnOffsets=[],this.ColumnAlignments=[],this.HeaderLess=!1,this.HeaderLines=[],this.RowLines=[],this.SeparatorLineOffsets=[],this.CurrentLine=0}}},function(e,t,n){"use strict";
11
+ /**
12
+ * @Author: chenhuachao <chc>
13
+ * @Date: 2017-11-26T15:57:48+08:00
14
+ * @Email: chenhuachaoxyz@gmail.com
15
+ * @Filename: index.js
16
+ * @Last modified by: chc
17
+ * @Last modified time: 2017-11-26T16:00:49+08:00
18
+ * @License: MIT
19
+ * @Copyright: 2017
20
+ */var r=null;function o(e,t){var n,r,o=e.posMax,i=!0,a=!0;return n=t>0?e.src.charCodeAt(t-1):-1,r=t+1<=o?e.src.charCodeAt(t+1):-1,(32===n||9===n||r>=48&&r<=57)&&(a=!1),32!==r&&9!==r||(i=!1),{can_open:i,can_close:a}}function i(e,t){if(!r&&window.katex&&(r=window.katex),!r)return!1;var n,i,a,s;if("$"!==e.src[e.pos])return!1;if(!o(e,e.pos).can_open)return t||(e.pending+="$"),e.pos+=1,!0;for(i=n=e.pos+1;-1!==(i=e.src.indexOf("$",i));){for(s=i-1;"\\"===e.src[s];)s-=1;if((i-s)%2==1)break;i+=1}return-1===i?(t||(e.pending+="$"),e.pos=n,!0):i-n==0?(t||(e.pending+="$$"),e.pos=n+1,!0):o(e,i).can_close?(t||((a=e.push("math_inline","math",0)).markup="$",a.content=e.src.slice(n,i)),e.pos=i+1,!0):(t||(e.pending+="$"),e.pos=n,!0)}function a(e,t,n,o){if(!r&&window.katex&&(r=window.katex),!r)return!1;var i,a,s,l,c,u=!1,p=e.bMarks[t]+e.tShift[t],d=e.eMarks[t];if(p+2>d)return!1;if("$$"!==e.src.slice(p,p+2))return!1;if(p+=2,i=e.src.slice(p,d),o)return!0;for("$$"===i.trim().slice(-2)&&(i=i.trim().slice(0,-2),u=!0),s=t;!u&&!(++s>=n)&&!((p=e.bMarks[s]+e.tShift[s])<(d=e.eMarks[s])&&e.tShift[s]<e.blkIndent);)"$$"===e.src.slice(p,d).trim().slice(-2)&&(l=e.src.slice(0,d).lastIndexOf("$$"),a=e.src.slice(p,l),u=!0);return e.line=s+1,(c=e.push("math_block","math",0)).block=!0,c.content=(i&&i.trim()?i+"\n":"")+e.getLines(t+1,s,e.tShift[t],!0)+(a&&a.trim()?a:""),c.map=[t,e.line],c.markup="$$",!0}e.exports=function(e,t){t=t||{};e.inline.ruler.after("escape","math_inline",i),e.block.ruler.after("blockquote","math_block",a,{alt:["paragraph","reference","blockquote","list"]}),e.renderer.rules.math_inline=function(e,n){return function(e){!r&&window.katex&&(r=window.katex),t.displayMode=!1;try{return r.renderToString(e,t)}catch(n){return t.throwOnError&&console.log(n),e}}(e[n].content)},e.renderer.rules.math_block=function(e,n){return function(e){!r&&window.katex&&(r=window.katex),t.displayMode=!0;try{return"<p>"+r.renderToString(e,t)+"</p>"}catch(n){return t.throwOnError&&console.log(n),e}}(e[n].content)+"\n"}}},function(e,t){
21
+ /**
22
+ * @Author: HuaChao Chen <chc>
23
+ * @Date: 2017-06-12T21:06:58+08:00
24
+ * @Email: chenhuachaoxyz@gmail.com
25
+ * @Filename: index.js
26
+ * @Last modified by: chc
27
+ * @Last modified time: 2017-06-12T21:18:15+08:00
28
+ * @License: MIT
29
+ * @Copyright: 2017
30
+ */
31
+ e.exports=function(e,t){e.image_add=function(t,n){e.__image instanceof Object||(e.__image={}),e.__image[t]=n},e.image_del=function(t){e.__image instanceof Object||(e.__image={}),delete e.__image[t]};var n=e.renderer.rules.image;e.renderer.rules.image=function(t,r,o,i,a){var s=t[r].attrs;if(e.__image instanceof Object)for(var l=0;l<s.length;l++)if("src"==s[l][0]&&e.__image.hasOwnProperty(t[r].attrs[l][1])){s.push(["rel",s[l][1]]),s[l][1]=e.__image[t[r].attrs[l][1]];break}return n(t,r,o,i,a)}}},function(e,t,n){"use strict";n(73)},function(e,t,n){(t=n(43)(!1)).push([e.i,".op-icon.dropdown-wrapper.dropdown[data-v-218640b4]{position:relative}.op-icon.dropdown-wrapper.dropdown[type=button][data-v-218640b4]{-webkit-appearance:unset}.op-icon.dropdown-wrapper.dropdown .popup-dropdown[data-v-218640b4]{position:absolute;display:block;background:#fff;top:32px;left:-45px;min-width:130px;z-index:1600;border:1px solid #ebeef5;border-radius:4px;box-shadow:0 2px 12px 0 rgba(0,0,0,0.1)}.op-icon.dropdown-wrapper.dropdown .popup-dropdown .dropdown-item[data-v-218640b4]:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.op-icon.dropdown-wrapper.dropdown .popup-dropdown .dropdown-item[data-v-218640b4]:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.op-icon.dropdown-wrapper.dropdown .popup-dropdown.op-header[data-v-218640b4]{left:-30px;min-width:90px}.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-enter-active[data-v-218640b4],.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-leave-active[data-v-218640b4]{opacity:1}.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-enter[data-v-218640b4],.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-leave-active[data-v-218640b4]{opacity:0}.op-icon.dropdown-wrapper.dropdown .popup-dropdown.transition[data-v-218640b4],.op-icon.dropdown-wrapper.dropdown .popup-dropdown.transition .dropdown-item[data-v-218640b4]{transition:all .2s linear 0s}.op-icon.dropdown-wrapper.dropdown .dropdown-item[data-v-218640b4]{height:40px;line-height:40px;font-size:14px;color:#606266;position:relative}.op-icon.dropdown-wrapper.dropdown .dropdown-item[data-v-218640b4]:hover{color:#303133;background-color:#e9e9eb}.op-icon.dropdown-wrapper.dropdown .dropdown-item input[data-v-218640b4]{position:absolute;font-size:100px;right:0;top:0;opacity:0;cursor:pointer}.op-icon.dropdown-wrapper.dropdown .dropdown-images[data-v-218640b4]{box-sizing:border-box}.op-icon.dropdown-wrapper.dropdown .dropdown-images button[data-v-218640b4]{position:absolute;top:-1px;right:5px;font-size:14px}.op-icon.dropdown-wrapper.dropdown .dropdown-images button[data-v-218640b4]:hover{color:#f56c6c;background-color:transparent}.op-icon.dropdown-wrapper.dropdown .dropdown-images span[data-v-218640b4]{display:inline-block;width:80px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.op-icon.dropdown-wrapper.dropdown .dropdown-images:hover .image-show[data-v-218640b4]{display:block !important}.op-icon.dropdown-wrapper.dropdown .dropdown-images .image-show[data-v-218640b4]{display:none;position:absolute;left:-128px;top:0;width:120px;height:90px;object-fit:contain;border:1px solid #f2f6fc}.op-icon.dropdown-wrapper.dropdown .dropdown-images .image-show.transition[data-v-218640b4]{transition:all .2s linear 0s}.op-icon.dropdown-wrapper.dropdown .dropdown-images.transition[data-v-218640b4]{transition:all .2s linear 0s}.add-image-link-wrapper[data-v-218640b4]{position:fixed;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,0.7);z-index:1600;transition:all .1s linear 0s}.add-image-link-wrapper.fade-enter-active[data-v-218640b4],.add-image-link-wrapper.fade-leave-active[data-v-218640b4]{opacity:1}.add-image-link-wrapper.fade-enter[data-v-218640b4],.add-image-link-wrapper.fade-leave-active[data-v-218640b4]{opacity:0}.add-image-link-wrapper .add-image-link[data-v-218640b4]{position:fixed;box-sizing:border-box;text-align:center;width:24%;left:38%;height:auto;padding:40px;top:25%;transition:all .1s linear 0s;z-index:3;background:#fff;border-radius:2px}@media only screen and (max-width:1500px){.add-image-link-wrapper .add-image-link[data-v-218640b4]{width:34%;left:33%}}@media only screen and (max-width:1000px){.add-image-link-wrapper .add-image-link[data-v-218640b4]{width:50%;left:25%}}@media only screen and (max-width:600px){.add-image-link-wrapper .add-image-link[data-v-218640b4]{width:80%;left:10%}}.add-image-link-wrapper .add-image-link i[data-v-218640b4]{font-size:24px;position:absolute;right:8px;top:6px;color:rgba(0,0,0,0.7);cursor:pointer}.add-image-link-wrapper .add-image-link .title[data-v-218640b4]{font-size:20px;margin-bottom:30px;margin-top:10px;font-weight:500 !important}.add-image-link-wrapper .add-image-link .input-wrapper[data-v-218640b4]{margin-top:10px;width:80%;border:1px solid #eeece8;text-align:left;margin-left:10%;height:35px}.add-image-link-wrapper .add-image-link .input-wrapper input[data-v-218640b4]{height:32px;line-height:32px;font-size:15px;width:90%;margin-left:8px;border:none;outline:none}.add-image-link-wrapper .add-image-link .op-btn[data-v-218640b4]{width:100px;height:35px;display:inline-block;margin-top:30px;cursor:pointer;text-align:center;line-height:35px;opacity:.9;border-radius:2px;letter-spacing:1px;font-size:15px}.add-image-link-wrapper .add-image-link .op-btn.sure[data-v-218640b4]{background:#2185d0;color:#fff;margin-left:5%}.add-image-link-wrapper .add-image-link .op-btn.sure[data-v-218640b4]:hover{opacity:1}.add-image-link-wrapper .add-image-link .op-btn.cancel[data-v-218640b4]{border:1px solid #bcbcbc;color:#bcbcbc}.add-image-link-wrapper .add-image-link .op-btn.cancel[data-v-218640b4]:hover{color:#000}",""]),e.exports=t},function(e,t,n){"use strict";n.r(t);var r=n(80),o=n(24);for(var i in o)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return o[e]}))}(i);n(231);var a=n(3);const s=n.n(a)()(o.default,[["render",r.a]]);t.default=s},function(e,t,n){"use strict";n(75)},function(e,t,n){(t=n(43)(!1)).push([e.i,'.auto-textarea-wrapper{position:relative;width:100%;margin:0;padding:0;line-height:normal}.auto-textarea-wrapper .auto-textarea-block{display:block;white-space:pre-wrap;word-wrap:break-word !important;visibility:hidden;overflow:hidden;margin:0;padding:0;box-sizing:border-box;font-size:100%}.auto-textarea-wrapper .auto-textarea-input{font-family:Menlo,"Ubuntu Mono",Consolas,"Courier New","Microsoft Yahei","Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;position:absolute;width:100%;height:100%;top:0;left:0;margin:0;padding:0;overflow-y:hidden;color:#2c3e50}.auto-textarea-wrapper .auto-textarea-input.no-border{outline:0 none;border:none !important}.auto-textarea-wrapper .auto-textarea-input.no-resize{resize:none}',""]),e.exports=t},function(e,t,n){"use strict";n(76)},function(e,t,n){(t=n(43)(!1)).push([e.i,"textarea:disabled{background-color:#fff}.v-note-wrapper{position:relative;min-width:300px;min-height:300px;display:flex;flex-direction:column;background-color:#fff;z-index:1500;text-align:left;border:1px solid #f2f6fc;border-radius:4px}.v-note-wrapper.fullscreen{position:fixed;left:0;right:0;bottom:0;top:0;margin:0;height:auto;z-index:1501}.v-note-wrapper .v-note-op{padding:1px;width:100%;display:flex;white-space:pre-line;flex:none;min-height:40px;user-select:none;border-bottom:1px solid #f2f6fc;border-radius:4px 4px 0 0;background-color:#fff;z-index:1}.v-note-wrapper .v-note-op .v-left-item,.v-note-wrapper .v-note-op .v-right-item{flex:1;min-height:40px;box-sizing:border-box}.v-note-wrapper .v-note-op .v-left-item .op-icon-divider,.v-note-wrapper .v-note-op .v-right-item .op-icon-divider{height:40px;border-left:1px solid #e5e5e5;margin:0 6px 0 4px}.v-note-wrapper .v-note-op .v-left-item .op-icon,.v-note-wrapper .v-note-op .v-right-item .op-icon{box-sizing:border-box;display:inline-block;cursor:pointer;height:28px;width:28px;margin:6px 0 5px 0;font-size:14px;padding:4.5px 6px 5px 3.5px;color:#757575;border-radius:5px;text-align:center;background:none;border:none;outline:none;line-height:1}.v-note-wrapper .v-note-op .v-left-item .op-icon.dropdown-wrapper,.v-note-wrapper .v-note-op .v-right-item .op-icon.dropdown-wrapper{line-height:18px}.v-note-wrapper .v-note-op .v-left-item .op-icon.selected,.v-note-wrapper .v-note-op .v-right-item .op-icon.selected{color:rgba(0,0,0,0.8);background:#eaeaea}.v-note-wrapper .v-note-op .v-left-item .op-icon:hover,.v-note-wrapper .v-note-op .v-right-item .op-icon:hover{color:rgba(0,0,0,0.8);background:#e9e9eb}.v-note-wrapper .v-note-op .v-left-item.transition .op-icon,.v-note-wrapper .v-note-op .v-right-item.transition .op-icon{transition:all .2s linear 0s}.v-note-wrapper .v-note-op .v-right-item{text-align:right;padding-right:6px;max-width:30%}.v-note-wrapper .v-note-op .v-left-item{text-align:left;padding-left:6px}.v-note-wrapper .v-note-panel{position:relative;border-top:none;display:flex;flex:1;width:100%;box-sizing:border-box;overflow:hidden}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper{flex:0 0 50%;width:50%;padding:0;overflow-y:scroll;overflow-x:hidden;box-sizing:border-box;cursor:text;border-bottom-left-radius:4px}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar{width:6px;background-color:#e5e5e5}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb{background-color:#b7b7b7;border-radius:4px}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb:hover{background-color:#a1a1a1}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb:active{background-color:#a1a1a1}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-track{-webkit-box-shadow:0 0 0 #808080 inset}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style-border-radius::-webkit-scrollbar{border-bottom-right-radius:4px}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.transition{transition:all .2s linear 0s}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-edit{width:100%;flex:0 0 100%;overflow-y:auto}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-show{width:0;flex:0 0 0;display:none}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper .content-div{width:100%;padding:20px 25px;box-sizing:border-box;outline:0 none;border:none !important;color:#2c3e50;font-size:16px}.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper .content-input-wrapper{width:100%;padding:8px 25px 15px 25px}.v-note-wrapper .v-note-panel .v-note-show{flex:0 0 50%;width:50%;overflow-y:auto;padding:0 0;transition:all .2s linear 0s}.v-note-wrapper .v-note-panel .v-note-show.single-show{flex:0 0 100%;width:100%}.v-note-wrapper .v-note-panel .v-note-show .v-show-content,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html{width:100%;height:100%;padding:8px 25px 15px 25px;overflow-y:auto;box-sizing:border-box;overflow-x:hidden}.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar{width:6px;background-color:#e5e5e5}.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb{background-color:#b7b7b7;border-radius:4px}.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb:hover,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb:hover{background-color:#a1a1a1}.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb:active,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb:active{background-color:#a1a1a1}.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-track,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-track{-webkit-box-shadow:0 0 0 #808080 inset}.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style-border-radius::-webkit-scrollbar,.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style-border-radius::-webkit-scrollbar{border-bottom-right-radius:4px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper{display:flex;position:absolute;width:250px;right:0;top:0;bottom:0;height:100%;flex-direction:column;background-color:rgba(255,255,255,0.98);border-left:1px solid #f2f6fc;border-right:1px solid #f2f6fc}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.transition{transition:all .1s linear 0s}@media only screen and (max-width:768px){.v-note-wrapper .v-note-panel .v-note-navigation-wrapper{width:50%}}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-enter-active,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-leave-active{height:100%}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-enter,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-leave-active{height:0}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title{height:50px;width:100%;border-bottom:1px solid #f2f6fc;flex:none;line-height:50px;font-size:16px;box-sizing:border-box;padding:0 12px 0 18px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title .v-note-navigation-close{float:right;color:#606266;font-size:18px;cursor:pointer}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title .v-note-navigation-close:hover{color:#303133}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content{overflow-y:auto;flex:1;padding:8px 0}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar{width:6px;background-color:#e5e5e5}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb{background-color:#b7b7b7;border-radius:4px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb:hover{background-color:#a1a1a1}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb:active{background-color:#a1a1a1}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-track{-webkit-box-shadow:0 0 0 #808080 inset}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style-border-radius::-webkit-scrollbar{border-bottom-right-radius:4px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h1,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6{margin:2px 0;font-weight:500;font-size:17px;color:#2185d0;cursor:pointer;line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 12px;border-bottom:none}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h1:hover,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2:hover,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3:hover,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4:hover,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5:hover,.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6:hover{color:#483d8b;text-decoration-line:underline}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2{padding-left:27px;font-size:17px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3{padding-left:42px;font-size:17px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4{padding-left:58px;font-size:15px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5{padding-left:72px;font-size:15px}.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6{padding-left:87px;font-size:15px}.v-note-wrapper .v-note-read-model{position:relative;display:none;width:100%;height:100%;background:#fbfbfb;padding:30px 8% 50px 8%;overflow-y:auto;box-sizing:border-box}.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar{width:6px;background-color:#e5e5e5}.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb{background-color:#b7b7b7;border-radius:4px}.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb:hover{background-color:#a1a1a1}.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb:active{background-color:#a1a1a1}.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-track{-webkit-box-shadow:0 0 0 #808080 inset}.v-note-wrapper .v-note-read-model.scroll-style-border-radius::-webkit-scrollbar{border-bottom-right-radius:4px}.v-note-wrapper .v-note-read-model.show{display:block}.v-note-wrapper.shadow{border:none}.v-note-help-wrapper{position:fixed;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,0.7);z-index:1600;transition:all .1s linear 0s}.v-note-help-wrapper.fade-enter-active,.v-note-help-wrapper.fade-leave-active{opacity:1}.v-note-help-wrapper.fade-enter,.v-note-help-wrapper.fade-leave-active{opacity:0}.v-note-help-wrapper .v-note-help-content{position:relative;width:60%;max-width:800px;margin:30px auto;height:90%;min-width:320px;transition:all .1s linear 0s;z-index:3;border:1px solid #f2f6fc}.v-note-help-wrapper .v-note-help-content.shadow{border:none;box-shadow:0 0 5px rgba(0,0,0,0.157),0 0 5px rgba(0,0,0,0.227)}.v-note-help-wrapper .v-note-help-content i{font-size:28px;position:absolute;right:15px;top:8px;color:rgba(0,0,0,0.7);cursor:pointer}.v-note-help-wrapper .v-note-help-content i:hover{color:#000}.v-note-help-wrapper .v-note-help-content .v-note-help-show{width:100%;height:100%;font-size:18px;background:#fbfbfb;overflow-y:auto;padding:2% 6%}.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar{width:6px;background-color:#e5e5e5}.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb{background-color:#b7b7b7;border-radius:4px}.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb:hover{background-color:#a1a1a1}.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb:active{background-color:#a1a1a1}.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-track{-webkit-box-shadow:0 0 0 #808080 inset}.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style-border-radius::-webkit-scrollbar{border-bottom-right-radius:4px}.v-note-img-wrapper{position:fixed;display:flex;justify-content:center;align-items:center;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,0.7);z-index:1600;transition:all .1s linear 0s}.v-note-img-wrapper.fade-enter-active,.v-note-img-wrapper.fade-leave-active{opacity:1}.v-note-img-wrapper.fade-enter,.v-note-img-wrapper.fade-leave-active{opacity:0}.v-note-img-wrapper img{flex:0 0 auto;z-index:3}.v-note-img-wrapper i{font-size:28px;position:absolute;right:15px;top:8px;color:rgba(255,255,255,0.7);cursor:pointer}.v-note-img-wrapper i:hover{color:#fff}",""]),e.exports=t},function(e,t,n){"use strict";n(248)},function(e,t,n){"use strict";function r(e,t){return e[t].content}function o(e,t){const n=function(e){let t=e.defs;e.enabled.length&&(t=Object.keys(t).reduce((n,r)=>(e.enabled.indexOf(r)>=0&&(n[r]=t[r]),n),{}));const n=Object.keys(e.shortcuts).reduce((n,r)=>t[r]?Array.isArray(e.shortcuts[r])?(e.shortcuts[r].forEach(e=>{n[e]=r}),n):(n[e.shortcuts[r]]=r,n):n,{}),r=Object.keys(t);let o;o=0===r.length?"^$":r.map(e=>`:${e}:`).concat(Object.keys(n)).sort().reverse().map(e=>e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")).join("|");const i=RegExp(o),a=RegExp(o,"g");return{defs:t,shortcuts:n,scanRE:i,replaceRE:a}}(e.utils.assign({},{defs:{},shortcuts:{},enabled:[]},t||{}));e.renderer.rules.emoji=r,e.core.ruler.after("linkify","emoji",function(e,t,n,r,o){const i=e.utils.arrayReplaceAt,a=e.utils.lib.ucmicro,s=e.utils.has,l=new RegExp([a.Z.source,a.P.source,a.Cc.source].join("|"));function c(e,r,i){let a=0;const c=[];if(e.replace(o,(function(r,o,u){let p;if(s(n,r)){if(p=n[r],o>0&&!l.test(u[o-1]))return;if(o+r.length<u.length&&!l.test(u[o+r.length]))return}else p=r.slice(1,-1);if(o>a){const t=new i("text","",0);t.content=e.slice(a,o),c.push(t)}const d=new i("emoji","",0);d.markup=p,d.content=t[p],c.push(d),a=o+r.length})),a<e.length){const t=new i("text","",0);t.content=e.slice(a),c.push(t)}return c}return function(e){let t;const n=e.tokens;let o=0;for(let a=0,s=n.length;a<s;a++){if("inline"!==n[a].type)continue;let s=n[a].children;for(let l=s.length-1;l>=0;l--)t=s[l],"link_open"!==t.type&&"link_close"!==t.type||"auto"===t.info&&(o-=t.nesting),"text"===t.type&&0===o&&r.test(t.content)&&(n[a].children=s=i(s,l,c(t.content,t.level,e.Token)))}}}(e,n.defs,n.shortcuts,n.scanRE,n.replaceRE))}n.r(t),n.d(t,"bare",(function(){return o})),n.d(t,"light",(function(){return s})),n.d(t,"full",(function(){return c}));var i={grinning:"๐Ÿ˜€",smiley:"๐Ÿ˜ƒ",smile:"๐Ÿ˜„",grin:"๐Ÿ˜",laughing:"๐Ÿ˜†",satisfied:"๐Ÿ˜†",sweat_smile:"๐Ÿ˜…",joy:"๐Ÿ˜‚",wink:"๐Ÿ˜‰",blush:"๐Ÿ˜Š",innocent:"๐Ÿ˜‡",heart_eyes:"๐Ÿ˜",kissing_heart:"๐Ÿ˜˜",kissing:"๐Ÿ˜—",kissing_closed_eyes:"๐Ÿ˜š",kissing_smiling_eyes:"๐Ÿ˜™",yum:"๐Ÿ˜‹",stuck_out_tongue:"๐Ÿ˜›",stuck_out_tongue_winking_eye:"๐Ÿ˜œ",stuck_out_tongue_closed_eyes:"๐Ÿ˜",neutral_face:"๐Ÿ˜",expressionless:"๐Ÿ˜‘",no_mouth:"๐Ÿ˜ถ",smirk:"๐Ÿ˜",unamused:"๐Ÿ˜’",relieved:"๐Ÿ˜Œ",pensive:"๐Ÿ˜”",sleepy:"๐Ÿ˜ช",sleeping:"๐Ÿ˜ด",mask:"๐Ÿ˜ท",dizzy_face:"๐Ÿ˜ต",sunglasses:"๐Ÿ˜Ž",confused:"๐Ÿ˜•",worried:"๐Ÿ˜Ÿ",open_mouth:"๐Ÿ˜ฎ",hushed:"๐Ÿ˜ฏ",astonished:"๐Ÿ˜ฒ",flushed:"๐Ÿ˜ณ",frowning:"๐Ÿ˜ฆ",anguished:"๐Ÿ˜ง",fearful:"๐Ÿ˜จ",cold_sweat:"๐Ÿ˜ฐ",disappointed_relieved:"๐Ÿ˜ฅ",cry:"๐Ÿ˜ข",sob:"๐Ÿ˜ญ",scream:"๐Ÿ˜ฑ",confounded:"๐Ÿ˜–",persevere:"๐Ÿ˜ฃ",disappointed:"๐Ÿ˜ž",sweat:"๐Ÿ˜“",weary:"๐Ÿ˜ฉ",tired_face:"๐Ÿ˜ซ",rage:"๐Ÿ˜ก",pout:"๐Ÿ˜ก",angry:"๐Ÿ˜ ",smiling_imp:"๐Ÿ˜ˆ",smiley_cat:"๐Ÿ˜บ",smile_cat:"๐Ÿ˜ธ",joy_cat:"๐Ÿ˜น",heart_eyes_cat:"๐Ÿ˜ป",smirk_cat:"๐Ÿ˜ผ",kissing_cat:"๐Ÿ˜ฝ",scream_cat:"๐Ÿ™€",crying_cat_face:"๐Ÿ˜ฟ",pouting_cat:"๐Ÿ˜พ",heart:"โค๏ธ",hand:"โœ‹",raised_hand:"โœ‹",v:"โœŒ๏ธ",point_up:"โ˜๏ธ",fist_raised:"โœŠ",fist:"โœŠ",monkey_face:"๐Ÿต",cat:"๐Ÿฑ",cow:"๐Ÿฎ",mouse:"๐Ÿญ",coffee:"โ˜•",hotsprings:"โ™จ๏ธ",anchor:"โš“",airplane:"โœˆ๏ธ",hourglass:"โŒ›",watch:"โŒš",sunny:"โ˜€๏ธ",star:"โญ",cloud:"โ˜๏ธ",umbrella:"โ˜”",zap:"โšก",snowflake:"โ„๏ธ",sparkles:"โœจ",black_joker:"๐Ÿƒ",mahjong:"๐Ÿ€„",phone:"โ˜Ž๏ธ",telephone:"โ˜Ž๏ธ",envelope:"โœ‰๏ธ",pencil2:"โœ๏ธ",black_nib:"โœ’๏ธ",scissors:"โœ‚๏ธ",wheelchair:"โ™ฟ",warning:"โš ๏ธ",aries:"โ™ˆ",taurus:"โ™‰",gemini:"โ™Š",cancer:"โ™‹",leo:"โ™Œ",virgo:"โ™",libra:"โ™Ž",scorpius:"โ™",sagittarius:"โ™",capricorn:"โ™‘",aquarius:"โ™’",pisces:"โ™“",heavy_multiplication_x:"โœ–๏ธ",heavy_plus_sign:"โž•",heavy_minus_sign:"โž–",heavy_division_sign:"โž—",bangbang:"โ€ผ๏ธ",interrobang:"โ‰๏ธ",question:"โ“",grey_question:"โ”",grey_exclamation:"โ•",exclamation:"โ—",heavy_exclamation_mark:"โ—",wavy_dash:"ใ€ฐ๏ธ",recycle:"โ™ป๏ธ",white_check_mark:"โœ…",ballot_box_with_check:"โ˜‘๏ธ",heavy_check_mark:"โœ”๏ธ",x:"โŒ",negative_squared_cross_mark:"โŽ",curly_loop:"โžฐ",loop:"โžฟ",part_alternation_mark:"ใ€ฝ๏ธ",eight_spoked_asterisk:"โœณ๏ธ",eight_pointed_black_star:"โœด๏ธ",sparkle:"โ‡๏ธ",copyright:"ยฉ๏ธ",registered:"ยฎ๏ธ",tm:"โ„ข๏ธ",information_source:"โ„น๏ธ",m:"โ“‚๏ธ",black_circle:"โšซ",white_circle:"โšช",black_large_square:"โฌ›",white_large_square:"โฌœ",black_medium_square:"โ—ผ๏ธ",white_medium_square:"โ—ป๏ธ",black_medium_small_square:"โ—พ",white_medium_small_square:"โ—ฝ",black_small_square:"โ–ช๏ธ",white_small_square:"โ–ซ๏ธ"},a={angry:[">:(",">:-("],blush:[':")',':-")'],broken_heart:["</3","<\\3"],confused:[":/",":-/"],cry:[":'(",":'-(",":,(",":,-("],frowning:[":(",":-("],heart:["<3"],imp:["]:(","]:-("],innocent:["o:)","O:)","o:-)","O:-)","0:)","0:-)"],joy:[":')",":'-)",":,)",":,-)",":'D",":'-D",":,D",":,-D"],kissing:[":*",":-*"],laughing:["x-)","X-)"],neutral_face:[":|",":-|"],open_mouth:[":o",":-o",":O",":-O"],rage:[":@",":-@"],smile:[":D",":-D"],smiley:[":)",":-)"],smiling_imp:["]:)","]:-)"],sob:[":,'(",":,'-(",";(",";-("],stuck_out_tongue:[":P",":-P"],sunglasses:["8-)","B-)"],sweat:[",:(",",:-("],sweat_smile:[",:)",",:-)"],unamused:[":s",":-S",":z",":-Z",":$",":-$"],wink:[";)",";-)"]};function s(e,t){const n={defs:i,shortcuts:a,enabled:[]},r=e.utils.assign({},n,t||{});o(e,r)}var l={100:"๐Ÿ’ฏ",1234:"๐Ÿ”ข",grinning:"๐Ÿ˜€",smiley:"๐Ÿ˜ƒ",smile:"๐Ÿ˜„",grin:"๐Ÿ˜",laughing:"๐Ÿ˜†",satisfied:"๐Ÿ˜†",sweat_smile:"๐Ÿ˜…",rofl:"๐Ÿคฃ",joy:"๐Ÿ˜‚",slightly_smiling_face:"๐Ÿ™‚",upside_down_face:"๐Ÿ™ƒ",melting_face:"๐Ÿซ ",wink:"๐Ÿ˜‰",blush:"๐Ÿ˜Š",innocent:"๐Ÿ˜‡",smiling_face_with_three_hearts:"๐Ÿฅฐ",heart_eyes:"๐Ÿ˜",star_struck:"๐Ÿคฉ",kissing_heart:"๐Ÿ˜˜",kissing:"๐Ÿ˜—",relaxed:"โ˜บ๏ธ",kissing_closed_eyes:"๐Ÿ˜š",kissing_smiling_eyes:"๐Ÿ˜™",smiling_face_with_tear:"๐Ÿฅฒ",yum:"๐Ÿ˜‹",stuck_out_tongue:"๐Ÿ˜›",stuck_out_tongue_winking_eye:"๐Ÿ˜œ",zany_face:"๐Ÿคช",stuck_out_tongue_closed_eyes:"๐Ÿ˜",money_mouth_face:"๐Ÿค‘",hugs:"๐Ÿค—",hand_over_mouth:"๐Ÿคญ",face_with_open_eyes_and_hand_over_mouth:"๐Ÿซข",face_with_peeking_eye:"๐Ÿซฃ",shushing_face:"๐Ÿคซ",thinking:"๐Ÿค”",saluting_face:"๐Ÿซก",zipper_mouth_face:"๐Ÿค",raised_eyebrow:"๐Ÿคจ",neutral_face:"๐Ÿ˜",expressionless:"๐Ÿ˜‘",no_mouth:"๐Ÿ˜ถ",dotted_line_face:"๐Ÿซฅ",face_in_clouds:"๐Ÿ˜ถโ€๐ŸŒซ๏ธ",smirk:"๐Ÿ˜",unamused:"๐Ÿ˜’",roll_eyes:"๐Ÿ™„",grimacing:"๐Ÿ˜ฌ",face_exhaling:"๐Ÿ˜ฎโ€๐Ÿ’จ",lying_face:"๐Ÿคฅ",shaking_face:"๐Ÿซจ",relieved:"๐Ÿ˜Œ",pensive:"๐Ÿ˜”",sleepy:"๐Ÿ˜ช",drooling_face:"๐Ÿคค",sleeping:"๐Ÿ˜ด",mask:"๐Ÿ˜ท",face_with_thermometer:"๐Ÿค’",face_with_head_bandage:"๐Ÿค•",nauseated_face:"๐Ÿคข",vomiting_face:"๐Ÿคฎ",sneezing_face:"๐Ÿคง",hot_face:"๐Ÿฅต",cold_face:"๐Ÿฅถ",woozy_face:"๐Ÿฅด",dizzy_face:"๐Ÿ˜ต",face_with_spiral_eyes:"๐Ÿ˜ตโ€๐Ÿ’ซ",exploding_head:"๐Ÿคฏ",cowboy_hat_face:"๐Ÿค ",partying_face:"๐Ÿฅณ",disguised_face:"๐Ÿฅธ",sunglasses:"๐Ÿ˜Ž",nerd_face:"๐Ÿค“",monocle_face:"๐Ÿง",confused:"๐Ÿ˜•",face_with_diagonal_mouth:"๐Ÿซค",worried:"๐Ÿ˜Ÿ",slightly_frowning_face:"๐Ÿ™",frowning_face:"โ˜น๏ธ",open_mouth:"๐Ÿ˜ฎ",hushed:"๐Ÿ˜ฏ",astonished:"๐Ÿ˜ฒ",flushed:"๐Ÿ˜ณ",pleading_face:"๐Ÿฅบ",face_holding_back_tears:"๐Ÿฅน",frowning:"๐Ÿ˜ฆ",anguished:"๐Ÿ˜ง",fearful:"๐Ÿ˜จ",cold_sweat:"๐Ÿ˜ฐ",disappointed_relieved:"๐Ÿ˜ฅ",cry:"๐Ÿ˜ข",sob:"๐Ÿ˜ญ",scream:"๐Ÿ˜ฑ",confounded:"๐Ÿ˜–",persevere:"๐Ÿ˜ฃ",disappointed:"๐Ÿ˜ž",sweat:"๐Ÿ˜“",weary:"๐Ÿ˜ฉ",tired_face:"๐Ÿ˜ซ",yawning_face:"๐Ÿฅฑ",triumph:"๐Ÿ˜ค",rage:"๐Ÿ˜ก",pout:"๐Ÿ˜ก",angry:"๐Ÿ˜ ",cursing_face:"๐Ÿคฌ",smiling_imp:"๐Ÿ˜ˆ",imp:"๐Ÿ‘ฟ",skull:"๐Ÿ’€",skull_and_crossbones:"โ˜ ๏ธ",hankey:"๐Ÿ’ฉ",poop:"๐Ÿ’ฉ",shit:"๐Ÿ’ฉ",clown_face:"๐Ÿคก",japanese_ogre:"๐Ÿ‘น",japanese_goblin:"๐Ÿ‘บ",ghost:"๐Ÿ‘ป",alien:"๐Ÿ‘ฝ",space_invader:"๐Ÿ‘พ",robot:"๐Ÿค–",smiley_cat:"๐Ÿ˜บ",smile_cat:"๐Ÿ˜ธ",joy_cat:"๐Ÿ˜น",heart_eyes_cat:"๐Ÿ˜ป",smirk_cat:"๐Ÿ˜ผ",kissing_cat:"๐Ÿ˜ฝ",scream_cat:"๐Ÿ™€",crying_cat_face:"๐Ÿ˜ฟ",pouting_cat:"๐Ÿ˜พ",see_no_evil:"๐Ÿ™ˆ",hear_no_evil:"๐Ÿ™‰",speak_no_evil:"๐Ÿ™Š",love_letter:"๐Ÿ’Œ",cupid:"๐Ÿ’˜",gift_heart:"๐Ÿ’",sparkling_heart:"๐Ÿ’–",heartpulse:"๐Ÿ’—",heartbeat:"๐Ÿ’“",revolving_hearts:"๐Ÿ’ž",two_hearts:"๐Ÿ’•",heart_decoration:"๐Ÿ’Ÿ",heavy_heart_exclamation:"โฃ๏ธ",broken_heart:"๐Ÿ’”",heart_on_fire:"โค๏ธโ€๐Ÿ”ฅ",mending_heart:"โค๏ธโ€๐Ÿฉน",heart:"โค๏ธ",pink_heart:"๐Ÿฉท",orange_heart:"๐Ÿงก",yellow_heart:"๐Ÿ’›",green_heart:"๐Ÿ’š",blue_heart:"๐Ÿ’™",light_blue_heart:"๐Ÿฉต",purple_heart:"๐Ÿ’œ",brown_heart:"๐ŸคŽ",black_heart:"๐Ÿ–ค",grey_heart:"๐Ÿฉถ",white_heart:"๐Ÿค",kiss:"๐Ÿ’‹",anger:"๐Ÿ’ข",boom:"๐Ÿ’ฅ",collision:"๐Ÿ’ฅ",dizzy:"๐Ÿ’ซ",sweat_drops:"๐Ÿ’ฆ",dash:"๐Ÿ’จ",hole:"๐Ÿ•ณ๏ธ",speech_balloon:"๐Ÿ’ฌ",eye_speech_bubble:"๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ",left_speech_bubble:"๐Ÿ—จ๏ธ",right_anger_bubble:"๐Ÿ—ฏ๏ธ",thought_balloon:"๐Ÿ’ญ",zzz:"๐Ÿ’ค",wave:"๐Ÿ‘‹",raised_back_of_hand:"๐Ÿคš",raised_hand_with_fingers_splayed:"๐Ÿ–๏ธ",hand:"โœ‹",raised_hand:"โœ‹",vulcan_salute:"๐Ÿ––",rightwards_hand:"๐Ÿซฑ",leftwards_hand:"๐Ÿซฒ",palm_down_hand:"๐Ÿซณ",palm_up_hand:"๐Ÿซด",leftwards_pushing_hand:"๐Ÿซท",rightwards_pushing_hand:"๐Ÿซธ",ok_hand:"๐Ÿ‘Œ",pinched_fingers:"๐ŸคŒ",pinching_hand:"๐Ÿค",v:"โœŒ๏ธ",crossed_fingers:"๐Ÿคž",hand_with_index_finger_and_thumb_crossed:"๐Ÿซฐ",love_you_gesture:"๐ŸคŸ",metal:"๐Ÿค˜",call_me_hand:"๐Ÿค™",point_left:"๐Ÿ‘ˆ",point_right:"๐Ÿ‘‰",point_up_2:"๐Ÿ‘†",middle_finger:"๐Ÿ–•",fu:"๐Ÿ–•",point_down:"๐Ÿ‘‡",point_up:"โ˜๏ธ",index_pointing_at_the_viewer:"๐Ÿซต","+1":"๐Ÿ‘",thumbsup:"๐Ÿ‘","-1":"๐Ÿ‘Ž",thumbsdown:"๐Ÿ‘Ž",fist_raised:"โœŠ",fist:"โœŠ",fist_oncoming:"๐Ÿ‘Š",facepunch:"๐Ÿ‘Š",punch:"๐Ÿ‘Š",fist_left:"๐Ÿค›",fist_right:"๐Ÿคœ",clap:"๐Ÿ‘",raised_hands:"๐Ÿ™Œ",heart_hands:"๐Ÿซถ",open_hands:"๐Ÿ‘",palms_up_together:"๐Ÿคฒ",handshake:"๐Ÿค",pray:"๐Ÿ™",writing_hand:"โœ๏ธ",nail_care:"๐Ÿ’…",selfie:"๐Ÿคณ",muscle:"๐Ÿ’ช",mechanical_arm:"๐Ÿฆพ",mechanical_leg:"๐Ÿฆฟ",leg:"๐Ÿฆต",foot:"๐Ÿฆถ",ear:"๐Ÿ‘‚",ear_with_hearing_aid:"๐Ÿฆป",nose:"๐Ÿ‘ƒ",brain:"๐Ÿง ",anatomical_heart:"๐Ÿซ€",lungs:"๐Ÿซ",tooth:"๐Ÿฆท",bone:"๐Ÿฆด",eyes:"๐Ÿ‘€",eye:"๐Ÿ‘๏ธ",tongue:"๐Ÿ‘…",lips:"๐Ÿ‘„",biting_lip:"๐Ÿซฆ",baby:"๐Ÿ‘ถ",child:"๐Ÿง’",boy:"๐Ÿ‘ฆ",girl:"๐Ÿ‘ง",adult:"๐Ÿง‘",blond_haired_person:"๐Ÿ‘ฑ",man:"๐Ÿ‘จ",bearded_person:"๐Ÿง”",man_beard:"๐Ÿง”โ€โ™‚๏ธ",woman_beard:"๐Ÿง”โ€โ™€๏ธ",red_haired_man:"๐Ÿ‘จโ€๐Ÿฆฐ",curly_haired_man:"๐Ÿ‘จโ€๐Ÿฆฑ",white_haired_man:"๐Ÿ‘จโ€๐Ÿฆณ",bald_man:"๐Ÿ‘จโ€๐Ÿฆฒ",woman:"๐Ÿ‘ฉ",red_haired_woman:"๐Ÿ‘ฉโ€๐Ÿฆฐ",person_red_hair:"๐Ÿง‘โ€๐Ÿฆฐ",curly_haired_woman:"๐Ÿ‘ฉโ€๐Ÿฆฑ",person_curly_hair:"๐Ÿง‘โ€๐Ÿฆฑ",white_haired_woman:"๐Ÿ‘ฉโ€๐Ÿฆณ",person_white_hair:"๐Ÿง‘โ€๐Ÿฆณ",bald_woman:"๐Ÿ‘ฉโ€๐Ÿฆฒ",person_bald:"๐Ÿง‘โ€๐Ÿฆฒ",blond_haired_woman:"๐Ÿ‘ฑโ€โ™€๏ธ",blonde_woman:"๐Ÿ‘ฑโ€โ™€๏ธ",blond_haired_man:"๐Ÿ‘ฑโ€โ™‚๏ธ",older_adult:"๐Ÿง“",older_man:"๐Ÿ‘ด",older_woman:"๐Ÿ‘ต",frowning_person:"๐Ÿ™",frowning_man:"๐Ÿ™โ€โ™‚๏ธ",frowning_woman:"๐Ÿ™โ€โ™€๏ธ",pouting_face:"๐Ÿ™Ž",pouting_man:"๐Ÿ™Žโ€โ™‚๏ธ",pouting_woman:"๐Ÿ™Žโ€โ™€๏ธ",no_good:"๐Ÿ™…",no_good_man:"๐Ÿ™…โ€โ™‚๏ธ",ng_man:"๐Ÿ™…โ€โ™‚๏ธ",no_good_woman:"๐Ÿ™…โ€โ™€๏ธ",ng_woman:"๐Ÿ™…โ€โ™€๏ธ",ok_person:"๐Ÿ™†",ok_man:"๐Ÿ™†โ€โ™‚๏ธ",ok_woman:"๐Ÿ™†โ€โ™€๏ธ",tipping_hand_person:"๐Ÿ’",information_desk_person:"๐Ÿ’",tipping_hand_man:"๐Ÿ’โ€โ™‚๏ธ",sassy_man:"๐Ÿ’โ€โ™‚๏ธ",tipping_hand_woman:"๐Ÿ’โ€โ™€๏ธ",sassy_woman:"๐Ÿ’โ€โ™€๏ธ",raising_hand:"๐Ÿ™‹",raising_hand_man:"๐Ÿ™‹โ€โ™‚๏ธ",raising_hand_woman:"๐Ÿ™‹โ€โ™€๏ธ",deaf_person:"๐Ÿง",deaf_man:"๐Ÿงโ€โ™‚๏ธ",deaf_woman:"๐Ÿงโ€โ™€๏ธ",bow:"๐Ÿ™‡",bowing_man:"๐Ÿ™‡โ€โ™‚๏ธ",bowing_woman:"๐Ÿ™‡โ€โ™€๏ธ",facepalm:"๐Ÿคฆ",man_facepalming:"๐Ÿคฆโ€โ™‚๏ธ",woman_facepalming:"๐Ÿคฆโ€โ™€๏ธ",shrug:"๐Ÿคท",man_shrugging:"๐Ÿคทโ€โ™‚๏ธ",woman_shrugging:"๐Ÿคทโ€โ™€๏ธ",health_worker:"๐Ÿง‘โ€โš•๏ธ",man_health_worker:"๐Ÿ‘จโ€โš•๏ธ",woman_health_worker:"๐Ÿ‘ฉโ€โš•๏ธ",student:"๐Ÿง‘โ€๐ŸŽ“",man_student:"๐Ÿ‘จโ€๐ŸŽ“",woman_student:"๐Ÿ‘ฉโ€๐ŸŽ“",teacher:"๐Ÿง‘โ€๐Ÿซ",man_teacher:"๐Ÿ‘จโ€๐Ÿซ",woman_teacher:"๐Ÿ‘ฉโ€๐Ÿซ",judge:"๐Ÿง‘โ€โš–๏ธ",man_judge:"๐Ÿ‘จโ€โš–๏ธ",woman_judge:"๐Ÿ‘ฉโ€โš–๏ธ",farmer:"๐Ÿง‘โ€๐ŸŒพ",man_farmer:"๐Ÿ‘จโ€๐ŸŒพ",woman_farmer:"๐Ÿ‘ฉโ€๐ŸŒพ",cook:"๐Ÿง‘โ€๐Ÿณ",man_cook:"๐Ÿ‘จโ€๐Ÿณ",woman_cook:"๐Ÿ‘ฉโ€๐Ÿณ",mechanic:"๐Ÿง‘โ€๐Ÿ”ง",man_mechanic:"๐Ÿ‘จโ€๐Ÿ”ง",woman_mechanic:"๐Ÿ‘ฉโ€๐Ÿ”ง",factory_worker:"๐Ÿง‘โ€๐Ÿญ",man_factory_worker:"๐Ÿ‘จโ€๐Ÿญ",woman_factory_worker:"๐Ÿ‘ฉโ€๐Ÿญ",office_worker:"๐Ÿง‘โ€๐Ÿ’ผ",man_office_worker:"๐Ÿ‘จโ€๐Ÿ’ผ",woman_office_worker:"๐Ÿ‘ฉโ€๐Ÿ’ผ",scientist:"๐Ÿง‘โ€๐Ÿ”ฌ",man_scientist:"๐Ÿ‘จโ€๐Ÿ”ฌ",woman_scientist:"๐Ÿ‘ฉโ€๐Ÿ”ฌ",technologist:"๐Ÿง‘โ€๐Ÿ’ป",man_technologist:"๐Ÿ‘จโ€๐Ÿ’ป",woman_technologist:"๐Ÿ‘ฉโ€๐Ÿ’ป",singer:"๐Ÿง‘โ€๐ŸŽค",man_singer:"๐Ÿ‘จโ€๐ŸŽค",woman_singer:"๐Ÿ‘ฉโ€๐ŸŽค",artist:"๐Ÿง‘โ€๐ŸŽจ",man_artist:"๐Ÿ‘จโ€๐ŸŽจ",woman_artist:"๐Ÿ‘ฉโ€๐ŸŽจ",pilot:"๐Ÿง‘โ€โœˆ๏ธ",man_pilot:"๐Ÿ‘จโ€โœˆ๏ธ",woman_pilot:"๐Ÿ‘ฉโ€โœˆ๏ธ",astronaut:"๐Ÿง‘โ€๐Ÿš€",man_astronaut:"๐Ÿ‘จโ€๐Ÿš€",woman_astronaut:"๐Ÿ‘ฉโ€๐Ÿš€",firefighter:"๐Ÿง‘โ€๐Ÿš’",man_firefighter:"๐Ÿ‘จโ€๐Ÿš’",woman_firefighter:"๐Ÿ‘ฉโ€๐Ÿš’",police_officer:"๐Ÿ‘ฎ",cop:"๐Ÿ‘ฎ",policeman:"๐Ÿ‘ฎโ€โ™‚๏ธ",policewoman:"๐Ÿ‘ฎโ€โ™€๏ธ",detective:"๐Ÿ•ต๏ธ",male_detective:"๐Ÿ•ต๏ธโ€โ™‚๏ธ",female_detective:"๐Ÿ•ต๏ธโ€โ™€๏ธ",guard:"๐Ÿ’‚",guardsman:"๐Ÿ’‚โ€โ™‚๏ธ",guardswoman:"๐Ÿ’‚โ€โ™€๏ธ",ninja:"๐Ÿฅท",construction_worker:"๐Ÿ‘ท",construction_worker_man:"๐Ÿ‘ทโ€โ™‚๏ธ",construction_worker_woman:"๐Ÿ‘ทโ€โ™€๏ธ",person_with_crown:"๐Ÿซ…",prince:"๐Ÿคด",princess:"๐Ÿ‘ธ",person_with_turban:"๐Ÿ‘ณ",man_with_turban:"๐Ÿ‘ณโ€โ™‚๏ธ",woman_with_turban:"๐Ÿ‘ณโ€โ™€๏ธ",man_with_gua_pi_mao:"๐Ÿ‘ฒ",woman_with_headscarf:"๐Ÿง•",person_in_tuxedo:"๐Ÿคต",man_in_tuxedo:"๐Ÿคตโ€โ™‚๏ธ",woman_in_tuxedo:"๐Ÿคตโ€โ™€๏ธ",person_with_veil:"๐Ÿ‘ฐ",man_with_veil:"๐Ÿ‘ฐโ€โ™‚๏ธ",woman_with_veil:"๐Ÿ‘ฐโ€โ™€๏ธ",bride_with_veil:"๐Ÿ‘ฐโ€โ™€๏ธ",pregnant_woman:"๐Ÿคฐ",pregnant_man:"๐Ÿซƒ",pregnant_person:"๐Ÿซ„",breast_feeding:"๐Ÿคฑ",woman_feeding_baby:"๐Ÿ‘ฉโ€๐Ÿผ",man_feeding_baby:"๐Ÿ‘จโ€๐Ÿผ",person_feeding_baby:"๐Ÿง‘โ€๐Ÿผ",angel:"๐Ÿ‘ผ",santa:"๐ŸŽ…",mrs_claus:"๐Ÿคถ",mx_claus:"๐Ÿง‘โ€๐ŸŽ„",superhero:"๐Ÿฆธ",superhero_man:"๐Ÿฆธโ€โ™‚๏ธ",superhero_woman:"๐Ÿฆธโ€โ™€๏ธ",supervillain:"๐Ÿฆน",supervillain_man:"๐Ÿฆนโ€โ™‚๏ธ",supervillain_woman:"๐Ÿฆนโ€โ™€๏ธ",mage:"๐Ÿง™",mage_man:"๐Ÿง™โ€โ™‚๏ธ",mage_woman:"๐Ÿง™โ€โ™€๏ธ",fairy:"๐Ÿงš",fairy_man:"๐Ÿงšโ€โ™‚๏ธ",fairy_woman:"๐Ÿงšโ€โ™€๏ธ",vampire:"๐Ÿง›",vampire_man:"๐Ÿง›โ€โ™‚๏ธ",vampire_woman:"๐Ÿง›โ€โ™€๏ธ",merperson:"๐Ÿงœ",merman:"๐Ÿงœโ€โ™‚๏ธ",mermaid:"๐Ÿงœโ€โ™€๏ธ",elf:"๐Ÿง",elf_man:"๐Ÿงโ€โ™‚๏ธ",elf_woman:"๐Ÿงโ€โ™€๏ธ",genie:"๐Ÿงž",genie_man:"๐Ÿงžโ€โ™‚๏ธ",genie_woman:"๐Ÿงžโ€โ™€๏ธ",zombie:"๐ŸงŸ",zombie_man:"๐ŸงŸโ€โ™‚๏ธ",zombie_woman:"๐ŸงŸโ€โ™€๏ธ",troll:"๐ŸงŒ",massage:"๐Ÿ’†",massage_man:"๐Ÿ’†โ€โ™‚๏ธ",massage_woman:"๐Ÿ’†โ€โ™€๏ธ",haircut:"๐Ÿ’‡",haircut_man:"๐Ÿ’‡โ€โ™‚๏ธ",haircut_woman:"๐Ÿ’‡โ€โ™€๏ธ",walking:"๐Ÿšถ",walking_man:"๐Ÿšถโ€โ™‚๏ธ",walking_woman:"๐Ÿšถโ€โ™€๏ธ",standing_person:"๐Ÿง",standing_man:"๐Ÿงโ€โ™‚๏ธ",standing_woman:"๐Ÿงโ€โ™€๏ธ",kneeling_person:"๐ŸงŽ",kneeling_man:"๐ŸงŽโ€โ™‚๏ธ",kneeling_woman:"๐ŸงŽโ€โ™€๏ธ",person_with_probing_cane:"๐Ÿง‘โ€๐Ÿฆฏ",man_with_probing_cane:"๐Ÿ‘จโ€๐Ÿฆฏ",woman_with_probing_cane:"๐Ÿ‘ฉโ€๐Ÿฆฏ",person_in_motorized_wheelchair:"๐Ÿง‘โ€๐Ÿฆผ",man_in_motorized_wheelchair:"๐Ÿ‘จโ€๐Ÿฆผ",woman_in_motorized_wheelchair:"๐Ÿ‘ฉโ€๐Ÿฆผ",person_in_manual_wheelchair:"๐Ÿง‘โ€๐Ÿฆฝ",man_in_manual_wheelchair:"๐Ÿ‘จโ€๐Ÿฆฝ",woman_in_manual_wheelchair:"๐Ÿ‘ฉโ€๐Ÿฆฝ",runner:"๐Ÿƒ",running:"๐Ÿƒ",running_man:"๐Ÿƒโ€โ™‚๏ธ",running_woman:"๐Ÿƒโ€โ™€๏ธ",woman_dancing:"๐Ÿ’ƒ",dancer:"๐Ÿ’ƒ",man_dancing:"๐Ÿ•บ",business_suit_levitating:"๐Ÿ•ด๏ธ",dancers:"๐Ÿ‘ฏ",dancing_men:"๐Ÿ‘ฏโ€โ™‚๏ธ",dancing_women:"๐Ÿ‘ฏโ€โ™€๏ธ",sauna_person:"๐Ÿง–",sauna_man:"๐Ÿง–โ€โ™‚๏ธ",sauna_woman:"๐Ÿง–โ€โ™€๏ธ",climbing:"๐Ÿง—",climbing_man:"๐Ÿง—โ€โ™‚๏ธ",climbing_woman:"๐Ÿง—โ€โ™€๏ธ",person_fencing:"๐Ÿคบ",horse_racing:"๐Ÿ‡",skier:"โ›ท๏ธ",snowboarder:"๐Ÿ‚",golfing:"๐ŸŒ๏ธ",golfing_man:"๐ŸŒ๏ธโ€โ™‚๏ธ",golfing_woman:"๐ŸŒ๏ธโ€โ™€๏ธ",surfer:"๐Ÿ„",surfing_man:"๐Ÿ„โ€โ™‚๏ธ",surfing_woman:"๐Ÿ„โ€โ™€๏ธ",rowboat:"๐Ÿšฃ",rowing_man:"๐Ÿšฃโ€โ™‚๏ธ",rowing_woman:"๐Ÿšฃโ€โ™€๏ธ",swimmer:"๐ŸŠ",swimming_man:"๐ŸŠโ€โ™‚๏ธ",swimming_woman:"๐ŸŠโ€โ™€๏ธ",bouncing_ball_person:"โ›น๏ธ",bouncing_ball_man:"โ›น๏ธโ€โ™‚๏ธ",basketball_man:"โ›น๏ธโ€โ™‚๏ธ",bouncing_ball_woman:"โ›น๏ธโ€โ™€๏ธ",basketball_woman:"โ›น๏ธโ€โ™€๏ธ",weight_lifting:"๐Ÿ‹๏ธ",weight_lifting_man:"๐Ÿ‹๏ธโ€โ™‚๏ธ",weight_lifting_woman:"๐Ÿ‹๏ธโ€โ™€๏ธ",bicyclist:"๐Ÿšด",biking_man:"๐Ÿšดโ€โ™‚๏ธ",biking_woman:"๐Ÿšดโ€โ™€๏ธ",mountain_bicyclist:"๐Ÿšต",mountain_biking_man:"๐Ÿšตโ€โ™‚๏ธ",mountain_biking_woman:"๐Ÿšตโ€โ™€๏ธ",cartwheeling:"๐Ÿคธ",man_cartwheeling:"๐Ÿคธโ€โ™‚๏ธ",woman_cartwheeling:"๐Ÿคธโ€โ™€๏ธ",wrestling:"๐Ÿคผ",men_wrestling:"๐Ÿคผโ€โ™‚๏ธ",women_wrestling:"๐Ÿคผโ€โ™€๏ธ",water_polo:"๐Ÿคฝ",man_playing_water_polo:"๐Ÿคฝโ€โ™‚๏ธ",woman_playing_water_polo:"๐Ÿคฝโ€โ™€๏ธ",handball_person:"๐Ÿคพ",man_playing_handball:"๐Ÿคพโ€โ™‚๏ธ",woman_playing_handball:"๐Ÿคพโ€โ™€๏ธ",juggling_person:"๐Ÿคน",man_juggling:"๐Ÿคนโ€โ™‚๏ธ",woman_juggling:"๐Ÿคนโ€โ™€๏ธ",lotus_position:"๐Ÿง˜",lotus_position_man:"๐Ÿง˜โ€โ™‚๏ธ",lotus_position_woman:"๐Ÿง˜โ€โ™€๏ธ",bath:"๐Ÿ›€",sleeping_bed:"๐Ÿ›Œ",people_holding_hands:"๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘",two_women_holding_hands:"๐Ÿ‘ญ",couple:"๐Ÿ‘ซ",two_men_holding_hands:"๐Ÿ‘ฌ",couplekiss:"๐Ÿ’",couplekiss_man_woman:"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ",couplekiss_man_man:"๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ",couplekiss_woman_woman:"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ",couple_with_heart:"๐Ÿ’‘",couple_with_heart_woman_man:"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ",couple_with_heart_man_man:"๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ",couple_with_heart_woman_woman:"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ",family:"๐Ÿ‘ช",family_man_woman_boy:"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ",family_man_woman_girl:"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",family_man_woman_girl_boy:"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",family_man_woman_boy_boy:"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",family_man_woman_girl_girl:"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",family_man_man_boy:"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ",family_man_man_girl:"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง",family_man_man_girl_boy:"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",family_man_man_boy_boy:"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",family_man_man_girl_girl:"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",family_woman_woman_boy:"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ",family_woman_woman_girl:"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",family_woman_woman_girl_boy:"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",family_woman_woman_boy_boy:"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",family_woman_woman_girl_girl:"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",family_man_boy:"๐Ÿ‘จโ€๐Ÿ‘ฆ",family_man_boy_boy:"๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",family_man_girl:"๐Ÿ‘จโ€๐Ÿ‘ง",family_man_girl_boy:"๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",family_man_girl_girl:"๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",family_woman_boy:"๐Ÿ‘ฉโ€๐Ÿ‘ฆ",family_woman_boy_boy:"๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",family_woman_girl:"๐Ÿ‘ฉโ€๐Ÿ‘ง",family_woman_girl_boy:"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",family_woman_girl_girl:"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",speaking_head:"๐Ÿ—ฃ๏ธ",bust_in_silhouette:"๐Ÿ‘ค",busts_in_silhouette:"๐Ÿ‘ฅ",people_hugging:"๐Ÿซ‚",footprints:"๐Ÿ‘ฃ",monkey_face:"๐Ÿต",monkey:"๐Ÿ’",gorilla:"๐Ÿฆ",orangutan:"๐Ÿฆง",dog:"๐Ÿถ",dog2:"๐Ÿ•",guide_dog:"๐Ÿฆฎ",service_dog:"๐Ÿ•โ€๐Ÿฆบ",poodle:"๐Ÿฉ",wolf:"๐Ÿบ",fox_face:"๐ŸฆŠ",raccoon:"๐Ÿฆ",cat:"๐Ÿฑ",cat2:"๐Ÿˆ",black_cat:"๐Ÿˆโ€โฌ›",lion:"๐Ÿฆ",tiger:"๐Ÿฏ",tiger2:"๐Ÿ…",leopard:"๐Ÿ†",horse:"๐Ÿด",moose:"๐ŸซŽ",donkey:"๐Ÿซ",racehorse:"๐ŸŽ",unicorn:"๐Ÿฆ„",zebra:"๐Ÿฆ“",deer:"๐ŸฆŒ",bison:"๐Ÿฆฌ",cow:"๐Ÿฎ",ox:"๐Ÿ‚",water_buffalo:"๐Ÿƒ",cow2:"๐Ÿ„",pig:"๐Ÿท",pig2:"๐Ÿ–",boar:"๐Ÿ—",pig_nose:"๐Ÿฝ",ram:"๐Ÿ",sheep:"๐Ÿ‘",goat:"๐Ÿ",dromedary_camel:"๐Ÿช",camel:"๐Ÿซ",llama:"๐Ÿฆ™",giraffe:"๐Ÿฆ’",elephant:"๐Ÿ˜",mammoth:"๐Ÿฆฃ",rhinoceros:"๐Ÿฆ",hippopotamus:"๐Ÿฆ›",mouse:"๐Ÿญ",mouse2:"๐Ÿ",rat:"๐Ÿ€",hamster:"๐Ÿน",rabbit:"๐Ÿฐ",rabbit2:"๐Ÿ‡",chipmunk:"๐Ÿฟ๏ธ",beaver:"๐Ÿฆซ",hedgehog:"๐Ÿฆ”",bat:"๐Ÿฆ‡",bear:"๐Ÿป",polar_bear:"๐Ÿปโ€โ„๏ธ",koala:"๐Ÿจ",panda_face:"๐Ÿผ",sloth:"๐Ÿฆฅ",otter:"๐Ÿฆฆ",skunk:"๐Ÿฆจ",kangaroo:"๐Ÿฆ˜",badger:"๐Ÿฆก",feet:"๐Ÿพ",paw_prints:"๐Ÿพ",turkey:"๐Ÿฆƒ",chicken:"๐Ÿ”",rooster:"๐Ÿ“",hatching_chick:"๐Ÿฃ",baby_chick:"๐Ÿค",hatched_chick:"๐Ÿฅ",bird:"๐Ÿฆ",penguin:"๐Ÿง",dove:"๐Ÿ•Š๏ธ",eagle:"๐Ÿฆ…",duck:"๐Ÿฆ†",swan:"๐Ÿฆข",owl:"๐Ÿฆ‰",dodo:"๐Ÿฆค",feather:"๐Ÿชถ",flamingo:"๐Ÿฆฉ",peacock:"๐Ÿฆš",parrot:"๐Ÿฆœ",wing:"๐Ÿชฝ",black_bird:"๐Ÿฆโ€โฌ›",goose:"๐Ÿชฟ",frog:"๐Ÿธ",crocodile:"๐ŸŠ",turtle:"๐Ÿข",lizard:"๐ŸฆŽ",snake:"๐Ÿ",dragon_face:"๐Ÿฒ",dragon:"๐Ÿ‰",sauropod:"๐Ÿฆ•","t-rex":"๐Ÿฆ–",whale:"๐Ÿณ",whale2:"๐Ÿ‹",dolphin:"๐Ÿฌ",flipper:"๐Ÿฌ",seal:"๐Ÿฆญ",fish:"๐ŸŸ",tropical_fish:"๐Ÿ ",blowfish:"๐Ÿก",shark:"๐Ÿฆˆ",octopus:"๐Ÿ™",shell:"๐Ÿš",coral:"๐Ÿชธ",jellyfish:"๐Ÿชผ",snail:"๐ŸŒ",butterfly:"๐Ÿฆ‹",bug:"๐Ÿ›",ant:"๐Ÿœ",bee:"๐Ÿ",honeybee:"๐Ÿ",beetle:"๐Ÿชฒ",lady_beetle:"๐Ÿž",cricket:"๐Ÿฆ—",cockroach:"๐Ÿชณ",spider:"๐Ÿ•ท๏ธ",spider_web:"๐Ÿ•ธ๏ธ",scorpion:"๐Ÿฆ‚",mosquito:"๐ŸฆŸ",fly:"๐Ÿชฐ",worm:"๐Ÿชฑ",microbe:"๐Ÿฆ ",bouquet:"๐Ÿ’",cherry_blossom:"๐ŸŒธ",white_flower:"๐Ÿ’ฎ",lotus:"๐Ÿชท",rosette:"๐Ÿต๏ธ",rose:"๐ŸŒน",wilted_flower:"๐Ÿฅ€",hibiscus:"๐ŸŒบ",sunflower:"๐ŸŒป",blossom:"๐ŸŒผ",tulip:"๐ŸŒท",hyacinth:"๐Ÿชป",seedling:"๐ŸŒฑ",potted_plant:"๐Ÿชด",evergreen_tree:"๐ŸŒฒ",deciduous_tree:"๐ŸŒณ",palm_tree:"๐ŸŒด",cactus:"๐ŸŒต",ear_of_rice:"๐ŸŒพ",herb:"๐ŸŒฟ",shamrock:"โ˜˜๏ธ",four_leaf_clover:"๐Ÿ€",maple_leaf:"๐Ÿ",fallen_leaf:"๐Ÿ‚",leaves:"๐Ÿƒ",empty_nest:"๐Ÿชน",nest_with_eggs:"๐Ÿชบ",mushroom:"๐Ÿ„",grapes:"๐Ÿ‡",melon:"๐Ÿˆ",watermelon:"๐Ÿ‰",tangerine:"๐ŸŠ",orange:"๐ŸŠ",mandarin:"๐ŸŠ",lemon:"๐Ÿ‹",banana:"๐ŸŒ",pineapple:"๐Ÿ",mango:"๐Ÿฅญ",apple:"๐ŸŽ",green_apple:"๐Ÿ",pear:"๐Ÿ",peach:"๐Ÿ‘",cherries:"๐Ÿ’",strawberry:"๐Ÿ“",blueberries:"๐Ÿซ",kiwi_fruit:"๐Ÿฅ",tomato:"๐Ÿ…",olive:"๐Ÿซ’",coconut:"๐Ÿฅฅ",avocado:"๐Ÿฅ‘",eggplant:"๐Ÿ†",potato:"๐Ÿฅ”",carrot:"๐Ÿฅ•",corn:"๐ŸŒฝ",hot_pepper:"๐ŸŒถ๏ธ",bell_pepper:"๐Ÿซ‘",cucumber:"๐Ÿฅ’",leafy_green:"๐Ÿฅฌ",broccoli:"๐Ÿฅฆ",garlic:"๐Ÿง„",onion:"๐Ÿง…",peanuts:"๐Ÿฅœ",beans:"๐Ÿซ˜",chestnut:"๐ŸŒฐ",ginger_root:"๐Ÿซš",pea_pod:"๐Ÿซ›",bread:"๐Ÿž",croissant:"๐Ÿฅ",baguette_bread:"๐Ÿฅ–",flatbread:"๐Ÿซ“",pretzel:"๐Ÿฅจ",bagel:"๐Ÿฅฏ",pancakes:"๐Ÿฅž",waffle:"๐Ÿง‡",cheese:"๐Ÿง€",meat_on_bone:"๐Ÿ–",poultry_leg:"๐Ÿ—",cut_of_meat:"๐Ÿฅฉ",bacon:"๐Ÿฅ“",hamburger:"๐Ÿ”",fries:"๐ŸŸ",pizza:"๐Ÿ•",hotdog:"๐ŸŒญ",sandwich:"๐Ÿฅช",taco:"๐ŸŒฎ",burrito:"๐ŸŒฏ",tamale:"๐Ÿซ”",stuffed_flatbread:"๐Ÿฅ™",falafel:"๐Ÿง†",egg:"๐Ÿฅš",fried_egg:"๐Ÿณ",shallow_pan_of_food:"๐Ÿฅ˜",stew:"๐Ÿฒ",fondue:"๐Ÿซ•",bowl_with_spoon:"๐Ÿฅฃ",green_salad:"๐Ÿฅ—",popcorn:"๐Ÿฟ",butter:"๐Ÿงˆ",salt:"๐Ÿง‚",canned_food:"๐Ÿฅซ",bento:"๐Ÿฑ",rice_cracker:"๐Ÿ˜",rice_ball:"๐Ÿ™",rice:"๐Ÿš",curry:"๐Ÿ›",ramen:"๐Ÿœ",spaghetti:"๐Ÿ",sweet_potato:"๐Ÿ ",oden:"๐Ÿข",sushi:"๐Ÿฃ",fried_shrimp:"๐Ÿค",fish_cake:"๐Ÿฅ",moon_cake:"๐Ÿฅฎ",dango:"๐Ÿก",dumpling:"๐ŸฅŸ",fortune_cookie:"๐Ÿฅ ",takeout_box:"๐Ÿฅก",crab:"๐Ÿฆ€",lobster:"๐Ÿฆž",shrimp:"๐Ÿฆ",squid:"๐Ÿฆ‘",oyster:"๐Ÿฆช",icecream:"๐Ÿฆ",shaved_ice:"๐Ÿง",ice_cream:"๐Ÿจ",doughnut:"๐Ÿฉ",cookie:"๐Ÿช",birthday:"๐ŸŽ‚",cake:"๐Ÿฐ",cupcake:"๐Ÿง",pie:"๐Ÿฅง",chocolate_bar:"๐Ÿซ",candy:"๐Ÿฌ",lollipop:"๐Ÿญ",custard:"๐Ÿฎ",honey_pot:"๐Ÿฏ",baby_bottle:"๐Ÿผ",milk_glass:"๐Ÿฅ›",coffee:"โ˜•",teapot:"๐Ÿซ–",tea:"๐Ÿต",sake:"๐Ÿถ",champagne:"๐Ÿพ",wine_glass:"๐Ÿท",cocktail:"๐Ÿธ",tropical_drink:"๐Ÿน",beer:"๐Ÿบ",beers:"๐Ÿป",clinking_glasses:"๐Ÿฅ‚",tumbler_glass:"๐Ÿฅƒ",pouring_liquid:"๐Ÿซ—",cup_with_straw:"๐Ÿฅค",bubble_tea:"๐Ÿง‹",beverage_box:"๐Ÿงƒ",mate:"๐Ÿง‰",ice_cube:"๐ŸงŠ",chopsticks:"๐Ÿฅข",plate_with_cutlery:"๐Ÿฝ๏ธ",fork_and_knife:"๐Ÿด",spoon:"๐Ÿฅ„",hocho:"๐Ÿ”ช",knife:"๐Ÿ”ช",jar:"๐Ÿซ™",amphora:"๐Ÿบ",earth_africa:"๐ŸŒ",earth_americas:"๐ŸŒŽ",earth_asia:"๐ŸŒ",globe_with_meridians:"๐ŸŒ",world_map:"๐Ÿ—บ๏ธ",japan:"๐Ÿ—พ",compass:"๐Ÿงญ",mountain_snow:"๐Ÿ”๏ธ",mountain:"โ›ฐ๏ธ",volcano:"๐ŸŒ‹",mount_fuji:"๐Ÿ—ป",camping:"๐Ÿ•๏ธ",beach_umbrella:"๐Ÿ–๏ธ",desert:"๐Ÿœ๏ธ",desert_island:"๐Ÿ๏ธ",national_park:"๐Ÿž๏ธ",stadium:"๐ŸŸ๏ธ",classical_building:"๐Ÿ›๏ธ",building_construction:"๐Ÿ—๏ธ",bricks:"๐Ÿงฑ",rock:"๐Ÿชจ",wood:"๐Ÿชต",hut:"๐Ÿ›–",houses:"๐Ÿ˜๏ธ",derelict_house:"๐Ÿš๏ธ",house:"๐Ÿ ",house_with_garden:"๐Ÿก",office:"๐Ÿข",post_office:"๐Ÿฃ",european_post_office:"๐Ÿค",hospital:"๐Ÿฅ",bank:"๐Ÿฆ",hotel:"๐Ÿจ",love_hotel:"๐Ÿฉ",convenience_store:"๐Ÿช",school:"๐Ÿซ",department_store:"๐Ÿฌ",factory:"๐Ÿญ",japanese_castle:"๐Ÿฏ",european_castle:"๐Ÿฐ",wedding:"๐Ÿ’’",tokyo_tower:"๐Ÿ—ผ",statue_of_liberty:"๐Ÿ—ฝ",church:"โ›ช",mosque:"๐Ÿ•Œ",hindu_temple:"๐Ÿ›•",synagogue:"๐Ÿ•",shinto_shrine:"โ›ฉ๏ธ",kaaba:"๐Ÿ•‹",fountain:"โ›ฒ",tent:"โ›บ",foggy:"๐ŸŒ",night_with_stars:"๐ŸŒƒ",cityscape:"๐Ÿ™๏ธ",sunrise_over_mountains:"๐ŸŒ„",sunrise:"๐ŸŒ…",city_sunset:"๐ŸŒ†",city_sunrise:"๐ŸŒ‡",bridge_at_night:"๐ŸŒ‰",hotsprings:"โ™จ๏ธ",carousel_horse:"๐ŸŽ ",playground_slide:"๐Ÿ›",ferris_wheel:"๐ŸŽก",roller_coaster:"๐ŸŽข",barber:"๐Ÿ’ˆ",circus_tent:"๐ŸŽช",steam_locomotive:"๐Ÿš‚",railway_car:"๐Ÿšƒ",bullettrain_side:"๐Ÿš„",bullettrain_front:"๐Ÿš…",train2:"๐Ÿš†",metro:"๐Ÿš‡",light_rail:"๐Ÿšˆ",station:"๐Ÿš‰",tram:"๐ŸšŠ",monorail:"๐Ÿš",mountain_railway:"๐Ÿšž",train:"๐Ÿš‹",bus:"๐ŸšŒ",oncoming_bus:"๐Ÿš",trolleybus:"๐ŸšŽ",minibus:"๐Ÿš",ambulance:"๐Ÿš‘",fire_engine:"๐Ÿš’",police_car:"๐Ÿš“",oncoming_police_car:"๐Ÿš”",taxi:"๐Ÿš•",oncoming_taxi:"๐Ÿš–",car:"๐Ÿš—",red_car:"๐Ÿš—",oncoming_automobile:"๐Ÿš˜",blue_car:"๐Ÿš™",pickup_truck:"๐Ÿ›ป",truck:"๐Ÿšš",articulated_lorry:"๐Ÿš›",tractor:"๐Ÿšœ",racing_car:"๐ŸŽ๏ธ",motorcycle:"๐Ÿ๏ธ",motor_scooter:"๐Ÿ›ต",manual_wheelchair:"๐Ÿฆฝ",motorized_wheelchair:"๐Ÿฆผ",auto_rickshaw:"๐Ÿ›บ",bike:"๐Ÿšฒ",kick_scooter:"๐Ÿ›ด",skateboard:"๐Ÿ›น",roller_skate:"๐Ÿ›ผ",busstop:"๐Ÿš",motorway:"๐Ÿ›ฃ๏ธ",railway_track:"๐Ÿ›ค๏ธ",oil_drum:"๐Ÿ›ข๏ธ",fuelpump:"โ›ฝ",wheel:"๐Ÿ›ž",rotating_light:"๐Ÿšจ",traffic_light:"๐Ÿšฅ",vertical_traffic_light:"๐Ÿšฆ",stop_sign:"๐Ÿ›‘",construction:"๐Ÿšง",anchor:"โš“",ring_buoy:"๐Ÿ›Ÿ",boat:"โ›ต",sailboat:"โ›ต",canoe:"๐Ÿ›ถ",speedboat:"๐Ÿšค",passenger_ship:"๐Ÿ›ณ๏ธ",ferry:"โ›ด๏ธ",motor_boat:"๐Ÿ›ฅ๏ธ",ship:"๐Ÿšข",airplane:"โœˆ๏ธ",small_airplane:"๐Ÿ›ฉ๏ธ",flight_departure:"๐Ÿ›ซ",flight_arrival:"๐Ÿ›ฌ",parachute:"๐Ÿช‚",seat:"๐Ÿ’บ",helicopter:"๐Ÿš",suspension_railway:"๐ŸšŸ",mountain_cableway:"๐Ÿš ",aerial_tramway:"๐Ÿšก",artificial_satellite:"๐Ÿ›ฐ๏ธ",rocket:"๐Ÿš€",flying_saucer:"๐Ÿ›ธ",bellhop_bell:"๐Ÿ›Ž๏ธ",luggage:"๐Ÿงณ",hourglass:"โŒ›",hourglass_flowing_sand:"โณ",watch:"โŒš",alarm_clock:"โฐ",stopwatch:"โฑ๏ธ",timer_clock:"โฒ๏ธ",mantelpiece_clock:"๐Ÿ•ฐ๏ธ",clock12:"๐Ÿ•›",clock1230:"๐Ÿ•ง",clock1:"๐Ÿ•",clock130:"๐Ÿ•œ",clock2:"๐Ÿ•‘",clock230:"๐Ÿ•",clock3:"๐Ÿ•’",clock330:"๐Ÿ•ž",clock4:"๐Ÿ•“",clock430:"๐Ÿ•Ÿ",clock5:"๐Ÿ•”",clock530:"๐Ÿ• ",clock6:"๐Ÿ••",clock630:"๐Ÿ•ก",clock7:"๐Ÿ•–",clock730:"๐Ÿ•ข",clock8:"๐Ÿ•—",clock830:"๐Ÿ•ฃ",clock9:"๐Ÿ•˜",clock930:"๐Ÿ•ค",clock10:"๐Ÿ•™",clock1030:"๐Ÿ•ฅ",clock11:"๐Ÿ•š",clock1130:"๐Ÿ•ฆ",new_moon:"๐ŸŒ‘",waxing_crescent_moon:"๐ŸŒ’",first_quarter_moon:"๐ŸŒ“",moon:"๐ŸŒ”",waxing_gibbous_moon:"๐ŸŒ”",full_moon:"๐ŸŒ•",waning_gibbous_moon:"๐ŸŒ–",last_quarter_moon:"๐ŸŒ—",waning_crescent_moon:"๐ŸŒ˜",crescent_moon:"๐ŸŒ™",new_moon_with_face:"๐ŸŒš",first_quarter_moon_with_face:"๐ŸŒ›",last_quarter_moon_with_face:"๐ŸŒœ",thermometer:"๐ŸŒก๏ธ",sunny:"โ˜€๏ธ",full_moon_with_face:"๐ŸŒ",sun_with_face:"๐ŸŒž",ringed_planet:"๐Ÿช",star:"โญ",star2:"๐ŸŒŸ",stars:"๐ŸŒ ",milky_way:"๐ŸŒŒ",cloud:"โ˜๏ธ",partly_sunny:"โ›…",cloud_with_lightning_and_rain:"โ›ˆ๏ธ",sun_behind_small_cloud:"๐ŸŒค๏ธ",sun_behind_large_cloud:"๐ŸŒฅ๏ธ",sun_behind_rain_cloud:"๐ŸŒฆ๏ธ",cloud_with_rain:"๐ŸŒง๏ธ",cloud_with_snow:"๐ŸŒจ๏ธ",cloud_with_lightning:"๐ŸŒฉ๏ธ",tornado:"๐ŸŒช๏ธ",fog:"๐ŸŒซ๏ธ",wind_face:"๐ŸŒฌ๏ธ",cyclone:"๐ŸŒ€",rainbow:"๐ŸŒˆ",closed_umbrella:"๐ŸŒ‚",open_umbrella:"โ˜‚๏ธ",umbrella:"โ˜”",parasol_on_ground:"โ›ฑ๏ธ",zap:"โšก",snowflake:"โ„๏ธ",snowman_with_snow:"โ˜ƒ๏ธ",snowman:"โ›„",comet:"โ˜„๏ธ",fire:"๐Ÿ”ฅ",droplet:"๐Ÿ’ง",ocean:"๐ŸŒŠ",jack_o_lantern:"๐ŸŽƒ",christmas_tree:"๐ŸŽ„",fireworks:"๐ŸŽ†",sparkler:"๐ŸŽ‡",firecracker:"๐Ÿงจ",sparkles:"โœจ",balloon:"๐ŸŽˆ",tada:"๐ŸŽ‰",confetti_ball:"๐ŸŽŠ",tanabata_tree:"๐ŸŽ‹",bamboo:"๐ŸŽ",dolls:"๐ŸŽŽ",flags:"๐ŸŽ",wind_chime:"๐ŸŽ",rice_scene:"๐ŸŽ‘",red_envelope:"๐Ÿงง",ribbon:"๐ŸŽ€",gift:"๐ŸŽ",reminder_ribbon:"๐ŸŽ—๏ธ",tickets:"๐ŸŽŸ๏ธ",ticket:"๐ŸŽซ",medal_military:"๐ŸŽ–๏ธ",trophy:"๐Ÿ†",medal_sports:"๐Ÿ…","1st_place_medal":"๐Ÿฅ‡","2nd_place_medal":"๐Ÿฅˆ","3rd_place_medal":"๐Ÿฅ‰",soccer:"โšฝ",baseball:"โšพ",softball:"๐ŸฅŽ",basketball:"๐Ÿ€",volleyball:"๐Ÿ",football:"๐Ÿˆ",rugby_football:"๐Ÿ‰",tennis:"๐ŸŽพ",flying_disc:"๐Ÿฅ",bowling:"๐ŸŽณ",cricket_game:"๐Ÿ",field_hockey:"๐Ÿ‘",ice_hockey:"๐Ÿ’",lacrosse:"๐Ÿฅ",ping_pong:"๐Ÿ“",badminton:"๐Ÿธ",boxing_glove:"๐ŸฅŠ",martial_arts_uniform:"๐Ÿฅ‹",goal_net:"๐Ÿฅ…",golf:"โ›ณ",ice_skate:"โ›ธ๏ธ",fishing_pole_and_fish:"๐ŸŽฃ",diving_mask:"๐Ÿคฟ",running_shirt_with_sash:"๐ŸŽฝ",ski:"๐ŸŽฟ",sled:"๐Ÿ›ท",curling_stone:"๐ŸฅŒ",dart:"๐ŸŽฏ",yo_yo:"๐Ÿช€",kite:"๐Ÿช",gun:"๐Ÿ”ซ","8ball":"๐ŸŽฑ",crystal_ball:"๐Ÿ”ฎ",magic_wand:"๐Ÿช„",video_game:"๐ŸŽฎ",joystick:"๐Ÿ•น๏ธ",slot_machine:"๐ŸŽฐ",game_die:"๐ŸŽฒ",jigsaw:"๐Ÿงฉ",teddy_bear:"๐Ÿงธ",pinata:"๐Ÿช…",mirror_ball:"๐Ÿชฉ",nesting_dolls:"๐Ÿช†",spades:"โ™ ๏ธ",hearts:"โ™ฅ๏ธ",diamonds:"โ™ฆ๏ธ",clubs:"โ™ฃ๏ธ",chess_pawn:"โ™Ÿ๏ธ",black_joker:"๐Ÿƒ",mahjong:"๐Ÿ€„",flower_playing_cards:"๐ŸŽด",performing_arts:"๐ŸŽญ",framed_picture:"๐Ÿ–ผ๏ธ",art:"๐ŸŽจ",thread:"๐Ÿงต",sewing_needle:"๐Ÿชก",yarn:"๐Ÿงถ",knot:"๐Ÿชข",eyeglasses:"๐Ÿ‘“",dark_sunglasses:"๐Ÿ•ถ๏ธ",goggles:"๐Ÿฅฝ",lab_coat:"๐Ÿฅผ",safety_vest:"๐Ÿฆบ",necktie:"๐Ÿ‘”",shirt:"๐Ÿ‘•",tshirt:"๐Ÿ‘•",jeans:"๐Ÿ‘–",scarf:"๐Ÿงฃ",gloves:"๐Ÿงค",coat:"๐Ÿงฅ",socks:"๐Ÿงฆ",dress:"๐Ÿ‘—",kimono:"๐Ÿ‘˜",sari:"๐Ÿฅป",one_piece_swimsuit:"๐Ÿฉฑ",swim_brief:"๐Ÿฉฒ",shorts:"๐Ÿฉณ",bikini:"๐Ÿ‘™",womans_clothes:"๐Ÿ‘š",folding_hand_fan:"๐Ÿชญ",purse:"๐Ÿ‘›",handbag:"๐Ÿ‘œ",pouch:"๐Ÿ‘",shopping:"๐Ÿ›๏ธ",school_satchel:"๐ŸŽ’",thong_sandal:"๐Ÿฉด",mans_shoe:"๐Ÿ‘ž",shoe:"๐Ÿ‘ž",athletic_shoe:"๐Ÿ‘Ÿ",hiking_boot:"๐Ÿฅพ",flat_shoe:"๐Ÿฅฟ",high_heel:"๐Ÿ‘ ",sandal:"๐Ÿ‘ก",ballet_shoes:"๐Ÿฉฐ",boot:"๐Ÿ‘ข",hair_pick:"๐Ÿชฎ",crown:"๐Ÿ‘‘",womans_hat:"๐Ÿ‘’",tophat:"๐ŸŽฉ",mortar_board:"๐ŸŽ“",billed_cap:"๐Ÿงข",military_helmet:"๐Ÿช–",rescue_worker_helmet:"โ›‘๏ธ",prayer_beads:"๐Ÿ“ฟ",lipstick:"๐Ÿ’„",ring:"๐Ÿ’",gem:"๐Ÿ’Ž",mute:"๐Ÿ”‡",speaker:"๐Ÿ”ˆ",sound:"๐Ÿ”‰",loud_sound:"๐Ÿ”Š",loudspeaker:"๐Ÿ“ข",mega:"๐Ÿ“ฃ",postal_horn:"๐Ÿ“ฏ",bell:"๐Ÿ””",no_bell:"๐Ÿ”•",musical_score:"๐ŸŽผ",musical_note:"๐ŸŽต",notes:"๐ŸŽถ",studio_microphone:"๐ŸŽ™๏ธ",level_slider:"๐ŸŽš๏ธ",control_knobs:"๐ŸŽ›๏ธ",microphone:"๐ŸŽค",headphones:"๐ŸŽง",radio:"๐Ÿ“ป",saxophone:"๐ŸŽท",accordion:"๐Ÿช—",guitar:"๐ŸŽธ",musical_keyboard:"๐ŸŽน",trumpet:"๐ŸŽบ",violin:"๐ŸŽป",banjo:"๐Ÿช•",drum:"๐Ÿฅ",long_drum:"๐Ÿช˜",maracas:"๐Ÿช‡",flute:"๐Ÿชˆ",iphone:"๐Ÿ“ฑ",calling:"๐Ÿ“ฒ",phone:"โ˜Ž๏ธ",telephone:"โ˜Ž๏ธ",telephone_receiver:"๐Ÿ“ž",pager:"๐Ÿ“Ÿ",fax:"๐Ÿ“ ",battery:"๐Ÿ”‹",low_battery:"๐Ÿชซ",electric_plug:"๐Ÿ”Œ",computer:"๐Ÿ’ป",desktop_computer:"๐Ÿ–ฅ๏ธ",printer:"๐Ÿ–จ๏ธ",keyboard:"โŒจ๏ธ",computer_mouse:"๐Ÿ–ฑ๏ธ",trackball:"๐Ÿ–ฒ๏ธ",minidisc:"๐Ÿ’ฝ",floppy_disk:"๐Ÿ’พ",cd:"๐Ÿ’ฟ",dvd:"๐Ÿ“€",abacus:"๐Ÿงฎ",movie_camera:"๐ŸŽฅ",film_strip:"๐ŸŽž๏ธ",film_projector:"๐Ÿ“ฝ๏ธ",clapper:"๐ŸŽฌ",tv:"๐Ÿ“บ",camera:"๐Ÿ“ท",camera_flash:"๐Ÿ“ธ",video_camera:"๐Ÿ“น",vhs:"๐Ÿ“ผ",mag:"๐Ÿ”",mag_right:"๐Ÿ”Ž",candle:"๐Ÿ•ฏ๏ธ",bulb:"๐Ÿ’ก",flashlight:"๐Ÿ”ฆ",izakaya_lantern:"๐Ÿฎ",lantern:"๐Ÿฎ",diya_lamp:"๐Ÿช”",notebook_with_decorative_cover:"๐Ÿ“”",closed_book:"๐Ÿ“•",book:"๐Ÿ“–",open_book:"๐Ÿ“–",green_book:"๐Ÿ“—",blue_book:"๐Ÿ“˜",orange_book:"๐Ÿ“™",books:"๐Ÿ“š",notebook:"๐Ÿ““",ledger:"๐Ÿ“’",page_with_curl:"๐Ÿ“ƒ",scroll:"๐Ÿ“œ",page_facing_up:"๐Ÿ“„",newspaper:"๐Ÿ“ฐ",newspaper_roll:"๐Ÿ—ž๏ธ",bookmark_tabs:"๐Ÿ“‘",bookmark:"๐Ÿ”–",label:"๐Ÿท๏ธ",moneybag:"๐Ÿ’ฐ",coin:"๐Ÿช™",yen:"๐Ÿ’ด",dollar:"๐Ÿ’ต",euro:"๐Ÿ’ถ",pound:"๐Ÿ’ท",money_with_wings:"๐Ÿ’ธ",credit_card:"๐Ÿ’ณ",receipt:"๐Ÿงพ",chart:"๐Ÿ’น",envelope:"โœ‰๏ธ",email:"๐Ÿ“ง","e-mail":"๐Ÿ“ง",incoming_envelope:"๐Ÿ“จ",envelope_with_arrow:"๐Ÿ“ฉ",outbox_tray:"๐Ÿ“ค",inbox_tray:"๐Ÿ“ฅ",package:"๐Ÿ“ฆ",mailbox:"๐Ÿ“ซ",mailbox_closed:"๐Ÿ“ช",mailbox_with_mail:"๐Ÿ“ฌ",mailbox_with_no_mail:"๐Ÿ“ญ",postbox:"๐Ÿ“ฎ",ballot_box:"๐Ÿ—ณ๏ธ",pencil2:"โœ๏ธ",black_nib:"โœ’๏ธ",fountain_pen:"๐Ÿ–‹๏ธ",pen:"๐Ÿ–Š๏ธ",paintbrush:"๐Ÿ–Œ๏ธ",crayon:"๐Ÿ–๏ธ",memo:"๐Ÿ“",pencil:"๐Ÿ“",briefcase:"๐Ÿ’ผ",file_folder:"๐Ÿ“",open_file_folder:"๐Ÿ“‚",card_index_dividers:"๐Ÿ—‚๏ธ",date:"๐Ÿ“…",calendar:"๐Ÿ“†",spiral_notepad:"๐Ÿ—’๏ธ",spiral_calendar:"๐Ÿ—“๏ธ",card_index:"๐Ÿ“‡",chart_with_upwards_trend:"๐Ÿ“ˆ",chart_with_downwards_trend:"๐Ÿ“‰",bar_chart:"๐Ÿ“Š",clipboard:"๐Ÿ“‹",pushpin:"๐Ÿ“Œ",round_pushpin:"๐Ÿ“",paperclip:"๐Ÿ“Ž",paperclips:"๐Ÿ–‡๏ธ",straight_ruler:"๐Ÿ“",triangular_ruler:"๐Ÿ“",scissors:"โœ‚๏ธ",card_file_box:"๐Ÿ—ƒ๏ธ",file_cabinet:"๐Ÿ—„๏ธ",wastebasket:"๐Ÿ—‘๏ธ",lock:"๐Ÿ”’",unlock:"๐Ÿ”“",lock_with_ink_pen:"๐Ÿ”",closed_lock_with_key:"๐Ÿ”",key:"๐Ÿ”‘",old_key:"๐Ÿ—๏ธ",hammer:"๐Ÿ”จ",axe:"๐Ÿช“",pick:"โ›๏ธ",hammer_and_pick:"โš’๏ธ",hammer_and_wrench:"๐Ÿ› ๏ธ",dagger:"๐Ÿ—ก๏ธ",crossed_swords:"โš”๏ธ",bomb:"๐Ÿ’ฃ",boomerang:"๐Ÿชƒ",bow_and_arrow:"๐Ÿน",shield:"๐Ÿ›ก๏ธ",carpentry_saw:"๐Ÿชš",wrench:"๐Ÿ”ง",screwdriver:"๐Ÿช›",nut_and_bolt:"๐Ÿ”ฉ",gear:"โš™๏ธ",clamp:"๐Ÿ—œ๏ธ",balance_scale:"โš–๏ธ",probing_cane:"๐Ÿฆฏ",link:"๐Ÿ”—",chains:"โ›“๏ธ",hook:"๐Ÿช",toolbox:"๐Ÿงฐ",magnet:"๐Ÿงฒ",ladder:"๐Ÿชœ",alembic:"โš—๏ธ",test_tube:"๐Ÿงช",petri_dish:"๐Ÿงซ",dna:"๐Ÿงฌ",microscope:"๐Ÿ”ฌ",telescope:"๐Ÿ”ญ",satellite:"๐Ÿ“ก",syringe:"๐Ÿ’‰",drop_of_blood:"๐Ÿฉธ",pill:"๐Ÿ’Š",adhesive_bandage:"๐Ÿฉน",crutch:"๐Ÿฉผ",stethoscope:"๐Ÿฉบ",x_ray:"๐Ÿฉป",door:"๐Ÿšช",elevator:"๐Ÿ›—",mirror:"๐Ÿชž",window:"๐ŸชŸ",bed:"๐Ÿ›๏ธ",couch_and_lamp:"๐Ÿ›‹๏ธ",chair:"๐Ÿช‘",toilet:"๐Ÿšฝ",plunger:"๐Ÿช ",shower:"๐Ÿšฟ",bathtub:"๐Ÿ›",mouse_trap:"๐Ÿชค",razor:"๐Ÿช’",lotion_bottle:"๐Ÿงด",safety_pin:"๐Ÿงท",broom:"๐Ÿงน",basket:"๐Ÿงบ",roll_of_paper:"๐Ÿงป",bucket:"๐Ÿชฃ",soap:"๐Ÿงผ",bubbles:"๐Ÿซง",toothbrush:"๐Ÿชฅ",sponge:"๐Ÿงฝ",fire_extinguisher:"๐Ÿงฏ",shopping_cart:"๐Ÿ›’",smoking:"๐Ÿšฌ",coffin:"โšฐ๏ธ",headstone:"๐Ÿชฆ",funeral_urn:"โšฑ๏ธ",nazar_amulet:"๐Ÿงฟ",hamsa:"๐Ÿชฌ",moyai:"๐Ÿ—ฟ",placard:"๐Ÿชง",identification_card:"๐Ÿชช",atm:"๐Ÿง",put_litter_in_its_place:"๐Ÿšฎ",potable_water:"๐Ÿšฐ",wheelchair:"โ™ฟ",mens:"๐Ÿšน",womens:"๐Ÿšบ",restroom:"๐Ÿšป",baby_symbol:"๐Ÿšผ",wc:"๐Ÿšพ",passport_control:"๐Ÿ›‚",customs:"๐Ÿ›ƒ",baggage_claim:"๐Ÿ›„",left_luggage:"๐Ÿ›…",warning:"โš ๏ธ",children_crossing:"๐Ÿšธ",no_entry:"โ›”",no_entry_sign:"๐Ÿšซ",no_bicycles:"๐Ÿšณ",no_smoking:"๐Ÿšญ",do_not_litter:"๐Ÿšฏ","non-potable_water":"๐Ÿšฑ",no_pedestrians:"๐Ÿšท",no_mobile_phones:"๐Ÿ“ต",underage:"๐Ÿ”ž",radioactive:"โ˜ข๏ธ",biohazard:"โ˜ฃ๏ธ",arrow_up:"โฌ†๏ธ",arrow_upper_right:"โ†—๏ธ",arrow_right:"โžก๏ธ",arrow_lower_right:"โ†˜๏ธ",arrow_down:"โฌ‡๏ธ",arrow_lower_left:"โ†™๏ธ",arrow_left:"โฌ…๏ธ",arrow_upper_left:"โ†–๏ธ",arrow_up_down:"โ†•๏ธ",left_right_arrow:"โ†”๏ธ",leftwards_arrow_with_hook:"โ†ฉ๏ธ",arrow_right_hook:"โ†ช๏ธ",arrow_heading_up:"โคด๏ธ",arrow_heading_down:"โคต๏ธ",arrows_clockwise:"๐Ÿ”ƒ",arrows_counterclockwise:"๐Ÿ”„",back:"๐Ÿ”™",end:"๐Ÿ”š",on:"๐Ÿ”›",soon:"๐Ÿ”œ",top:"๐Ÿ”",place_of_worship:"๐Ÿ›",atom_symbol:"โš›๏ธ",om:"๐Ÿ•‰๏ธ",star_of_david:"โœก๏ธ",wheel_of_dharma:"โ˜ธ๏ธ",yin_yang:"โ˜ฏ๏ธ",latin_cross:"โœ๏ธ",orthodox_cross:"โ˜ฆ๏ธ",star_and_crescent:"โ˜ช๏ธ",peace_symbol:"โ˜ฎ๏ธ",menorah:"๐Ÿ•Ž",six_pointed_star:"๐Ÿ”ฏ",khanda:"๐Ÿชฏ",aries:"โ™ˆ",taurus:"โ™‰",gemini:"โ™Š",cancer:"โ™‹",leo:"โ™Œ",virgo:"โ™",libra:"โ™Ž",scorpius:"โ™",sagittarius:"โ™",capricorn:"โ™‘",aquarius:"โ™’",pisces:"โ™“",ophiuchus:"โ›Ž",twisted_rightwards_arrows:"๐Ÿ”€",repeat:"๐Ÿ”",repeat_one:"๐Ÿ”‚",arrow_forward:"โ–ถ๏ธ",fast_forward:"โฉ",next_track_button:"โญ๏ธ",play_or_pause_button:"โฏ๏ธ",arrow_backward:"โ—€๏ธ",rewind:"โช",previous_track_button:"โฎ๏ธ",arrow_up_small:"๐Ÿ”ผ",arrow_double_up:"โซ",arrow_down_small:"๐Ÿ”ฝ",arrow_double_down:"โฌ",pause_button:"โธ๏ธ",stop_button:"โน๏ธ",record_button:"โบ๏ธ",eject_button:"โ๏ธ",cinema:"๐ŸŽฆ",low_brightness:"๐Ÿ”…",high_brightness:"๐Ÿ”†",signal_strength:"๐Ÿ“ถ",wireless:"๐Ÿ›œ",vibration_mode:"๐Ÿ“ณ",mobile_phone_off:"๐Ÿ“ด",female_sign:"โ™€๏ธ",male_sign:"โ™‚๏ธ",transgender_symbol:"โšง๏ธ",heavy_multiplication_x:"โœ–๏ธ",heavy_plus_sign:"โž•",heavy_minus_sign:"โž–",heavy_division_sign:"โž—",heavy_equals_sign:"๐ŸŸฐ",infinity:"โ™พ๏ธ",bangbang:"โ€ผ๏ธ",interrobang:"โ‰๏ธ",question:"โ“",grey_question:"โ”",grey_exclamation:"โ•",exclamation:"โ—",heavy_exclamation_mark:"โ—",wavy_dash:"ใ€ฐ๏ธ",currency_exchange:"๐Ÿ’ฑ",heavy_dollar_sign:"๐Ÿ’ฒ",medical_symbol:"โš•๏ธ",recycle:"โ™ป๏ธ",fleur_de_lis:"โšœ๏ธ",trident:"๐Ÿ”ฑ",name_badge:"๐Ÿ“›",beginner:"๐Ÿ”ฐ",o:"โญ•",white_check_mark:"โœ…",ballot_box_with_check:"โ˜‘๏ธ",heavy_check_mark:"โœ”๏ธ",x:"โŒ",negative_squared_cross_mark:"โŽ",curly_loop:"โžฐ",loop:"โžฟ",part_alternation_mark:"ใ€ฝ๏ธ",eight_spoked_asterisk:"โœณ๏ธ",eight_pointed_black_star:"โœด๏ธ",sparkle:"โ‡๏ธ",copyright:"ยฉ๏ธ",registered:"ยฎ๏ธ",tm:"โ„ข๏ธ",hash:"#๏ธโƒฃ",asterisk:"*๏ธโƒฃ",zero:"0๏ธโƒฃ",one:"1๏ธโƒฃ",two:"2๏ธโƒฃ",three:"3๏ธโƒฃ",four:"4๏ธโƒฃ",five:"5๏ธโƒฃ",six:"6๏ธโƒฃ",seven:"7๏ธโƒฃ",eight:"8๏ธโƒฃ",nine:"9๏ธโƒฃ",keycap_ten:"๐Ÿ”Ÿ",capital_abcd:"๐Ÿ” ",abcd:"๐Ÿ”ก",symbols:"๐Ÿ”ฃ",abc:"๐Ÿ”ค",a:"๐Ÿ…ฐ๏ธ",ab:"๐Ÿ†Ž",b:"๐Ÿ…ฑ๏ธ",cl:"๐Ÿ†‘",cool:"๐Ÿ†’",free:"๐Ÿ†“",information_source:"โ„น๏ธ",id:"๐Ÿ†”",m:"โ“‚๏ธ",new:"๐Ÿ†•",ng:"๐Ÿ†–",o2:"๐Ÿ…พ๏ธ",ok:"๐Ÿ†—",parking:"๐Ÿ…ฟ๏ธ",sos:"๐Ÿ†˜",up:"๐Ÿ†™",vs:"๐Ÿ†š",koko:"๐Ÿˆ",sa:"๐Ÿˆ‚๏ธ",ideograph_advantage:"๐Ÿ‰",accept:"๐Ÿ‰‘",congratulations:"ใŠ—๏ธ",secret:"ใŠ™๏ธ",u6e80:"๐Ÿˆต",red_circle:"๐Ÿ”ด",orange_circle:"๐ŸŸ ",yellow_circle:"๐ŸŸก",green_circle:"๐ŸŸข",large_blue_circle:"๐Ÿ”ต",purple_circle:"๐ŸŸฃ",brown_circle:"๐ŸŸค",black_circle:"โšซ",white_circle:"โšช",red_square:"๐ŸŸฅ",orange_square:"๐ŸŸง",yellow_square:"๐ŸŸจ",green_square:"๐ŸŸฉ",blue_square:"๐ŸŸฆ",purple_square:"๐ŸŸช",brown_square:"๐ŸŸซ",black_large_square:"โฌ›",white_large_square:"โฌœ",black_medium_square:"โ—ผ๏ธ",white_medium_square:"โ—ป๏ธ",black_medium_small_square:"โ—พ",white_medium_small_square:"โ—ฝ",black_small_square:"โ–ช๏ธ",white_small_square:"โ–ซ๏ธ",large_orange_diamond:"๐Ÿ”ถ",large_blue_diamond:"๐Ÿ”ท",small_orange_diamond:"๐Ÿ”ธ",small_blue_diamond:"๐Ÿ”น",small_red_triangle:"๐Ÿ”บ",small_red_triangle_down:"๐Ÿ”ป",diamond_shape_with_a_dot_inside:"๐Ÿ’ ",radio_button:"๐Ÿ”˜",white_square_button:"๐Ÿ”ณ",black_square_button:"๐Ÿ”ฒ",checkered_flag:"๐Ÿ",triangular_flag_on_post:"๐Ÿšฉ",crossed_flags:"๐ŸŽŒ",black_flag:"๐Ÿด",white_flag:"๐Ÿณ๏ธ",rainbow_flag:"๐Ÿณ๏ธโ€๐ŸŒˆ",transgender_flag:"๐Ÿณ๏ธโ€โšง๏ธ",pirate_flag:"๐Ÿดโ€โ˜ ๏ธ",ascension_island:"๐Ÿ‡ฆ๐Ÿ‡จ",andorra:"๐Ÿ‡ฆ๐Ÿ‡ฉ",united_arab_emirates:"๐Ÿ‡ฆ๐Ÿ‡ช",afghanistan:"๐Ÿ‡ฆ๐Ÿ‡ซ",antigua_barbuda:"๐Ÿ‡ฆ๐Ÿ‡ฌ",anguilla:"๐Ÿ‡ฆ๐Ÿ‡ฎ",albania:"๐Ÿ‡ฆ๐Ÿ‡ฑ",armenia:"๐Ÿ‡ฆ๐Ÿ‡ฒ",angola:"๐Ÿ‡ฆ๐Ÿ‡ด",antarctica:"๐Ÿ‡ฆ๐Ÿ‡ถ",argentina:"๐Ÿ‡ฆ๐Ÿ‡ท",american_samoa:"๐Ÿ‡ฆ๐Ÿ‡ธ",austria:"๐Ÿ‡ฆ๐Ÿ‡น",australia:"๐Ÿ‡ฆ๐Ÿ‡บ",aruba:"๐Ÿ‡ฆ๐Ÿ‡ผ",aland_islands:"๐Ÿ‡ฆ๐Ÿ‡ฝ",azerbaijan:"๐Ÿ‡ฆ๐Ÿ‡ฟ",bosnia_herzegovina:"๐Ÿ‡ง๐Ÿ‡ฆ",barbados:"๐Ÿ‡ง๐Ÿ‡ง",bangladesh:"๐Ÿ‡ง๐Ÿ‡ฉ",belgium:"๐Ÿ‡ง๐Ÿ‡ช",burkina_faso:"๐Ÿ‡ง๐Ÿ‡ซ",bulgaria:"๐Ÿ‡ง๐Ÿ‡ฌ",bahrain:"๐Ÿ‡ง๐Ÿ‡ญ",burundi:"๐Ÿ‡ง๐Ÿ‡ฎ",benin:"๐Ÿ‡ง๐Ÿ‡ฏ",st_barthelemy:"๐Ÿ‡ง๐Ÿ‡ฑ",bermuda:"๐Ÿ‡ง๐Ÿ‡ฒ",brunei:"๐Ÿ‡ง๐Ÿ‡ณ",bolivia:"๐Ÿ‡ง๐Ÿ‡ด",caribbean_netherlands:"๐Ÿ‡ง๐Ÿ‡ถ",brazil:"๐Ÿ‡ง๐Ÿ‡ท",bahamas:"๐Ÿ‡ง๐Ÿ‡ธ",bhutan:"๐Ÿ‡ง๐Ÿ‡น",bouvet_island:"๐Ÿ‡ง๐Ÿ‡ป",botswana:"๐Ÿ‡ง๐Ÿ‡ผ",belarus:"๐Ÿ‡ง๐Ÿ‡พ",belize:"๐Ÿ‡ง๐Ÿ‡ฟ",canada:"๐Ÿ‡จ๐Ÿ‡ฆ",cocos_islands:"๐Ÿ‡จ๐Ÿ‡จ",congo_kinshasa:"๐Ÿ‡จ๐Ÿ‡ฉ",central_african_republic:"๐Ÿ‡จ๐Ÿ‡ซ",congo_brazzaville:"๐Ÿ‡จ๐Ÿ‡ฌ",switzerland:"๐Ÿ‡จ๐Ÿ‡ญ",cote_divoire:"๐Ÿ‡จ๐Ÿ‡ฎ",cook_islands:"๐Ÿ‡จ๐Ÿ‡ฐ",chile:"๐Ÿ‡จ๐Ÿ‡ฑ",cameroon:"๐Ÿ‡จ๐Ÿ‡ฒ",cn:"๐Ÿ‡จ๐Ÿ‡ณ",colombia:"๐Ÿ‡จ๐Ÿ‡ด",clipperton_island:"๐Ÿ‡จ๐Ÿ‡ต",costa_rica:"๐Ÿ‡จ๐Ÿ‡ท",cuba:"๐Ÿ‡จ๐Ÿ‡บ",cape_verde:"๐Ÿ‡จ๐Ÿ‡ป",curacao:"๐Ÿ‡จ๐Ÿ‡ผ",christmas_island:"๐Ÿ‡จ๐Ÿ‡ฝ",cyprus:"๐Ÿ‡จ๐Ÿ‡พ",czech_republic:"๐Ÿ‡จ๐Ÿ‡ฟ",de:"๐Ÿ‡ฉ๐Ÿ‡ช",diego_garcia:"๐Ÿ‡ฉ๐Ÿ‡ฌ",djibouti:"๐Ÿ‡ฉ๐Ÿ‡ฏ",denmark:"๐Ÿ‡ฉ๐Ÿ‡ฐ",dominica:"๐Ÿ‡ฉ๐Ÿ‡ฒ",dominican_republic:"๐Ÿ‡ฉ๐Ÿ‡ด",algeria:"๐Ÿ‡ฉ๐Ÿ‡ฟ",ceuta_melilla:"๐Ÿ‡ช๐Ÿ‡ฆ",ecuador:"๐Ÿ‡ช๐Ÿ‡จ",estonia:"๐Ÿ‡ช๐Ÿ‡ช",egypt:"๐Ÿ‡ช๐Ÿ‡ฌ",western_sahara:"๐Ÿ‡ช๐Ÿ‡ญ",eritrea:"๐Ÿ‡ช๐Ÿ‡ท",es:"๐Ÿ‡ช๐Ÿ‡ธ",ethiopia:"๐Ÿ‡ช๐Ÿ‡น",eu:"๐Ÿ‡ช๐Ÿ‡บ",european_union:"๐Ÿ‡ช๐Ÿ‡บ",finland:"๐Ÿ‡ซ๐Ÿ‡ฎ",fiji:"๐Ÿ‡ซ๐Ÿ‡ฏ",falkland_islands:"๐Ÿ‡ซ๐Ÿ‡ฐ",micronesia:"๐Ÿ‡ซ๐Ÿ‡ฒ",faroe_islands:"๐Ÿ‡ซ๐Ÿ‡ด",fr:"๐Ÿ‡ซ๐Ÿ‡ท",gabon:"๐Ÿ‡ฌ๐Ÿ‡ฆ",gb:"๐Ÿ‡ฌ๐Ÿ‡ง",uk:"๐Ÿ‡ฌ๐Ÿ‡ง",grenada:"๐Ÿ‡ฌ๐Ÿ‡ฉ",georgia:"๐Ÿ‡ฌ๐Ÿ‡ช",french_guiana:"๐Ÿ‡ฌ๐Ÿ‡ซ",guernsey:"๐Ÿ‡ฌ๐Ÿ‡ฌ",ghana:"๐Ÿ‡ฌ๐Ÿ‡ญ",gibraltar:"๐Ÿ‡ฌ๐Ÿ‡ฎ",greenland:"๐Ÿ‡ฌ๐Ÿ‡ฑ",gambia:"๐Ÿ‡ฌ๐Ÿ‡ฒ",guinea:"๐Ÿ‡ฌ๐Ÿ‡ณ",guadeloupe:"๐Ÿ‡ฌ๐Ÿ‡ต",equatorial_guinea:"๐Ÿ‡ฌ๐Ÿ‡ถ",greece:"๐Ÿ‡ฌ๐Ÿ‡ท",south_georgia_south_sandwich_islands:"๐Ÿ‡ฌ๐Ÿ‡ธ",guatemala:"๐Ÿ‡ฌ๐Ÿ‡น",guam:"๐Ÿ‡ฌ๐Ÿ‡บ",guinea_bissau:"๐Ÿ‡ฌ๐Ÿ‡ผ",guyana:"๐Ÿ‡ฌ๐Ÿ‡พ",hong_kong:"๐Ÿ‡ญ๐Ÿ‡ฐ",heard_mcdonald_islands:"๐Ÿ‡ญ๐Ÿ‡ฒ",honduras:"๐Ÿ‡ญ๐Ÿ‡ณ",croatia:"๐Ÿ‡ญ๐Ÿ‡ท",haiti:"๐Ÿ‡ญ๐Ÿ‡น",hungary:"๐Ÿ‡ญ๐Ÿ‡บ",canary_islands:"๐Ÿ‡ฎ๐Ÿ‡จ",indonesia:"๐Ÿ‡ฎ๐Ÿ‡ฉ",ireland:"๐Ÿ‡ฎ๐Ÿ‡ช",israel:"๐Ÿ‡ฎ๐Ÿ‡ฑ",isle_of_man:"๐Ÿ‡ฎ๐Ÿ‡ฒ",india:"๐Ÿ‡ฎ๐Ÿ‡ณ",british_indian_ocean_territory:"๐Ÿ‡ฎ๐Ÿ‡ด",iraq:"๐Ÿ‡ฎ๐Ÿ‡ถ",iran:"๐Ÿ‡ฎ๐Ÿ‡ท",iceland:"๐Ÿ‡ฎ๐Ÿ‡ธ",it:"๐Ÿ‡ฎ๐Ÿ‡น",jersey:"๐Ÿ‡ฏ๐Ÿ‡ช",jamaica:"๐Ÿ‡ฏ๐Ÿ‡ฒ",jordan:"๐Ÿ‡ฏ๐Ÿ‡ด",jp:"๐Ÿ‡ฏ๐Ÿ‡ต",kenya:"๐Ÿ‡ฐ๐Ÿ‡ช",kyrgyzstan:"๐Ÿ‡ฐ๐Ÿ‡ฌ",cambodia:"๐Ÿ‡ฐ๐Ÿ‡ญ",kiribati:"๐Ÿ‡ฐ๐Ÿ‡ฎ",comoros:"๐Ÿ‡ฐ๐Ÿ‡ฒ",st_kitts_nevis:"๐Ÿ‡ฐ๐Ÿ‡ณ",north_korea:"๐Ÿ‡ฐ๐Ÿ‡ต",kr:"๐Ÿ‡ฐ๐Ÿ‡ท",kuwait:"๐Ÿ‡ฐ๐Ÿ‡ผ",cayman_islands:"๐Ÿ‡ฐ๐Ÿ‡พ",kazakhstan:"๐Ÿ‡ฐ๐Ÿ‡ฟ",laos:"๐Ÿ‡ฑ๐Ÿ‡ฆ",lebanon:"๐Ÿ‡ฑ๐Ÿ‡ง",st_lucia:"๐Ÿ‡ฑ๐Ÿ‡จ",liechtenstein:"๐Ÿ‡ฑ๐Ÿ‡ฎ",sri_lanka:"๐Ÿ‡ฑ๐Ÿ‡ฐ",liberia:"๐Ÿ‡ฑ๐Ÿ‡ท",lesotho:"๐Ÿ‡ฑ๐Ÿ‡ธ",lithuania:"๐Ÿ‡ฑ๐Ÿ‡น",luxembourg:"๐Ÿ‡ฑ๐Ÿ‡บ",latvia:"๐Ÿ‡ฑ๐Ÿ‡ป",libya:"๐Ÿ‡ฑ๐Ÿ‡พ",morocco:"๐Ÿ‡ฒ๐Ÿ‡ฆ",monaco:"๐Ÿ‡ฒ๐Ÿ‡จ",moldova:"๐Ÿ‡ฒ๐Ÿ‡ฉ",montenegro:"๐Ÿ‡ฒ๐Ÿ‡ช",st_martin:"๐Ÿ‡ฒ๐Ÿ‡ซ",madagascar:"๐Ÿ‡ฒ๐Ÿ‡ฌ",marshall_islands:"๐Ÿ‡ฒ๐Ÿ‡ญ",macedonia:"๐Ÿ‡ฒ๐Ÿ‡ฐ",mali:"๐Ÿ‡ฒ๐Ÿ‡ฑ",myanmar:"๐Ÿ‡ฒ๐Ÿ‡ฒ",mongolia:"๐Ÿ‡ฒ๐Ÿ‡ณ",macau:"๐Ÿ‡ฒ๐Ÿ‡ด",northern_mariana_islands:"๐Ÿ‡ฒ๐Ÿ‡ต",martinique:"๐Ÿ‡ฒ๐Ÿ‡ถ",mauritania:"๐Ÿ‡ฒ๐Ÿ‡ท",montserrat:"๐Ÿ‡ฒ๐Ÿ‡ธ",malta:"๐Ÿ‡ฒ๐Ÿ‡น",mauritius:"๐Ÿ‡ฒ๐Ÿ‡บ",maldives:"๐Ÿ‡ฒ๐Ÿ‡ป",malawi:"๐Ÿ‡ฒ๐Ÿ‡ผ",mexico:"๐Ÿ‡ฒ๐Ÿ‡ฝ",malaysia:"๐Ÿ‡ฒ๐Ÿ‡พ",mozambique:"๐Ÿ‡ฒ๐Ÿ‡ฟ",namibia:"๐Ÿ‡ณ๐Ÿ‡ฆ",new_caledonia:"๐Ÿ‡ณ๐Ÿ‡จ",niger:"๐Ÿ‡ณ๐Ÿ‡ช",norfolk_island:"๐Ÿ‡ณ๐Ÿ‡ซ",nigeria:"๐Ÿ‡ณ๐Ÿ‡ฌ",nicaragua:"๐Ÿ‡ณ๐Ÿ‡ฎ",netherlands:"๐Ÿ‡ณ๐Ÿ‡ฑ",norway:"๐Ÿ‡ณ๐Ÿ‡ด",nepal:"๐Ÿ‡ณ๐Ÿ‡ต",nauru:"๐Ÿ‡ณ๐Ÿ‡ท",niue:"๐Ÿ‡ณ๐Ÿ‡บ",new_zealand:"๐Ÿ‡ณ๐Ÿ‡ฟ",oman:"๐Ÿ‡ด๐Ÿ‡ฒ",panama:"๐Ÿ‡ต๐Ÿ‡ฆ",peru:"๐Ÿ‡ต๐Ÿ‡ช",french_polynesia:"๐Ÿ‡ต๐Ÿ‡ซ",papua_new_guinea:"๐Ÿ‡ต๐Ÿ‡ฌ",philippines:"๐Ÿ‡ต๐Ÿ‡ญ",pakistan:"๐Ÿ‡ต๐Ÿ‡ฐ",poland:"๐Ÿ‡ต๐Ÿ‡ฑ",st_pierre_miquelon:"๐Ÿ‡ต๐Ÿ‡ฒ",pitcairn_islands:"๐Ÿ‡ต๐Ÿ‡ณ",puerto_rico:"๐Ÿ‡ต๐Ÿ‡ท",palestinian_territories:"๐Ÿ‡ต๐Ÿ‡ธ",portugal:"๐Ÿ‡ต๐Ÿ‡น",palau:"๐Ÿ‡ต๐Ÿ‡ผ",paraguay:"๐Ÿ‡ต๐Ÿ‡พ",qatar:"๐Ÿ‡ถ๐Ÿ‡ฆ",reunion:"๐Ÿ‡ท๐Ÿ‡ช",romania:"๐Ÿ‡ท๐Ÿ‡ด",serbia:"๐Ÿ‡ท๐Ÿ‡ธ",ru:"๐Ÿ‡ท๐Ÿ‡บ",rwanda:"๐Ÿ‡ท๐Ÿ‡ผ",saudi_arabia:"๐Ÿ‡ธ๐Ÿ‡ฆ",solomon_islands:"๐Ÿ‡ธ๐Ÿ‡ง",seychelles:"๐Ÿ‡ธ๐Ÿ‡จ",sudan:"๐Ÿ‡ธ๐Ÿ‡ฉ",sweden:"๐Ÿ‡ธ๐Ÿ‡ช",singapore:"๐Ÿ‡ธ๐Ÿ‡ฌ",st_helena:"๐Ÿ‡ธ๐Ÿ‡ญ",slovenia:"๐Ÿ‡ธ๐Ÿ‡ฎ",svalbard_jan_mayen:"๐Ÿ‡ธ๐Ÿ‡ฏ",slovakia:"๐Ÿ‡ธ๐Ÿ‡ฐ",sierra_leone:"๐Ÿ‡ธ๐Ÿ‡ฑ",san_marino:"๐Ÿ‡ธ๐Ÿ‡ฒ",senegal:"๐Ÿ‡ธ๐Ÿ‡ณ",somalia:"๐Ÿ‡ธ๐Ÿ‡ด",suriname:"๐Ÿ‡ธ๐Ÿ‡ท",south_sudan:"๐Ÿ‡ธ๐Ÿ‡ธ",sao_tome_principe:"๐Ÿ‡ธ๐Ÿ‡น",el_salvador:"๐Ÿ‡ธ๐Ÿ‡ป",sint_maarten:"๐Ÿ‡ธ๐Ÿ‡ฝ",syria:"๐Ÿ‡ธ๐Ÿ‡พ",swaziland:"๐Ÿ‡ธ๐Ÿ‡ฟ",tristan_da_cunha:"๐Ÿ‡น๐Ÿ‡ฆ",turks_caicos_islands:"๐Ÿ‡น๐Ÿ‡จ",chad:"๐Ÿ‡น๐Ÿ‡ฉ",french_southern_territories:"๐Ÿ‡น๐Ÿ‡ซ",togo:"๐Ÿ‡น๐Ÿ‡ฌ",thailand:"๐Ÿ‡น๐Ÿ‡ญ",tajikistan:"๐Ÿ‡น๐Ÿ‡ฏ",tokelau:"๐Ÿ‡น๐Ÿ‡ฐ",timor_leste:"๐Ÿ‡น๐Ÿ‡ฑ",turkmenistan:"๐Ÿ‡น๐Ÿ‡ฒ",tunisia:"๐Ÿ‡น๐Ÿ‡ณ",tonga:"๐Ÿ‡น๐Ÿ‡ด",tr:"๐Ÿ‡น๐Ÿ‡ท",trinidad_tobago:"๐Ÿ‡น๐Ÿ‡น",tuvalu:"๐Ÿ‡น๐Ÿ‡ป",taiwan:"๐Ÿ‡น๐Ÿ‡ผ",tanzania:"๐Ÿ‡น๐Ÿ‡ฟ",ukraine:"๐Ÿ‡บ๐Ÿ‡ฆ",uganda:"๐Ÿ‡บ๐Ÿ‡ฌ",us_outlying_islands:"๐Ÿ‡บ๐Ÿ‡ฒ",united_nations:"๐Ÿ‡บ๐Ÿ‡ณ",us:"๐Ÿ‡บ๐Ÿ‡ธ",uruguay:"๐Ÿ‡บ๐Ÿ‡พ",uzbekistan:"๐Ÿ‡บ๐Ÿ‡ฟ",vatican_city:"๐Ÿ‡ป๐Ÿ‡ฆ",st_vincent_grenadines:"๐Ÿ‡ป๐Ÿ‡จ",venezuela:"๐Ÿ‡ป๐Ÿ‡ช",british_virgin_islands:"๐Ÿ‡ป๐Ÿ‡ฌ",us_virgin_islands:"๐Ÿ‡ป๐Ÿ‡ฎ",vietnam:"๐Ÿ‡ป๐Ÿ‡ณ",vanuatu:"๐Ÿ‡ป๐Ÿ‡บ",wallis_futuna:"๐Ÿ‡ผ๐Ÿ‡ซ",samoa:"๐Ÿ‡ผ๐Ÿ‡ธ",kosovo:"๐Ÿ‡ฝ๐Ÿ‡ฐ",yemen:"๐Ÿ‡พ๐Ÿ‡ช",mayotte:"๐Ÿ‡พ๐Ÿ‡น",south_africa:"๐Ÿ‡ฟ๐Ÿ‡ฆ",zambia:"๐Ÿ‡ฟ๐Ÿ‡ฒ",zimbabwe:"๐Ÿ‡ฟ๐Ÿ‡ผ",england:"๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ",scotland:"๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ",wales:"๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ"};function c(e,t){const n={defs:l,shortcuts:a,enabled:[]},r=e.utils.assign({},n,t||{});o(e,r)}},function(e,t){},,,,,,,,,function(e,t){},,function(e,t){}])}));