mathpix-markdown-it 2.0.38 → 2.0.40

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 (97) hide show
  1. package/README.md +3 -0
  2. package/doc/changelog.md +128 -0
  3. package/es5/browser/auto-render.js +1 -1
  4. package/es5/bundle.js +4 -4
  5. package/es5/index.js +4 -4
  6. package/lib/components/mathpix-markdown/index.js +2 -1
  7. package/lib/components/mathpix-markdown/index.js.map +1 -1
  8. package/lib/index.d.ts +2 -1
  9. package/lib/index.js +3 -1
  10. package/lib/index.js.map +1 -1
  11. package/lib/markdown/common/consts.d.ts +5 -0
  12. package/lib/markdown/common/consts.js +17 -5
  13. package/lib/markdown/common/consts.js.map +1 -1
  14. package/lib/markdown/common/convert-math-to-html.d.ts +10 -0
  15. package/lib/markdown/common/convert-math-to-html.js +163 -41
  16. package/lib/markdown/common/convert-math-to-html.js.map +1 -1
  17. package/lib/markdown/common/labels.d.ts +9 -1
  18. package/lib/markdown/common/labels.js +82 -37
  19. package/lib/markdown/common/labels.js.map +1 -1
  20. package/lib/markdown/common/reset-mmd-state.d.ts +4 -0
  21. package/lib/markdown/common/reset-mmd-state.js +30 -0
  22. package/lib/markdown/common/reset-mmd-state.js.map +1 -0
  23. package/lib/markdown/common.d.ts +3 -0
  24. package/lib/markdown/common.js +34 -23
  25. package/lib/markdown/common.js.map +1 -1
  26. package/lib/markdown/highlight/highlight-math-token.js +1 -0
  27. package/lib/markdown/highlight/highlight-math-token.js.map +1 -1
  28. package/lib/markdown/index.js +22 -8
  29. package/lib/markdown/index.js.map +1 -1
  30. package/lib/markdown/mathpix-markdown-plugins.js +21 -1
  31. package/lib/markdown/mathpix-markdown-plugins.js.map +1 -1
  32. package/lib/markdown/md-block-rule/begin-tabular/common.d.ts +15 -1
  33. package/lib/markdown/md-block-rule/begin-tabular/common.js +57 -11
  34. package/lib/markdown/md-block-rule/begin-tabular/common.js.map +1 -1
  35. package/lib/markdown/md-block-rule/begin-tabular/index.d.ts +3 -0
  36. package/lib/markdown/md-block-rule/begin-tabular/index.js +79 -20
  37. package/lib/markdown/md-block-rule/begin-tabular/index.js.map +1 -1
  38. package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.d.ts +3 -1
  39. package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js +15 -9
  40. package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js.map +1 -1
  41. package/lib/markdown/md-block-rule/begin-tabular/parse-tabular.d.ts +2 -1
  42. package/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js +177 -73
  43. package/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map +1 -1
  44. package/lib/markdown/md-block-rule/begin-tabular/sub-cell.d.ts +1 -0
  45. package/lib/markdown/md-block-rule/begin-tabular/sub-cell.js +11 -23
  46. package/lib/markdown/md-block-rule/begin-tabular/sub-cell.js.map +1 -1
  47. package/lib/markdown/md-block-rule/begin-tabular/sub-code.d.ts +0 -6
  48. package/lib/markdown/md-block-rule/begin-tabular/sub-code.js +10 -21
  49. package/lib/markdown/md-block-rule/begin-tabular/sub-code.js.map +1 -1
  50. package/lib/markdown/md-block-rule/begin-tabular/sub-math.d.ts +13 -5
  51. package/lib/markdown/md-block-rule/begin-tabular/sub-math.js +132 -93
  52. package/lib/markdown/md-block-rule/begin-tabular/sub-math.js.map +1 -1
  53. package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.d.ts +3 -1
  54. package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.js +44 -36
  55. package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.js.map +1 -1
  56. package/lib/markdown/md-block-rule/begin-tabular/tabular-td.d.ts +11 -3
  57. package/lib/markdown/md-block-rule/begin-tabular/tabular-td.js +207 -57
  58. package/lib/markdown/md-block-rule/begin-tabular/tabular-td.js.map +1 -1
  59. package/lib/markdown/md-block-rule/mmd-html-block.js +11 -2
  60. package/lib/markdown/md-block-rule/mmd-html-block.js.map +1 -1
  61. package/lib/markdown/md-core-rules/set-positions.js +90 -15
  62. package/lib/markdown/md-core-rules/set-positions.js.map +1 -1
  63. package/lib/markdown/md-inline-rule/core-inline.js +41 -9
  64. package/lib/markdown/md-inline-rule/core-inline.js.map +1 -1
  65. package/lib/markdown/md-inline-rule/tabular.js +5 -2
  66. package/lib/markdown/md-inline-rule/tabular.js.map +1 -1
  67. package/lib/markdown/md-latex-footnotes/block-rule.js +72 -3
  68. package/lib/markdown/md-latex-footnotes/block-rule.js.map +1 -1
  69. package/lib/markdown/md-latex-lists-env/re-level.js +39 -22
  70. package/lib/markdown/md-latex-lists-env/re-level.js.map +1 -1
  71. package/lib/markdown/md-renderer-rules/render-tabular.js +115 -36
  72. package/lib/markdown/md-renderer-rules/render-tabular.js.map +1 -1
  73. package/lib/markdown/md-svg-to-base64/base64.js +8 -8
  74. package/lib/markdown/md-svg-to-base64/base64.js.map +1 -1
  75. package/lib/markdown/md-theorem/block-rule.js +10 -6
  76. package/lib/markdown/md-theorem/block-rule.js.map +1 -1
  77. package/lib/markdown/mdPluginRaw.js +24 -3
  78. package/lib/markdown/mdPluginRaw.js.map +1 -1
  79. package/lib/markdown/mdPluginTOC.js +30 -4
  80. package/lib/markdown/mdPluginTOC.js.map +1 -1
  81. package/lib/markdown/mdPluginTableTabular.js +46 -1
  82. package/lib/markdown/mdPluginTableTabular.js.map +1 -1
  83. package/lib/markdown/utils.js +3 -0
  84. package/lib/markdown/utils.js.map +1 -1
  85. package/lib/mathjax/index.js +3 -3
  86. package/lib/mathjax/index.js.map +1 -1
  87. package/lib/mathpix-markdown-model/index.d.ts +4 -0
  88. package/lib/mathpix-markdown-model/index.js +2 -1
  89. package/lib/mathpix-markdown-model/index.js.map +1 -1
  90. package/package.json +1 -1
  91. package/pr-specs/2026-04-global-state-cleanup-and-perf.md +212 -0
  92. package/pr-specs/2026-04-optimize-tabular-parsing.md +211 -0
  93. package/pr-specs/2026-05-footnote-perf-and-parser-invariants.md +246 -0
  94. package/pr-specs/2026-05-tabular-vertical-align-bracket.md +270 -0
  95. package/lib/markdown/mdPluginSeparateForBlock.d.ts +0 -2
  96. package/lib/markdown/mdPluginSeparateForBlock.js +0 -209
  97. package/lib/markdown/mdPluginSeparateForBlock.js.map +0 -1
@@ -30,4 +30,4 @@
30
30
  *
31
31
  * https://github.com/mhchem/mhchemParser
32
32
  *
33
- */Object.defineProperty(e,"__esModule",{value:!0}),e.mhchemParser=void 0;var n=function(){function t(){}return t.toTex=function(t,e){return o.go(i.go(t,e),"tex"!==e)},t}();function r(t){var e,n,r={};for(e in t)for(n in t[e]){var i=n.split("|");t[e][n].stateArray=i;for(var o=0;o<i.length;o++)r[i[o]]=[]}for(e in t)for(n in t[e])for(i=t[e][n].stateArray||[],o=0;o<i.length;o++){var a=t[e][n];a.action_=[].concat(a.action_);for(var s=0;s<a.action_.length;s++)"string"==typeof a.action_[s]&&(a.action_[s]={type_:a.action_[s]});for(var l=e.split("|"),T=0;T<l.length;T++)if("*"===i[o]){var Q=void 0;for(Q in r)r[Q].push({pattern:l[T],task:a})}else r[i[o]].push({pattern:l[T],task:a})}return r}e.mhchemParser=n;var i={go:function(t,e){if(!t)return[];void 0===e&&(e="ce");var n,r="0",o={};o.parenthesisLevel=0,t=(t=(t=t.replace(/\n/g," ")).replace(/[\u2212\u2013\u2014\u2010]/g,"-")).replace(/[\u2026]/g,"...");for(var a=10,s=[];;){n!==t?(a=10,n=t):a--;var l=i.stateMachines[e],T=l.transitions[r]||l.transitions["*"];t:for(var Q=0;Q<T.length;Q++){var c=i.patterns.match_(T[Q].pattern,t);if(c){for(var u=T[Q].task,d=0;d<u.action_.length;d++){var h=void 0;if(l.actions[u.action_[d].type_])h=l.actions[u.action_[d].type_](o,c.match_,u.action_[d].option);else{if(!i.actions[u.action_[d].type_])throw["MhchemBugA","mhchem bug A. Please report. ("+u.action_[d].type_+")"];h=i.actions[u.action_[d].type_](o,c.match_,u.action_[d].option)}i.concatArray(s,h)}if(r=u.nextState||r,!(t.length>0))return s;if(u.revisit||(t=c.remainder),!u.toContinue)break t}}if(a<=0)throw["MhchemBugU","mhchem bug U. Please report."]}},concatArray:function(t,e){if(e)if(Array.isArray(e))for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e)},patterns:{patterns:{empty:/^$/,else:/^./,else2:/^./,space:/^\s/,"space A":/^\s(?=[A-Z\\$])/,space$:/^\s$/,"a-z":/^[a-z]/,x:/^x/,x$:/^x$/,i$:/^i$/,letters:/^(?:[a-zA-Z\u03B1-\u03C9\u0391-\u03A9?@]|(?:\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))))+/,"\\greek":/^\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))/,"one lowercase latin letter $":/^(?:([a-z])(?:$|[^a-zA-Z]))$/,"$one lowercase latin letter$ $":/^\$(?:([a-z])(?:$|[^a-zA-Z]))\$$/,"one lowercase greek letter $":/^(?:\$?[\u03B1-\u03C9]\$?|\$?\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega)\s*\$?)(?:\s+|\{\}|(?![a-zA-Z]))$/,digits:/^[0-9]+/,"-9.,9":/^[+\-]?(?:[0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+))/,"-9.,9 no missing 0":/^[+\-]?[0-9]+(?:[.,][0-9]+)?/,"(-)(9.,9)(e)(99)":function(t){var e=t.match(/^(\+\-|\+\/\-|\+|\-|\\pm\s?)?([0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+))?(\((?:[0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+))\))?(?:(?:([eE])|\s*(\*|x|\\times|\u00D7)\s*10\^)([+\-]?[0-9]+|\{[+\-]?[0-9]+\}))?/);return e&&e[0]?{match_:e.slice(1),remainder:t.substr(e[0].length)}:null},"(-)(9)^(-9)":/^(\+\-|\+\/\-|\+|\-|\\pm\s?)?([0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+)?)\^([+\-]?[0-9]+|\{[+\-]?[0-9]+\})/,"state of aggregation $":function(t){var e=i.patterns.findObserveGroups(t,"",/^\([a-z]{1,3}(?=[\),])/,")","");if(e&&e.remainder.match(/^($|[\s,;\)\]\}])/))return e;var n=t.match(/^(?:\((?:\\ca\s?)?\$[amothc]\$\))/);return n?{match_:n[0],remainder:t.substr(n[0].length)}:null},"_{(state of aggregation)}$":/^_\{(\([a-z]{1,3}\))\}/,"{[(":/^(?:\\\{|\[|\()/,")]}":/^(?:\)|\]|\\\})/,", ":/^[,;]\s*/,",":/^[,;]/,".":/^[.]/,". __* ":/^([.\u22C5\u00B7\u2022]|[*])\s*/,"...":/^\.\.\.(?=$|[^.])/,"^{(...)}":function(t){return i.patterns.findObserveGroups(t,"^{","","","}")},"^($...$)":function(t){return i.patterns.findObserveGroups(t,"^","$","$","")},"^a":/^\^([0-9]+|[^\\_])/,"^\\x{}{}":function(t){return i.patterns.findObserveGroups(t,"^",/^\\[a-zA-Z]+\{/,"}","","","{","}","",!0)},"^\\x{}":function(t){return i.patterns.findObserveGroups(t,"^",/^\\[a-zA-Z]+\{/,"}","")},"^\\x":/^\^(\\[a-zA-Z]+)\s*/,"^(-1)":/^\^(-?\d+)/,"'":/^'/,"_{(...)}":function(t){return i.patterns.findObserveGroups(t,"_{","","","}")},"_($...$)":function(t){return i.patterns.findObserveGroups(t,"_","$","$","")},_9:/^_([+\-]?[0-9]+|[^\\])/,"_\\x{}{}":function(t){return i.patterns.findObserveGroups(t,"_",/^\\[a-zA-Z]+\{/,"}","","","{","}","",!0)},"_\\x{}":function(t){return i.patterns.findObserveGroups(t,"_",/^\\[a-zA-Z]+\{/,"}","")},"_\\x":/^_(\\[a-zA-Z]+)\s*/,"^_":/^(?:\^(?=_)|\_(?=\^)|[\^_]$)/,"{}^":/^\{\}(?=\^)/,"{}":/^\{\}/,"{...}":function(t){return i.patterns.findObserveGroups(t,"","{","}","")},"{(...)}":function(t){return i.patterns.findObserveGroups(t,"{","","","}")},"$...$":function(t){return i.patterns.findObserveGroups(t,"","$","$","")},"${(...)}$__$(...)$":function(t){return i.patterns.findObserveGroups(t,"${","","","}$")||i.patterns.findObserveGroups(t,"$","","","$")},"=<>":/^[=<>]/,"#":/^[#\u2261]/,"+":/^\+/,"-$":/^-(?=[\s_},;\]/]|$|\([a-z]+\))/,"-9":/^-(?=[0-9])/,"- orbital overlap":/^-(?=(?:[spd]|sp)(?:$|[\s,;\)\]\}]))/,"-":/^-/,"pm-operator":/^(?:\\pm|\$\\pm\$|\+-|\+\/-)/,operator:/^(?:\+|(?:[\-=<>]|<<|>>|\\approx|\$\\approx\$)(?=\s|$|-?[0-9]))/,arrowUpDown:/^(?:v|\(v\)|\^|\(\^\))(?=$|[\s,;\)\]\}])/,"\\bond{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\bond{","","","}")},"->":/^(?:<->|<-->|->|<-|<=>>|<<=>|<=>|[\u2192\u27F6\u21CC])/,CMT:/^[CMT](?=\[)/,"[(...)]":function(t){return i.patterns.findObserveGroups(t,"[","","","]")},"1st-level escape":/^(&|\\\\|\\hline)\s*/,"\\,":/^(?:\\[,\ ;:])/,"\\x{}{}":function(t){return i.patterns.findObserveGroups(t,"",/^\\[a-zA-Z]+\{/,"}","","","{","}","",!0)},"\\x{}":function(t){return i.patterns.findObserveGroups(t,"",/^\\[a-zA-Z]+\{/,"}","")},"\\ca":/^\\ca(?:\s+|(?![a-zA-Z]))/,"\\x":/^(?:\\[a-zA-Z]+\s*|\\[_&{}%])/,orbital:/^(?:[0-9]{1,2}[spdfgh]|[0-9]{0,2}sp)(?=$|[^a-zA-Z])/,others:/^[\/~|]/,"\\frac{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\frac{","","","}","{","","","}")},"\\overset{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\overset{","","","}","{","","","}")},"\\underset{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\underset{","","","}","{","","","}")},"\\underbrace{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\underbrace{","","","}_","{","","","}")},"\\color{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\color{","","","}")},"\\color{(...)}{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\color{","","","}","{","","","}")||i.patterns.findObserveGroups(t,"\\color","\\","",/^(?=\{)/,"{","","","}")},"\\ce{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\ce{","","","}")},"\\pu{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\pu{","","","}")},oxidation$:/^(?:[+-][IVX]+|(?:\\pm|\$\\pm\$|\+-|\+\/-)\s*0)$/,"d-oxidation$":/^(?:[+-]?[IVX]+|(?:\\pm|\$\\pm\$|\+-|\+\/-)\s*0)$/,"1/2$":/^[+\-]?(?:[0-9]+|\$[a-z]\$|[a-z])\/[0-9]+(?:\$[a-z]\$|[a-z])?$/,amount:function(t){var e;if(e=t.match(/^(?:(?:(?:\([+\-]?[0-9]+\/[0-9]+\)|[+\-]?(?:[0-9]+|\$[a-z]\$|[a-z])\/[0-9]+|[+\-]?[0-9]+[.,][0-9]+|[+\-]?\.[0-9]+|[+\-]?[0-9]+)(?:[a-z](?=\s*[A-Z]))?)|[+\-]?[a-z](?=\s*[A-Z])|\+(?!\s))/))return{match_:e[0],remainder:t.substr(e[0].length)};var n=i.patterns.findObserveGroups(t,"","$","$","");return n&&(e=n.match_.match(/^\$(?:\(?[+\-]?(?:[0-9]*[a-z]?[+\-])?[0-9]*[a-z](?:[+\-][0-9]*[a-z]?)?\)?|\+|-)\$$/))?{match_:e[0],remainder:t.substr(e[0].length)}:null},amount2:function(t){return this.amount(t)},"(KV letters),":/^(?:[A-Z][a-z]{0,2}|i)(?=,)/,formula$:function(t){if(t.match(/^\([a-z]+\)$/))return null;var e=t.match(/^(?:[a-z]|(?:[0-9\ \+\-\,\.\(\)]+[a-z])+[0-9\ \+\-\,\.\(\)]*|(?:[a-z][0-9\ \+\-\,\.\(\)]+)+[a-z]?)$/);return e?{match_:e[0],remainder:t.substr(e[0].length)}:null},uprightEntities:/^(?:pH|pOH|pC|pK|iPr|iBu)(?=$|[^a-zA-Z])/,"/":/^\s*(\/)\s*/,"//":/^\s*(\/\/)\s*/,"*":/^\s*[*.]\s*/},findObserveGroups:function(t,e,n,r,i,o,a,s,l,T){var Q=function(t,e){if("string"==typeof e)return 0!==t.indexOf(e)?null:e;var n=t.match(e);return n?n[0]:null},c=Q(t,e);if(null===c)return null;if(t=t.substr(c.length),null===(c=Q(t,n)))return null;var u=function(t,e,n){for(var r=0;e<t.length;){var i=t.charAt(e),o=Q(t.substr(e),n);if(null!==o&&0===r)return{endMatchBegin:e,endMatchEnd:e+o.length};if("{"===i)r++;else if("}"===i){if(0===r)throw["ExtraCloseMissingOpen","Extra close brace or missing open brace"];r--}e++}return null}(t,c.length,r||i);if(null===u)return null;var d=t.substring(0,r?u.endMatchEnd:u.endMatchBegin);if(o||a){var h=this.findObserveGroups(t.substr(u.endMatchEnd),o,a,s,l);if(null===h)return null;var p=[d,h.match_];return{match_:T?p.join(""):p,remainder:h.remainder}}return{match_:d,remainder:t.substr(u.endMatchEnd)}},match_:function(t,e){var n=i.patterns.patterns[t];if(void 0===n)throw["MhchemBugP","mhchem bug P. Please report. ("+t+")"];if("function"==typeof n)return i.patterns.patterns[t](e);var r=e.match(n);return r?r.length>2?{match_:r.slice(1),remainder:e.substr(r[0].length)}:{match_:r[1]||r[0],remainder:e.substr(r[0].length)}:null}},actions:{"a=":function(t,e){t.a=(t.a||"")+e},"b=":function(t,e){t.b=(t.b||"")+e},"p=":function(t,e){t.p=(t.p||"")+e},"o=":function(t,e){t.o=(t.o||"")+e},"o=+p1":function(t,e,n){t.o=(t.o||"")+n},"q=":function(t,e){t.q=(t.q||"")+e},"d=":function(t,e){t.d=(t.d||"")+e},"rm=":function(t,e){t.rm=(t.rm||"")+e},"text=":function(t,e){t.text_=(t.text_||"")+e},insert:function(t,e,n){return{type_:n}},"insert+p1":function(t,e,n){return{type_:n,p1:e}},"insert+p1+p2":function(t,e,n){return{type_:n,p1:e[0],p2:e[1]}},copy:function(t,e){return e},write:function(t,e,n){return n},rm:function(t,e){return{type_:"rm",p1:e}},text:function(t,e){return i.go(e,"text")},"tex-math":function(t,e){return i.go(e,"tex-math")},"tex-math tight":function(t,e){return i.go(e,"tex-math tight")},bond:function(t,e,n){return{type_:"bond",kind_:n||e}},"color0-output":function(t,e){return{type_:"color0",color:e}},ce:function(t,e){return i.go(e,"ce")},pu:function(t,e){return i.go(e,"pu")},"1/2":function(t,e){var n=[];e.match(/^[+\-]/)&&(n.push(e.substr(0,1)),e=e.substr(1));var r=e.match(/^([0-9]+|\$[a-z]\$|[a-z])\/([0-9]+)(\$[a-z]\$|[a-z])?$/);return r[1]=r[1].replace(/\$/g,""),n.push({type_:"frac",p1:r[1],p2:r[2]}),r[3]&&(r[3]=r[3].replace(/\$/g,""),n.push({type_:"tex-math",p1:r[3]})),n},"9,9":function(t,e){return i.go(e,"9,9")}},stateMachines:{tex:{transitions:r({empty:{0:{action_:"copy"}},"\\ce{(...)}":{0:{action_:[{type_:"write",option:"{"},"ce",{type_:"write",option:"}"}]}},"\\pu{(...)}":{0:{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},else:{0:{action_:"copy"}}}),actions:{}},ce:{transitions:r({empty:{"*":{action_:"output"}},else:{"0|1|2":{action_:"beginsWithBond=false",revisit:!0,toContinue:!0}},oxidation$:{0:{action_:"oxidation-output"}},CMT:{r:{action_:"rdt=",nextState:"rt"},rd:{action_:"rqt=",nextState:"rdt"}},arrowUpDown:{"0|1|2|as":{action_:["sb=false","output","operator"],nextState:"1"}},uprightEntities:{"0|1|2":{action_:["o=","output"],nextState:"1"}},orbital:{"0|1|2|3":{action_:"o=",nextState:"o"}},"->":{"0|1|2|3":{action_:"r=",nextState:"r"},"a|as":{action_:["output","r="],nextState:"r"},"*":{action_:["output","r="],nextState:"r"}},"+":{o:{action_:"d= kv",nextState:"d"},"d|D":{action_:"d=",nextState:"d"},q:{action_:"d=",nextState:"qd"},"qd|qD":{action_:"d=",nextState:"qd"},dq:{action_:["output","d="],nextState:"d"},3:{action_:["sb=false","output","operator"],nextState:"0"}},amount:{"0|2":{action_:"a=",nextState:"a"}},"pm-operator":{"0|1|2|a|as":{action_:["sb=false","output",{type_:"operator",option:"\\pm"}],nextState:"0"}},operator:{"0|1|2|a|as":{action_:["sb=false","output","operator"],nextState:"0"}},"-$":{"o|q":{action_:["charge or bond","output"],nextState:"qd"},d:{action_:"d=",nextState:"d"},D:{action_:["output",{type_:"bond",option:"-"}],nextState:"3"},q:{action_:"d=",nextState:"qd"},qd:{action_:"d=",nextState:"qd"},"qD|dq":{action_:["output",{type_:"bond",option:"-"}],nextState:"3"}},"-9":{"3|o":{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"3"}},"- orbital overlap":{o:{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"2"},d:{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"2"}},"-":{"0|1|2":{action_:[{type_:"output",option:1},"beginsWithBond=true",{type_:"bond",option:"-"}],nextState:"3"},3:{action_:{type_:"bond",option:"-"}},a:{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"2"},as:{action_:[{type_:"output",option:2},{type_:"bond",option:"-"}],nextState:"3"},b:{action_:"b="},o:{action_:{type_:"- after o/d",option:!1},nextState:"2"},q:{action_:{type_:"- after o/d",option:!1},nextState:"2"},"d|qd|dq":{action_:{type_:"- after o/d",option:!0},nextState:"2"},"D|qD|p":{action_:["output",{type_:"bond",option:"-"}],nextState:"3"}},amount2:{"1|3":{action_:"a=",nextState:"a"}},letters:{"0|1|2|3|a|as|b|p|bp|o":{action_:"o=",nextState:"o"},"q|dq":{action_:["output","o="],nextState:"o"},"d|D|qd|qD":{action_:"o after d",nextState:"o"}},digits:{o:{action_:"q=",nextState:"q"},"d|D":{action_:"q=",nextState:"dq"},q:{action_:["output","o="],nextState:"o"},a:{action_:"o=",nextState:"o"}},"space A":{"b|p|bp":{action_:[]}},space:{a:{action_:[],nextState:"as"},0:{action_:"sb=false"},"1|2":{action_:"sb=true"},"r|rt|rd|rdt|rdq":{action_:"output",nextState:"0"},"*":{action_:["output","sb=true"],nextState:"1"}},"1st-level escape":{"1|2":{action_:["output",{type_:"insert+p1",option:"1st-level escape"}]},"*":{action_:["output",{type_:"insert+p1",option:"1st-level escape"}],nextState:"0"}},"[(...)]":{"r|rt":{action_:"rd=",nextState:"rd"},"rd|rdt":{action_:"rq=",nextState:"rdq"}},"...":{"o|d|D|dq|qd|qD":{action_:["output",{type_:"bond",option:"..."}],nextState:"3"},"*":{action_:[{type_:"output",option:1},{type_:"insert",option:"ellipsis"}],nextState:"1"}},". __* ":{"*":{action_:["output",{type_:"insert",option:"addition compound"}],nextState:"1"}},"state of aggregation $":{"*":{action_:["output","state of aggregation"],nextState:"1"}},"{[(":{"a|as|o":{action_:["o=","output","parenthesisLevel++"],nextState:"2"},"0|1|2|3":{action_:["o=","output","parenthesisLevel++"],nextState:"2"},"*":{action_:["output","o=","output","parenthesisLevel++"],nextState:"2"}},")]}":{"0|1|2|3|b|p|bp|o":{action_:["o=","parenthesisLevel--"],nextState:"o"},"a|as|d|D|q|qd|qD|dq":{action_:["output","o=","parenthesisLevel--"],nextState:"o"}},", ":{"*":{action_:["output","comma"],nextState:"0"}},"^_":{"*":{action_:[]}},"^{(...)}|^($...$)":{"0|1|2|as":{action_:"b=",nextState:"b"},p:{action_:"b=",nextState:"bp"},"3|o":{action_:"d= kv",nextState:"D"},q:{action_:"d=",nextState:"qD"},"d|D|qd|qD|dq":{action_:["output","d="],nextState:"D"}},"^a|^\\x{}{}|^\\x{}|^\\x|'":{"0|1|2|as":{action_:"b=",nextState:"b"},p:{action_:"b=",nextState:"bp"},"3|o":{action_:"d= kv",nextState:"d"},q:{action_:"d=",nextState:"qd"},"d|qd|D|qD":{action_:"d="},dq:{action_:["output","d="],nextState:"d"}},"_{(state of aggregation)}$":{"d|D|q|qd|qD|dq":{action_:["output","q="],nextState:"q"}},"_{(...)}|_($...$)|_9|_\\x{}{}|_\\x{}|_\\x":{"0|1|2|as":{action_:"p=",nextState:"p"},b:{action_:"p=",nextState:"bp"},"3|o":{action_:"q=",nextState:"q"},"d|D":{action_:"q=",nextState:"dq"},"q|qd|qD|dq":{action_:["output","q="],nextState:"q"}},"=<>":{"0|1|2|3|a|as|o|q|d|D|qd|qD|dq":{action_:[{type_:"output",option:2},"bond"],nextState:"3"}},"#":{"0|1|2|3|a|as|o":{action_:[{type_:"output",option:2},{type_:"bond",option:"#"}],nextState:"3"}},"{}^":{"*":{action_:[{type_:"output",option:1},{type_:"insert",option:"tinySkip"}],nextState:"1"}},"{}":{"*":{action_:{type_:"output",option:1},nextState:"1"}},"{...}":{"0|1|2|3|a|as|b|p|bp":{action_:"o=",nextState:"o"},"o|d|D|q|qd|qD|dq":{action_:["output","o="],nextState:"o"}},"$...$":{a:{action_:"a="},"0|1|2|3|as|b|p|bp|o":{action_:"o=",nextState:"o"},"as|o":{action_:"o="},"q|d|D|qd|qD|dq":{action_:["output","o="],nextState:"o"}},"\\bond{(...)}":{"*":{action_:[{type_:"output",option:2},"bond"],nextState:"3"}},"\\frac{(...)}":{"*":{action_:[{type_:"output",option:1},"frac-output"],nextState:"3"}},"\\overset{(...)}":{"*":{action_:[{type_:"output",option:2},"overset-output"],nextState:"3"}},"\\underset{(...)}":{"*":{action_:[{type_:"output",option:2},"underset-output"],nextState:"3"}},"\\underbrace{(...)}":{"*":{action_:[{type_:"output",option:2},"underbrace-output"],nextState:"3"}},"\\color{(...)}{(...)}":{"*":{action_:[{type_:"output",option:2},"color-output"],nextState:"3"}},"\\color{(...)}":{"*":{action_:[{type_:"output",option:2},"color0-output"]}},"\\ce{(...)}":{"*":{action_:[{type_:"output",option:2},"ce"],nextState:"3"}},"\\,":{"*":{action_:[{type_:"output",option:1},"copy"],nextState:"1"}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}],nextState:"3"}},"\\x{}{}|\\x{}|\\x":{"0|1|2|3|a|as|b|p|bp|o|c0":{action_:["o=","output"],nextState:"3"},"*":{action_:["output","o=","output"],nextState:"3"}},others:{"*":{action_:[{type_:"output",option:1},"copy"],nextState:"3"}},else2:{a:{action_:"a to o",nextState:"o",revisit:!0},as:{action_:["output","sb=true"],nextState:"1",revisit:!0},"r|rt|rd|rdt|rdq":{action_:["output"],nextState:"0",revisit:!0},"*":{action_:["output","copy"],nextState:"3"}}}),actions:{"o after d":function(t,e){var n;if((t.d||"").match(/^[1-9][0-9]*$/)){var r=t.d;t.d=void 0,(n=this.output(t)).push({type_:"tinySkip"}),t.b=r}else n=this.output(t);return i.actions["o="](t,e),n},"d= kv":function(t,e){t.d=e,t.dType="kv"},"charge or bond":function(t,e){if(t.beginsWithBond){var n=[];return i.concatArray(n,this.output(t)),i.concatArray(n,i.actions.bond(t,e,"-")),n}t.d=e},"- after o/d":function(t,e,n){var r=i.patterns.match_("orbital",t.o||""),o=i.patterns.match_("one lowercase greek letter $",t.o||""),a=i.patterns.match_("one lowercase latin letter $",t.o||""),s=i.patterns.match_("$one lowercase latin letter$ $",t.o||""),l="-"===e&&(r&&""===r.remainder||o||a||s);!l||t.a||t.b||t.p||t.d||t.q||r||!a||(t.o="$"+t.o+"$");var T=[];return l?(i.concatArray(T,this.output(t)),T.push({type_:"hyphen"})):(r=i.patterns.match_("digits",t.d||""),n&&r&&""===r.remainder?(i.concatArray(T,i.actions["d="](t,e)),i.concatArray(T,this.output(t))):(i.concatArray(T,this.output(t)),i.concatArray(T,i.actions.bond(t,e,"-")))),T},"a to o":function(t){t.o=t.a,t.a=void 0},"sb=true":function(t){t.sb=!0},"sb=false":function(t){t.sb=!1},"beginsWithBond=true":function(t){t.beginsWithBond=!0},"beginsWithBond=false":function(t){t.beginsWithBond=!1},"parenthesisLevel++":function(t){t.parenthesisLevel++},"parenthesisLevel--":function(t){t.parenthesisLevel--},"state of aggregation":function(t,e){return{type_:"state of aggregation",p1:i.go(e,"o")}},comma:function(t,e){var n=e.replace(/\s*$/,"");return n!==e&&0===t.parenthesisLevel?{type_:"comma enumeration L",p1:n}:{type_:"comma enumeration M",p1:n}},output:function(t,e,n){var r;if(t.r){var o=void 0;o="M"===t.rdt?i.go(t.rd,"tex-math"):"T"===t.rdt?[{type_:"text",p1:t.rd||""}]:i.go(t.rd,"ce");var a=void 0;a="M"===t.rqt?i.go(t.rq,"tex-math"):"T"===t.rqt?[{type_:"text",p1:t.rq||""}]:i.go(t.rq,"ce"),r={type_:"arrow",r:t.r,rd:o,rq:a}}else r=[],(t.a||t.b||t.p||t.o||t.q||t.d||n)&&(t.sb&&r.push({type_:"entitySkip"}),t.o||t.q||t.d||t.b||t.p||2===n?t.o||t.q||t.d||!t.b&&!t.p?t.o&&"kv"===t.dType&&i.patterns.match_("d-oxidation$",t.d||"")?t.dType="oxidation":t.o&&"kv"===t.dType&&!t.q&&(t.dType=void 0):(t.o=t.a,t.d=t.b,t.q=t.p,t.a=t.b=t.p=void 0):(t.o=t.a,t.a=void 0),r.push({type_:"chemfive",a:i.go(t.a,"a"),b:i.go(t.b,"bd"),p:i.go(t.p,"pq"),o:i.go(t.o,"o"),q:i.go(t.q,"pq"),d:i.go(t.d,"oxidation"===t.dType?"oxidation":"bd"),dType:t.dType}));for(var s in t)"parenthesisLevel"!==s&&"beginsWithBond"!==s&&delete t[s];return r},"oxidation-output":function(t,e){var n=["{"];return i.concatArray(n,i.go(e,"oxidation")),n.push("}"),n},"frac-output":function(t,e){return{type_:"frac-ce",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"overset-output":function(t,e){return{type_:"overset",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"underset-output":function(t,e){return{type_:"underset",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"underbrace-output":function(t,e){return{type_:"underbrace",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"color-output":function(t,e){return{type_:"color",color1:e[0],color2:i.go(e[1],"ce")}},"r=":function(t,e){t.r=e},"rdt=":function(t,e){t.rdt=e},"rd=":function(t,e){t.rd=e},"rqt=":function(t,e){t.rqt=e},"rq=":function(t,e){t.rq=e},operator:function(t,e,n){return{type_:"operator",kind_:n||e}}}},a:{transitions:r({empty:{"*":{action_:[]}},"1/2$":{0:{action_:"1/2"}},else:{0:{action_:[],nextState:"1",revisit:!0}},"${(...)}$__$(...)$":{"*":{action_:"tex-math tight",nextState:"1"}},",":{"*":{action_:{type_:"insert",option:"commaDecimal"}}},else2:{"*":{action_:"copy"}}}),actions:{}},o:{transitions:r({empty:{"*":{action_:[]}},"1/2$":{0:{action_:"1/2"}},else:{0:{action_:[],nextState:"1",revisit:!0}},letters:{"*":{action_:"rm"}},"\\ca":{"*":{action_:{type_:"insert",option:"circa"}}},"\\pu{(...)}":{"*":{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\x{}{}|\\x{}|\\x":{"*":{action_:"copy"}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"{(...)}":{"*":{action_:[{type_:"write",option:"{"},"text",{type_:"write",option:"}"}]}},else2:{"*":{action_:"copy"}}}),actions:{}},text:{transitions:r({empty:{"*":{action_:"output"}},"{...}":{"*":{action_:"text="}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"\\greek":{"*":{action_:["output","rm"]}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:["output","copy"]}},else:{"*":{action_:"text="}}}),actions:{output:function(t){if(t.text_){var e={type_:"text",p1:t.text_};for(var n in t)delete t[n];return e}}}},pq:{transitions:r({empty:{"*":{action_:[]}},"state of aggregation $":{"*":{action_:"state of aggregation"}},i$:{0:{action_:[],nextState:"!f",revisit:!0}},"(KV letters),":{0:{action_:"rm",nextState:"0"}},formula$:{0:{action_:[],nextState:"f",revisit:!0}},"1/2$":{0:{action_:"1/2"}},else:{0:{action_:[],nextState:"!f",revisit:!0}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"{(...)}":{"*":{action_:"text"}},"a-z":{f:{action_:"tex-math"}},letters:{"*":{action_:"rm"}},"-9.,9":{"*":{action_:"9,9"}},",":{"*":{action_:{type_:"insert+p1",option:"comma enumeration S"}}},"\\color{(...)}{(...)}":{"*":{action_:"color-output"}},"\\color{(...)}":{"*":{action_:"color0-output"}},"\\ce{(...)}":{"*":{action_:"ce"}},"\\pu{(...)}":{"*":{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"copy"}},else2:{"*":{action_:"copy"}}}),actions:{"state of aggregation":function(t,e){return{type_:"state of aggregation subscript",p1:i.go(e,"o")}},"color-output":function(t,e){return{type_:"color",color1:e[0],color2:i.go(e[1],"pq")}}}},bd:{transitions:r({empty:{"*":{action_:[]}},x$:{0:{action_:[],nextState:"!f",revisit:!0}},formula$:{0:{action_:[],nextState:"f",revisit:!0}},else:{0:{action_:[],nextState:"!f",revisit:!0}},"-9.,9 no missing 0":{"*":{action_:"9,9"}},".":{"*":{action_:{type_:"insert",option:"electron dot"}}},"a-z":{f:{action_:"tex-math"}},x:{"*":{action_:{type_:"insert",option:"KV x"}}},letters:{"*":{action_:"rm"}},"'":{"*":{action_:{type_:"insert",option:"prime"}}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"{(...)}":{"*":{action_:"text"}},"\\color{(...)}{(...)}":{"*":{action_:"color-output"}},"\\color{(...)}":{"*":{action_:"color0-output"}},"\\ce{(...)}":{"*":{action_:"ce"}},"\\pu{(...)}":{"*":{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"copy"}},else2:{"*":{action_:"copy"}}}),actions:{"color-output":function(t,e){return{type_:"color",color1:e[0],color2:i.go(e[1],"bd")}}}},oxidation:{transitions:r({empty:{"*":{action_:"roman-numeral"}},"pm-operator":{"*":{action_:{type_:"o=+p1",option:"\\pm"}}},else:{"*":{action_:"o="}}}),actions:{"roman-numeral":function(t){return{type_:"roman numeral",p1:t.o||""}}}},"tex-math":{transitions:r({empty:{"*":{action_:"output"}},"\\ce{(...)}":{"*":{action_:["output","ce"]}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"{...}|\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"o="}},else:{"*":{action_:"o="}}}),actions:{output:function(t){if(t.o){var e={type_:"tex-math",p1:t.o};for(var n in t)delete t[n];return e}}}},"tex-math tight":{transitions:r({empty:{"*":{action_:"output"}},"\\ce{(...)}":{"*":{action_:["output","ce"]}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"{...}|\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"o="}},"-|+":{"*":{action_:"tight operator"}},else:{"*":{action_:"o="}}}),actions:{"tight operator":function(t,e){t.o=(t.o||"")+"{"+e+"}"},output:function(t){if(t.o){var e={type_:"tex-math",p1:t.o};for(var n in t)delete t[n];return e}}}},"9,9":{transitions:r({empty:{"*":{action_:[]}},",":{"*":{action_:"comma"}},else:{"*":{action_:"copy"}}}),actions:{comma:function(){return{type_:"commaDecimal"}}}},pu:{transitions:r({empty:{"*":{action_:"output"}},space$:{"*":{action_:["output","space"]}},"{[(|)]}":{"0|a":{action_:"copy"}},"(-)(9)^(-9)":{0:{action_:"number^",nextState:"a"}},"(-)(9.,9)(e)(99)":{0:{action_:"enumber",nextState:"a"}},space:{"0|a":{action_:[]}},"pm-operator":{"0|a":{action_:{type_:"operator",option:"\\pm"},nextState:"0"}},operator:{"0|a":{action_:"copy",nextState:"0"}},"//":{d:{action_:"o=",nextState:"/"}},"/":{d:{action_:"o=",nextState:"/"}},"{...}|else":{"0|d":{action_:"d=",nextState:"d"},a:{action_:["space","d="],nextState:"d"},"/|q":{action_:"q=",nextState:"q"}}}),actions:{enumber:function(t,e){var n=[];return"+-"===e[0]||"+/-"===e[0]?n.push("\\pm "):e[0]&&n.push(e[0]),e[1]&&(i.concatArray(n,i.go(e[1],"pu-9,9")),e[2]&&(e[2].match(/[,.]/)?i.concatArray(n,i.go(e[2],"pu-9,9")):n.push(e[2])),(e[3]||e[4])&&("e"===e[3]||"*"===e[4]?n.push({type_:"cdot"}):n.push({type_:"times"}))),e[5]&&n.push("10^{"+e[5]+"}"),n},"number^":function(t,e){var n=[];return"+-"===e[0]||"+/-"===e[0]?n.push("\\pm "):e[0]&&n.push(e[0]),i.concatArray(n,i.go(e[1],"pu-9,9")),n.push("^{"+e[2]+"}"),n},operator:function(t,e,n){return{type_:"operator",kind_:n||e}},space:function(){return{type_:"pu-space-1"}},output:function(t){var e,n=i.patterns.match_("{(...)}",t.d||"");n&&""===n.remainder&&(t.d=n.match_);var r=i.patterns.match_("{(...)}",t.q||"");if(r&&""===r.remainder&&(t.q=r.match_),t.d&&(t.d=t.d.replace(/\u00B0C|\^oC|\^{o}C/g,"{}^{\\circ}C"),t.d=t.d.replace(/\u00B0F|\^oF|\^{o}F/g,"{}^{\\circ}F")),t.q){t.q=t.q.replace(/\u00B0C|\^oC|\^{o}C/g,"{}^{\\circ}C"),t.q=t.q.replace(/\u00B0F|\^oF|\^{o}F/g,"{}^{\\circ}F");var o={d:i.go(t.d,"pu"),q:i.go(t.q,"pu")};"//"===t.o?e={type_:"pu-frac",p1:o.d,p2:o.q}:(e=o.d,o.d.length>1||o.q.length>1?e.push({type_:" / "}):e.push({type_:"/"}),i.concatArray(e,o.q))}else e=i.go(t.d,"pu-2");for(var a in t)delete t[a];return e}}},"pu-2":{transitions:r({empty:{"*":{action_:"output"}},"*":{"*":{action_:["output","cdot"],nextState:"0"}},"\\x":{"*":{action_:"rm="}},space:{"*":{action_:["output","space"],nextState:"0"}},"^{(...)}|^(-1)":{1:{action_:"^(-1)"}},"-9.,9":{0:{action_:"rm=",nextState:"0"},1:{action_:"^(-1)",nextState:"0"}},"{...}|else":{"*":{action_:"rm=",nextState:"1"}}}),actions:{cdot:function(){return{type_:"tight cdot"}},"^(-1)":function(t,e){t.rm+="^{"+e+"}"},space:function(){return{type_:"pu-space-2"}},output:function(t){var e=[];if(t.rm){var n=i.patterns.match_("{(...)}",t.rm||"");e=n&&""===n.remainder?i.go(n.match_,"pu"):{type_:"rm",p1:t.rm}}for(var r in t)delete t[r];return e}}},"pu-9,9":{transitions:r({empty:{0:{action_:"output-0"},o:{action_:"output-o"}},",":{0:{action_:["output-0","comma"],nextState:"o"}},".":{0:{action_:["output-0","copy"],nextState:"o"}},else:{"*":{action_:"text="}}}),actions:{comma:function(){return{type_:"commaDecimal"}},"output-0":function(t){var e=[];if(t.text_=t.text_||"",t.text_.length>4){var n=t.text_.length%3;0===n&&(n=3);for(var r=t.text_.length-3;r>0;r-=3)e.push(t.text_.substr(r,3)),e.push({type_:"1000 separator"});e.push(t.text_.substr(0,n)),e.reverse()}else e.push(t.text_);for(var i in t)delete t[i];return e},"output-o":function(t){var e=[];if(t.text_=t.text_||"",t.text_.length>4){var n=t.text_.length-3,r=void 0;for(r=0;r<n;r+=3)e.push(t.text_.substr(r,3)),e.push({type_:"1000 separator"});e.push(t.text_.substr(r))}else e.push(t.text_);for(var i in t)delete t[i];return e}}}}},o={go:function(t,e){if(!t)return"";for(var n="",r=!1,i=0;i<t.length;i++){var a=t[i];"string"==typeof a?n+=a:(n+=o._go2(a),"1st-level escape"===a.type_&&(r=!0))}return e&&!r&&n&&(n="{"+n+"}"),n},_goInner:function(t){return o.go(t,!1)},_go2:function(t){var e;switch(t.type_){case"chemfive":e="";var n={a:o._goInner(t.a),b:o._goInner(t.b),p:o._goInner(t.p),o:o._goInner(t.o),q:o._goInner(t.q),d:o._goInner(t.d)};n.a&&(n.a.match(/^[+\-]/)&&(n.a="{"+n.a+"}"),e+=n.a+"\\,"),(n.b||n.p)&&(e+="{\\vphantom{A}}",e+="^{\\hphantom{"+(n.b||"")+"}}_{\\hphantom{"+(n.p||"")+"}}",e+="\\mkern-1.5mu",e+="{\\vphantom{A}}",e+="^{\\smash[t]{\\vphantom{2}}\\llap{"+(n.b||"")+"}}",e+="_{\\vphantom{2}\\llap{\\smash[t]{"+(n.p||"")+"}}}"),n.o&&(n.o.match(/^[+\-]/)&&(n.o="{"+n.o+"}"),e+=n.o),"kv"===t.dType?((n.d||n.q)&&(e+="{\\vphantom{A}}"),n.d&&(e+="^{"+n.d+"}"),n.q&&(e+="_{\\smash[t]{"+n.q+"}}")):"oxidation"===t.dType?(n.d&&(e+="{\\vphantom{A}}",e+="^{"+n.d+"}"),n.q&&(e+="{\\vphantom{A}}",e+="_{\\smash[t]{"+n.q+"}}")):(n.q&&(e+="{\\vphantom{A}}",e+="_{\\smash[t]{"+n.q+"}}"),n.d&&(e+="{\\vphantom{A}}",e+="^{"+n.d+"}"));break;case"rm":case"roman numeral":e="\\mathrm{"+t.p1+"}";break;case"text":t.p1.match(/[\^_]/)?(t.p1=t.p1.replace(" ","~").replace("-","\\text{-}"),e="\\mathrm{"+t.p1+"}"):e="\\text{"+t.p1+"}";break;case"state of aggregation":e="\\mskip2mu "+o._goInner(t.p1);break;case"state of aggregation subscript":e="\\mskip1mu "+o._goInner(t.p1);break;case"bond":if(!(e=o._getBond(t.kind_)))throw["MhchemErrorBond","mhchem Error. Unknown bond type ("+t.kind_+")"];break;case"frac":var r="\\frac{"+t.p1+"}{"+t.p2+"}";e="\\mathchoice{\\textstyle"+r+"}{"+r+"}{"+r+"}{"+r+"}";break;case"pu-frac":var i="\\frac{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";e="\\mathchoice{\\textstyle"+i+"}{"+i+"}{"+i+"}{"+i+"}";break;case"tex-math":case"1st-level escape":e=t.p1+" ";break;case"frac-ce":e="\\frac{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";break;case"overset":e="\\overset{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";break;case"underset":e="\\underset{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";break;case"underbrace":e="\\underbrace{"+o._goInner(t.p1)+"}_{"+o._goInner(t.p2)+"}";break;case"color":e="{\\color{"+t.color1+"}{"+o._goInner(t.color2)+"}}";break;case"color0":e="\\color{"+t.color+"}";break;case"arrow":var a={rd:o._goInner(t.rd),rq:o._goInner(t.rq)},s=o._getArrow(t.r);a.rd||a.rq?"<=>"===t.r||"<=>>"===t.r||"<<=>"===t.r||"<--\x3e"===t.r?(s="\\long"+s,a.rd&&(s="\\overset{"+a.rd+"}{"+s+"}"),a.rq&&(s="<--\x3e"===t.r?"\\underset{\\lower2mu{"+a.rq+"}}{"+s+"}":"\\underset{\\lower6mu{"+a.rq+"}}{"+s+"}"),s=" {}\\mathrel{"+s+"}{} "):(a.rq&&(s+="[{"+a.rq+"}]"),s=" {}\\mathrel{\\x"+(s+="{"+a.rd+"}")+"}{} "):s=" {}\\mathrel{\\long"+s+"}{} ",e=s;break;case"operator":e=o._getOperator(t.kind_);break;case"space":e=" ";break;case"tinySkip":e="\\mkern2mu";break;case"entitySkip":case"pu-space-1":e="~";break;case"pu-space-2":e="\\mkern3mu ";break;case"1000 separator":e="\\mkern2mu ";break;case"commaDecimal":e="{,}";break;case"comma enumeration L":e="{"+t.p1+"}\\mkern6mu ";break;case"comma enumeration M":e="{"+t.p1+"}\\mkern3mu ";break;case"comma enumeration S":e="{"+t.p1+"}\\mkern1mu ";break;case"hyphen":e="\\text{-}";break;case"addition compound":e="\\,{\\cdot}\\,";break;case"electron dot":e="\\mkern1mu \\bullet\\mkern1mu ";break;case"KV x":e="{\\times}";break;case"prime":e="\\prime ";break;case"cdot":e="\\cdot ";break;case"tight cdot":e="\\mkern1mu{\\cdot}\\mkern1mu ";break;case"times":e="\\times ";break;case"circa":e="{\\sim}";break;case"^":e="uparrow";break;case"v":e="downarrow";break;case"ellipsis":e="\\ldots ";break;case"/":e="/";break;case" / ":e="\\,/\\,";break;default:throw["MhchemBugT","mhchem bug T. Please report."]}return e},_getArrow:function(t){switch(t){case"->":case"→":case"⟶":return"rightarrow";case"<-":return"leftarrow";case"<->":return"leftrightarrow";case"<--\x3e":return"leftrightarrows";case"<=>":case"⇌":return"rightleftharpoons";case"<=>>":return"Rightleftharpoons";case"<<=>":return"Leftrightharpoons";default:throw["MhchemBugT","mhchem bug T. Please report."]}},_getBond:function(t){switch(t){case"-":case"1":return"{-}";case"=":case"2":return"{=}";case"#":case"3":return"{\\equiv}";case"~":return"{\\tripledash}";case"~-":return"{\\rlap{\\lower.1em{-}}\\raise.1em{\\tripledash}}";case"~=":case"~--":return"{\\rlap{\\lower.2em{-}}\\rlap{\\raise.2em{\\tripledash}}-}";case"-~-":return"{\\rlap{\\lower.2em{-}}\\rlap{\\raise.2em{-}}\\tripledash}";case"...":return"{{\\cdot}{\\cdot}{\\cdot}}";case"....":return"{{\\cdot}{\\cdot}{\\cdot}{\\cdot}}";case"->":return"{\\rightarrow}";case"<-":return"{\\leftarrow}";case"<":return"{<}";case">":return"{>}";default:throw["MhchemBugT","mhchem bug T. Please report."]}},_getOperator:function(t){switch(t){case"+":return" {}+{} ";case"-":return" {}-{} ";case"=":return" {}={} ";case"<":return" {}<{} ";case">":return" {}>{} ";case"<<":return" {}\\ll{} ";case">>":return" {}\\gg{} ";case"\\pm":return" {}\\pm{} ";case"\\approx":case"$\\approx$":return" {}\\approx{} ";case"v":case"(v)":return" \\downarrow{} ";case"^":case"(^)":return" \\uparrow{} ";default:throw["MhchemBugT","mhchem bug T. Please report."]}}}},5606:t=>{var e,n,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===i||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(n){try{return e.call(null,t,0)}catch(n){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:i}catch(t){e=i}try{n="function"==typeof clearTimeout?clearTimeout:o}catch(t){n=o}}();var s,l=[],T=!1,Q=-1;function c(){T&&s&&(T=!1,s.length?l=s.concat(l):Q=-1,l.length&&u())}function u(){if(!T){var t=a(c);T=!0;for(var e=l.length;e;){for(s=l,l=[];++Q<e;)s&&s[Q].run();Q=-1,e=l.length}s=null,T=!1,function(t){if(n===clearTimeout)return clearTimeout(t);if((n===o||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(t);try{return n(t)}catch(e){try{return n.call(null,t)}catch(e){return n.call(this,t)}}}(t)}}function d(t,e){this.fun=t,this.array=e}function h(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];l.push(new d(t,e)),1!==l.length||T||a(u)},d.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=h,r.addListener=h,r.once=h,r.off=h,r.removeListener=h,r.removeAllListeners=h,r.emit=h,r.prependListener=h,r.prependOnceListener=h,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},9453:function(module,__unused_webpack_exports,__webpack_require__){var __dirname="/",process=__webpack_require__(5606),t;t=()=>(()=>{"use strict";var __webpack_modules__={4601:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractAudioRenderer=void 0;const r=n(3684);e.AbstractAudioRenderer=class{constructor(){this.separator_=" "}setSeparator(t){this.separator_=t}getSeparator(){return"braille"===r.default.getInstance().modality?"":this.separator_}error(t){return null}merge(t){let e="";const n=t.length-1;for(let r,i=0;r=t[i];i++)if(e+=r.speech,i<n){const t=r.attributes.separator;e+=void 0!==t?t:this.getSeparator()}return e}finalize(t){return t}pauseValue(t){let e;switch(t){case"long":e=750;break;case"medium":e=500;break;case"short":e=250;break;default:e=parseInt(t,10)}return Math.floor(e*r.default.getInstance().getRate()/100)}}},2575:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AcssRenderer=void 0;const r=n(9686),i=n(5390),o=n(3778),a=n(9569);class s extends a.MarkupRenderer{markup(t){this.setScaleFunction(-2,2,0,10,0);const e=o.personalityMarkup(t),n=[],r={open:[]};let i=null,a=!1;for(let t,s=0;t=e[s];s++){if(o.isMarkupElement(t)){o.mergeMarkup(r,t);continue}if(o.isPauseElement(t)){a&&(i=o.mergePause(i,t,Math.max));continue}const e='"'+this.merge(t.span)+'"';a=!0,i&&(n.push(this.pause(i)),i=null);const s=this.prosody_(r);n.push(s?"(text ("+s+") "+e+")":e)}return"(exp "+n.join(" ")+")"}error(t){return'(error "'+i.Move.get(t)+'")'}prosodyElement(t,e){switch(e=this.applyScaleFunction(e),t){case r.personalityProps.RATE:return"(richness . "+e+")";case r.personalityProps.PITCH:return"(average-pitch . "+e+")";case r.personalityProps.VOLUME:return"(stress . "+e+")"}return"(value . "+e+")"}pause(t){return"(pause . "+this.pauseValue(t[r.personalityProps.PAUSE])+")"}prosody_(t){const e=t.open,n=[];for(let r,i=0;r=e[i];i++)n.push(this.prosodyElement(r,t[r]));return n.join(" ")}}e.AcssRenderer=s},3778:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isSpanElement=e.isPauseElement=e.isMarkupElement=e.personalityMarkup=e.sortClose=e.mergeMarkup=e.mergePause=void 0;const r=n(4422),i=n(9686),o=n(4752);function a(t,e,n){return(n||function(n,r){return"number"==typeof n&&"number"==typeof r?n+r:"number"==typeof n?r:"number"==typeof r?n:[t,e].sort()[0]}).call(null,t,e)}e.mergePause=function(t,e,n){return t?{pause:a(t.pause,e.pause,n)}:e},e.mergeMarkup=function(t,e){delete t.open,e.close.forEach((e=>delete t[e])),e.open.forEach((n=>t[n]=e[n]));const n=Object.keys(t);t.open=n},e.sortClose=function(t,e){if(t.length<=1)return t;const n=[];for(let r,i=0;r=e[i],t.length;i++)r.close&&r.close.length&&r.close.forEach((function(e){const r=t.indexOf(e);-1!==r&&(n.unshift(e),t.splice(r,1))}));return n};let s={},l=[];function T(t,e){const n=t[t.length-1];if(n){if(d(e)&&d(n)){if(void 0===n.join)return void(n.span=n.span.concat(e.span));const t=n.span.pop(),r=e.span.shift();return n.span.push(t+n.join+r),n.span=n.span.concat(e.span),void(n.join=e.join)}u(e)&&u(n)?n.pause=a(n.pause,e.pause):t.push(e)}else t.push(e)}function Q(t,e){t.rate&&(e.rate=t.rate),t.pitch&&(e.pitch=t.pitch),t.volume&&(e.volume=t.volume)}function c(t){return"object"==typeof t&&t.open}function u(t){return"object"==typeof t&&1===Object.keys(t).length&&Object.keys(t)[0]===i.personalityProps.PAUSE}function d(t){const e=Object.keys(t);return"object"==typeof t&&(1===e.length&&"span"===e[0]||2===e.length&&("span"===e[0]&&"join"===e[1]||"span"===e[1]&&"join"===e[0]))}function h(t,e,n,r,s,l=!1){if(l){const l=t[t.length-1];let T;if(l&&(T=l[i.personalityProps.JOIN]),l&&!e.speech&&s&&u(l)){const t=i.personalityProps.PAUSE;l[t]=a(l[t],s[t]),s=null}if(l&&e.speech&&0===Object.keys(n).length&&d(l)){if(void 0!==T){const t=l.span.pop();e=new o.Span(t.speech+T+e.speech,t.attributes)}l.span.push(e),e=new o.Span("",{}),l[i.personalityProps.JOIN]=r}}0!==Object.keys(n).length&&t.push(n),e.speech&&t.push({span:[e],join:r}),s&&t.push(s)}function p(t,e){if(!e)return t;const n={};for(const r of i.personalityPropList){const i=t[r],o=e[r];if(!i&&!o||i&&o&&i===o)continue;const a=i||0;c(n)||(n.open=[],n.close=[]),i||n.close.push(r),o||n.open.push(r),o&&i&&(n.close.push(r),n.open.push(r)),e[r]=a,n[r]=a,s[r]?s[r].push(a):s[r]=[a]}if(c(n)){let t=n.close.slice();for(;t.length>0;){let i=l.pop();const o=(0,r.setdifference)(i,t);if(t=(0,r.setdifference)(t,i),i=o,0!==t.length){if(0!==i.length){n.close=n.close.concat(i),n.open=n.open.concat(i);for(let t,r=0;t=i[r];r++)n[t]=e[t]}}else 0!==i.length&&l.push(i)}l.push(n.open)}return n}e.personalityMarkup=function(t){s={},l=[];let e=[];const n={};for(let r,o=0;r=t[o];o++){let t=null;const o=r.descriptionSpan(),a=r.personality,s=a[i.personalityProps.JOIN];delete a[i.personalityProps.JOIN],void 0!==a[i.personalityProps.PAUSE]&&(t={[i.personalityProps.PAUSE]:a[i.personalityProps.PAUSE]},delete a[i.personalityProps.PAUSE]),h(e,o,p(a,n),s,t,!0)}return e=e.concat(function(){const t=[];for(let e=l.length-1;e>=0;e--){const n=l[e];if(n.length){const e={open:[],close:[]};for(let t=0;t<n.length;t++){const r=n[t];e.close.push(r),e[r]=0}t.push(e)}}return t}()),e=function(t){const e={},n=[];for(let r,i=0;r=t[i];i++){if(!c(r)){T(n,r);continue}if(!r.close||1!==r.close.length||r.open.length){Q(r,e),n.push(r);continue}let o=t[i+1];if(!o||d(o)){Q(r,e),n.push(r);continue}const a=u(o)?o:null;a&&(o=t[i+2]),o&&c(o)&&o.open[0]===r.close[0]&&!o.close.length&&o[o.open[0]]===e[o.open[0]]?a?(T(n,a),i+=2):i+=1:(Q(r,e),n.push(r))}return n}(e),e},e.isMarkupElement=c,e.isPauseElement=u,e.isSpanElement=d},2975:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AuditoryDescription=void 0;const r=n(7534),i=n(4752);class o{constructor({context:t,text:e,userValue:n,annotation:r,attributes:i,personality:o,layout:a}){this.context=t||"",this.text=e||"",this.userValue=n||"",this.annotation=r||"",this.attributes=i||{},this.personality=o||{},this.layout=a||""}static create(t,e={}){return t.text=r.Grammar.getInstance().apply(t.text,e),new o(t)}isEmpty(){return 0===this.context.length&&0===this.text.length&&0===this.userValue.length&&0===this.annotation.length}clone(){let t,e;if(this.personality){t={};for(const e in this.personality)t[e]=this.personality[e]}if(this.attributes){e={};for(const t in this.attributes)e[t]=this.attributes[t]}return new o({context:this.context,text:this.text,userValue:this.userValue,annotation:this.annotation,personality:t,attributes:e,layout:this.layout})}toString(){return'AuditoryDescription(context="'+this.context+'" text="'+this.text+'" userValue="'+this.userValue+'" annotation="'+this.annotation+'")'}descriptionString(){return this.context&&this.text?this.context+" "+this.text:this.context||this.text}descriptionSpan(){return new i.Span(this.descriptionString(),this.attributes)}equals(t){return this.context===t.context&&this.text===t.text&&this.userValue===t.userValue&&this.annotation===t.annotation}}e.AuditoryDescription=o},840:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isXml=e.registerRenderer=e.error=e.finalize=e.merge=e.markup=e.getSeparator=e.setSeparator=void 0;const r=n(3684),i=n(9686),o=n(2575),a=n(9413),s=n(3064),l=n(9815),T=n(4752),Q=n(4238),c=n(1990),u=n(6310),d=n(8155),h=new Q.SsmlRenderer,p=new Map([[i.Markup.NONE,new u.StringRenderer],[i.Markup.PUNCTUATION,new s.PunctuationRenderer],[i.Markup.LAYOUT,new a.LayoutRenderer],[i.Markup.ACSS,new o.AcssRenderer],[i.Markup.SABLE,new l.SableRenderer],[i.Markup.VOICEXML,h],[i.Markup.SSML,h],[i.Markup.SSML_STEP,new c.SsmlStepRenderer]]);e.setSeparator=function(t){const e=p.get(r.default.getInstance().markup);e&&e.setSeparator(t)},e.getSeparator=function(){const t=p.get(r.default.getInstance().markup);return t?t.getSeparator():""},e.markup=function(t){const e=p.get(r.default.getInstance().markup);return e?e.markup(t):""},e.merge=function(t){const e=t.map((t=>"string"==typeof t?new T.Span(t,{}):t)),n=p.get(r.default.getInstance().markup);return n?n.merge(e):t.join()},e.finalize=function(t){const e=p.get(r.default.getInstance().markup);return e?e.finalize(t):t},e.error=function(t){const e=p.get(r.default.getInstance().markup);return e?e.error(t):""},e.registerRenderer=function(t,e){p.set(t,e)},e.isXml=function(){return p.get(r.default.getInstance().markup)instanceof d.XmlRenderer}},9413:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.LayoutRenderer=void 0;const r=n(5605),i=n(7041),o=n(9686),a=n(3778),s=n(8155);class l extends s.XmlRenderer{finalize(t){return function(t){T="";const e=i.parseInput(`<all>${t}</all>`);return r.Debugger.getInstance().output(i.formatXml(e.toString())),T=d(e),T}(t)}pause(t){return""}prosodyElement(t,e){return t===o.personalityProps.LAYOUT?`<${e}>`:""}closeTag(t){return`</${t}>`}markup(t){const e=[];let n=[];for(const r of t){if(!r.layout){n.push(r);continue}e.push(this.processContent(n)),n=[];const t=r.layout;t.match(/^begin/)?e.push("<"+t.replace(/^begin/,"")+">"):t.match(/^end/)?e.push("</"+t.replace(/^end/,"")+">"):console.warn("Something went wrong with layout markup: "+t)}return e.push(this.processContent(n)),e.join("")}processContent(t){const e=[],n=a.personalityMarkup(t);for(let t,r=0;t=n[r];r++)t.span?e.push(this.merge(t.span)):a.isPauseElement(t);return e.join("")}}e.LayoutRenderer=l;let T="";const Q={TABLE:function(t){let e=f(t);e.forEach((t=>{t.cells=t.cells.slice(1).slice(0,-1),t.width=t.width.slice(1).slice(0,-1)}));const[n,r]=y(e);return e=g(e,r),L(e,n)},CASES:function(t){let e=f(t);e.forEach((t=>{t.cells=t.cells.slice(0,-1),t.width=t.width.slice(0,-1)}));const[n,r]=y(e);return e=g(e,r),L(e,n)},CAYLEY:function(t){let e=f(t);e.forEach((t=>{t.cells=t.cells.slice(1).slice(0,-1),t.width=t.width.slice(1).slice(0,-1),t.sep=t.sep+t.sep}));const[n,r]=y(e),i={lfence:"",rfence:"",cells:r.map((t=>"⠐"+new Array(t).join("⠒"))),width:r,height:1,sep:e[0].sep};return e.splice(1,0,i),e=g(e,r),L(e,n)},MATRIX:function(t){let e=f(t);const[n,r]=y(e);return e=g(e,r),L(e,n)},CELL:d,FENCE:d,ROW:d,FRACTION:function(t){const[e,n,,r,i]=Array.from(t.childNodes),o=c(n),a=c(r),s=p(o),l=p(a);let T=Math.max(s,l);const Q=e+new Array(T+1).join("⠒")+i;return T=Q.length,`${_(o,T)}\n${Q}\n${_(a,T)}`},NUMERATOR:H,DENOMINATOR:H};function c(t){const e=i.tagName(t),n=Q[e];return n?n(t):t.textContent}function u(t,e){if(!t||!e)return t+e;const n=h(t),r=h(e),i=n-r;t=i<0?m(t,r,p(t)):t,e=i>0?m(e,n,p(e)):e;const o=t.split(/\r\n|\r|\n/),a=e.split(/\r\n|\r|\n/),s=[];for(let t=0;t<o.length;t++)s.push(o[t]+a[t]);return s.join("\n")}function d(t){let e="";for(const n of Array.from(t.childNodes))e=n.nodeType!==i.NodeType.TEXT_NODE?u(e,c(n)):u(e,n.textContent);return e}function h(t){return t.split(/\r\n|\r|\n/).length}function p(t){return t.split(/\r\n|\r|\n/).reduce(((t,e)=>Math.max(e.length,t)),0)}function m(t,e,n){return t=function(t,e){const n=e-h(t);return t+(n>0?new Array(n+1).join("\n"):"")}(t,e),function(t,e){const n=t.split(/\r\n|\r|\n/),r=[];for(const t of n){const n=e-t.length;r.push(t+(n>0?new Array(n+1).join("⠀"):""))}return r.join("\n")}(t,n)}function f(t){const e=Array.from(t.childNodes),n=[];for(const t of e)t.nodeType===i.NodeType.ELEMENT_NODE&&n.push(x(t));return n}function y(t){const e=t.reduce(((t,e)=>Math.max(e.height,t)),0),n=[];for(let e=0;e<t[0].width.length;e++)n.push(t.map((t=>t.width[e])).reduce(((t,e)=>Math.max(t,e)),0));return[e,n]}function g(t,e){const n=[];for(const r of t){if(0===r.height)continue;const t=[];for(let n=0;n<r.cells.length;n++)t.push(m(r.cells[n],r.height,e[n]));r.cells=t,n.push(r)}return n}function L(t,e){if(1===e)return t.map((t=>t.lfence+t.cells.join(t.sep)+t.rfence)).join("\n");const n=[];for(const e of t){const t=b(e.sep,e.height);let r=e.cells.shift();for(;e.cells.length;)r=u(r,t),r=u(r,e.cells.shift());r=u(b(e.lfence,e.height),r),r=u(r,b(e.rfence,e.height)),n.push(r),n.push(e.lfence+new Array(p(r)-3).join(e.sep)+e.rfence)}return n.slice(0,-1).join("\n")}function b(t,e){let n="";for(;e;)n+=t+"\n",e--;return n.slice(0,-1)}function v(t){return t.nodeType===i.NodeType.ELEMENT_NODE&&"FENCE"===i.tagName(t)?c(t):""}function x(t){const e=Array.from(t.childNodes),n=v(e[0]),r=v(e[e.length-1]);n&&e.shift(),r&&e.pop();let o="";const a=[];for(const t of e){if(t.nodeType===i.NodeType.TEXT_NODE){o=t.textContent;continue}const e=c(t);a.push(e)}return{lfence:n,rfence:r,sep:o,cells:a,height:a.reduce(((t,e)=>Math.max(h(e),t)),0),width:a.map(p)}}function _(t,e){const n=(e-p(t))/2,[r,i]=Math.floor(n)===n?[n,n]:[Math.floor(n),Math.ceil(n)],o=t.split(/\r\n|\r|\n/),a=[],[s,l]=[new Array(r+1).join("⠀"),new Array(i+1).join("⠀")];for(const t of o)a.push(s+t+l);return a.join("\n")}function H(t){const e=t.firstChild,n=d(t);if(e&&e.nodeType===i.NodeType.ELEMENT_NODE){if("ENGLISH"===i.tagName(e))return"⠰"+n;if("NUMBER"===i.tagName(e))return"⠼"+n}return n}},9569:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MarkupRenderer=void 0;const r=n(9686),i=n(4601);class o extends i.AbstractAudioRenderer{constructor(){super(...arguments),this.ignoreElements=[r.personalityProps.LAYOUT],this.scaleFunction=null}setScaleFunction(t,e,n,r,i=0){this.scaleFunction=o=>{const a=(o-t)/(e-t),s=n*(1-a)+r*a;return+(Math.round(s+"e+"+i)+"e-"+i)}}applyScaleFunction(t){return this.scaleFunction?this.scaleFunction(t):t}ignoreElement(t){return-1!==this.ignoreElements.indexOf(t)}}e.MarkupRenderer=o},3064:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.PunctuationRenderer=void 0;const r=n(9686),i=n(4601),o=n(3778);class a extends i.AbstractAudioRenderer{markup(t){const e=o.personalityMarkup(t);let n="",i=null,a=!1;for(let t,s=0;t=e[s];s++)o.isMarkupElement(t)||(o.isPauseElement(t)?a&&(i=o.mergePause(i,t,Math.max)):(i&&(n+=this.pause(i[r.personalityProps.PAUSE]),i=null),n+=(a?this.getSeparator():"")+this.merge(t.span),a=!0));return n}pause(t){let e;return e="number"==typeof t?t<=250?"short":t<=500?"medium":"long":t,a.PAUSE_PUNCTUATION.get(e)||""}}e.PunctuationRenderer=a,a.PAUSE_PUNCTUATION=new Map([["short",","],["medium",";"],["long","."]])},9815:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SableRenderer=void 0;const r=n(9686),i=n(8155);class o extends i.XmlRenderer{finalize(t){return'<?xml version="1.0"?><!DOCTYPE SABLE PUBLIC "-//SABLE//DTD SABLE speech mark up//EN" "Sable.v0_2.dtd" []><SABLE>'+this.getSeparator()+t+this.getSeparator()+"</SABLE>"}pause(t){return'<BREAK MSEC="'+this.pauseValue(t[r.personalityProps.PAUSE])+'"/>'}prosodyElement(t,e){switch(e=this.applyScaleFunction(e),t){case r.personalityProps.PITCH:return'<PITCH RANGE="'+e+'%">';case r.personalityProps.RATE:return'<RATE SPEED="'+e+'%">';case r.personalityProps.VOLUME:return'<VOLUME LEVEL="'+e+'%">';default:return"<"+t.toUpperCase()+' VALUE="'+e+'">'}}closeTag(t){return"</"+t.toUpperCase()+">"}}e.SableRenderer=o},4752:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Span=void 0,e.Span=class{constructor(t,e){this.speech=t,this.attributes=e}}},4238:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SsmlRenderer=void 0;const r=n(3684),i=n(9686),o=n(8155);class a extends o.XmlRenderer{finalize(t){return'<?xml version="1.0"?><speak version="1.1" xmlns="http://www.w3.org/2001/10/synthesis"><prosody rate="'+r.default.getInstance().getRate()+'%">'+this.getSeparator()+t+this.getSeparator()+"</prosody></speak>"}pause(t){return'<break time="'+this.pauseValue(t[i.personalityProps.PAUSE])+'ms"/>'}prosodyElement(t,e){const n=(e=Math.floor(this.applyScaleFunction(e)))<0?e.toString():"+"+e.toString();return"<prosody "+t.toLowerCase()+'="'+n+(t===i.personalityProps.VOLUME?">":'%">')}closeTag(t){return"</prosody>"}}e.SsmlRenderer=a},1990:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SsmlStepRenderer=void 0;const r=n(4238);class i extends r.SsmlRenderer{markup(t){return i.MARKS={},super.markup(t)}merge(t){const e=[];for(let n=0;n<t.length;n++){const r=t[n],o=r.attributes.extid;o&&!i.MARKS[o]&&(e.push('<mark name="'+o+'"/>'),i.MARKS[o]=!0),1===r.speech.length&&r.speech.match(/[a-zA-Z]/)?e.push('<say-as interpret-as="'+i.CHARACTER_ATTR+'">'+r.speech+"</say-as>"):e.push(r.speech)}return e.join(this.getSeparator())}}e.SsmlStepRenderer=i,i.CHARACTER_ATTR="character",i.MARKS={}},6310:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.StringRenderer=void 0;const r=n(4601),i=n(3778);class o extends r.AbstractAudioRenderer{markup(t){let e="";const n=(0,i.personalityMarkup)(t).filter((t=>t.span));if(!n.length)return e;const r=n.length-1;for(let t,i=0;t=n[i];i++){if(t.span&&(e+=this.merge(t.span)),i>=r)continue;const n=t.join;e+=void 0===n?this.getSeparator():n}return e}}e.StringRenderer=o},8155:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.XmlRenderer=void 0;const r=n(3684),i=n(3778),o=n(9569);class a extends o.MarkupRenderer{markup(t){this.setScaleFunction(-2,2,-100,100,2);const e=i.personalityMarkup(t),n=[],o=[];for(let t,a=0;t=e[a];a++)if(t.span)n.push(this.merge(t.span));else if(i.isPauseElement(t))n.push(this.pause(t));else{if(t.close.length)for(let e=0;e<t.close.length;e++){const e=o.pop();if(-1===t.close.indexOf(e))throw new r.SREError("Unknown closing markup element: "+e);n.push(this.closeTag(e))}t.open.length&&i.sortClose(t.open.slice(),e.slice(a+1)).forEach((e=>{n.push(this.prosodyElement(e,t[e])),o.push(e)}))}return n.join(" ")}}e.XmlRenderer=a},4422:(t,e)=>{function n(t,e){return t?e?t.filter((t=>e.indexOf(t)<0)):t:[]}Object.defineProperty(e,"__esModule",{value:!0}),e.union=e.setdifference=e.interleaveLists=e.removeEmpty=void 0,e.removeEmpty=function(t){return t.filter((t=>t))},e.interleaveLists=function(t,e){const n=[];for(;t.length||e.length;)t.length&&n.push(t.shift()),e.length&&n.push(e.shift());return n},e.setdifference=n,e.union=function(t,e){return t&&e?t.concat(n(e,t)):t||e||[]}},4698:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.loadScript=e.loadMapsForIE_=e.installWGXpath_=e.loadWGXpath_=e.mapsForIE=e.detectEdge=e.detectIE=void 0;const r=n(495),i=n(1746);function o(t){l(r.default.WGXpath),a(t)}function a(t,e){let n=e||1;"undefined"==typeof wgxpath&&n<10?setTimeout((function(){a(t,n++)}),200):n>=10||(r.default.wgxpath=wgxpath,t?r.default.wgxpath.install({document}):r.default.wgxpath.install(),i.xpath.evaluate=document.evaluate,i.xpath.result=XPathResult,i.xpath.createNSResolver=document.createNSResolver)}function s(){l(r.default.mathmapsIePath)}function l(t){const e=r.default.document.createElement("script");e.type="text/javascript",e.src=t,r.default.document.head?r.default.document.head.appendChild(e):r.default.document.body.appendChild(e)}e.detectIE=function(){return"undefined"!=typeof window&&"ActiveXObject"in window&&"clipboardData"in window&&(s(),o(),!0)},e.detectEdge=function(){var t;return"undefined"!=typeof window&&"MSGestureEvent"in window&&null===(null===(t=window.chrome)||void 0===t?void 0:t.loadTimes)&&(document.evaluate=null,o(!0),!0)},e.mapsForIE=null,e.loadWGXpath_=o,e.installWGXpath_=a,e.loadMapsForIE_=s,e.loadScript=l},7090:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.Cli=void 0;const i=n(3113),o=n(8844),a=n(5124),s=n(9050),l=n(5605),T=n(3684),Q=n(9686),c=n(9190),u=n(2114),d=n(495),h=n(6948);e.Cli=class{constructor(){this.process=d.default.extRequire("process"),this.setup={mode:Q.Mode.SYNC},this.processors=[],this.output=this.process.stdout,this.dp=new d.default.xmldom.DOMParser({errorHandler:(t,e)=>{throw new T.SREError("XML DOM error!")}})}set(t,e,n){this.setup[t]=void 0===e||e}processor(t){this.processors.push(t)}loadLocales(){return r(this,void 0,void 0,(function*(){for(const t of h.Variables.LOCALES.keys())yield u.setupEngine({locale:t})}))}enumerate(t=!1){return r(this,void 0,void 0,(function*(){const e=u.setupEngine(this.setup);return(t?this.loadLocales():e).then((()=>T.EnginePromise.getall().then((()=>{const t=i.DynamicCstr.DEFAULT_ORDER.map((t=>t.length)),e=(e,n)=>{t[n]=Math.max.apply(null,Object.keys(e).map((t=>t.length)).concat(t[n]))},n=(t,e)=>t+new Array(e-t.length+1).join(" ");let r=a.SpeechRuleEngine.getInstance().enumerate();r=o.enumerate(r);const l=[];e(r,0);for(const i in r){let o=!0;const a=r[i];e(a,1);for(const T in a){let Q=!0;const c=a[T];e(c,2);for(const e in c){const a=Object.keys(c[e]).sort();if("clearspeak"===e){let a=!0;const c=s.ClearspeakPreferences.getLocalePreferences(r)[i];for(const r in c)l.push([n(o?i:"",t[0]),n(Q?T:"",t[1]),n(a?e:"",t[2]),c[r].join(", ")]),o=!1,Q=!1,a=!1}else l.push([n(o?i:"",t[0]),n(Q?T:"",t[1]),n(e,t[2]),a.join(", ")]);o=!1,Q=!1}}}let T=0,Q="";Q+=i.DynamicCstr.DEFAULT_ORDER.slice(0,-1).map((e=>n(e,t[T++]))).join(" | "),Q+="\n",t.forEach((t=>Q+=new Array(t+3).join("="))),Q+="========================\n",Q+=l.map((t=>t.join(" | "))).join("\n"),console.info(Q)}))))}))}execute(t){T.EnginePromise.getall().then((()=>{this.runProcessors_(((t,e)=>this.output.write(u.processFile(t,e)+"\n")),t)}))}readline(){this.process.stdin.setEncoding("utf8");const t=d.default.extRequire("readline").createInterface({input:this.process.stdin,output:this.output});let e="";t.on("line",(n=>{e+=n,this.readExpression_(e)&&t.close()}).bind(this)),t.on("close",(()=>{this.runProcessors_(((e,n)=>{t.output.write(c.output(e,n)+"\n")}),e),u.engineReady().then((()=>l.Debugger.getInstance().exit((()=>u.exit(0)))))}).bind(this))}commandLine(){return r(this,void 0,void 0,(function*(){const t=d.default.commander,e=u,n=(t=>(e,n)=>this.set(t,e,n)).bind(this),r=this.processor.bind(this);t.version(e.version).usage("[options] <file ...>").option("-i, --input [name]","Input file [name]. (Deprecated)").option("-o, --output [name]","Output file [name]. Defaults to stdout.").option("-d, --domain [name]","Speech rule set [name]. See --options for details.",n(i.Axis.DOMAIN),i.DynamicCstr.DEFAULT_VALUES[i.Axis.DOMAIN]).option("-t, --style [name]","Speech style [name]. See --options for details.",n(i.Axis.STYLE),i.DynamicCstr.DEFAULT_VALUES[i.Axis.STYLE]).option("-c, --locale [code]","Locale [code].",n(i.Axis.LOCALE),i.DynamicCstr.DEFAULT_VALUES[i.Axis.LOCALE]).option("-b, --modality [name]","Modality [name].",n(i.Axis.MODALITY),i.DynamicCstr.DEFAULT_VALUES[i.Axis.MODALITY]).option("-k, --markup [name]","Generate speech output with markup tags.",n("markup"),"none").option("-r, --rate [value]","Base rate [value] for tagged speech output.",n("rate"),"100").option("-p, --speech","Generate speech output (default).",(()=>r("speech"))).option("-a, --audit","Generate auditory descriptions (JSON format).",(()=>r("description"))).option("-j, --json","Generate JSON of semantic tree.",(()=>r("json"))).option("-x, --xml","Generate XML of semantic tree.",(()=>r("semantic"))).option("-m, --mathml","Generate enriched MathML.",(()=>r("enriched"))).option("-g, --generate <depth>","Include generated speech in enriched MathML (with -m option only).",n("speech"),"none").option("-w, --structure","Include structure attribute in enriched MathML (with -m option only).",n("structure")).option("-P, --pprint","Pretty print output whenever possible.",n("pprint")).option("-f, --rules [name]","Loads a local rule file [name].",n("rules")).option("-C, --subiso [name]","Supplementary country code (or similar) for the given locale.",n("subiso")).option("-N, --number","Translate number to word.",(()=>r("number"))).option("-O, --ordinal","Translate number to ordinal.",(()=>r("ordinal")),"ordinal").option("-S, --numeric","Translate number to numeric ordinal.",(()=>r("numericOrdinal"))).option("-F, --vulgar","Translate vulgar fraction to word. Provide vulgar fraction as slash seperated numbers.",(()=>r("vulgar"))).option("-v, --verbose","Verbose mode.").option("-l, --log [name]","Log file [name].").option("--opt","List engine setup options.").option("--opt-all","List engine setup options for all available locales.").on("option:opt",(()=>{this.enumerate().then((()=>u.exit(0)))})).on("option:opt-all",(()=>{this.enumerate(!0).then((()=>u.exit(0)))})).parse(this.process.argv),yield u.engineReady().then((()=>u.setupEngine(this.setup)));const o=t.opts();o.output&&(this.output=d.default.fs.createWriteStream(o.output)),o.verbose&&(yield l.Debugger.getInstance().init(o.log)),o.input&&this.execute(o.input),t.args.length?(t.args.forEach(this.execute.bind(this)),u.engineReady().then((()=>l.Debugger.getInstance().exit((()=>u.exit(0)))))):this.readline()}))}runProcessors_(t,e){try{this.processors.length||this.processors.push("speech"),e&&this.processors.forEach((n=>t(n,e)))}catch(t){console.error(t.name+": "+t.message),l.Debugger.getInstance().exit((()=>this.process.exit(1)))}}readExpression_(t){try{const e=t.replace(/(&|#|;)/g,"");this.dp.parseFromString(e,"text/xml")}catch(t){return!1}return!0}}},5605:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Debugger=void 0;const r=n(495);class i{constructor(){this.isActive_=!1,this.outputFunction_=console.info,this.fileHandle=Promise.resolve(),this.stream_=null}static getInstance(){return i.instance=i.instance||new i,i.instance}init(t){return t&&this.startDebugFile_(t),this.isActive_=!0,this.fileHandle}output(...t){this.isActive_&&this.output_(t)}generateOutput(t){this.isActive_&&this.output_(t.apply(t,[]))}exit(t=(()=>{})){this.fileHandle.then((()=>{this.isActive_&&this.stream_&&this.stream_.end("","",t)}))}startDebugFile_(t){this.fileHandle=r.default.fs.promises.open(t,"w"),this.fileHandle=this.fileHandle.then((e=>{this.stream_=e.createWriteStream(t),this.outputFunction_=function(...t){this.stream_.write(t.join(" ")),this.stream_.write("\n")}.bind(this),this.stream_.on("error",function(t){console.info("Invalid log file. Debug information sent to console."),this.outputFunction_=console.info}.bind(this)),this.stream_.on("finish",(function(){console.info("Finalizing debug file.")}))}))}output_(t){console.info!==this.outputFunction_?this.fileHandle.then((()=>this.outputFunction_.apply(this.outputFunction_,["Speech Rule Engine Debugger:"].concat(t)))):this.outputFunction_.apply(console,["Speech Rule Engine Debugger:"].concat(t))}}e.Debugger=i},7041:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.serializeXml=e.cloneNode=e.tagName=e.querySelectorAll=e.querySelectorAllByAttrValue=e.querySelectorAllByAttr=e.formatXml=e.createTextNode=e.createElementNS=e.createElement=e.replaceNode=e.NodeType=e.parseInput=e.XML_ENTITIES=e.trimInput_=e.toArray=void 0;const r=n(3684),i=n(9686),o=n(495),a=n(1746);function s(t){const e=[];for(let n=0,r=t.length;n<r;n++)e.push(t[n]);return e}function l(t){return(t=t.replace(/&nbsp;/g," ")).replace(/>[ \f\n\r\t\v\u200b]+</g,"><").trim()}function T(t,e){if(!e)return[!1,""];const n=t.match(/^<([^> ]+).*>/),r=e.match(/^<\/([^>]+)>(.*)/);return n&&r&&n[1]===r[1]?[!0,r[2]]:[!1,""]}e.toArray=s,e.trimInput_=l,e.XML_ENTITIES={"&lt;":!0,"&gt;":!0,"&amp;":!0,"&quot;":!0,"&apos;":!0},e.parseInput=function(t){const e=new o.default.xmldom.DOMParser,n=l(t),s=!!n.match(/&(?!lt|gt|amp|quot|apos)\w+;/g);if(!n)throw new Error("Empty input!");try{const t=e.parseFromString(n,s?"text/html":"text/xml");return r.default.getInstance().mode===i.Mode.HTTP?(a.xpath.currentDocument=t,s?t.body.childNodes[0]:t.documentElement):t.documentElement}catch(t){throw new r.SREError("Illegal input: "+t.message)}},function(t){t[t.ELEMENT_NODE=1]="ELEMENT_NODE",t[t.ATTRIBUTE_NODE=2]="ATTRIBUTE_NODE",t[t.TEXT_NODE=3]="TEXT_NODE",t[t.CDATA_SECTION_NODE=4]="CDATA_SECTION_NODE",t[t.ENTITY_REFERENCE_NODE=5]="ENTITY_REFERENCE_NODE",t[t.ENTITY_NODE=6]="ENTITY_NODE",t[t.PROCESSING_INSTRUCTION_NODE=7]="PROCESSING_INSTRUCTION_NODE",t[t.COMMENT_NODE=8]="COMMENT_NODE",t[t.DOCUMENT_NODE=9]="DOCUMENT_NODE",t[t.DOCUMENT_TYPE_NODE=10]="DOCUMENT_TYPE_NODE",t[t.DOCUMENT_FRAGMENT_NODE=11]="DOCUMENT_FRAGMENT_NODE",t[t.NOTATION_NODE=12]="NOTATION_NODE"}(e.NodeType||(e.NodeType={})),e.replaceNode=function(t,e){t.parentNode&&(t.parentNode.insertBefore(e,t),t.parentNode.removeChild(t))},e.createElement=function(t){return o.default.document.createElement(t)},e.createElementNS=function(t,e){return o.default.document.createElementNS(t,e)},e.createTextNode=function(t){return o.default.document.createTextNode(t)},e.formatXml=function(t){let e="",n=/(>)(<)(\/*)/g,r=0,i=(t=t.replace(n,"$1\r\n$2$3")).split("\r\n");for(n=/(\.)*(<)(\/*)/g,i=i.map((t=>t.replace(n,"$1\r\n$2$3").split("\r\n"))).reduce(((t,e)=>t.concat(e)),[]);i.length;){let t=i.shift();if(!t)continue;let n=0;if(t.match(/^<\w[^>/]*>[^>]+$/)){const e=T(t,i[0]);e[0]?e[1]?(t+=i.shift().slice(0,-e[1].length),e[1].trim()&&i.unshift(e[1])):t+=i.shift():n=1}else if(t.match(/^<\/\w/))0!==r&&(r-=1);else if(t.match(/^<\w[^>]*[^/]>.*$/))n=1;else if(t.match(/^<\w[^>]*\/>.+$/)){const e=t.indexOf(">")+1;t.slice(e).trim()&&i.unshift(),t=t.slice(0,e)}else n=0;e+=new Array(r+1).join(" ")+t+"\r\n",r+=n}return e},e.querySelectorAllByAttr=function(t,e){return t.querySelectorAll?s(t.querySelectorAll(`[${e}]`)):a.evalXPath(`.//*[@${e}]`,t)},e.querySelectorAllByAttrValue=function(t,e,n){return t.querySelectorAll?s(t.querySelectorAll(`[${e}="${n}"]`)):a.evalXPath(`.//*[@${e}="${n}"]`,t)},e.querySelectorAll=function(t,e){return t.querySelectorAll?s(t.querySelectorAll(e)):a.evalXPath(`.//${e}`,t)},e.tagName=function(t){return t.tagName.toUpperCase()},e.cloneNode=function(t){return t.cloneNode(!0)},e.serializeXml=function(t){return(new o.default.xmldom.XMLSerializer).serializeToString(t)}},3684:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.EnginePromise=e.SREError=void 0;const r=n(3113),i=n(9686),o=n(5605),a=n(6948);class s extends Error{constructor(t=""){super(),this.message=t,this.name="SRE Error"}}e.SREError=s;class l{constructor(){this.customLoader=null,this.parsers={},this.comparator=null,this.mode=i.Mode.SYNC,this.init=!0,this.delay=!1,this.comparators={},this.domain="mathspeak",this.style=r.DynamicCstr.DEFAULT_VALUES[r.Axis.STYLE],this._defaultLocale=r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE],this.locale=this.defaultLocale,this.subiso="",this.modality=r.DynamicCstr.DEFAULT_VALUES[r.Axis.MODALITY],this.speech=i.Speech.NONE,this.markup=i.Markup.NONE,this.walker="Table",this.structure=!1,this.ruleSets=[],this.strict=!1,this.isIE=!1,this.isEdge=!1,this.rate="100",this.pprint=!1,this.config=!1,this.rules="",this.prune="",this.evaluator=l.defaultEvaluator,this.defaultParser=new r.DynamicCstrParser(r.DynamicCstr.DEFAULT_ORDER),this.parser=this.defaultParser,this.dynamicCstr=r.DynamicCstr.defaultCstr()}set defaultLocale(t){this._defaultLocale=a.Variables.ensureLocale(t,this._defaultLocale)}get defaultLocale(){return this._defaultLocale}static getInstance(){return l.instance=l.instance||new l,l.instance}static defaultEvaluator(t,e){return t}static evaluateNode(t){return l.nodeEvaluator(t)}getRate(){const t=parseInt(this.rate,10);return isNaN(t)?100:t}setDynamicCstr(t){if(this.defaultLocale&&(r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE]=this.defaultLocale),t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const i=e[n];if(-1!==r.DynamicCstr.DEFAULT_ORDER.indexOf(i)){const e=t[i];this[i]=e}}}i.DOMAIN_TO_STYLES[this.domain]=this.style;const e=[this.locale,this.modality,this.domain,this.style].join("."),n=r.DynamicProperties.createProp([r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE]],[r.DynamicCstr.DEFAULT_VALUES[r.Axis.MODALITY]],[r.DynamicCstr.DEFAULT_VALUES[r.Axis.DOMAIN]],[r.DynamicCstr.DEFAULT_VALUES[r.Axis.STYLE]]),o=this.comparators[this.domain],a=this.parsers[this.domain];this.parser=a||this.defaultParser,this.dynamicCstr=this.parser.parse(e),this.dynamicCstr.updateProperties(n.getProperties()),this.comparator=o?o():new r.DefaultComparator(this.dynamicCstr)}configurate(t){this.mode!==i.Mode.HTTP||this.config||(function(t){const e=document.documentElement.querySelectorAll('script[type="text/x-sre-config"]');for(let n=0,r=e.length;n<r;n++){let r;try{r=e[n].innerHTML;const i=JSON.parse(r);for(const e in i)t[e]=i[e]}catch(t){o.Debugger.getInstance().output("Illegal configuration ",r)}}}(t),this.config=!0),function(t){if("undefined"!=typeof SREfeature)for(const[e,n]of Object.entries(SREfeature))t[e]=n}(t)}setCustomLoader(t){t&&(this.customLoader=t)}}e.default=l,l.BINARY_FEATURES=["strict","structure","pprint"],l.STRING_FEATURES=["markup","style","domain","speech","walker","defaultLocale","locale","delay","modality","rate","rules","subiso","prune"],l.nodeEvaluator=function(t){return[]};class T{static get(t=l.getInstance().locale){return T.promises[t]||Promise.resolve("")}static getall(){return Promise.all(Object.values(T.promises))}}e.EnginePromise=T,T.loaded={},T.promises={}},9686:(t,e)=>{var n;Object.defineProperty(e,"__esModule",{value:!0}),e.DOMAIN_TO_STYLES=e.Markup=e.Speech=e.personalityPropList=e.personalityProps=e.Mode=void 0,function(t){t.SYNC="sync",t.ASYNC="async",t.HTTP="http"}(e.Mode||(e.Mode={})),function(t){t.PITCH="pitch",t.RATE="rate",t.VOLUME="volume",t.PAUSE="pause",t.JOIN="join",t.LAYOUT="layout"}(n=e.personalityProps||(e.personalityProps={})),e.personalityPropList=[n.PITCH,n.RATE,n.VOLUME,n.PAUSE,n.JOIN],function(t){t.NONE="none",t.SHALLOW="shallow",t.DEEP="deep"}(e.Speech||(e.Speech={})),function(t){t.NONE="none",t.LAYOUT="layout",t.PUNCTUATION="punctuation",t.SSML="ssml",t.SSML_STEP="ssml_step",t.ACSS="acss",t.SABLE="sable",t.VOICEXML="voicexml"}(e.Markup||(e.Markup={})),e.DOMAIN_TO_STYLES={mathspeak:"default",clearspeak:"default"}},317:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.setup=void 0;const i=n(2420),o=n(2741),a=n(4698),s=n(5605),l=n(3684),T=n(3633),Q=n(495);e.setup=function(t){return r(this,void 0,void 0,(function*(){const e=l.default.getInstance();"default"!==t.domain||"speech"!==t.modality&&t.modality&&"speech"!==e.modality||(t.domain="mathspeak");const n=n=>{void 0!==t[n]&&(e[n]=t[n])};return n("mode"),e.configurate(t),l.default.BINARY_FEATURES.forEach((n=>{void 0!==t[n]&&(e[n]=!!t[n])})),l.default.STRING_FEATURES.forEach(n),t.debug&&s.Debugger.getInstance().init(),t.json&&(Q.default.jsonPath=T.makePath(t.json)),t.xpath&&(Q.default.WGXpath=t.xpath),e.setCustomLoader(t.custom),function(t){t.isIE=a.detectIE(),t.isEdge=a.detectEdge()}(e),i.setLocale(),e.setDynamicCstr(),e.init?(l.EnginePromise.promises.init=new Promise(((t,e)=>{setTimeout((()=>{t("init")}),10)})),e.init=!1,l.EnginePromise.get()):e.delay?(e.delay=!1,l.EnginePromise.get()):o.loadLocale()}))}},5390:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Event=e.EventType=e.Move=e.KeyCode=void 0,function(t){t[t.ENTER=13]="ENTER",t[t.ESC=27]="ESC",t[t.SPACE=32]="SPACE",t[t.PAGE_UP=33]="PAGE_UP",t[t.PAGE_DOWN=34]="PAGE_DOWN",t[t.END=35]="END",t[t.HOME=36]="HOME",t[t.LEFT=37]="LEFT",t[t.UP=38]="UP",t[t.RIGHT=39]="RIGHT",t[t.DOWN=40]="DOWN",t[t.TAB=9]="TAB",t[t.LESS=188]="LESS",t[t.GREATER=190]="GREATER",t[t.DASH=189]="DASH",t[t.ZERO=48]="ZERO",t[t.ONE=49]="ONE",t[t.TWO=50]="TWO",t[t.THREE=51]="THREE",t[t.FOUR=52]="FOUR",t[t.FIVE=53]="FIVE",t[t.SIX=54]="SIX",t[t.SEVEN=55]="SEVEN",t[t.EIGHT=56]="EIGHT",t[t.NINE=57]="NINE",t[t.A=65]="A",t[t.B=66]="B",t[t.C=67]="C",t[t.D=68]="D",t[t.E=69]="E",t[t.F=70]="F",t[t.G=71]="G",t[t.H=72]="H",t[t.I=73]="I",t[t.J=74]="J",t[t.K=75]="K",t[t.L=76]="L",t[t.M=77]="M",t[t.N=78]="N",t[t.O=79]="O",t[t.P=80]="P",t[t.Q=81]="Q",t[t.R=82]="R",t[t.S=83]="S",t[t.T=84]="T",t[t.U=85]="U",t[t.V=86]="V",t[t.W=87]="W",t[t.X=88]="X",t[t.Y=89]="Y",t[t.Z=90]="Z"}(e.KeyCode||(e.KeyCode={})),e.Move=new Map([[13,"ENTER"],[27,"ESC"],[32,"SPACE"],[33,"PAGE_UP"],[34,"PAGE_DOWN"],[35,"END"],[36,"HOME"],[37,"LEFT"],[38,"UP"],[39,"RIGHT"],[40,"DOWN"],[9,"TAB"],[188,"LESS"],[190,"GREATER"],[189,"DASH"],[48,"ZERO"],[49,"ONE"],[50,"TWO"],[51,"THREE"],[52,"FOUR"],[53,"FIVE"],[54,"SIX"],[55,"SEVEN"],[56,"EIGHT"],[57,"NINE"],[65,"A"],[66,"B"],[67,"C"],[68,"D"],[69,"E"],[70,"F"],[71,"G"],[72,"H"],[73,"I"],[74,"J"],[75,"K"],[76,"L"],[77,"M"],[78,"N"],[79,"O"],[80,"P"],[81,"Q"],[82,"R"],[83,"S"],[84,"T"],[85,"U"],[86,"V"],[87,"W"],[88,"X"],[89,"Y"],[90,"Z"]]),function(t){t.CLICK="click",t.DBLCLICK="dblclick",t.MOUSEDOWN="mousedown",t.MOUSEUP="mouseup",t.MOUSEOVER="mouseover",t.MOUSEOUT="mouseout",t.MOUSEMOVE="mousemove",t.SELECTSTART="selectstart",t.KEYPRESS="keypress",t.KEYDOWN="keydown",t.KEYUP="keyup",t.TOUCHSTART="touchstart",t.TOUCHMOVE="touchmove",t.TOUCHEND="touchend",t.TOUCHCANCEL="touchcancel"}(e.EventType||(e.EventType={})),e.Event=class{constructor(t,e,n){this.src=t,this.type=e,this.callback=n}add(){this.src.addEventListener(this.type,this.callback)}remove(){this.src.removeEventListener(this.type,this.callback)}}},3633:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.localePath=e.makePath=void 0;const r=n(495);function i(t){return t.match("/$")?t:t+"/"}e.makePath=i,e.localePath=function(t,e="json"){return i(r.default.jsonPath)+t+(e.match(/^\./)?e:"."+e)}},8231:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.KeyProcessor=e.Processor=void 0;const r=n(5390);class i{constructor(t,e){this.name=t,this.process=e.processor,this.postprocess=e.postprocessor||((t,e)=>t),this.processor=this.postprocess?function(t){return this.postprocess(this.process(t),t)}:this.process,this.print=e.print||i.stringify_,this.pprint=e.pprint||this.print}static stringify_(t){return t?t.toString():t}}e.Processor=i,i.LocalState={walker:null,speechGenerator:null,highlighter:null};class o extends i{constructor(t,e){super(t,e),this.key=e.key||o.getKey_}static getKey_(t){return"string"==typeof t?r.KeyCode[t.toUpperCase()]:t}}e.KeyProcessor=o},9190:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.keypress=e.output=e.print=e.process=e.set=void 0;const r=n(840),i=n(7059),o=n(7022),a=n(3826),s=n(6256),l=n(4493),T=n(2421),Q=n(2338),c=n(3294),u=n(7041),d=n(3684),h=n(9686),p=n(8231),m=n(1746),f=new Map;function y(t){f.set(t.name,t)}function g(t){const e=f.get(t);if(!e)throw new d.SREError("Unknown processor "+t);return e}function L(t,e){const n=g(t);try{return n.processor(e)}catch(t){throw new d.SREError("Processing error for expression "+e)}}function b(t,e){const n=g(t);return d.default.getInstance().pprint?n.pprint(e):n.print(e)}e.set=y,e.process=L,e.print=b,e.output=function(t,e){const n=g(t);try{const t=n.processor(e);return d.default.getInstance().pprint?n.pprint(t):n.print(t)}catch(t){throw new d.SREError("Processing error for expression "+e)}},e.keypress=function(t,e){const n=g(t),r=n instanceof p.KeyProcessor?n.key(e):e,i=n.processor(r);return d.default.getInstance().pprint?n.pprint(i):n.print(i)},y(new p.Processor("semantic",{processor:function(t){const e=u.parseInput(t);return s.xmlTree(e)},postprocessor:function(t,e){const n=d.default.getInstance().speech;if(n===h.Speech.NONE)return t;const i=u.cloneNode(t);let o=T.computeMarkup(i);if(n===h.Speech.SHALLOW)return t.setAttribute("speech",r.finalize(o)),t;const a=m.evalXPath(".//*[@id]",t),s=m.evalXPath(".//*[@id]",i);for(let t,e,n=0;t=a[n],e=s[n];n++)o=T.computeMarkup(e),t.setAttribute("speech",r.finalize(o));return t},pprint:function(t){return u.formatXml(t.toString())}})),y(new p.Processor("speech",{processor:function(t){const e=u.parseInput(t),n=s.xmlTree(e),i=T.computeSpeech(n);return r.finalize(r.markup(i))},pprint:function(t){const e=t.toString();return r.isXml()?u.formatXml(e):e}})),y(new p.Processor("json",{processor:function(t){const e=u.parseInput(t);return s.getTree(e).toJson()},postprocessor:function(t,e){const n=d.default.getInstance().speech;if(n===h.Speech.NONE)return t;const i=u.parseInput(e),o=s.xmlTree(i),a=T.computeMarkup(o);if(n===h.Speech.SHALLOW)return t.stree.speech=r.finalize(a),t;const l=t=>{const e=m.evalXPath(`.//*[@id=${t.id}]`,o)[0],n=T.computeMarkup(e);t.speech=r.finalize(n),t.children&&t.children.forEach(l)};return l(t.stree),t},print:function(t){return JSON.stringify(t)},pprint:function(t){return JSON.stringify(t,null,2)}})),y(new p.Processor("description",{processor:function(t){const e=u.parseInput(t),n=s.xmlTree(e);return T.computeSpeech(n)},print:function(t){return JSON.stringify(t)},pprint:function(t){return JSON.stringify(t,null,2)}})),y(new p.Processor("enriched",{processor:function(t){return i.semanticMathmlSync(t)},postprocessor:function(t,e){const n=c.getSemanticRoot(t);let r;switch(d.default.getInstance().speech){case h.Speech.NONE:break;case h.Speech.SHALLOW:r=l.generator("Adhoc"),r.getSpeech(n,t);break;case h.Speech.DEEP:r=l.generator("Tree"),r.getSpeech(t,t)}return t},pprint:function(t){return u.formatXml(t.toString())}})),y(new p.Processor("walker",{processor:function(t){const e=l.generator("Node");p.Processor.LocalState.speechGenerator=e,e.setOptions({modality:d.default.getInstance().modality,locale:d.default.getInstance().locale,domain:d.default.getInstance().domain,style:d.default.getInstance().style}),p.Processor.LocalState.highlighter=o.highlighter({color:"black"},{color:"white"},{renderer:"NativeMML"});const n=L("enriched",t),r=b("enriched",n);return p.Processor.LocalState.walker=Q.walker(d.default.getInstance().walker,n,e,p.Processor.LocalState.highlighter,r),p.Processor.LocalState.walker},print:function(t){return p.Processor.LocalState.walker.speech()}})),y(new p.KeyProcessor("move",{processor:function(t){return p.Processor.LocalState.walker?!1===p.Processor.LocalState.walker.move(t)?r.error(t):p.Processor.LocalState.walker.speech():null}})),y(new p.Processor("number",{processor:function(t){const e=parseInt(t,10);return isNaN(e)?"":a.LOCALE.NUMBERS.numberToWords(e)}})),y(new p.Processor("ordinal",{processor:function(t){const e=parseInt(t,10);return isNaN(e)?"":a.LOCALE.NUMBERS.wordOrdinal(e)}})),y(new p.Processor("numericOrdinal",{processor:function(t){const e=parseInt(t,10);return isNaN(e)?"":a.LOCALE.NUMBERS.numericOrdinal(e)}})),y(new p.Processor("vulgar",{processor:function(t){const[e,n]=t.split("/").map((t=>parseInt(t,10)));return isNaN(e)||isNaN(n)?"":L("speech",`<mfrac><mn>${e}</mn><mn>${n}</mn></mfrac>`)}}))},2114:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.localePath=e.exit=e.move=e.walk=e.processFile=e.file=e.vulgar=e.numericOrdinal=e.ordinal=e.number=e.toEnriched=e.toDescription=e.toJson=e.toSemantic=e.toSpeech=e.localeLoader=e.engineReady=e.engineSetup=e.setupEngine=e.version=void 0;const i=n(3684),o=n(317),a=n(9686),s=n(3633),l=n(9190),T=n(495),Q=n(6948),c=n(2741);function u(t){return r(this,void 0,void 0,(function*(){return(0,o.setup)(t)}))}function d(t,e){return l.process(t,e)}function h(t,e,n){switch(i.default.getInstance().mode){case a.Mode.ASYNC:return function(t,e,n){return r(this,void 0,void 0,(function*(){const r=yield T.default.fs.promises.readFile(e,{encoding:"utf8"}),o=l.output(t,r);if(n)try{T.default.fs.promises.writeFile(n,o)}catch(t){throw new i.SREError("Can not write to file: "+n)}return o}))}(t,e,n);case a.Mode.SYNC:return function(t,e,n){const r=function(t){let e;try{e=T.default.fs.readFileSync(t,{encoding:"utf8"})}catch(e){throw new i.SREError("Can not open file: "+t)}return e}(e),o=l.output(t,r);if(n)try{T.default.fs.writeFileSync(n,o)}catch(t){throw new i.SREError("Can not write to file: "+n)}return o}(t,e,n);default:throw new i.SREError(`Can process files in ${i.default.getInstance().mode} mode`)}}e.version=Q.Variables.VERSION,e.setupEngine=u,e.engineSetup=function(){const t=["mode"].concat(i.default.STRING_FEATURES,i.default.BINARY_FEATURES),e=i.default.getInstance(),n={};return t.forEach((function(t){n[t]=e[t]})),n.json=T.default.jsonPath,n.xpath=T.default.WGXpath,n.rules=e.ruleSets.slice(),n},e.engineReady=function(){return r(this,void 0,void 0,(function*(){return u({}).then((()=>i.EnginePromise.getall()))}))},e.localeLoader=c.standardLoader,e.toSpeech=function(t){return d("speech",t)},e.toSemantic=function(t){return d("semantic",t)},e.toJson=function(t){return d("json",t)},e.toDescription=function(t){return d("description",t)},e.toEnriched=function(t){return d("enriched",t)},e.number=function(t){return d("number",t)},e.ordinal=function(t){return d("ordinal",t)},e.numericOrdinal=function(t){return d("numericOrdinal",t)},e.vulgar=function(t){return d("vulgar",t)},e.file={},e.file.toSpeech=function(t,e){return h("speech",t,e)},e.file.toSemantic=function(t,e){return h("semantic",t,e)},e.file.toJson=function(t,e){return h("json",t,e)},e.file.toDescription=function(t,e){return h("description",t,e)},e.file.toEnriched=function(t,e){return h("enriched",t,e)},e.processFile=h,e.walk=function(t){return l.output("walker",t)},e.move=function(t){return l.keypress("move",t)},e.exit=function(t){const e=t||0;i.EnginePromise.getall().then((()=>process.exit(e)))},e.localePath=s.localePath,T.default.documentSupported?u({mode:a.Mode.HTTP}).then((()=>u({}))):u({mode:a.Mode.SYNC}).then((()=>u({mode:a.Mode.ASYNC})))},495:(__unused_webpack_module,exports,__nested_webpack_require_45537__)=>{Object.defineProperty(exports,"__esModule",{value:!0});const variables_1=__nested_webpack_require_45537__(6948);class SystemExternal{static extRequire(library){if(void 0!==process){const nodeRequire=eval("require");return nodeRequire(library)}return null}}exports.default=SystemExternal,SystemExternal.windowSupported=!("undefined"==typeof window),SystemExternal.documentSupported=SystemExternal.windowSupported&&!(void 0===window.document),SystemExternal.xmldom=SystemExternal.documentSupported?window:SystemExternal.extRequire("xmldom-sre"),SystemExternal.document=SystemExternal.documentSupported?window.document:(new SystemExternal.xmldom.DOMImplementation).createDocument("","",0),SystemExternal.xpath=SystemExternal.documentSupported?document:function(){const t={document:{},XPathResult:{}};return SystemExternal.extRequire("wicked-good-xpath").install(t),t.document.XPathResult=t.XPathResult,t.document}(),SystemExternal.mathmapsIePath="https://cdn.jsdelivr.net/npm/sre-mathmaps-ie@"+variables_1.Variables.VERSION+"mathmaps_ie.js",SystemExternal.commander=SystemExternal.documentSupported?null:SystemExternal.extRequire("commander"),SystemExternal.fs=SystemExternal.documentSupported?null:SystemExternal.extRequire("fs"),SystemExternal.url=variables_1.Variables.url,SystemExternal.jsonPath=(SystemExternal.documentSupported?SystemExternal.url:process.env.SRE_JSON_PATH||__nested_webpack_require_45537__.g.SRE_JSON_PATH||__dirname+"/mathmaps")+"/",SystemExternal.WGXpath=variables_1.Variables.WGXpath,SystemExternal.wgxpath=null},6948:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Variables=void 0;class n{static ensureLocale(t,e){return n.LOCALES.get(t)?t:(console.error(`Locale ${t} does not exist! Using ${n.LOCALES.get(e)} instead.`),e)}}e.Variables=n,n.VERSION="4.0.6",n.LOCALES=new Map([["ca","Catalan"],["da","Danish"],["de","German"],["en","English"],["es","Spanish"],["fr","French"],["hi","Hindi"],["it","Italian"],["nb","Bokmål"],["nn","Nynorsk"],["sv","Swedish"],["nemeth","Nemeth"]]),n.mathjaxVersion="3.2.1",n.url="https://cdn.jsdelivr.net/npm/speech-rule-engine@"+n.VERSION+"/lib/mathmaps",n.WGXpath="https://cdn.jsdelivr.net/npm/wicked-good-xpath@1.3.0/dist/wgxpath.install.js"},1746:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.updateEvaluator=e.evaluateString=e.evaluateBoolean=e.getLeafNodes=e.evalXPath=e.resolveNameSpace=e.xpath=void 0;const r=n(3684),i=n(9686),o=n(495);function a(){return"undefined"!=typeof XPathResult}e.xpath={currentDocument:null,evaluate:a()?document.evaluate:o.default.xpath.evaluate,result:a()?XPathResult:o.default.xpath.XPathResult,createNSResolver:a()?document.createNSResolver:o.default.xpath.createNSResolver};const s={xhtml:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",mml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function l(t){return s[t]||null}e.resolveNameSpace=l;class T{constructor(){this.lookupNamespaceURI=l}}function Q(t,n,o){return r.default.getInstance().mode!==i.Mode.HTTP||r.default.getInstance().isIE||r.default.getInstance().isEdge?e.xpath.evaluate(t,n,new T,o,null):e.xpath.currentDocument.evaluate(t,n,l,o,null)}function c(t,n){let r;try{r=Q(t,n,e.xpath.result.ORDERED_NODE_ITERATOR_TYPE)}catch(t){return[]}const i=[];for(let t=r.iterateNext();t;t=r.iterateNext())i.push(t);return i}e.evalXPath=c,e.getLeafNodes=function(t){return c(".//*[count(*)=0]",t)},e.evaluateBoolean=function(t,n){let r;try{r=Q(t,n,e.xpath.result.BOOLEAN_TYPE)}catch(t){return!1}return r.booleanValue},e.evaluateString=function(t,n){let r;try{r=Q(t,n,e.xpath.result.STRING_TYPE)}catch(t){return""}return r.stringValue},e.updateEvaluator=function(t){if(r.default.getInstance().mode!==i.Mode.HTTP)return;let n=t;for(;n&&!n.evaluate;)n=n.parentNode;n&&n.evaluate?e.xpath.currentDocument=n:t.ownerDocument&&(e.xpath.currentDocument=t.ownerDocument)}},9492:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractEnrichCase=void 0,e.AbstractEnrichCase=class{constructor(t){this.semantic=t}}},1475:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseBinomial=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return!t.mathmlTree&&"line"===t.type&&"binomial"===t.role}getMathml(){if(!this.semantic.childNodes.length)return this.mml;const t=this.semantic.childNodes[0];if(this.mml=(0,o.walkTree)(t),this.mml.hasAttribute(a.Attribute.TYPE)){const t=r.createElement("mrow");t.setAttribute(a.Attribute.ADDED,"true"),r.replaceNode(this.mml,t),t.appendChild(this.mml),this.mml=t}return(0,a.setAttributes)(this.mml,this.semantic),this.mml}}e.CaseBinomial=s},4009:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseDoubleScript=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){if(!t.mathmlTree||!t.childNodes.length)return!1;const e=r.tagName(t.mathmlTree),n=t.childNodes[0].role;return"MSUBSUP"===e&&"subsup"===n||"MUNDEROVER"===e&&"underover"===n}getMathml(){const t=this.semantic.childNodes[0],e=t.childNodes[0],n=this.semantic.childNodes[1],r=t.childNodes[1],i=o.walkTree(n),s=o.walkTree(e),l=o.walkTree(r);return(0,a.setAttributes)(this.mml,this.semantic),this.mml.setAttribute(a.Attribute.CHILDREN,(0,a.makeIdList)([e,r,n])),[s,l,i].forEach((t=>o.getInnerNode(t).setAttribute(a.Attribute.PARENT,this.mml.getAttribute(a.Attribute.ID)))),this.mml.setAttribute(a.Attribute.TYPE,t.role),o.addCollapsedAttribute(this.mml,[this.semantic.id,[t.id,e.id,r.id],n.id]),this.mml}}e.CaseDoubleScript=s},3008:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseEmbellished=void 0;const r=n(7041),i=n(7603),o=n(9492),a=n(4009),s=n(6844),l=n(8097),T=n(3408),Q=n(7206);class c extends o.AbstractEnrichCase{constructor(t){super(t),this.fenced=null,this.fencedMml=null,this.fencedMmlNodes=[],this.ofence=null,this.ofenceMml=null,this.ofenceMap={},this.cfence=null,this.cfenceMml=null,this.cfenceMap={},this.parentCleanup=[]}static test(t){return!(!t.mathmlTree||!t.fencePointer||t.mathmlTree.getAttribute("data-semantic-type"))}static makeEmptyNode_(t){const e=r.createElement("mrow"),n=new i.SemanticNode(t);return n.type="empty",n.mathmlTree=e,n}static fencedMap_(t,e){e[t.id]=t.mathmlTree,t.embellished&&c.fencedMap_(t.childNodes[0],e)}getMathml(){return this.getFenced_(),this.fencedMml=T.walkTree(this.fenced),this.getFencesMml_(),"empty"!==this.fenced.type||this.fencedMml.parentNode||(this.fencedMml.setAttribute(Q.Attribute.ADDED,"true"),this.cfenceMml.parentNode.insertBefore(this.fencedMml,this.cfenceMml)),this.getFencedMml_(),this.rewrite_()}fencedElement(t){return"fenced"===t.type||"matrix"===t.type||"vector"===t.type}getFenced_(){let t=this.semantic;for(;!this.fencedElement(t);)t=t.childNodes[0];this.fenced=t.childNodes[0],this.ofence=t.contentNodes[0],this.cfence=t.contentNodes[1],c.fencedMap_(this.ofence,this.ofenceMap),c.fencedMap_(this.cfence,this.cfenceMap)}getFencedMml_(){let t=this.ofenceMml.nextSibling;for(t=t===this.fencedMml?t:this.fencedMml;t&&t!==this.cfenceMml;)this.fencedMmlNodes.push(t),t=t.nextSibling}getFencesMml_(){let t=this.semantic;const e=Object.keys(this.ofenceMap),n=Object.keys(this.cfenceMap);for(;!(this.ofenceMml&&this.cfenceMml||t===this.fenced);)-1===e.indexOf(t.fencePointer)||this.ofenceMml||(this.ofenceMml=t.mathmlTree),-1===n.indexOf(t.fencePointer)||this.cfenceMml||(this.cfenceMml=t.mathmlTree),t=t.childNodes[0];this.ofenceMml||(this.ofenceMml=this.ofence.mathmlTree),this.cfenceMml||(this.cfenceMml=this.cfence.mathmlTree),this.ofenceMml&&(this.ofenceMml=T.ascendNewNode(this.ofenceMml)),this.cfenceMml&&(this.cfenceMml=T.ascendNewNode(this.cfenceMml))}rewrite_(){let t=this.semantic,e=null;const n=this.introduceNewLayer_();for((0,Q.setAttributes)(n,this.fenced.parent);!this.fencedElement(t);){const i=t.mathmlTree,o=this.specialCase_(t,i);if(o)t=o;else{(0,Q.setAttributes)(i,t);const e=[];for(let n,r=1;n=t.childNodes[r];r++)e.push(T.walkTree(n));t=t.childNodes[0]}const a=r.createElement("dummy"),s=i.childNodes[0];r.replaceNode(i,a),r.replaceNode(n,i),r.replaceNode(i.childNodes[0],n),r.replaceNode(a,s),e||(e=i)}return T.walkTree(this.ofence),T.walkTree(this.cfence),this.cleanupParents_(),e||n}specialCase_(t,e){const n=r.tagName(e);let i,o=null;if("MSUBSUP"===n?(o=t.childNodes[0],i=a.CaseDoubleScript):"MMULTISCRIPTS"===n&&("superscript"===t.type||"subscript"===t.type?i=s.CaseMultiscripts:"tensor"===t.type&&(i=l.CaseTensor),o=i&&t.childNodes[0]&&"subsup"===t.childNodes[0].role?t.childNodes[0]:t),!o)return null;const T=o.childNodes[0],Q=c.makeEmptyNode_(T.id);return o.childNodes[0]=Q,e=new i(t).getMathml(),o.childNodes[0]=T,this.parentCleanup.push(e),o.childNodes[0]}introduceNewLayer_(){const t=this.fullFence(this.ofenceMml),e=this.fullFence(this.cfenceMml);let n=r.createElement("mrow");if(r.replaceNode(this.fencedMml,n),this.fencedMmlNodes.forEach((t=>n.appendChild(t))),n.insertBefore(t,this.fencedMml),n.appendChild(e),!n.parentNode){const t=r.createElement("mrow");for(;n.childNodes.length>0;)t.appendChild(n.childNodes[0]);n.appendChild(t),n=t}return n}fullFence(t){const e=this.fencedMml.parentNode;let n=t;for(;n.parentNode&&n.parentNode!==e;)n=n.parentNode;return n}cleanupParents_(){this.parentCleanup.forEach((function(t){const e=t.childNodes[1].getAttribute(Q.Attribute.PARENT);t.childNodes[0].setAttribute(Q.Attribute.PARENT,e)}))}}e.CaseEmbellished=c},7847:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseLimit=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){if(!t.mathmlTree||!t.childNodes.length)return!1;const e=r.tagName(t.mathmlTree),n=t.type;return("limupper"===n||"limlower"===n)&&("MSUBSUP"===e||"MUNDEROVER"===e)||"limboth"===n&&("MSUB"===e||"MUNDER"===e||"MSUP"===e||"MOVER"===e)}static walkTree_(t){t&&o.walkTree(t)}getMathml(){const t=this.semantic.childNodes;return"limboth"!==this.semantic.type&&this.mml.childNodes.length>=3&&(this.mml=o.introduceNewLayer([this.mml],this.semantic)),(0,a.setAttributes)(this.mml,this.semantic),t[0].mathmlTree||(t[0].mathmlTree=this.semantic.mathmlTree),t.forEach(s.walkTree_),this.mml}}e.CaseLimit=s},520:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseLine=void 0;const r=n(9492),i=n(3408),o=n(7206);class a extends r.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return!!t.mathmlTree&&"line"===t.type}getMathml(){return this.semantic.contentNodes.length&&i.walkTree(this.semantic.contentNodes[0]),this.semantic.childNodes.length&&i.walkTree(this.semantic.childNodes[0]),(0,o.setAttributes)(this.mml,this.semantic),this.mml}}e.CaseLine=a},140:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseMultiindex=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static multiscriptIndex(t){return"punctuated"===t.type&&"dummy"===t.contentNodes[0].role?o.collapsePunctuated(t):(o.walkTree(t),t.id)}static createNone_(t){const e=r.createElement("none");return t&&(0,a.setAttributes)(e,t),e.setAttribute(a.Attribute.ADDED,"true"),e}completeMultiscript(t,e){const n=r.toArray(this.mml.childNodes).slice(1);let i=0;const l=t=>{for(let e,r=0;e=t[r];r++){const t=n[i];if(t&&e===parseInt(o.getInnerNode(t).getAttribute(a.Attribute.ID)))o.getInnerNode(t).setAttribute(a.Attribute.PARENT,this.semantic.id.toString()),i++;else{const n=this.semantic.querySelectorAll((t=>t.id===e));this.mml.insertBefore(s.createNone_(n[0]),t||null)}}};l(t),n[i]&&"MPRESCRIPTS"!==r.tagName(n[i])?this.mml.insertBefore(n[i],r.createElement("mprescripts")):i++,l(e)}}e.CaseMultiindex=s},6844:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseMultiscripts=void 0;const r=n(7041),i=n(5594),o=n(140),a=n(3408),s=n(7206);class l extends o.CaseMultiindex{static test(t){return!!t.mathmlTree&&"MMULTISCRIPTS"===r.tagName(t.mathmlTree)&&("superscript"===t.type||"subscript"===t.type)}constructor(t){super(t)}getMathml(){let t,e,n;if((0,s.setAttributes)(this.mml,this.semantic),this.semantic.childNodes[0]&&"subsup"===this.semantic.childNodes[0].role){const r=this.semantic.childNodes[0];t=r.childNodes[0],e=o.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[1]),n=o.CaseMultiindex.multiscriptIndex(r.childNodes[1]);const l=[this.semantic.id,[r.id,t.id,n],e];a.addCollapsedAttribute(this.mml,l),this.mml.setAttribute(s.Attribute.TYPE,r.role),this.completeMultiscript(i.SemanticSkeleton.interleaveIds(n,e),[])}else{t=this.semantic.childNodes[0],e=o.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[1]);const n=[this.semantic.id,t.id,e];a.addCollapsedAttribute(this.mml,n)}const r=i.SemanticSkeleton.collapsedLeafs(n||[],e),l=a.walkTree(t);return a.getInnerNode(l).setAttribute(s.Attribute.PARENT,this.semantic.id.toString()),r.unshift(t.id),this.mml.setAttribute(s.Attribute.CHILDREN,r.join(",")),this.mml}}e.CaseMultiscripts=l},3805:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseProof=void 0;const r=n(9492),i=n(3408),o=n(7206);class a extends r.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return!!t.mathmlTree&&("inference"===t.type||"premises"===t.type)}getMathml(){return this.semantic.childNodes.length?(this.semantic.contentNodes.forEach((function(t){i.walkTree(t),(0,o.setAttributes)(t.mathmlTree,t)})),this.semantic.childNodes.forEach((function(t){i.walkTree(t)})),(0,o.setAttributes)(this.mml,this.semantic),this.mml.getAttribute("data-semantic-id")===this.mml.getAttribute("data-semantic-parent")&&this.mml.removeAttribute("data-semantic-parent"),this.mml):this.mml}}e.CaseProof=a},7920:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseTable=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.inner=[],this.mml=t.mathmlTree}static test(t){return"matrix"===t.type||"vector"===t.type||"cases"===t.type}getMathml(){const t=o.cloneContentNode(this.semantic.contentNodes[0]),e=this.semantic.contentNodes[1]?o.cloneContentNode(this.semantic.contentNodes[1]):null;if(this.inner=this.semantic.childNodes.map(o.walkTree),this.mml)if("MFENCED"===r.tagName(this.mml)){const n=this.mml.childNodes;this.mml.insertBefore(t,n[0]||null),e&&this.mml.appendChild(e),this.mml=o.rewriteMfenced(this.mml)}else{const n=[t,this.mml];e&&n.push(e),this.mml=o.introduceNewLayer(n,this.semantic)}else this.mml=o.introduceNewLayer([t].concat(this.inner,[e]),this.semantic);return(0,a.setAttributes)(this.mml,this.semantic),this.mml}}e.CaseTable=s},8097:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseTensor=void 0;const r=n(5594),i=n(140),o=n(3408),a=n(7206);class s extends i.CaseMultiindex{static test(t){return!!t.mathmlTree&&"tensor"===t.type}constructor(t){super(t)}getMathml(){o.walkTree(this.semantic.childNodes[0]);const t=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[1]),e=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[2]),n=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[3]),s=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[4]);(0,a.setAttributes)(this.mml,this.semantic);const l=[this.semantic.id,this.semantic.childNodes[0].id,t,e,n,s];o.addCollapsedAttribute(this.mml,l);const T=r.SemanticSkeleton.collapsedLeafs(t,e,n,s);return T.unshift(this.semantic.childNodes[0].id),this.mml.setAttribute(a.Attribute.CHILDREN,T.join(",")),this.completeMultiscript(r.SemanticSkeleton.interleaveIds(n,s),r.SemanticSkeleton.interleaveIds(t,e)),this.mml}}e.CaseTensor=s},5360:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseText=void 0;const r=n(9492),i=n(3408),o=n(7206);class a extends r.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return"punctuated"===t.type&&("text"===t.role||t.contentNodes.every((t=>"dummy"===t.role)))}getMathml(){const t=[],e=i.collapsePunctuated(this.semantic,t);return this.mml=i.introduceNewLayer(t,this.semantic),(0,o.setAttributes)(this.mml,this.semantic),this.mml.removeAttribute(o.Attribute.CONTENT),i.addCollapsedAttribute(this.mml,e),this.mml}}e.CaseText=a},7059:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.prepareMmlString=e.testTranslation=e.semanticMathml=e.semanticMathmlSync=e.semanticMathmlNode=void 0;const r=n(5605),i=n(7041),o=n(3684),a=n(6256),s=n(3408);function l(t){const e=i.cloneNode(t),n=a.getTree(e);return s.enrich(e,n)}function T(t){return l(i.parseInput(t))}function Q(t){return t.match(/^<math/)||(t="<math>"+t),t.match(/\/math>$/)||(t+="</math>"),t}n(2156),e.semanticMathmlNode=l,e.semanticMathmlSync=T,e.semanticMathml=function(t,e){o.EnginePromise.getall().then((()=>{const n=i.parseInput(t);e(l(n))}))},e.testTranslation=function(t){r.Debugger.getInstance().init();const e=T(Q(t));return r.Debugger.getInstance().exit(),e},e.prepareMmlString=Q},7206:(t,e)=>{var n;function r(t){return t.map((function(t){return t.id})).join(",")}function i(t,e){const r=[];"mglyph"===e.role&&r.push("image"),e.attributes.href&&r.push("link"),r.length&&t.setAttribute(n.POSTFIX,r.join(" "))}Object.defineProperty(e,"__esModule",{value:!0}),e.addPrefix=e.removeAttributePrefix=e.setPostfix=e.setAttributes=e.makeIdList=e.EnrichAttributes=e.Attribute=e.Prefix=void 0,e.Prefix="data-semantic-",function(t){t.ADDED="data-semantic-added",t.ALTERNATIVE="data-semantic-alternative",t.CHILDREN="data-semantic-children",t.COLLAPSED="data-semantic-collapsed",t.CONTENT="data-semantic-content",t.EMBELLISHED="data-semantic-embellished",t.FENCEPOINTER="data-semantic-fencepointer",t.FONT="data-semantic-font",t.ID="data-semantic-id",t.ANNOTATION="data-semantic-annotation",t.ATTRIBUTES="data-semantic-attributes",t.OPERATOR="data-semantic-operator",t.OWNS="data-semantic-owns",t.PARENT="data-semantic-parent",t.POSTFIX="data-semantic-postfix",t.PREFIX="data-semantic-prefix",t.ROLE="data-semantic-role",t.SPEECH="data-semantic-speech",t.STRUCTURE="data-semantic-structure",t.TYPE="data-semantic-type"}(n=e.Attribute||(e.Attribute={})),e.EnrichAttributes=[n.ADDED,n.ALTERNATIVE,n.CHILDREN,n.COLLAPSED,n.CONTENT,n.EMBELLISHED,n.FENCEPOINTER,n.FONT,n.ID,n.ANNOTATION,n.ATTRIBUTES,n.OPERATOR,n.OWNS,n.PARENT,n.POSTFIX,n.PREFIX,n.ROLE,n.SPEECH,n.STRUCTURE,n.TYPE],e.makeIdList=r,e.setAttributes=function(t,o){t.setAttribute(n.TYPE,o.type);const a=o.allAttributes();for(let n,r=0;n=a[r];r++)t.setAttribute(e.Prefix+n[0].toLowerCase(),n[1]);o.childNodes.length&&t.setAttribute(n.CHILDREN,r(o.childNodes)),o.contentNodes.length&&t.setAttribute(n.CONTENT,r(o.contentNodes)),o.parent&&t.setAttribute(n.PARENT,o.parent.id.toString());const s=o.attributesXml();s&&t.setAttribute(n.ATTRIBUTES,s),i(t,o)},e.setPostfix=i,e.removeAttributePrefix=function(t){return t.toString().replace(new RegExp(e.Prefix,"g"),"")},e.addPrefix=function(t){return e.Prefix+t}},364:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.factory=e.getCase=void 0,e.getCase=function(t){for(let n,r=0;n=e.factory[r];r++)if(n.test(t))return n.constr(t);return null},e.factory=[]},2156:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(1475),i=n(4009),o=n(3008),a=n(7847),s=n(520),l=n(6844),T=n(3805),Q=n(7920),c=n(8097),u=n(5360);n(364).factory.push({test:a.CaseLimit.test,constr:t=>new a.CaseLimit(t)},{test:o.CaseEmbellished.test,constr:t=>new o.CaseEmbellished(t)},{test:i.CaseDoubleScript.test,constr:t=>new i.CaseDoubleScript(t)},{test:c.CaseTensor.test,constr:t=>new c.CaseTensor(t)},{test:l.CaseMultiscripts.test,constr:t=>new l.CaseMultiscripts(t)},{test:s.CaseLine.test,constr:t=>new s.CaseLine(t)},{test:r.CaseBinomial.test,constr:t=>new r.CaseBinomial(t)},{test:T.CaseProof.test,constr:t=>new T.CaseProof(t)},{test:Q.CaseTable.test,constr:t=>new Q.CaseTable(t)},{test:u.CaseText.test,constr:t=>new u.CaseText(t)})},3408:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.printNodeList__=e.collapsePunctuated=e.getInnerNode=e.setOperatorAttribute_=e.createInvisibleOperator_=e.rewriteMfenced=e.cloneContentNode=e.addCollapsedAttribute=e.parentNode_=e.isIgnorable_=e.unitChild_=e.descendNode_=e.ascendNewNode=e.validLca_=e.pathToRoot_=e.attachedElement_=e.prunePath_=e.mathmlLca_=e.lcaType=e.functionApplication_=e.isDescendant_=e.insertNewChild_=e.mergeChildren_=e.collectChildNodes_=e.collateChildNodes_=e.childrenSubset_=e.moveSemanticAttributes_=e.introduceLayerAboveLca=e.introduceNewLayer=e.walkTree=e.enrich=e.SETTINGS=void 0;const r=n(5605),i=n(7041),o=n(3684),a=n(218),s=n(9156),l=n(5594),T=n(8478),Q=n(7206),c=n(364);function u(t){const e=(0,c.getCase)(t);let n;if(e)return n=e.getMathml(),S(n);if(1===t.mathml.length)return r.Debugger.getInstance().output("Walktree Case 0"),n=t.mathml[0],Q.setAttributes(n,t),t.childNodes.length&&(r.Debugger.getInstance().output("Walktree Case 0.1"),t.childNodes.forEach((function(t){"empty"===t.type&&n.appendChild(u(t))}))),S(n);const i=t.contentNodes.map(N);R(t,i);const o=t.childNodes.map(u),a=l.SemanticSkeleton.combineContentChildren(t,i,o);if(n=t.mathmlTree,null===n)r.Debugger.getInstance().output("Walktree Case 1"),n=d(a,t);else{const t=w(a);r.Debugger.getInstance().output("Walktree Case 2"),t?(r.Debugger.getInstance().output("Walktree Case 2.1"),n=t.parentNode):(r.Debugger.getInstance().output("Walktree Case 2.2"),n=k(n))}return n=I(n),g(n,a,t),Q.setAttributes(n,t),S(n)}function d(t,e){const n=_(t);let o=n.node;const a=n.type;if(a!==x.VALID||!T.hasEmptyTag(o))if(r.Debugger.getInstance().output("Walktree Case 1.1"),o=i.createElement("mrow"),a===x.PRUNED)r.Debugger.getInstance().output("Walktree Case 1.1.0"),o=h(o,n.node,t);else if(t[0]){r.Debugger.getInstance().output("Walktree Case 1.1.1");const e=w(t),n=m(e.parentNode,t);i.replaceNode(e,o),n.forEach((function(t){o.appendChild(t)}))}return e.mathmlTree||(e.mathmlTree=o),o}function h(t,e,n){let o=E(e);if(T.hasMathTag(o)){r.Debugger.getInstance().output("Walktree Case 1.1.0.0"),p(o,t),i.toArray(o.childNodes).forEach((function(e){t.appendChild(e)}));const e=t;t=o,o=e}const a=n.indexOf(e);return n[a]=o,i.replaceNode(o,t),t.appendChild(o),n.forEach((function(e){t.appendChild(e)})),t}function p(t,e){for(const n of Q.EnrichAttributes)t.hasAttribute(n)&&(e.setAttribute(n,t.getAttribute(n)),t.removeAttribute(n))}function m(t,e){const n=i.toArray(t.childNodes);let r=1/0,o=-1/0;return e.forEach((function(t){const e=n.indexOf(t);-1!==e&&(r=Math.min(r,e),o=Math.max(o,e))})),n.slice(r,o+1)}function f(t,e,n){const r=[];let o=i.toArray(t.childNodes),a=!1;for(;o.length;){const t=o.shift();if(t.hasAttribute(Q.Attribute.TYPE)){r.push(t);continue}const e=y(t);0!==e.length&&(1!==e.length?(a?t.setAttribute("AuxiliaryImplicit",!0):a=!0,o=e.concat(o)):r.push(t))}const s=[],l=n.childNodes.map((function(t){return t.mathmlTree}));for(;l.length;){const t=l.pop();if(t){if(-1!==r.indexOf(t))break;-1!==e.indexOf(t)&&s.unshift(t)}}return r.concat(s)}function y(t){const e=[];let n=i.toArray(t.childNodes);for(;n.length;){const t=n.shift();t.nodeType===i.NodeType.ELEMENT_NODE&&(t.hasAttribute(Q.Attribute.TYPE)?e.push(t):n=i.toArray(t.childNodes).concat(n))}return e}function g(t,e,n){const r="implicit"===n.role&&s.flags.combine_juxtaposition?f(t,e,n):i.toArray(t.childNodes);if(!r.length)return void e.forEach((function(e){t.appendChild(e)}));let o=0;for(;e.length;){const n=e[0];r[o]===n||v(r[o],n)?(e.shift(),o++):r[o]&&-1===e.indexOf(r[o])?o++:(b(n,t)||L(t,r[o],n),e.shift())}}function L(t,e,n){if(!e)return void t.insertBefore(n,null);let r=e,i=V(r);for(;i&&i.firstChild===r&&!r.hasAttribute("AuxiliaryImplicit")&&i!==t;)r=i,i=V(r);i&&(i.insertBefore(n,r),r.removeAttribute("AuxiliaryImplicit"))}function b(t,e){if(!t)return!1;do{if((t=t.parentNode)===e)return!0}while(t);return!1}function v(t,e){const n=a.functionApplication();if(t&&e&&t.textContent&&e.textContent&&t.textContent===n&&e.textContent===n&&"true"===e.getAttribute(Q.Attribute.ADDED)){for(let n,r=0;n=t.attributes[r];r++)e.hasAttribute(n.nodeName)||e.setAttribute(n.nodeName,n.nodeValue);return i.replaceNode(t,e),!0}return!1}var x;function _(t){const e=w(t);if(!e)return{type:x.INVALID,node:null};const n=w(t.slice().reverse());if(e===n)return{type:x.VALID,node:e};const r=O(e),i=H(r,t),o=O(n,(function(t){return-1!==i.indexOf(t)})),a=o[0],s=i.indexOf(a);return-1===s?{type:x.INVALID,node:null}:{type:i.length!==r.length?x.PRUNED:M(i[s+1],o[1])?x.VALID:x.INVALID,node:a}}function H(t,e){let n=0;for(;t[n]&&-1===e.indexOf(t[n]);)n++;return t.slice(0,n+1)}function w(t){let e=0,n=null;for(;!n&&e<t.length;)t[e].parentNode&&(n=t[e]),e++;return n}function O(t,e){const n=e||(t=>!1),r=[t];for(;!n(t)&&!T.hasMathTag(t)&&t.parentNode;)t=V(t),r.unshift(t);return r}function M(t,e){return!(!t||!e||t.previousSibling||e.nextSibling)}function S(t){for(;!T.hasMathTag(t)&&A(t);)t=V(t);return t}function E(t){const e=i.toArray(t.childNodes);if(!e)return t;const n=e.filter((function(t){return t.nodeType===i.NodeType.ELEMENT_NODE&&!T.hasIgnoreTag(t)}));return 1===n.length&&T.hasEmptyTag(n[0])&&!n[0].hasAttribute(Q.Attribute.TYPE)?E(n[0]):t}function A(t){const e=V(t);return!(!e||!T.hasEmptyTag(e))&&i.toArray(e.childNodes).every((function(e){return e===t||C(e)}))}function C(t){if(t.nodeType!==i.NodeType.ELEMENT_NODE)return!0;if(!t||T.hasIgnoreTag(t))return!0;const e=i.toArray(t.childNodes);return!(!T.hasEmptyTag(t)&&e.length||T.hasDisplayTag(t)||t.hasAttribute(Q.Attribute.TYPE)||T.isOrphanedGlyph(t))&&i.toArray(t.childNodes).every(C)}function V(t){return t.parentNode}function N(t){if(t.mathml.length)return u(t);const n=e.SETTINGS.implicit?P(t):i.createElement("mrow");return t.mathml=[n],n}function I(t){if("MFENCED"!==i.tagName(t))return t;const e=i.createElement("mrow");for(let n,r=0;n=t.attributes[r];r++)-1===["open","close","separators"].indexOf(n.name)&&e.setAttribute(n.name,n.value);return i.toArray(t.childNodes).forEach((function(t){e.appendChild(t)})),i.replaceNode(t,e),e}function P(t){const e=i.createElement("mo"),n=i.createTextNode(t.textContent);return e.appendChild(n),Q.setAttributes(e,t),e.setAttribute(Q.Attribute.ADDED,"true"),e}function R(t,e){const n=t.type+(t.textContent?","+t.textContent:"");e.forEach((function(t){k(t).setAttribute(Q.Attribute.OPERATOR,n)}))}function k(t){const e=i.toArray(t.childNodes);if(!e)return t;const n=e.filter((function(t){return!C(t)})),r=[];for(let t,e=0;t=n[e];e++)if(T.hasEmptyTag(t)){const e=k(t);e&&e!==t&&r.push(e)}else r.push(t);return 1===r.length?r[0]:t}function D(t,e,n=!1){const r=Q.removeAttributePrefix(i.formatXml(t.toString()));return n?e+":\n```html\n"+r+"\n```\n":r}e.SETTINGS={collapsed:!0,implicit:!0,wiki:!0},e.enrich=function(t,n){const a=i.cloneNode(t);return u(n.root),o.default.getInstance().structure&&t.setAttribute(Q.Attribute.STRUCTURE,l.SemanticSkeleton.fromStructure(t,n).toString()),r.Debugger.getInstance().generateOutput((()=>[D(a,"Original MathML",e.SETTINGS.wiki),D(n,"Semantic Tree",e.SETTINGS.wiki),D(t,"Semantically enriched MathML",e.SETTINGS.wiki)])),t},e.walkTree=u,e.introduceNewLayer=d,e.introduceLayerAboveLca=h,e.moveSemanticAttributes_=p,e.childrenSubset_=m,e.collateChildNodes_=f,e.collectChildNodes_=y,e.mergeChildren_=g,e.insertNewChild_=L,e.isDescendant_=b,e.functionApplication_=v,function(t){t.VALID="valid",t.INVALID="invalid",t.PRUNED="pruned"}(x=e.lcaType||(e.lcaType={})),e.mathmlLca_=_,e.prunePath_=H,e.attachedElement_=w,e.pathToRoot_=O,e.validLca_=M,e.ascendNewNode=S,e.descendNode_=E,e.unitChild_=A,e.isIgnorable_=C,e.parentNode_=V,e.addCollapsedAttribute=function(t,e){const n=new l.SemanticSkeleton(e);t.setAttribute(Q.Attribute.COLLAPSED,n.toString())},e.cloneContentNode=N,e.rewriteMfenced=I,e.createInvisibleOperator_=P,e.setOperatorAttribute_=R,e.getInnerNode=k,e.collapsePunctuated=function(t,e){const n=!!e,r=e||[],i=t.parent,o=t.contentNodes.map((function(t){return t.id}));o.unshift("c");const a=[t.id,o];for(let e,o=0;e=t.childNodes[o];o++){const t=u(e);r.push(t);const o=k(t);i&&!n&&o.setAttribute(Q.Attribute.PARENT,i.id.toString()),a.push(e.id)}return a},e.printNodeList__=function(t,e){console.info(t),i.toArray(e).forEach((function(t){console.info(t.toString())})),console.info("<<<<<<<<<<<<<<<<<")}},256:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractHighlighter=void 0;const r=n(1746),i=n(7206);class o{constructor(){this.color=null,this.mactionName="",this.currentHighlights=[]}highlight(t){this.currentHighlights.push(t.map((t=>{const e=this.highlightNode(t);return this.setHighlighted(t),e})))}highlightAll(t){const e=this.getMactionNodes(t);for(let t,n=0;t=e[n];n++)this.highlight([t])}unhighlight(){const t=this.currentHighlights.pop();t&&t.forEach((t=>{this.isHighlighted(t.node)&&(this.unhighlightNode(t),this.unsetHighlighted(t.node))}))}unhighlightAll(){for(;this.currentHighlights.length>0;)this.unhighlight()}setColor(t){this.color=t}colorString(){return this.color.rgba()}addEvents(t,e){const n=this.getMactionNodes(t);for(let t,r=0;t=n[r];r++)for(const n in e)t.addEventListener(n,e[n])}getMactionNodes(t){return Array.from(t.getElementsByClassName(this.mactionName))}isMactionNode(t){const e=t.className||t.getAttribute("class");return!!e&&!!e.match(new RegExp(this.mactionName))}isHighlighted(t){return t.hasAttribute(o.ATTR)}setHighlighted(t){t.setAttribute(o.ATTR,"true")}unsetHighlighted(t){t.removeAttribute(o.ATTR)}colorizeAll(t){r.evalXPath(`.//*[@${i.Attribute.ID}]`,t).forEach((t=>this.colorize(t)))}uncolorizeAll(t){r.evalXPath(`.//*[@${i.Attribute.ID}]`,t).forEach((t=>this.uncolorize(t)))}colorize(t){const e=(0,i.addPrefix)("foreground");t.hasAttribute(e)&&(t.setAttribute(e+"-old",t.style.color),t.style.color=t.getAttribute(e))}uncolorize(t){const e=(0,i.addPrefix)("foreground")+"-old";t.hasAttribute(e)&&(t.style.color=t.getAttribute(e))}}e.AbstractHighlighter=o,o.ATTR="sre-highlight"},823:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChtmlHighlighter=void 0;const r=n(6732);class i extends r.CssHighlighter{constructor(){super()}isMactionNode(t){return t.tagName.toUpperCase()===this.mactionName.toUpperCase()}getMactionNodes(t){return Array.from(t.getElementsByTagName(this.mactionName))}}e.ChtmlHighlighter=i},4881:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ContrastPicker=e.ColorPicker=void 0;const n={red:{red:255,green:0,blue:0},green:{red:0,green:255,blue:0},blue:{red:0,green:0,blue:255},yellow:{red:255,green:255,blue:0},cyan:{red:0,green:255,blue:255},magenta:{red:255,green:0,blue:255},white:{red:255,green:255,blue:255},black:{red:0,green:0,blue:0}};function r(t,e){const r=t||{color:e};let i=Object.prototype.hasOwnProperty.call(r,"color")?n[r.color]:r;return i||(i=n[e]),i.alpha=Object.prototype.hasOwnProperty.call(r,"alpha")?r.alpha:1,function(t){const e=t=>(t=Math.max(t,0),t=Math.min(255,t),Math.round(t));return t.red=e(t.red),t.green=e(t.green),t.blue=e(t.blue),t.alpha=Math.max(t.alpha,0),t.alpha=Math.min(1,t.alpha),t}(i)}class i{constructor(t,e){this.foreground=r(e,i.DEFAULT_FOREGROUND_),this.background=r(t,i.DEFAULT_BACKGROUND_)}static toHex(t){const e=t.toString(16);return 1===e.length?"0"+e:e}rgba(){const t=function(t){return"rgba("+t.red+","+t.green+","+t.blue+","+t.alpha+")"};return{background:t(this.background),foreground:t(this.foreground)}}rgb(){const t=function(t){return"rgb("+t.red+","+t.green+","+t.blue+")"};return{background:t(this.background),alphaback:this.background.alpha.toString(),foreground:t(this.foreground),alphafore:this.foreground.alpha.toString()}}hex(){const t=function(t){return"#"+i.toHex(t.red)+i.toHex(t.green)+i.toHex(t.blue)};return{background:t(this.background),alphaback:this.background.alpha.toString(),foreground:t(this.foreground),alphafore:this.foreground.alpha.toString()}}}e.ColorPicker=i,i.DEFAULT_BACKGROUND_="blue",i.DEFAULT_FOREGROUND_="black",e.ContrastPicker=class{constructor(){this.hue=10,this.sat=100,this.light=50,this.incr=50}generate(){return e=function(t,e,n){e=e>1?e/100:e,n=n>1?n/100:n;const r=(1-Math.abs(2*n-1))*e,i=r*(1-Math.abs(t/60%2-1)),o=n-r/2;let a=0,s=0,l=0;return 0<=t&&t<60?[a,s,l]=[r,i,0]:60<=t&&t<120?[a,s,l]=[i,r,0]:120<=t&&t<180?[a,s,l]=[0,r,i]:180<=t&&t<240?[a,s,l]=[0,i,r]:240<=t&&t<300?[a,s,l]=[i,0,r]:300<=t&&t<360&&([a,s,l]=[r,0,i]),{red:a+o,green:s+o,blue:l+o}}(this.hue,this.sat,this.light),"rgb("+(t={red:Math.round(255*e.red),green:Math.round(255*e.green),blue:Math.round(255*e.blue)}).red+","+t.green+","+t.blue+")";var t,e}increment(){this.hue=(this.hue+this.incr)%360}}},6732:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CssHighlighter=void 0;const r=n(256);class i extends r.AbstractHighlighter{constructor(){super(),this.mactionName="mjx-maction"}highlightNode(t){const e={node:t,background:t.style.backgroundColor,foreground:t.style.color},n=this.colorString();return t.style.backgroundColor=n.background,t.style.color=n.foreground,e}unhighlightNode(t){t.node.style.backgroundColor=t.background,t.node.style.color=t.foreground}}e.CssHighlighter=i},7022:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.highlighterMapping_=e.addEvents=e.highlighter=void 0;const r=n(823),i=n(4881),o=n(6732),a=n(4835),s=n(158),l=n(7615),T=n(3191),Q=n(3278);e.highlighter=function(t,n,r){const o=new i.ColorPicker(t,n),a="NativeMML"===r.renderer&&"Safari"===r.browser?"MML-CSS":"SVG"===r.renderer&&"v3"===r.browser?"SVG-V3":r.renderer,s=new(e.highlighterMapping_[a]||e.highlighterMapping_.NativeMML);return s.setColor(o),s},e.addEvents=function(t,n,r){const i=e.highlighterMapping_[r.renderer];i&&(new i).addEvents(t,n)},e.highlighterMapping_={SVG:T.SvgHighlighter,"SVG-V3":Q.SvgV3Highlighter,NativeMML:l.MmlHighlighter,"HTML-CSS":a.HtmlHighlighter,"MML-CSS":s.MmlCssHighlighter,CommonHTML:o.CssHighlighter,CHTML:r.ChtmlHighlighter}},4835:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.HtmlHighlighter=void 0;const r=n(7041),i=n(256);class o extends i.AbstractHighlighter{constructor(){super(),this.mactionName="maction"}highlightNode(t){const e={node:t,foreground:t.style.color,position:t.style.position},n=this.color.rgb();t.style.color=n.foreground,t.style.position="relative";const i=t.bbox;if(i&&i.w){const o=.05,a=0,s=r.createElement("span"),l=parseFloat(t.style.paddingLeft||"0");s.style.backgroundColor=n.background,s.style.opacity=n.alphaback.toString(),s.style.display="inline-block",s.style.height=i.h+i.d+2*o+"em",s.style.verticalAlign=-i.d+"em",s.style.marginTop=s.style.marginBottom=-o+"em",s.style.width=i.w+2*a+"em",s.style.marginLeft=l-a+"em",s.style.marginRight=-i.w-a-l+"em",t.parentNode.insertBefore(s,t),e.box=s}return e}unhighlightNode(t){const e=t.node;e.style.color=t.foreground,e.style.position=t.position,t.box&&t.box.parentNode.removeChild(t.box)}}e.HtmlHighlighter=o},158:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MmlCssHighlighter=void 0;const r=n(6732);class i extends r.CssHighlighter{constructor(){super(),this.mactionName="maction"}getMactionNodes(t){return Array.from(t.getElementsByTagName(this.mactionName))}isMactionNode(t){return t.tagName===this.mactionName}}e.MmlCssHighlighter=i},7615:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MmlHighlighter=void 0;const r=n(256);class i extends r.AbstractHighlighter{constructor(){super(),this.mactionName="maction"}highlightNode(t){let e=t.getAttribute("style");return e+=";background-color: "+this.colorString().background,e+=";color: "+this.colorString().foreground,t.setAttribute("style",e),{node:t}}unhighlightNode(t){let e=t.node.getAttribute("style");e=e.replace(";background-color: "+this.colorString().background,""),e=e.replace(";color: "+this.colorString().foreground,""),t.node.setAttribute("style",e)}colorString(){return this.color.rgba()}getMactionNodes(t){return Array.from(t.getElementsByTagName(this.mactionName))}isMactionNode(t){return t.tagName===this.mactionName}}e.MmlHighlighter=i},3191:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SvgHighlighter=void 0;const r=n(7041),i=n(256);class o extends i.AbstractHighlighter{constructor(){super(),this.mactionName="mjx-svg-maction"}highlightNode(t){let e;if(this.isHighlighted(t))return e={node:t.previousSibling||t,background:t.style.backgroundColor,foreground:t.style.color},e;if("svg"===t.tagName){const e={node:t,background:t.style.backgroundColor,foreground:t.style.color};return t.style.backgroundColor=this.colorString().background,t.style.color=this.colorString().foreground,e}const n=r.createElementNS("http://www.w3.org/2000/svg","rect");let o;if("use"===t.nodeName){const e=r.createElementNS("http://www.w3.org/2000/svg","g");t.parentNode.insertBefore(e,t),e.appendChild(t),o=e.getBBox(),e.parentNode.replaceChild(t,e)}else o=t.getBBox();n.setAttribute("x",(o.x-40).toString()),n.setAttribute("y",(o.y-40).toString()),n.setAttribute("width",(o.width+80).toString()),n.setAttribute("height",(o.height+80).toString());const a=t.getAttribute("transform");return a&&n.setAttribute("transform",a),n.setAttribute("fill",this.colorString().background),n.setAttribute(i.AbstractHighlighter.ATTR,"true"),t.parentNode.insertBefore(n,t),e={node:n,foreground:t.getAttribute("fill")},t.setAttribute("fill",this.colorString().foreground),e}setHighlighted(t){"svg"===t.tagName&&super.setHighlighted(t)}unhighlightNode(t){if("background"in t)return t.node.style.backgroundColor=t.background,void(t.node.style.color=t.foreground);t.foreground?t.node.nextSibling.setAttribute("fill",t.foreground):t.node.nextSibling.removeAttribute("fill"),t.node.parentNode.removeChild(t.node)}isMactionNode(t){let e=t.className||t.getAttribute("class");return e=void 0!==e.baseVal?e.baseVal:e,!!e&&!!e.match(new RegExp(this.mactionName))}}e.SvgHighlighter=o},3278:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SvgV3Highlighter=void 0;const r=n(7041),i=n(1746),o=n(256),a=n(4881),s=n(3191);class l extends s.SvgHighlighter{constructor(){super(),this.mactionName="maction"}highlightNode(t){let e;if(this.isHighlighted(t))return e={node:t,background:this.colorString().background,foreground:this.colorString().foreground},e;if("svg"===t.tagName||"MJX-CONTAINER"===t.tagName)return e={node:t,background:t.style.backgroundColor,foreground:t.style.color},t.style.backgroundColor=this.colorString().background,t.style.color=this.colorString().foreground,e;const n=r.createElementNS("http://www.w3.org/2000/svg","rect");n.setAttribute("sre-highlighter-added","true");const i=t.getBBox();n.setAttribute("x",(i.x-40).toString()),n.setAttribute("y",(i.y-40).toString()),n.setAttribute("width",(i.width+80).toString()),n.setAttribute("height",(i.height+80).toString());const s=t.getAttribute("transform");if(s&&n.setAttribute("transform",s),n.setAttribute("fill",this.colorString().background),t.setAttribute(o.AbstractHighlighter.ATTR,"true"),t.parentNode.insertBefore(n,t),e={node:t,foreground:t.getAttribute("fill")},"rect"===t.nodeName){const e=new a.ColorPicker({alpha:0,color:"black"});t.setAttribute("fill",e.rgba().foreground)}else t.setAttribute("fill",this.colorString().foreground);return e}unhighlightNode(t){const e=t.node.previousSibling;if(e&&e.hasAttribute("sre-highlighter-added"))return t.foreground?t.node.setAttribute("fill",t.foreground):t.node.removeAttribute("fill"),void t.node.parentNode.removeChild(e);t.node.style.backgroundColor=t.background,t.node.style.color=t.foreground}isMactionNode(t){return t.getAttribute("data-mml-node")===this.mactionName}getMactionNodes(t){return Array.from(i.evalXPath(`.//*[@data-mml-node="${this.mactionName}"]`,t))}}e.SvgV3Highlighter=l},8729:function(t,e,n){var r=this&&this.__createBinding||(Object.create?function(t,e,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(e,n);i&&!("get"in i?!e.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return e[n]}}),Object.defineProperty(t,r,i)}:function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]}),i=this&&this.__exportStar||function(t,e){for(var n in t)"default"===n||Object.prototype.hasOwnProperty.call(e,n)||r(e,t,n)};Object.defineProperty(e,"__esModule",{value:!0}),e.variables=e.cli=void 0,i(n(2114),e);const o=n(7090),a=n(6948);e.cli=o.Cli,e.variables=a.Variables},4784:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.StaticTrieNode=e.AbstractTrieNode=void 0;const r=n(5605),i=n(7394);class o{constructor(t,e){this.constraint=t,this.test=e,this.children_={},this.kind=i.TrieNodeKind.ROOT}getConstraint(){return this.constraint}getKind(){return this.kind}applyTest(t){return this.test(t)}addChild(t){const e=t.getConstraint(),n=this.children_[e];return this.children_[e]=t,n}getChild(t){return this.children_[t]}getChildren(){const t=[];for(const e in this.children_)t.push(this.children_[e]);return t}findChildren(t){const e=[];for(const n in this.children_){const r=this.children_[n];r.applyTest(t)&&e.push(r)}return e}removeChild(t){delete this.children_[t]}toString(){return this.constraint}}e.AbstractTrieNode=o,e.StaticTrieNode=class extends o{constructor(t,e){super(t,e),this.rule_=null,this.kind=i.TrieNodeKind.STATIC}getRule(){return this.rule_}setRule(t){this.rule_&&r.Debugger.getInstance().output("Replacing rule "+this.rule_+" with "+t),this.rule_=t}toString(){return this.getRule()?this.constraint+"\n==> "+this.getRule().action:this.constraint}}},3998:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Trie=void 0;const r=n(7394),i=n(5388);class o{constructor(){this.root=(0,i.getNode)(r.TrieNodeKind.ROOT,"",null)}static collectRules_(t){const e=[];let n=[t];for(;n.length;){const t=n.shift();if(t.getKind()===r.TrieNodeKind.QUERY||t.getKind()===r.TrieNodeKind.BOOLEAN){const n=t.getRule();n&&e.unshift(n)}n=n.concat(t.getChildren())}return e}static printWithDepth_(t,e,n){n+=new Array(e+2).join(e.toString())+": "+t.toString()+"\n";const r=t.getChildren();for(let t,i=0;t=r[i];i++)n=o.printWithDepth_(t,e+1,n);return n}static order_(t){const e=t.getChildren();if(!e.length)return 0;const n=Math.max.apply(null,e.map(o.order_));return Math.max(e.length,n)}addRule(t){let e=this.root;const n=t.context,i=t.dynamicCstr.getValues();for(let t=0,o=i.length;t<o;t++)e=this.addNode_(e,i[t],r.TrieNodeKind.DYNAMIC,n);e=this.addNode_(e,t.precondition.query,r.TrieNodeKind.QUERY,n);const o=t.precondition.constraints;for(let t=0,i=o.length;t<i;t++)e=this.addNode_(e,o[t],r.TrieNodeKind.BOOLEAN,n);e.setRule(t)}lookupRules(t,e){let n=[this.root];const i=[];for(;e.length;){const t=e.shift(),i=[];for(;n.length;)n.shift().getChildren().forEach((e=>{e.getKind()===r.TrieNodeKind.DYNAMIC&&-1===t.indexOf(e.getConstraint())||i.push(e)}));n=i.slice()}for(;n.length;){const e=n.shift();if(e.getRule){const t=e.getRule();t&&i.push(t)}const r=e.findChildren(t);n=n.concat(r)}return i}hasSubtrie(t){let e=this.root;for(let n=0,r=t.length;n<r;n++){const r=t[n];if(e=e.getChild(r),!e)return!1}return!0}toString(){return o.printWithDepth_(this.root,0,"")}collectRules(){return o.collectRules_(this.root)}order(){return o.order_(this.root)}enumerate(t){return this.enumerate_(this.root,t)}byConstraint(t){let e=this.root;for(;t.length&&e;){const n=t.shift();e=e.getChild(n)}return e||null}enumerate_(t,e){e=e||{};const n=t.getChildren();for(let t,i=0;t=n[i];i++)t.kind===r.TrieNodeKind.DYNAMIC&&(e[t.getConstraint()]=this.enumerate_(t,e[t.getConstraint()]));return e}addNode_(t,e,n,r){let o=t.getChild(e);return o||(o=(0,i.getNode)(n,e,r),t.addChild(o)),o}}e.Trie=o},7394:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TrieNodeKind=void 0,function(t){t.ROOT="root",t.DYNAMIC="dynamic",t.QUERY="query",t.BOOLEAN="boolean",t.STATIC="static"}(e.TrieNodeKind||(e.TrieNodeKind={}))},5388:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BooleanTrieNode=e.QueryTrieNode=e.constraintTest_=e.DynamicTrieNode=e.RootTrieNode=e.getNode=void 0;const r=n(7041),i=n(1746),o=n(7534),a=n(8844),s=n(4784),l=n(4784),T=n(7394);e.getNode=function(t,e,n){switch(t){case T.TrieNodeKind.ROOT:return new Q;case T.TrieNodeKind.DYNAMIC:return new c(e);case T.TrieNodeKind.QUERY:return new h(e,n);case T.TrieNodeKind.BOOLEAN:return new p(e,n);default:return null}};class Q extends s.AbstractTrieNode{constructor(){super("",(()=>!0)),this.kind=T.TrieNodeKind.ROOT}}e.RootTrieNode=Q;class c extends s.AbstractTrieNode{constructor(t){super(t,(e=>e===t)),this.kind=T.TrieNodeKind.DYNAMIC}}e.DynamicTrieNode=c;const u={"=":(t,e)=>t===e,"!=":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e};function d(t){if(t.match(/^self::\*$/))return t=>!0;if(t.match(/^self::\w+$/)){const e=t.slice(6).toUpperCase();return t=>t.tagName&&r.tagName(t)===e}if(t.match(/^self::\w+:\w+$/)){const e=t.split(":"),n=i.resolveNameSpace(e[2]);if(!n)return null;const r=e[3].toUpperCase();return t=>t.localName&&t.localName.toUpperCase()===r&&t.namespaceURI===n}if(t.match(/^@\w+$/)){const e=t.slice(1);return t=>t.hasAttribute&&t.hasAttribute(e)}if(t.match(/^@\w+="[\w\d ]+"$/)){const e=t.split("="),n=e[0].slice(1),r=e[1].slice(1,-1);return t=>t.hasAttribute&&t.hasAttribute(n)&&t.getAttribute(n)===r}if(t.match(/^@\w+!="[\w\d ]+"$/)){const e=t.split("!="),n=e[0].slice(1),r=e[1].slice(1,-1);return t=>!t.hasAttribute||!t.hasAttribute(n)||t.getAttribute(n)!==r}if(t.match(/^contains\(\s*@grammar\s*,\s*"[\w\d ]+"\s*\)$/)){const e=t.split('"')[1];return t=>!!o.Grammar.getInstance().getParameter(e)}if(t.match(/^not\(\s*contains\(\s*@grammar\s*,\s*"[\w\d ]+"\s*\)\s*\)$/)){const e=t.split('"')[1];return t=>!o.Grammar.getInstance().getParameter(e)}if(t.match(/^name\(\.\.\/\.\.\)="\w+"$/)){const e=t.split('"')[1].toUpperCase();return t=>{var n,i;return(null===(i=null===(n=t.parentNode)||void 0===n?void 0:n.parentNode)||void 0===i?void 0:i.tagName)&&r.tagName(t.parentNode.parentNode)===e}}if(t.match(/^count\(preceding-sibling::\*\)=\d+$/)){const e=t.split("="),n=parseInt(e[1],10);return t=>{var e;return(null===(e=t.parentNode)||void 0===e?void 0:e.childNodes[n])===t}}if(t.match(/^.+\[@category!?=".+"\]$/)){let[,e,n,r]=t.match(/^(.+)\[@category(!?=)"(.+)"\]$/);const o=r.match(/^unit:(.+)$/);let s="";return o&&(r=o[1],s=":unit"),t=>{const o=i.evalXPath(e,t)[0];if(o){const t=a.lookupCategory(o.textContent+s);return"="===n?t===r:t!==r}return!1}}if(t.match(/^string-length\(.+\)\W+\d+/)){const[,e,n,r]=t.match(/^string-length\((.+)\)(\W+)(\d+)/),o=u[n]||u["="],a=parseInt(r,10);return t=>{const n=i.evalXPath(e,t)[0];return!!n&&o(Array.from(n.textContent).length,a)}}return null}e.constraintTest_=d;class h extends l.StaticTrieNode{constructor(t,e){super(t,d(t)),this.context=e,this.kind=T.TrieNodeKind.QUERY}applyTest(t){return this.test?this.test(t):this.context.applyQuery(t,this.constraint)===t}}e.QueryTrieNode=h;class p extends l.StaticTrieNode{constructor(t,e){super(t,d(t)),this.context=e,this.kind=T.TrieNodeKind.BOOLEAN}applyTest(t){return this.test?this.test(t):this.context.applyConstraint(t,this.constraint)}}e.BooleanTrieNode=p},2420:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.completeLocale=e.getLocale=e.setLocale=e.locales=void 0;const r=n(3684),i=n(6948),o=n(7534),a=n(1289),s=n(3078),l=n(1811),T=n(2437),Q=n(842),c=n(6905),u=n(6520),d=n(5937),h=n(3657),p=n(3347),m=n(7876),f=n(3737),y=n(3826);function g(){const t=i.Variables.ensureLocale(r.default.getInstance().locale,r.default.getInstance().defaultLocale);return r.default.getInstance().locale=t,e.locales[t]()}e.locales={ca:a.ca,da:s.da,de:l.de,en:T.en,es:Q.es,fr:c.fr,hi:u.hi,it:d.it,nb:h.nb,nn:m.nn,sv:f.sv,nemeth:p.nemeth},e.setLocale=function(){const t=g();if(function(t){const e=r.default.getInstance().subiso;-1===t.SUBISO.all.indexOf(e)&&(r.default.getInstance().subiso=t.SUBISO.default),t.SUBISO.current=r.default.getInstance().subiso}(t),t){for(const e of Object.getOwnPropertyNames(t))y.LOCALE[e]=t[e];for(const[e,n]of Object.entries(t.CORRECTIONS))o.Grammar.getInstance().setCorrection(e,n)}},e.getLocale=g,e.completeLocale=function(t){const n=e.locales[t.locale];if(!n)return void console.error("Locale "+t.locale+" does not exist!");const r=t.kind.toUpperCase(),i=t.messages;if(!i)return;const o=n();for(const[t,e]of Object.entries(i))o[r][t]=e}},3826:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createLocale=e.LOCALE=void 0;const r=n(6695);function i(){return{FUNCTIONS:(0,r.FUNCTIONS)(),MESSAGES:(0,r.MESSAGES)(),ALPHABETS:(0,r.ALPHABETS)(),NUMBERS:(0,r.NUMBERS)(),COMBINERS:{},CORRECTIONS:{},SUBISO:(0,r.SUBISO)()}}e.LOCALE=i(),e.createLocale=i},5681:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.localeFontCombiner=e.extractString=e.localEnclose=e.localRole=e.localFont=e.combinePostfixIndex=e.nestingToString=void 0;const r=n(3826),i=n(1404);function o(t,e){return void 0===t?e:"string"==typeof t?t:t[0]}e.nestingToString=function(t){switch(t){case 1:return r.LOCALE.MESSAGES.MS.ONCE||"";case 2:return r.LOCALE.MESSAGES.MS.TWICE;default:return t.toString()}},e.combinePostfixIndex=function(t,e){return t===r.LOCALE.MESSAGES.MS.ROOTINDEX||t===r.LOCALE.MESSAGES.MS.INDEX?t:t+" "+e},e.localFont=function(t){return o(r.LOCALE.MESSAGES.font[t],t)},e.localRole=function(t){return o(r.LOCALE.MESSAGES.role[t],t)},e.localEnclose=function(t){return o(r.LOCALE.MESSAGES.enclose[t],t)},e.extractString=o,e.localeFontCombiner=function(t){return"string"==typeof t?{font:t,combiner:r.LOCALE.ALPHABETS.combiner}:{font:t[0],combiner:r.LOCALE.COMBINERS[t[1]]||i.Combiners[t[1]]||r.LOCALE.ALPHABETS.combiner}}},1289:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ca=void 0;const r=n(3826),i=n(5681),o=n(3296),a=n(1404),s=function(t,e,n){return t="sans serif "+(n?n+" "+t:t),e?t+" "+e:t};let l=null;e.ca=function(){return l||(l=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.COMBINERS.sansserif=s,t.FUNCTIONS.fracNestDepth=t=>!1,t.FUNCTIONS.combineRootIndex=i.combinePostfixIndex,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>t+n,t.FUNCTIONS.fontRegexp=t=>RegExp("^"+t+" "),t.FUNCTIONS.plural=t=>/.*os$/.test(t)?t+"sos":/.*s$/.test(t)?t+"os":/.*ga$/.test(t)?t.slice(0,-2)+"gues":/.*\xe7a$/.test(t)?t.slice(0,-2)+"ces":/.*ca$/.test(t)?t.slice(0,-2)+"ques":/.*ja$/.test(t)?t.slice(0,-2)+"ges":/.*qua$/.test(t)?t.slice(0,-3)+"qües":/.*a$/.test(t)?t.slice(0,-1)+"es":/.*(e|i)$/.test(t)?t+"ns":/.*\xed$/.test(t)?t.slice(0,-1)+"ins":t+"s",t.FUNCTIONS.si=(t,e)=>(e.match(/^metre/)&&(t=t.replace(/a$/,"à").replace(/o$/,"ò").replace(/i$/,"í")),t+e),t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t}()),l}},3078:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.da=void 0;const r=n(3826),i=n(5681),o=n(1270),a=n(1404);let s=null;e.da=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t.FUNCTIONS.fontRegexp=e=>e===t.ALPHABETS.capPrefix.default?RegExp("^"+e+" "):RegExp(" "+e+"$"),t.ALPHABETS.combiner=a.Combiners.postfixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t}()),s}},1811:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.de=void 0;const r=n(7534),i=n(5681),o=n(3826),a=n(3966),s=function(t,e,n){return"s"===n&&(e=e.split(" ").map((function(t){return t.replace(/s$/,"")})).join(" "),n=""),t=n?n+" "+t:t,e?e+" "+t:t},l=function(t,e,n){return t=n&&"s"!==n?n+" "+t:t,e?t+" "+e:t};let T=null;e.de=function(){return T||(T=function(){const t=(0,o.createLocale)();return t.NUMBERS=a.default,t.COMBINERS.germanPostfix=l,t.ALPHABETS.combiner=s,t.FUNCTIONS.radicalNestDepth=e=>e>1?t.NUMBERS.numberToWords(e)+"fach":"",t.FUNCTIONS.combineRootIndex=(t,e)=>{const n=e?e+"wurzel":"";return t.replace("Wurzel",n)},t.FUNCTIONS.combineNestedRadical=(t,e,n)=>{const r=(e?e+" ":"")+(t=n.match(/exponent$/)?t+"r":t);return n.match(/ /)?n.replace(/ /," "+r+" "):r+" "+n},t.FUNCTIONS.fontRegexp=function(t){return t=t.split(" ").map((function(t){return t.replace(/s$/,"(|s)")})).join(" "),new RegExp("((^"+t+" )|( "+t+"$))")},t.CORRECTIONS.correctOne=t=>t.replace(/^eins$/,"ein"),t.CORRECTIONS.localFontNumber=t=>(0,i.localFont)(t).split(" ").map((function(t){return t.replace(/s$/,"")})).join(" "),t.CORRECTIONS.lowercase=t=>t.toLowerCase(),t.CORRECTIONS.article=t=>{const e=r.Grammar.getInstance().getParameter("case"),n=r.Grammar.getInstance().getParameter("plural");return"dative"===e?{der:"dem",die:n?"den":"der",das:"dem"}[t]:t},t.CORRECTIONS.masculine=t=>"dative"===r.Grammar.getInstance().getParameter("case")?t+"n":t,t}()),T}},2437:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.en=void 0;const r=n(7534),i=n(3826),o=n(5681),a=n(440),s=n(1404);let l=null;e.en=function(){return l||(l=function(){const t=(0,i.createLocale)();return t.NUMBERS=a.default,t.FUNCTIONS.radicalNestDepth=o.nestingToString,t.FUNCTIONS.plural=t=>/.*s$/.test(t)?t:t+"s",t.ALPHABETS.combiner=s.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=a.default.numberToWords,t.CORRECTIONS.article=t=>r.Grammar.getInstance().getParameter("noArticle")?"":t,t}()),l}},842:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.es=void 0;const r=n(3826),i=n(5681),o=n(8121),a=n(1404),s=function(t,e,n){return t="sans serif "+(n?n+" "+t:t),e?t+" "+e:t};let l=null;e.es=function(){return l||(l=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.COMBINERS.sansserif=s,t.FUNCTIONS.fracNestDepth=t=>!1,t.FUNCTIONS.combineRootIndex=i.combinePostfixIndex,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>t+n,t.FUNCTIONS.fontRegexp=t=>RegExp("^"+t+" "),t.FUNCTIONS.plural=t=>/.*(a|e|i|o|u)$/.test(t)?t+"s":/.*z$/.test(t)?t.slice(0,-1)+"ces":/.*c$/.test(t)?t.slice(0,-1)+"ques":/.*g$/.test(t)?t+"ues":/.*\u00f3n$/.test(t)?t.slice(0,-2)+"ones":t+"es",t.FUNCTIONS.si=(t,e)=>(e.match(/^metro/)&&(t=t.replace(/a$/,"á").replace(/o$/,"ó").replace(/i$/,"í")),t+e),t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t}()),l}},6905:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.fr=void 0;const r=n(7534),i=n(3826),o=n(5681),a=n(9990),s=n(1404);let l=null;e.fr=function(){return l||(l=function(){const t=(0,i.createLocale)();return t.NUMBERS=a.default,t.FUNCTIONS.radicalNestDepth=o.nestingToString,t.FUNCTIONS.combineRootIndex=o.combinePostfixIndex,t.FUNCTIONS.combineNestedFraction=(t,e,n)=>n.replace(/ $/g,"")+e+t,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>n+" "+t,t.FUNCTIONS.fontRegexp=t=>RegExp(" (en |)"+t+"$"),t.FUNCTIONS.plural=t=>/.*s$/.test(t)?t:t+"s",t.CORRECTIONS.article=t=>r.Grammar.getInstance().getParameter("noArticle")?"":t,t.ALPHABETS.combiner=s.Combiners.romanceCombiner,t.SUBISO={default:"fr",current:"fr",all:["fr","be","ch"]},t}()),l}},6520:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.hi=void 0;const r=n(3826),i=n(4585),o=n(1404),a=n(5681);let s=null;e.hi=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=i.default,t.ALPHABETS.combiner=o.Combiners.prefixCombiner,t.FUNCTIONS.radicalNestDepth=a.nestingToString,t}()),s}},5937:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.it=void 0;const r=n(5681),i=n(3826),o=n(6146),a=n(1404),s=function(t,e,n){return t.match(/^[a-zA-Z]$/)&&(e=e.replace("cerchiato","cerchiata")),t=n?t+" "+n:t,e?t+" "+e:t};let l=null;e.it=function(){return l||(l=function(){const t=(0,i.createLocale)();return t.NUMBERS=o.default,t.COMBINERS.italianPostfix=s,t.FUNCTIONS.radicalNestDepth=r.nestingToString,t.FUNCTIONS.combineRootIndex=r.combinePostfixIndex,t.FUNCTIONS.combineNestedFraction=(t,e,n)=>n.replace(/ $/g,"")+e+t,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>n+" "+t,t.FUNCTIONS.fontRegexp=t=>RegExp(" (en |)"+t+"$"),t.ALPHABETS.combiner=a.Combiners.romanceCombiner,t}()),l}},3657:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.nb=void 0;const r=n(3826),i=n(5681),o=n(9808),a=n(1404);let s=null;e.nb=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t}()),s}},3347:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.nemeth=void 0;const r=n(3826),i=n(6823),o=n(1404),a=function(t){return t.match(RegExp("^"+u.ALPHABETS.languagePrefix.english))?t.slice(1):t},s=function(t,e,n){return t=a(t),e?t+e:t},l=function(t,e,n){return e+a(t)},T=function(t,e,n){return e+(n||"")+(t=a(t))+"⠻"},Q=function(t,e,n){return e+(n||"")+(t=a(t))+"⠻⠻"},c=function(t,e,n){return e+(t=a(t))+"⠾"};let u=null;e.nemeth=function(){return u||(u=function(){const t=(0,r.createLocale)();return t.NUMBERS=i.default,t.COMBINERS={postfixCombiner:s,germanCombiner:l,embellishCombiner:T,doubleEmbellishCombiner:Q,parensCombiner:c},t.FUNCTIONS.fracNestDepth=t=>!1,t.FUNCTIONS.fontRegexp=t=>RegExp("^"+t),t.FUNCTIONS.si=o.identityTransformer,t.ALPHABETS.combiner=(t,e,n)=>e?e+n+t:a(t),t.ALPHABETS.digitTrans={default:i.default.numberToWords},t}()),u}},7876:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.nn=void 0;const r=n(3826),i=n(5681),o=n(9808),a=n(1404);let s=null;e.nn=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t.SUBISO={default:"",current:"",all:["","alt"]},t}()),s}},3737:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.sv=void 0;const r=n(3826),i=n(5681),o=n(611),a=n(1404);let s=null;e.sv=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t.FUNCTIONS.fontRegexp=function(t){return new RegExp("((^"+t+" )|( "+t+"$))")},t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t.CORRECTIONS.correctOne=t=>t.replace(/^ett$/,"en"),t}()),s}},6695:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SUBISO=e.FUNCTIONS=e.ALPHABETS=e.NUMBERS=e.MESSAGES=void 0;const r=n(1404);e.MESSAGES=function(){return{MS:{},MSroots:{},font:{},embellish:{},role:{},enclose:{},navigate:{},regexp:{},unitTimes:""}},e.NUMBERS=function(){return{zero:"zero",ones:[],tens:[],large:[],special:{},wordOrdinal:r.identityTransformer,numericOrdinal:r.identityTransformer,numberToWords:r.identityTransformer,numberToOrdinal:r.pluralCase,vulgarSep:" ",numSep:" "}},e.ALPHABETS=function(){return{latinSmall:[],latinCap:[],greekSmall:[],greekCap:[],capPrefix:{default:""},smallPrefix:{default:""},digitPrefix:{default:""},languagePrefix:{},digitTrans:{default:r.identityTransformer,mathspeak:r.identityTransformer,clearspeak:r.identityTransformer},letterTrans:{default:r.identityTransformer},combiner:(t,e,n)=>t}},e.FUNCTIONS=function(){return{fracNestDepth:t=>r.vulgarFractionSmall(t,10,100),radicalNestDepth:t=>"",combineRootIndex:function(t,e){return t},combineNestedFraction:r.Combiners.identityCombiner,combineNestedRadical:r.Combiners.identityCombiner,fontRegexp:function(t){return new RegExp("^"+t.split(/ |-/).join("( |-)")+"( |-)")},si:r.siCombiner,plural:r.identityTransformer}},e.SUBISO=function(){return{default:"",current:"",all:[]}}},3296:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){const e=t%1e3,n=Math.floor(e/100),r=n?1===n?"cent":s.ones[n]+"-cents":"",i=function(t){const e=t%100;if(e<20)return s.ones[e];const n=Math.floor(e/10),r=s.tens[n],i=s.ones[e%10];return r&&i?r+(2===n?"-i-":"-")+i:r||i}(e%100);return r&&i?r+s.numSep+i:r||i}function o(t){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;){const r=t%(e>1?1e6:1e3);if(r){let t=s.large[e];if(e)if(1===e)n=(1===r?"":i(r)+s.numSep)+t+(n?s.numSep+n:"");else{const e=o(r);t=1===r?t:t.replace(/\u00f3$/,"ons"),n=e+s.numSep+t+(n?s.numSep+n:"")}else n=i(r)}t=Math.floor(t/(e>1?1e6:1e3)),e++}return n}function a(t){const e=r.Grammar.getInstance().getParameter("gender");return t.toString()+("f"===e?"a":"n")}const s=(0,n(6695).NUMBERS)();s.numericOrdinal=a,s.numberToWords=o,s.numberToOrdinal=function(t,e){if(t>1999)return a(t);if(t<=10)return s.special.onesOrdinals[t-1];const n=o(t);return n.match(/mil$/)?n.replace(/mil$/,"mil·lèsima"):n.match(/u$/)?n.replace(/u$/,"vena"):n.match(/a$/)?n.replace(/a$/,"ena"):n+(n.match(/e$/)?"na":"ena")},e.default=s},1270:(t,e,n)=>{function r(t,e=!1){return t===s.ones[1]?e?"et":"en":t}function i(t,e=!1){let n=t%1e3,i="",o=s.ones[Math.floor(n/100)];if(i+=o?r(o,!0)+" hundrede":"",n%=100,n)if(i+=i?" og ":"",o=e?s.special.smallOrdinals[n]:s.ones[n],o)i+=o;else{const t=e?s.special.tensOrdinals[Math.floor(n/10)]:s.tens[Math.floor(n/10)];o=s.ones[n%10],i+=o?r(o)+"og"+t:t}return i}function o(t,e=!1){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,o="";for(;t>0;){const a=t%1e3;if(a){const t=i(a,e&&!n);if(n){const e=s.large[n],i=a>1?"er":"";o=r(t,n<=1)+" "+e+i+(o?" og ":"")+o}else o=r(t)+o}t=Math.floor(t/1e3),n++}return o}function a(t){if(t%100)return o(t,!0);const e=o(t);return e.match(/e$/)?e:e+"e"}Object.defineProperty(e,"__esModule",{value:!0});const s=(0,n(6695).NUMBERS)();s.wordOrdinal=a,s.numericOrdinal=function(t){return t.toString()+"."},s.numberToWords=o,s.numberToOrdinal=function(t,e){return 1===t?e?"hel":"hele":2===t?e?"halv":"halve":a(t)+(e?"dele":"del")},e.default=s},3966:(t,e,n)=>{function r(t,e=!1){return t===s.ones[1]?e?"eine":"ein":t}function i(t){let e=t%1e3,n="",i=s.ones[Math.floor(e/100)];if(n+=i?r(i)+"hundert":"",e%=100,e)if(n+=n?s.numSep:"",i=s.ones[e],i)n+=i;else{const t=s.tens[Math.floor(e/10)];i=s.ones[e%10],n+=i?r(i)+"und"+t:t}return n}function o(t){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;){const o=t%1e3;if(o){const a=i(t%1e3);if(e){const t=s.large[e],i=e>1&&o>1?t.match(/e$/)?"n":"en":"";n=r(a,e>1)+t+i+n}else n=r(a,e>1)+n}t=Math.floor(t/1e3),e++}return n.replace(/ein$/,"eins")}function a(t){return 1===t?"erste":3===t?"dritte":7===t?"siebte":8===t?"achte":o(t)+(t<19?"te":"ste")}Object.defineProperty(e,"__esModule",{value:!0});const s=(0,n(6695).NUMBERS)();s.wordOrdinal=a,s.numericOrdinal=function(t){return t.toString()+"."},s.numberToWords=o,s.numberToOrdinal=function(t,e){return 1===t?"eintel":2===t?e?"halbe":"halb":a(t)+"l"},e.default=s},440:(t,e,n)=>{function r(t){let e=t%1e3,n="";return n+=a.ones[Math.floor(e/100)]?a.ones[Math.floor(e/100)]+a.numSep+"hundred":"",e%=100,e&&(n+=n?a.numSep:"",n+=a.ones[e]||a.tens[Math.floor(e/10)]+(e%10?a.numSep+a.ones[e%10]:"")),n}function i(t){if(0===t)return a.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;)t%1e3&&(n=r(t%1e3)+(e?"-"+a.large[e]+"-":"")+n),t=Math.floor(t/1e3),e++;return n.replace(/-$/,"")}function o(t){let e=i(t);return e.match(/one$/)?e=e.slice(0,-3)+"first":e.match(/two$/)?e=e.slice(0,-3)+"second":e.match(/three$/)?e=e.slice(0,-5)+"third":e.match(/five$/)?e=e.slice(0,-4)+"fifth":e.match(/eight$/)?e=e.slice(0,-5)+"eighth":e.match(/nine$/)?e=e.slice(0,-4)+"ninth":e.match(/twelve$/)?e=e.slice(0,-6)+"twelfth":e.match(/ty$/)?e=e.slice(0,-2)+"tieth":e+="th",e}Object.defineProperty(e,"__esModule",{value:!0});const a=(0,n(6695).NUMBERS)();a.wordOrdinal=o,a.numericOrdinal=function(t){const e=t%100,n=t.toString();if(e>10&&e<20)return n+"th";switch(t%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd";default:return n+"th"}},a.numberToWords=i,a.numberToOrdinal=function(t,e){if(1===t)return e?"oneths":"oneth";if(2===t)return e?"halves":"half";const n=o(t);return e?n+"s":n},e.default=a},8121:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){const e=t%1e3,n=Math.floor(e/100),r=o.special.hundreds[n],i=function(t){const e=t%100;if(e<30)return o.ones[e];const n=o.tens[Math.floor(e/10)],r=o.ones[e%10];return n&&r?n+" y "+r:n||r}(e%100);return 1===n?i?r+"to "+i:r:r&&i?r+" "+i:r||i}const o=(0,n(6695).NUMBERS)();o.numericOrdinal=function(t){const e=r.Grammar.getInstance().getParameter("gender");return t.toString()+("f"===e?"a":"o")},o.numberToWords=function(t){if(0===t)return o.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;){const r=t%1e3;if(r){let t=o.large[e];const a=i(r);e?1===r?(t=t.match("/^mil( |$)/")?t:"un "+t,n=t+(n?" "+n:"")):(t=t.replace(/\u00f3n$/,"ones"),n=i(r)+" "+t+(n?" "+n:"")):n=a}t=Math.floor(t/1e3),e++}return n},o.numberToOrdinal=function(t,e){if(t>1999)return t.toString()+"a";if(t<=12)return o.special.onesOrdinals[t-1];const n=[];if(t>=1e3&&(t-=1e3,n.push("milésima")),!t)return n.join(" ");let r=0;return r=Math.floor(t/100),r>0&&(n.push(o.special.hundredsOrdinals[r-1]),t%=100),t<=12?n.push(o.special.onesOrdinals[t-1]):(r=Math.floor(t/10),r>0&&(n.push(o.special.tensOrdinals[r-1]),t%=10),t>0&&n.push(o.special.onesOrdinals[t-1])),n.join(" ")},e.default=o},9990:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(3684),i=n(7534),o=n(6695);function a(t){let e=t%1e3,n="";if(n+=Q.ones[Math.floor(e/100)]?Q.ones[Math.floor(e/100)]+"-cent":"",e%=100,e){n+=n?"-":"";let t=Q.ones[e];if(t)n+=t;else{const r=Q.tens[Math.floor(e/10)];r.match(/-dix$/)?(t=Q.ones[e%10+10],n+=r.replace(/-dix$/,"")+"-"+t):n+=r+(e%10?"-"+Q.ones[e%10]:"")}}const r=n.match(/s-\w+$/);return r?n.replace(/s-\w+$/,r[0].slice(1)):n.replace(/-un$/,"-et-un")}function s(t){if(0===t)return Q.zero;if(t>=Math.pow(10,36))return t.toString();Q.special["tens-"+r.default.getInstance().subiso]&&(Q.tens=Q.special["tens-"+r.default.getInstance().subiso]);let e=0,n="";for(;t>0;){const r=t%1e3;if(r){let t=Q.large[e];const i=a(r);if(t&&t.match(/^mille /)){const r=t.replace(/^mille /,"");n=n.match(RegExp(r))?i+(e?"-mille-":"")+n:n.match(RegExp(r.replace(/s$/,"")))?i+(e?"-mille-":"")+n.replace(r.replace(/s$/,""),r):i+(e?"-"+t+"-":"")+n}else t=1===r&&t?t.replace(/s$/,""):t,n=i+(e?"-"+t+"-":"")+n}t=Math.floor(t/1e3),e++}return n.replace(/-$/,"")}const l={1:"unième",2:"demi",3:"tiers",4:"quart"};function T(t){if(1===t)return"première";let e=s(t);return e.match(/^neuf$/)?e=e.slice(0,-1)+"v":e.match(/cinq$/)?e+="u":e.match(/trois$/)?e+="":(e.match(/e$/)||e.match(/s$/))&&(e=e.slice(0,-1)),e+="ième",e}const Q=(0,o.NUMBERS)();Q.wordOrdinal=T,Q.numericOrdinal=function(t){const e=i.Grammar.getInstance().getParameter("gender");return 1===t?t.toString()+("m"===e?"er":"re"):t.toString()+"e"},Q.numberToWords=s,Q.numberToOrdinal=function(t,e){const n=l[t]||T(t);return 3===t?n:e?n+"s":n},e.default=Q},4585:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){if(0===t)return a.zero;if(t>=Math.pow(10,32))return t.toString();let e=0,n="";const r=function(t){let e=t%1e3,n="";return n+=a.ones[Math.floor(e/100)]?a.ones[Math.floor(e/100)]+a.numSep+a.special.hundred:"",e%=100,e&&(n+=n?a.numSep:"",n+=a.ones[e]),n}(t%1e3);if(!(t=Math.floor(t/1e3)))return r;for(;t>0;){const r=t%100;r&&(n=a.ones[r]+a.numSep+a.large[e]+(n?a.numSep+n:"")),t=Math.floor(t/100),e++}return r?n+a.numSep+r:n}function o(t){const e=r.Grammar.getInstance().getParameter("gender");return t<=0?t.toString():t<10?"f"===e?a.special.ordinalsFeminine[t]:a.special.ordinalsMasculine[t]:i(t)+("f"===e?"वीं":"वाँ")}const a=(0,n(6695).NUMBERS)();a.wordOrdinal=o,a.numericOrdinal=function(t){const e=r.Grammar.getInstance().getParameter("gender");return t>0&&t<10?"f"===e?a.special.simpleSmallOrdinalsFeminine[t]:a.special.simpleSmallOrdinalsMasculine[t]:t.toString().split("").map((function(t){const e=parseInt(t,10);return isNaN(e)?"":a.special.simpleNumbers[e]})).join("")+("f"===e?"वीं":"वाँ")},a.numberToWords=i,a.numberToOrdinal=function(t,e){return t<=10?a.special.smallDenominators[t]:o(t)+" अंश"},e.default=a},6146:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){let e=t%1e3,n="";if(n+=s.ones[Math.floor(e/100)]?s.ones[Math.floor(e/100)]+s.numSep+"cento":"",e%=100,e){n+=n?s.numSep:"";const t=s.ones[e];if(t)n+=t;else{let t=s.tens[Math.floor(e/10)];const r=e%10;1!==r&&8!==r||(t=t.slice(0,-1)),n+=t,n+=r?s.numSep+s.ones[e%10]:""}}return n}function o(t){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();if(1===t&&r.Grammar.getInstance().getParameter("fraction"))return"un";let e=0,n="";for(;t>0;)t%1e3&&(n=i(t%1e3)+(e?"-"+s.large[e]+"-":"")+n),t=Math.floor(t/1e3),e++;return n.replace(/-$/,"")}function a(t){const e="m"===r.Grammar.getInstance().getParameter("gender")?"o":"a";let n=s.special.onesOrdinals[t];return n?n.slice(0,-1)+e:(n=o(t),n.slice(0,-1)+"esim"+e)}const s=(0,n(6695).NUMBERS)();s.wordOrdinal=a,s.numericOrdinal=function(t){const e=r.Grammar.getInstance().getParameter("gender");return t.toString()+("m"===e?"o":"a")},s.numberToWords=o,s.numberToOrdinal=function(t,e){if(2===t)return e?"mezzi":"mezzo";const n=a(t);if(!e)return n;const r=n.match(/o$/)?"i":"e";return n.slice(0,-1)+r},e.default=s},6823:(t,e,n)=>{function r(t){return t.toString().split("").map((function(t){return i.ones[parseInt(t,10)]})).join("")}Object.defineProperty(e,"__esModule",{value:!0});const i=(0,n(6695).NUMBERS)();i.numberToWords=r,i.numberToOrdinal=r,e.default=i},9808:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(3684);function i(t,e=!1){let n=t%1e3,r="";const i=Math.floor(n/100),a=s.ones[i];if(r+=a?(1===i?"":a)+"hundre":"",n%=100,n){if(r+=r?"og":"",e){const t=s.special.smallOrdinals[n];if(t)return r+t;if(n%10)return r+s.tens[Math.floor(n/10)]+s.special.smallOrdinals[n%10]}r+=s.ones[n]||s.tens[Math.floor(n/10)]+(n%10?s.ones[n%10]:"")}return e?o(r):r}function o(t){const e=s.special.endOrdinal[0];return"a"===e&&t.match(/en$/)?t.slice(0,-2)+s.special.endOrdinal:t.match(/(d|n)$/)||t.match(/hundre$/)?t+"de":t.match(/i$/)?t+s.special.endOrdinal:"a"===e&&t.match(/e$/)?t.slice(0,-1)+s.special.endOrdinal:(t.match(/e$/),t+"nde")}function a(t){return Q(t,!0)}const s=(0,n(6695).NUMBERS)();function l(t,e=!1){return t===s.ones[1]?"ein"===t?"eitt ":e?"et":"ett":t}function T(t,e=!1){let n=t%1e3,r="",i=s.ones[Math.floor(n/100)];if(r+=i?l(i)+"hundre":"",n%=100,n){if(r+=r?"og":"",e){const t=s.special.smallOrdinals[n];if(t)return r+t}if(i=s.ones[n],i)r+=i;else{const t=s.tens[Math.floor(n/10)];i=s.ones[n%10],r+=i?i+"og"+t:t}}return e?o(r):r}function Q(t,e=!1){const n="alt"===r.default.getInstance().subiso?function(t,e=!1){if(0===t)return e?s.special.smallOrdinals[0]:s.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,r="";for(;t>0;){const i=t%1e3;if(i){const o=T(t%1e3,!n&&e);!n&&e&&(e=!e),r=(1===n?l(o,!0):o)+(n>1?s.numSep:"")+(n?s.large[n]+(n>1&&i>1?"er":""):"")+(n>1&&r?s.numSep:"")+r}t=Math.floor(t/1e3),n++}return e?r+(r.match(/tusen$/)?"de":"te"):r}(t,e):function(t,e=!1){if(0===t)return e?s.special.smallOrdinals[0]:s.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,r="";for(;t>0;){const o=t%1e3;if(o){const a=i(t%1e3,!n&&e);!n&&e&&(e=!e),r=a+(n?" "+s.large[n]+(n>1&&o>1?"er":"")+(r?" ":""):"")+r}t=Math.floor(t/1e3),n++}return e?r+(r.match(/tusen$/)?"de":"te"):r}(t,e);return n}s.wordOrdinal=a,s.numericOrdinal=function(t){return t.toString()+"."},s.numberToWords=Q,s.numberToOrdinal=function(t,e){return a(t)},e.default=s},611:(t,e,n)=>{function r(t){let e=t%1e3,n="";const r=Math.floor(e/100);return n+=a.ones[r]?(1===r?"":a.ones[r]+a.numSep)+"hundra":"",e%=100,e&&(n+=n?a.numSep:"",n+=a.ones[e]||a.tens[Math.floor(e/10)]+(e%10?a.numSep+a.ones[e%10]:"")),n}function i(t,e=!1){if(0===t)return a.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,i="";for(;t>0;){const o=t%1e3;if(o){const s=a.large[n],l=o>1&&n>1&&!e?"er":"";i=(1===n&&1===o?"":(n>1&&1===o?"en":r(t%1e3))+(n>1?" ":""))+(n?s+l+(n>1?" ":""):"")+i}t=Math.floor(t/1e3),n++}return i.replace(/ $/,"")}function o(t){let e=i(t,!0);return e.match(/^noll$/)?e="nollte":e.match(/ett$/)?e=e.replace(/ett$/,"första"):e.match(/tv\xe5$/)?e=e.replace(/tv\xe5$/,"andra"):e.match(/tre$/)?e=e.replace(/tre$/,"tredje"):e.match(/fyra$/)?e=e.replace(/fyra$/,"fjärde"):e.match(/fem$/)?e=e.replace(/fem$/,"femte"):e.match(/sex$/)?e=e.replace(/sex$/,"sjätte"):e.match(/sju$/)?e=e.replace(/sju$/,"sjunde"):e.match(/\xe5tta$/)?e=e.replace(/\xe5tta$/,"åttonde"):e.match(/nio$/)?e=e.replace(/nio$/,"nionde"):e.match(/tio$/)?e=e.replace(/tio$/,"tionde"):e.match(/elva$/)?e=e.replace(/elva$/,"elfte"):e.match(/tolv$/)?e=e.replace(/tolv$/,"tolfte"):e.match(/tusen$/)?e=e.replace(/tusen$/,"tusonde"):e.match(/jard$/)||e.match(/jon$/)?e+="te":e+="de",e}Object.defineProperty(e,"__esModule",{value:!0});const a=(0,n(6695).NUMBERS)();a.wordOrdinal=o,a.numericOrdinal=function(t){const e=t.toString();return e.match(/11$|12$/)?e+":e":e+(e.match(/1$|2$/)?":a":":e")},a.numberToWords=i,a.numberToOrdinal=function(t,e){if(1===t)return"hel";if(2===t)return e?"halva":"halv";let n=o(t);return n=n.match(/de$/)?n.replace(/de$/,""):n,n+(e?"delar":"del")},e.default=a},1404:(t,e)=>{function n(t,e=""){if(!t.childNodes||!t.childNodes[0]||!t.childNodes[0].childNodes||t.childNodes[0].childNodes.length<2||"number"!==t.childNodes[0].childNodes[0].tagName||"integer"!==t.childNodes[0].childNodes[0].getAttribute("role")||"number"!==t.childNodes[0].childNodes[1].tagName||"integer"!==t.childNodes[0].childNodes[1].getAttribute("role"))return{convertible:!1,content:t.textContent};const n=t.childNodes[0].childNodes[1].textContent,r=t.childNodes[0].childNodes[0].textContent,i=Number(n),o=Number(r);return isNaN(i)||isNaN(o)?{convertible:!1,content:`${r} ${e} ${n}`}:{convertible:!0,enumerator:o,denominator:i}}Object.defineProperty(e,"__esModule",{value:!0}),e.vulgarFractionSmall=e.convertVulgarFraction=e.Combiners=e.siCombiner=e.identityTransformer=e.pluralCase=void 0,e.pluralCase=function(t,e){return t.toString()},e.identityTransformer=function(t){return t.toString()},e.siCombiner=function(t,e){return t+e.toLowerCase()},e.Combiners={},e.Combiners.identityCombiner=function(t,e,n){return t+e+n},e.Combiners.prefixCombiner=function(t,e,n){return t=n?n+" "+t:t,e?e+" "+t:t},e.Combiners.postfixCombiner=function(t,e,n){return t=n?n+" "+t:t,e?t+" "+e:t},e.Combiners.romanceCombiner=function(t,e,n){return t=n?t+" "+n:t,e?t+" "+e:t},e.convertVulgarFraction=n,e.vulgarFractionSmall=function(t,e,r){const i=n(t);if(i.convertible){const t=i.enumerator,n=i.denominator;return t>0&&t<e&&n>0&&n<r}return!1}},4734:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Condition=e.BaseRuleStore=void 0;const r=n(2975),i=n(3113),o=n(7302),a=n(4470);class s{constructor(){this.context=new a.SpeechRuleContext,this.parseOrder=i.DynamicCstr.DEFAULT_ORDER,this.parser=new i.DynamicCstrParser(this.parseOrder),this.locale=i.DynamicCstr.DEFAULT_VALUES[i.Axis.LOCALE],this.modality=i.DynamicCstr.DEFAULT_VALUES[i.Axis.MODALITY],this.domain="",this.initialized=!1,this.inherits=null,this.kind="standard",this.customTranscriptions={},this.preconditions=new Map,this.speechRules_=[],this.rank=0,this.parseMethods={Rule:this.defineRule,Generator:this.generateRules,Action:this.defineAction,Precondition:this.definePrecondition,Ignore:this.ignoreRules}}static compareStaticConstraints_(t,e){if(t.length!==e.length)return!1;for(let n,r=0;n=t[r];r++)if(-1===e.indexOf(n))return!1;return!0}static comparePreconditions_(t,e){const n=t.precondition,r=e.precondition;return n.query===r.query&&s.compareStaticConstraints_(n.constraints,r.constraints)}defineRule(t,e,n,r,...i){const a=this.parseAction(n),s=this.parsePrecondition(r,i),l=this.parseCstr(e);if(!(a&&s&&l))return console.error(`Rule Error: ${r}, (${e}): ${n}`),null;const T=new o.SpeechRule(t,l,s,a);return T.precondition.rank=this.rank++,this.addRule(T),T}addRule(t){t.context=this.context,this.speechRules_.unshift(t)}deleteRule(t){const e=this.speechRules_.indexOf(t);-1!==e&&this.speechRules_.splice(e,1)}findRule(t){for(let e,n=0;e=this.speechRules_[n];n++)if(t(e))return e;return null}findAllRules(t){return this.speechRules_.filter(t)}evaluateDefault(t){const e=t.textContent.slice(0);return e.match(/^\s+$/)?this.evaluateWhitespace(e):this.evaluateString(e)}evaluateWhitespace(t){return[]}evaluateCustom(t){const e=this.customTranscriptions[t];return void 0!==e?r.AuditoryDescription.create({text:e},{adjust:!0,translate:!1}):null}evaluateCharacter(t){return this.evaluateCustom(t)||r.AuditoryDescription.create({text:t},{adjust:!0,translate:!0})}removeDuplicates(t){for(let e,n=this.speechRules_.length-1;e=this.speechRules_[n];n--)e!==t&&t.dynamicCstr.equal(e.dynamicCstr)&&s.comparePreconditions_(e,t)&&this.speechRules_.splice(n,1)}getSpeechRules(){return this.speechRules_}setSpeechRules(t){this.speechRules_=t}getPreconditions(){return this.preconditions}parseCstr(t){try{return this.parser.parse(this.locale+"."+this.modality+(this.domain?"."+this.domain:"")+"."+t)}catch(e){if("RuleError"===e.name)return console.error("Rule Error ",`Illegal Dynamic Constraint: ${t}.`,e.message),null;throw e}}parsePrecondition(t,e){try{const n=this.parsePrecondition_(t);t=n[0];let r=n.slice(1);for(const t of e)r=r.concat(this.parsePrecondition_(t));return new o.Precondition(t,...r)}catch(n){if("RuleError"===n.name)return console.error("Rule Error ",`Illegal preconditions: ${t}, ${e}.`,n.message),null;throw n}}parseAction(t){try{return o.Action.fromString(t)}catch(e){if("RuleError"===e.name)return console.error("Rule Error ",`Illegal action: ${t}.`,e.message),null;throw e}}parse(t){this.modality=t.modality||this.modality,this.locale=t.locale||this.locale,this.domain=t.domain||this.domain,this.context.parse(t.functions||[]),"actions"!==t.kind&&(this.kind=t.kind||this.kind,this.inheritRules()),this.parseRules(t.rules||[])}parseRules(t){for(let e,n=0;e=t[n];n++){const t=e[0],n=this.parseMethods[t];t&&n&&n.apply(this,e.slice(1))}}generateRules(t){const e=this.context.customGenerators.lookup(t);e&&e(this)}defineAction(t,e){let n;try{n=o.Action.fromString(e)}catch(t){if("RuleError"===t.name)return void console.error("Action Error ",e,t.message);throw t}const r=this.getFullPreconditions(t);if(!r)return void console.error(`Action Error: No precondition for action ${t}`);this.ignoreRules(t);const i=new RegExp("^\\w+\\.\\w+\\."+(this.domain?"\\w+\\.":""));r.conditions.forEach((([e,r])=>{const a=this.parseCstr(e.toString().replace(i,""));this.addRule(new o.SpeechRule(t,a,r,n))}))}getFullPreconditions(t){const e=this.preconditions.get(t);return e||!this.inherits?e:this.inherits.getFullPreconditions(t)}definePrecondition(t,e,n,...r){const i=this.parsePrecondition(n,r),o=this.parseCstr(e);i&&o?(i.rank=this.rank++,this.preconditions.set(t,new l(o,i))):console.error(`Precondition Error: ${n}, (${e})`)}inheritRules(){if(!this.inherits||!this.inherits.getSpeechRules().length)return;const t=new RegExp("^\\w+\\.\\w+\\."+(this.domain?"\\w+\\.":""));this.inherits.getSpeechRules().forEach((e=>{const n=this.parseCstr(e.dynamicCstr.toString().replace(t,""));this.addRule(new o.SpeechRule(e.name,n,e.precondition,e.action))}))}ignoreRules(t,...e){let n=this.findAllRules((e=>e.name===t));if(!e.length)return void n.forEach(this.deleteRule.bind(this));let r=[];for(const t of e){const e=this.parseCstr(t);for(const t of n)e.equal(t.dynamicCstr)?this.deleteRule(t):r.push(t);n=r,r=[]}}parsePrecondition_(t){const e=this.context.customGenerators.lookup(t);return e?e():[t]}}e.BaseRuleStore=s;class l{constructor(t,e){this.base=t,this._conditions=[],this.constraints=[],this.allCstr={},this.constraints.push(t),this.addCondition(t,e)}get conditions(){return this._conditions}addConstraint(t){if(this.constraints.filter((e=>e.equal(t))).length)return;this.constraints.push(t);const e=[];for(const[n,r]of this.conditions)this.base.equal(n)&&e.push([t,r]);this._conditions=this._conditions.concat(e)}addBaseCondition(t){this.addCondition(this.base,t)}addFullCondition(t){this.constraints.forEach((e=>this.addCondition(e,t)))}addCondition(t,e){const n=t.toString()+" "+e.toString();this.allCstr.condStr||(this.allCstr[n]=!0,this._conditions.push([t,e]))}}e.Condition=l},933:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BrailleStore=void 0;const r=n(8770),i=n(4760);class o extends i.MathStore{constructor(){super(...arguments),this.modality="braille",this.customTranscriptions={"⋊":"⠈⠡⠳"}}evaluateString(t){const e=[],n=Array.from(t);for(let t=0;t<n.length;t++)e.push(this.evaluateCharacter(n[t]));return e}annotations(){for(let t,e=0;t=this.annotators[e];e++)(0,r.activate)(this.locale,t)}}e.BrailleStore=o},3113:(t,e)=>{var n;Object.defineProperty(e,"__esModule",{value:!0}),e.DefaultComparator=e.DynamicCstrParser=e.DynamicCstr=e.DynamicProperties=e.Axis=void 0,function(t){t.DOMAIN="domain",t.STYLE="style",t.LOCALE="locale",t.TOPIC="topic",t.MODALITY="modality"}(n=e.Axis||(e.Axis={}));class r{constructor(t,e=Object.keys(t)){this.properties=t,this.order=e}static createProp(...t){const e=i.DEFAULT_ORDER,n={};for(let r=0,i=t.length,o=e.length;r<i&&r<o;r++)n[e[r]]=t[r];return new r(n)}getProperties(){return this.properties}getOrder(){return this.order}getAxes(){return this.order}getProperty(t){return this.properties[t]}updateProperties(t){this.properties=t}allProperties(){const t=[];return this.order.forEach((e=>t.push(this.getProperty(e).slice()))),t}toString(){const t=[];return this.order.forEach((e=>t.push(e+": "+this.getProperty(e).toString()))),t.join("\n")}}e.DynamicProperties=r;class i extends r{constructor(t,e){const n={};for(const[e,r]of Object.entries(t))n[e]=[r];super(n,e),this.components=t}static createCstr(...t){const e=i.DEFAULT_ORDER,n={};for(let r=0,i=t.length,o=e.length;r<i&&r<o;r++)n[e[r]]=t[r];return new i(n)}static defaultCstr(){return i.createCstr.apply(null,i.DEFAULT_ORDER.map((function(t){return i.DEFAULT_VALUES[t]})))}static validOrder(t){const e=i.DEFAULT_ORDER.slice();return t.every((t=>{const n=e.indexOf(t);return-1!==n&&e.splice(n,1)}))}getComponents(){return this.components}getValue(t){return this.components[t]}getValues(){return this.order.map((t=>this.getValue(t)))}allProperties(){const t=super.allProperties();for(let e,n,r=0;e=t[r],n=this.order[r];r++){const t=this.getValue(n);-1===e.indexOf(t)&&e.unshift(t)}return t}toString(){return this.getValues().join(".")}equal(t){const e=t.getAxes();if(this.order.length!==e.length)return!1;for(let n,r=0;n=e[r];r++){const e=this.getValue(n);if(!e||t.getValue(n)!==e)return!1}return!0}}e.DynamicCstr=i,i.DEFAULT_ORDER=[n.LOCALE,n.MODALITY,n.DOMAIN,n.STYLE,n.TOPIC],i.BASE_LOCALE="base",i.DEFAULT_VALUE="default",i.DEFAULT_VALUES={[n.LOCALE]:"en",[n.DOMAIN]:i.DEFAULT_VALUE,[n.STYLE]:i.DEFAULT_VALUE,[n.TOPIC]:i.DEFAULT_VALUE,[n.MODALITY]:"speech"},e.DynamicCstrParser=class{constructor(t){this.order=t}parse(t){const e=t.split("."),n={};if(e.length>this.order.length)throw new Error("Invalid dynamic constraint: "+n);let r=0;for(let t,i=0;t=this.order[i],e.length;i++,r++){const r=e.shift();n[t]=r}return new i(n,this.order.slice(0,r))}},e.DefaultComparator=class{constructor(t,e=new r(t.getProperties(),t.getOrder())){this.reference=t,this.fallback=e,this.order=this.reference.getOrder()}getReference(){return this.reference}setReference(t,e){this.reference=t,this.fallback=e||new r(t.getProperties(),t.getOrder()),this.order=this.reference.getOrder()}match(t){const e=t.getAxes();return e.length===this.reference.getAxes().length&&e.every((e=>{const n=t.getValue(e);return n===this.reference.getValue(e)||-1!==this.fallback.getProperty(e).indexOf(n)}))}compare(t,e){let n=!1;for(let r,i=0;r=this.order[i];i++){const i=t.getValue(r),o=e.getValue(r);if(!n){const t=this.reference.getValue(r);if(t===i&&t!==o)return-1;if(t===o&&t!==i)return 1;if(t===i&&t===o)continue;t!==i&&t!==o&&(n=!0)}const a=this.fallback.getProperty(r),s=a.indexOf(i),l=a.indexOf(o);if(s<l)return-1;if(l<s)return 1}return 0}toString(){return this.reference.toString()+"\n"+this.fallback.toString()}}},7534:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.numbersToAlpha=e.Grammar=e.ATTRIBUTE=void 0;const r=n(7041),i=n(3684),o=n(5681),a=n(3826);e.ATTRIBUTE="grammar";class s{constructor(){this.currentFlags={},this.parameters_={},this.corrections_={},this.preprocessors_={},this.stateStack_=[]}static getInstance(){return s.instance=s.instance||new s,s.instance}static parseInput(t){const e={},n=t.split(":");for(let t=0,r=n.length;t<r;t++){const r=n[t].split("="),i=r[0].trim();r[1]?e[i]=r[1].trim():i.match(/^!/)?e[i.slice(1)]=!1:e[i]=!0}return e}static parseState(t){const e={},n=t.split(" ");for(let t=0,r=n.length;t<r;t++){const r=n[t].split(":"),i=r[0],o=r[1];e[i]=o||!0}return e}static translateString_(t){if(t.match(/:unit$/))return s.translateUnit_(t);const e=i.default.getInstance();let n=e.evaluator(t,e.dynamicCstr);return n=null===n?t:n,s.getInstance().getParameter("plural")&&(n=a.LOCALE.FUNCTIONS.plural(n)),n}static translateUnit_(t){t=s.prepareUnit_(t);const e=i.default.getInstance(),n=s.getInstance().getParameter("plural"),r=e.strict,o=`${e.locale}.${e.modality}.default`;let l,T;return e.strict=!0,n&&(l=e.defaultParser.parse(o+".plural"),T=e.evaluator(t,l)),T?(e.strict=r,T):(l=e.defaultParser.parse(o+".default"),T=e.evaluator(t,l),e.strict=r,T?(n&&(T=a.LOCALE.FUNCTIONS.plural(T)),T):s.cleanUnit_(t))}static prepareUnit_(t){const e=t.match(/:unit$/);return e?t.slice(0,e.index).replace(/\s+/g," ")+t.slice(e.index):t}static cleanUnit_(t){return t.match(/:unit$/)?t.replace(/:unit$/,""):t}clear(){this.parameters_={},this.stateStack_=[]}setParameter(t,e){const n=this.parameters_[t];return e?this.parameters_[t]=e:delete this.parameters_[t],n}getParameter(t){return this.parameters_[t]}setCorrection(t,e){this.corrections_[t]=e}setPreprocessor(t,e){this.preprocessors_[t]=e}getCorrection(t){return this.corrections_[t]}getState(){const t=[];for(const e in this.parameters_){const n=this.parameters_[e];t.push("string"==typeof n?e+":"+n:e)}return t.join(" ")}pushState(t){for(const e in t)t[e]=this.setParameter(e,t[e]);this.stateStack_.push(t)}popState(){const t=this.stateStack_.pop();for(const e in t)this.setParameter(e,t[e])}setAttribute(t){if(t&&t.nodeType===r.NodeType.ELEMENT_NODE){const n=this.getState();n&&t.setAttribute(e.ATTRIBUTE,n)}}preprocess(t){return this.runProcessors_(t,this.preprocessors_)}correct(t){return this.runProcessors_(t,this.corrections_)}apply(t,e){return this.currentFlags=e||{},t=this.currentFlags.adjust||this.currentFlags.preprocess?s.getInstance().preprocess(t):t,(this.parameters_.translate||this.currentFlags.translate)&&(t=s.translateString_(t)),t=this.currentFlags.adjust||this.currentFlags.correct?s.getInstance().correct(t):t,this.currentFlags={},t}runProcessors_(t,e){for(const n in this.parameters_){const r=e[n];if(!r)continue;const i=this.parameters_[n];t=!0===i?r(t):r(t,i)}return t}}function l(t,e){if(!e||!t)return t;const n=a.LOCALE.FUNCTIONS.fontRegexp(o.localFont(e));return t.replace(n,"")}function T(t){return t.match(/\d+/)?a.LOCALE.NUMBERS.numberToWords(parseInt(t,10)):t}e.Grammar=s,e.numbersToAlpha=T,s.getInstance().setCorrection("localFont",o.localFont),s.getInstance().setCorrection("localRole",o.localRole),s.getInstance().setCorrection("localEnclose",o.localEnclose),s.getInstance().setCorrection("ignoreFont",l),s.getInstance().setPreprocessor("annotation",(function(t,e){return t+":"+e})),s.getInstance().setPreprocessor("noTranslateText",(function(t){return t.match(new RegExp("^["+a.LOCALE.MESSAGES.regexp.TEXT+"]+$"))&&(s.getInstance().currentFlags.translate=!1),t})),s.getInstance().setCorrection("ignoreCaps",(function(t){let e=a.LOCALE.ALPHABETS.capPrefix[i.default.getInstance().domain];return void 0===e&&(e=a.LOCALE.ALPHABETS.capPrefix.default),l(t,e)})),s.getInstance().setPreprocessor("numbers2alpha",T)},8844:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.enumerate=e.lookupString=e.lookupCategory=e.lookupRule=e.addSiUnitRules=e.addUnitRules=e.addFunctionRules=e.addSymbolRules=e.defineRule=e.defineRules=e.setSiPrefixes=void 0;const r=n(5605),i=n(3684),o=n(2420),a=n(8389),s=n(3113);let l=s.DynamicCstr.DEFAULT_VALUES[s.Axis.LOCALE],T=s.DynamicCstr.DEFAULT_VALUES[s.Axis.MODALITY],Q={};e.setSiPrefixes=function(t){Q=t};const c={};function u(t,e,n,r){const i=L(e);b(i,n),i.defineRulesFromMappings(t,l,T,e,r)}function d(t){if(g(t))return;const e=t.names,n=t.mappings,r=t.category;for(let t,i=0;t=e[i];i++)u(t,t,r,n)}function h(t){for(const e of Object.keys(Q)){const n=Object.assign({},t);n.mappings={};const r=Q[e];n.key=e+n.key,n.names=n.names.map((function(t){return e+t}));for(const e of Object.keys(t.mappings)){n.mappings[e]={};for(const i of Object.keys(t.mappings[e]))n.mappings[e][i]=o.locales[l]().FUNCTIONS.si(r,t.mappings[e][i])}y(n)}y(t)}function p(t,e){const n=c[t];return n?n.lookupRule(null,e):null}function m(t,e){const n=p(t,e);return n?n.action:null}function f(t,e){return e=e||{},t.length?(e[t[0]]=f(t.slice(1),e[t[0]]),e):e}function y(t){const e=t.names;e&&(t.names=e.map((function(t){return t+":unit"}))),d(t)}function g(t){return!(!t.locale&&!t.modality||(l=t.locale||l,T=t.modality||T,0))}function L(t){let e=c[t];return e?(r.Debugger.getInstance().output("Store exists! "+t),e):(e=new a.MathSimpleStore,c[t]=e,e)}function b(t,e){e&&(t.category=e)}e.defineRules=u,e.defineRule=function(t,e,n,r,i,o){const a=L(i);b(a,r),a.defineRuleFromStrings(t,l,T,e,n,i,o)},e.addSymbolRules=function(t){if(g(t))return;const e=a.MathSimpleStore.parseUnicode(t.key);u(t.key,e,t.category,t.mappings)},e.addFunctionRules=d,e.addUnitRules=function(t){g(t)||(t.si?h(t):y(t))},e.addSiUnitRules=h,e.lookupRule=p,e.lookupCategory=function(t){const e=c[t];return e?e.category:""},e.lookupString=m,i.default.getInstance().evaluator=m,e.enumerate=function(t={}){for(const e of Object.values(c))for(const[,n]of e.rules.entries())for(const{cstr:e}of n)t=f(e.getValues(),t);return t}},8389:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MathSimpleStore=void 0;const r=n(3684),i=n(3113);class o{constructor(){this.category="",this.rules=new Map}static parseUnicode(t){const e=parseInt(t,16);return String.fromCodePoint(e)}static testDynamicConstraints_(t,e){return r.default.getInstance().strict?e.cstr.equal(t):r.default.getInstance().comparator.match(e.cstr)}defineRulesFromMappings(t,e,n,r,i){for(const o in i)for(const a in i[o]){const s=i[o][a];this.defineRuleFromStrings(t,e,n,o,a,r,s)}}getRules(t){let e=this.rules.get(t);return e||(e=[],this.rules.set(t,e)),e}defineRuleFromStrings(t,e,n,i,o,a,s){let l=this.getRules(e);const T=r.default.getInstance().parsers[i]||r.default.getInstance().defaultParser,Q=r.default.getInstance().comparators[i],c=`${e}.${n}.${i}.${o}`,u=T.parse(c),d=Q?Q():r.default.getInstance().comparator,h=d.getReference();d.setReference(u);const p={cstr:u,action:s};l=l.filter((t=>!u.equal(t.cstr))),l.push(p),this.rules.set(e,l),d.setReference(h)}lookupRule(t,e){let n=this.getRules(e.getValue(i.Axis.LOCALE));return n=n.filter((function(t){return o.testDynamicConstraints_(e,t)})),1===n.length?n[0]:n.length?n.sort(((t,e)=>r.default.getInstance().comparator.compare(t.cstr,e.cstr)))[0]:null}}e.MathSimpleStore=o},4760:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MathStore=void 0;const r=n(4422),i=n(3826),o=n(8770),a=n(4734),s=n(7302);class l extends a.BaseRuleStore{constructor(){super(),this.annotators=[],this.parseMethods.Alias=this.defineAlias,this.parseMethods.SpecializedRule=this.defineSpecializedRule,this.parseMethods.Specialized=this.defineSpecialized}initialize(){this.initialized||(this.annotations(),this.initialized=!0)}annotations(){for(let t,e=0;t=this.annotators[e];e++)(0,o.activate)(this.domain,t)}defineAlias(t,e,...n){const r=this.parsePrecondition(e,n);if(!r)return void console.error(`Precondition Error: ${e} ${n}`);const i=this.preconditions.get(t);i?i.addFullCondition(r):console.error(`Alias Error: No precondition by the name of ${t}`)}defineRulesAlias(t,e,...n){const r=this.findAllRules((function(e){return e.name===t}));if(0===r.length)throw new s.OutputError("Rule with name "+t+" does not exist.");const i=[];r.forEach((t=>{(t=>{const e=t.dynamicCstr.toString(),n=t.action.toString();for(let t,r=0;t=i[r];r++)if(t.action===n&&t.cstr===e)return!1;return i.push({cstr:e,action:n}),!0})(t)&&this.addAlias_(t,e,n)}))}defineSpecializedRule(t,e,n,r){const i=this.parseCstr(e),o=this.findRule((e=>e.name===t&&i.equal(e.dynamicCstr))),a=this.parseCstr(n);if(!o&&r)throw new s.OutputError("Rule named "+t+" with style "+e+" does not exist.");const l=r?s.Action.fromString(r):o.action,T=new s.SpeechRule(o.name,a,o.precondition,l);this.addRule(T)}defineSpecialized(t,e,n){const r=this.parseCstr(n);if(!r)return void console.error(`Dynamic Constraint Error: ${n}`);const i=this.preconditions.get(t);i?i.addConstraint(r):console.error(`Alias Error: No precondition by the name of ${t}`)}evaluateString(t){const e=[];if(t.match(/^\s+$/))return e;let n=this.matchNumber_(t);if(n&&n.length===t.length)return e.push(this.evaluateCharacter(n.number)),e;const o=r.removeEmpty(t.replace(/\s/g," ").split(" "));for(let t,r=0;t=o[r];r++)if(1===t.length)e.push(this.evaluateCharacter(t));else if(t.match(new RegExp("^["+i.LOCALE.MESSAGES.regexp.TEXT+"]+$")))e.push(this.evaluateCharacter(t));else{let r=t;for(;r;){n=this.matchNumber_(r);const t=r.match(new RegExp("^["+i.LOCALE.MESSAGES.regexp.TEXT+"]+"));if(n)e.push(this.evaluateCharacter(n.number)),r=r.substring(n.length);else if(t)e.push(this.evaluateCharacter(t[0])),r=r.substring(t[0].length);else{const t=Array.from(r),n=t[0];e.push(this.evaluateCharacter(n)),r=t.slice(1).join("")}}}return e}parse(t){super.parse(t),this.annotators=t.annotators||[]}addAlias_(t,e,n){const r=this.parsePrecondition(e,n),i=new s.SpeechRule(t.name,t.dynamicCstr,r,t.action);i.name=t.name,this.addRule(i)}matchNumber_(t){const e=t.match(new RegExp("^"+i.LOCALE.MESSAGES.regexp.NUMBER)),n=t.match(new RegExp("^"+l.regexp.NUMBER));if(!e&&!n)return null;const r=n&&n[0]===t;return e&&e[0]===t||!r?e?{number:e[0],length:e[0].length}:null:{number:n[0].replace(new RegExp(l.regexp.DIGIT_GROUP,"g"),"X").replace(new RegExp(l.regexp.DECIMAL_MARK,"g"),i.LOCALE.MESSAGES.regexp.DECIMAL_MARK).replace(/X/g,i.LOCALE.MESSAGES.regexp.DIGIT_GROUP.replace(/\\/g,"")),length:n[0].length}}}e.MathStore=l,l.regexp={NUMBER:"((\\d{1,3})(?=(,| ))((,| )\\d{3})*(\\.\\d+)?)|^\\d*\\.\\d+|^\\d+",DECIMAL_MARK:"\\.",DIGIT_GROUP:","}},7302:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.OutputError=e.Precondition=e.Action=e.Component=e.ActionType=e.SpeechRule=void 0;const r=n(3684),i=n(7534);var o;function a(t){switch(t){case"[n]":return o.NODE;case"[m]":return o.MULTI;case"[t]":return o.TEXT;case"[p]":return o.PERSONALITY;default:throw"Parse error: "+t}}e.SpeechRule=class{constructor(t,e,n,r){this.name=t,this.dynamicCstr=e,this.precondition=n,this.action=r,this.context=null}toString(){return this.name+" | "+this.dynamicCstr.toString()+" | "+this.precondition.toString()+" ==> "+this.action.toString()}},function(t){t.NODE="NODE",t.MULTI="MULTI",t.TEXT="TEXT",t.PERSONALITY="PERSONALITY"}(o=e.ActionType||(e.ActionType={}));class s{constructor({type:t,content:e,attributes:n,grammar:r}){this.type=t,this.content=e,this.attributes=n,this.grammar=r}static grammarFromString(t){return i.Grammar.parseInput(t)}static fromString(t){const e={type:a(t.substring(0,3))};let n=t.slice(3).trim();if(!n)throw new Q("Missing content.");switch(e.type){case o.TEXT:if('"'===n[0]){const t=c(n,"\\(")[0].trim();if('"'!==t.slice(-1))throw new Q("Invalid string syntax.");e.content=t,n=n.slice(t.length).trim(),-1===n.indexOf("(")&&(n="");break}case o.NODE:case o.MULTI:{const t=n.indexOf(" (");if(-1===t){e.content=n.trim(),n="";break}e.content=n.substring(0,t).trim(),n=n.slice(t).trim()}}if(n){const t=s.attributesFromString(n);t.grammar&&(e.grammar=t.grammar,delete t.grammar),Object.keys(t).length&&(e.attributes=t)}return new s(e)}static attributesFromString(t){if("("!==t[0]||")"!==t.slice(-1))throw new Q("Invalid attribute expression: "+t);const e={},n=c(t.slice(1,-1),",");for(let t=0,r=n.length;t<r;t++){const r=n[t],o=r.indexOf(":");if(-1===o)e[r.trim()]="true";else{const t=r.substring(0,o).trim(),n=r.slice(o+1).trim();e[t]=t===i.ATTRIBUTE?s.grammarFromString(n):n}}return e}toString(){let t="";t+=function(t){switch(t){case o.NODE:return"[n]";case o.MULTI:return"[m]";case o.TEXT:return"[t]";case o.PERSONALITY:return"[p]";default:throw"Unknown type error: "+t}}(this.type),t+=this.content?" "+this.content:"";const e=this.attributesToString();return t+=e?" "+e:"",t}grammarToString(){return this.getGrammar().join(":")}getGrammar(){const t=[];for(const e in this.grammar)!0===this.grammar[e]?t.push(e):!1===this.grammar[e]?t.push("!"+e):t.push(e+"="+this.grammar[e]);return t}attributesToString(){const t=this.getAttributes(),e=this.grammarToString();return e&&t.push("grammar:"+e),t.length>0?"("+t.join(", ")+")":""}getAttributes(){const t=[];for(const e in this.attributes){const n=this.attributes[e];"true"===n?t.push(e):t.push(e+":"+n)}return t}}e.Component=s;class l{constructor(t){this.components=t}static fromString(t){const e=c(t,";").filter((function(t){return t.match(/\S/)})).map((function(t){return t.trim()})),n=[];for(let t=0,r=e.length;t<r;t++){const r=s.fromString(e[t]);r&&n.push(r)}return new l(n)}toString(){return this.components.map((function(t){return t.toString()})).join("; ")}}e.Action=l;class T{constructor(t,...e){this.query=t,this.constraints=e;const[n,r]=this.presetPriority();this.priority=n?r:this.calculatePriority()}static constraintValue(t,e){for(let n,r=0;n=e[r];r++)if(t.match(n))return++r;return 0}toString(){const t=this.constraints.join(", ");return`${this.query}, ${t} (${this.priority}, ${this.rank})`}calculatePriority(){const t=T.constraintValue(this.query,T.queryPriorities);if(!t)return 0;const e=this.query.match(/^self::.+\[(.+)\]/)[1];return 100*t+10*T.constraintValue(e,T.attributePriorities)}presetPriority(){if(!this.constraints.length)return[!1,0];const t=this.constraints[this.constraints.length-1].match(/^priority=(.*$)/);if(!t)return[!1,0];this.constraints.pop();const e=parseFloat(t[1]);return[!0,isNaN(e)?0:e]}}e.Precondition=T,T.queryPriorities=[/^self::\*\[.+\]$/,/^self::[\w-]+\[.+\]$/],T.attributePriorities=[/^@[\w-]+$/,/^@[\w-]+!=".+"$/,/^not\(contains\(@[\w-]+,\s*".+"\)\)$/,/^contains\(@[\w-]+,".+"\)$/,/^@[\w-]+=".+"$/];class Q extends r.SREError{constructor(t){super(t),this.name="RuleError"}}function c(t,e){const n=[];let r="";for(;""!==t;){const i=t.search(e);if(-1===i){if((t.match(/"/g)||[]).length%2!=0)throw new Q("Invalid string in expression: "+t);n.push(r+t),r="",t=""}else if((t.substring(0,i).match(/"/g)||[]).length%2==0)n.push(r+t.substring(0,i)),r="",t=t.substring(i+1);else{const e=t.substring(i).search('"');if(-1===e)throw new Q("Invalid string in expression: "+t);r+=t.substring(0,i+e+1),t=t.substring(i+e+1)}}return r&&n.push(r),n}e.OutputError=Q},4470:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SpeechRuleContext=void 0;const r=n(1746),i=n(9202);e.SpeechRuleContext=class{constructor(){this.customQueries=new i.CustomQueries,this.customStrings=new i.CustomStrings,this.contextFunctions=new i.ContextFunctions,this.customGenerators=new i.CustomGenerators}applyCustomQuery(t,e){const n=this.customQueries.lookup(e);return n?n(t):null}applySelector(t,e){return this.applyCustomQuery(t,e)||r.evalXPath(e,t)}applyQuery(t,e){const n=this.applySelector(t,e);return n.length>0?n[0]:null}applyConstraint(t,e){return!!this.applyQuery(t,e)||r.evaluateBoolean(e,t)}constructString(t,e){if(!e)return"";if('"'===e.charAt(0))return e.slice(1,-1);const n=this.customStrings.lookup(e);return n?n(t):r.evaluateString(e,t)}parse(t){const e=Array.isArray(t)?t:Object.entries(t);for(let t,n=0;t=e[n];n++)switch(t[0].slice(0,3)){case"CQF":this.customQueries.add(t[0],t[1]);break;case"CSF":this.customStrings.add(t[0],t[1]);break;case"CTF":this.contextFunctions.add(t[0],t[1]);break;case"CGF":this.customGenerators.add(t[0],t[1]);break;default:console.error("FunctionError: Invalid function name "+t[0])}}}},5124:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.storeFactory=e.SpeechRuleEngine=void 0;const r=n(2975),i=n(5605),o=n(7041),a=n(3684),s=n(9686),l=n(1746),T=n(3445),Q=n(7044),c=n(933),u=n(3113),d=n(7534),h=n(4760),p=n(7302),m=n(3998);class f{constructor(){this.trie=null,this.evaluators_={},this.trie=new m.Trie}static getInstance(){return f.instance=f.instance||new f,f.instance}static debugSpeechRule(t,e){const n=t.precondition,r=t.context.applyQuery(e,n.query);i.Debugger.getInstance().output(n.query,r?r.toString():r),n.constraints.forEach((n=>i.Debugger.getInstance().output(n,t.context.applyConstraint(e,n))))}static debugNamedSpeechRule(t,e){const n=f.getInstance().trie.collectRules().filter((e=>e.name==t));for(let r,o=0;r=n[o];o++)i.Debugger.getInstance().output("Rule",t,"DynamicCstr:",r.dynamicCstr.toString(),"number",o),f.debugSpeechRule(r,e)}evaluateNode(t){(0,l.updateEvaluator)(t);const e=(new Date).getTime();let n=[];try{n=this.evaluateNode_(t)}catch(t){console.error("Something went wrong computing speech."),i.Debugger.getInstance().output(t)}const r=(new Date).getTime();return i.Debugger.getInstance().output("Time:",r-e),n}toString(){return this.trie.collectRules().map((t=>t.toString())).join("\n")}runInSetting(t,e){const n=a.default.getInstance(),r={};for(const e in t)r[e]=n[e],n[e]=t[e];n.setDynamicCstr();const i=e();for(const t in r)n[t]=r[t];return n.setDynamicCstr(),i}addStore(t){const e=g(t);"abstract"!==e.kind&&e.getSpeechRules().forEach((t=>this.trie.addRule(t))),this.addEvaluator(e)}processGrammar(t,e,n){const r={};for(const i in n){const o=n[i];r[i]="string"==typeof o?t.constructString(e,o):o}d.Grammar.getInstance().pushState(r)}addEvaluator(t){const e=t.evaluateDefault.bind(t),n=this.evaluators_[t.locale];if(n)return void(n[t.modality]=e);const r={};r[t.modality]=e,this.evaluators_[t.locale]=r}getEvaluator(t,e){const n=this.evaluators_[t]||this.evaluators_[u.DynamicCstr.DEFAULT_VALUES[u.Axis.LOCALE]];return n[e]||n[u.DynamicCstr.DEFAULT_VALUES[u.Axis.MODALITY]]}enumerate(t){return this.trie.enumerate(t)}evaluateNode_(t){return t?(this.updateConstraint_(),this.evaluateTree_(t)):[]}evaluateTree_(t){const e=a.default.getInstance();let n;i.Debugger.getInstance().output(e.mode!==s.Mode.HTTP?t.toString():t),d.Grammar.getInstance().setAttribute(t);const o=this.lookupRule(t,e.dynamicCstr);if(!o)return e.strict?[]:(n=this.getEvaluator(e.locale,e.modality)(t),t.attributes&&this.addPersonality_(n,{},!1,t),n);i.Debugger.getInstance().generateOutput((()=>["Apply Rule:",o.name,o.dynamicCstr.toString(),(e.mode,s.Mode.HTTP,t).toString()]));const T=o.context,Q=o.action.components;n=[];for(let e,i=0;e=Q[i];i++){let i=[];const o=e.content||"",s=e.attributes||{};let Q=!1;e.grammar&&this.processGrammar(T,t,e.grammar);let c=null;if(s.engine){c=a.default.getInstance().dynamicCstr.getComponents();const t=d.Grammar.parseInput(s.engine);a.default.getInstance().setDynamicCstr(t)}switch(e.type){case p.ActionType.NODE:{const e=T.applyQuery(t,o);e&&(i=this.evaluateTree_(e))}break;case p.ActionType.MULTI:{Q=!0;const e=T.applySelector(t,o);e.length>0&&(i=this.evaluateNodeList_(T,e,s.sepFunc,T.constructString(t,s.separator),s.ctxtFunc,T.constructString(t,s.context)))}break;case p.ActionType.TEXT:{const e=s.span,n={};if(e){const r=(0,l.evalXPath)(e,t);r.length&&(n.extid=r[0].getAttribute("extid"))}const a=T.constructString(t,o);(a||""===a)&&(i=Array.isArray(a)?a.map((function(t){return r.AuditoryDescription.create({text:t.speech,attributes:t.attributes},{adjust:!0})})):[r.AuditoryDescription.create({text:a,attributes:n},{adjust:!0})])}break;case p.ActionType.PERSONALITY:default:i=[r.AuditoryDescription.create({text:o})]}i[0]&&!Q&&(s.context&&(i[0].context=T.constructString(t,s.context)+(i[0].context||"")),s.annotation&&(i[0].annotation=s.annotation)),this.addLayout(i,s,Q),e.grammar&&d.Grammar.getInstance().popState(),n=n.concat(this.addPersonality_(i,s,Q,t)),c&&a.default.getInstance().setDynamicCstr(c)}return n}evaluateNodeList_(t,e,n,i,o,a){if(!e.length)return[];const s=i||"",l=a||"",T=t.contextFunctions.lookup(o),Q=T?T(e,l):function(){return l},c=t.contextFunctions.lookup(n),u=c?c(e,s):function(){return[r.AuditoryDescription.create({text:s},{translate:!0})]};let d=[];for(let t,n=0;t=e[n];n++){const r=this.evaluateTree_(t);if(r.length>0&&(r[0].context=Q()+(r[0].context||""),d=d.concat(r),n<e.length-1)){const t=u();d=d.concat(t)}}return d}addLayout(t,e,n){const i=e.layout;i&&(i.match(/^begin/)?t.unshift(new r.AuditoryDescription({text:"",layout:i})):i.match(/^end/)?t.push(new r.AuditoryDescription({text:"",layout:i})):(t.unshift(new r.AuditoryDescription({text:"",layout:`begin${i}`})),t.push(new r.AuditoryDescription({text:"",layout:`end${i}`}))))}addPersonality_(t,e,n,i){const o={};let a=null;for(const t of s.personalityPropList){const n=e[t];if(void 0===n)continue;const r=parseFloat(n),i=isNaN(r)?'"'===n.charAt(0)?n.slice(1,-1):n:r;t===s.personalityProps.PAUSE?a=i:o[t]=i}for(let e,n=0;e=t[n];n++)this.addRelativePersonality_(e,o),this.addExternalAttributes_(e,i);if(n&&t.length&&delete t[t.length-1].personality[s.personalityProps.JOIN],a&&t.length){const e=t[t.length-1];e.text||Object.keys(e.personality).length?t.push(r.AuditoryDescription.create({text:"",personality:{pause:a}})):e.personality[s.personalityProps.PAUSE]=a}return t}addExternalAttributes_(t,e){if(e.hasAttributes()){const n=e.attributes;for(let e=n.length-1;e>=0;e--){const r=n[e].name;!t.attributes[r]&&r.match(/^ext/)&&(t.attributes[r]=n[e].value)}}}addRelativePersonality_(t,e){if(!t.personality)return t.personality=e,t;const n=t.personality;for(const t in e)n[t]&&"number"==typeof n[t]&&"number"==typeof e[t]?n[t]=n[t]+e[t]:n[t]||(n[t]=e[t]);return t}updateConstraint_(){const t=a.default.getInstance().dynamicCstr,e=a.default.getInstance().strict,n=this.trie,r={};let i=t.getValue(u.Axis.LOCALE),o=t.getValue(u.Axis.MODALITY),s=t.getValue(u.Axis.DOMAIN);n.hasSubtrie([i,o,s])||(s=u.DynamicCstr.DEFAULT_VALUES[u.Axis.DOMAIN],n.hasSubtrie([i,o,s])||(o=u.DynamicCstr.DEFAULT_VALUES[u.Axis.MODALITY],n.hasSubtrie([i,o,s])||(i=u.DynamicCstr.DEFAULT_VALUES[u.Axis.LOCALE]))),r[u.Axis.LOCALE]=[i],r[u.Axis.MODALITY]=["summary"!==o?o:u.DynamicCstr.DEFAULT_VALUES[u.Axis.MODALITY]],r[u.Axis.DOMAIN]=["speech"!==o?u.DynamicCstr.DEFAULT_VALUES[u.Axis.DOMAIN]:s];const l=t.getOrder();for(let n,i=0;n=l[i];i++)if(!r[n]){const i=t.getValue(n),o=this.makeSet_(i,t.preference),a=u.DynamicCstr.DEFAULT_VALUES[n];e||i===a||o.push(a),r[n]=o}t.updateProperties(r)}makeSet_(t,e){return e&&Object.keys(e).length?t.split(":"):[t]}lookupRule(t,e){if(!t||t.nodeType!==o.NodeType.ELEMENT_NODE&&t.nodeType!==o.NodeType.TEXT_NODE)return null;const n=this.lookupRules(t,e);return n.length>0?this.pickMostConstraint_(e,n):null}lookupRules(t,e){return this.trie.lookupRules(t,e.allProperties())}pickMostConstraint_(t,e){const n=a.default.getInstance().comparator;return e.sort((function(t,e){return n.compare(t.dynamicCstr,e.dynamicCstr)||e.precondition.priority-t.precondition.priority||e.precondition.constraints.length-t.precondition.constraints.length||e.precondition.rank-t.precondition.rank})),i.Debugger.getInstance().generateOutput((()=>e.map((t=>t.name+"("+t.dynamicCstr.toString()+")"))).bind(this)),e[0]}}e.SpeechRuleEngine=f;const y=new Map;function g(t){const e=`${t.locale}.${t.modality}.${t.domain}`;if("actions"===t.kind){const n=y.get(e);return n.parse(t),n}Q.init(),t&&!t.functions&&(t.functions=T.getStore(t.locale,t.modality,t.domain));const n="braille"===t.modality?new c.BrailleStore:new h.MathStore;return y.set(e,n),t.inherits&&(n.inherits=y.get(`${t.inherits}.${t.modality}.${t.domain}`)),n.parse(t),n.initialize(),n}e.storeFactory=g,a.default.nodeEvaluator=f.getInstance().evaluateNode.bind(f.getInstance())},9202:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CustomGenerators=e.ContextFunctions=e.CustomStrings=e.CustomQueries=void 0;class n{constructor(t,e){this.prefix=t,this.store=e}add(t,e){this.checkCustomFunctionSyntax_(t)&&(this.store[t]=e)}addStore(t){const e=Object.keys(t.store);for(let n,r=0;n=e[r];r++)this.add(n,t.store[n])}lookup(t){return this.store[t]}checkCustomFunctionSyntax_(t){const e=new RegExp("^"+this.prefix);return!!t.match(e)||(console.error("FunctionError: Invalid function name. Expected prefix "+this.prefix),!1)}}e.CustomQueries=class extends n{constructor(){super("CQF",{})}},e.CustomStrings=class extends n{constructor(){super("CSF",{})}},e.ContextFunctions=class extends n{constructor(){super("CTF",{})}},e.CustomGenerators=class extends n{constructor(){super("CGF",{})}}},8159:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.contentIterator=e.pauseSeparator=e.nodeCounter=void 0;const r=n(2975),i=n(1746),o=n(3684);e.nodeCounter=function(t,e){const n=t.length;let r=0,i=e;return e||(i=""),function(){return r<n&&(r+=1),i+" "+r}},e.pauseSeparator=function(t,e){const n=parseFloat(e),i=isNaN(n)?e:n;return function(){return[r.AuditoryDescription.create({text:"",personality:{pause:i}})]}},e.contentIterator=function(t,e){let n;return n=t.length>0?i.evalXPath("../../content/*",t[0]):[],function(){const t=n.shift(),i=e?[r.AuditoryDescription.create({text:e},{translate:!0})]:[];if(!t)return i;const a=o.default.evaluateNode(t);return i.concat(a)}}},6256:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getTreeFromString=e.getTree=e.xmlTree=void 0;const r=n(7041),i=n(1250);function o(t){return new i.SemanticTree(t)}e.xmlTree=function(t){return o(t).xml()},e.getTree=o,e.getTreeFromString=function(t){return o(r.parseInput(t))}},8770:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.annotate=e.activate=e.register=e.visitors=e.annotators=void 0;const r=n(5707);e.annotators=new Map,e.visitors=new Map,e.register=function(t){const n=t.domain+":"+t.name;t instanceof r.SemanticAnnotator?e.annotators.set(n,t):e.visitors.set(n,t)},e.activate=function(t,n){const r=t+":"+n,i=e.annotators.get(r)||e.visitors.get(r);i&&(i.active=!0)},e.annotate=function(t){for(const n of e.annotators.values())n.active&&n.annotate(t);for(const n of e.visitors.values())n.active&&n.visit(t,Object.assign({},n.def))}},5707:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticVisitor=e.SemanticAnnotator=void 0,e.SemanticAnnotator=class{constructor(t,e,n){this.domain=t,this.name=e,this.func=n,this.active=!1}annotate(t){t.childNodes.forEach(this.annotate.bind(this)),t.addAnnotation(this.domain,this.func(t))}},e.SemanticVisitor=class{constructor(t,e,n,r={}){this.domain=t,this.name=e,this.func=n,this.def=r,this.active=!1}visit(t,e){let n=this.func(t,e);t.addAnnotation(this.domain,n[0]);for(let e,r=0;e=t.childNodes[r];r++)n=this.visit(e,n[1]);return n}}},218:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.lookupSecondary=e.isEmbellishedType=e.isMatchingFence=e.functionApplication=e.invisibleComma=e.invisiblePlus=e.invisibleTimes=e.lookupMeaning=e.lookupRole=e.lookupType=e.equal=e.allLettersRegExp=void 0;const n=String.fromCodePoint(8291),r=[",","﹐",",",n],i=["¯","‒","–","—","―","﹘","-","⁻","₋","−","➖","﹣","-","‐","‑","‾","_"],o=["~","̃","∼","˜","∽","˷","̴","̰"],a={"(":")","[":"]","{":"}","⁅":"⁆","〈":"〉","❨":"❩","❪":"❫","❬":"❭","❮":"❯","❰":"❱","❲":"❳","❴":"❵","⟅":"⟆","⟦":"⟧","⟨":"⟩","⟪":"⟫","⟬":"⟭","⟮":"⟯","⦃":"⦄","⦅":"⦆","⦇":"⦈","⦉":"⦊","⦋":"⦌","⦍":"⦎","⦏":"⦐","⦑":"⦒","⦓":"⦔","⦕":"⦖","⦗":"⦘","⧘":"⧙","⧚":"⧛","⧼":"⧽","⸢":"⸣","⸤":"⸥","⸦":"⸧","⸨":"⸩","〈":"〉","《":"》","「":"」","『":"』","【":"】","〔":"〕","〖":"〗","〘":"〙","〚":"〛","〝":"〞","﴾":"﴿","︗":"︘","﹙":"﹚","﹛":"﹜","﹝":"﹞","(":")","[":"]","{":"}","⦅":"⦆","「":"」","⌈":"⌉","⌊":"⌋","⌌":"⌍","⌎":"⌏","⌜":"⌝","⌞":"⌟","⎛":"⎞","⎜":"⎟","⎝":"⎠","⎡":"⎤","⎢":"⎥","⎣":"⎦","⎧":"⎫","⎨":"⎬","⎩":"⎭","⎰":"⎱","⎸":"⎹"},s={"⎴":"⎵","⏜":"⏝","⏞":"⏟","⏠":"⏡","︵":"︶","︷":"︸","︹":"︺","︻":"︼","︽":"︾","︿":"﹀","﹁":"﹂","﹃":"﹄","﹇":"﹈"},l=Object.keys(a),T=Object.values(a);T.push("〟");const Q=Object.keys(s),c=Object.values(s),u=["|","¦","∣","⏐","⎸","⎹","❘","|","¦","︱","︲"],d=["‖","∥","⦀","⫴"],h=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],p=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","ı","ȷ"],m=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],f=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],y=["𝐀","𝐁","𝐂","𝐃","𝐄","𝐅","𝐆","𝐇","𝐈","𝐉","𝐊","𝐋","𝐌","𝐍","𝐎","𝐏","𝐐","𝐑","𝐒","𝐓","𝐔","𝐕","𝐖","𝐗","𝐘","𝐙"],g=["𝐚","𝐛","𝐜","𝐝","𝐞","𝐟","𝐠","𝐡","𝐢","𝐣","𝐤","𝐥","𝐦","𝐧","𝐨","𝐩","𝐪","𝐫","𝐬","𝐭","𝐮","𝐯","𝐰","𝐱","𝐲","𝐳"],L=["𝐴","𝐵","𝐶","𝐷","𝐸","𝐹","𝐺","𝐻","𝐼","𝐽","𝐾","𝐿","𝑀","𝑁","𝑂","𝑃","𝑄","𝑅","𝑆","𝑇","𝑈","𝑉","𝑊","𝑋","𝑌","𝑍"],b=["𝑎","𝑏","𝑐","𝑑","𝑒","𝑓","𝑔","ℎ","𝑖","𝑗","𝑘","𝑙","𝑚","𝑛","𝑜","𝑝","𝑞","𝑟","𝑠","𝑡","𝑢","𝑣","𝑤","𝑥","𝑦","𝑧","𝚤","𝚥"],v=["𝑨","𝑩","𝑪","𝑫","𝑬","𝑭","𝑮","𝑯","𝑰","𝑱","𝑲","𝑳","𝑴","𝑵","𝑶","𝑷","𝑸","𝑹","𝑺","𝑻","𝑼","𝑽","𝑾","𝑿","𝒀","𝒁"],x=["𝒂","𝒃","𝒄","𝒅","𝒆","𝒇","𝒈","𝒉","𝒊","𝒋","𝒌","𝒍","𝒎","𝒏","𝒐","𝒑","𝒒","𝒓","𝒔","𝒕","𝒖","𝒗","𝒘","𝒙","𝒚","𝒛"],_=["𝒜","ℬ","𝒞","𝒟","ℰ","ℱ","𝒢","ℋ","ℐ","𝒥","𝒦","ℒ","ℳ","𝒩","𝒪","𝒫","𝒬","ℛ","𝒮","𝒯","𝒰","𝒱","𝒲","𝒳","𝒴","𝒵","℘"],H=["𝒶","𝒷","𝒸","𝒹","ℯ","𝒻","ℊ","𝒽","𝒾","𝒿","𝓀","𝓁","𝓂","𝓃","ℴ","𝓅","𝓆","𝓇","𝓈","𝓉","𝓊","𝓋","𝓌","𝓍","𝓎","𝓏","ℓ"],w=["𝓐","𝓑","𝓒","𝓓","𝓔","𝓕","𝓖","𝓗","𝓘","𝓙","𝓚","𝓛","𝓜","𝓝","𝓞","𝓟","𝓠","𝓡","𝓢","𝓣","𝓤","𝓥","𝓦","𝓧","𝓨","𝓩"],O=["𝓪","𝓫","𝓬","𝓭","𝓮","𝓯","𝓰","𝓱","𝓲","𝓳","𝓴","𝓵","𝓶","𝓷","𝓸","𝓹","𝓺","𝓻","𝓼","𝓽","𝓾","𝓿","𝔀","𝔁","𝔂","𝔃"],M=["𝔄","𝔅","ℭ","𝔇","𝔈","𝔉","𝔊","ℌ","ℑ","𝔍","𝔎","𝔏","𝔐","𝔑","𝔒","𝔓","𝔔","ℜ","𝔖","𝔗","𝔘","𝔙","𝔚","𝔛","𝔜","ℨ"],S=["𝔞","𝔟","𝔠","𝔡","𝔢","𝔣","𝔤","𝔥","𝔦","𝔧","𝔨","𝔩","𝔪","𝔫","𝔬","𝔭","𝔮","𝔯","𝔰","𝔱","𝔲","𝔳","𝔴","𝔵","𝔶","𝔷"],E=["𝔸","𝔹","ℂ","𝔻","𝔼","𝔽","𝔾","ℍ","𝕀","𝕁","𝕂","𝕃","𝕄","ℕ","𝕆","ℙ","ℚ","ℝ","𝕊","𝕋","𝕌","𝕍","𝕎","𝕏","𝕐","ℤ"],A=["𝕒","𝕓","𝕔","𝕕","𝕖","𝕗","𝕘","𝕙","𝕚","𝕛","𝕜","𝕝","𝕞","𝕟","𝕠","𝕡","𝕢","𝕣","𝕤","𝕥","𝕦","𝕧","𝕨","𝕩","𝕪","𝕫"],C=["𝕬","𝕭","𝕮","𝕯","𝕰","𝕱","𝕲","𝕳","𝕴","𝕵","𝕶","𝕷","𝕸","𝕹","𝕺","𝕻","𝕼","𝕽","𝕾","𝕿","𝖀","𝖁","𝖂","𝖃","𝖄","𝖅"],V=["𝖆","𝖇","𝖈","𝖉","𝖊","𝖋","𝖌","𝖍","𝖎","𝖏","𝖐","𝖑","𝖒","𝖓","𝖔","𝖕","𝖖","𝖗","𝖘","𝖙","𝖚","𝖛","𝖜","𝖝","𝖞","𝖟"],N=["𝖠","𝖡","𝖢","𝖣","𝖤","𝖥","𝖦","𝖧","𝖨","𝖩","𝖪","𝖫","𝖬","𝖭","𝖮","𝖯","𝖰","𝖱","𝖲","𝖳","𝖴","𝖵","𝖶","𝖷","𝖸","𝖹"],I=["𝖺","𝖻","𝖼","𝖽","𝖾","𝖿","𝗀","𝗁","𝗂","𝗃","𝗄","𝗅","𝗆","𝗇","𝗈","𝗉","𝗊","𝗋","𝗌","𝗍","𝗎","𝗏","𝗐","𝗑","𝗒","𝗓"],P=["𝗔","𝗕","𝗖","𝗗","𝗘","𝗙","𝗚","𝗛","𝗜","𝗝","𝗞","𝗟","𝗠","𝗡","𝗢","𝗣","𝗤","𝗥","𝗦","𝗧","𝗨","𝗩","𝗪","𝗫","𝗬","𝗭"],R=["𝗮","𝗯","𝗰","𝗱","𝗲","𝗳","𝗴","𝗵","𝗶","𝗷","𝗸","𝗹","𝗺","𝗻","𝗼","𝗽","𝗾","𝗿","𝘀","𝘁","𝘂","𝘃","𝘄","𝘅","𝘆","𝘇"],k=["𝘈","𝘉","𝘊","𝘋","𝘌","𝘍","𝘎","𝘏","𝘐","𝘑","𝘒","𝘓","𝘔","𝘕","𝘖","𝘗","𝘘","𝘙","𝘚","𝘛","𝘜","𝘝","𝘞","𝘟","𝘠","𝘡"],D=["𝘢","𝘣","𝘤","𝘥","𝘦","𝘧","𝘨","𝘩","𝘪","𝘫","𝘬","𝘭","𝘮","𝘯","𝘰","𝘱","𝘲","𝘳","𝘴","𝘵","𝘶","𝘷","𝘸","𝘹","𝘺","𝘻"],B=["𝘼","𝘽","𝘾","𝘿","𝙀","𝙁","𝙂","𝙃","𝙄","𝙅","𝙆","𝙇","𝙈","𝙉","𝙊","𝙋","𝙌","𝙍","𝙎","𝙏","𝙐","𝙑","𝙒","𝙓","𝙔","𝙕"],j=["𝙖","𝙗","𝙘","𝙙","𝙚","𝙛","𝙜","𝙝","𝙞","𝙟","𝙠","𝙡","𝙢","𝙣","𝙤","𝙥","𝙦","𝙧","𝙨","𝙩","𝙪","𝙫","𝙬","𝙭","𝙮","𝙯"],F=["𝙰","𝙱","𝙲","𝙳","𝙴","𝙵","𝙶","𝙷","𝙸","𝙹","𝙺","𝙻","𝙼","𝙽","𝙾","𝙿","𝚀","𝚁","𝚂","𝚃","𝚄","𝚅","𝚆","𝚇","𝚈","𝚉"],G=["𝚊","𝚋","𝚌","𝚍","𝚎","𝚏","𝚐","𝚑","𝚒","𝚓","𝚔","𝚕","𝚖","𝚗","𝚘","𝚙","𝚚","𝚛","𝚜","𝚝","𝚞","𝚟","𝚠","𝚡","𝚢","𝚣"],q=["ⅅ","ⅆ","ⅇ","ⅈ","ⅉ"],U=["Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω"],Z=["α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω"],z=["𝚨","𝚩","𝚪","𝚫","𝚬","𝚭","𝚮","𝚯","𝚰","𝚱","𝚲","𝚳","𝚴","𝚵","𝚶","𝚷","𝚸","𝚺","𝚻","𝚼","𝚽","𝚾","𝚿","𝛀"],W=["𝛂","𝛃","𝛄","𝛅","𝛆","𝛇","𝛈","𝛉","𝛊","𝛋","𝛌","𝛍","𝛎","𝛏","𝛐","𝛑","𝛒","𝛓","𝛔","𝛕","𝛖","𝛗","𝛘","𝛙","𝛚"],X=["𝛢","𝛣","𝛤","𝛥","𝛦","𝛧","𝛨","𝛩","𝛪","𝛫","𝛬","𝛭","𝛮","𝛯","𝛰","𝛱","𝛲","𝛴","𝛵","𝛶","𝛷","𝛸","𝛹","𝛺"],$=["𝛼","𝛽","𝛾","𝛿","𝜀","𝜁","𝜂","𝜃","𝜄","𝜅","𝜆","𝜇","𝜈","𝜉","𝜊","𝜋","𝜌","𝜍","𝜎","𝜏","𝜐","𝜑","𝜒","𝜓","𝜔"],K=["𝜜","𝜝","𝜞","𝜟","𝜠","𝜡","𝜢","𝜣","𝜤","𝜥","𝜦","𝜧","𝜨","𝜩","𝜪","𝜫","𝜬","𝜮","𝜯","𝜰","𝜱","𝜲","𝜳","𝜴"],J=["𝜶","𝜷","𝜸","𝜹","𝜺","𝜻","𝜼","𝜽","𝜾","𝜿","𝝀","𝝁","𝝂","𝝃","𝝄","𝝅","𝝆","𝝇","𝝈","𝝉","𝝊","𝝋","𝝌","𝝍","𝝎"],Y=["𝝖","𝝗","𝝘","𝝙","𝝚","𝝛","𝝜","𝝝","𝝞","𝝟","𝝠","𝝡","𝝢","𝝣","𝝤","𝝥","𝝦","𝝨","𝝩","𝝪","𝝫","𝝬","𝝭","𝝮"],tt=["𝝰","𝝱","𝝲","𝝳","𝝴","𝝵","𝝶","𝝷","𝝸","𝝹","𝝺","𝝻","𝝼","𝝽","𝝾","𝝿","𝞀","𝞁","𝞂","𝞃","𝞄","𝞅","𝞆","𝞇","𝞈"],et=["𝞐","𝞑","𝞒","𝞓","𝞔","𝞕","𝞖","𝞗","𝞘","𝞙","𝞚","𝞛","𝞜","𝞝","𝞞","𝞟","𝞠","𝞢","𝞣","𝞤","𝞥","𝞦","𝞧","𝞨"],nt=["𝞪","𝞫","𝞬","𝞭","𝞮","𝞯","𝞰","𝞱","𝞲","𝞳","𝞴","𝞵","𝞶","𝞷","𝞸","𝞹","𝞺","𝞻","𝞼","𝞽","𝞾","𝞿","𝟀","𝟁","𝟂"],rt=["ℼ","ℽ","ℾ","ℿ"],it=["ϐ","ϑ","ϕ","ϖ","ϗ","ϰ","ϱ","ϵ","϶","ϴ"],ot=["𝛜","𝛝","𝛞","𝛟","𝛠","𝛡"],at=["𝜖","𝜗","𝜘","𝜙","𝜚","𝜛"],st=["𝞊","𝞋","𝞌","𝞍","𝞎","𝞏"],lt=["ℵ","ℶ","ℷ","ℸ"],Tt=h.concat(p,m,f,y,g,L,v,x,b,_,H,w,O,M,S,E,A,C,V,N,I,P,R,k,D,B,j,F,G,q,U,Z,z,W,X,$,K,J,Y,tt,rt,it,et,nt,ot,at,st,lt);e.allLettersRegExp=new RegExp(Tt.join("|"));const Qt=["+","±","∓","∔","∧","∨","∩","∪","⊌","⊍","⊎","⊓","⊔","⊝","⊞","⊤","⊥","⊺","⊻","⊼","⋄","⋎","⋏","⋒","⋓","⩞","⊕","⋔"],ct=String.fromCodePoint(8292);Qt.push(ct);const ut=["†","‡","∐","∗","∘","∙","≀","⊚","⊛","⊠","⊡","⋅","⋆","⋇","⋈","⋉","⋊","⋋","⋌","○","·","*","⊗","⊙"],dt=String.fromCodePoint(8290);ut.push(dt);const ht=String.fromCodePoint(8289),pt=["²","³","¹","⁰","⁴","⁵","⁶","⁷","⁸","⁹"].concat(["₀","₁","₂","₃","₄","₅","₆","₇","₈","₉"],["①","②","③","④","⑤","⑥","⑦","⑧","⑨","⑩","⑪","⑫","⑬","⑭","⑮","⑯","⑰","⑱","⑲","⑳","⓪","⓫","⓬","⓭","⓮","⓯","⓰","⓱","⓲","⓳","⓴","⓵","⓶","⓷","⓸","⓹","⓺","⓻","⓼","⓽","⓾","⓿","❶","❷","❸","❹","❺","❻","❼","❽","❾","❿","➀","➁","➂","➃","➄","➅","➆","➇","➈","➉","➊","➋","➌","➍","➎","➏","➐","➑","➒","➓","㉈","㉉","㉊","㉋","㉌","㉍","㉎","㉏","㉑","㉒","㉓","㉔","㉕","㉖","㉗","㉘","㉙","㉚","㉛","㉜","㉝","㉞","㉟","㊱","㊲","㊳","㊴","㊵","㊶","㊷","㊸","㊹","㊺","㊻","㊼","㊽","㊾","㊿"],["⑴","⑵","⑶","⑷","⑸","⑹","⑺","⑻","⑼","⑽","⑾","⑿","⒀","⒁","⒂","⒃","⒄","⒅","⒆","⒇"],["⒈","⒉","⒊","⒋","⒌","⒍","⒎","⒏","⒐","⒑","⒒","⒓","⒔","⒕","⒖","⒗","⒘","⒙","⒚","⒛","🄀","🄁","🄂","🄃","🄄","🄅","🄆","🄇","🄈","🄉","🄊"]),mt=["cos","cot","csc","sec","sin","tan","arccos","arccot","arccsc","arcsec","arcsin","arctan","arc cos","arc cot","arc csc","arc sec","arc sin","arc tan"].concat(["cosh","coth","csch","sech","sinh","tanh","arcosh","arcoth","arcsch","arsech","arsinh","artanh","arccosh","arccoth","arccsch","arcsech","arcsinh","arctanh"],["deg","det","dim","hom","ker","Tr","tr"],["log","ln","lg","exp","expt","gcd","gcd","arg","im","re","Pr"]),ft=[{set:["!",'"',"#","%","&",";","?","@","\\","¡","§","¶","¿","‗","†","‡","•","‣","․","‥","‧","‰","‱","‸","※","‼","‽","‾","⁁","⁂","⁃","⁇","⁈","⁉","⁋","⁌","⁍","⁎","⁏","⁐","⁑","⁓","⁕","⁖","⁘","⁙","⁚","⁛","⁜","⁝","⁞","︐","︔","︕","︖","︰","﹅","﹆","﹉","﹊","﹋","﹌","﹔","﹖","﹗","﹟","﹠","﹡","﹨","﹪","﹫","!",""","#","%","&","'","*","/",";","?","@","\"],type:"punctuation",role:"unknown"},{set:["︓",":",":","﹕"],type:"punctuation",role:"colon"},{set:r,type:"punctuation",role:"comma"},{set:["…","⋮","⋯","⋰","⋱","︙"],type:"punctuation",role:"ellipsis"},{set:[".","﹒","."],type:"punctuation",role:"fullstop"},{set:i,type:"operator",role:"dash"},{set:o,type:"operator",role:"tilde"},{set:["'","′","″","‴","‵","‶","‷","⁗","ʹ","ʺ"],type:"punctuation",role:"prime"},{set:["°"],type:"punctuation",role:"degree"},{set:l,type:"fence",role:"open"},{set:T,type:"fence",role:"close"},{set:Q,type:"fence",role:"top"},{set:c,type:"fence",role:"bottom"},{set:u,type:"fence",role:"neutral"},{set:d,type:"fence",role:"metric"},{set:p,type:"identifier",role:"latinletter",font:"normal"},{set:h,type:"identifier",role:"latinletter",font:"normal"},{set:f,type:"identifier",role:"latinletter",font:"normal"},{set:m,type:"identifier",role:"latinletter",font:"normal"},{set:g,type:"identifier",role:"latinletter",font:"bold"},{set:y,type:"identifier",role:"latinletter",font:"bold"},{set:b,type:"identifier",role:"latinletter",font:"italic"},{set:L,type:"identifier",role:"latinletter",font:"italic"},{set:x,type:"identifier",role:"latinletter",font:"bold-italic"},{set:v,type:"identifier",role:"latinletter",font:"bold-italic"},{set:H,type:"identifier",role:"latinletter",font:"script"},{set:_,type:"identifier",role:"latinletter",font:"script"},{set:O,type:"identifier",role:"latinletter",font:"bold-script"},{set:w,type:"identifier",role:"latinletter",font:"bold-script"},{set:S,type:"identifier",role:"latinletter",font:"fraktur"},{set:M,type:"identifier",role:"latinletter",font:"fraktur"},{set:A,type:"identifier",role:"latinletter",font:"double-struck"},{set:E,type:"identifier",role:"latinletter",font:"double-struck"},{set:V,type:"identifier",role:"latinletter",font:"bold-fraktur"},{set:C,type:"identifier",role:"latinletter",font:"bold-fraktur"},{set:I,type:"identifier",role:"latinletter",font:"sans-serif"},{set:N,type:"identifier",role:"latinletter",font:"sans-serif"},{set:R,type:"identifier",role:"latinletter",font:"sans-serif-bold"},{set:P,type:"identifier",role:"latinletter",font:"sans-serif-bold"},{set:D,type:"identifier",role:"latinletter",font:"sans-serif-italic"},{set:k,type:"identifier",role:"latinletter",font:"sans-serif-italic"},{set:j,type:"identifier",role:"latinletter",font:"sans-serif-bold-italic"},{set:B,type:"identifier",role:"latinletter",font:"sans-serif-bold-italic"},{set:G,type:"identifier",role:"latinletter",font:"monospace"},{set:F,type:"identifier",role:"latinletter",font:"monospace"},{set:q,type:"identifier",role:"latinletter",font:"double-struck-italic"},{set:Z,type:"identifier",role:"greekletter",font:"normal"},{set:U,type:"identifier",role:"greekletter",font:"normal"},{set:W,type:"identifier",role:"greekletter",font:"bold"},{set:z,type:"identifier",role:"greekletter",font:"bold"},{set:$,type:"identifier",role:"greekletter",font:"italic"},{set:X,type:"identifier",role:"greekletter",font:"italic"},{set:J,type:"identifier",role:"greekletter",font:"bold-italic"},{set:K,type:"identifier",role:"greekletter",font:"bold-italic"},{set:tt,type:"identifier",role:"greekletter",font:"sans-serif-bold"},{set:Y,type:"identifier",role:"greekletter",font:"sans-serif-bold"},{set:et,type:"identifier",role:"greekletter",font:"sans-serif-bold-italic"},{set:nt,type:"identifier",role:"greekletter",font:"sans-serif-bold-italic"},{set:rt,type:"identifier",role:"greekletter",font:"double-struck"},{set:it,type:"identifier",role:"greekletter",font:"normal"},{set:ot,type:"identifier",role:"greekletter",font:"bold"},{set:at,type:"identifier",role:"greekletter",font:"italic"},{set:st,type:"identifier",role:"greekletter",font:"sans-serif-bold"},{set:lt,type:"identifier",role:"otherletter",font:"normal"},{set:["0","1","2","3","4","5","6","7","8","9"],type:"number",role:"integer",font:"normal"},{set:["0","1","2","3","4","5","6","7","8","9"],type:"number",role:"integer",font:"normal"},{set:["𝟎","𝟏","𝟐","𝟑","𝟒","𝟓","𝟔","𝟕","𝟖","𝟗"],type:"number",role:"integer",font:"bold"},{set:["𝟘","𝟙","𝟚","𝟛","𝟜","𝟝","𝟞","𝟟","𝟠","𝟡"],type:"number",role:"integer",font:"double-struck"},{set:["𝟢","𝟣","𝟤","𝟥","𝟦","𝟧","𝟨","𝟩","𝟪","𝟫"],type:"number",role:"integer",font:"sans-serif"},{set:["𝟬","𝟭","𝟮","𝟯","𝟰","𝟱","𝟲","𝟳","𝟴","𝟵"],type:"number",role:"integer",font:"sans-serif-bold"},{set:["𝟶","𝟷","𝟸","𝟹","𝟺","𝟻","𝟼","𝟽","𝟾","𝟿"],type:"number",role:"integer",font:"monospace"},{set:["¼","½","¾","⅐","⅑","⅒","⅓","⅔","⅕","⅖","⅗","⅘","⅙","⅚","⅛","⅜","⅝","⅞","⅟","↉"],type:"number",role:"float"},{set:pt,type:"number",role:"othernumber"},{set:Qt,type:"operator",role:"addition"},{set:ut,type:"operator",role:"multiplication"},{set:["¯","-","⁒","⁻","₋","−","∖","∸","≂","⊖","⊟","➖","⨩","⨪","⨫","⨬","⨺","⩁","﹣","-","‐","‑"],type:"operator",role:"subtraction"},{set:["/","÷","⁄","∕","⊘","⟌","⦼","⨸"],type:"operator",role:"division"},{set:["∀","∃","∆","∇","∂","∁","∄"],type:"operator",role:"prefix operator"},{set:["𝛁","𝛛","𝟊","𝟋"],type:"operator",role:"prefix operator",font:"bold"},{set:["𝛻","𝜕"],type:"operator",role:"prefix operator",font:"italic"},{set:["𝝯","𝞉"],type:"operator",role:"prefix operator",font:"sans-serif-bold"},{set:["=","~","⁼","₌","∼","∽","≃","≅","≈","≊","≋","≌","≍","≎","≑","≒","≓","≔","≕","≖","≗","≘","≙","≚","≛","≜","≝","≞","≟","≡","≣","⧤","⩦","⩮","⩯","⩰","⩱","⩲","⩳","⩴","⩵","⩶","⩷","⩸","⋕","⩭","⩪","⩫","⩬","﹦","=","⩬","⊜","∷"],type:"relation",role:"equality"},{set:["<",">","≁","≂","≄","≆","≇","≉","≏","≐","≠","≢","≤","≥","≦","≧","≨","≩","≪","≫","≬","≭","≮","≯","≰","≱","≲","≳","≴","≵","≶","≷","≸","≹","≺","≻","≼","≽","≾","≿","⊀","⊁","⋖","⋗","⋘","⋙","⋚","⋛","⋜","⋝","⋞","⋟","⋠","⋡","⋦","⋧","⋨","⋩","⩹","⩺","⩻","⩼","⩽","⩾","⩿","⪀","⪁","⪂","⪃","⪄","⪅","⪆","⪇","⪈","⪉","⪊","⪋","⪌","⪍","⪎","⪏","⪐","⪑","⪒","⪓","⪔","⪕","⪖","⪗","⪘","⪙","⪚","⪛","⪜","⪝","⪞","⪟","⪠","⪡","⪢","⪣","⪤","⪥","⪦","⪧","⪨","⪩","⪪","⪫","⪬","⪭","⪮","⪯","⪰","⪱","⪲","⪳","⪴","⪵","⪶","⪷","⪸","⪹","⪺","⪻","⪼","⫷","⫸","⫹","⫺","⧀","⧁","﹤","﹥","<",">"],type:"relation",role:"inequality"},{set:["⋢","⋣","⋤","⋥","⊂","⊃","⊄","⊅","⊆","⊇","⊈","⊉","⊊","⊋","⊏","⊐","⊑","⊒","⪽","⪾","⪿","⫀","⫁","⫂","⫃","⫄","⫅","⫆","⫇","⫈","⫉","⫊","⫋","⫌","⫍","⫎","⫏","⫐","⫑","⫒","⫓","⫔","⫕","⫖","⫗","⫘","⋐","⋑","⋪","⋫","⋬","⋭","⊲","⊳","⊴","⊵"],type:"relation",role:"set"},{set:["⊢","⊣","⊦","⊧","⊨","⊩","⊪","⊫","⊬","⊭","⊮","⊯","⫞","⫟","⫠","⫡","⫢","⫣","⫤","⫥","⫦","⫧","⫨","⫩","⫪","⫫","⫬","⫭"],type:"relation",role:"unknown"},{set:["←","↑","→","↓","↔","↕","↖","↗","↘","↙","↚","↛","↜","↝","↞","↟","↠","↡","↢","↣","↤","↥","↦","↧","↨","↩","↪","↫","↬","↭","↮","↯","↰","↱","↲","↳","↴","↵","↶","↷","↸","↹","↺","↻","⇄","⇅","⇆","⇇","⇈","⇉","⇊","⇍","⇎","⇏","⇐","⇑","⇒","⇓","⇔","⇕","⇖","⇗","⇘","⇙","⇚","⇛","⇜","⇝","⇞","⇟","⇠","⇡","⇢","⇣","⇤","⇥","⇦","⇧","⇨","⇩","⇪","⇫","⇬","⇭","⇮","⇯","⇰","⇱","⇲","⇳","⇴","⇵","⇶","⇷","⇸","⇹","⇺","⇻","⇼","⇽","⇾","⇿","⌁","⌃","⌄","⌤","⎋","➔","➘","➙","➚","➛","➜","➝","➞","➟","➠","➡","➢","➣","➤","➥","➦","➧","➨","➩","➪","➫","➬","➭","➮","➯","➱","➲","➳","➴","➵","➶","➷","➸","➹","➺","➻","➼","➽","➾","⟰","⟱","⟲","⟳","⟴","⟵","⟶","⟷","⟸","⟹","⟺","⟻","⟼","⟽","⟾","⟿","⤀","⤁","⤂","⤃","⤄","⤅","⤆","⤇","⤈","⤉","⤊","⤋","⤌","⤍","⤎","⤏","⤐","⤑","⤒","⤓","⤔","⤕","⤖","⤗","⤘","⤙","⤚","⤛","⤜","⤝","⤞","⤟","⤠","⤡","⤢","⤣","⤤","⤥","⤦","⤧","⤨","⤩","⤪","⤭","⤮","⤯","⤰","⤱","⤲","⤳","⤴","⤵","⤶","⤷","⤸","⤹","⤺","⤻","⤼","⤽","⤾","⤿","⥀","⥁","⥂","⥃","⥄","⥅","⥆","⥇","⥈","⥉","⥰","⥱","⥲","⥳","⥴","⥵","⥶","⥷","⥸","⥹","⥺","⥻","⦳","⦴","⦽","⧪","⧬","⧭","⨗","⬀","⬁","⬂","⬃","⬄","⬅","⬆","⬇","⬈","⬉","⬊","⬋","⬌","⬍","⬎","⬏","⬐","⬑","⬰","⬱","⬲","⬳","⬴","⬵","⬶","⬷","⬸","⬹","⬺","⬻","⬼","⬽","⬾","⬿","⭀","⭁","⭂","⭃","⭄","⭅","⭆","⭇","⭈","⭉","⭊","⭋","⭌","←","↑","→","↓","↼","↽","↾","↿","⇀","⇁","⇂","⇃","⇋","⇌","⥊","⥋","⥌","⥍","⥎","⥏","⥐","⥑","⥒","⥓","⥔","⥕","⥖","⥗","⥘","⥙","⥚","⥛","⥜","⥝","⥞","⥟","⥠","⥡","⥢","⥣","⥤","⥥","⥦","⥧","⥨","⥩","⥪","⥫","⥬","⥭","⥮","⥯","⥼","⥽","⥾","⥿"],type:"relation",role:"arrow"},{set:["∈","∊","⋲","⋳","⋴","⋵","⋶","⋷","⋸","⋹","⋿"],type:"operator",role:"element"},{set:["∉"],type:"operator",role:"nonelement"},{set:["∋","∍","⋺","⋻","⋼","⋽","⋾"],type:"operator",role:"reelement"},{set:["∌"],type:"operator",role:"renonelement"},{set:["⅀","∏","∐","∑","⋀","⋁","⋂","⋃","⨀","⨁","⨂","⨃","⨄","⨅","⨆","⨇","⨈","⨉","⨊","⨋","⫼","⫿"],type:"largeop",role:"sum"},{set:["∫","∬","∭","∮","∯","∰","∱","∲","∳","⨌","⨍","⨎","⨏","⨐","⨑","⨒","⨓","⨔","⨕","⨖","⨗","⨘","⨙","⨚","⨛","⨜"],type:"largeop",role:"integral"},{set:["∟","∠","∡","∢","⊾","⊿","△","▷","▽","◁"],type:"operator",role:"geometry"},{set:["inf","lim","liminf","limsup","max","min","sup","injlim","projlim","inj lim","proj lim"],type:"function",role:"limit function"},{set:mt,type:"function",role:"prefix function"},{set:["mod","rem"],type:"operator",role:"prefix function"}],yt=function(){const t={};for(let e,n=0;e=ft[n];n++)e.set.forEach((function(n){t[n]={role:e.role||"unknown",type:e.type||"unknown",font:e.font||"unknown"}}));return t}();e.equal=function(t,e){return t.type===e.type&&t.role===e.role&&t.font===e.font},e.lookupType=function(t){var e;return(null===(e=yt[t])||void 0===e?void 0:e.type)||"unknown"},e.lookupRole=function(t){var e;return(null===(e=yt[t])||void 0===e?void 0:e.role)||"unknown"},e.lookupMeaning=function(t){return yt[t]||{role:"unknown",type:"unknown",font:"unknown"}},e.invisibleTimes=function(){return dt},e.invisiblePlus=function(){return ct},e.invisibleComma=function(){return n},e.functionApplication=function(){return ht},e.isMatchingFence=function(t,e){return-1!==u.indexOf(t)||-1!==d.indexOf(t)?t===e:a[t]===e||s[t]===e},e.isEmbellishedType=function(t){return"operator"===t||"relation"===t||"fence"===t||"punctuation"===t};const gt=new Map;function Lt(t,e){return`${t} ${e}`}function bt(t,e,n=""){for(const r of e)gt.set(Lt(t,r),n||t)}bt("d",["d","ⅆ","d","𝐝","𝑑","𝒹","𝓭","𝔡","𝕕","𝖉","𝖽","𝗱","𝘥","𝚍"]),bt("bar",i),bt("tilde",o),e.lookupSecondary=function(t,e){return gt.get(Lt(t,e))}},2083:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticMeaningCollator=e.SemanticNodeCollator=e.SemanticDefault=void 0;const r=n(218),i=n(9157);class o{constructor(){this.map={}}static key(t,e){return e?t+":"+e:t}add(t,e){this.map[o.key(t,e.font)]=e}addNode(t){this.add(t.textContent,t.meaning())}retrieve(t,e){return this.map[o.key(t,e)]}retrieveNode(t){return this.retrieve(t.textContent,t.font)}size(){return Object.keys(this.map).length}}e.SemanticDefault=o;class a{constructor(){this.map={}}add(t,e){const n=this.map[t];n?n.push(e):this.map[t]=[e]}retrieve(t,e){return this.map[o.key(t,e)]}retrieveNode(t){return this.retrieve(t.textContent,t.font)}copy(){const t=this.copyCollator();for(const e in this.map)t.map[e]=this.map[e];return t}minimize(){for(const t in this.map)1===this.map[t].length&&delete this.map[t]}minimalCollator(){const t=this.copy();for(const e in t.map)1===t.map[e].length&&delete t.map[e];return t}isMultiValued(){for(const t in this.map)if(this.map[t].length>1)return!0;return!1}isEmpty(){return!Object.keys(this.map).length}}class s extends a{copyCollator(){return new s}add(t,e){const n=o.key(t,e.font);super.add(n,e)}addNode(t){this.add(t.textContent,t)}toString(){const t=[];for(const e in this.map){const n=Array(e.length+3).join(" "),r=this.map[e],i=[];for(let t,e=0;t=r[e];e++)i.push(t.toString());t.push(e+": "+i.join("\n"+n))}return t.join("\n")}collateMeaning(){const t=new l;for(const e in this.map)t.map[e]=this.map[e].map((function(t){return t.meaning()}));return t}}e.SemanticNodeCollator=s;class l extends a{copyCollator(){return new l}add(t,e){const n=this.retrieve(t,e.font);if(!n||!n.find((function(t){return r.equal(t,e)}))){const n=o.key(t,e.font);super.add(n,e)}}addNode(t){this.add(t.textContent,t.meaning())}toString(){const t=[];for(const e in this.map){const n=Array(e.length+3).join(" "),r=this.map[e],i=[];for(let t,e=0;t=r[e];e++)i.push("{type: "+t.type+", role: "+t.role+", font: "+t.font+"}");t.push(e+": "+i.join("\n"+n))}return t.join("\n")}reduce(){for(const t in this.map)1!==this.map[t].length&&(this.map[t]=(0,i.reduce)(this.map[t]))}default(){const t=new o;for(const e in this.map)1===this.map[e].length&&(t.map[e]=this.map[e][0]);return t}newDefault(){const t=this.default();this.reduce();const e=this.default();return t.size()!==e.size()?e:null}}e.SemanticMeaningCollator=l},7535:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticMultiHeuristic=e.SemanticTreeHeuristic=e.SemanticAbstractHeuristic=void 0;class n{constructor(t,e,n=(t=>!1)){this.name=t,this.apply=e,this.applicable=n}}e.SemanticAbstractHeuristic=n,e.SemanticTreeHeuristic=class extends n{},e.SemanticMultiHeuristic=class extends n{}},9156:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.lookup=e.run=e.add=e.blacklist=e.flags=e.updateFactory=e.factory=void 0,e.factory=null,e.updateFactory=function(t){e.factory=t};const n=new Map;function r(t){return n.get(t)}e.flags={combine_juxtaposition:!0,convert_juxtaposition:!0,multioperator:!0},e.blacklist={},e.add=function(t){const r=t.name;n.set(r,t),e.flags[r]||(e.flags[r]=!1)},e.run=function(t,n,i){const o=r(t);return o&&!e.blacklist[t]&&(e.flags[t]||o.applicable(n))?o.apply(n):i?i(n):n},e.lookup=r},5044:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(5605),i=n(3684),o=n(218),a=n(9156),s=n(7535),l=n(5741),T=n(3342),Q=n(8478);function c(t,e,n){let r=null;if(!t.length)return r;const i=n[n.length-1],o=i&&i.length,a=e&&e.length,s=T.default.getInstance();if(o&&a){if("infixop"===e[0].type&&"implicit"===e[0].role)return r=t.pop(),i.push(s.postfixNode_(i.pop(),t)),r;r=t.shift();const n=s.prefixNode_(e.shift(),t);return e.unshift(n),r}return o?(i.push(s.postfixNode_(i.pop(),t)),r):(a&&e.unshift(s.prefixNode_(e.shift(),t)),r)}function u(t,e,n){if(!e.length)return t;const i=t.pop(),o=e.shift(),s=n.shift();if(l.isImplicitOp(o)){r.Debugger.getInstance().output("Juxta Heuristic Case 2");const a=(i?[i,o]:[o]).concat(s);return u(t.concat(a),e,n)}if(!i)return r.Debugger.getInstance().output("Juxta Heuristic Case 3"),u([o].concat(s),e,n);const T=s.shift();if(!T){r.Debugger.getInstance().output("Juxta Heuristic Case 9");const s=a.factory.makeBranchNode("infixop",[i,e.shift()],[o],o.textContent);return s.role="implicit",a.run("combine_juxtaposition",s),e.unshift(s),u(t,e,n)}if(l.isOperator(i)||l.isOperator(T))return r.Debugger.getInstance().output("Juxta Heuristic Case 4"),u(t.concat([i,o,T]).concat(s),e,n);let Q=null;return l.isImplicitOp(i)&&l.isImplicitOp(T)?(r.Debugger.getInstance().output("Juxta Heuristic Case 5"),i.contentNodes.push(o),i.contentNodes=i.contentNodes.concat(T.contentNodes),i.childNodes.push(T),i.childNodes=i.childNodes.concat(T.childNodes),T.childNodes.forEach((t=>t.parent=i)),o.parent=i,i.addMathmlNodes(o.mathml),i.addMathmlNodes(T.mathml),Q=i):l.isImplicitOp(i)?(r.Debugger.getInstance().output("Juxta Heuristic Case 6"),i.contentNodes.push(o),i.childNodes.push(T),T.parent=i,o.parent=i,i.addMathmlNodes(o.mathml),i.addMathmlNodes(T.mathml),Q=i):l.isImplicitOp(T)?(r.Debugger.getInstance().output("Juxta Heuristic Case 7"),T.contentNodes.unshift(o),T.childNodes.unshift(i),i.parent=T,o.parent=T,T.addMathmlNodes(o.mathml),T.addMathmlNodes(i.mathml),Q=T):(r.Debugger.getInstance().output("Juxta Heuristic Case 8"),Q=a.factory.makeBranchNode("infixop",[i,T],[o],o.textContent),Q.role="implicit"),t.push(Q),u(t.concat(s),e,n)}a.add(new s.SemanticTreeHeuristic("combine_juxtaposition",(function(t){for(let e,n=t.childNodes.length-1;e=t.childNodes[n];n--)l.isImplicitOp(e)&&!e.nobreaking&&(t.childNodes.splice(n,1,...e.childNodes),t.contentNodes.splice(n,0,...e.contentNodes),e.childNodes.concat(e.contentNodes).forEach((function(e){e.parent=t})),t.addMathmlNodes(e.mathml));return t}))),a.add(new s.SemanticTreeHeuristic("propagateSimpleFunction",(t=>("infixop"!==t.type&&"fraction"!==t.type||!t.childNodes.every(l.isSimpleFunction)||(t.role="composed function"),t)),(t=>"clearspeak"===i.default.getInstance().domain))),a.add(new s.SemanticTreeHeuristic("simpleNamedFunction",(t=>("unit"!==t.role&&-1!==["f","g","h","F","G","H"].indexOf(t.textContent)&&(t.role="simple function"),t)),(t=>"clearspeak"===i.default.getInstance().domain))),a.add(new s.SemanticTreeHeuristic("propagateComposedFunction",(t=>("fenced"===t.type&&"composed function"===t.childNodes[0].role&&(t.role="composed function"),t)),(t=>"clearspeak"===i.default.getInstance().domain))),a.add(new s.SemanticTreeHeuristic("multioperator",(t=>{if("unknown"!==t.role||t.textContent.length<=1)return;const e=[...t.textContent].map(o.lookupMeaning).reduce((function(t,e){return t&&e.role&&"unknown"!==e.role&&e.role!==t?"unknown"===t?e.role:null:t}),"unknown");e&&(t.role=e)}))),a.add(new s.SemanticMultiHeuristic("convert_juxtaposition",(t=>{let e=Q.partitionNodes(t,(function(t){return t.textContent===o.invisibleTimes()&&"operator"===t.type}));e=e.rel.length?function(t){const e=[],n=[];let r=t.comp.shift(),i=null,o=[];for(;t.comp.length;)if(o=[],r.length)i&&e.push(i),n.push(r),i=t.rel.shift(),r=t.comp.shift();else{for(i&&o.push(i);!r.length&&t.comp.length;)r=t.comp.shift(),o.push(t.rel.shift());i=c(o,r,n)}return o.length||r.length?(e.push(i),n.push(r)):(o.push(i),c(o,r,n)),{rel:e,comp:n}}(e):e,t=e.comp[0];for(let n,r,i=1;n=e.comp[i],r=e.rel[i-1];i++)t.push(r),t=t.concat(n);return e=Q.partitionNodes(t,(function(t){return t.textContent===o.invisibleTimes()&&("operator"===t.type||"infixop"===t.type)})),e.rel.length?u(e.comp.shift(),e.rel,e.comp):t}))),a.add(new s.SemanticTreeHeuristic("simple2prefix",(t=>(t.textContent.length>1&&!t.textContent[0].match(/[A-Z]/)&&(t.role="prefix function"),t)),(t=>"braille"===i.default.getInstance().modality&&"identifier"===t.type))),a.add(new s.SemanticTreeHeuristic("detect_cycle",(t=>{t.type="matrix",t.role="cycle";const e=t.childNodes[0];return e.type="row",e.role="cycle",e.textContent="",e.contentNodes=[],t}),(t=>"fenced"===t.type&&"infixop"===t.childNodes[0].type&&"implicit"===t.childNodes[0].role&&t.childNodes[0].childNodes.every((function(t){return"number"===t.type}))&&t.childNodes[0].contentNodes.every((function(t){return"space"===t.role})))))},7670:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticMathml=void 0;const r=n(7041),i=n(8456),o=n(5741),a=n(3342),s=n(8478);class l extends i.SemanticAbstractParser{constructor(){super("MathML"),this.parseMap_={SEMANTICS:this.semantics_.bind(this),MATH:this.rows_.bind(this),MROW:this.rows_.bind(this),MPADDED:this.rows_.bind(this),MSTYLE:this.rows_.bind(this),MFRAC:this.fraction_.bind(this),MSUB:this.limits_.bind(this),MSUP:this.limits_.bind(this),MSUBSUP:this.limits_.bind(this),MOVER:this.limits_.bind(this),MUNDER:this.limits_.bind(this),MUNDEROVER:this.limits_.bind(this),MROOT:this.root_.bind(this),MSQRT:this.sqrt_.bind(this),MTABLE:this.table_.bind(this),MLABELEDTR:this.tableLabeledRow_.bind(this),MTR:this.tableRow_.bind(this),MTD:this.tableCell_.bind(this),MS:this.text_.bind(this),MTEXT:this.text_.bind(this),MSPACE:this.space_.bind(this),"ANNOTATION-XML":this.text_.bind(this),MI:this.identifier_.bind(this),MN:this.number_.bind(this),MO:this.operator_.bind(this),MFENCED:this.fenced_.bind(this),MENCLOSE:this.enclosed_.bind(this),MMULTISCRIPTS:this.multiscripts_.bind(this),ANNOTATION:this.empty_.bind(this),NONE:this.empty_.bind(this),MACTION:this.action_.bind(this)};const t={type:"identifier",role:"numbersetletter",font:"double-struck"};["C","H","N","P","Q","R","Z","ℂ","ℍ","ℕ","ℙ","ℚ","ℝ","ℤ"].forEach((e=>this.getFactory().defaultMap.add(e,t)).bind(this))}static getAttribute_(t,e,n){if(!t.hasAttribute(e))return n;const r=t.getAttribute(e);return r.match(/^\s*$/)?null:r}parse(t){a.default.getInstance().setNodeFactory(this.getFactory());const e=r.toArray(t.childNodes),n=r.tagName(t),i=(this.parseMap_[n]||this.dummy_.bind(this))(t,e);return s.addAttributes(i,t),-1!==["MATH","MROW","MPADDED","MSTYLE","SEMANTICS"].indexOf(n)||(i.mathml.unshift(t),i.mathmlTree=t),i}semantics_(t,e){return e.length?this.parse(e[0]):this.getFactory().makeEmptyNode()}rows_(t,e){const n=t.getAttribute("semantics");if(n&&n.match("bspr_"))return a.default.proof(t,n,this.parseList.bind(this));let r;return 1===(e=s.purgeNodes(e)).length?(r=this.parse(e[0]),"empty"!==r.type||r.mathmlTree||(r.mathmlTree=t)):r=a.default.getInstance().row(this.parseList(e)),r.mathml.unshift(t),r}fraction_(t,e){if(!e.length)return this.getFactory().makeEmptyNode();const n=this.parse(e[0]),r=e[1]?this.parse(e[1]):this.getFactory().makeEmptyNode();return a.default.getInstance().fractionLikeNode(n,r,t.getAttribute("linethickness"),"true"===t.getAttribute("bevelled"))}limits_(t,e){return a.default.getInstance().limitNode(r.tagName(t),this.parseList(e))}root_(t,e){return e[1]?this.getFactory().makeBranchNode("root",[this.parse(e[1]),this.parse(e[0])],[]):this.sqrt_(t,e)}sqrt_(t,e){const n=this.parseList(s.purgeNodes(e));return this.getFactory().makeBranchNode("sqrt",[a.default.getInstance().row(n)],[])}table_(t,e){const n=t.getAttribute("semantics");if(n&&n.match("bspr_"))return a.default.proof(t,n,this.parseList.bind(this));const r=this.getFactory().makeBranchNode("table",this.parseList(e),[]);return r.mathmlTree=t,a.default.tableToMultiline(r),r}tableRow_(t,e){const n=this.getFactory().makeBranchNode("row",this.parseList(e),[]);return n.role="table",n}tableLabeledRow_(t,e){if(!e.length)return this.tableRow_(t,e);const n=this.parse(e[0]);n.role="label";const r=this.getFactory().makeBranchNode("row",this.parseList(e.slice(1)),[n]);return r.role="table",r}tableCell_(t,e){const n=this.parseList(s.purgeNodes(e));let r;r=n.length?1===n.length&&o.isType(n[0],"empty")?n:[a.default.getInstance().row(n)]:[];const i=this.getFactory().makeBranchNode("cell",r,[]);return i.role="table",i}space_(t,e){const n=t.getAttribute("width"),i=n&&n.match(/[a-z]*$/);if(!i)return this.empty_(t,e);const o=i[0],s=parseFloat(n.slice(0,i.index)),l={cm:.4,pc:.5,em:.5,ex:1,in:.15,pt:5,mm:5}[o];if(!l||isNaN(s)||s<l)return this.empty_(t,e);const T=this.getFactory().makeUnprocessed(t);return a.default.getInstance().text(T,r.tagName(t))}text_(t,e){const n=this.leaf_(t,e);return t.textContent?(n.updateContent(t.textContent,!0),a.default.getInstance().text(n,r.tagName(t))):n}identifier_(t,e){const n=this.leaf_(t,e);return a.default.getInstance().identifierNode(n,a.default.getInstance().font(t.getAttribute("mathvariant")),t.getAttribute("class"))}number_(t,e){const n=this.leaf_(t,e);return a.default.number(n),n}operator_(t,e){const n=this.leaf_(t,e);return a.default.getInstance().operatorNode(n),n}fenced_(t,e){const n=this.parseList(s.purgeNodes(e)),r=l.getAttribute_(t,"separators",","),i=l.getAttribute_(t,"open","("),o=l.getAttribute_(t,"close",")"),T=a.default.getInstance().mfenced(i,o,r,n);return a.default.getInstance().tablesInRow([T])[0]}enclosed_(t,e){const n=this.parseList(s.purgeNodes(e)),r=this.getFactory().makeBranchNode("enclose",[a.default.getInstance().row(n)],[]);return r.role=t.getAttribute("notation")||"unknown",r}multiscripts_(t,e){if(!e.length)return this.getFactory().makeEmptyNode();const n=this.parse(e.shift());if(!e.length)return n;const i=[],o=[],l=[],T=[];let Q=!1,c=0;for(let t,n=0;t=e[n];n++)"MPRESCRIPTS"!==r.tagName(t)?(Q?1&c?i.push(t):o.push(t):1&c?l.push(t):T.push(t),c++):(Q=!0,c=0);return s.purgeNodes(i).length||s.purgeNodes(o).length?a.default.getInstance().tensor(n,this.parseList(o),this.parseList(i),this.parseList(T),this.parseList(l)):a.default.getInstance().pseudoTensor(n,this.parseList(T),this.parseList(l))}empty_(t,e){return this.getFactory().makeEmptyNode()}action_(t,e){return e.length>1?this.parse(e[1]):this.getFactory().makeUnprocessed(t)}dummy_(t,e){const n=this.getFactory().makeUnprocessed(t);return n.role=t.tagName,n.textContent=t.textContent,n}leaf_(t,e){if(1===e.length&&e[0].nodeType!==r.NodeType.TEXT_NODE){const n=this.getFactory().makeUnprocessed(t);return n.role=e[0].tagName,s.addAttributes(n,e[0]),n}return this.getFactory().makeLeafNode(t.textContent,a.default.getInstance().font(t.getAttribute("mathvariant")))}}e.SemanticMathml=l},7603:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticNode=void 0;const r=n(7041),i=n(218),o=n(8478);class a{constructor(t){this.id=t,this.mathml=[],this.parent=null,this.type="unknown",this.role="unknown",this.font="unknown",this.embellished=null,this.fencePointer="",this.childNodes=[],this.textContent="",this.mathmlTree=null,this.contentNodes=[],this.annotation={},this.attributes={},this.nobreaking=!1}static fromXml(t){const e=parseInt(t.getAttribute("id"),10),n=new a(e);return n.type=t.tagName,a.setAttribute(n,t,"role"),a.setAttribute(n,t,"font"),a.setAttribute(n,t,"embellished"),a.setAttribute(n,t,"fencepointer","fencePointer"),t.getAttribute("annotation")&&n.parseAnnotation(t.getAttribute("annotation")),o.addAttributes(n,t),a.processChildren(n,t),n}static setAttribute(t,e,n,r){r=r||n;const i=e.getAttribute(n);i&&(t[r]=i)}static processChildren(t,e){for(const n of r.toArray(e.childNodes)){if(n.nodeType===r.NodeType.TEXT_NODE){t.textContent=n.textContent;continue}const e=r.toArray(n.childNodes).map(a.fromXml);e.forEach((e=>e.parent=t)),"CONTENT"===r.tagName(n)?t.contentNodes=e:t.childNodes=e}}querySelectorAll(t){let e=[];for(let n,r=0;n=this.childNodes[r];r++)e=e.concat(n.querySelectorAll(t));for(let n,r=0;n=this.contentNodes[r];r++)e=e.concat(n.querySelectorAll(t));return t(this)&&e.unshift(this),e}xml(t,e){const n=function(n,r){const i=r.map((function(n){return n.xml(t,e)})),o=t.createElementNS("",n);for(let t,e=0;t=i[e];e++)o.appendChild(t);return o},r=t.createElementNS("",this.type);return e||this.xmlAttributes(r),r.textContent=this.textContent,this.contentNodes.length>0&&r.appendChild(n("content",this.contentNodes)),this.childNodes.length>0&&r.appendChild(n("children",this.childNodes)),r}toString(t=!1){const e=r.parseInput("<snode/>");return r.serializeXml(this.xml(e.ownerDocument,t))}allAttributes(){const t=[];return t.push(["role",this.role]),"unknown"!==this.font&&t.push(["font",this.font]),Object.keys(this.annotation).length&&t.push(["annotation",this.annotationXml()]),this.embellished&&t.push(["embellished",this.embellished]),this.fencePointer&&t.push(["fencepointer",this.fencePointer]),t.push(["id",this.id.toString()]),t}annotationXml(){const t=[];for(const e in this.annotation)this.annotation[e].forEach((function(n){t.push(e+":"+n)}));return t.join(";")}attributesXml(){const t=[];for(const[e,n]of Object.entries(this.attributes))t.push(e+":"+n);return t.join(";")}toJson(){const t={};t.type=this.type;const e=this.allAttributes();for(let n,r=0;n=e[r];r++)t[n[0]]=n[1].toString();return this.textContent&&(t.$t=this.textContent),this.childNodes.length&&(t.children=this.childNodes.map((function(t){return t.toJson()}))),this.contentNodes.length&&(t.content=this.contentNodes.map((function(t){return t.toJson()}))),t}updateContent(t,e){const n=e?t.replace(/^[ \f\n\r\t\v\u200b]*/,"").replace(/[ \f\n\r\t\v\u200b]*$/,""):t.trim();if(t=t&&!n?t:n,this.textContent===t)return;const r=(0,i.lookupMeaning)(t);this.textContent=t,this.role=r.role,this.type=r.type,this.font=r.font}addMathmlNodes(t){for(let e,n=0;e=t[n];n++)-1===this.mathml.indexOf(e)&&this.mathml.push(e)}appendChild(t){this.childNodes.push(t),this.addMathmlNodes(t.mathml),t.parent=this}replaceChild(t,e){const n=this.childNodes.indexOf(t);if(-1===n)return;t.parent=null,e.parent=this,this.childNodes[n]=e;const r=t.mathml.filter((function(t){return-1===e.mathml.indexOf(t)})),i=e.mathml.filter((function(e){return-1===t.mathml.indexOf(e)}));this.removeMathmlNodes(r),this.addMathmlNodes(i)}appendContentNode(t){t&&(this.contentNodes.push(t),this.addMathmlNodes(t.mathml),t.parent=this)}removeContentNode(t){if(t){const e=this.contentNodes.indexOf(t);-1!==e&&this.contentNodes.slice(e,1)}}equals(t){if(!t)return!1;if(this.type!==t.type||this.role!==t.role||this.textContent!==t.textContent||this.childNodes.length!==t.childNodes.length||this.contentNodes.length!==t.contentNodes.length)return!1;for(let e,n,r=0;e=this.childNodes[r],n=t.childNodes[r];r++)if(!e.equals(n))return!1;for(let e,n,r=0;e=this.contentNodes[r],n=t.contentNodes[r];r++)if(!e.equals(n))return!1;return!0}displayTree(){console.info(this.displayTree_(0))}addAnnotation(t,e){e&&this.addAnnotation_(t,e)}getAnnotation(t){return this.annotation[t]||[]}hasAnnotation(t,e){const n=this.annotation[t];return!!n&&-1!==n.indexOf(e)}parseAnnotation(t){const e=t.split(";");for(let t=0,n=e.length;t<n;t++){const n=e[t].split(":");this.addAnnotation(n[0],n[1])}}meaning(){return{type:this.type,role:this.role,font:this.font}}xmlAttributes(t){const e=this.allAttributes();for(let n,r=0;n=e[r];r++)t.setAttribute(n[0],n[1]);this.addExternalAttributes(t)}addExternalAttributes(t){for(const e in this.attributes)t.setAttribute(e,this.attributes[e])}parseAttributes(t){if(!t)return;const e=t.split(";");for(let t=0,n=e.length;t<n;t++){const[n,r]=e[t].split(":");n&&(this.attributes[n]=r)}}removeMathmlNodes(t){const e=this.mathml;for(let n,r=0;n=t[r];r++){const t=e.indexOf(n);-1!==t&&e.splice(t,1)}this.mathml=e}displayTree_(t){t++;const e=Array(t).join(" ");let n="";n+="\n"+e+this.toString(),n+="\n"+e+"MathmlTree:",n+="\n"+e+this.mathmlTreeString(),n+="\n"+e+"MathML:";for(let t,r=0;t=this.mathml[r];r++)n+="\n"+e+t.toString();return n+="\n"+e+"Begin Content",this.contentNodes.forEach((function(e){n+=e.displayTree_(t)})),n+="\n"+e+"End Content",n+="\n"+e+"Begin Children",this.childNodes.forEach((function(e){n+=e.displayTree_(t)})),n+="\n"+e+"End Children",n}mathmlTreeString(){return this.mathmlTree?this.mathmlTree.toString():"EMPTY"}addAnnotation_(t,e){const n=this.annotation[t];n?n.push(e):this.annotation[t]=[e]}}e.SemanticNode=a},5349:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticNodeFactory=void 0;const r=n(2083),i=n(2083),o=n(7603);e.SemanticNodeFactory=class{constructor(){this.leafMap=new i.SemanticNodeCollator,this.defaultMap=new r.SemanticDefault,this.idCounter_=-1}makeNode(t){return this.createNode_(t)}makeUnprocessed(t){const e=this.createNode_();return e.mathml=[t],e.mathmlTree=t,e}makeEmptyNode(){const t=this.createNode_();return t.type="empty",t}makeContentNode(t){const e=this.createNode_();return e.updateContent(t),e}makeMultipleContentNodes(t,e){const n=[];for(let r=0;r<t;r++)n.push(this.makeContentNode(e));return n}makeLeafNode(t,e){if(!t)return this.makeEmptyNode();const n=this.makeContentNode(t);n.font=e||n.font;const r=this.defaultMap.retrieveNode(n);return r&&(n.type=r.type,n.role=r.role,n.font=r.font),this.leafMap.addNode(n),n}makeBranchNode(t,e,n,r){const i=this.createNode_();return r&&i.updateContent(r),i.type=t,i.childNodes=e,i.contentNodes=n,e.concat(n).forEach((function(t){t.parent=i,i.addMathmlNodes(t.mathml)})),i}createNode_(t){return void 0!==t?this.idCounter_=Math.max(this.idCounter_,t):t=++this.idCounter_,new o.SemanticNode(t)}}},9157:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticComparator=e.reduce=e.sort=e.apply=e.add=void 0;const n=[];function r(t){n.push(t)}function i(t,e){for(let r,i=0;r=n[i];i++){const n=r.compare(t,e);if(0!==n)return n}return 0}function o(t){t.sort(i)}e.add=r,e.apply=i,e.sort=o,e.reduce=function(t){if(t.length<=1)return t;const e=t.slice();o(e);const n=[];let r;do{r=e.pop(),n.push(r)}while(r&&e.length&&0===i(e[e.length-1],r));return n};class a{constructor(t,e=null){this.comparator=t,this.type=e,r(this)}compare(t,e){return this.type&&this.type===t.type&&this.type===e.type?this.comparator(t,e):0}}e.SemanticComparator=a,new a((function(t,e){return"simple function"===t.role?1:"simple function"===e.role?-1:0}),"identifier")},8456:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticAbstractParser=void 0;const r=n(5349);e.SemanticAbstractParser=class{constructor(t){this.type=t,this.factory_=new r.SemanticNodeFactory}getFactory(){return this.factory_}setFactory(t){this.factory_=t}getType(){return this.type}parseList(t){const e=[];for(let n,r=0;n=t[r];r++)e.push(this.parse(n));return e}}},5741:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isMembership=e.elligibleRightNeutral=e.elligibleLeftNeutral=e.compareNeutralFences=e.isNeutralFence=e.isImplicitOp=e.isImplicit=e.isPureUnit=e.isUnitCounter=e.isNumber=e.isSingletonSetContent=e.scriptedElement_=e.illegalSingleton_=e.isSetNode=e.isRightBrace=e.isLeftBrace=e.isSimpleFunction=e.singlePunctAtPosition=e.isSimpleFunctionHead=e.isLimitBase=e.isBinomial=e.lineIsLabelled=e.tableIsMultiline=e.tableIsCases=e.isFencedElement=e.tableIsMatrixOrVector=e.isTableOrMultiline=e.isElligibleEmbellishedFence=e.isFence=e.isPunctuation=e.isRelation=e.isOperator=e.isEmbellished=e.isGeneralFunctionBoundary=e.isIntegralDxBoundarySingle=e.isIntegralDxBoundary=e.isBigOpBoundary=e.isPrefixFunctionBoundary=e.isSimpleFunctionScope=e.isAccent=e.isRole=e.embellishedType=e.isType=void 0;const r=n(218),i=n(8478);function o(t,e){return t.type===e}function a(t,e){return t.embellished===e}function s(t,e){return t.role===e}function l(t){return Q(t)||c(t)}function T(t){return o(t,"operator")||a(t,"operator")}function Q(t){return o(t,"relation")||a(t,"relation")}function c(t){return o(t,"punctuation")||a(t,"punctuation")}function u(t){return o(t,"fence")||a(t,"fence")}function d(t){return!t.embellished||!function(t){return o(t,"tensor")&&(!o(t.childNodes[1],"empty")||!o(t.childNodes[2],"empty"))&&(!o(t.childNodes[3],"empty")||!o(t.childNodes[4],"empty"))}(t)&&(!s(t,"close")||!o(t,"tensor"))&&(!s(t,"open")||!o(t,"subscript")&&!o(t,"superscript"))&&d(t.childNodes[0])}function h(t){return!!t&&(o(t,"table")||o(t,"multiline"))}function p(t){return!!t&&o(t,"fenced")&&(s(t,"leftright")||g(t))&&1===t.childNodes.length}function m(t){return!!t&&-1!==["{","﹛","{"].indexOf(t.textContent)}function f(t){return!!t&&-1!==["}","﹜","}"].indexOf(t.textContent)}function y(t){return"number"===t.type&&("integer"===t.role||"float"===t.role)}function g(t){return"neutral"===t.role||"metric"===t.role}e.isType=o,e.embellishedType=a,e.isRole=s,e.isAccent=function(t){const e=new RegExp("∞|᪲");return o(t,"fence")||o(t,"punctuation")||o(t,"operator")&&!t.textContent.match(e)||o(t,"relation")||o(t,"identifier")&&s(t,"unknown")&&!t.textContent.match(r.allLettersRegExp)&&!t.textContent.match(e)},e.isSimpleFunctionScope=function(t){const e=t.childNodes;if(0===e.length)return!0;if(e.length>1)return!1;const n=e[0];if("infixop"===n.type){if("implicit"!==n.role)return!1;if(n.childNodes.some((t=>o(t,"infixop"))))return!1}return!0},e.isPrefixFunctionBoundary=function(t){return T(t)&&!s(t,"division")||o(t,"appl")||l(t)},e.isBigOpBoundary=function(t){return T(t)||l(t)},e.isIntegralDxBoundary=function(t,e){return!!e&&o(e,"identifier")&&r.lookupSecondary("d",t.textContent)},e.isIntegralDxBoundarySingle=function(t){if(o(t,"identifier")){const e=t.textContent[0];return e&&t.textContent[1]&&r.lookupSecondary("d",e)}return!1},e.isGeneralFunctionBoundary=l,e.isEmbellished=function(t){return t.embellished?t.embellished:r.isEmbellishedType(t.type)?t.type:null},e.isOperator=T,e.isRelation=Q,e.isPunctuation=c,e.isFence=u,e.isElligibleEmbellishedFence=function(t){return!(!t||!u(t))&&(!t.embellished||d(t))},e.isTableOrMultiline=h,e.tableIsMatrixOrVector=function(t){return!!t&&p(t)&&h(t.childNodes[0])},e.isFencedElement=p,e.tableIsCases=function(t,e){return e.length>0&&s(e[e.length-1],"openfence")},e.tableIsMultiline=function(t){return t.childNodes.every((function(t){return t.childNodes.length<=1}))},e.lineIsLabelled=function(t){return o(t,"line")&&t.contentNodes.length&&s(t.contentNodes[0],"label")},e.isBinomial=function(t){return 2===t.childNodes.length},e.isLimitBase=function t(e){return o(e,"largeop")||o(e,"limboth")||o(e,"limlower")||o(e,"limupper")||o(e,"function")&&s(e,"limit function")||(o(e,"overscore")||o(e,"underscore"))&&t(e.childNodes[0])},e.isSimpleFunctionHead=function(t){return"identifier"===t.type||"latinletter"===t.role||"greekletter"===t.role||"otherletter"===t.role},e.singlePunctAtPosition=function(t,e,n){return 1===e.length&&("punctuation"===t[n].type||"punctuation"===t[n].embellished)&&t[n]===e[0]},e.isSimpleFunction=function(t){return o(t,"identifier")&&s(t,"simple function")},e.isLeftBrace=m,e.isRightBrace=f,e.isSetNode=function(t){return m(t.contentNodes[0])&&f(t.contentNodes[1])},e.illegalSingleton_=["punctuation","punctuated","relseq","multirel","table","multiline","cases","inference"],e.scriptedElement_=["limupper","limlower","limboth","subscript","superscript","underscore","overscore","tensor"],e.isSingletonSetContent=function t(n){const r=n.type;return-1===e.illegalSingleton_.indexOf(r)&&("infixop"!==r||"implicit"===n.role)&&("fenced"===r?"leftright"!==n.role||t(n.childNodes[0]):-1===e.scriptedElement_.indexOf(r)||t(n.childNodes[0]))},e.isNumber=y,e.isUnitCounter=function(t){return y(t)||"vulgar"===t.role||"mixed"===t.role},e.isPureUnit=function(t){const e=t.childNodes;return"unit"===t.role&&(!e.length||"unit"===e[0].role)},e.isImplicit=function(t){return"implicit"===t.role||"unit"===t.role&&!!t.contentNodes.length&&t.contentNodes[0].textContent===r.invisibleTimes()},e.isImplicitOp=function(t){return"infixop"===t.type&&"implicit"===t.role},e.isNeutralFence=g,e.compareNeutralFences=function(t,e){return g(t)&&g(e)&&(0,i.getEmbellishedInner)(t).textContent===(0,i.getEmbellishedInner)(e).textContent},e.elligibleLeftNeutral=function(t){return!!g(t)&&(!t.embellished||"superscript"!==t.type&&"subscript"!==t.type&&("tensor"!==t.type||"empty"===t.childNodes[3].type&&"empty"===t.childNodes[4].type))},e.elligibleRightNeutral=function(t){return!!g(t)&&(!t.embellished||"tensor"!==t.type||"empty"===t.childNodes[1].type&&"empty"===t.childNodes[2].type)},e.isMembership=function(t){return["element","nonelement","reelement","renonelement"].includes(t.role)}},3342:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7041),i=n(218),o=n(9156),a=n(5349),s=n(5741),l=n(8478);class T{constructor(){this.funcAppls={},this.factory_=new a.SemanticNodeFactory,o.updateFactory(this.factory_)}static getInstance(){return T.instance=T.instance||new T,T.instance}static tableToMultiline(t){if(s.tableIsMultiline(t)){t.type="multiline";for(let e,n=0;e=t.childNodes[n];n++)T.rowToLine_(e,"multiline");1===t.childNodes.length&&!s.lineIsLabelled(t.childNodes[0])&&s.isFencedElement(t.childNodes[0].childNodes[0])&&T.tableToMatrixOrVector_(T.rewriteFencedLine_(t)),T.binomialForm_(t),T.classifyMultiline(t)}else T.classifyTable(t)}static number(t){"unknown"!==t.type&&"identifier"!==t.type||(t.type="number"),T.numberRole_(t),T.exprFont_(t)}static classifyMultiline(t){let e=0;const n=t.childNodes.length;let r;for(;e<n&&(!(r=t.childNodes[e])||!r.childNodes.length);)e++;if(e>=n)return;const i=r.childNodes[0].role;"unknown"!==i&&t.childNodes.every((function(t){const e=t.childNodes[0];return!e||e.role===i&&(s.isType(e,"relation")||s.isType(e,"relseq"))}))&&(t.role=i)}static classifyTable(t){const e=T.computeColumns_(t);T.classifyByColumns_(t,e,"equality")||T.classifyByColumns_(t,e,"inequality",["equality"])||T.classifyByColumns_(t,e,"arrow")||T.detectCaleyTable(t)}static detectCaleyTable(t){if(!t.mathmlTree)return!1;const e=t.mathmlTree,n=e.getAttribute("columnlines"),r=e.getAttribute("rowlines");return!(!n||!r||!T.cayleySpacing(n)||!T.cayleySpacing(r)||(t.role="cayley",0))}static cayleySpacing(t){const e=t.split(" ");return("solid"===e[0]||"dashed"===e[0])&&e.slice(1).every((t=>"none"===t))}static proof(t,e,n){const r=T.separateSemantics(e);return T.getInstance().proof(t,r,n)}static findSemantics(t,e,n){const r=null==n?null:n,i=T.getSemantics(t);return!(!i||!i[e]||null!=r&&i[e]!==r)}static getSemantics(t){const e=t.getAttribute("semantics");return e?T.separateSemantics(e):null}static removePrefix(t){const[,...e]=t.split("_");return e.join("_")}static separateSemantics(t){const e={};return t.split(";").forEach((function(t){const[n,r]=t.split(":");e[T.removePrefix(n)]=r})),e}static matchSpaces_(t,e){for(let n,r=0;n=e[r];r++){const e=t[r].mathmlTree,i=t[r+1].mathmlTree;if(!e||!i)continue;const o=e.nextSibling;if(!o||o===i)continue;const a=T.getSpacer_(o);a&&(n.mathml.push(a),n.mathmlTree=a,n.role="space")}}static getSpacer_(t){if("MSPACE"===r.tagName(t))return t;for(;l.hasEmptyTag(t)&&1===t.childNodes.length;)if(t=t.childNodes[0],"MSPACE"===r.tagName(t))return t;return null}static fenceToPunct_(t){const e=T.FENCE_TO_PUNCT_[t.role];if(e){for(;t.embellished;)t.embellished="punctuation",s.isRole(t,"subsup")||s.isRole(t,"underover")||(t.role=e),t=t.childNodes[0];t.type="punctuation",t.role=e}}static classifyFunction_(t,e){if("appl"===t.type||"bigop"===t.type||"integral"===t.type)return"";if(e[0]&&e[0].textContent===i.functionApplication()){T.getInstance().funcAppls[t.id]=e.shift();let n="simple function";return o.run("simple2prefix",t),"prefix function"!==t.role&&"limit function"!==t.role||(n=t.role),T.propagateFunctionRole_(t,n),"prefix"}return T.CLASSIFY_FUNCTION_[t.role]||(s.isSimpleFunctionHead(t)?"simple":"")}static propagateFunctionRole_(t,e){if(t){if("infixop"===t.type)return;s.isRole(t,"subsup")||s.isRole(t,"underover")||(t.role=e),T.propagateFunctionRole_(t.childNodes[0],e)}}static getFunctionOp_(t,e){if(e(t))return t;for(let n,r=0;n=t.childNodes[r];r++){const t=T.getFunctionOp_(n,e);if(t)return t}return null}static tableToMatrixOrVector_(t){const e=t.childNodes[0];s.isType(e,"multiline")?T.tableToVector_(t):T.tableToMatrix_(t),t.contentNodes.forEach(e.appendContentNode.bind(e));for(let t,n=0;t=e.childNodes[n];n++)T.assignRoleToRow_(t,T.getComponentRoles_(e));return e.parent=null,e}static tableToVector_(t){const e=t.childNodes[0];e.type="vector",1!==e.childNodes.length?T.binomialForm_(e):T.tableToSquare_(t)}static binomialForm_(t){s.isBinomial(t)&&(t.role="binomial",t.childNodes[0].role="binomial",t.childNodes[1].role="binomial")}static tableToMatrix_(t){const e=t.childNodes[0];e.type="matrix",e.childNodes&&e.childNodes.length>0&&e.childNodes[0].childNodes&&e.childNodes.length===e.childNodes[0].childNodes.length?T.tableToSquare_(t):e.childNodes&&1===e.childNodes.length&&(e.role="rowvector")}static tableToSquare_(t){const e=t.childNodes[0];s.isNeutralFence(t)?e.role="determinant":e.role="squarematrix"}static getComponentRoles_(t){const e=t.role;return e&&"unknown"!==e?e:t.type.toLowerCase()||"unknown"}static tableToCases_(t,e){for(let e,n=0;e=t.childNodes[n];n++)T.assignRoleToRow_(e,"cases");return t.type="cases",t.appendContentNode(e),s.tableIsMultiline(t)&&T.binomialForm_(t),t}static rewriteFencedLine_(t){const e=t.childNodes[0],n=t.childNodes[0].childNodes[0],r=t.childNodes[0].childNodes[0].childNodes[0];return n.parent=t.parent,t.parent=n,r.parent=e,n.childNodes=[t],e.childNodes=[r],n}static rowToLine_(t,e){const n=e||"unknown";s.isType(t,"row")&&(t.type="line",t.role=n,1===t.childNodes.length&&s.isType(t.childNodes[0],"cell")&&(t.childNodes=t.childNodes[0].childNodes,t.childNodes.forEach((function(e){e.parent=t}))))}static assignRoleToRow_(t,e){s.isType(t,"line")?t.role=e:s.isType(t,"row")&&(t.role=e,t.childNodes.forEach((function(t){s.isType(t,"cell")&&(t.role=e)})))}static nextSeparatorFunction_(t){let e;if(t){if(t.match(/^\s+$/))return null;e=t.replace(/\s/g,"").split("").filter((function(t){return t}))}else e=[","];return function(){return e.length>1?e.shift():e[0]}}static numberRole_(t){if("unknown"!==t.role)return;const e=[...t.textContent].filter((t=>t.match(/[^\s]/))),n=e.map(i.lookupMeaning);if(n.every((function(t){return"number"===t.type&&"integer"===t.role||"punctuation"===t.type&&"comma"===t.role})))return t.role="integer",void("0"===e[0]&&t.addAnnotation("general","basenumber"));n.every((function(t){return"number"===t.type&&"integer"===t.role||"punctuation"===t.type}))?t.role="float":t.role="othernumber"}static exprFont_(t){if("unknown"!==t.font)return;const e=[...t.textContent].map(i.lookupMeaning).reduce((function(t,e){return t&&e.font&&"unknown"!==e.font&&e.font!==t?"unknown"===t?e.font:null:t}),"unknown");e&&(t.font=e)}static purgeFences_(t){const e=t.rel,n=t.comp,r=[],i=[];for(;e.length>0;){const t=e.shift();let o=n.shift();s.isElligibleEmbellishedFence(t)?(r.push(t),i.push(o)):(T.fenceToPunct_(t),o.push(t),o=o.concat(n.shift()),n.unshift(o))}return i.push(n.shift()),{rel:r,comp:i}}static rewriteFencedNode_(t){const e=t.contentNodes[0],n=t.contentNodes[1];let r=T.rewriteFence_(t,e);return t.contentNodes[0]=r.fence,r=T.rewriteFence_(r.node,n),t.contentNodes[1]=r.fence,t.contentNodes[0].parent=t,t.contentNodes[1].parent=t,r.node.parent=null,r.node}static rewriteFence_(t,e){if(!e.embellished)return{node:t,fence:e};const n=e.childNodes[0],r=T.rewriteFence_(t,n);return s.isType(e,"superscript")||s.isType(e,"subscript")||s.isType(e,"tensor")?(s.isRole(e,"subsup")||(e.role=t.role),n!==r.node&&(e.replaceChild(n,r.node),n.parent=t),T.propagateFencePointer_(e,n),{node:e,fence:r.fence}):(e.replaceChild(n,r.fence),e.mathmlTree&&-1===e.mathml.indexOf(e.mathmlTree)&&e.mathml.push(e.mathmlTree),{node:r.node,fence:e})}static propagateFencePointer_(t,e){t.fencePointer=e.fencePointer||e.id.toString(),t.embellished=null}static classifyByColumns_(t,e,n,r){return!!(3===e.length&&T.testColumns_(e,1,(t=>T.isPureRelation_(t,n)))||2===e.length&&(T.testColumns_(e,1,(t=>T.isEndRelation_(t,n)||T.isPureRelation_(t,n)))||T.testColumns_(e,0,(t=>T.isEndRelation_(t,n,!0)||T.isPureRelation_(t,n)))))&&(t.role=n,!0)}static isEndRelation_(t,e,n){const r=n?t.childNodes.length-1:0;return s.isType(t,"relseq")&&s.isRole(t,e)&&s.isType(t.childNodes[r],"empty")}static isPureRelation_(t,e){return s.isType(t,"relation")&&s.isRole(t,e)}static computeColumns_(t){const e=[];for(let n,r=0;n=t.childNodes[r];r++)for(let t,r=0;t=n.childNodes[r];r++)e[r]?e[r].push(t):e[r]=[t];return e}static testColumns_(t,e,n){const r=t[e];return!!r&&r.some((function(t){return t.childNodes.length&&n(t.childNodes[0])}))&&r.every((function(t){return!t.childNodes.length||n(t.childNodes[0])}))}setNodeFactory(t){T.getInstance().factory_=t,o.updateFactory(T.getInstance().factory_)}getNodeFactory(){return T.getInstance().factory_}identifierNode(t,e,n){if("MathML-Unit"===n)t.type="identifier",t.role="unit";else if(!e&&1===t.textContent.length&&("integer"===t.role||"latinletter"===t.role||"greekletter"===t.role)&&"normal"===t.font)return t.font="italic",o.run("simpleNamedFunction",t);return"unknown"===t.type&&(t.type="identifier"),T.exprFont_(t),o.run("simpleNamedFunction",t)}implicitNode(t){if(t=T.getInstance().getMixedNumbers_(t),1===(t=T.getInstance().combineUnits_(t)).length)return t[0];const e=T.getInstance().implicitNode_(t);return o.run("combine_juxtaposition",e)}text(t,e){return T.exprFont_(t),t.type="text","MS"===e?(t.role="string",t):"MSPACE"===e||t.textContent.match(/^\s*$/)?(t.role="space",t):t}row(t){return 0===(t=t.filter((function(t){return!s.isType(t,"empty")}))).length?T.getInstance().factory_.makeEmptyNode():(t=T.getInstance().getFencesInRow_(t),t=T.getInstance().tablesInRow(t),t=T.getInstance().getPunctuationInRow_(t),t=T.getInstance().getTextInRow_(t),t=T.getInstance().getFunctionsInRow_(t),T.getInstance().relationsInRow_(t))}limitNode(t,e){if(!e.length)return T.getInstance().factory_.makeEmptyNode();let n,r=e[0],i="unknown";if(!e[1])return r;if(s.isLimitBase(r)){n=T.MML_TO_LIMIT_[t];const o=n.length;if(i=n.type,e=e.slice(0,n.length+1),1===o&&s.isAccent(e[1])||2===o&&s.isAccent(e[1])&&s.isAccent(e[2]))return n=T.MML_TO_BOUNDS_[t],T.getInstance().accentNode_(r,e,n.type,n.length,n.accent);if(2===o){if(s.isAccent(e[1]))return r=T.getInstance().accentNode_(r,[r,e[1]],{MSUBSUP:"subscript",MUNDEROVER:"underscore"}[t],1,!0),e[2]?T.getInstance().makeLimitNode_(r,[r,e[2]],null,"limupper"):r;if(e[2]&&s.isAccent(e[2]))return r=T.getInstance().accentNode_(r,[r,e[2]],{MSUBSUP:"superscript",MUNDEROVER:"overscore"}[t],1,!0),T.getInstance().makeLimitNode_(r,[r,e[1]],null,"limlower");e[o]||(i="limlower")}return T.getInstance().makeLimitNode_(r,e,null,i)}return n=T.MML_TO_BOUNDS_[t],T.getInstance().accentNode_(r,e,n.type,n.length,n.accent)}tablesInRow(t){let e=l.partitionNodes(t,s.tableIsMatrixOrVector),n=[];for(let t,r=0;t=e.rel[r];r++)n=n.concat(e.comp.shift()),n.push(T.tableToMatrixOrVector_(t));n=n.concat(e.comp.shift()),e=l.partitionNodes(n,s.isTableOrMultiline),n=[];for(let t,r=0;t=e.rel[r];r++){const r=e.comp.shift();s.tableIsCases(t,r)&&T.tableToCases_(t,r.pop()),n=n.concat(r),n.push(t)}return n.concat(e.comp.shift())}mfenced(t,e,n,r){if(n&&r.length>0){const t=T.nextSeparatorFunction_(n),e=[r.shift()];r.forEach((n=>{e.push(T.getInstance().factory_.makeContentNode(t())),e.push(n)})),r=e}return t&&e?T.getInstance().horizontalFencedNode_(T.getInstance().factory_.makeContentNode(t),T.getInstance().factory_.makeContentNode(e),r):(t&&r.unshift(T.getInstance().factory_.makeContentNode(t)),e&&r.push(T.getInstance().factory_.makeContentNode(e)),T.getInstance().row(r))}fractionLikeNode(t,e,n,r){let i;if(!r&&l.isZeroLength(n)){const n=T.getInstance().factory_.makeBranchNode("line",[t],[]),r=T.getInstance().factory_.makeBranchNode("line",[e],[]);return i=T.getInstance().factory_.makeBranchNode("multiline",[n,r],[]),T.binomialForm_(i),T.classifyMultiline(i),i}return i=T.getInstance().fractionNode_(t,e),r&&i.addAnnotation("general","bevelled"),i}tensor(t,e,n,r,i){const o=T.getInstance().factory_.makeBranchNode("tensor",[t,T.getInstance().scriptNode_(e,"leftsub"),T.getInstance().scriptNode_(n,"leftsuper"),T.getInstance().scriptNode_(r,"rightsub"),T.getInstance().scriptNode_(i,"rightsuper")],[]);return o.role=t.role,o.embellished=s.isEmbellished(t),o}pseudoTensor(t,e,n){const r=t=>!s.isType(t,"empty"),i=e.filter(r).length,o=n.filter(r).length;if(!i&&!o)return t;const a=i?o?"MSUBSUP":"MSUB":"MSUP",l=[t];return i&&l.push(T.getInstance().scriptNode_(e,"rightsub",!0)),o&&l.push(T.getInstance().scriptNode_(n,"rightsuper",!0)),T.getInstance().limitNode(a,l)}font(t){return T.MATHJAX_FONTS[t]||t}proof(t,e,n){if(e.inference||e.axiom||console.log("Noise"),e.axiom){const e=T.getInstance().cleanInference(t.childNodes),r=e.length?T.getInstance().factory_.makeBranchNode("inference",n(e),[]):T.getInstance().factory_.makeEmptyNode();return r.role="axiom",r.mathmlTree=t,r}const r=T.getInstance().inference(t,e,n);return e.proof&&(r.role="proof",r.childNodes[0].role="final"),r}inference(t,e,n){if(e.inferenceRule){const e=T.getInstance().getFormulas(t,[],n);return T.getInstance().factory_.makeBranchNode("inference",[e.conclusion,e.premises],[])}const i=e.labelledRule,o=r.toArray(t.childNodes),a=[];"left"!==i&&"both"!==i||a.push(T.getInstance().getLabel(t,o,n,"left")),"right"!==i&&"both"!==i||a.push(T.getInstance().getLabel(t,o,n,"right"));const s=T.getInstance().getFormulas(t,o,n),l=T.getInstance().factory_.makeBranchNode("inference",[s.conclusion,s.premises],a);return l.mathmlTree=t,l}getLabel(t,e,n,i){const o=T.getInstance().findNestedRow(e,"prooflabel",i),a=T.getInstance().factory_.makeBranchNode("rulelabel",n(r.toArray(o.childNodes)),[]);return a.role=i,a.mathmlTree=o,a}getFormulas(t,e,n){const i=e.length?T.getInstance().findNestedRow(e,"inferenceRule"):t,o="up"===T.getSemantics(i).inferenceRule,a=o?i.childNodes[1]:i.childNodes[0],s=o?i.childNodes[0]:i.childNodes[1],l=a.childNodes[0].childNodes[0],Q=r.toArray(l.childNodes[0].childNodes),c=[];let u=1;for(const t of Q)u%2&&c.push(t.childNodes[0]),u++;const d=n(c),h=n(r.toArray(s.childNodes[0].childNodes))[0],p=T.getInstance().factory_.makeBranchNode("premises",d,[]);p.mathmlTree=l;const m=T.getInstance().factory_.makeBranchNode("conclusion",[h],[]);return m.mathmlTree=s.childNodes[0].childNodes[0],{conclusion:m,premises:p}}findNestedRow(t,e,n){return T.getInstance().findNestedRow_(t,e,0,n)}cleanInference(t){return r.toArray(t).filter((function(t){return"MSPACE"!==r.tagName(t)}))}operatorNode(t){return"unknown"===t.type&&(t.type="operator"),o.run("multioperator",t)}implicitNode_(t){const e=T.getInstance().factory_.makeMultipleContentNodes(t.length-1,i.invisibleTimes());T.matchSpaces_(t,e);const n=T.getInstance().infixNode_(t,e[0]);return n.role="implicit",e.forEach((function(t){t.parent=n})),n.contentNodes=e,n}infixNode_(t,e){const n=T.getInstance().factory_.makeBranchNode("infixop",t,[e],l.getEmbellishedInner(e).textContent);return n.role=e.role,o.run("propagateSimpleFunction",n)}explicitMixed_(t){const e=l.partitionNodes(t,(function(t){return t.textContent===i.invisiblePlus()}));if(!e.rel.length)return t;let n=[];for(let t,r=0;t=e.rel[r];r++){const i=e.comp[r],o=e.comp[r+1],a=i.length-1;if(i[a]&&o[0]&&s.isType(i[a],"number")&&!s.isRole(i[a],"mixed")&&s.isType(o[0],"fraction")){const t=T.getInstance().factory_.makeBranchNode("number",[i[a],o[0]],[]);t.role="mixed",n=n.concat(i.slice(0,a)),n.push(t),o.shift()}else n=n.concat(i),n.push(t)}return n.concat(e.comp[e.comp.length-1])}concatNode_(t,e,n){if(0===e.length)return t;const r=e.map((function(t){return l.getEmbellishedInner(t).textContent})).join(" "),i=T.getInstance().factory_.makeBranchNode(n,[t],e,r);return e.length>1&&(i.role="multiop"),i}prefixNode_(t,e){const n=l.partitionNodes(e,(t=>s.isRole(t,"subtraction")));let r=T.getInstance().concatNode_(t,n.comp.pop(),"prefixop");for(1===r.contentNodes.length&&"addition"===r.contentNodes[0].role&&"+"===r.contentNodes[0].textContent&&(r.role="positive");n.rel.length>0;)r=T.getInstance().concatNode_(r,[n.rel.pop()],"prefixop"),r.role="negative",r=T.getInstance().concatNode_(r,n.comp.pop(),"prefixop");return r}postfixNode_(t,e){return e.length?T.getInstance().concatNode_(t,e,"postfixop"):t}combineUnits_(t){const e=l.partitionNodes(t,(function(t){return!s.isRole(t,"unit")}));if(t.length===e.rel.length)return e.rel;const n=[];let r,i;do{const t=e.comp.shift();r=e.rel.shift();let o=null;i=n.pop(),i&&(t.length&&s.isUnitCounter(i)?t.unshift(i):n.push(i)),1===t.length&&(o=t.pop()),t.length>1&&(o=T.getInstance().implicitNode_(t),o.role="unit"),o&&n.push(o),r&&n.push(r)}while(r);return n}getMixedNumbers_(t){const e=l.partitionNodes(t,(function(t){return s.isType(t,"fraction")&&s.isRole(t,"vulgar")}));if(!e.rel.length)return t;let n=[];for(let t,r=0;t=e.rel[r];r++){const i=e.comp[r],o=i.length-1;if(i[o]&&s.isType(i[o],"number")&&(s.isRole(i[o],"integer")||s.isRole(i[o],"float"))){const e=T.getInstance().factory_.makeBranchNode("number",[i[o],t],[]);e.role="mixed",n=n.concat(i.slice(0,o)),n.push(e)}else n=n.concat(i),n.push(t)}return n.concat(e.comp[e.comp.length-1])}getTextInRow_(t){if(t.length<=1)return t;const e=l.partitionNodes(t,(t=>s.isType(t,"text")));if(0===e.rel.length)return t;const n=[];let r=e.comp[0];r.length>0&&n.push(T.getInstance().row(r));for(let t,i=0;t=e.rel[i];i++)n.push(t),r=e.comp[i+1],r.length>0&&n.push(T.getInstance().row(r));return[T.getInstance().dummyNode_(n)]}relationsInRow_(t){const e=l.partitionNodes(t,s.isRelation),n=e.rel[0];if(!n)return T.getInstance().operationsInRow_(t);if(1===t.length)return t[0];const r=e.comp.map(T.getInstance().operationsInRow_);let i;return e.rel.some((function(t){return!t.equals(n)}))?(i=T.getInstance().factory_.makeBranchNode("multirel",r,e.rel),e.rel.every((function(t){return t.role===n.role}))&&(i.role=n.role),i):(i=T.getInstance().factory_.makeBranchNode("relseq",r,e.rel,l.getEmbellishedInner(n).textContent),i.role=n.role,i)}operationsInRow_(t){if(0===t.length)return T.getInstance().factory_.makeEmptyNode();if(1===(t=T.getInstance().explicitMixed_(t)).length)return t[0];const e=[];for(;t.length>0&&s.isOperator(t[0]);)e.push(t.shift());if(0===t.length)return T.getInstance().prefixNode_(e.pop(),e);if(1===t.length)return T.getInstance().prefixNode_(t[0],e);t=o.run("convert_juxtaposition",t);const n=l.sliceNodes(t,s.isOperator),r=T.getInstance().prefixNode_(T.getInstance().implicitNode(n.head),e);return n.div?T.getInstance().operationsTree_(n.tail,r,n.div):r}operationsTree_(t,e,n,r){const i=r||[];if(0===t.length){if(i.unshift(n),"infixop"===e.type){const t=T.getInstance().postfixNode_(e.childNodes.pop(),i);return e.appendChild(t),e}return T.getInstance().postfixNode_(e,i)}const o=l.sliceNodes(t,s.isOperator);if(0===o.head.length)return i.push(o.div),T.getInstance().operationsTree_(o.tail,e,n,i);const a=T.getInstance().prefixNode_(T.getInstance().implicitNode(o.head),i),Q=T.getInstance().appendOperand_(e,n,a);return o.div?T.getInstance().operationsTree_(o.tail,Q,o.div,[]):Q}appendOperand_(t,e,n){return"infixop"!==t.type?T.getInstance().infixNode_([t,n],e):T.getInstance().appendDivisionOp_(t,e,n)||(T.getInstance().appendExistingOperator_(t,e,n)?t:"multiplication"===e.role?T.getInstance().appendMultiplicativeOp_(t,e,n):T.getInstance().appendAdditiveOp_(t,e,n))}appendDivisionOp_(t,e,n){return"division"===e.role?s.isImplicit(t)?T.getInstance().infixNode_([t,n],e):T.getInstance().appendLastOperand_(t,e,n):"division"===t.role?T.getInstance().infixNode_([t,n],e):null}appendLastOperand_(t,e,n){let r=t,i=t.childNodes[t.childNodes.length-1];for(;i&&"infixop"===i.type&&!s.isImplicit(i);)r=i,i=r.childNodes[t.childNodes.length-1];const o=T.getInstance().infixNode_([r.childNodes.pop(),n],e);return r.appendChild(o),t}appendMultiplicativeOp_(t,e,n){if(s.isImplicit(t))return T.getInstance().infixNode_([t,n],e);let r=t,i=t.childNodes[t.childNodes.length-1];for(;i&&"infixop"===i.type&&!s.isImplicit(i);)r=i,i=r.childNodes[t.childNodes.length-1];const o=T.getInstance().infixNode_([r.childNodes.pop(),n],e);return r.appendChild(o),t}appendAdditiveOp_(t,e,n){return T.getInstance().infixNode_([t,n],e)}appendExistingOperator_(t,e,n){return!(!t||"infixop"!==t.type||s.isImplicit(t))&&(t.contentNodes[0].equals(e)?(t.appendContentNode(e),t.appendChild(n),!0):T.getInstance().appendExistingOperator_(t.childNodes[t.childNodes.length-1],e,n))}getFencesInRow_(t){let e=l.partitionNodes(t,s.isFence);e=T.purgeFences_(e);const n=e.comp.shift();return T.getInstance().fences_(e.rel,e.comp,[],[n])}fences_(t,e,n,r){if(0===t.length&&0===n.length)return r[0];const i=t=>s.isRole(t,"open");if(0===t.length){const t=r.shift();for(;n.length>0;){if(i(n[0])){const e=n.shift();T.fenceToPunct_(e),t.push(e)}else{const e=l.sliceNodes(n,i),o=e.head.length-1,a=T.getInstance().neutralFences_(e.head,r.slice(0,o));r=r.slice(o),t.push(...a),e.div&&e.tail.unshift(e.div),n=e.tail}t.push(...r.shift())}return t}const o=n[n.length-1],a=t[0].role;if("open"===a||s.isNeutralFence(t[0])&&(!o||!s.compareNeutralFences(t[0],o))){n.push(t.shift());const i=e.shift();return i&&r.push(i),T.getInstance().fences_(t,e,n,r)}if(o&&"close"===a&&"open"===o.role){const i=T.getInstance().horizontalFencedNode_(n.pop(),t.shift(),r.pop());return r.push(r.pop().concat([i],e.shift())),T.getInstance().fences_(t,e,n,r)}if(o&&s.compareNeutralFences(t[0],o)){if(!s.elligibleLeftNeutral(o)||!s.elligibleRightNeutral(t[0])){n.push(t.shift());const i=e.shift();return i&&r.push(i),T.getInstance().fences_(t,e,n,r)}const i=T.getInstance().horizontalFencedNode_(n.pop(),t.shift(),r.pop());return r.push(r.pop().concat([i],e.shift())),T.getInstance().fences_(t,e,n,r)}if(o&&"close"===a&&s.isNeutralFence(o)&&n.some(i)){const o=l.sliceNodes(n,i,!0),a=r.pop(),s=r.length-o.tail.length+1,Q=T.getInstance().neutralFences_(o.tail,r.slice(s));r=r.slice(0,s);const c=T.getInstance().horizontalFencedNode_(o.div,t.shift(),r.pop().concat(Q,a));return r.push(r.pop().concat([c],e.shift())),T.getInstance().fences_(t,e,o.head,r)}const Q=t.shift();return T.fenceToPunct_(Q),r.push(r.pop().concat([Q],e.shift())),T.getInstance().fences_(t,e,n,r)}neutralFences_(t,e){if(0===t.length)return t;if(1===t.length)return T.fenceToPunct_(t[0]),t;const n=t.shift();if(!s.elligibleLeftNeutral(n)){T.fenceToPunct_(n);const r=e.shift();return r.unshift(n),r.concat(T.getInstance().neutralFences_(t,e))}const r=l.sliceNodes(t,(function(t){return s.compareNeutralFences(t,n)}));if(!r.div){T.fenceToPunct_(n);const r=e.shift();return r.unshift(n),r.concat(T.getInstance().neutralFences_(t,e))}if(!s.elligibleRightNeutral(r.div))return T.fenceToPunct_(r.div),t.unshift(n),T.getInstance().neutralFences_(t,e);const i=T.getInstance().combineFencedContent_(n,r.div,r.head,e);if(r.tail.length>0){const t=i.shift(),e=T.getInstance().neutralFences_(r.tail,i);return t.concat(e)}return i[0]}combineFencedContent_(t,e,n,r){if(0===n.length){const n=T.getInstance().horizontalFencedNode_(t,e,r.shift());return r.length>0?r[0].unshift(n):r=[[n]],r}const i=r.shift(),o=n.length-1,a=r.slice(0,o),s=(r=r.slice(o)).shift(),l=T.getInstance().neutralFences_(n,a);i.push(...l),i.push(...s);const Q=T.getInstance().horizontalFencedNode_(t,e,i);return r.length>0?r[0].unshift(Q):r=[[Q]],r}horizontalFencedNode_(t,e,n){const r=T.getInstance().row(n);let i=T.getInstance().factory_.makeBranchNode("fenced",[r],[t,e]);return"open"===t.role?(T.getInstance().classifyHorizontalFence_(i),i=o.run("propagateComposedFunction",i)):i.role=t.role,i=o.run("detect_cycle",i),T.rewriteFencedNode_(i)}classifyHorizontalFence_(t){t.role="leftright";const e=t.childNodes;if(!s.isSetNode(t)||e.length>1)return;if(0===e.length||"empty"===e[0].type)return void(t.role="set empty");const n=e[0].type;if(1===e.length&&s.isSingletonSetContent(e[0]))return void(t.role="set singleton");const r=e[0].role;if("punctuated"===n&&"sequence"===r){if("comma"!==e[0].contentNodes[0].role)return 1!==e[0].contentNodes.length||"vbar"!==e[0].contentNodes[0].role&&"colon"!==e[0].contentNodes[0].role?void 0:(t.role="set extended",void T.getInstance().setExtension_(t));t.role="set collection"}}setExtension_(t){const e=t.childNodes[0].childNodes[0];e&&"infixop"===e.type&&1===e.contentNodes.length&&s.isMembership(e.contentNodes[0])&&(e.addAnnotation("set","intensional"),e.contentNodes[0].addAnnotation("set","intensional"))}getPunctuationInRow_(t){if(t.length<=1)return t;const e=t=>{const e=t.type;return"punctuation"===e||"text"===e||"operator"===e||"relation"===e},n=l.partitionNodes(t,(function(n){if(!s.isPunctuation(n))return!1;if(s.isPunctuation(n)&&!s.isRole(n,"ellipsis"))return!0;const r=t.indexOf(n);if(0===r)return!t[1]||!e(t[1]);const i=t[r-1];if(r===t.length-1)return!e(i);const o=t[r+1];return!e(i)||!e(o)}));if(0===n.rel.length)return t;const r=[];let i=n.comp.shift();i.length>0&&r.push(T.getInstance().row(i));let o=0;for(;n.comp.length>0;)r.push(n.rel[o++]),i=n.comp.shift(),i.length>0&&r.push(T.getInstance().row(i));return[T.getInstance().punctuatedNode_(r,n.rel)]}punctuatedNode_(t,e){const n=T.getInstance().factory_.makeBranchNode("punctuated",t,e);if(e.length===t.length){const t=e[0].role;if("unknown"!==t&&e.every((function(e){return e.role===t})))return n.role=t,n}return s.singlePunctAtPosition(t,e,0)?n.role="startpunct":s.singlePunctAtPosition(t,e,t.length-1)?n.role="endpunct":e.every((t=>s.isRole(t,"dummy")))?n.role="text":e.every((t=>s.isRole(t,"space")))?n.role="space":n.role="sequence",n}dummyNode_(t){const e=T.getInstance().factory_.makeMultipleContentNodes(t.length-1,i.invisibleComma());return e.forEach((function(t){t.role="dummy"})),T.getInstance().punctuatedNode_(t,e)}accentRole_(t,e){if(!s.isAccent(t))return!1;const n=t.textContent,r=i.lookupSecondary("bar",n)||i.lookupSecondary("tilde",n)||t.role;return t.role="underscore"===e?"underaccent":"overaccent",t.addAnnotation("accent",r),!0}accentNode_(t,e,n,r,i){const o=(e=e.slice(0,r+1))[1],a=e[2];let s;if(!i&&a&&(s=T.getInstance().factory_.makeBranchNode("subscript",[t,o],[]),s.role="subsup",e=[s,a],n="superscript"),i){const r=T.getInstance().accentRole_(o,n);a&&(T.getInstance().accentRole_(a,"overscore")&&!r?(s=T.getInstance().factory_.makeBranchNode("overscore",[t,a],[]),e=[s,o],n="underscore"):(s=T.getInstance().factory_.makeBranchNode("underscore",[t,o],[]),e=[s,a],n="overscore"),s.role="underover")}return T.getInstance().makeLimitNode_(t,e,s,n)}makeLimitNode_(t,e,n,r){if("limupper"===r&&"limlower"===t.type)return t.childNodes.push(e[1]),e[1].parent=t,t.type="limboth",t;if("limlower"===r&&"limupper"===t.type)return t.childNodes.splice(1,-1,e[1]),e[1].parent=t,t.type="limboth",t;const i=T.getInstance().factory_.makeBranchNode(r,e,[]),o=s.isEmbellished(t);return n&&(n.embellished=o),i.embellished=o,i.role=t.role,i}getFunctionsInRow_(t,e){const n=e||[];if(0===t.length)return n;const r=t.shift(),i=T.classifyFunction_(r,t);if(!i)return n.push(r),T.getInstance().getFunctionsInRow_(t,n);const o=T.getInstance().getFunctionsInRow_(t,[]),a=T.getInstance().getFunctionArgs_(r,o,i);return n.concat(a)}getFunctionArgs_(t,e,n){let r,i,o;switch(n){case"integral":{const n=T.getInstance().getIntegralArgs_(e);if(!n.intvar&&!n.integrand.length)return n.rest.unshift(t),n.rest;const r=T.getInstance().row(n.integrand);return o=T.getInstance().integralNode_(t,r,n.intvar),n.rest.unshift(o),n.rest}case"prefix":if(e[0]&&"fenced"===e[0].type){const n=e.shift();return s.isNeutralFence(n)||(n.role="leftright"),o=T.getInstance().functionNode_(t,n),e.unshift(o),e}if(r=l.sliceNodes(e,s.isPrefixFunctionBoundary),r.head.length)i=T.getInstance().row(r.head),r.div&&r.tail.unshift(r.div);else{if(!r.div||!s.isType(r.div,"appl"))return e.unshift(t),e;i=r.div}return o=T.getInstance().functionNode_(t,i),r.tail.unshift(o),r.tail;case"bigop":return r=l.sliceNodes(e,s.isBigOpBoundary),r.head.length?(i=T.getInstance().row(r.head),o=T.getInstance().bigOpNode_(t,i),r.div&&r.tail.unshift(r.div),r.tail.unshift(o),r.tail):(e.unshift(t),e);default:{if(0===e.length)return[t];const n=e[0];return"fenced"===n.type&&!s.isNeutralFence(n)&&s.isSimpleFunctionScope(n)?(n.role="leftright",T.propagateFunctionRole_(t,"simple function"),o=T.getInstance().functionNode_(t,e.shift()),e.unshift(o),e):(e.unshift(t),e)}}}getIntegralArgs_(t,e=[]){if(0===t.length)return{integrand:e,intvar:null,rest:t};const n=t[0];if(s.isGeneralFunctionBoundary(n))return{integrand:e,intvar:null,rest:t};if(s.isIntegralDxBoundarySingle(n))return n.role="integral",{integrand:e,intvar:n,rest:t.slice(1)};if(t[1]&&s.isIntegralDxBoundary(n,t[1])){const r=T.getInstance().prefixNode_(t[1],[n]);return r.role="integral",{integrand:e,intvar:r,rest:t.slice(2)}}return e.push(t.shift()),T.getInstance().getIntegralArgs_(t,e)}functionNode_(t,e){const n=T.getInstance().factory_.makeContentNode(i.functionApplication()),r=T.getInstance().funcAppls[t.id];r&&(n.mathmlTree=r.mathmlTree,n.mathml=r.mathml,n.annotation=r.annotation,n.attributes=r.attributes,delete T.getInstance().funcAppls[t.id]),n.type="punctuation",n.role="application";const o=T.getFunctionOp_(t,(function(t){return s.isType(t,"function")||s.isType(t,"identifier")&&s.isRole(t,"simple function")}));return T.getInstance().functionalNode_("appl",[t,e],o,[n])}bigOpNode_(t,e){const n=T.getFunctionOp_(t,(t=>s.isType(t,"largeop")));return T.getInstance().functionalNode_("bigop",[t,e],n,[])}integralNode_(t,e,n){e=e||T.getInstance().factory_.makeEmptyNode(),n=n||T.getInstance().factory_.makeEmptyNode();const r=T.getFunctionOp_(t,(t=>s.isType(t,"largeop")));return T.getInstance().functionalNode_("integral",[t,e,n],r,[])}functionalNode_(t,e,n,r){const i=e[0];let o;n&&(o=n.parent,r.push(n));const a=T.getInstance().factory_.makeBranchNode(t,e,r);return a.role=i.role,o&&(n.parent=o),a}fractionNode_(t,e){const n=T.getInstance().factory_.makeBranchNode("fraction",[t,e],[]);return n.role=n.childNodes.every((function(t){return s.isType(t,"number")&&s.isRole(t,"integer")}))?"vulgar":n.childNodes.every(s.isPureUnit)?"unit":"division",o.run("propagateSimpleFunction",n)}scriptNode_(t,e,n){let r;switch(t.length){case 0:r=T.getInstance().factory_.makeEmptyNode();break;case 1:if(r=t[0],n)return r;break;default:r=T.getInstance().dummyNode_(t)}return r.role=e,r}findNestedRow_(t,e,n,i){if(n>3)return null;for(let o,a=0;o=t[a];a++){const t=r.tagName(o);if("MSPACE"!==t){if("MROW"===t)return T.getInstance().findNestedRow_(r.toArray(o.childNodes),e,n+1,i);if(T.findSemantics(o,e,i))return o}}return null}}e.default=T,T.FENCE_TO_PUNCT_={metric:"metric",neutral:"vbar",open:"openfence",close:"closefence"},T.MML_TO_LIMIT_={MSUB:{type:"limlower",length:1},MUNDER:{type:"limlower",length:1},MSUP:{type:"limupper",length:1},MOVER:{type:"limupper",length:1},MSUBSUP:{type:"limboth",length:2},MUNDEROVER:{type:"limboth",length:2}},T.MML_TO_BOUNDS_={MSUB:{type:"subscript",length:1,accent:!1},MSUP:{type:"superscript",length:1,accent:!1},MSUBSUP:{type:"subscript",length:2,accent:!1},MUNDER:{type:"underscore",length:1,accent:!0},MOVER:{type:"overscore",length:1,accent:!0},MUNDEROVER:{type:"underscore",length:2,accent:!0}},T.CLASSIFY_FUNCTION_={integral:"integral",sum:"bigop","prefix function":"prefix","limit function":"prefix","simple function":"prefix","composed function":"prefix"},T.MATHJAX_FONTS={"-tex-caligraphic":"caligraphic","-tex-caligraphic-bold":"caligraphic-bold","-tex-calligraphic":"caligraphic","-tex-calligraphic-bold":"caligraphic-bold","-tex-oldstyle":"oldstyle","-tex-oldstyle-bold":"oldstyle-bold","-tex-mathit":"italic"}},5594:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticSkeleton=void 0;const r=n(4422),i=n(1746),o=n(7206);class a{constructor(t){this.parents=null,this.levelsMap=null,t=0===t?t:t||[],this.array=t}static fromTree(t){return a.fromNode(t.root)}static fromNode(t){return new a(a.fromNode_(t))}static fromString(t){return new a(a.fromString_(t))}static simpleCollapseStructure(t){return"number"==typeof t}static contentCollapseStructure(t){return!!t&&!a.simpleCollapseStructure(t)&&"c"===t[0]}static interleaveIds(t,e){return r.interleaveLists(a.collapsedLeafs(t),a.collapsedLeafs(e))}static collapsedLeafs(...t){return t.reduce(((t,e)=>{return t.concat((n=e,a.simpleCollapseStructure(n)?[n]:a.contentCollapseStructure(n[1])?n.slice(2):n.slice(1)));var n}),[])}static fromStructure(t,e){return new a(a.tree_(t,e.root))}static combineContentChildren(t,e,n){switch(t.type){case"relseq":case"infixop":case"multirel":return r.interleaveLists(n,e);case"prefixop":return e.concat(n);case"postfixop":return n.concat(e);case"fenced":return n.unshift(e[0]),n.push(e[1]),n;case"appl":return[n[0],e[0],n[1]];case"root":return[n[1],n[0]];case"row":case"line":return e.length&&n.unshift(e[0]),n;default:return n}}static makeSexp_(t){return a.simpleCollapseStructure(t)?t.toString():a.contentCollapseStructure(t)?"(c "+t.slice(1).map(a.makeSexp_).join(" ")+")":"("+t.map(a.makeSexp_).join(" ")+")"}static fromString_(t){let e=t.replace(/\(/g,"[");return e=e.replace(/\)/g,"]"),e=e.replace(/ /g,","),e=e.replace(/c/g,'"c"'),JSON.parse(e)}static fromNode_(t){if(!t)return[];const e=t.contentNodes;let n;e.length&&(n=e.map(a.fromNode_),n.unshift("c"));const r=t.childNodes;if(!r.length)return e.length?[t.id,n]:t.id;const i=r.map(a.fromNode_);return e.length&&i.unshift(n),i.unshift(t.id),i}static tree_(t,e){if(!e)return[];if(!e.childNodes.length)return e.id;const n=e.id,r=[n],s=i.evalXPath(`.//self::*[@${o.Attribute.ID}=${n}]`,t)[0],l=a.combineContentChildren(e,e.contentNodes.map((function(t){return t})),e.childNodes.map((function(t){return t})));s&&a.addOwns_(s,l);for(let e,n=0;e=l[n];n++)r.push(a.tree_(t,e));return r}static addOwns_(t,e){const n=t.getAttribute(o.Attribute.COLLAPSED),r=n?a.realLeafs_(a.fromString(n).array):e.map((t=>t.id));t.setAttribute(o.Attribute.OWNS,r.join(" "))}static realLeafs_(t){if(a.simpleCollapseStructure(t))return[t];if(a.contentCollapseStructure(t))return[];let e=[];for(let n=1;n<t.length;n++)e=e.concat(a.realLeafs_(t[n]));return e}populate(){this.parents&&this.levelsMap||(this.parents={},this.levelsMap={},this.populate_(this.array,this.array,[]))}toString(){return a.makeSexp_(this.array)}populate_(t,e,n){if(a.simpleCollapseStructure(t))return this.levelsMap[t]=e,void(this.parents[t]=t===n[0]?n.slice(1):n);const r=a.contentCollapseStructure(t)?t.slice(1):t,i=[r[0]].concat(n);for(let e=0,n=r.length;e<n;e++){const n=r[e];this.populate_(n,t,i)}}isRoot(t){return t===this.levelsMap[t][0]}directChildren(t){return this.isRoot(t)?this.levelsMap[t].slice(1).map((t=>a.simpleCollapseStructure(t)?t:a.contentCollapseStructure(t)?t[1]:t[0])):[]}subtreeNodes(t){if(!this.isRoot(t))return[];const e=(t,n)=>{a.simpleCollapseStructure(t)?n.push(t):(a.contentCollapseStructure(t)&&(t=t.slice(1)),t.forEach((t=>e(t,n))))},n=this.levelsMap[t],r=[];return e(n.slice(1),r),r}}e.SemanticSkeleton=a},1250:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticTree=void 0;const r=n(7041),i=n(8770),o=n(5707),a=n(7670),s=n(7603),l=n(5741);n(5044);class T{constructor(t){this.mathml=t,this.parser=new a.SemanticMathml,this.root=this.parser.parse(t),this.collator=this.parser.getFactory().leafMap.collateMeaning();const e=this.collator.newDefault();e&&(this.parser=new a.SemanticMathml,this.parser.getFactory().defaultMap=e,this.root=this.parser.parse(t)),Q.visit(this.root,{}),(0,i.annotate)(this.root)}static empty(){const t=r.parseInput("<math/>"),e=new T(t);return e.mathml=t,e}static fromNode(t,e){const n=T.empty();return n.root=t,e&&(n.mathml=e),n}static fromRoot(t,e){let n=t;for(;n.parent;)n=n.parent;const r=T.fromNode(n);return e&&(r.mathml=e),r}static fromXml(t){const e=T.empty();return t.childNodes[0]&&(e.root=s.SemanticNode.fromXml(t.childNodes[0])),e}xml(t){const e=r.parseInput("<stree></stree>"),n=this.root.xml(e.ownerDocument,t);return e.appendChild(n),e}toString(t){return r.serializeXml(this.xml(t))}formatXml(t){const e=this.toString(t);return r.formatXml(e)}displayTree(){this.root.displayTree()}replaceNode(t,e){const n=t.parent;n?n.replaceChild(t,e):this.root=e}toJson(){const t={};return t.stree=this.root.toJson(),t}}e.SemanticTree=T;const Q=new o.SemanticVisitor("general","unit",((t,e)=>{if("infixop"===t.type&&("multiplication"===t.role||"implicit"===t.role)){const e=t.childNodes;e.length&&(l.isPureUnit(e[0])||l.isUnitCounter(e[0]))&&t.childNodes.slice(1).every(l.isPureUnit)&&(t.role="unit")}return!1}))},8478:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.partitionNodes=e.sliceNodes=e.getEmbellishedInner=e.addAttributes=e.isZeroLength=e.purgeNodes=e.isOrphanedGlyph=e.hasDisplayTag=e.hasEmptyTag=e.hasIgnoreTag=e.hasLeafTag=e.hasMathTag=e.directSpeechKeys=e.DISPLAYTAGS=e.EMPTYTAGS=e.IGNORETAGS=e.LEAFTAGS=void 0;const r=n(7041);function i(t){return!!t&&-1!==e.LEAFTAGS.indexOf(r.tagName(t))}function o(t,e,n){n&&t.reverse();const r=[];for(let i,o=0;i=t[o];o++){if(e(i))return n?{head:t.slice(o+1).reverse(),div:i,tail:r.reverse()}:{head:r,div:i,tail:t.slice(o+1)};r.push(i)}return n?{head:[],div:null,tail:r.reverse()}:{head:r,div:null,tail:[]}}e.LEAFTAGS=["MO","MI","MN","MTEXT","MS","MSPACE"],e.IGNORETAGS=["MERROR","MPHANTOM","MALIGNGROUP","MALIGNMARK","MPRESCRIPTS","ANNOTATION","ANNOTATION-XML"],e.EMPTYTAGS=["MATH","MROW","MPADDED","MACTION","NONE","MSTYLE","SEMANTICS"],e.DISPLAYTAGS=["MROOT","MSQRT"],e.directSpeechKeys=["aria-label","exact-speech","alt"],e.hasMathTag=function(t){return!!t&&"MATH"===r.tagName(t)},e.hasLeafTag=i,e.hasIgnoreTag=function(t){return!!t&&-1!==e.IGNORETAGS.indexOf(r.tagName(t))},e.hasEmptyTag=function(t){return!!t&&-1!==e.EMPTYTAGS.indexOf(r.tagName(t))},e.hasDisplayTag=function(t){return!!t&&-1!==e.DISPLAYTAGS.indexOf(r.tagName(t))},e.isOrphanedGlyph=function(t){return!!t&&"MGLYPH"===r.tagName(t)&&!i(t.parentNode)},e.purgeNodes=function(t){const n=[];for(let i,o=0;i=t[o];o++){if(i.nodeType!==r.NodeType.ELEMENT_NODE)continue;const t=r.tagName(i);-1===e.IGNORETAGS.indexOf(t)&&(-1!==e.EMPTYTAGS.indexOf(t)&&0===i.childNodes.length||n.push(i))}return n},e.isZeroLength=function(t){if(!t)return!1;if(-1!==["negativeveryverythinmathspace","negativeverythinmathspace","negativethinmathspace","negativemediummathspace","negativethickmathspace","negativeverythickmathspace","negativeveryverythickmathspace"].indexOf(t))return!0;const e=t.match(/[0-9.]+/);return!!e&&0===parseFloat(e[0])},e.addAttributes=function(t,n){if(n.hasAttributes()){const r=n.attributes;for(let n=r.length-1;n>=0;n--){const i=r[n].name;i.match(/^ext/)&&(t.attributes[i]=r[n].value,t.nobreaking=!0),-1!==e.directSpeechKeys.indexOf(i)&&(t.attributes["ext-speech"]=r[n].value,t.nobreaking=!0),i.match(/texclass$/)&&(t.attributes.texclass=r[n].value),"href"===i&&(t.attributes.href=r[n].value,t.nobreaking=!0)}}},e.getEmbellishedInner=function t(e){return e&&e.embellished&&e.childNodes.length>0?t(e.childNodes[0]):e},e.sliceNodes=o,e.partitionNodes=function(t,e){let n=t;const r=[],i=[];let a=null;do{a=o(n,e),i.push(a.head),r.push(a.div),n=a.tail}while(a.div);return r.pop(),{rel:r,comp:i}}},4921:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractSpeechGenerator=void 0;const r=n(317),i=n(7206),o=n(154),a=n(2421);e.AbstractSpeechGenerator=class{constructor(){this.modality=i.addPrefix("speech"),this.rebuilt_=null,this.options_={}}getRebuilt(){return this.rebuilt_}setRebuilt(t){this.rebuilt_=t}setOptions(t){this.options_=t||{},this.modality=i.addPrefix(this.options_.modality||"speech")}getOptions(){return this.options_}start(){}end(){}generateSpeech(t,e){return this.rebuilt_||(this.rebuilt_=new o.RebuildStree(e)),(0,r.setup)(this.options_),a.computeMarkup(this.getRebuilt().xml)}}},6405:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AdhocSpeechGenerator=void 0;const r=n(4921);class i extends r.AbstractSpeechGenerator{getSpeech(t,e){const n=this.generateSpeech(t,e);return t.setAttribute(this.modality,n),n}}e.AdhocSpeechGenerator=i},9603:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ColorGenerator=void 0;const r=n(7206),i=n(4881),o=n(154),a=n(3294),s=n(4921);class l extends s.AbstractSpeechGenerator{constructor(){super(...arguments),this.modality=(0,r.addPrefix)("foreground"),this.contrast=new i.ContrastPicker}static visitStree_(t,e,n){if(t.childNodes.length){if(t.contentNodes.length&&("punctuated"===t.type&&t.contentNodes.forEach((t=>n[t.id]=!0)),"implicit"!==t.role&&e.push(t.contentNodes.map((t=>t.id)))),t.childNodes.length){if("implicit"===t.role){const r=[];let i=[];for(const e of t.childNodes){const t=[];l.visitStree_(e,t,n),t.length<=2&&r.push(t.shift()),i=i.concat(t)}return e.push(r),void i.forEach((t=>e.push(t)))}t.childNodes.forEach((t=>l.visitStree_(t,e,n)))}}else n[t.id]||e.push(t.id)}getSpeech(t,e){return a.getAttribute(t,this.modality)}generateSpeech(t,e){return this.getRebuilt()||this.setRebuilt(new o.RebuildStree(t)),this.colorLeaves_(t),a.getAttribute(t,this.modality)}colorLeaves_(t){const e=[];l.visitStree_(this.getRebuilt().streeRoot,e,{});for(const n of e){const e=this.contrast.generate();let r=!1;r=Array.isArray(n)?n.map((n=>this.colorLeave_(t,n,e))).reduce(((t,e)=>t||e),!1):this.colorLeave_(t,n.toString(),e),r&&this.contrast.increment()}}colorLeave_(t,e,n){const r=a.getBySemanticId(t,e);return!!r&&(r.setAttribute(this.modality,n),!0)}}e.ColorGenerator=l},4489:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DirectSpeechGenerator=void 0;const r=n(3294),i=n(4921);class o extends i.AbstractSpeechGenerator{getSpeech(t,e){return r.getAttribute(t,this.modality)}}e.DirectSpeechGenerator=o},8712:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DummySpeechGenerator=void 0;const r=n(4921);class i extends r.AbstractSpeechGenerator{getSpeech(t,e){return""}}e.DummySpeechGenerator=i},7072:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.NodeSpeechGenerator=void 0;const r=n(3294),i=n(8691);class o extends i.TreeSpeechGenerator{getSpeech(t,e){return super.getSpeech(t,e),r.getAttribute(t,this.modality)}}e.NodeSpeechGenerator=o},4493:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.generatorMapping_=e.generator=void 0;const r=n(6405),i=n(9603),o=n(4489),a=n(8712),s=n(7072),l=n(7282),T=n(8691);e.generator=function(t){return(e.generatorMapping_[t]||e.generatorMapping_.Direct)()},e.generatorMapping_={Adhoc:()=>new r.AdhocSpeechGenerator,Color:()=>new i.ColorGenerator,Direct:()=>new o.DirectSpeechGenerator,Dummy:()=>new a.DummySpeechGenerator,Node:()=>new s.NodeSpeechGenerator,Summary:()=>new l.SummarySpeechGenerator,Tree:()=>new T.TreeSpeechGenerator}},2421:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.computeSummary_=e.retrieveSummary=e.connectAllMactions=e.connectMactions=e.nodeAtPosition_=e.computePrefix_=e.retrievePrefix=e.addPrefix=e.addModality=e.addSpeech=e.recomputeMarkup=e.computeMarkup=e.recomputeSpeech=e.computeSpeech=void 0;const r=n(840),i=n(7041),o=n(1746),a=n(7206),s=n(5124),l=n(1250),T=n(3294);function Q(t){return s.SpeechRuleEngine.getInstance().evaluateNode(t)}function c(t){return Q(l.SemanticTree.fromNode(t).xml())}function u(t){const e=c(t);return r.markup(e)}function d(t){const e=h(t);return r.markup(e)}function h(t){const e=l.SemanticTree.fromRoot(t),n=o.evalXPath('.//*[@id="'+t.id+'"]',e.xml());let r=n[0];return n.length>1&&(r=p(t,n)||r),r?s.SpeechRuleEngine.getInstance().runInSetting({modality:"prefix",domain:"default",style:"default",strict:!0,speech:!0},(function(){return s.SpeechRuleEngine.getInstance().evaluateNode(r)})):[]}function p(t,e){const n=e[0];if(!t.parent)return n;const r=[];for(;t;)r.push(t.id),t=t.parent;const i=function(t,e){for(;e.length&&e.shift().toString()===t.getAttribute("id")&&t.parentNode&&t.parentNode.parentNode;)t=t.parentNode.parentNode;return!e.length};for(let t,n=0;t=e[n];n++)if(i(t,r.slice()))return t;return n}function m(t){return t?s.SpeechRuleEngine.getInstance().runInSetting({modality:"summary",strict:!1,speech:!0},(function(){return s.SpeechRuleEngine.getInstance().evaluateNode(t)})):[]}e.computeSpeech=Q,e.recomputeSpeech=c,e.computeMarkup=function(t){const e=Q(t);return r.markup(e)},e.recomputeMarkup=u,e.addSpeech=function(t,e,n){const o=i.querySelectorAllByAttrValue(n,"id",e.id.toString())[0],s=o?r.markup(Q(o)):u(e);t.setAttribute(a.Attribute.SPEECH,s)},e.addModality=function(t,e,n){const r=u(e);t.setAttribute(n,r)},e.addPrefix=function(t,e){const n=d(e);n&&t.setAttribute(a.Attribute.PREFIX,n)},e.retrievePrefix=d,e.computePrefix_=h,e.nodeAtPosition_=p,e.connectMactions=function(t,e,n){const r=i.querySelectorAll(e,"maction");for(let e,o=0;e=r[o];o++){const r=e.getAttribute("id"),o=i.querySelectorAllByAttrValue(t,"id",r)[0];if(!o)continue;const s=e.childNodes[1],l=s.getAttribute(a.Attribute.ID);let Q=T.getBySemanticId(t,l);if(Q&&"dummy"!==Q.getAttribute(a.Attribute.TYPE))continue;if(Q=o.childNodes[0],Q.getAttribute("sre-highlighter-added"))continue;const c=s.getAttribute(a.Attribute.PARENT);c&&Q.setAttribute(a.Attribute.PARENT,c),Q.setAttribute(a.Attribute.TYPE,"dummy"),Q.setAttribute(a.Attribute.ID,l),i.querySelectorAllByAttrValue(n,"id",l)[0].setAttribute("alternative",l)}},e.connectAllMactions=function(t,e){const n=i.querySelectorAll(t,"maction");for(let t,r=0;t=n[r];r++){const n=t.childNodes[1].getAttribute(a.Attribute.ID);i.querySelectorAllByAttrValue(e,"id",n)[0].setAttribute("alternative",n)}},e.retrieveSummary=function(t){const e=m(t);return r.markup(e)},e.computeSummary_=m},7282:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SummarySpeechGenerator=void 0;const r=n(4921),i=n(2421);class o extends r.AbstractSpeechGenerator{getSpeech(t,e){return i.connectAllMactions(e,this.getRebuilt().xml),this.generateSpeech(t,e)}}e.SummarySpeechGenerator=o},8691:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TreeSpeechGenerator=void 0;const r=n(7206),i=n(3294),o=n(4921),a=n(2421);class s extends o.AbstractSpeechGenerator{getSpeech(t,e){const n=this.generateSpeech(t,e),o=this.getRebuilt().nodeDict;for(const n in o){const s=o[n],l=i.getBySemanticId(e,n),T=i.getBySemanticId(t,n);l&&T&&(this.modality&&this.modality!==r.Attribute.SPEECH?a.addModality(T,s,this.modality):a.addSpeech(T,s,this.getRebuilt().xml),this.modality===r.Attribute.SPEECH&&a.addPrefix(T,s))}return n}}e.TreeSpeechGenerator=s},7792:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.INTERVALS=e.makeLetter=e.numberRules=e.alphabetRules=e.getFont=e.makeInterval=e.generate=e.makeDomains_=e.Domains_=e.Base=e.Embellish=e.Font=void 0;const r=n(3684),i=n(2420),o=n(3826),a=n(5681),s=n(8844);var l,T,Q;function c(){const t=o.LOCALE.ALPHABETS,n=(t,e)=>{const n={};return Object.keys(t).forEach((t=>n[t]=!0)),Object.keys(e).forEach((t=>n[t]=!0)),Object.keys(n)};e.Domains_.small=n(t.smallPrefix,t.letterTrans),e.Domains_.capital=n(t.capPrefix,t.letterTrans),e.Domains_.digit=n(t.digitPrefix,t.digitTrans)}function u(t){const e=t.toString(16).toUpperCase();return e.length>3?e:("000"+e).slice(-4)}function d([t,e],n){const r=parseInt(t,16),i=parseInt(e,16),o=[];for(let t=r;t<=i;t++){let e=u(t);!1!==n[e]&&(e=n[e]||e,o.push(e))}return o}function h(t){const e="normal"===t||"fullwidth"===t?"":o.LOCALE.MESSAGES.font[t]||o.LOCALE.MESSAGES.embellish[t]||"";return(0,a.localeFontCombiner)(e)}function p(t,n,r,i,a,s){const l=h(i);for(let i,T,Q,c=0;i=t[c],T=n[c],Q=r[c];c++){const t=s?o.LOCALE.ALPHABETS.capPrefix:o.LOCALE.ALPHABETS.smallPrefix,n=s?e.Domains_.capital:e.Domains_.small;f(l.combiner,i,T,Q,l.font,t,a,o.LOCALE.ALPHABETS.letterTrans,n)}}function m(t,n,r,i,a){const s=h(r);for(let r,l,T=0;r=t[T],l=n[T];T++){const t=o.LOCALE.ALPHABETS.digitPrefix,n=T+a;f(s.combiner,r,l,n,s.font,t,i,o.LOCALE.ALPHABETS.digitTrans,e.Domains_.digit)}}function f(t,e,n,r,i,o,a,l,T){for(let Q,c=0;Q=T[c];c++){const T=Q in l?l[Q]:l.default,c=Q in o?o[Q]:o.default;s.defineRule(e.toString(),Q,"default",a,n,t(T(r),i,c))}}!function(t){t.BOLD="bold",t.BOLDFRAKTUR="bold-fraktur",t.BOLDITALIC="bold-italic",t.BOLDSCRIPT="bold-script",t.DOUBLESTRUCK="double-struck",t.FULLWIDTH="fullwidth",t.FRAKTUR="fraktur",t.ITALIC="italic",t.MONOSPACE="monospace",t.NORMAL="normal",t.SCRIPT="script",t.SANSSERIF="sans-serif",t.SANSSERIFITALIC="sans-serif-italic",t.SANSSERIFBOLD="sans-serif-bold",t.SANSSERIFBOLDITALIC="sans-serif-bold-italic"}(l=e.Font||(e.Font={})),function(t){t.SUPER="super",t.SUB="sub",t.CIRCLED="circled",t.PARENTHESIZED="parenthesized",t.PERIOD="period",t.NEGATIVECIRCLED="negative-circled",t.DOUBLECIRCLED="double-circled",t.CIRCLEDSANSSERIF="circled-sans-serif",t.NEGATIVECIRCLEDSANSSERIF="negative-circled-sans-serif",t.COMMA="comma",t.SQUARED="squared",t.NEGATIVESQUARED="negative-squared"}(T=e.Embellish||(e.Embellish={})),function(t){t.LATINCAP="latinCap",t.LATINSMALL="latinSmall",t.GREEKCAP="greekCap",t.GREEKSMALL="greekSmall",t.DIGIT="digit"}(Q=e.Base||(e.Base={})),e.Domains_={small:["default"],capital:["default"],digit:["default"]},e.makeDomains_=c,e.generate=function(t){const n=r.default.getInstance().locale;r.default.getInstance().locale=t,i.setLocale(),s.addSymbolRules({locale:t}),c();const a=e.INTERVALS;for(let t,e=0;t=a[e];e++){const e=d(t.interval,t.subst),n=e.map((function(t){return String.fromCodePoint(parseInt(t,16))}));"offset"in t?m(e,n,t.font,t.category,t.offset||0):p(e,n,o.LOCALE.ALPHABETS[t.base],t.font,t.category,!!t.capital)}r.default.getInstance().locale=n,i.setLocale()},e.makeInterval=d,e.getFont=h,e.alphabetRules=p,e.numberRules=m,e.makeLetter=f,e.INTERVALS=[{interval:["1D400","1D419"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLD},{interval:["1D41A","1D433"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLD},{interval:["1D56C","1D585"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDFRAKTUR},{interval:["1D586","1D59F"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDFRAKTUR},{interval:["1D468","1D481"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDITALIC},{interval:["1D482","1D49B"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDITALIC},{interval:["1D4D0","1D4E9"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDSCRIPT},{interval:["1D4EA","1D503"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDSCRIPT},{interval:["1D538","1D551"],base:Q.LATINCAP,subst:{"1D53A":"2102","1D53F":"210D","1D545":"2115","1D547":"2119","1D548":"211A","1D549":"211D","1D551":"2124"},capital:!0,category:"Lu",font:l.DOUBLESTRUCK},{interval:["1D552","1D56B"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.DOUBLESTRUCK},{interval:["1D504","1D51D"],base:Q.LATINCAP,subst:{"1D506":"212D","1D50B":"210C","1D50C":"2111","1D515":"211C","1D51D":"2128"},capital:!0,category:"Lu",font:l.FRAKTUR},{interval:["1D51E","1D537"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.FRAKTUR},{interval:["FF21","FF3A"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.FULLWIDTH},{interval:["FF41","FF5A"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.FULLWIDTH},{interval:["1D434","1D44D"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.ITALIC},{interval:["1D44E","1D467"],base:Q.LATINSMALL,subst:{"1D455":"210E"},capital:!1,category:"Ll",font:l.ITALIC},{interval:["1D670","1D689"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.MONOSPACE},{interval:["1D68A","1D6A3"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.MONOSPACE},{interval:["0041","005A"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.NORMAL},{interval:["0061","007A"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.NORMAL},{interval:["1D49C","1D4B5"],base:Q.LATINCAP,subst:{"1D49D":"212C","1D4A0":"2130","1D4A1":"2131","1D4A3":"210B","1D4A4":"2110","1D4A7":"2112","1D4A8":"2133","1D4AD":"211B"},capital:!0,category:"Lu",font:l.SCRIPT},{interval:["1D4B6","1D4CF"],base:Q.LATINSMALL,subst:{"1D4BA":"212F","1D4BC":"210A","1D4C4":"2134"},capital:!1,category:"Ll",font:l.SCRIPT},{interval:["1D5A0","1D5B9"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIF},{interval:["1D5BA","1D5D3"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIF},{interval:["1D608","1D621"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFITALIC},{interval:["1D622","1D63B"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFITALIC},{interval:["1D5D4","1D5ED"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLD},{interval:["1D5EE","1D607"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLD},{interval:["1D63C","1D655"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLDITALIC},{interval:["1D656","1D66F"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLDITALIC},{interval:["0391","03A9"],base:Q.GREEKCAP,subst:{"03A2":"03F4"},capital:!0,category:"Lu",font:l.NORMAL},{interval:["03B0","03D0"],base:Q.GREEKSMALL,subst:{"03B0":"2207","03CA":"2202","03CB":"03F5","03CC":"03D1","03CD":"03F0","03CE":"03D5","03CF":"03F1","03D0":"03D6"},capital:!1,category:"Ll",font:l.NORMAL},{interval:["1D6A8","1D6C0"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.BOLD},{interval:["1D6C1","1D6E1"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLD},{interval:["1D6E2","1D6FA"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.ITALIC},{interval:["1D6FB","1D71B"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.ITALIC},{interval:["1D71C","1D734"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDITALIC},{interval:["1D735","1D755"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDITALIC},{interval:["1D756","1D76E"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLD},{interval:["1D76F","1D78F"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLD},{interval:["1D790","1D7A8"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLDITALIC},{interval:["1D7A9","1D7C9"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLDITALIC},{interval:["0030","0039"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.NORMAL},{interval:["2070","2079"],base:Q.DIGIT,subst:{2071:"00B9",2072:"00B2",2073:"00B3"},offset:0,category:"No",font:T.SUPER},{interval:["2080","2089"],base:Q.DIGIT,subst:{},offset:0,category:"No",font:T.SUB},{interval:["245F","2473"],base:Q.DIGIT,subst:{"245F":"24EA"},offset:0,category:"No",font:T.CIRCLED},{interval:["3251","325F"],base:Q.DIGIT,subst:{},offset:21,category:"No",font:T.CIRCLED},{interval:["32B1","32BF"],base:Q.DIGIT,subst:{},offset:36,category:"No",font:T.CIRCLED},{interval:["2474","2487"],base:Q.DIGIT,subst:{},offset:1,category:"No",font:T.PARENTHESIZED},{interval:["2487","249B"],base:Q.DIGIT,subst:{2487:"1F100"},offset:0,category:"No",font:T.PERIOD},{interval:["2775","277F"],base:Q.DIGIT,subst:{2775:"24FF"},offset:0,category:"No",font:T.NEGATIVECIRCLED},{interval:["24EB","24F4"],base:Q.DIGIT,subst:{},offset:11,category:"No",font:T.NEGATIVECIRCLED},{interval:["24F5","24FE"],base:Q.DIGIT,subst:{},offset:1,category:"No",font:T.DOUBLECIRCLED},{interval:["277F","2789"],base:Q.DIGIT,subst:{"277F":"1F10B"},offset:0,category:"No",font:T.CIRCLEDSANSSERIF},{interval:["2789","2793"],base:Q.DIGIT,subst:{2789:"1F10C"},offset:0,category:"No",font:T.NEGATIVECIRCLEDSANSSERIF},{interval:["FF10","FF19"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.FULLWIDTH},{interval:["1D7CE","1D7D7"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.BOLD},{interval:["1D7D8","1D7E1"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.DOUBLESTRUCK},{interval:["1D7E2","1D7EB"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.SANSSERIF},{interval:["1D7EC","1D7F5"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.SANSSERIFBOLD},{interval:["1D7F6","1D7FF"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.MONOSPACE},{interval:["1F101","1F10A"],base:Q.DIGIT,subst:{},offset:0,category:"No",font:T.COMMA},{interval:["24B6","24CF"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.CIRCLED},{interval:["24D0","24E9"],base:Q.LATINSMALL,subst:{},capital:!1,category:"So",font:T.CIRCLED},{interval:["1F110","1F129"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.PARENTHESIZED},{interval:["249C","24B5"],base:Q.LATINSMALL,subst:{},capital:!1,category:"So",font:T.PARENTHESIZED},{interval:["1F130","1F149"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.SQUARED},{interval:["1F170","1F189"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.NEGATIVESQUARED},{interval:["1F150","1F169"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.NEGATIVECIRCLED}]},9050:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Parser=e.Comparator=e.ClearspeakPreferences=void 0;const r=n(3684),i=n(9686),o=n(3113),a=n(3113),s=n(8844),l=n(5124);class T extends o.DynamicCstr{constructor(t,e){super(t),this.preference=e}static comparator(){return new c(r.default.getInstance().dynamicCstr,a.DynamicProperties.createProp([o.DynamicCstr.DEFAULT_VALUES[a.Axis.LOCALE]],[o.DynamicCstr.DEFAULT_VALUES[a.Axis.MODALITY]],[o.DynamicCstr.DEFAULT_VALUES[a.Axis.DOMAIN]],[o.DynamicCstr.DEFAULT_VALUES[a.Axis.STYLE]]))}static fromPreference(t){const e=t.split(":"),n={},r=Q.getProperties(),i=Object.keys(r);for(let t,o=0;t=e[o];o++){const e=t.split("_");if(-1===i.indexOf(e[0]))continue;const o=e[1];o&&o!==T.AUTO&&-1!==r[e[0]].indexOf(o)&&(n[e[0]]=e[1])}return n}static toPreference(t){const e=Object.keys(t),n=[];for(let r=0;r<e.length;r++)n.push(e[r]+"_"+t[e[r]]);return n.length?n.join(":"):o.DynamicCstr.DEFAULT_VALUE}static getLocalePreferences(t){const e=t||s.enumerate(l.SpeechRuleEngine.getInstance().enumerate());return T.getLocalePreferences_(e)}static smartPreferences(t,e){const n=T.getLocalePreferences()[e];if(!n)return[];const r=t.explorers.speech,o=T.relevantPreferences(r.walker.getFocus().getSemanticPrimary()),a=i.DOMAIN_TO_STYLES.clearspeak;return[{type:"radio",content:"No Preferences",id:"clearspeak-default",variable:"speechRules"},{type:"radio",content:"Current Preferences",id:"clearspeak-"+a,variable:"speechRules"},{type:"rule"},{type:"label",content:"Preferences for "+o},{type:"rule"}].concat(n[o].map((function(t){const e=t.split("_");return{type:"radio",content:e[1],id:"clearspeak-"+T.addPreference(a,e[0],e[1]),variable:"speechRules"}})))}static relevantPreferences(t){const e=h[t.type];return e&&(e[t.role]||e[""])||"ImpliedTimes"}static findPreference(t,e){return"default"===t?T.AUTO:T.fromPreference(t)[e]||T.AUTO}static addPreference(t,e,n){if("default"===t)return e+"_"+n;const r=T.fromPreference(t);return r[e]=n,T.toPreference(r)}static getLocalePreferences_(t){const e={};for(const n in t){if(!t[n].speech||!t[n].speech.clearspeak)continue;const r=Object.keys(t[n].speech.clearspeak),i=e[n]={};for(const t in Q.getProperties()){const e=Q.getProperties()[t],n=[t+"_Auto"];if(e)for(const i of e)-1!==r.indexOf(t+"_"+i)&&n.push(t+"_"+i);i[t]=n}}return e}equal(t){if(!super.equal(t))return!1;const e=Object.keys(this.preference),n=t.preference;if(e.length!==Object.keys(n).length)return!1;for(let t,r=0;t=e[r];r++)if(this.preference[t]!==n[t])return!1;return!0}}e.ClearspeakPreferences=T,T.AUTO="Auto";const Q=new a.DynamicProperties({AbsoluteValue:["Auto","AbsEnd","Cardinality","Determinant"],Bar:["Auto","Conjugate"],Caps:["Auto","SayCaps"],CombinationPermutation:["Auto","ChoosePermute"],Currency:["Auto","Position","Prefix"],Ellipses:["Auto","AndSoOn"],Enclosed:["Auto","EndEnclose"],Exponent:["Auto","AfterPower","Ordinal","OrdinalPower","Exponent"],Fraction:["Auto","EndFrac","FracOver","General","GeneralEndFrac","Ordinal","Over","OverEndFrac","Per"],Functions:["Auto","None","Reciprocal"],ImpliedTimes:["Auto","MoreImpliedTimes","None"],Log:["Auto","LnAsNaturalLog"],Matrix:["Auto","Combinatoric","EndMatrix","EndVector","SilentColNum","SpeakColNum","Vector"],MultiLineLabel:["Auto","Case","Constraint","Equation","Line","None","Row","Step"],MultiLineOverview:["Auto","None"],MultiLinePausesBetweenColumns:["Auto","Long","Short"],MultsymbolDot:["Auto","Dot"],MultsymbolX:["Auto","By","Cross"],Paren:["Auto","CoordPoint","Interval","Silent","Speak","SpeakNestingLevel"],Prime:["Auto","Angle","Length"],Roots:["Auto","PosNegSqRoot","PosNegSqRootEnd","RootEnd"],SetMemberSymbol:["Auto","Belongs","Element","Member","In"],Sets:["Auto","SilentBracket","woAll"],TriangleSymbol:["Auto","Delta"],Trig:["Auto","ArcTrig","TrigInverse","Reciprocal"],VerticalLine:["Auto","Divides","Given","SuchThat"]});class c extends a.DefaultComparator{constructor(t,e){super(t,e),this.preference=t instanceof T?t.preference:{}}match(t){if(!(t instanceof T))return super.match(t);if("default"===t.getComponents()[a.Axis.STYLE])return!0;const e=Object.keys(t.preference);for(let n,r=0;n=e[r];r++)if(this.preference[n]!==t.preference[n])return!1;return!0}compare(t,e){const n=super.compare(t,e);if(0!==n)return n;const r=t instanceof T,i=e instanceof T;if(!r&&i)return 1;if(r&&!i)return-1;if(!r&&!i)return 0;const o=Object.keys(t.preference).length,a=Object.keys(e.preference).length;return o>a?-1:o<a?1:0}}e.Comparator=c;class u extends a.DynamicCstrParser{constructor(){super([a.Axis.LOCALE,a.Axis.MODALITY,a.Axis.DOMAIN,a.Axis.STYLE])}parse(t){const e=super.parse(t);let n=e.getValue(a.Axis.STYLE);const r=e.getValue(a.Axis.LOCALE),i=e.getValue(a.Axis.MODALITY);let s={};return n!==o.DynamicCstr.DEFAULT_VALUE&&(s=this.fromPreference(n),n=this.toPreference(s)),new T({locale:r,modality:i,domain:"clearspeak",style:n},s)}fromPreference(t){return T.fromPreference(t)}toPreference(t){return T.toPreference(t)}}e.Parser=u;const d=[["AbsoluteValue","fenced","neutral","metric"],["Bar","overscore","overaccent"],["Caps","identifier","latinletter"],["CombinationPermutation","appl","unknown"],["Ellipses","punctuation","ellipsis"],["Exponent","superscript",""],["Fraction","fraction",""],["Functions","appl","simple function"],["ImpliedTimes","operator","implicit"],["Log","appl","prefix function"],["Matrix","matrix",""],["Matrix","vector",""],["MultiLineLabel","multiline","label"],["MultiLineOverview","multiline","table"],["MultiLinePausesBetweenColumns","multiline","table"],["MultiLineLabel","table","label"],["MultiLineOverview","table","table"],["MultiLinePausesBetweenColumns","table","table"],["MultiLineLabel","cases","label"],["MultiLineOverview","cases","table"],["MultiLinePausesBetweenColumns","cases","table"],["MultsymbolDot","operator","multiplication"],["MultsymbolX","operator","multiplication"],["Paren","fenced","leftright"],["Prime","superscript","prime"],["Roots","root",""],["Roots","sqrt",""],["SetMemberSymbol","relation","element"],["Sets","fenced","set extended"],["TriangleSymbol","identifier","greekletter"],["Trig","appl","prefix function"],["VerticalLine","punctuated","vbar"]],h=function(){const t={};for(let e,n=0;e=d[n];n++){const n=e[0];let r=t[e[1]];r||(r={},t[e[1]]=r),r[e[2]]=n}return t}();r.default.getInstance().comparators.clearspeak=T.comparator,r.default.getInstance().parsers.clearspeak=new u},3126:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ClearspeakRules=void 0;const r=n(3113),i=n(8159),o=n(1293),a=n(1849),s=n(9035),l=n(3445);e.ClearspeakRules=function(){l.addStore(r.DynamicCstr.BASE_LOCALE+".speech.clearspeak","",{CTFpauseSeparator:i.pauseSeparator,CTFnodeCounter:o.nodeCounter,CTFcontentIterator:i.contentIterator,CSFvulgarFraction:s.vulgarFraction,CQFvulgarFractionSmall:o.isSmallVulgarFraction,CQFcellsSimple:o.allCellsSimple,CSFordinalExponent:o.ordinalExponent,CSFwordOrdinal:o.wordOrdinal,CQFmatchingFences:o.matchingFences,CSFnestingDepth:o.nestingDepth,CQFfencedArguments:o.fencedArguments,CQFsimpleArguments:o.simpleArguments,CQFspaceoutNumber:a.spaceoutNumber})}},1293:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.wordOrdinal=e.layoutFactor_=e.fencedFactor_=e.simpleFactor_=e.simpleArguments=e.fencedArguments=e.insertNesting=e.matchingFences=e.nestingDepth=e.NESTING_DEPTH=e.ordinalExponent=e.allTextLastContent_=e.isUnitExpression=e.isSmallVulgarFraction=e.allCellsSimple=e.allIndices_=e.isInteger_=e.simpleCell_=e.simpleNode=e.hasPreference=e.isSimpleFraction_=e.isSimpleNumber_=e.isNumber_=e.isLetter_=e.isSimple_=e.isSimpleLetters_=e.isSimpleDegree_=e.isSimpleNegative_=e.isSimpleFunction_=e.isSimpleExpression=e.nodeCounter=void 0;const r=n(7041),i=n(3684),o=n(1746),a=n(3826),s=n(1404),l=n(7534),T=n(8159),Q=n(8770),c=n(5707),u=n(218);function d(t){return b(t)||f(t)||m(t)||p(t)||h(t)}function h(t){return"appl"===t.type&&("prefix function"===t.childNodes[0].role||"simple function"===t.childNodes[0].role)&&(y(t.childNodes[1])||"fenced"===t.childNodes[1].type&&y(t.childNodes[1].childNodes[0]))}function p(t){return"prefixop"===t.type&&"negative"===t.role&&y(t.childNodes[0])&&"prefixop"!==t.childNodes[0].type&&"appl"!==t.childNodes[0].type&&"punctuated"!==t.childNodes[0].type}function m(t){return"punctuated"===t.type&&"endpunct"===t.role&&2===t.childNodes.length&&"degree"===t.childNodes[1].role&&(g(t.childNodes[0])||L(t.childNodes[0])||"prefixop"===t.childNodes[0].type&&"negative"===t.childNodes[0].role&&(g(t.childNodes[0].childNodes[0])||L(t.childNodes[0].childNodes[0])))}function f(t){return g(t)||"infixop"===t.type&&"implicit"===t.role&&(2===t.childNodes.length&&(g(t.childNodes[0])||b(t.childNodes[0]))&&g(t.childNodes[1])||3===t.childNodes.length&&b(t.childNodes[0])&&g(t.childNodes[1])&&g(t.childNodes[2]))}function y(t){return t.hasAnnotation("clearspeak","simple")}function g(t){return"identifier"===t.type&&("latinletter"===t.role||"greekletter"===t.role||"otherletter"===t.role||"simple function"===t.role)}function L(t){return"number"===t.type&&("integer"===t.role||"float"===t.role)}function b(t){return L(t)||v(t)}function v(t){if(x("Fraction_Over")||x("Fraction_FracOver"))return!1;if("fraction"!==t.type||"vulgar"!==t.role)return!1;if(x("Fraction_Ordinal"))return!0;const e=parseInt(t.childNodes[0].textContent,10),n=parseInt(t.childNodes[1].textContent,10);return e>0&&e<20&&n>0&&n<11}function x(t){return i.default.getInstance().style===t}function _(t){if(!t.hasAttribute("annotation"))return!1;const e=t.getAttribute("annotation");return!!/clearspeak:simple$|clearspeak:simple;/.exec(e)}function H(t){if(_(t))return!0;if("subscript"!==t.tagName)return!1;const e=t.childNodes[0].childNodes,n=e[1];return"identifier"===e[0].tagName&&(w(n)||"infixop"===n.tagName&&n.hasAttribute("role")&&"implicit"===n.getAttribute("role")&&O(n))}function w(t){return"number"===t.tagName&&t.hasAttribute("role")&&"integer"===t.getAttribute("role")}function O(t){return o.evalXPath("children/*",t).every((t=>w(t)||"identifier"===t.tagName))}function M(t){return"text"===t.type||"punctuated"===t.type&&"text"===t.role&&L(t.childNodes[0])&&S(t.childNodes.slice(1))||"identifier"===t.type&&"unit"===t.role||"infixop"===t.type&&("implicit"===t.role||"unit"===t.role)}function S(t){for(let e=0;e<t.length-1;e++)if("text"!==t[e].type||""!==t[e].textContent)return!1;return"text"===t[t.length-1].type}function E(t,e){if(!e||!t)return t;const n=t.match(/^(open|close) /);return n?n[0]+e+" "+t.substring(n[0].length):e+" "+t}function A(t){return!!t&&("number"===t.tagName||"identifier"===t.tagName||"function"===t.tagName||"appl"===t.tagName||"fraction"===t.tagName)}function C(t){return t&&("fenced"===t.tagName||t.hasAttribute("role")&&"leftright"===t.getAttribute("role")||V(t))}function V(t){return!!t&&("matrix"===t.tagName||"vector"===t.tagName)}e.nodeCounter=function(t,e){const n=e.split("-"),r=T.nodeCounter(t,n[0]||""),i=n[1]||"",o=n[2]||"";let a=!0;return function(){const t=r();return a?(a=!1,o+t+i):t+i}},e.isSimpleExpression=d,e.isSimpleFunction_=h,e.isSimpleNegative_=p,e.isSimpleDegree_=m,e.isSimpleLetters_=f,e.isSimple_=y,e.isLetter_=g,e.isNumber_=L,e.isSimpleNumber_=b,e.isSimpleFraction_=v,e.hasPreference=x,(0,Q.register)(new c.SemanticAnnotator("clearspeak","simple",(function(t){return d(t)?"simple":""}))),e.simpleNode=_,e.simpleCell_=H,e.isInteger_=w,e.allIndices_=O,e.allCellsSimple=function(t){const e="matrix"===t.tagName?"children/row/children/cell/children/*":"children/line/children/*";return o.evalXPath(e,t).every(H)?[t]:[]},e.isSmallVulgarFraction=function(t){return(0,s.vulgarFractionSmall)(t,20,11)?[t]:[]},e.isUnitExpression=M,e.allTextLastContent_=S,(0,Q.register)(new c.SemanticAnnotator("clearspeak","unit",(function(t){return M(t)?"unit":""}))),e.ordinalExponent=function(t){const e=parseInt(t.textContent,10);return isNaN(e)?t.textContent:e>10?a.LOCALE.NUMBERS.numericOrdinal(e):a.LOCALE.NUMBERS.wordOrdinal(e)},e.NESTING_DEPTH=null,e.nestingDepth=function(t){let n=0;const r=t.textContent,i="open"===t.getAttribute("role")?0:1;let o=t.parentNode;for(;o;)"fenced"===o.tagName&&o.childNodes[0].childNodes[i].textContent===r&&n++,o=o.parentNode;return e.NESTING_DEPTH=n>1?a.LOCALE.NUMBERS.wordOrdinal(n):"",e.NESTING_DEPTH},e.matchingFences=function(t){const e=t.previousSibling;let n,r;return e?(n=e,r=t):(n=t,r=t.nextSibling),r&&(0,u.isMatchingFence)(n.textContent,r.textContent)?[t]:[]},e.insertNesting=E,l.Grammar.getInstance().setCorrection("insertNesting",E),e.fencedArguments=function(t){const e=r.toArray(t.parentNode.childNodes),n=o.evalXPath("../../children/*",t),i=e.indexOf(t);return C(n[i])||C(n[i+1])?[t]:[]},e.simpleArguments=function(t){const e=r.toArray(t.parentNode.childNodes),n=o.evalXPath("../../children/*",t),i=e.indexOf(t);return A(n[i])&&n[i+1]&&(A(n[i+1])||"root"===n[i+1].tagName||"sqrt"===n[i+1].tagName||"superscript"===n[i+1].tagName&&n[i+1].childNodes[0].childNodes[0]&&("number"===n[i+1].childNodes[0].childNodes[0].tagName||"identifier"===n[i+1].childNodes[0].childNodes[0].tagName)&&("2"===n[i+1].childNodes[0].childNodes[1].textContent||"3"===n[i+1].childNodes[0].childNodes[1].textContent))?[t]:[]},e.simpleFactor_=A,e.fencedFactor_=C,e.layoutFactor_=V,e.wordOrdinal=function(t){return a.LOCALE.NUMBERS.wordOrdinal(parseInt(t.textContent,10))}},2741:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.loadAjax=e.loadFileSync=e.loadFile=e.parseMaps=e.retrieveFiles=e.standardLoader=e.loadLocale=e.store=void 0;const i=n(4698),o=n(3684),a=n(9686),s=n(3633),l=n(495),T=n(3113),Q=n(8844),c=n(5124),u=n(2420),d=n(7792);e.store=Q;const h={functions:Q.addFunctionRules,symbols:Q.addSymbolRules,units:Q.addUnitRules,si:Q.setSiPrefixes};let p=!1;function m(t=o.default.getInstance().locale){o.EnginePromise.loaded[t]||(o.EnginePromise.loaded[t]=[!1,!1],function(t){o.default.getInstance().isIE&&o.default.getInstance().mode===a.Mode.HTTP?b(t):y(t)}(t))}function f(){switch(o.default.getInstance().mode){case a.Mode.ASYNC:return v;case a.Mode.HTTP:return _;case a.Mode.SYNC:default:return x}}function y(t){const e=o.default.getInstance().customLoader?o.default.getInstance().customLoader:f(),n=new Promise((n=>{e(t).then((e=>{g(e),o.EnginePromise.loaded[t]=[!0,!0],n(t)}),(e=>{o.EnginePromise.loaded[t]=[!0,!1],console.error(`Unable to load locale: ${t}`),o.default.getInstance().locale=o.default.getInstance().defaultLocale,n(t)}))}));o.EnginePromise.promises[t]=n}function g(t){L(JSON.parse(t))}function L(t,e){let n=!0;for(let r,i=0;r=Object.keys(t)[i];i++){const i=r.split("/");e&&e!==i[0]||("rules"===i[1]?c.SpeechRuleEngine.getInstance().addStore(t[r]):"messages"===i[1]?(0,u.completeLocale)(t[r]):(n&&(d.generate(i[0]),n=!1),t[r].forEach(h[i[1]])))}}function b(t,e){let n=e||1;i.mapsForIE?L(i.mapsForIE,t):n<=5&&setTimeout((()=>b(t,n++)).bind(this),300)}function v(t){const e=s.localePath(t);return new Promise(((t,n)=>{l.default.fs.readFile(e,"utf8",((e,r)=>{if(e)return n(e);t(r)}))}))}function x(t){const e=s.localePath(t);return new Promise(((t,n)=>{let r="{}";try{r=l.default.fs.readFileSync(e,"utf8")}catch(t){return n(t)}t(r)}))}function _(t){const e=s.localePath(t),n=new XMLHttpRequest;return new Promise(((t,r)=>{n.onreadystatechange=function(){if(4===n.readyState){const e=n.status;0===e||e>=200&&e<400?t(n.responseText):r(e)}},n.open("GET",e,!0),n.send()}))}e.loadLocale=function(t=o.default.getInstance().locale){return r(this,void 0,void 0,(function*(){return p||(m(T.DynamicCstr.BASE_LOCALE),p=!0),o.EnginePromise.promises[T.DynamicCstr.BASE_LOCALE].then((()=>r(this,void 0,void 0,(function*(){const e=o.default.getInstance().defaultLocale;return e?(m(e),o.EnginePromise.promises[e].then((()=>r(this,void 0,void 0,(function*(){return m(t),o.EnginePromise.promises[t]}))))):(m(t),o.EnginePromise.promises[t])}))))}))},e.standardLoader=f,e.retrieveFiles=y,e.parseMaps=g,e.loadFile=v,e.loadFileSync=x,e.loadAjax=_},6223:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.leftSubscriptBrief=e.leftSuperscriptBrief=e.leftSubscriptVerbose=e.leftSuperscriptVerbose=e.baselineBrief=e.baselineVerbose=void 0;const r=n(1849);e.baselineVerbose=function(t){return r.baselineVerbose(t).replace(/-$/,"")},e.baselineBrief=function(t){return r.baselineBrief(t).replace(/-$/,"")},e.leftSuperscriptVerbose=function(t){return r.superscriptVerbose(t).replace(/^exposant/,"exposant gauche")},e.leftSubscriptVerbose=function(t){return r.subscriptVerbose(t).replace(/^indice/,"indice gauche")},e.leftSuperscriptBrief=function(t){return r.superscriptBrief(t).replace(/^sup/,"sup gauche")},e.leftSubscriptBrief=function(t){return r.subscriptBrief(t).replace(/^sub/,"sub gauche")}},4510:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MathspeakRules=void 0;const r=n(3113),i=n(8159),o=n(6223),a=n(1849),s=n(9035),l=n(3445),T=n(3672);e.MathspeakRules=function(){l.addStore(r.DynamicCstr.BASE_LOCALE+".speech.mathspeak","",{CQFspaceoutNumber:a.spaceoutNumber,CQFspaceoutIdentifier:a.spaceoutIdentifier,CSFspaceoutText:a.spaceoutText,CSFopenFracVerbose:a.openingFractionVerbose,CSFcloseFracVerbose:a.closingFractionVerbose,CSFoverFracVerbose:a.overFractionVerbose,CSFopenFracBrief:a.openingFractionBrief,CSFcloseFracBrief:a.closingFractionBrief,CSFopenFracSbrief:a.openingFractionSbrief,CSFcloseFracSbrief:a.closingFractionSbrief,CSFoverFracSbrief:a.overFractionSbrief,CSFvulgarFraction:s.vulgarFraction,CQFvulgarFractionSmall:a.isSmallVulgarFraction,CSFopenRadicalVerbose:a.openingRadicalVerbose,CSFcloseRadicalVerbose:a.closingRadicalVerbose,CSFindexRadicalVerbose:a.indexRadicalVerbose,CSFopenRadicalBrief:a.openingRadicalBrief,CSFcloseRadicalBrief:a.closingRadicalBrief,CSFindexRadicalBrief:a.indexRadicalBrief,CSFopenRadicalSbrief:a.openingRadicalSbrief,CSFindexRadicalSbrief:a.indexRadicalSbrief,CQFisSmallRoot:a.smallRoot,CSFsuperscriptVerbose:a.superscriptVerbose,CSFsuperscriptBrief:a.superscriptBrief,CSFsubscriptVerbose:a.subscriptVerbose,CSFsubscriptBrief:a.subscriptBrief,CSFbaselineVerbose:a.baselineVerbose,CSFbaselineBrief:a.baselineBrief,CSFleftsuperscriptVerbose:a.superscriptVerbose,CSFleftsubscriptVerbose:a.subscriptVerbose,CSFrightsuperscriptVerbose:a.superscriptVerbose,CSFrightsubscriptVerbose:a.subscriptVerbose,CSFleftsuperscriptBrief:a.superscriptBrief,CSFleftsubscriptBrief:a.subscriptBrief,CSFrightsuperscriptBrief:a.superscriptBrief,CSFrightsubscriptBrief:a.subscriptBrief,CSFunderscript:a.nestedUnderscript,CSFoverscript:a.nestedOverscript,CSFendscripts:a.endscripts,CTFordinalCounter:s.ordinalCounter,CTFwordCounter:s.wordCounter,CTFcontentIterator:i.contentIterator,CQFdetIsSimple:a.determinantIsSimple,CSFRemoveParens:a.removeParens,CQFresetNesting:a.resetNestingDepth,CGFbaselineConstraint:a.generateBaselineConstraint,CGFtensorRules:a.generateTensorRules}),l.addStore("es.speech.mathspeak",r.DynamicCstr.BASE_LOCALE+".speech.mathspeak",{CTFunitMultipliers:T.unitMultipliers,CQFoneLeft:T.oneLeft}),l.addStore("fr.speech.mathspeak",r.DynamicCstr.BASE_LOCALE+".speech.mathspeak",{CSFbaselineVerbose:o.baselineVerbose,CSFbaselineBrief:o.baselineBrief,CSFleftsuperscriptVerbose:o.leftSuperscriptVerbose,CSFleftsubscriptVerbose:o.leftSubscriptVerbose,CSFleftsuperscriptBrief:o.leftSuperscriptBrief,CSFleftsubscriptBrief:o.leftSubscriptBrief})}},1849:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.smallRoot=e.generateTensorRules=e.removeParens=e.generateBaselineConstraint=e.determinantIsSimple=e.nestedOverscript=e.endscripts=e.overscoreNestingDepth=e.nestedUnderscript=e.underscoreNestingDepth=e.indexRadicalSbrief=e.openingRadicalSbrief=e.indexRadicalBrief=e.closingRadicalBrief=e.openingRadicalBrief=e.indexRadicalVerbose=e.closingRadicalVerbose=e.openingRadicalVerbose=e.getRootIndex=e.nestedRadical=e.radicalNestingDepth=e.baselineBrief=e.baselineVerbose=e.superscriptBrief=e.superscriptVerbose=e.subscriptBrief=e.subscriptVerbose=e.nestedSubSuper=e.isSmallVulgarFraction=e.overFractionSbrief=e.closingFractionSbrief=e.openingFractionSbrief=e.closingFractionBrief=e.openingFractionBrief=e.overFractionVerbose=e.closingFractionVerbose=e.openingFractionVerbose=e.nestedFraction=e.fractionNestingDepth=e.computeNestingDepth_=e.containsAttr=e.getNestingDepth=e.resetNestingDepth=e.nestingBarriers=e.spaceoutIdentifier=e.spaceoutNumber=e.spaceoutNodes=e.spaceoutText=void 0;const r=n(4422),i=n(7041),o=n(1746),a=n(3826),s=n(3342);let l={};function T(t,e){const n=Array.from(t.textContent),r=[],i=s.default.getInstance(),o=t.ownerDocument;for(let t,a=0;t=n[a];a++){const n=i.getNodeFactory().makeLeafNode(t,"unknown"),a=i.identifierNode(n,"unknown","");e(a),r.push(a.xml(o))}return r}function Q(t,n,o,a,s,T){a=a||e.nestingBarriers,s=s||{},T=T||function(t){return!1};const Q=i.serializeXml(n);if(l[t]||(l[t]={}),l[t][Q])return l[t][Q];if(T(n)||o.indexOf(n.tagName)<0)return 0;const c=u(n,o,r.setdifference(a,o),s,T,0);return l[t][Q]=c,c}function c(t,e){if(!t.attributes)return!1;const n=i.toArray(t.attributes);for(let t,r=0;t=n[r];r++)if(e[t.nodeName]===t.nodeValue)return!0;return!1}function u(t,e,n,r,o,a){if(o(t)||n.indexOf(t.tagName)>-1||c(t,r))return a;if(e.indexOf(t.tagName)>-1&&a++,!t.childNodes||0===t.childNodes.length)return a;const s=i.toArray(t.childNodes);return Math.max.apply(null,s.map((function(t){return u(t,e,n,r,o,a)})))}function d(t){return Q("fraction",t,["fraction"],e.nestingBarriers,{},a.LOCALE.FUNCTIONS.fracNestDepth)}function h(t,e,n){const r=d(t),i=Array(r).fill(e);return n&&i.push(n),i.join(a.LOCALE.MESSAGES.regexp.JOINER_FRAC)}function p(t,e,n){for(;t.parentNode;){const r=t.parentNode,i=r.parentNode;if(!i)break;const o=t.getAttribute&&t.getAttribute("role");("subscript"===i.tagName&&t===r.childNodes[1]||"tensor"===i.tagName&&o&&("leftsub"===o||"rightsub"===o))&&(e=n.sub+a.LOCALE.MESSAGES.regexp.JOINER_SUBSUPER+e),("superscript"===i.tagName&&t===r.childNodes[1]||"tensor"===i.tagName&&o&&("leftsuper"===o||"rightsuper"===o))&&(e=n.sup+a.LOCALE.MESSAGES.regexp.JOINER_SUBSUPER+e),t=i}return e.trim()}function m(t){return Q("radical",t,["sqrt","root"],e.nestingBarriers,{})}function f(t,e,n){const r=m(t),i=y(t);return n=i?a.LOCALE.FUNCTIONS.combineRootIndex(n,i):n,1===r?n:a.LOCALE.FUNCTIONS.combineNestedRadical(e,a.LOCALE.FUNCTIONS.radicalNestDepth(r-1),n)}function y(t){const e="sqrt"===t.tagName?"2":o.evalXPath("children/*[1]",t)[0].textContent.trim();return a.LOCALE.MESSAGES.MSroots[e]||""}function g(t){return Q("underscore",t,["underscore"],e.nestingBarriers,{},(function(t){return t.tagName&&"underscore"===t.tagName&&"underaccent"===t.childNodes[0].childNodes[1].getAttribute("role")}))}function L(t){return Q("overscore",t,["overscore"],e.nestingBarriers,{},(function(t){return t.tagName&&"overscore"===t.tagName&&"overaccent"===t.childNodes[0].childNodes[1].getAttribute("role")}))}e.spaceoutText=function(t){return Array.from(t.textContent).join(" ")},e.spaceoutNodes=T,e.spaceoutNumber=function(t){return T(t,(function(t){t.textContent.match(/\W/)||(t.type="number")}))},e.spaceoutIdentifier=function(t){return T(t,(function(t){t.font="unknown",t.type="identifier"}))},e.nestingBarriers=["cases","cell","integral","line","matrix","multiline","overscore","root","row","sqrt","subscript","superscript","table","underscore","vector"],e.resetNestingDepth=function(t){return l={},[t]},e.getNestingDepth=Q,e.containsAttr=c,e.computeNestingDepth_=u,e.fractionNestingDepth=d,e.nestedFraction=h,e.openingFractionVerbose=function(t){return h(t,a.LOCALE.MESSAGES.MS.START,a.LOCALE.MESSAGES.MS.FRAC_V)},e.closingFractionVerbose=function(t){return h(t,a.LOCALE.MESSAGES.MS.END,a.LOCALE.MESSAGES.MS.FRAC_V)},e.overFractionVerbose=function(t){return h(t,a.LOCALE.MESSAGES.MS.FRAC_OVER)},e.openingFractionBrief=function(t){return h(t,a.LOCALE.MESSAGES.MS.START,a.LOCALE.MESSAGES.MS.FRAC_B)},e.closingFractionBrief=function(t){return h(t,a.LOCALE.MESSAGES.MS.END,a.LOCALE.MESSAGES.MS.FRAC_B)},e.openingFractionSbrief=function(t){const e=d(t);return 1===e?a.LOCALE.MESSAGES.MS.FRAC_S:a.LOCALE.FUNCTIONS.combineNestedFraction(a.LOCALE.MESSAGES.MS.NEST_FRAC,a.LOCALE.FUNCTIONS.radicalNestDepth(e-1),a.LOCALE.MESSAGES.MS.FRAC_S)},e.closingFractionSbrief=function(t){const e=d(t);return 1===e?a.LOCALE.MESSAGES.MS.ENDFRAC:a.LOCALE.FUNCTIONS.combineNestedFraction(a.LOCALE.MESSAGES.MS.NEST_FRAC,a.LOCALE.FUNCTIONS.radicalNestDepth(e-1),a.LOCALE.MESSAGES.MS.ENDFRAC)},e.overFractionSbrief=function(t){const e=d(t);return 1===e?a.LOCALE.MESSAGES.MS.FRAC_OVER:a.LOCALE.FUNCTIONS.combineNestedFraction(a.LOCALE.MESSAGES.MS.NEST_FRAC,a.LOCALE.FUNCTIONS.radicalNestDepth(e-1),a.LOCALE.MESSAGES.MS.FRAC_OVER)},e.isSmallVulgarFraction=function(t){return a.LOCALE.FUNCTIONS.fracNestDepth(t)?[t]:[]},e.nestedSubSuper=p,e.subscriptVerbose=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUBSCRIPT,{sup:a.LOCALE.MESSAGES.MS.SUPER,sub:a.LOCALE.MESSAGES.MS.SUB})},e.subscriptBrief=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUB,{sup:a.LOCALE.MESSAGES.MS.SUP,sub:a.LOCALE.MESSAGES.MS.SUB})},e.superscriptVerbose=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUPERSCRIPT,{sup:a.LOCALE.MESSAGES.MS.SUPER,sub:a.LOCALE.MESSAGES.MS.SUB})},e.superscriptBrief=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUP,{sup:a.LOCALE.MESSAGES.MS.SUP,sub:a.LOCALE.MESSAGES.MS.SUB})},e.baselineVerbose=function(t){const e=p(t,"",{sup:a.LOCALE.MESSAGES.MS.SUPER,sub:a.LOCALE.MESSAGES.MS.SUB});return e?e.replace(new RegExp(a.LOCALE.MESSAGES.MS.SUB+"$"),a.LOCALE.MESSAGES.MS.SUBSCRIPT).replace(new RegExp(a.LOCALE.MESSAGES.MS.SUPER+"$"),a.LOCALE.MESSAGES.MS.SUPERSCRIPT):a.LOCALE.MESSAGES.MS.BASELINE},e.baselineBrief=function(t){return p(t,"",{sup:a.LOCALE.MESSAGES.MS.SUP,sub:a.LOCALE.MESSAGES.MS.SUB})||a.LOCALE.MESSAGES.MS.BASE},e.radicalNestingDepth=m,e.nestedRadical=f,e.getRootIndex=y,e.openingRadicalVerbose=function(t){return f(t,a.LOCALE.MESSAGES.MS.NESTED,a.LOCALE.MESSAGES.MS.STARTROOT)},e.closingRadicalVerbose=function(t){return f(t,a.LOCALE.MESSAGES.MS.NESTED,a.LOCALE.MESSAGES.MS.ENDROOT)},e.indexRadicalVerbose=function(t){return f(t,a.LOCALE.MESSAGES.MS.NESTED,a.LOCALE.MESSAGES.MS.ROOTINDEX)},e.openingRadicalBrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.STARTROOT)},e.closingRadicalBrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.ENDROOT)},e.indexRadicalBrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.ROOTINDEX)},e.openingRadicalSbrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.ROOT)},e.indexRadicalSbrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.INDEX)},e.underscoreNestingDepth=g,e.nestedUnderscript=function(t){const e=g(t);return Array(e).join(a.LOCALE.MESSAGES.MS.UNDER)+a.LOCALE.MESSAGES.MS.UNDERSCRIPT},e.overscoreNestingDepth=L,e.endscripts=function(t){return a.LOCALE.MESSAGES.MS.ENDSCRIPTS},e.nestedOverscript=function(t){const e=L(t);return Array(e).join(a.LOCALE.MESSAGES.MS.OVER)+a.LOCALE.MESSAGES.MS.OVERSCRIPT},e.determinantIsSimple=function(t){if("matrix"!==t.tagName||"determinant"!==t.getAttribute("role"))return[];const e=o.evalXPath("children/row/children/cell/children/*",t);for(let t,n=0;t=e[n];n++)if("number"!==t.tagName){if("identifier"===t.tagName){const e=t.getAttribute("role");if("latinletter"===e||"greekletter"===e||"otherletter"===e)continue}return[]}return[t]},e.generateBaselineConstraint=function(){const t=t=>t.map((t=>"ancestor::"+t)),e=t=>"not("+t+")",n=e(t(["subscript","superscript","tensor"]).join(" or ")),r=t(["relseq","multrel"]),i=t(["fraction","punctuation","fenced","sqrt","root"]);let o=[];for(let t,e=0;t=i[e];e++)o=o.concat(r.map((function(e){return t+"/"+e})));return[["ancestor::*/following-sibling::*",n,e(o.join(" | "))].join(" and ")]},e.removeParens=function(t){if(!t.childNodes.length||!t.childNodes[0].childNodes.length||!t.childNodes[0].childNodes[0].childNodes.length)return"";const e=t.childNodes[0].childNodes[0].childNodes[0].textContent;return e.match(/^\(.+\)$/)?e.slice(1,-1):e};const b=new Map([[3,"CSFleftsuperscript"],[4,"CSFleftsubscript"],[2,"CSFbaseline"],[1,"CSFrightsubscript"],[0,"CSFrightsuperscript"]]),v=new Map([[4,2],[3,3],[2,1],[1,4],[0,5]]);function x(t){const e=[];let n="",r="",i=parseInt(t,2);for(let t=0;t<5;t++){const o="children/*["+v.get(t)+"]";if(1&i){const e=b.get(t%5);n="[t] "+e+"Verbose; [n] "+o+";"+n,r="[t] "+e+"Brief; [n] "+o+";"+r}else e.unshift("name("+o+')="empty"');i>>=1}return[e,n,r]}e.generateTensorRules=function(t,e=!0){const n=["11111","11110","11101","11100","10111","10110","10101","10100","01111","01110","01101","01100"];for(let r,i=0;r=n[i];i++){let n="tensor"+r,[i,o,a]=x(r);t.defineRule(n,"default",o,"self::tensor",...i),e&&(t.defineRule(n,"brief",a,"self::tensor",...i),t.defineRule(n,"sbrief",a,"self::tensor",...i));const s=b.get(2);o+="; [t]"+s+"Verbose",a+="; [t]"+s+"Brief",n+="-baseline";const l="((.//*[not(*)])[last()]/@id)!=(((.//ancestor::fraction|ancestor::root|ancestor::sqrt|ancestor::cell|ancestor::line|ancestor::stree)[1]//*[not(*)])[last()]/@id)";t.defineRule(n,"default",o,"self::tensor",l,...i),e&&(t.defineRule(n,"brief",a,"self::tensor",l,...i),t.defineRule(n,"sbrief",a,"self::tensor",l,...i))}},e.smallRoot=function(t){let e=Object.keys(a.LOCALE.MESSAGES.MSroots).length;if(!e)return[];if(e++,!t.childNodes||0===t.childNodes.length||!t.childNodes[0].childNodes)return[];const n=t.childNodes[0].childNodes[0].textContent;if(!/^\d+$/.test(n))return[];const r=parseInt(n,10);return r>1&&r<=e?[t]:[]}},3026:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.implicitIterator=e.relationIterator=e.propagateNumber=e.checkParent_=e.NUMBER_INHIBITORS_=e.NUMBER_PROPAGATORS_=e.enlargeFence=e.indexRadical=e.closingRadical=e.openingRadical=e.radicalNestingDepth=e.nestedRadical=e.hyperFractionBoundary=e.overBevelledFraction=e.overFraction=e.closingFraction=e.openingFraction=void 0;const r=n(2975),i=n(7041),o=n(1746),a=n(7534),s=n(3684),l=n(8770),T=n(5707),Q=n(3826),c=n(1849);function u(t,e){const n=d(t);return 1===n?e:new Array(n).join(Q.LOCALE.MESSAGES.MS.NESTED)+e}function d(t,e){const n=e||0;return t.parentNode?d(t.parentNode,"root"===t.tagName||"sqrt"===t.tagName?n+1:n):n}function h(t){const e="⠠";if(1===t.length)return e+t;const n=t.split("");return n.every((function(t){return"⠳"===t}))?e+n.join(e):t.slice(0,-1)+e+t.slice(-1)}function p(t,n){const r=t.parent;if(!r)return!1;const i=r.type;return-1!==e.NUMBER_PROPAGATORS_.indexOf(i)||"prefixop"===i&&"negative"===r.role&&!n.script||"prefixop"===i&&"geometry"===r.role||!("punctuated"!==i||n.enclosed&&"text"!==r.role)}function m(t,n){return t.childNodes.length?(-1!==e.NUMBER_INHIBITORS_.indexOf(t.type)&&(n.script=!0),"fenced"===t.type?(n.number=!1,n.enclosed=!0,["",n]):(p(t,n)&&(n.number=!0,n.enclosed=!1),["",n])):(p(t,n)&&(n.number=!0,n.script=!1,n.enclosed=!1),[n.number?"number":"",{number:!1,enclosed:n.enclosed,script:n.script}])}e.openingFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+Q.LOCALE.MESSAGES.MS.FRACTION_START},e.closingFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+Q.LOCALE.MESSAGES.MS.FRACTION_END},e.overFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+Q.LOCALE.MESSAGES.MS.FRACTION_OVER},e.overBevelledFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+"⠸"+Q.LOCALE.MESSAGES.MS.FRACTION_OVER},e.hyperFractionBoundary=function(t){return Q.LOCALE.MESSAGES.regexp.HYPER===c.fractionNestingDepth(t).toString()?[t]:[]},e.nestedRadical=u,e.radicalNestingDepth=d,e.openingRadical=function(t){return u(t,Q.LOCALE.MESSAGES.MS.STARTROOT)},e.closingRadical=function(t){return u(t,Q.LOCALE.MESSAGES.MS.ENDROOT)},e.indexRadical=function(t){return u(t,Q.LOCALE.MESSAGES.MS.ROOTINDEX)},e.enlargeFence=h,a.Grammar.getInstance().setCorrection("enlargeFence",h),e.NUMBER_PROPAGATORS_=["multirel","relseq","appl","row","line"],e.NUMBER_INHIBITORS_=["subscript","superscript","overscore","underscore"],e.checkParent_=p,e.propagateNumber=m,(0,l.register)(new T.SemanticVisitor("nemeth","number",m,{number:!0})),e.relationIterator=function(t,e){const n=t.slice(0);let a,l=!0;return a=t.length>0?o.evalXPath("../../content/*",t[0]):[],function(){const t=a.shift(),o=n.shift(),T=n[0],u=e?[r.AuditoryDescription.create({text:e},{translate:!0})]:[];if(!t)return u;const d=o?c.nestedSubSuper(o,"",{sup:Q.LOCALE.MESSAGES.MS.SUPER,sub:Q.LOCALE.MESSAGES.MS.SUB}):"",h=o&&"EMPTY"!==i.tagName(o)||l&&t.parentNode.parentNode&&t.parentNode.parentNode.previousSibling?[r.AuditoryDescription.create({text:Q.LOCALE.MESSAGES.regexp.SPACE+d},{})]:[],p=T&&"EMPTY"!==i.tagName(T)||!a.length&&t.parentNode.parentNode&&t.parentNode.parentNode.nextSibling?[r.AuditoryDescription.create({text:Q.LOCALE.MESSAGES.regexp.SPACE},{})]:[],m=s.default.evaluateNode(t);return l=!1,u.concat(h,m,p)}},e.implicitIterator=function(t,e){const n=t.slice(0);let a;return a=t.length>0?o.evalXPath("../../content/*",t[0]):[],function(){const t=n.shift(),o=n[0],s=a.shift(),l=e?[r.AuditoryDescription.create({text:e},{translate:!0})]:[];if(!s)return l;const T=t&&"NUMBER"===i.tagName(t),c=o&&"NUMBER"===i.tagName(o);return l.concat(T&&c&&"space"===s.getAttribute("role")?[r.AuditoryDescription.create({text:Q.LOCALE.MESSAGES.regexp.SPACE},{})]:[])}}},9035:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ordinalPosition=e.vulgarFraction=e.wordCounter=e.ordinalCounter=void 0;const r=n(4752),i=n(7041),o=n(3826),a=n(1404);e.ordinalCounter=function(t,e){let n=0;return function(){return o.LOCALE.NUMBERS.numericOrdinal(++n)+" "+e}},e.wordCounter=function(t,e){let n=0;return function(){return o.LOCALE.NUMBERS.numberToOrdinal(++n,!1)+" "+e}},e.vulgarFraction=function(t){const e=(0,a.convertVulgarFraction)(t,o.LOCALE.MESSAGES.MS.FRAC_OVER);return e.convertible&&e.enumerator&&e.denominator?[new r.Span(o.LOCALE.NUMBERS.numberToWords(e.enumerator),{extid:t.childNodes[0].childNodes[0].getAttribute("extid"),separator:""}),new r.Span(o.LOCALE.NUMBERS.vulgarSep,{separator:""}),new r.Span(o.LOCALE.NUMBERS.numberToOrdinal(e.denominator,1!==e.enumerator),{extid:t.childNodes[0].childNodes[1].getAttribute("extid")})]:[new r.Span(e.content||"",{extid:t.getAttribute("extid")})]},e.ordinalPosition=function(t){const e=i.toArray(t.parentNode.childNodes);return o.LOCALE.NUMBERS.numericOrdinal(e.indexOf(t)+1).toString()}},8998:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BrailleRules=e.OtherRules=e.PrefixRules=void 0;const r=n(3113),i=n(8159),o=n(1849),a=n(3026),s=n(9035),l=n(3445);e.PrefixRules=function(){l.addStore("en.prefix.default","",{CSFordinalPosition:s.ordinalPosition})},e.OtherRules=function(){l.addStore("en.speech.chromevox","",{CTFnodeCounter:i.nodeCounter,CTFcontentIterator:i.contentIterator}),l.addStore("en.speech.emacspeak","en.speech.chromevox",{CQFvulgarFractionSmall:o.isSmallVulgarFraction,CSFvulgarFraction:s.vulgarFraction})},e.BrailleRules=function(){l.addStore("nemeth.braille.default",r.DynamicCstr.BASE_LOCALE+".speech.mathspeak",{CSFopenFraction:a.openingFraction,CSFcloseFraction:a.closingFraction,CSFoverFraction:a.overFraction,CSFoverBevFraction:a.overBevelledFraction,CQFhyperFraction:a.hyperFractionBoundary,CSFopenRadical:a.openingRadical,CSFcloseRadical:a.closingRadical,CSFindexRadical:a.indexRadical,CSFsubscript:o.subscriptVerbose,CSFsuperscript:o.superscriptVerbose,CSFbaseline:o.baselineVerbose,CGFtensorRules:t=>o.generateTensorRules(t,!1),CTFrelationIterator:a.relationIterator,CTFimplicitIterator:a.implicitIterator})}},7044:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.init=e.INIT_=void 0;const r=n(3126),i=n(4510),o=n(8998);e.INIT_=!1,e.init=function(){e.INIT_||((0,i.MathspeakRules)(),(0,r.ClearspeakRules)(),(0,o.PrefixRules)(),(0,o.OtherRules)(),(0,o.BrailleRules)(),e.INIT_=!0)}},3445:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getStore=e.addStore=e.funcStore=void 0;const r=n(3113);e.funcStore=new Map,e.addStore=function(t,n,r){const i={};if(n){const t=e.funcStore.get(n)||{};Object.assign(i,t)}e.funcStore.set(t,Object.assign(i,r))},e.getStore=function(t,n,i){return e.funcStore.get([t,n,i].join("."))||e.funcStore.get([r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE],n,i].join("."))||e.funcStore.get([r.DynamicCstr.BASE_LOCALE,n,i].join("."))||{}}},3672:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.oneLeft=e.leftMostUnit=e.rightMostUnit=e.unitMultipliers=void 0;const r=n(2975),i=n(1746),o=n(3826);e.unitMultipliers=function(t,e){const n=t;let i=0;return function(){const t=r.AuditoryDescription.create({text:s(n[i])&&l(n[i+1])?o.LOCALE.MESSAGES.unitTimes:""},{});return i++,[t]}};const a=["superscript","subscript","overscore","underscore"];function s(t){for(;t;){if("unit"===t.getAttribute("role"))return!0;const e=t.tagName,n=i.evalXPath("children/*",t);t=-1!==a.indexOf(e)?n[0]:n[n.length-1]}return!1}function l(t){for(;t;){if("unit"===t.getAttribute("role"))return!0;t=i.evalXPath("children/*",t)[0]}return!1}e.rightMostUnit=s,e.leftMostUnit=l,e.oneLeft=function(t){for(;t;){if("number"===t.tagName&&"1"===t.textContent)return[t];if("infixop"!==t.tagName||"multiplication"!==t.getAttribute("role")&&"implicit"!==t.getAttribute("role"))return[];t=i.evalXPath("children/*",t)[0]}return[]}},2780:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractWalker=void 0;const r=n(2975),i=n(840),o=n(7041),a=n(9686),s=n(317),l=n(5390),T=n(7206),Q=n(3826),c=n(7534),u=n(5594),d=n(4493),h=n(2421),p=n(9050),m=n(712),f=n(154),y=n(9947),g=n(3294),L=n(1746);class b{constructor(t,e,n,r){this.node=t,this.generator=e,this.highlighter=n,this.modifier=!1,this.keyMapping=new Map([[l.KeyCode.UP,this.up.bind(this)],[l.KeyCode.DOWN,this.down.bind(this)],[l.KeyCode.RIGHT,this.right.bind(this)],[l.KeyCode.LEFT,this.left.bind(this)],[l.KeyCode.TAB,this.repeat.bind(this)],[l.KeyCode.DASH,this.expand.bind(this)],[l.KeyCode.SPACE,this.depth.bind(this)],[l.KeyCode.HOME,this.home.bind(this)],[l.KeyCode.X,this.summary.bind(this)],[l.KeyCode.Z,this.detail.bind(this)],[l.KeyCode.V,this.virtualize.bind(this)],[l.KeyCode.P,this.previous.bind(this)],[l.KeyCode.U,this.undo.bind(this)],[l.KeyCode.LESS,this.previousRules.bind(this)],[l.KeyCode.GREATER,this.nextRules.bind(this)]]),this.cursors=[],this.xml_=null,this.rebuilt_=null,this.focus_=null,this.active_=!1,this.node.id?this.id=this.node.id:this.node.hasAttribute(b.SRE_ID_ATTR)?this.id=this.node.getAttribute(b.SRE_ID_ATTR):(this.node.setAttribute(b.SRE_ID_ATTR,b.ID_COUNTER.toString()),this.id=b.ID_COUNTER++),this.rootNode=g.getSemanticRoot(t),this.rootId=this.rootNode.getAttribute(T.Attribute.ID),this.xmlString_=r,this.moved=y.WalkerMoves.ENTER}getXml(){return this.xml_||(this.xml_=o.parseInput(this.xmlString_)),this.xml_}getRebuilt(){return this.rebuilt_||this.rebuildStree(),this.rebuilt_}isActive(){return this.active_}activate(){this.isActive()||(this.generator.start(),this.toggleActive_())}deactivate(){this.isActive()&&(y.WalkerState.setState(this.id,this.primaryId()),this.generator.end(),this.toggleActive_())}getFocus(t=!1){return this.focus_||(this.focus_=this.singletonFocus(this.rootId)),t&&this.updateFocus(),this.focus_}setFocus(t){this.focus_=t}getDepth(){return this.levels.depth()-1}isSpeech(){return this.generator.modality===T.Attribute.SPEECH}focusDomNodes(){return this.getFocus().getDomNodes()}focusSemanticNodes(){return this.getFocus().getSemanticNodes()}speech(){const t=this.focusDomNodes();if(!t.length)return"";const e=this.specialMove();if(null!==e)return e;switch(this.moved){case y.WalkerMoves.DEPTH:return this.depth_();case y.WalkerMoves.SUMMARY:return this.summary_();case y.WalkerMoves.DETAIL:return this.detail_();default:{const e=[],n=this.focusSemanticNodes();for(let r=0,i=t.length;r<i;r++){const i=t[r],o=n[r];e.push(i?this.generator.getSpeech(i,this.getXml()):h.recomputeMarkup(o))}return this.mergePrefix_(e)}}}move(t){const e=this.keyMapping.get(t);if(!e)return null;const n=e();return!(!n||n===this.getFocus()||(this.setFocus(n),this.moved===y.WalkerMoves.HOME&&(this.levels=this.initLevels()),0))}up(){return this.moved=y.WalkerMoves.UP,this.getFocus()}down(){return this.moved=y.WalkerMoves.DOWN,this.getFocus()}left(){return this.moved=y.WalkerMoves.LEFT,this.getFocus()}right(){return this.moved=y.WalkerMoves.RIGHT,this.getFocus()}repeat(){return this.moved=y.WalkerMoves.REPEAT,this.getFocus().clone()}depth(){return this.moved=this.isSpeech()?y.WalkerMoves.DEPTH:y.WalkerMoves.REPEAT,this.getFocus().clone()}home(){return this.moved=y.WalkerMoves.HOME,this.singletonFocus(this.rootId)}getBySemanticId(t){return g.getBySemanticId(this.node,t)}primaryId(){return this.getFocus().getSemanticPrimary().id.toString()}expand(){const t=this.getFocus().getDomPrimary(),e=this.actionable_(t);return e?(this.moved=y.WalkerMoves.EXPAND,e.dispatchEvent(new Event("click")),this.getFocus().clone()):this.getFocus()}expandable(t){return!!this.actionable_(t)&&0===t.childNodes.length}collapsible(t){return!!this.actionable_(t)&&t.childNodes.length>0}restoreState(){if(!this.highlighter)return;const t=y.WalkerState.getState(this.id);if(!t)return;let e=this.getRebuilt().nodeDict[t];const n=[];for(;e;)n.push(e.id),e=e.parent;for(n.pop();n.length>0;){this.down();const t=n.pop(),e=this.findFocusOnLevel(t);if(!e)break;this.setFocus(e)}this.moved=y.WalkerMoves.ENTER}updateFocus(){this.setFocus(m.Focus.factory(this.getFocus().getSemanticPrimary().id.toString(),this.getFocus().getSemanticNodes().map((t=>t.id.toString())),this.getRebuilt(),this.node))}rebuildStree(){this.rebuilt_=new f.RebuildStree(this.getXml()),this.rootId=this.rebuilt_.stree.root.id.toString(),this.generator.setRebuilt(this.rebuilt_),this.skeleton=u.SemanticSkeleton.fromTree(this.rebuilt_.stree),this.skeleton.populate(),this.focus_=this.singletonFocus(this.rootId),this.levels=this.initLevels(),h.connectMactions(this.node,this.getXml(),this.rebuilt_.xml)}previousLevel(){const t=this.getFocus().getDomPrimary();return t?g.getAttribute(t,T.Attribute.PARENT):this.getFocus().getSemanticPrimary().parent.id.toString()}nextLevel(){const t=this.getFocus().getDomPrimary();let e,n;if(t){e=g.splitAttribute(g.getAttribute(t,T.Attribute.CHILDREN)),n=g.splitAttribute(g.getAttribute(t,T.Attribute.CONTENT));const r=g.getAttribute(t,T.Attribute.TYPE),i=g.getAttribute(t,T.Attribute.ROLE);return this.combineContentChildren(r,i,n,e)}const r=t=>t.id.toString(),i=this.getRebuilt().nodeDict[this.primaryId()];return e=i.childNodes.map(r),n=i.contentNodes.map(r),0===e.length?[]:this.combineContentChildren(i.type,i.role,n,e)}singletonFocus(t){this.getRebuilt();const e=this.retrieveVisuals(t);return this.focusFromId(t,e)}retrieveVisuals(t){if(!this.skeleton)return[t];const e=parseInt(t,10),n=this.skeleton.subtreeNodes(e);if(!n.length)return[t];n.unshift(e);const r={},i=[];L.updateEvaluator(this.getXml());for(const t of n)r[t]||(i.push(t.toString()),r[t]=!0,this.subtreeIds(t,r));return i}subtreeIds(t,e){const n=L.evalXPath(`//*[@data-semantic-id="${t}"]`,this.getXml());L.evalXPath("*//@data-semantic-id",n[0]).forEach((t=>e[parseInt(t.textContent,10)]=!0))}focusFromId(t,e){return m.Focus.factory(t,e,this.getRebuilt(),this.node)}summary(){return this.moved=this.isSpeech()?y.WalkerMoves.SUMMARY:y.WalkerMoves.REPEAT,this.getFocus().clone()}detail(){return this.moved=this.isSpeech()?y.WalkerMoves.DETAIL:y.WalkerMoves.REPEAT,this.getFocus().clone()}specialMove(){return null}virtualize(t){return this.cursors.push({focus:this.getFocus(),levels:this.levels,undo:t||!this.cursors.length}),this.levels=this.levels.clone(),this.getFocus().clone()}previous(){const t=this.cursors.pop();return t?(this.levels=t.levels,t.focus):this.getFocus()}undo(){let t;do{t=this.cursors.pop()}while(t&&!t.undo);return t?(this.levels=t.levels,t.focus):this.getFocus()}update(t){this.generator.setOptions(t),(0,s.setup)(t).then((()=>d.generator("Tree").getSpeech(this.node,this.getXml())))}nextRules(){const t=this.generator.getOptions();return"speech"!==t.modality?this.getFocus():(a.DOMAIN_TO_STYLES[t.domain]=t.style,t.domain="mathspeak"===t.domain?"clearspeak":"mathspeak",t.style=a.DOMAIN_TO_STYLES[t.domain],this.update(t),this.moved=y.WalkerMoves.REPEAT,this.getFocus().clone())}nextStyle(t,e){if("mathspeak"===t){const t=["default","brief","sbrief"],n=t.indexOf(e);return-1===n?e:n>=t.length-1?t[0]:t[n+1]}if("clearspeak"===t){const t=p.ClearspeakPreferences.getLocalePreferences().en;if(!t)return"default";const n=p.ClearspeakPreferences.relevantPreferences(this.getFocus().getSemanticPrimary()),r=p.ClearspeakPreferences.findPreference(e,n),i=t[n].map((function(t){return t.split("_")[1]})),o=i.indexOf(r);if(-1===o)return e;const a=o>=i.length-1?i[0]:i[o+1];return p.ClearspeakPreferences.addPreference(e,n,a)}return e}previousRules(){const t=this.generator.getOptions();return"speech"!==t.modality?this.getFocus():(t.style=this.nextStyle(t.domain,t.style),this.update(t),this.moved=y.WalkerMoves.REPEAT,this.getFocus().clone())}refocus(){let t,e=this.getFocus();for(;!e.getNodes().length;){t=this.levels.peek();const n=this.up();if(!n)break;this.setFocus(n),e=this.getFocus(!0)}this.levels.push(t),this.setFocus(e)}toggleActive_(){this.active_=!this.active_}mergePrefix_(t,e=[]){const n=this.isSpeech()?this.prefix_():"";n&&t.unshift(n);const r=this.isSpeech()?this.postfix_():"";return r&&t.push(r),i.finalize(i.merge(e.concat(t)))}prefix_(){const t=this.getFocus().getDomNodes(),e=this.getFocus().getSemanticNodes();return t[0]?g.getAttribute(t[0],T.Attribute.PREFIX):h.retrievePrefix(e[0])}postfix_(){const t=this.getFocus().getDomNodes();return t[0]?g.getAttribute(t[0],T.Attribute.POSTFIX):""}depth_(){const t=c.Grammar.getInstance().getParameter("depth");c.Grammar.getInstance().setParameter("depth",!0);const e=this.getFocus().getDomPrimary(),n=this.expandable(e)?Q.LOCALE.MESSAGES.navigate.EXPANDABLE:this.collapsible(e)?Q.LOCALE.MESSAGES.navigate.COLLAPSIBLE:"",o=Q.LOCALE.MESSAGES.navigate.LEVEL+" "+this.getDepth(),a=this.getFocus().getSemanticNodes(),s=h.retrievePrefix(a[0]),l=[new r.AuditoryDescription({text:o,personality:{}}),new r.AuditoryDescription({text:s,personality:{}}),new r.AuditoryDescription({text:n,personality:{}})];return c.Grammar.getInstance().setParameter("depth",t),i.finalize(i.markup(l))}actionable_(t){const e=null==t?void 0:t.parentNode;return e&&this.highlighter.isMactionNode(e)?e:null}summary_(){const t=this.getFocus().getSemanticPrimary().id.toString(),e=this.getRebuilt().xml.getAttribute("id")===t?this.getRebuilt().xml:o.querySelectorAllByAttrValue(this.getRebuilt().xml,"id",t)[0],n=h.retrieveSummary(e);return this.mergePrefix_([n])}detail_(){const t=this.getFocus().getSemanticPrimary().id.toString(),e=this.getRebuilt().xml.getAttribute("id")===t?this.getRebuilt().xml:o.querySelectorAllByAttrValue(this.getRebuilt().xml,"id",t)[0],n=e.getAttribute("alternative");e.removeAttribute("alternative");const r=h.computeMarkup(e),i=this.mergePrefix_([r]);return e.setAttribute("alternative",n),i}}e.AbstractWalker=b,b.ID_COUNTER=0,b.SRE_ID_ATTR="sre-explorer-id"},659:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DummyWalker=void 0;const r=n(2780);class i extends r.AbstractWalker{up(){return null}down(){return null}left(){return null}right(){return null}repeat(){return null}depth(){return null}home(){return null}getDepth(){return 0}initLevels(){return null}combineContentChildren(t,e,n,r){return[]}findFocusOnLevel(t){return null}}e.DummyWalker=i},712:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Focus=void 0;const r=n(3294);class i{constructor(t,e){this.nodes=t,this.primary=e,this.domNodes=[],this.domPrimary_=null,this.allNodes=[]}static factory(t,e,n,o){const a=t=>r.getBySemanticId(o,t),s=n.nodeDict,l=a(t),T=e.map(a),Q=e.map((function(t){return s[t]})),c=new i(Q,s[t]);return c.domNodes=T,c.domPrimary_=l,c.allNodes=i.generateAllVisibleNodes_(e,T,s,o),c}static generateAllVisibleNodes_(t,e,n,o){const a=t=>r.getBySemanticId(o,t);let s=[];for(let r=0,l=t.length;r<l;r++){if(e[r]){s.push(e[r]);continue}const l=n[t[r]];if(!l)continue;const T=l.childNodes.map((function(t){return t.id.toString()})),Q=T.map(a);s=s.concat(i.generateAllVisibleNodes_(T,Q,n,o))}return s}getSemanticPrimary(){return this.primary}getSemanticNodes(){return this.nodes}getNodes(){return this.allNodes}getDomNodes(){return this.domNodes}getDomPrimary(){return this.domPrimary_}toString(){return"Primary:"+this.domPrimary_+" Nodes:"+this.domNodes}clone(){const t=new i(this.nodes,this.primary);return t.domNodes=this.domNodes,t.domPrimary_=this.domPrimary_,t.allNodes=this.allNodes,t}}e.Focus=i},2604:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Levels=void 0;class n{constructor(){this.level_=[]}push(t){this.level_.push(t)}pop(){return this.level_.pop()}peek(){return this.level_[this.level_.length-1]||null}indexOf(t){const e=this.peek();return e?e.indexOf(t):null}find(t){const e=this.peek();if(!e)return null;for(let n=0,r=e.length;n<r;n++)if(t(e[n]))return e[n];return null}get(t){const e=this.peek();return!e||t<0||t>=e.length?null:e[t]}depth(){return this.level_.length}clone(){const t=new n;return t.level_=this.level_.slice(0),t}toString(){let t="";for(let e,n=0;e=this.level_[n];n++)t+="\n"+e.map((function(t){return t.toString()}));return t}}e.Levels=n},154:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.RebuildStree=void 0;const r=n(7206),i=n(218),o=n(5349),a=n(3342),s=n(5594),l=n(1250),T=n(3294);class Q{constructor(t){this.mathml=t,this.factory=new o.SemanticNodeFactory,this.nodeDict={},this.mmlRoot=T.getSemanticRoot(t),this.streeRoot=this.assembleTree(this.mmlRoot),this.stree=l.SemanticTree.fromNode(this.streeRoot,this.mathml),this.xml=this.stree.xml(),a.default.getInstance().setNodeFactory(this.factory)}static textContent(t,e,n){if(!n&&e.textContent)return void(t.textContent=e.textContent);const i=T.splitAttribute(T.getAttribute(e,r.Attribute.OPERATOR));i.length>1&&(t.textContent=i[1])}static isPunctuated(t){return!s.SemanticSkeleton.simpleCollapseStructure(t)&&t[1]&&s.SemanticSkeleton.contentCollapseStructure(t[1])}getTree(){return this.stree}assembleTree(t){const e=this.makeNode(t),n=T.splitAttribute(T.getAttribute(t,r.Attribute.CHILDREN)),i=T.splitAttribute(T.getAttribute(t,r.Attribute.CONTENT));if(0===i.length&&0===n.length)return Q.textContent(e,t),e;if(i.length>0){const t=T.getBySemanticId(this.mathml,i[0]);t&&Q.textContent(e,t,!0)}e.contentNodes=i.map((t=>this.setParent(t,e))),e.childNodes=n.map((t=>this.setParent(t,e)));const o=T.getAttribute(t,r.Attribute.COLLAPSED);return o?this.postProcess(e,o):e}makeNode(t){const e=T.getAttribute(t,r.Attribute.TYPE),n=T.getAttribute(t,r.Attribute.ROLE),i=T.getAttribute(t,r.Attribute.FONT),o=T.getAttribute(t,r.Attribute.ANNOTATION)||"",a=T.getAttribute(t,r.Attribute.ATTRIBUTES)||"",s=T.getAttribute(t,r.Attribute.ID),l=T.getAttribute(t,r.Attribute.EMBELLISHED),Q=T.getAttribute(t,r.Attribute.FENCEPOINTER),c=this.createNode(parseInt(s,10));return c.type=e,c.role=n,c.font=i||"unknown",c.parseAnnotation(o),c.parseAttributes(a),Q&&(c.fencePointer=Q),l&&(c.embellished=l),c}makePunctuation(t){const e=this.createNode(t);return e.updateContent((0,i.invisibleComma)()),e.role="dummy",e}makePunctuated(t,e,n){const r=this.createNode(e[0]);r.type="punctuated",r.embellished=t.embellished,r.fencePointer=t.fencePointer,r.role=n;const i=e.splice(1,1)[0].slice(1);r.contentNodes=i.map(this.makePunctuation.bind(this)),this.collapsedChildren_(e)}makeEmpty(t,e,n){const r=this.createNode(e);r.type="empty",r.embellished=t.embellished,r.fencePointer=t.fencePointer,r.role=n}makeIndex(t,e,n){if(Q.isPunctuated(e))return this.makePunctuated(t,e,n),void(e=e[0]);s.SemanticSkeleton.simpleCollapseStructure(e)&&!this.nodeDict[e.toString()]&&this.makeEmpty(t,e,n)}postProcess(t,e){const n=s.SemanticSkeleton.fromString(e).array;if("subsup"===t.type){const e=this.createNode(n[1][0]);return e.type="subscript",e.role="subsup",t.type="superscript",e.embellished=t.embellished,e.fencePointer=t.fencePointer,this.makeIndex(t,n[1][2],"rightsub"),this.makeIndex(t,n[2],"rightsuper"),this.collapsedChildren_(n),t}if("subscript"===t.type)return this.makeIndex(t,n[2],"rightsub"),this.collapsedChildren_(n),t;if("superscript"===t.type)return this.makeIndex(t,n[2],"rightsuper"),this.collapsedChildren_(n),t;if("tensor"===t.type)return this.makeIndex(t,n[2],"leftsub"),this.makeIndex(t,n[3],"leftsuper"),this.makeIndex(t,n[4],"rightsub"),this.makeIndex(t,n[5],"rightsuper"),this.collapsedChildren_(n),t;if("punctuated"===t.type){if(Q.isPunctuated(n)){const e=n.splice(1,1)[0].slice(1);t.contentNodes=e.map(this.makePunctuation.bind(this))}return t}if("underover"===t.type){const e=this.createNode(n[1][0]);return"overaccent"===t.childNodes[1].role?(e.type="overscore",t.type="underscore"):(e.type="underscore",t.type="overscore"),e.role="underover",e.embellished=t.embellished,e.fencePointer=t.fencePointer,this.collapsedChildren_(n),t}return t}createNode(t){const e=this.factory.makeNode(t);return this.nodeDict[t.toString()]=e,e}collapsedChildren_(t){const e=t=>{const n=this.nodeDict[t[0]];n.childNodes=[];for(let r=1,i=t.length;r<i;r++){const i=t[r];n.childNodes.push(s.SemanticSkeleton.simpleCollapseStructure(i)?this.nodeDict[i]:e(i))}return n};e(t)}setParent(t,e){const n=T.getBySemanticId(this.mathml,t),r=this.assembleTree(n);return r.parent=e,r}}e.RebuildStree=Q},5871:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticWalker=void 0;const r=n(2780),i=n(2604);class o extends r.AbstractWalker{constructor(t,e,n,r){super(t,e,n,r),this.node=t,this.generator=e,this.highlighter=n,this.levels=null,this.restoreState()}initLevels(){const t=new i.Levels;return t.push([this.getFocus()]),t}up(){super.up();const t=this.previousLevel();return t?(this.levels.pop(),this.levels.find((function(e){return e.getSemanticNodes().some((function(e){return e.id.toString()===t}))}))):null}down(){super.down();const t=this.nextLevel();return 0===t.length?null:(this.levels.push(t),t[0])}combineContentChildren(t,e,n,r){switch(t){case"relseq":case"infixop":case"multirel":return this.makePairList(r,n);case"prefixop":return[this.focusFromId(r[0],n.concat(r))];case"postfixop":return[this.focusFromId(r[0],r.concat(n))];case"matrix":case"vector":case"fenced":return[this.focusFromId(r[0],[n[0],r[0],n[1]])];case"cases":return[this.focusFromId(r[0],[n[0],r[0]])];case"punctuated":return"text"===e?r.map(this.singletonFocus.bind(this)):r.length===n.length?n.map(this.singletonFocus.bind(this)):this.combinePunctuations(r,n,[],[]);case"appl":return[this.focusFromId(r[0],[r[0],n[0]]),this.singletonFocus(r[1])];case"root":return[this.singletonFocus(r[1]),this.singletonFocus(r[0])];default:return r.map(this.singletonFocus.bind(this))}}combinePunctuations(t,e,n,r){if(0===t.length)return r;const i=t.shift(),o=e.shift();return i===o?(n.push(o),this.combinePunctuations(t,e,n,r)):(e.unshift(o),n.push(i),t.length===e.length?(r.push(this.focusFromId(i,n.concat(e))),r):(r.push(this.focusFromId(i,n)),this.combinePunctuations(t,e,[],r)))}makePairList(t,e){if(0===t.length)return[];if(1===t.length)return[this.singletonFocus(t[0])];const n=[this.singletonFocus(t.shift())];for(let r=0,i=t.length;r<i;r++)n.push(this.focusFromId(t[r],[e[r],t[r]]));return n}left(){super.left();const t=this.levels.indexOf(this.getFocus());return null===t?null:this.levels.get(t-1)||null}right(){super.right();const t=this.levels.indexOf(this.getFocus());return null===t?null:this.levels.get(t+1)||null}findFocusOnLevel(t){return this.levels.find((e=>e.getSemanticPrimary().id===t))}}e.SemanticWalker=o},5744:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SyntaxWalker=void 0;const r=n(4422),i=n(2780),o=n(2604);class a extends i.AbstractWalker{constructor(t,e,n,r){super(t,e,n,r),this.node=t,this.generator=e,this.highlighter=n,this.levels=null,this.restoreState()}initLevels(){const t=new o.Levels;return t.push([this.primaryId()]),t}up(){super.up();const t=this.previousLevel();return t?(this.levels.pop(),this.singletonFocus(t)):null}down(){super.down();const t=this.nextLevel();if(0===t.length)return null;const e=this.singletonFocus(t[0]);return e&&this.levels.push(t),e}combineContentChildren(t,e,n,i){switch(t){case"relseq":case"infixop":case"multirel":return(0,r.interleaveLists)(i,n);case"prefixop":return n.concat(i);case"postfixop":return i.concat(n);case"matrix":case"vector":case"fenced":return i.unshift(n[0]),i.push(n[1]),i;case"cases":return i.unshift(n[0]),i;case"punctuated":return"text"===e?(0,r.interleaveLists)(i,n):i;case"appl":return[i[0],n[0],i[1]];case"root":return[i[1],i[0]];default:return i}}left(){super.left();const t=this.levels.indexOf(this.primaryId());if(null===t)return null;const e=this.levels.get(t-1);return e?this.singletonFocus(e):null}right(){super.right();const t=this.levels.indexOf(this.primaryId());if(null===t)return null;const e=this.levels.get(t+1);return e?this.singletonFocus(e):null}findFocusOnLevel(t){return this.singletonFocus(t.toString())}focusDomNodes(){return[this.getFocus().getDomPrimary()]}focusSemanticNodes(){return[this.getFocus().getSemanticPrimary()]}}e.SyntaxWalker=a},1309:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TableWalker=void 0;const r=n(7041),i=n(5390),o=n(5744),a=n(9947);class s extends o.SyntaxWalker{constructor(t,e,n,r){super(t,e,n,r),this.node=t,this.generator=e,this.highlighter=n,this.firstJump=null,this.key_=null,this.row_=0,this.currentTable_=null,this.keyMapping.set(i.KeyCode.ZERO,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.ONE,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.TWO,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.THREE,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.FOUR,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.FIVE,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.SIX,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.SEVEN,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.EIGHT,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.NINE,this.jumpCell.bind(this))}move(t){this.key_=t;const e=super.move(t);return this.modifier=!1,e}up(){return this.moved=a.WalkerMoves.UP,this.eligibleCell_()?this.verticalMove_(!1):super.up()}down(){return this.moved=a.WalkerMoves.DOWN,this.eligibleCell_()?this.verticalMove_(!0):super.down()}jumpCell(){if(!this.isInTable_()||null===this.key_)return this.getFocus();if(this.moved===a.WalkerMoves.ROW){this.moved=a.WalkerMoves.CELL;const t=this.key_-i.KeyCode.ZERO;return this.isLegalJump_(this.row_,t)?this.jumpCell_(this.row_,t):this.getFocus()}const t=this.key_-i.KeyCode.ZERO;return t>this.currentTable_.childNodes.length?this.getFocus():(this.row_=t,this.moved=a.WalkerMoves.ROW,this.getFocus().clone())}undo(){const t=super.undo();return t===this.firstJump&&(this.firstJump=null),t}eligibleCell_(){const t=this.getFocus().getSemanticPrimary();return this.modifier&&"cell"===t.type&&-1!==s.ELIGIBLE_CELL_ROLES.indexOf(t.role)}verticalMove_(t){const e=this.previousLevel();if(!e)return null;const n=this.getFocus(),r=this.levels.indexOf(this.primaryId()),i=this.levels.pop(),o=this.levels.indexOf(e),a=this.levels.get(t?o+1:o-1);if(!a)return this.levels.push(i),null;this.setFocus(this.singletonFocus(a));const s=this.nextLevel();return s[r]?(this.levels.push(s),this.singletonFocus(s[r])):(this.setFocus(n),this.levels.push(i),null)}jumpCell_(t,e){this.firstJump?this.virtualize(!1):(this.firstJump=this.getFocus(),this.virtualize(!0));const n=this.currentTable_.id.toString();let r;do{r=this.levels.pop()}while(-1===r.indexOf(n));this.levels.push(r),this.setFocus(this.singletonFocus(n)),this.levels.push(this.nextLevel());const i=this.currentTable_.childNodes[t-1];return this.setFocus(this.singletonFocus(i.id.toString())),this.levels.push(this.nextLevel()),this.singletonFocus(i.childNodes[e-1].id.toString())}isLegalJump_(t,e){const n=r.querySelectorAllByAttrValue(this.getRebuilt().xml,"id",this.currentTable_.id.toString())[0];if(!n||n.hasAttribute("alternative"))return!1;const i=this.currentTable_.childNodes[t-1];if(!i)return!1;const o=r.querySelectorAllByAttrValue(n,"id",i.id.toString())[0];return!(!o||o.hasAttribute("alternative")||!i||!i.childNodes[e-1])}isInTable_(){let t=this.getFocus().getSemanticPrimary();for(;t;){if(-1!==s.ELIGIBLE_TABLE_TYPES.indexOf(t.type))return this.currentTable_=t,!0;t=t.parent}return!1}}e.TableWalker=s,s.ELIGIBLE_CELL_ROLES=["determinant","rowvector","binomial","squarematrix","multiline","matrix","vector","cases","table"],s.ELIGIBLE_TABLE_TYPES=["multiline","matrix","vector","cases","table"]},9947:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.WalkerState=e.WalkerMoves=void 0,function(t){t.UP="up",t.DOWN="down",t.LEFT="left",t.RIGHT="right",t.REPEAT="repeat",t.DEPTH="depth",t.ENTER="enter",t.EXPAND="expand",t.HOME="home",t.SUMMARY="summary",t.DETAIL="detail",t.ROW="row",t.CELL="cell"}(e.WalkerMoves||(e.WalkerMoves={}));class n{static resetState(t){delete n.STATE[t]}static setState(t,e){n.STATE[t]=e}static getState(t){return n.STATE[t]}}e.WalkerState=n,n.STATE={}},2338:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.walkerMapping_=e.walker=void 0;const r=n(659),i=n(5871),o=n(5744),a=n(1309);e.walker=function(t,n,r,i,o){return(e.walkerMapping_[t.toLowerCase()]||e.walkerMapping_.dummy)(n,r,i,o)},e.walkerMapping_={dummy:(t,e,n,i)=>new r.DummyWalker(t,e,n,i),semantic:(t,e,n,r)=>new i.SemanticWalker(t,e,n,r),syntax:(t,e,n,r)=>new o.SyntaxWalker(t,e,n,r),table:(t,e,n,r)=>new a.TableWalker(t,e,n,r)}},3294:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getBySemanticId=e.getSemanticRoot=e.getAttribute=e.splitAttribute=void 0;const r=n(7041),i=n(7206);e.splitAttribute=function(t){return t?t.split(/,/):[]},e.getAttribute=function(t,e){return t.getAttribute(e)},e.getSemanticRoot=function(t){if(t.hasAttribute(i.Attribute.TYPE)&&!t.hasAttribute(i.Attribute.PARENT))return t;const e=r.querySelectorAllByAttr(t,i.Attribute.TYPE);for(let t,n=0;t=e[n];n++)if(!t.hasAttribute(i.Attribute.PARENT))return t;return t},e.getBySemanticId=function(t,e){return t.getAttribute(i.Attribute.ID)===e?t:r.querySelectorAllByAttrValue(t,i.Attribute.ID,e)[0]}}},__webpack_module_cache__={};function __nested_webpack_require_335610__(t){var e=__webpack_module_cache__[t];if(void 0!==e)return e.exports;var n=__webpack_module_cache__[t]={exports:{}};return __webpack_modules__[t].call(n.exports,n,n.exports,__nested_webpack_require_335610__),n.exports}__nested_webpack_require_335610__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}();var __nested_webpack_exports__=__nested_webpack_require_335610__(8729);return __nested_webpack_exports__})(),module.exports=t()},7493:(t,e,n)=>{"use strict";e.M=void 0;var r=n(1635),i=n(5810),o=n(4666),a=n(8210),s=/^\$\$[\s\S]*\$\$$/,l=/^\\\[[\s\S]*\\\]$/,T=/^\\\([\s\S]*\\\)$/,Q=/^\$[\s\S]*\$$/,c=/^\\begin\{[^}]+\}[\s\S]*\\end\{[^}]+\}$/,u={accessibility:{assistive_mml:!0,include_speech:!1},outMath:{output_format:"svg",include_svg:!0},width:1200},d=function(t){var e;if(function(t){var e=Array.from(t.childNodes).filter((function(t){var e;return!(t.nodeType===Node.TEXT_NODE&&!(null!==(e=t.textContent)&&void 0!==e?e:"").trim())}));return 1===e.length&&e[0].nodeType===Node.ELEMENT_NODE&&"math"===e[0].tagName.toLowerCase()}(t)){var n=function(t){var e=t.querySelector("math"),n="block"===(null==e?void 0:e.getAttribute("display"))||t.classList.contains("math-block");return{mathml:e.outerHTML,display:n}}(t);return{kind:"mathml",mathml:n.mathml,display:n.display}}if(function(t){if(t.hasAttribute("data-mathpix-typeset"))return!0;var e=["mjx-container","mjx-container[jax]","mjx-assistive-mml","[data-mjx-container]",".mjx-container",".MathJax"].join(",");return null!==t.querySelector(e)}(t))return null;if(Array.from(t.childNodes).some((function(t){return t.nodeType===Node.ELEMENT_NODE&&"br"!==t.tagName.toLowerCase()})))return null;var r=function(t){var e=(null!=t?t:"").trim();return e?s.test(e)||l.test(e)?{tex:e.slice(2,-2).trim(),display:!0}:T.test(e)?{tex:e.slice(2,-2).trim(),display:!1}:!Q.test(e)||e.startsWith("$$")&&e.endsWith("$$")?c.test(e)?{tex:e,display:!0}:null:{tex:e.slice(1,-1).trim(),display:!1}:null}(null!==(e=t.textContent)&&void 0!==e?e:"");return r?{kind:"tex",tex:r.tex,display:r.display}:null};e.M=function(t,e){return r.__awaiter(void 0,void 0,void 0,(function(){var n,a,s,l,T,Q,c,h,p,m,f,y,g,L,b,v,x;return r.__generator(this,(function(_){switch(_.label){case 0:return n=r.__assign(r.__assign(r.__assign({},u),e),{accessibility:r.__assign(r.__assign({},u.accessibility),null==e?void 0:e.accessibility),outMath:r.__assign(r.__assign({},u.outMath),null==e?void 0:e.outMath)}),a=n.outMath,s=n.width&&n.width>0?n.width:1200,l=Array.from(t.querySelectorAll(".math-inline, .math-block")),[4,(O=n.accessibility,r.__awaiter(void 0,void 0,void 0,(function(){var t,e,n,i,a;return r.__generator(this,(function(r){switch(r.label){case 0:return t=function(t){var e=t&&"object"==typeof t?t:null;return e?{assistiveMml:!0===e.assistive_mml,includeSpeech:!0===e.include_speech}:{assistiveMml:!1,includeSpeech:!1}}(O),e=t.assistiveMml,n=t.includeSpeech,e||n?(i={},e&&(i.assistiveMml=!0),n?[4,(0,o.loadSreAsync)()]:[3,2]):[2,void 0];case 1:(a=r.sent())&&(i.sre=a),r.label=2;case 2:return[2,i]}}))})))];case 1:T=_.sent(),i.MathJax.beginRender(null==n?void 0:n.previewUuid),i.MathJax.Reset();try{for(Q=r.__values(l),c=Q.next();!c.done;c=Q.next())if(h=c.value,p=d(h))try{m={cwidth:s},f="mathml"===p.kind?i.MathJax.TypesetMathML(p.mathml,{display:p.display,metric:m,outMath:a,accessibility:T}):i.MathJax.Typeset(p.tex,{display:p.display,metric:m,outMath:a,accessibility:T}),H=h,w=f.html,H.innerHTML=w,(null==f?void 0:f.data)&&(y=h.classList.contains("math-inline"),g=h.classList.contains("math-block"),L=f.data.width,b=f.data.widthEx,g&&"full"===L&&h.setAttribute("data-width","full"),y&&"number"==typeof b&&b<2&&h.setAttribute("data-overflow","visible")),h.setAttribute("data-mathpix-typeset","true")}catch(t){console.error("[renderMathInElement] Failed to typeset node:",t,h)}}catch(t){v={error:t}}finally{try{c&&!c.done&&(x=Q.return)&&x.call(Q)}finally{if(v)throw v.error}}return[2]}var H,w,O}))}))};var h=function(){var t=window.MathpixRenderConfig||u;(0,e.M)(document.body,t).catch((function(t){console.error("[MathpixRender] autoRender failed:",t)}))};(0,a.isBrowser)()&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",h,{once:!0}):h(),window.MathpixRender={renderMathInElement:e.M})},8210:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isBrowser=void 0;e.isBrowser=function(){return"undefined"!=typeof window&&"undefined"!=typeof document}},9196:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.envArraysShouldBeFlattenInTSV=void 0,e.envArraysShouldBeFlattenInTSV=["array","gathered","aligned"]},9745:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.cssColors=void 0,e.cssColors=["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"]},5050:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.emojiIcons=void 0,e.emojiIcons=[{symbol:"💯",name:"100",width:"+0.6ex",textOnly:!1},{symbol:"🔢",name:"1234",width:"+0.6ex",textOnly:!1},{symbol:"😀",name:"grinning",width:"+0.6ex",textOnly:!1},{symbol:"😃",name:"smiley",width:"+0.6ex",textOnly:!1},{symbol:"😄",name:"smile",width:"+0.6ex",textOnly:!1},{symbol:"😁",name:"grin",width:"+0.6ex",textOnly:!1},{symbol:"😆",name:"laughing",width:"+0.6ex",textOnly:!1},{symbol:"😆",name:"satisfied",width:"+0.6ex",textOnly:!1},{symbol:"😅",name:"sweat_smile",width:"+0.6ex",textOnly:!1},{symbol:"😂",name:"joy",width:"+0.6ex",textOnly:!1},{symbol:"🤣",name:"rofl",width:"+0.6ex",textOnly:!1},{symbol:"☺️",name:"relaxed",width:"+0.6ex",textOnly:!1},{symbol:"😊",name:"blush",width:"+0.6ex",textOnly:!1},{symbol:"😇",name:"innocent",width:"+0.6ex",textOnly:!1},{symbol:"🙂",name:"slightly_smiling_face",width:"+0.6ex",textOnly:!1},{symbol:"🙃",name:"upside_down_face",width:"+0.6ex",textOnly:!1},{symbol:"😉",name:"wink",width:"+0.6ex",textOnly:!1},{symbol:"😌",name:"relieved",width:"+0.6ex",textOnly:!1},{symbol:"😍",name:"heart_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😘",name:"kissing_heart",width:"+0.6ex",textOnly:!1},{symbol:"😗",name:"kissing",width:"+0.6ex",textOnly:!1},{symbol:"😙",name:"kissing_smiling_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😚",name:"kissing_closed_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😋",name:"yum",width:"+0.6ex",textOnly:!1},{symbol:"😜",name:"stuck_out_tongue_winking_eye",width:"+0.6ex",textOnly:!1},{symbol:"😝",name:"stuck_out_tongue_closed_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😛",name:"stuck_out_tongue",width:"+0.6ex",textOnly:!1},{symbol:"🤑",name:"money_mouth_face",width:"+0.6ex",textOnly:!1},{symbol:"🤗",name:"hugs",width:"+0.6ex",textOnly:!1},{symbol:"🤓",name:"nerd_face",width:"+0.6ex",textOnly:!1},{symbol:"😎",name:"sunglasses",width:"+0.6ex",textOnly:!1},{symbol:"🤡",name:"clown_face",width:"+0.6ex",textOnly:!1},{symbol:"🤠",name:"cowboy_hat_face",width:"+0.6ex",textOnly:!1},{symbol:"😏",name:"smirk",width:"+0.6ex",textOnly:!1},{symbol:"😒",name:"unamused",width:"+0.6ex",textOnly:!1},{symbol:"😞",name:"disappointed",width:"+0.6ex",textOnly:!1},{symbol:"😔",name:"pensive",width:"+0.6ex",textOnly:!1},{symbol:"😟",name:"worried",width:"+0.6ex",textOnly:!1},{symbol:"😕",name:"confused",width:"+0.6ex",textOnly:!1},{symbol:"🙁",name:"slightly_frowning_face",width:"+0.6ex",textOnly:!1},{symbol:"☹️",name:"frowning_face",width:"+0.6ex",textOnly:!1},{symbol:"😣",name:"persevere",width:"+0.6ex",textOnly:!1},{symbol:"😖",name:"confounded",width:"+0.6ex",textOnly:!1},{symbol:"😫",name:"tired_face",width:"+0.6ex",textOnly:!1},{symbol:"😩",name:"weary",width:"+0.6ex",textOnly:!1},{symbol:"😤",name:"triumph",width:"+0.6ex",textOnly:!1},{symbol:"😠",name:"angry",width:"+0.6ex",textOnly:!1},{symbol:"😡",name:"rage",width:"+0.6ex",textOnly:!1},{symbol:"😡",name:"pout",width:"+0.6ex",textOnly:!1},{symbol:"😶",name:"no_mouth",width:"+0.6ex",textOnly:!1},{symbol:"😐",name:"neutral_face",width:"+0.6ex",textOnly:!1},{symbol:"😑",name:"expressionless",width:"+0.6ex",textOnly:!1},{symbol:"😯",name:"hushed",width:"+0.6ex",textOnly:!1},{symbol:"😦",name:"frowning",width:"+0.6ex",textOnly:!1},{symbol:"😧",name:"anguished",width:"+0.6ex",textOnly:!1},{symbol:"😮",name:"open_mouth",width:"+0.6ex",textOnly:!1},{symbol:"😲",name:"astonished",width:"+0.6ex",textOnly:!1},{symbol:"😵",name:"dizzy_face",width:"+0.6ex",textOnly:!1},{symbol:"😳",name:"flushed",width:"+0.6ex",textOnly:!1},{symbol:"😱",name:"scream",width:"+0.6ex",textOnly:!1},{symbol:"😨",name:"fearful",width:"+0.6ex",textOnly:!1},{symbol:"😰",name:"cold_sweat",width:"+0.6ex",textOnly:!1},{symbol:"😢",name:"cry",width:"+0.6ex",textOnly:!1},{symbol:"😥",name:"disappointed_relieved",width:"+0.6ex",textOnly:!1},{symbol:"🤤",name:"drooling_face",width:"+0.6ex",textOnly:!1},{symbol:"😭",name:"sob",width:"+0.6ex",textOnly:!1},{symbol:"😓",name:"sweat",width:"+0.6ex",textOnly:!1},{symbol:"😪",name:"sleepy",width:"+0.6ex",textOnly:!1},{symbol:"😴",name:"sleeping",width:"+0.6ex",textOnly:!1},{symbol:"🙄",name:"roll_eyes",width:"+0.6ex",textOnly:!1},{symbol:"🤔",name:"thinking",width:"+0.6ex",textOnly:!1},{symbol:"🤥",name:"lying_face",width:"+0.6ex",textOnly:!1},{symbol:"😬",name:"grimacing",width:"+0.6ex",textOnly:!1},{symbol:"🤐",name:"zipper_mouth_face",width:"+0.6ex",textOnly:!1},{symbol:"🤢",name:"nauseated_face",width:"+0.6ex",textOnly:!1},{symbol:"🤧",name:"sneezing_face",width:"+0.6ex",textOnly:!1},{symbol:"😷",name:"mask",width:"+0.6ex",textOnly:!1},{symbol:"🤒",name:"face_with_thermometer",width:"+0.6ex",textOnly:!1},{symbol:"🤕",name:"face_with_head_bandage",width:"+0.6ex",textOnly:!1},{symbol:"😈",name:"smiling_imp",width:"+0.6ex",textOnly:!1},{symbol:"👿",name:"imp",width:"+0.6ex",textOnly:!1},{symbol:"👹",name:"japanese_ogre",width:"+0.6ex",textOnly:!1},{symbol:"👺",name:"japanese_goblin",width:"+0.6ex",textOnly:!1},{symbol:"💩",name:"hankey",width:"+0.6ex",textOnly:!1},{symbol:"💩",name:"poop",width:"+0.6ex",textOnly:!1},{symbol:"💩",name:"shit",width:"+0.6ex",textOnly:!1},{symbol:"👻",name:"ghost",width:"+0.6ex",textOnly:!1},{symbol:"💀",name:"skull",width:"+0.6ex",textOnly:!1},{symbol:"☠️",name:"skull_and_crossbones",width:"+0.6ex",textOnly:!1},{symbol:"👽",name:"alien",width:"+0.6ex",textOnly:!1},{symbol:"👾",name:"space_invader",width:"+0.6ex",textOnly:!1},{symbol:"🤖",name:"robot",width:"+0.6ex",textOnly:!1},{symbol:"🎃",name:"jack_o_lantern",width:"+0.6ex",textOnly:!1},{symbol:"😺",name:"smiley_cat",width:"+0.6ex",textOnly:!1},{symbol:"😸",name:"smile_cat",width:"+0.6ex",textOnly:!1},{symbol:"😹",name:"joy_cat",width:"+0.6ex",textOnly:!1},{symbol:"😻",name:"heart_eyes_cat",width:"+0.6ex",textOnly:!1},{symbol:"😼",name:"smirk_cat",width:"+0.6ex",textOnly:!1},{symbol:"😽",name:"kissing_cat",width:"+0.6ex",textOnly:!1},{symbol:"🙀",name:"scream_cat",width:"+0.6ex",textOnly:!1},{symbol:"😿",name:"crying_cat_face",width:"+0.6ex",textOnly:!1},{symbol:"😾",name:"pouting_cat",width:"+0.6ex",textOnly:!1},{symbol:"👐",name:"open_hands",width:"+0.6ex",textOnly:!1},{symbol:"🙌",name:"raised_hands",width:"+0.6ex",textOnly:!1},{symbol:"👏",name:"clap",width:"+0.6ex",textOnly:!1},{symbol:"🙏",name:"pray",width:"+0.6ex",textOnly:!1},{symbol:"🤝",name:"handshake",width:"+0.6ex",textOnly:!1},{symbol:"👍",name:"+1",width:"+0.6ex",textOnly:!1},{symbol:"👍",name:"thumbsup",width:"+0.6ex",textOnly:!1},{symbol:"👎",name:"-1",width:"+0.6ex",textOnly:!1},{symbol:"👎",name:"thumbsdown",width:"+0.6ex",textOnly:!1},{symbol:"👊",name:"fist_oncoming",width:"+0.6ex",textOnly:!1},{symbol:"👊",name:"facepunch",width:"+0.6ex",textOnly:!1},{symbol:"👊",name:"punch",width:"+0.6ex",textOnly:!1},{symbol:"✊",name:"fist_raised",width:"+0.6ex",textOnly:!1},{symbol:"✊",name:"fist",width:"+0.6ex",textOnly:!1},{symbol:"🤛",name:"fist_left",width:"+0.6ex",textOnly:!1},{symbol:"🤜",name:"fist_right",width:"+0.6ex",textOnly:!1},{symbol:"🤞",name:"crossed_fingers",width:"+0.6ex",textOnly:!1},{symbol:"✌️",name:"v",width:"+0.6ex",textOnly:!1},{symbol:"🤘",name:"metal",width:"+0.6ex",textOnly:!1},{symbol:"👌",name:"ok_hand",width:"+0.6ex",textOnly:!1},{symbol:"👈",name:"point_left",width:"+0.6ex",textOnly:!1},{symbol:"👉",name:"point_right",width:"+0.6ex",textOnly:!1},{symbol:"👆",name:"point_up_2",width:"+0.6ex",textOnly:!1},{symbol:"👇",name:"point_down",width:"+0.6ex",textOnly:!1},{symbol:"☝️",name:"point_up",width:"+0.6ex",textOnly:!1},{symbol:"✋",name:"hand",width:"+0.6ex",textOnly:!1},{symbol:"✋",name:"raised_hand",width:"+0.6ex",textOnly:!1},{symbol:"🤚",name:"raised_back_of_hand",width:"+0.6ex",textOnly:!1},{symbol:"🖐",name:"raised_hand_with_fingers_splayed",width:"+0.6ex",textOnly:!1},{symbol:"🖖",name:"vulcan_salute",width:"+0.6ex",textOnly:!1},{symbol:"👋",name:"wave",width:"+0.6ex",textOnly:!1},{symbol:"🤙",name:"call_me_hand",width:"+0.6ex",textOnly:!1},{symbol:"💪",name:"muscle",width:"+0.6ex",textOnly:!1},{symbol:"🖕",name:"middle_finger",width:"+0.6ex",textOnly:!1},{symbol:"🖕",name:"fu",width:"+0.6ex",textOnly:!1},{symbol:"✍️",name:"writing_hand",width:"+0.6ex",textOnly:!1},{symbol:"🤳",name:"selfie",width:"+0.6ex",textOnly:!1},{symbol:"💅",name:"nail_care",width:"+0.6ex",textOnly:!1},{symbol:"💍",name:"ring",width:"+0.6ex",textOnly:!1},{symbol:"💄",name:"lipstick",width:"+0.6ex",textOnly:!1},{symbol:"💋",name:"kiss",width:"+0.6ex",textOnly:!1},{symbol:"👄",name:"lips",width:"+0.6ex",textOnly:!1},{symbol:"👅",name:"tongue",width:"+0.6ex",textOnly:!1},{symbol:"👂",name:"ear",width:"+0.6ex",textOnly:!1},{symbol:"👃",name:"nose",width:"+0.6ex",textOnly:!1},{symbol:"👣",name:"footprints",width:"+0.6ex",textOnly:!1},{symbol:"👁",name:"eye",width:"+0.6ex",textOnly:!1},{symbol:"👀",name:"eyes",width:"+0.6ex",textOnly:!1},{symbol:"🗣",name:"speaking_head",width:"+0.6ex",textOnly:!1},{symbol:"👤",name:"bust_in_silhouette",width:"+0.6ex",textOnly:!1},{symbol:"👥",name:"busts_in_silhouette",width:"+0.6ex",textOnly:!1},{symbol:"👶",name:"baby",width:"+0.6ex",textOnly:!1},{symbol:"👦",name:"boy",width:"+0.6ex",textOnly:!1},{symbol:"👧",name:"girl",width:"+0.6ex",textOnly:!1},{symbol:"👨",name:"man",width:"+0.6ex",textOnly:!1},{symbol:"👩",name:"woman",width:"+0.6ex",textOnly:!1},{symbol:"👱‍♀",name:"blonde_woman",width:"+0.6ex",textOnly:!0},{symbol:"👱",name:"blonde_man",width:"+0.6ex",textOnly:!1},{symbol:"👱",name:"person_with_blond_hair",width:"+0.6ex",textOnly:!1},{symbol:"👴",name:"older_man",width:"+0.6ex",textOnly:!1},{symbol:"👵",name:"older_woman",width:"+0.6ex",textOnly:!1},{symbol:"👲",name:"man_with_gua_pi_mao",width:"+0.6ex",textOnly:!1},{symbol:"👳‍♀",name:"woman_with_turban",width:"+0.6ex",textOnly:!0},{symbol:"👳",name:"man_with_turban",width:"+0.6ex",textOnly:!1},{symbol:"👮‍♀",name:"policewoman",width:"+0.6ex",textOnly:!0},{symbol:"👮",name:"policeman",width:"+0.6ex",textOnly:!1},{symbol:"👮",name:"cop",width:"+0.6ex",textOnly:!1},{symbol:"👷‍♀",name:"construction_worker_woman",width:"+0.6ex",textOnly:!0},{symbol:"👷",name:"construction_worker_man",width:"+0.6ex",textOnly:!1},{symbol:"👷",name:"construction_worker",width:"+0.6ex",textOnly:!1},{symbol:"💂‍♀",name:"guardswoman",width:"+0.6ex",textOnly:!0},{symbol:"💂",name:"guardsman",width:"+0.6ex",textOnly:!1},{symbol:"🕵️‍♀️",name:"female_detective",width:"+0.6ex",textOnly:!0},{symbol:"🕵",name:"male_detective",width:"+0.6ex",textOnly:!1},{symbol:"🕵",name:"detective",width:"+0.6ex",textOnly:!1},{symbol:"👩‍⚕",name:"woman_health_worker",width:"+0.6ex",textOnly:!0},{symbol:"👨‍⚕",name:"man_health_worker",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🌾",name:"woman_farmer",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🌾",name:"man_farmer",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🍳",name:"woman_cook",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🍳",name:"man_cook",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🎓",name:"woman_student",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🎓",name:"man_student",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🎤",name:"woman_singer",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🎤",name:"man_singer",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🏫",name:"woman_teacher",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🏫",name:"man_teacher",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🏭",name:"woman_factory_worker",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🏭",name:"man_factory_worker",width:"+0.6ex",textOnly:!0},{symbol:"👩‍💻",name:"woman_technologist",width:"+0.6ex",textOnly:!0},{symbol:"👨‍💻",name:"man_technologist",width:"+0.6ex",textOnly:!0},{symbol:"👩‍💼",name:"woman_office_worker",width:"+0.6ex",textOnly:!0},{symbol:"👨‍💼",name:"man_office_worker",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🔧",name:"woman_mechanic",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🔧",name:"man_mechanic",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🔬",name:"woman_scientist",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🔬",name:"man_scientist",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🎨",name:"woman_artist",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🎨",name:"man_artist",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🚒",name:"woman_firefighter",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🚒",name:"man_firefighter",width:"+0.6ex",textOnly:!0},{symbol:"👩‍✈",name:"woman_pilot",width:"+0.6ex",textOnly:!0},{symbol:"👨‍✈",name:"man_pilot",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🚀",name:"woman_astronaut",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🚀",name:"man_astronaut",width:"+0.6ex",textOnly:!0},{symbol:"👩‍⚖",name:"woman_judge",width:"+0.6ex",textOnly:!0},{symbol:"👨‍⚖",name:"man_judge",width:"+0.6ex",textOnly:!0},{symbol:"🤶",name:"mrs_claus",width:"+0.6ex",textOnly:!1},{symbol:"🎅",name:"santa",width:"+0.6ex",textOnly:!1},{symbol:"👸",name:"princess",width:"+0.6ex",textOnly:!1},{symbol:"🤴",name:"prince",width:"+0.6ex",textOnly:!1},{symbol:"👰",name:"bride_with_veil",width:"+0.6ex",textOnly:!1},{symbol:"🤵",name:"man_in_tuxedo",width:"+0.6ex",textOnly:!1},{symbol:"👼",name:"angel",width:"+0.6ex",textOnly:!1},{symbol:"🤰",name:"pregnant_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙇‍♀",name:"bowing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🙇",name:"bowing_man",width:"+0.6ex",textOnly:!1},{symbol:"🙇",name:"bow",width:"+0.6ex",textOnly:!1},{symbol:"💁",name:"tipping_hand_woman",width:"+0.6ex",textOnly:!1},{symbol:"💁",name:"information_desk_person",width:"+0.6ex",textOnly:!1},{symbol:"💁",name:"sassy_woman",width:"+0.6ex",textOnly:!1},{symbol:"💁‍♂",name:"tipping_hand_man",width:"+0.6ex",textOnly:!0},{symbol:"💁‍♂",name:"sassy_man",width:"+0.6ex",textOnly:!0},{symbol:"🙅",name:"no_good_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙅",name:"no_good",width:"+0.6ex",textOnly:!1},{symbol:"🙅",name:"ng_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙅‍♂",name:"no_good_man",width:"+0.6ex",textOnly:!0},{symbol:"🙅‍♂",name:"ng_man",width:"+0.6ex",textOnly:!0},{symbol:"🙆",name:"ok_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙆‍♂",name:"ok_man",width:"+0.6ex",textOnly:!0},{symbol:"🙋",name:"raising_hand_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙋",name:"raising_hand",width:"+0.6ex",textOnly:!1},{symbol:"🙋‍♂",name:"raising_hand_man",width:"+0.6ex",textOnly:!0},{symbol:"🤦‍♀",name:"woman_facepalming",width:"+0.6ex",textOnly:!0},{symbol:"🤦‍♂",name:"man_facepalming",width:"+0.6ex",textOnly:!0},{symbol:"🤷‍♀",name:"woman_shrugging",width:"+0.6ex",textOnly:!0},{symbol:"🤷‍♂",name:"man_shrugging",width:"+0.6ex",textOnly:!0},{symbol:"🙎",name:"pouting_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙎",name:"person_with_pouting_face",width:"+0.6ex",textOnly:!1},{symbol:"🙎‍♂",name:"pouting_man",width:"+0.6ex",textOnly:!0},{symbol:"🙍",name:"frowning_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙍",name:"person_frowning",width:"+0.6ex",textOnly:!1},{symbol:"🙍‍♂",name:"frowning_man",width:"+0.6ex",textOnly:!0},{symbol:"💇",name:"haircut_woman",width:"+0.6ex",textOnly:!1},{symbol:"💇",name:"haircut",width:"+0.6ex",textOnly:!1},{symbol:"💇‍♂",name:"haircut_man",width:"+0.6ex",textOnly:!0},{symbol:"💆",name:"massage_woman",width:"+0.6ex",textOnly:!1},{symbol:"💆",name:"massage",width:"+0.6ex",textOnly:!1},{symbol:"💆‍♂",name:"massage_man",width:"+0.6ex",textOnly:!0},{symbol:"🕴",name:"business_suit_levitating",width:"+0.6ex",textOnly:!1},{symbol:"💃",name:"dancer",width:"+0.6ex",textOnly:!1},{symbol:"🕺",name:"man_dancing",width:"+0.6ex",textOnly:!1},{symbol:"👯",name:"dancing_women",width:"+0.6ex",textOnly:!1},{symbol:"👯",name:"dancers",width:"+0.6ex",textOnly:!1},{symbol:"👯‍♂",name:"dancing_men",width:"+0.6ex",textOnly:!0},{symbol:"🚶‍♀",name:"walking_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚶",name:"walking_man",width:"+0.6ex",textOnly:!1},{symbol:"🚶",name:"walking",width:"+0.6ex",textOnly:!1},{symbol:"🏃‍♀",name:"running_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏃",name:"running_man",width:"+0.6ex",textOnly:!1},{symbol:"🏃",name:"runner",width:"+0.6ex",textOnly:!1},{symbol:"🏃",name:"running",width:"+0.6ex",textOnly:!1},{symbol:"👫",name:"couple",width:"+0.6ex",textOnly:!1},{symbol:"👭",name:"two_women_holding_hands",width:"+0.6ex",textOnly:!1},{symbol:"👬",name:"two_men_holding_hands",width:"+0.6ex",textOnly:!1},{symbol:"💑",name:"couple_with_heart_woman_man",width:"+0.6ex",textOnly:!1},{symbol:"💑",name:"couple_with_heart",width:"+0.6ex",textOnly:!1},{symbol:"👩‍❤️‍👩",name:"couple_with_heart_woman_woman",width:"+0.6ex",textOnly:!0},{symbol:"👨‍❤️‍👨",name:"couple_with_heart_man_man",width:"+0.6ex",textOnly:!0},{symbol:"💏",name:"couplekiss_man_woman",width:"+0.6ex",textOnly:!1},{symbol:"👩‍❤️‍💋‍👩",name:"couplekiss_woman_woman",width:"+0.6ex",textOnly:!0},{symbol:"👨‍❤️‍💋‍👨",name:"couplekiss_man_man",width:"+0.6ex",textOnly:!0},{symbol:"👪",name:"family_man_woman_boy",width:"+0.6ex",textOnly:!1},{symbol:"👪",name:"family",width:"+0.6ex",textOnly:!1},{symbol:"👨‍👩‍👧",name:"family_man_woman_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👩‍👧‍👦",name:"family_man_woman_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👩‍👦‍👦",name:"family_man_woman_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👩‍👧‍👧",name:"family_man_woman_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👦",name:"family_woman_woman_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👧",name:"family_woman_woman_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👧‍👦",name:"family_woman_woman_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👦‍👦",name:"family_woman_woman_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👧‍👧",name:"family_woman_woman_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👦",name:"family_man_man_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👧",name:"family_man_man_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👧‍👦",name:"family_man_man_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👦‍👦",name:"family_man_man_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👧‍👧",name:"family_man_man_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👦",name:"family_woman_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👧",name:"family_woman_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👧‍👦",name:"family_woman_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👦‍👦",name:"family_woman_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👧‍👧",name:"family_woman_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👦",name:"family_man_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👧",name:"family_man_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👧‍👦",name:"family_man_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👦‍👦",name:"family_man_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👧‍👧",name:"family_man_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👚",name:"womans_clothes",width:"+0.6ex",textOnly:!1},{symbol:"👕",name:"shirt",width:"+0.6ex",textOnly:!1},{symbol:"👕",name:"tshirt",width:"+0.6ex",textOnly:!1},{symbol:"👖",name:"jeans",width:"+0.6ex",textOnly:!1},{symbol:"👔",name:"necktie",width:"+0.6ex",textOnly:!1},{symbol:"👗",name:"dress",width:"+0.6ex",textOnly:!1},{symbol:"👙",name:"bikini",width:"+0.6ex",textOnly:!1},{symbol:"👘",name:"kimono",width:"+0.6ex",textOnly:!1},{symbol:"👠",name:"high_heel",width:"+0.6ex",textOnly:!1},{symbol:"👡",name:"sandal",width:"+0.6ex",textOnly:!1},{symbol:"👢",name:"boot",width:"+0.6ex",textOnly:!1},{symbol:"👞",name:"mans_shoe",width:"+0.6ex",textOnly:!1},{symbol:"👞",name:"shoe",width:"+0.6ex",textOnly:!1},{symbol:"👟",name:"athletic_shoe",width:"+0.6ex",textOnly:!1},{symbol:"👒",name:"womans_hat",width:"+0.6ex",textOnly:!1},{symbol:"🎩",name:"tophat",width:"+0.6ex",textOnly:!1},{symbol:"🎓",name:"mortar_board",width:"+0.6ex",textOnly:!1},{symbol:"👑",name:"crown",width:"+0.6ex",textOnly:!1},{symbol:"⛑",name:"rescue_worker_helmet",width:"+0.6ex",textOnly:!1},{symbol:"🎒",name:"school_satchel",width:"+0.6ex",textOnly:!1},{symbol:"👝",name:"pouch",width:"+0.6ex",textOnly:!1},{symbol:"👛",name:"purse",width:"+0.6ex",textOnly:!1},{symbol:"👜",name:"handbag",width:"+0.6ex",textOnly:!1},{symbol:"💼",name:"briefcase",width:"+0.6ex",textOnly:!1},{symbol:"👓",name:"eyeglasses",width:"+0.6ex",textOnly:!1},{symbol:"🕶",name:"dark_sunglasses",width:"+0.6ex",textOnly:!1},{symbol:"🌂",name:"closed_umbrella",width:"+0.6ex",textOnly:!1},{symbol:"☂️",name:"open_umbrella",width:"+0.6ex",textOnly:!1},{symbol:"🐶",name:"dog",width:"+0.6ex",textOnly:!1},{symbol:"🐱",name:"cat",width:"+0.6ex",textOnly:!1},{symbol:"🐭",name:"mouse",width:"+0.6ex",textOnly:!1},{symbol:"🐹",name:"hamster",width:"+0.6ex",textOnly:!1},{symbol:"🐰",name:"rabbit",width:"+0.6ex",textOnly:!1},{symbol:"🦊",name:"fox_face",width:"+0.6ex",textOnly:!1},{symbol:"🐻",name:"bear",width:"+0.6ex",textOnly:!1},{symbol:"🐼",name:"panda_face",width:"+0.6ex",textOnly:!1},{symbol:"🐨",name:"koala",width:"+0.6ex",textOnly:!1},{symbol:"🐯",name:"tiger",width:"+0.6ex",textOnly:!1},{symbol:"🦁",name:"lion",width:"+0.6ex",textOnly:!1},{symbol:"🐮",name:"cow",width:"+0.6ex",textOnly:!1},{symbol:"🐷",name:"pig",width:"+0.6ex",textOnly:!1},{symbol:"🐽",name:"pig_nose",width:"+0.6ex",textOnly:!1},{symbol:"🐸",name:"frog",width:"+0.6ex",textOnly:!1},{symbol:"🐵",name:"monkey_face",width:"+0.6ex",textOnly:!1},{symbol:"🙈",name:"see_no_evil",width:"+0.6ex",textOnly:!1},{symbol:"🙉",name:"hear_no_evil",width:"+0.6ex",textOnly:!1},{symbol:"🙊",name:"speak_no_evil",width:"+0.6ex",textOnly:!1},{symbol:"🐒",name:"monkey",width:"+0.6ex",textOnly:!1},{symbol:"🐔",name:"chicken",width:"+0.6ex",textOnly:!1},{symbol:"🐧",name:"penguin",width:"+0.6ex",textOnly:!1},{symbol:"🐦",name:"bird",width:"+0.6ex",textOnly:!1},{symbol:"🐤",name:"baby_chick",width:"+0.6ex",textOnly:!1},{symbol:"🐣",name:"hatching_chick",width:"+0.6ex",textOnly:!1},{symbol:"🐥",name:"hatched_chick",width:"+0.6ex",textOnly:!1},{symbol:"🦆",name:"duck",width:"+0.6ex",textOnly:!1},{symbol:"🦅",name:"eagle",width:"+0.6ex",textOnly:!1},{symbol:"🦉",name:"owl",width:"+0.6ex",textOnly:!1},{symbol:"🦇",name:"bat",width:"+0.6ex",textOnly:!1},{symbol:"🐺",name:"wolf",width:"+0.6ex",textOnly:!1},{symbol:"🐗",name:"boar",width:"+0.6ex",textOnly:!1},{symbol:"🐴",name:"horse",width:"+0.6ex",textOnly:!1},{symbol:"🦄",name:"unicorn",width:"+0.6ex",textOnly:!1},{symbol:"🐝",name:"bee",width:"+0.6ex",textOnly:!1},{symbol:"🐝",name:"honeybee",width:"+0.6ex",textOnly:!1},{symbol:"🐛",name:"bug",width:"+0.6ex",textOnly:!1},{symbol:"🦋",name:"butterfly",width:"+0.6ex",textOnly:!1},{symbol:"🐌",name:"snail",width:"+0.6ex",textOnly:!1},{symbol:"🐚",name:"shell",width:"+0.6ex",textOnly:!1},{symbol:"🐞",name:"beetle",width:"+0.6ex",textOnly:!1},{symbol:"🐜",name:"ant",width:"+0.6ex",textOnly:!1},{symbol:"🕷",name:"spider",width:"+0.6ex",textOnly:!1},{symbol:"🕸",name:"spider_web",width:"+0.6ex",textOnly:!1},{symbol:"🐢",name:"turtle",width:"+0.6ex",textOnly:!1},{symbol:"🐍",name:"snake",width:"+0.6ex",textOnly:!1},{symbol:"🦎",name:"lizard",width:"+0.6ex",textOnly:!1},{symbol:"🦂",name:"scorpion",width:"+0.6ex",textOnly:!1},{symbol:"🦀",name:"crab",width:"+0.6ex",textOnly:!1},{symbol:"🦑",name:"squid",width:"+0.6ex",textOnly:!1},{symbol:"🐙",name:"octopus",width:"+0.6ex",textOnly:!1},{symbol:"🦐",name:"shrimp",width:"+0.6ex",textOnly:!1},{symbol:"🐠",name:"tropical_fish",width:"+0.6ex",textOnly:!1},{symbol:"🐟",name:"fish",width:"+0.6ex",textOnly:!1},{symbol:"🐡",name:"blowfish",width:"+0.6ex",textOnly:!1},{symbol:"🐬",name:"dolphin",width:"+0.6ex",textOnly:!1},{symbol:"🐬",name:"flipper",width:"+0.6ex",textOnly:!1},{symbol:"🦈",name:"shark",width:"+0.6ex",textOnly:!1},{symbol:"🐳",name:"whale",width:"+0.6ex",textOnly:!1},{symbol:"🐋",name:"whale2",width:"+0.6ex",textOnly:!1},{symbol:"🐊",name:"crocodile",width:"+0.6ex",textOnly:!1},{symbol:"🐆",name:"leopard",width:"+0.6ex",textOnly:!1},{symbol:"🐅",name:"tiger2",width:"+0.6ex",textOnly:!1},{symbol:"🐃",name:"water_buffalo",width:"+0.6ex",textOnly:!1},{symbol:"🐂",name:"ox",width:"+0.6ex",textOnly:!1},{symbol:"🐄",name:"cow2",width:"+0.6ex",textOnly:!1},{symbol:"🦌",name:"deer",width:"+0.6ex",textOnly:!1},{symbol:"🐪",name:"dromedary_camel",width:"+0.6ex",textOnly:!1},{symbol:"🐫",name:"camel",width:"+0.6ex",textOnly:!1},{symbol:"🐘",name:"elephant",width:"+0.6ex",textOnly:!1},{symbol:"🦏",name:"rhinoceros",width:"+0.6ex",textOnly:!1},{symbol:"🦍",name:"gorilla",width:"+0.6ex",textOnly:!1},{symbol:"🐎",name:"racehorse",width:"+0.6ex",textOnly:!1},{symbol:"🐖",name:"pig2",width:"+0.6ex",textOnly:!1},{symbol:"🐐",name:"goat",width:"+0.6ex",textOnly:!1},{symbol:"🐏",name:"ram",width:"+0.6ex",textOnly:!1},{symbol:"🐑",name:"sheep",width:"+0.6ex",textOnly:!1},{symbol:"🐕",name:"dog2",width:"+0.6ex",textOnly:!1},{symbol:"🐩",name:"poodle",width:"+0.6ex",textOnly:!1},{symbol:"🐈",name:"cat2",width:"+0.6ex",textOnly:!1},{symbol:"🐓",name:"rooster",width:"+0.6ex",textOnly:!1},{symbol:"🦃",name:"turkey",width:"+0.6ex",textOnly:!1},{symbol:"🕊",name:"dove",width:"+0.6ex",textOnly:!1},{symbol:"🐇",name:"rabbit2",width:"+0.6ex",textOnly:!1},{symbol:"🐁",name:"mouse2",width:"+0.6ex",textOnly:!1},{symbol:"🐀",name:"rat",width:"+0.6ex",textOnly:!1},{symbol:"🐿",name:"chipmunk",width:"+0.6ex",textOnly:!1},{symbol:"🐾",name:"feet",width:"+0.6ex",textOnly:!1},{symbol:"🐾",name:"paw_prints",width:"+0.6ex",textOnly:!1},{symbol:"🐉",name:"dragon",width:"+0.6ex",textOnly:!1},{symbol:"🐲",name:"dragon_face",width:"+0.6ex",textOnly:!1},{symbol:"🌵",name:"cactus",width:"+0.6ex",textOnly:!1},{symbol:"🎄",name:"christmas_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌲",name:"evergreen_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌳",name:"deciduous_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌴",name:"palm_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌱",name:"seedling",width:"+0.6ex",textOnly:!1},{symbol:"🌿",name:"herb",width:"+0.6ex",textOnly:!1},{symbol:"☘️",name:"shamrock",width:"+0.6ex",textOnly:!1},{symbol:"🍀",name:"four_leaf_clover",width:"+0.6ex",textOnly:!1},{symbol:"🎍",name:"bamboo",width:"+0.6ex",textOnly:!1},{symbol:"🎋",name:"tanabata_tree",width:"+0.6ex",textOnly:!1},{symbol:"🍃",name:"leaves",width:"+0.6ex",textOnly:!1},{symbol:"🍂",name:"fallen_leaf",width:"+0.6ex",textOnly:!1},{symbol:"🍁",name:"maple_leaf",width:"+0.6ex",textOnly:!1},{symbol:"🍄",name:"mushroom",width:"+0.6ex",textOnly:!1},{symbol:"🌾",name:"ear_of_rice",width:"+0.6ex",textOnly:!1},{symbol:"💐",name:"bouquet",width:"+0.6ex",textOnly:!1},{symbol:"🌷",name:"tulip",width:"+0.6ex",textOnly:!1},{symbol:"🌹",name:"rose",width:"+0.6ex",textOnly:!1},{symbol:"🥀",name:"wilted_flower",width:"+0.6ex",textOnly:!1},{symbol:"🌻",name:"sunflower",width:"+0.6ex",textOnly:!1},{symbol:"🌼",name:"blossom",width:"+0.6ex",textOnly:!1},{symbol:"🌸",name:"cherry_blossom",width:"+0.6ex",textOnly:!1},{symbol:"🌺",name:"hibiscus",width:"+0.6ex",textOnly:!1},{symbol:"🌎",name:"earth_americas",width:"+0.6ex",textOnly:!1},{symbol:"🌍",name:"earth_africa",width:"+0.6ex",textOnly:!1},{symbol:"🌏",name:"earth_asia",width:"+0.6ex",textOnly:!1},{symbol:"🌕",name:"full_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌖",name:"waning_gibbous_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌗",name:"last_quarter_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌘",name:"waning_crescent_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌑",name:"new_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌒",name:"waxing_crescent_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌓",name:"first_quarter_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌔",name:"moon",width:"+0.6ex",textOnly:!1},{symbol:"🌔",name:"waxing_gibbous_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌚",name:"new_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌝",name:"full_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌞",name:"sun_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌛",name:"first_quarter_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌜",name:"last_quarter_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌙",name:"crescent_moon",width:"+0.6ex",textOnly:!1},{symbol:"💫",name:"dizzy",width:"+0.6ex",textOnly:!1},{symbol:"⭐️",name:"star",width:"+0.6ex",textOnly:!1},{symbol:"🌟",name:"star2",width:"+0.6ex",textOnly:!1},{symbol:"✨",name:"sparkles",width:"+0.6ex",textOnly:!1},{symbol:"⚡️",name:"zap",width:"+0.6ex",textOnly:!1},{symbol:"🔥",name:"fire",width:"+0.6ex",textOnly:!1},{symbol:"💥",name:"boom",width:"+0.6ex",textOnly:!1},{symbol:"💥",name:"collision",width:"+0.6ex",textOnly:!1},{symbol:"☄",name:"comet",width:"+0.6ex",textOnly:!1},{symbol:"☀️",name:"sunny",width:"+0.6ex",textOnly:!1},{symbol:"🌤",name:"sun_behind_small_cloud",width:"+0.6ex",textOnly:!1},{symbol:"⛅️",name:"partly_sunny",width:"+0.6ex",textOnly:!1},{symbol:"🌥",name:"sun_behind_large_cloud",width:"+0.6ex",textOnly:!1},{symbol:"🌦",name:"sun_behind_rain_cloud",width:"+0.6ex",textOnly:!1},{symbol:"🌈",name:"rainbow",width:"+0.6ex",textOnly:!1},{symbol:"☁️",name:"cloud",width:"+0.6ex",textOnly:!1},{symbol:"🌧",name:"cloud_with_rain",width:"+0.6ex",textOnly:!1},{symbol:"⛈",name:"cloud_with_lightning_and_rain",width:"+0.6ex",textOnly:!1},{symbol:"🌩",name:"cloud_with_lightning",width:"+0.6ex",textOnly:!1},{symbol:"🌨",name:"cloud_with_snow",width:"+0.6ex",textOnly:!1},{symbol:"☃️",name:"snowman_with_snow",width:"+0.6ex",textOnly:!1},{symbol:"⛄️",name:"snowman",width:"+0.6ex",textOnly:!1},{symbol:"❄️",name:"snowflake",width:"+0.6ex",textOnly:!1},{symbol:"🌬",name:"wind_face",width:"+0.6ex",textOnly:!1},{symbol:"💨",name:"dash",width:"+0.6ex",textOnly:!1},{symbol:"🌪",name:"tornado",width:"+0.6ex",textOnly:!1},{symbol:"🌫",name:"fog",width:"+0.6ex",textOnly:!1},{symbol:"🌊",name:"ocean",width:"+0.6ex",textOnly:!1},{symbol:"💧",name:"droplet",width:"+0.6ex",textOnly:!1},{symbol:"💦",name:"sweat_drops",width:"+0.6ex",textOnly:!1},{symbol:"☔️",name:"umbrella",width:"+0.6ex",textOnly:!1},{symbol:"🍏",name:"green_apple",width:"+0.6ex",textOnly:!1},{symbol:"🍎",name:"apple",width:"+0.6ex",textOnly:!1},{symbol:"🍐",name:"pear",width:"+0.6ex",textOnly:!1},{symbol:"🍊",name:"tangerine",width:"+0.6ex",textOnly:!1},{symbol:"🍊",name:"orange",width:"+0.6ex",textOnly:!1},{symbol:"🍊",name:"mandarin",width:"+0.6ex",textOnly:!1},{symbol:"🍋",name:"lemon",width:"+0.6ex",textOnly:!1},{symbol:"🍌",name:"banana",width:"+0.6ex",textOnly:!1},{symbol:"🍉",name:"watermelon",width:"+0.6ex",textOnly:!1},{symbol:"🍇",name:"grapes",width:"+0.6ex",textOnly:!1},{symbol:"🍓",name:"strawberry",width:"+0.6ex",textOnly:!1},{symbol:"🍈",name:"melon",width:"+0.6ex",textOnly:!1},{symbol:"🍒",name:"cherries",width:"+0.6ex",textOnly:!1},{symbol:"🍑",name:"peach",width:"+0.6ex",textOnly:!1},{symbol:"🍍",name:"pineapple",width:"+0.6ex",textOnly:!1},{symbol:"🥝",name:"kiwi_fruit",width:"+0.6ex",textOnly:!1},{symbol:"🥑",name:"avocado",width:"+0.6ex",textOnly:!1},{symbol:"🍅",name:"tomato",width:"+0.6ex",textOnly:!1},{symbol:"🍆",name:"eggplant",width:"+0.6ex",textOnly:!1},{symbol:"🥒",name:"cucumber",width:"+0.6ex",textOnly:!1},{symbol:"🥕",name:"carrot",width:"+0.6ex",textOnly:!1},{symbol:"🌽",name:"corn",width:"+0.6ex",textOnly:!1},{symbol:"🌶",name:"hot_pepper",width:"+0.6ex",textOnly:!1},{symbol:"🥔",name:"potato",width:"+0.6ex",textOnly:!1},{symbol:"🍠",name:"sweet_potato",width:"+0.6ex",textOnly:!1},{symbol:"🌰",name:"chestnut",width:"+0.6ex",textOnly:!1},{symbol:"🥜",name:"peanuts",width:"+0.6ex",textOnly:!1},{symbol:"🍯",name:"honey_pot",width:"+0.6ex",textOnly:!1},{symbol:"🥐",name:"croissant",width:"+0.6ex",textOnly:!1},{symbol:"🍞",name:"bread",width:"+0.6ex",textOnly:!1},{symbol:"🥖",name:"baguette_bread",width:"+0.6ex",textOnly:!1},{symbol:"🧀",name:"cheese",width:"+0.6ex",textOnly:!1},{symbol:"🥚",name:"egg",width:"+0.6ex",textOnly:!1},{symbol:"🍳",name:"fried_egg",width:"+0.6ex",textOnly:!1},{symbol:"🥓",name:"bacon",width:"+0.6ex",textOnly:!1},{symbol:"🥞",name:"pancakes",width:"+0.6ex",textOnly:!1},{symbol:"🍤",name:"fried_shrimp",width:"+0.6ex",textOnly:!1},{symbol:"🍗",name:"poultry_leg",width:"+0.6ex",textOnly:!1},{symbol:"🍖",name:"meat_on_bone",width:"+0.6ex",textOnly:!1},{symbol:"🍕",name:"pizza",width:"+0.6ex",textOnly:!1},{symbol:"🌭",name:"hotdog",width:"+0.6ex",textOnly:!1},{symbol:"🍔",name:"hamburger",width:"+0.6ex",textOnly:!1},{symbol:"🍟",name:"fries",width:"+0.6ex",textOnly:!1},{symbol:"🥙",name:"stuffed_flatbread",width:"+0.6ex",textOnly:!1},{symbol:"🌮",name:"taco",width:"+0.6ex",textOnly:!1},{symbol:"🌯",name:"burrito",width:"+0.6ex",textOnly:!1},{symbol:"🥗",name:"green_salad",width:"+0.6ex",textOnly:!1},{symbol:"🥘",name:"shallow_pan_of_food",width:"+0.6ex",textOnly:!1},{symbol:"🍝",name:"spaghetti",width:"+0.6ex",textOnly:!1},{symbol:"🍜",name:"ramen",width:"+0.6ex",textOnly:!1},{symbol:"🍲",name:"stew",width:"+0.6ex",textOnly:!1},{symbol:"🍥",name:"fish_cake",width:"+0.6ex",textOnly:!1},{symbol:"🍣",name:"sushi",width:"+0.6ex",textOnly:!1},{symbol:"🍱",name:"bento",width:"+0.6ex",textOnly:!1},{symbol:"🍛",name:"curry",width:"+0.6ex",textOnly:!1},{symbol:"🍚",name:"rice",width:"+0.6ex",textOnly:!1},{symbol:"🍙",name:"rice_ball",width:"+0.6ex",textOnly:!1},{symbol:"🍘",name:"rice_cracker",width:"+0.6ex",textOnly:!1},{symbol:"🍢",name:"oden",width:"+0.6ex",textOnly:!1},{symbol:"🍡",name:"dango",width:"+0.6ex",textOnly:!1},{symbol:"🍧",name:"shaved_ice",width:"+0.6ex",textOnly:!1},{symbol:"🍨",name:"ice_cream",width:"+0.6ex",textOnly:!1},{symbol:"🍦",name:"icecream",width:"+0.6ex",textOnly:!1},{symbol:"🍰",name:"cake",width:"+0.6ex",textOnly:!1},{symbol:"🎂",name:"birthday",width:"+0.6ex",textOnly:!1},{symbol:"🍮",name:"custard",width:"+0.6ex",textOnly:!1},{symbol:"🍭",name:"lollipop",width:"+0.6ex",textOnly:!1},{symbol:"🍬",name:"candy",width:"+0.6ex",textOnly:!1},{symbol:"🍫",name:"chocolate_bar",width:"+0.6ex",textOnly:!1},{symbol:"🍿",name:"popcorn",width:"+0.6ex",textOnly:!1},{symbol:"🍩",name:"doughnut",width:"+0.6ex",textOnly:!1},{symbol:"🍪",name:"cookie",width:"+0.6ex",textOnly:!1},{symbol:"🥛",name:"milk_glass",width:"+0.6ex",textOnly:!1},{symbol:"🍼",name:"baby_bottle",width:"+0.6ex",textOnly:!1},{symbol:"☕️",name:"coffee",width:"+0.6ex",textOnly:!1},{symbol:"🍵",name:"tea",width:"+0.6ex",textOnly:!1},{symbol:"🍶",name:"sake",width:"+0.6ex",textOnly:!1},{symbol:"🍺",name:"beer",width:"+0.6ex",textOnly:!1},{symbol:"🍻",name:"beers",width:"+0.6ex",textOnly:!1},{symbol:"🥂",name:"clinking_glasses",width:"+0.6ex",textOnly:!1},{symbol:"🍷",name:"wine_glass",width:"+0.6ex",textOnly:!1},{symbol:"🥃",name:"tumbler_glass",width:"+0.6ex",textOnly:!1},{symbol:"🍸",name:"cocktail",width:"+0.6ex",textOnly:!1},{symbol:"🍹",name:"tropical_drink",width:"+0.6ex",textOnly:!1},{symbol:"🍾",name:"champagne",width:"+0.6ex",textOnly:!1},{symbol:"🥄",name:"spoon",width:"+0.6ex",textOnly:!1},{symbol:"🍴",name:"fork_and_knife",width:"+0.6ex",textOnly:!1},{symbol:"🍽",name:"plate_with_cutlery",width:"+0.6ex",textOnly:!1},{symbol:"⚽️",name:"soccer",width:"+0.6ex",textOnly:!1},{symbol:"🏀",name:"basketball",width:"+0.6ex",textOnly:!1},{symbol:"🏈",name:"football",width:"+0.6ex",textOnly:!1},{symbol:"⚾️",name:"baseball",width:"+0.6ex",textOnly:!1},{symbol:"🎾",name:"tennis",width:"+0.6ex",textOnly:!1},{symbol:"🏐",name:"volleyball",width:"+0.6ex",textOnly:!1},{symbol:"🏉",name:"rugby_football",width:"+0.6ex",textOnly:!1},{symbol:"🎱",name:"8ball",width:"+0.6ex",textOnly:!1},{symbol:"🏓",name:"ping_pong",width:"+0.6ex",textOnly:!1},{symbol:"🏸",name:"badminton",width:"+0.6ex",textOnly:!1},{symbol:"🥅",name:"goal_net",width:"+0.6ex",textOnly:!1},{symbol:"🏒",name:"ice_hockey",width:"+0.6ex",textOnly:!1},{symbol:"🏑",name:"field_hockey",width:"+0.6ex",textOnly:!1},{symbol:"🏏",name:"cricket",width:"+0.6ex",textOnly:!1},{symbol:"⛳️",name:"golf",width:"+0.6ex",textOnly:!1},{symbol:"🏹",name:"bow_and_arrow",width:"+0.6ex",textOnly:!1},{symbol:"🎣",name:"fishing_pole_and_fish",width:"+0.6ex",textOnly:!1},{symbol:"🥊",name:"boxing_glove",width:"+0.6ex",textOnly:!1},{symbol:"🥋",name:"martial_arts_uniform",width:"+0.6ex",textOnly:!1},{symbol:"⛸",name:"ice_skate",width:"+0.6ex",textOnly:!1},{symbol:"🎿",name:"ski",width:"+0.6ex",textOnly:!1},{symbol:"⛷",name:"skier",width:"+0.6ex",textOnly:!1},{symbol:"🏂",name:"snowboarder",width:"+0.6ex",textOnly:!1},{symbol:"🏋️‍♀️",name:"weight_lifting_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏋",name:"weight_lifting_man",width:"+0.6ex",textOnly:!1},{symbol:"🤺",name:"person_fencing",width:"+0.6ex",textOnly:!1},{symbol:"🤼‍♀",name:"women_wrestling",width:"+0.6ex",textOnly:!0},{symbol:"🤼‍♂",name:"men_wrestling",width:"+0.6ex",textOnly:!0},{symbol:"🤸‍♀",name:"woman_cartwheeling",width:"+0.6ex",textOnly:!0},{symbol:"🤸‍♂",name:"man_cartwheeling",width:"+0.6ex",textOnly:!0},{symbol:"⛹️‍♀️",name:"basketball_woman",width:"+0.6ex",textOnly:!0},{symbol:"⛹",name:"basketball_man",width:"+0.6ex",textOnly:!1},{symbol:"🤾‍♀",name:"woman_playing_handball",width:"+0.6ex",textOnly:!0},{symbol:"🤾‍♂",name:"man_playing_handball",width:"+0.6ex",textOnly:!0},{symbol:"🏌️‍♀️",name:"golfing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏌",name:"golfing_man",width:"+0.6ex",textOnly:!1},{symbol:"🏄‍♀",name:"surfing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏄",name:"surfing_man",width:"+0.6ex",textOnly:!1},{symbol:"🏄",name:"surfer",width:"+0.6ex",textOnly:!1},{symbol:"🏊‍♀",name:"swimming_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏊",name:"swimming_man",width:"+0.6ex",textOnly:!1},{symbol:"🏊",name:"swimmer",width:"+0.6ex",textOnly:!1},{symbol:"🤽‍♀",name:"woman_playing_water_polo",width:"+0.6ex",textOnly:!0},{symbol:"🤽‍♂",name:"man_playing_water_polo",width:"+0.6ex",textOnly:!0},{symbol:"🚣‍♀",name:"rowing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚣",name:"rowing_man",width:"+0.6ex",textOnly:!1},{symbol:"🚣",name:"rowboat",width:"+0.6ex",textOnly:!1},{symbol:"🏇",name:"horse_racing",width:"+0.6ex",textOnly:!1},{symbol:"🚴‍♀",name:"biking_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚴",name:"biking_man",width:"+0.6ex",textOnly:!1},{symbol:"🚴",name:"bicyclist",width:"+0.6ex",textOnly:!1},{symbol:"🚵‍♀",name:"mountain_biking_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚵",name:"mountain_biking_man",width:"+0.6ex",textOnly:!1},{symbol:"🚵",name:"mountain_bicyclist",width:"+0.6ex",textOnly:!1},{symbol:"🎽",name:"running_shirt_with_sash",width:"+0.6ex",textOnly:!1},{symbol:"🏅",name:"medal_sports",width:"+0.6ex",textOnly:!1},{symbol:"🎖",name:"medal_military",width:"+0.6ex",textOnly:!1},{symbol:"🥇",name:"1st_place_medal",width:"+0.6ex",textOnly:!1},{symbol:"🥈",name:"2nd_place_medal",width:"+0.6ex",textOnly:!1},{symbol:"🥉",name:"3rd_place_medal",width:"+0.6ex",textOnly:!1},{symbol:"🏆",name:"trophy",width:"+0.6ex",textOnly:!1},{symbol:"🏵",name:"rosette",width:"+0.6ex",textOnly:!1},{symbol:"🎗",name:"reminder_ribbon",width:"+0.6ex",textOnly:!1},{symbol:"🎫",name:"ticket",width:"+0.6ex",textOnly:!1},{symbol:"🎟",name:"tickets",width:"+0.6ex",textOnly:!1},{symbol:"🎪",name:"circus_tent",width:"+0.6ex",textOnly:!1},{symbol:"🤹‍♀",name:"woman_juggling",width:"+0.6ex",textOnly:!0},{symbol:"🤹‍♂",name:"man_juggling",width:"+0.6ex",textOnly:!0},{symbol:"🎭",name:"performing_arts",width:"+0.6ex",textOnly:!1},{symbol:"🎨",name:"art",width:"+0.6ex",textOnly:!1},{symbol:"🎬",name:"clapper",width:"+0.6ex",textOnly:!1},{symbol:"🎤",name:"microphone",width:"+0.6ex",textOnly:!1},{symbol:"🎧",name:"headphones",width:"+0.6ex",textOnly:!1},{symbol:"🎼",name:"musical_score",width:"+0.6ex",textOnly:!1},{symbol:"🎹",name:"musical_keyboard",width:"+0.6ex",textOnly:!1},{symbol:"🥁",name:"drum",width:"+0.6ex",textOnly:!1},{symbol:"🎷",name:"saxophone",width:"+0.6ex",textOnly:!1},{symbol:"🎺",name:"trumpet",width:"+0.6ex",textOnly:!1},{symbol:"🎸",name:"guitar",width:"+0.6ex",textOnly:!1},{symbol:"🎻",name:"violin",width:"+0.6ex",textOnly:!1},{symbol:"🎲",name:"game_die",width:"+0.6ex",textOnly:!1},{symbol:"🎯",name:"dart",width:"+0.6ex",textOnly:!1},{symbol:"🎳",name:"bowling",width:"+0.6ex",textOnly:!1},{symbol:"🎮",name:"video_game",width:"+0.6ex",textOnly:!1},{symbol:"🎰",name:"slot_machine",width:"+0.6ex",textOnly:!1},{symbol:"🚗",name:"car",width:"+0.6ex",textOnly:!1},{symbol:"🚗",name:"red_car",width:"+0.6ex",textOnly:!1},{symbol:"🚕",name:"taxi",width:"+0.6ex",textOnly:!1},{symbol:"🚙",name:"blue_car",width:"+0.6ex",textOnly:!1},{symbol:"🚌",name:"bus",width:"+0.6ex",textOnly:!1},{symbol:"🚎",name:"trolleybus",width:"+0.6ex",textOnly:!1},{symbol:"🏎",name:"racing_car",width:"+0.6ex",textOnly:!1},{symbol:"🚓",name:"police_car",width:"+0.6ex",textOnly:!1},{symbol:"🚑",name:"ambulance",width:"+0.6ex",textOnly:!1},{symbol:"🚒",name:"fire_engine",width:"+0.6ex",textOnly:!1},{symbol:"🚐",name:"minibus",width:"+0.6ex",textOnly:!1},{symbol:"🚚",name:"truck",width:"+0.6ex",textOnly:!1},{symbol:"🚛",name:"articulated_lorry",width:"+0.6ex",textOnly:!1},{symbol:"🚜",name:"tractor",width:"+0.6ex",textOnly:!1},{symbol:"🛴",name:"kick_scooter",width:"+0.6ex",textOnly:!1},{symbol:"🚲",name:"bike",width:"+0.6ex",textOnly:!1},{symbol:"🛵",name:"motor_scooter",width:"+0.6ex",textOnly:!1},{symbol:"🏍",name:"motorcycle",width:"+0.6ex",textOnly:!1},{symbol:"🚨",name:"rotating_light",width:"+0.6ex",textOnly:!1},{symbol:"🚔",name:"oncoming_police_car",width:"+0.6ex",textOnly:!1},{symbol:"🚍",name:"oncoming_bus",width:"+0.6ex",textOnly:!1},{symbol:"🚘",name:"oncoming_automobile",width:"+0.6ex",textOnly:!1},{symbol:"🚖",name:"oncoming_taxi",width:"+0.6ex",textOnly:!1},{symbol:"🚡",name:"aerial_tramway",width:"+0.6ex",textOnly:!1},{symbol:"🚠",name:"mountain_cableway",width:"+0.6ex",textOnly:!1},{symbol:"🚟",name:"suspension_railway",width:"+0.6ex",textOnly:!1},{symbol:"🚃",name:"railway_car",width:"+0.6ex",textOnly:!1},{symbol:"🚋",name:"train",width:"+0.6ex",textOnly:!1},{symbol:"🚞",name:"mountain_railway",width:"+0.6ex",textOnly:!1},{symbol:"🚝",name:"monorail",width:"+0.6ex",textOnly:!1},{symbol:"🚄",name:"bullettrain_side",width:"+0.6ex",textOnly:!1},{symbol:"🚅",name:"bullettrain_front",width:"+0.6ex",textOnly:!1},{symbol:"🚈",name:"light_rail",width:"+0.6ex",textOnly:!1},{symbol:"🚂",name:"steam_locomotive",width:"+0.6ex",textOnly:!1},{symbol:"🚆",name:"train2",width:"+0.6ex",textOnly:!1},{symbol:"🚇",name:"metro",width:"+0.6ex",textOnly:!1},{symbol:"🚊",name:"tram",width:"+0.6ex",textOnly:!1},{symbol:"🚉",name:"station",width:"+0.6ex",textOnly:!1},{symbol:"🚁",name:"helicopter",width:"+0.6ex",textOnly:!1},{symbol:"🛩",name:"small_airplane",width:"+0.6ex",textOnly:!1},{symbol:"✈️",name:"airplane",width:"+0.6ex",textOnly:!1},{symbol:"🛫",name:"flight_departure",width:"+0.6ex",textOnly:!1},{symbol:"🛬",name:"flight_arrival",width:"+0.6ex",textOnly:!1},{symbol:"🚀",name:"rocket",width:"+0.6ex",textOnly:!1},{symbol:"🛰",name:"artificial_satellite",width:"+0.6ex",textOnly:!1},{symbol:"💺",name:"seat",width:"+0.6ex",textOnly:!1},{symbol:"🛶",name:"canoe",width:"+0.6ex",textOnly:!1},{symbol:"⛵️",name:"boat",width:"+0.6ex",textOnly:!1},{symbol:"⛵️",name:"sailboat",width:"+0.6ex",textOnly:!1},{symbol:"🛥",name:"motor_boat",width:"+0.6ex",textOnly:!1},{symbol:"🚤",name:"speedboat",width:"+0.6ex",textOnly:!1},{symbol:"🛳",name:"passenger_ship",width:"+0.6ex",textOnly:!1},{symbol:"⛴",name:"ferry",width:"+0.6ex",textOnly:!1},{symbol:"🚢",name:"ship",width:"+0.6ex",textOnly:!1},{symbol:"⚓️",name:"anchor",width:"+0.6ex",textOnly:!1},{symbol:"🚧",name:"construction",width:"+0.6ex",textOnly:!1},{symbol:"⛽️",name:"fuelpump",width:"+0.6ex",textOnly:!1},{symbol:"🚏",name:"busstop",width:"+0.6ex",textOnly:!1},{symbol:"🚦",name:"vertical_traffic_light",width:"+0.6ex",textOnly:!1},{symbol:"🚥",name:"traffic_light",width:"+0.6ex",textOnly:!1},{symbol:"🗺",name:"world_map",width:"+0.6ex",textOnly:!1},{symbol:"🗿",name:"moyai",width:"+0.6ex",textOnly:!1},{symbol:"🗽",name:"statue_of_liberty",width:"+0.6ex",textOnly:!1},{symbol:"⛲️",name:"fountain",width:"+0.6ex",textOnly:!1},{symbol:"🗼",name:"tokyo_tower",width:"+0.6ex",textOnly:!1},{symbol:"🏰",name:"european_castle",width:"+0.6ex",textOnly:!1},{symbol:"🏯",name:"japanese_castle",width:"+0.6ex",textOnly:!1},{symbol:"🏟",name:"stadium",width:"+0.6ex",textOnly:!1},{symbol:"🎡",name:"ferris_wheel",width:"+0.6ex",textOnly:!1},{symbol:"🎢",name:"roller_coaster",width:"+0.6ex",textOnly:!1},{symbol:"🎠",name:"carousel_horse",width:"+0.6ex",textOnly:!1},{symbol:"⛱",name:"parasol_on_ground",width:"+0.6ex",textOnly:!1},{symbol:"🏖",name:"beach_umbrella",width:"+0.6ex",textOnly:!1},{symbol:"🏝",name:"desert_island",width:"+0.6ex",textOnly:!1},{symbol:"⛰",name:"mountain",width:"+0.6ex",textOnly:!1},{symbol:"🏔",name:"mountain_snow",width:"+0.6ex",textOnly:!1},{symbol:"🗻",name:"mount_fuji",width:"+0.6ex",textOnly:!1},{symbol:"🌋",name:"volcano",width:"+0.6ex",textOnly:!1},{symbol:"🏜",name:"desert",width:"+0.6ex",textOnly:!1},{symbol:"🏕",name:"camping",width:"+0.6ex",textOnly:!1},{symbol:"⛺️",name:"tent",width:"+0.6ex",textOnly:!1},{symbol:"🛤",name:"railway_track",width:"+0.6ex",textOnly:!1},{symbol:"🛣",name:"motorway",width:"+0.6ex",textOnly:!1},{symbol:"🏗",name:"building_construction",width:"+0.6ex",textOnly:!1},{symbol:"🏭",name:"factory",width:"+0.6ex",textOnly:!1},{symbol:"🏠",name:"house",width:"+0.6ex",textOnly:!1},{symbol:"🏡",name:"house_with_garden",width:"+0.6ex",textOnly:!1},{symbol:"🏘",name:"houses",width:"+0.6ex",textOnly:!1},{symbol:"🏚",name:"derelict_house",width:"+0.6ex",textOnly:!1},{symbol:"🏢",name:"office",width:"+0.6ex",textOnly:!1},{symbol:"🏬",name:"department_store",width:"+0.6ex",textOnly:!1},{symbol:"🏣",name:"post_office",width:"+0.6ex",textOnly:!1},{symbol:"🏤",name:"european_post_office",width:"+0.6ex",textOnly:!1},{symbol:"🏥",name:"hospital",width:"+0.6ex",textOnly:!1},{symbol:"🏦",name:"bank",width:"+0.6ex",textOnly:!1},{symbol:"🏨",name:"hotel",width:"+0.6ex",textOnly:!1},{symbol:"🏪",name:"convenience_store",width:"+0.6ex",textOnly:!1},{symbol:"🏫",name:"school",width:"+0.6ex",textOnly:!1},{symbol:"🏩",name:"love_hotel",width:"+0.6ex",textOnly:!1},{symbol:"💒",name:"wedding",width:"+0.6ex",textOnly:!1},{symbol:"🏛",name:"classical_building",width:"+0.6ex",textOnly:!1},{symbol:"⛪️",name:"church",width:"+0.6ex",textOnly:!1},{symbol:"🕌",name:"mosque",width:"+0.6ex",textOnly:!1},{symbol:"🕍",name:"synagogue",width:"+0.6ex",textOnly:!1},{symbol:"🕋",name:"kaaba",width:"+0.6ex",textOnly:!1},{symbol:"⛩",name:"shinto_shrine",width:"+0.6ex",textOnly:!1},{symbol:"🗾",name:"japan",width:"+0.6ex",textOnly:!1},{symbol:"🎑",name:"rice_scene",width:"+0.6ex",textOnly:!1},{symbol:"🏞",name:"national_park",width:"+0.6ex",textOnly:!1},{symbol:"🌅",name:"sunrise",width:"+0.6ex",textOnly:!1},{symbol:"🌄",name:"sunrise_over_mountains",width:"+0.6ex",textOnly:!1},{symbol:"🌠",name:"stars",width:"+0.6ex",textOnly:!1},{symbol:"🎇",name:"sparkler",width:"+0.6ex",textOnly:!1},{symbol:"🎆",name:"fireworks",width:"+0.6ex",textOnly:!1},{symbol:"🌇",name:"city_sunrise",width:"+0.6ex",textOnly:!1},{symbol:"🌆",name:"city_sunset",width:"+0.6ex",textOnly:!1},{symbol:"🏙",name:"cityscape",width:"+0.6ex",textOnly:!1},{symbol:"🌃",name:"night_with_stars",width:"+0.6ex",textOnly:!1},{symbol:"🌌",name:"milky_way",width:"+0.6ex",textOnly:!1},{symbol:"🌉",name:"bridge_at_night",width:"+0.6ex",textOnly:!1},{symbol:"🌁",name:"foggy",width:"+0.6ex",textOnly:!1},{symbol:"⌚️",name:"watch",width:"+0.6ex",textOnly:!1},{symbol:"📱",name:"iphone",width:"+0.6ex",textOnly:!1},{symbol:"📲",name:"calling",width:"+0.6ex",textOnly:!1},{symbol:"💻",name:"computer",width:"+0.6ex",textOnly:!1},{symbol:"⌨️",name:"keyboard",width:"+0.6ex",textOnly:!1},{symbol:"🖥",name:"desktop_computer",width:"+0.6ex",textOnly:!1},{symbol:"🖨",name:"printer",width:"+0.6ex",textOnly:!1},{symbol:"🖱",name:"computer_mouse",width:"+0.6ex",textOnly:!1},{symbol:"🖲",name:"trackball",width:"+0.6ex",textOnly:!1},{symbol:"🕹",name:"joystick",width:"+0.6ex",textOnly:!1},{symbol:"🗜",name:"clamp",width:"+0.6ex",textOnly:!1},{symbol:"💽",name:"minidisc",width:"+0.6ex",textOnly:!1},{symbol:"💾",name:"floppy_disk",width:"+0.6ex",textOnly:!1},{symbol:"💿",name:"cd",width:"+0.6ex",textOnly:!1},{symbol:"📀",name:"dvd",width:"+0.6ex",textOnly:!1},{symbol:"📼",name:"vhs",width:"+0.6ex",textOnly:!1},{symbol:"📷",name:"camera",width:"+0.6ex",textOnly:!1},{symbol:"📸",name:"camera_flash",width:"+0.6ex",textOnly:!1},{symbol:"📹",name:"video_camera",width:"+0.6ex",textOnly:!1},{symbol:"🎥",name:"movie_camera",width:"+0.6ex",textOnly:!1},{symbol:"📽",name:"film_projector",width:"+0.6ex",textOnly:!1},{symbol:"🎞",name:"film_strip",width:"+0.6ex",textOnly:!1},{symbol:"📞",name:"telephone_receiver",width:"+0.6ex",textOnly:!1},{symbol:"☎️",name:"phone",width:"+0.6ex",textOnly:!1},{symbol:"☎️",name:"telephone",width:"+0.6ex",textOnly:!1},{symbol:"📟",name:"pager",width:"+0.6ex",textOnly:!1},{symbol:"📠",name:"fax",width:"+0.6ex",textOnly:!1},{symbol:"📺",name:"tv",width:"+0.6ex",textOnly:!1},{symbol:"📻",name:"radio",width:"+0.6ex",textOnly:!1},{symbol:"🎙",name:"studio_microphone",width:"+0.6ex",textOnly:!1},{symbol:"🎚",name:"level_slider",width:"+0.6ex",textOnly:!1},{symbol:"🎛",name:"control_knobs",width:"+0.6ex",textOnly:!1},{symbol:"⏱",name:"stopwatch",width:"+0.6ex",textOnly:!1},{symbol:"⏲",name:"timer_clock",width:"+0.6ex",textOnly:!1},{symbol:"⏰",name:"alarm_clock",width:"+0.6ex",textOnly:!1},{symbol:"🕰",name:"mantelpiece_clock",width:"+0.6ex",textOnly:!1},{symbol:"⌛️",name:"hourglass",width:"+0.6ex",textOnly:!1},{symbol:"⏳",name:"hourglass_flowing_sand",width:"+0.6ex",textOnly:!1},{symbol:"📡",name:"satellite",width:"+0.6ex",textOnly:!1},{symbol:"🔋",name:"battery",width:"+0.6ex",textOnly:!1},{symbol:"🔌",name:"electric_plug",width:"+0.6ex",textOnly:!1},{symbol:"💡",name:"bulb",width:"+0.6ex",textOnly:!1},{symbol:"🔦",name:"flashlight",width:"+0.6ex",textOnly:!1},{symbol:"🕯",name:"candle",width:"+0.6ex",textOnly:!1},{symbol:"🗑",name:"wastebasket",width:"+0.6ex",textOnly:!1},{symbol:"🛢",name:"oil_drum",width:"+0.6ex",textOnly:!1},{symbol:"💸",name:"money_with_wings",width:"+0.6ex",textOnly:!1},{symbol:"💵",name:"dollar",width:"+0.6ex",textOnly:!1},{symbol:"💴",name:"yen",width:"+0.6ex",textOnly:!1},{symbol:"💶",name:"euro",width:"+0.6ex",textOnly:!1},{symbol:"💷",name:"pound",width:"+0.6ex",textOnly:!1},{symbol:"💰",name:"moneybag",width:"+0.6ex",textOnly:!1},{symbol:"💳",name:"credit_card",width:"+0.6ex",textOnly:!1},{symbol:"💎",name:"gem",width:"+0.6ex",textOnly:!1},{symbol:"⚖️",name:"balance_scale",width:"+0.6ex",textOnly:!1},{symbol:"🔧",name:"wrench",width:"+0.6ex",textOnly:!1},{symbol:"🔨",name:"hammer",width:"+0.6ex",textOnly:!1},{symbol:"⚒",name:"hammer_and_pick",width:"+0.6ex",textOnly:!1},{symbol:"🛠",name:"hammer_and_wrench",width:"+0.6ex",textOnly:!1},{symbol:"⛏",name:"pick",width:"+0.6ex",textOnly:!1},{symbol:"🔩",name:"nut_and_bolt",width:"+0.6ex",textOnly:!1},{symbol:"⚙️",name:"gear",width:"+0.6ex",textOnly:!1},{symbol:"⛓",name:"chains",width:"+0.6ex",textOnly:!1},{symbol:"🔫",name:"gun",width:"+0.6ex",textOnly:!1},{symbol:"💣",name:"bomb",width:"+0.6ex",textOnly:!1},{symbol:"🔪",name:"hocho",width:"+0.6ex",textOnly:!1},{symbol:"🔪",name:"knife",width:"+0.6ex",textOnly:!1},{symbol:"🗡",name:"dagger",width:"+0.6ex",textOnly:!1},{symbol:"⚔️",name:"crossed_swords",width:"+0.6ex",textOnly:!1},{symbol:"🛡",name:"shield",width:"+0.6ex",textOnly:!1},{symbol:"🚬",name:"smoking",width:"+0.6ex",textOnly:!1},{symbol:"⚰️",name:"coffin",width:"+0.6ex",textOnly:!1},{symbol:"⚱️",name:"funeral_urn",width:"+0.6ex",textOnly:!1},{symbol:"🏺",name:"amphora",width:"+0.6ex",textOnly:!1},{symbol:"🔮",name:"crystal_ball",width:"+0.6ex",textOnly:!1},{symbol:"📿",name:"prayer_beads",width:"+0.6ex",textOnly:!1},{symbol:"💈",name:"barber",width:"+0.6ex",textOnly:!1},{symbol:"⚗️",name:"alembic",width:"+0.6ex",textOnly:!1},{symbol:"🔭",name:"telescope",width:"+0.6ex",textOnly:!1},{symbol:"🔬",name:"microscope",width:"+0.6ex",textOnly:!1},{symbol:"🕳",name:"hole",width:"+0.6ex",textOnly:!1},{symbol:"💊",name:"pill",width:"+0.6ex",textOnly:!1},{symbol:"💉",name:"syringe",width:"+0.6ex",textOnly:!1},{symbol:"🌡",name:"thermometer",width:"+0.6ex",textOnly:!1},{symbol:"🚽",name:"toilet",width:"+0.6ex",textOnly:!1},{symbol:"🚰",name:"potable_water",width:"+0.6ex",textOnly:!1},{symbol:"🚿",name:"shower",width:"+0.6ex",textOnly:!1},{symbol:"🛁",name:"bathtub",width:"+0.6ex",textOnly:!1},{symbol:"🛀",name:"bath",width:"+0.6ex",textOnly:!1},{symbol:"🛎",name:"bellhop_bell",width:"+0.6ex",textOnly:!1},{symbol:"🔑",name:"key",width:"+0.6ex",textOnly:!1},{symbol:"🗝",name:"old_key",width:"+0.6ex",textOnly:!1},{symbol:"🚪",name:"door",width:"+0.6ex",textOnly:!1},{symbol:"🛋",name:"couch_and_lamp",width:"+0.6ex",textOnly:!1},{symbol:"🛏",name:"bed",width:"+0.6ex",textOnly:!1},{symbol:"🛌",name:"sleeping_bed",width:"+0.6ex",textOnly:!1},{symbol:"🖼",name:"framed_picture",width:"+0.6ex",textOnly:!1},{symbol:"🛍",name:"shopping",width:"+0.6ex",textOnly:!1},{symbol:"🛒",name:"shopping_cart",width:"+0.6ex",textOnly:!1},{symbol:"🎁",name:"gift",width:"+0.6ex",textOnly:!1},{symbol:"🎈",name:"balloon",width:"+0.6ex",textOnly:!1},{symbol:"🎏",name:"flags",width:"+0.6ex",textOnly:!1},{symbol:"🎀",name:"ribbon",width:"+0.6ex",textOnly:!1},{symbol:"🎊",name:"confetti_ball",width:"+0.6ex",textOnly:!1},{symbol:"🎉",name:"tada",width:"+0.6ex",textOnly:!1},{symbol:"🎎",name:"dolls",width:"+0.6ex",textOnly:!1},{symbol:"🏮",name:"izakaya_lantern",width:"+0.6ex",textOnly:!1},{symbol:"🏮",name:"lantern",width:"+0.6ex",textOnly:!1},{symbol:"🎐",name:"wind_chime",width:"+0.6ex",textOnly:!1},{symbol:"✉️",name:"email",width:"+0.6ex",textOnly:!1},{symbol:"✉️",name:"envelope",width:"+0.6ex",textOnly:!1},{symbol:"📩",name:"envelope_with_arrow",width:"+0.6ex",textOnly:!1},{symbol:"📨",name:"incoming_envelope",width:"+0.6ex",textOnly:!1},{symbol:"📧",name:"e-mail",width:"+0.6ex",textOnly:!1},{symbol:"💌",name:"love_letter",width:"+0.6ex",textOnly:!1},{symbol:"📥",name:"inbox_tray",width:"+0.6ex",textOnly:!1},{symbol:"📤",name:"outbox_tray",width:"+0.6ex",textOnly:!1},{symbol:"📦",name:"package",width:"+0.6ex",textOnly:!1},{symbol:"🏷",name:"label",width:"+0.6ex",textOnly:!1},{symbol:"📪",name:"mailbox_closed",width:"+0.6ex",textOnly:!1},{symbol:"📫",name:"mailbox",width:"+0.6ex",textOnly:!1},{symbol:"📬",name:"mailbox_with_mail",width:"+0.6ex",textOnly:!1},{symbol:"📭",name:"mailbox_with_no_mail",width:"+0.6ex",textOnly:!1},{symbol:"📮",name:"postbox",width:"+0.6ex",textOnly:!1},{symbol:"📯",name:"postal_horn",width:"+0.6ex",textOnly:!1},{symbol:"📜",name:"scroll",width:"+0.6ex",textOnly:!1},{symbol:"📃",name:"page_with_curl",width:"+0.6ex",textOnly:!1},{symbol:"📄",name:"page_facing_up",width:"+0.6ex",textOnly:!1},{symbol:"📑",name:"bookmark_tabs",width:"+0.6ex",textOnly:!1},{symbol:"📊",name:"bar_chart",width:"+0.6ex",textOnly:!1},{symbol:"📈",name:"chart_with_upwards_trend",width:"+0.6ex",textOnly:!1},{symbol:"📉",name:"chart_with_downwards_trend",width:"+0.6ex",textOnly:!1},{symbol:"🗒",name:"spiral_notepad",width:"+0.6ex",textOnly:!1},{symbol:"🗓",name:"spiral_calendar",width:"+0.6ex",textOnly:!1},{symbol:"📆",name:"calendar",width:"+0.6ex",textOnly:!1},{symbol:"📅",name:"date",width:"+0.6ex",textOnly:!1},{symbol:"📇",name:"card_index",width:"+0.6ex",textOnly:!1},{symbol:"🗃",name:"card_file_box",width:"+0.6ex",textOnly:!1},{symbol:"🗳",name:"ballot_box",width:"+0.6ex",textOnly:!1},{symbol:"🗄",name:"file_cabinet",width:"+0.6ex",textOnly:!1},{symbol:"📋",name:"clipboard",width:"+0.6ex",textOnly:!1},{symbol:"📁",name:"file_folder",width:"+0.6ex",textOnly:!1},{symbol:"📂",name:"open_file_folder",width:"+0.6ex",textOnly:!1},{symbol:"🗂",name:"card_index_dividers",width:"+0.6ex",textOnly:!1},{symbol:"🗞",name:"newspaper_roll",width:"+0.6ex",textOnly:!1},{symbol:"📰",name:"newspaper",width:"+0.6ex",textOnly:!1},{symbol:"📓",name:"notebook",width:"+0.6ex",textOnly:!1},{symbol:"📔",name:"notebook_with_decorative_cover",width:"+0.6ex",textOnly:!1},{symbol:"📒",name:"ledger",width:"+0.6ex",textOnly:!1},{symbol:"📕",name:"closed_book",width:"+0.6ex",textOnly:!1},{symbol:"📗",name:"green_book",width:"+0.6ex",textOnly:!1},{symbol:"📘",name:"blue_book",width:"+0.6ex",textOnly:!1},{symbol:"📙",name:"orange_book",width:"+0.6ex",textOnly:!1},{symbol:"📚",name:"books",width:"+0.6ex",textOnly:!1},{symbol:"📖",name:"book",width:"+0.6ex",textOnly:!1},{symbol:"📖",name:"open_book",width:"+0.6ex",textOnly:!1},{symbol:"🔖",name:"bookmark",width:"+0.6ex",textOnly:!1},{symbol:"🔗",name:"link",width:"+0.6ex",textOnly:!1},{symbol:"📎",name:"paperclip",width:"+0.6ex",textOnly:!1},{symbol:"🖇",name:"paperclips",width:"+0.6ex",textOnly:!1},{symbol:"📐",name:"triangular_ruler",width:"+0.6ex",textOnly:!1},{symbol:"📏",name:"straight_ruler",width:"+0.6ex",textOnly:!1},{symbol:"📌",name:"pushpin",width:"+0.6ex",textOnly:!1},{symbol:"📍",name:"round_pushpin",width:"+0.6ex",textOnly:!1},{symbol:"✂️",name:"scissors",width:"+0.6ex",textOnly:!1},{symbol:"🖊",name:"pen",width:"+0.6ex",textOnly:!1},{symbol:"🖋",name:"fountain_pen",width:"+0.6ex",textOnly:!1},{symbol:"✒️",name:"black_nib",width:"+0.6ex",textOnly:!1},{symbol:"🖌",name:"paintbrush",width:"+0.6ex",textOnly:!1},{symbol:"🖍",name:"crayon",width:"+0.6ex",textOnly:!1},{symbol:"📝",name:"memo",width:"+0.6ex",textOnly:!1},{symbol:"📝",name:"pencil",width:"+0.6ex",textOnly:!1},{symbol:"✏️",name:"pencil2",width:"+0.6ex",textOnly:!1},{symbol:"🔍",name:"mag",width:"+0.6ex",textOnly:!1},{symbol:"🔎",name:"mag_right",width:"+0.6ex",textOnly:!1},{symbol:"🔏",name:"lock_with_ink_pen",width:"+0.6ex",textOnly:!1},{symbol:"🔐",name:"closed_lock_with_key",width:"+0.6ex",textOnly:!1},{symbol:"🔒",name:"lock",width:"+0.6ex",textOnly:!1},{symbol:"🔓",name:"unlock",width:"+0.6ex",textOnly:!1},{symbol:"❤️",name:"heart",width:"+0.6ex",textOnly:!1},{symbol:"💛",name:"yellow_heart",width:"+0.6ex",textOnly:!1},{symbol:"💚",name:"green_heart",width:"+0.6ex",textOnly:!1},{symbol:"💙",name:"blue_heart",width:"+0.6ex",textOnly:!1},{symbol:"💜",name:"purple_heart",width:"+0.6ex",textOnly:!1},{symbol:"🖤",name:"black_heart",width:"+0.6ex",textOnly:!1},{symbol:"💔",name:"broken_heart",width:"+0.6ex",textOnly:!1},{symbol:"❣️",name:"heavy_heart_exclamation",width:"+0.6ex",textOnly:!1},{symbol:"💕",name:"two_hearts",width:"+0.6ex",textOnly:!1},{symbol:"💞",name:"revolving_hearts",width:"+0.6ex",textOnly:!1},{symbol:"💓",name:"heartbeat",width:"+0.6ex",textOnly:!1},{symbol:"💗",name:"heartpulse",width:"+0.6ex",textOnly:!1},{symbol:"💖",name:"sparkling_heart",width:"+0.6ex",textOnly:!1},{symbol:"💘",name:"cupid",width:"+0.6ex",textOnly:!1},{symbol:"💝",name:"gift_heart",width:"+0.6ex",textOnly:!1},{symbol:"💟",name:"heart_decoration",width:"+0.6ex",textOnly:!1},{symbol:"☮️",name:"peace_symbol",width:"+0.6ex",textOnly:!1},{symbol:"✝️",name:"latin_cross",width:"+0.6ex",textOnly:!1},{symbol:"☪️",name:"star_and_crescent",width:"+0.6ex",textOnly:!1},{symbol:"🕉",name:"om",width:"+0.6ex",textOnly:!1},{symbol:"☸️",name:"wheel_of_dharma",width:"+0.6ex",textOnly:!1},{symbol:"✡️",name:"star_of_david",width:"+0.6ex",textOnly:!1},{symbol:"🔯",name:"six_pointed_star",width:"+0.6ex",textOnly:!1},{symbol:"🕎",name:"menorah",width:"+0.6ex",textOnly:!1},{symbol:"☯️",name:"yin_yang",width:"+0.6ex",textOnly:!1},{symbol:"☦️",name:"orthodox_cross",width:"+0.6ex",textOnly:!1},{symbol:"🛐",name:"place_of_worship",width:"+0.6ex",textOnly:!1},{symbol:"⛎",name:"ophiuchus",width:"+0.6ex",textOnly:!1},{symbol:"♈️",name:"aries",width:"+0.6ex",textOnly:!1},{symbol:"♉️",name:"taurus",width:"+0.6ex",textOnly:!1},{symbol:"♊️",name:"gemini",width:"+0.6ex",textOnly:!1},{symbol:"♋️",name:"cancer",width:"+0.6ex",textOnly:!1},{symbol:"♌️",name:"leo",width:"+0.6ex",textOnly:!1},{symbol:"♍️",name:"virgo",width:"+0.6ex",textOnly:!1},{symbol:"♎️",name:"libra",width:"+0.6ex",textOnly:!1},{symbol:"♏️",name:"scorpius",width:"+0.6ex",textOnly:!1},{symbol:"♐️",name:"sagittarius",width:"+0.6ex",textOnly:!1},{symbol:"♑️",name:"capricorn",width:"+0.6ex",textOnly:!1},{symbol:"♒️",name:"aquarius",width:"+0.6ex",textOnly:!1},{symbol:"♓️",name:"pisces",width:"+0.6ex",textOnly:!1},{symbol:"🆔",name:"id",width:"+0.6ex",textOnly:!1},{symbol:"⚛️",name:"atom_symbol",width:"+0.6ex",textOnly:!1},{symbol:"🉑",name:"accept",width:"+0.6ex",textOnly:!1},{symbol:"☢️",name:"radioactive",width:"+0.6ex",textOnly:!1},{symbol:"☣️",name:"biohazard",width:"+0.6ex",textOnly:!1},{symbol:"📴",name:"mobile_phone_off",width:"+0.6ex",textOnly:!1},{symbol:"📳",name:"vibration_mode",width:"+0.6ex",textOnly:!1},{symbol:"✴️",name:"eight_pointed_black_star",width:"+0.6ex",textOnly:!1},{symbol:"🆚",name:"vs",width:"+0.6ex",textOnly:!1},{symbol:"💮",name:"white_flower",width:"+0.6ex",textOnly:!1},{symbol:"🉐",name:"ideograph_advantage",width:"+0.6ex",textOnly:!1},{symbol:"㊙️",name:"secret",width:"+0.6ex",textOnly:!1},{symbol:"㊗️",name:"congratulations",width:"+0.6ex",textOnly:!1},{symbol:"🈵",name:"u6e80",width:"+0.6ex",textOnly:!1},{symbol:"🅰️",name:"a",width:"+0.6ex",textOnly:!0},{symbol:"🅱️",name:"b",width:"+0.6ex",textOnly:!0},{symbol:"🆎",name:"ab",width:"+0.6ex",textOnly:!1},{symbol:"🆑",name:"cl",width:"+0.6ex",textOnly:!1},{symbol:"🅾️",name:"o2",width:"+0.6ex",textOnly:!0},{symbol:"🆘",name:"sos",width:"+0.6ex",textOnly:!1},{symbol:"❌",name:"x",width:"+0.6ex",textOnly:!1},{symbol:"⭕️",name:"o",width:"+0.6ex",textOnly:!1},{symbol:"🛑",name:"stop_sign",width:"+0.6ex",textOnly:!1},{symbol:"⛔️",name:"no_entry",width:"+0.6ex",textOnly:!1},{symbol:"📛",name:"name_badge",width:"+0.6ex",textOnly:!1},{symbol:"🚫",name:"no_entry_sign",width:"+0.6ex",textOnly:!1},{symbol:"💢",name:"anger",width:"+0.6ex",textOnly:!1},{symbol:"♨️",name:"hotsprings",width:"+0.6ex",textOnly:!1},{symbol:"🚷",name:"no_pedestrians",width:"+0.6ex",textOnly:!1},{symbol:"🚯",name:"do_not_litter",width:"+0.6ex",textOnly:!1},{symbol:"🚳",name:"no_bicycles",width:"+0.6ex",textOnly:!1},{symbol:"🚱",name:"non-potable_water",width:"+0.6ex",textOnly:!1},{symbol:"🔞",name:"underage",width:"+0.6ex",textOnly:!1},{symbol:"📵",name:"no_mobile_phones",width:"+0.6ex",textOnly:!1},{symbol:"🚭",name:"no_smoking",width:"+0.6ex",textOnly:!1},{symbol:"❗️",name:"exclamation",width:"+0.6ex",textOnly:!1},{symbol:"❗️",name:"heavy_exclamation_mark",width:"+0.6ex",textOnly:!1},{symbol:"❕",name:"grey_exclamation",width:"+0.6ex",textOnly:!1},{symbol:"❓",name:"question",width:"+0.6ex",textOnly:!1},{symbol:"❔",name:"grey_question",width:"+0.6ex",textOnly:!1},{symbol:"‼️",name:"bangbang",width:"+0.6ex",textOnly:!1},{symbol:"⁉️",name:"interrobang",width:"+0.6ex",textOnly:!1},{symbol:"🔅",name:"low_brightness",width:"+0.6ex",textOnly:!1},{symbol:"🔆",name:"high_brightness",width:"+0.6ex",textOnly:!1},{symbol:"〽️",name:"part_alternation_mark",width:"+0.6ex",textOnly:!1},{symbol:"⚠️",name:"warning",width:"+0.6ex",textOnly:!1},{symbol:"🚸",name:"children_crossing",width:"+0.6ex",textOnly:!1},{symbol:"🔱",name:"trident",width:"+0.6ex",textOnly:!1},{symbol:"⚜️",name:"fleur_de_lis",width:"+0.6ex",textOnly:!1},{symbol:"🔰",name:"beginner",width:"+0.6ex",textOnly:!1},{symbol:"♻️",name:"recycle",width:"+0.6ex",textOnly:!1},{symbol:"✅",name:"white_check_mark",width:"+0.6ex",textOnly:!1},{symbol:"💹",name:"chart",width:"+0.6ex",textOnly:!1},{symbol:"❇️",name:"sparkle",width:"+0.6ex",textOnly:!1},{symbol:"✳️",name:"eight_spoked_asterisk",width:"+0.6ex",textOnly:!1},{symbol:"❎",name:"negative_squared_cross_mark",width:"+0.6ex",textOnly:!1},{symbol:"🌐",name:"globe_with_meridians",width:"+0.6ex",textOnly:!1},{symbol:"💠",name:"diamond_shape_with_a_dot_inside",width:"+0.6ex",textOnly:!1},{symbol:"Ⓜ️",name:"m",width:"+0.6ex",textOnly:!1},{symbol:"🌀",name:"cyclone",width:"+0.6ex",textOnly:!1},{symbol:"💤",name:"zzz",width:"+0.6ex",textOnly:!1},{symbol:"🏧",name:"atm",width:"+0.6ex",textOnly:!1},{symbol:"🚾",name:"wc",width:"+0.6ex",textOnly:!1},{symbol:"♿️",name:"wheelchair",width:"+0.6ex",textOnly:!1},{symbol:"🅿️",name:"parking",width:"+0.6ex",textOnly:!0},{symbol:"🈂️",name:"sa",width:"+0.6ex",textOnly:!0},{symbol:"🛂",name:"passport_control",width:"+0.6ex",textOnly:!1},{symbol:"🛃",name:"customs",width:"+0.6ex",textOnly:!1},{symbol:"🛄",name:"baggage_claim",width:"+0.6ex",textOnly:!1},{symbol:"🛅",name:"left_luggage",width:"+0.6ex",textOnly:!1},{symbol:"🚹",name:"mens",width:"+0.6ex",textOnly:!1},{symbol:"🚺",name:"womens",width:"+0.6ex",textOnly:!1},{symbol:"🚼",name:"baby_symbol",width:"+0.6ex",textOnly:!1},{symbol:"🚻",name:"restroom",width:"+0.6ex",textOnly:!1},{symbol:"🚮",name:"put_litter_in_its_place",width:"+0.6ex",textOnly:!1},{symbol:"🎦",name:"cinema",width:"+0.6ex",textOnly:!1},{symbol:"📶",name:"signal_strength",width:"+0.6ex",textOnly:!1},{symbol:"🈁",name:"koko",width:"+0.6ex",textOnly:!1},{symbol:"🔣",name:"symbols",width:"+0.6ex",textOnly:!1},{symbol:"ℹ️",name:"information_source",width:"+0.6ex",textOnly:!1},{symbol:"🔤",name:"abc",width:"+0.6ex",textOnly:!1},{symbol:"🔡",name:"abcd",width:"+0.6ex",textOnly:!1},{symbol:"🔠",name:"capital_abcd",width:"+0.6ex",textOnly:!1},{symbol:"🆖",name:"ng",width:"+0.6ex",textOnly:!1},{symbol:"🆗",name:"ok",width:"+0.6ex",textOnly:!1},{symbol:"🆙",name:"up",width:"+0.6ex",textOnly:!1},{symbol:"🆒",name:"cool",width:"+0.6ex",textOnly:!1},{symbol:"🆕",name:"new",width:"+0.6ex",textOnly:!1},{symbol:"🆓",name:"free",width:"+0.6ex",textOnly:!1},{symbol:"0️⃣",name:"zero",width:"+0.6ex",textOnly:!0},{symbol:"1️⃣",name:"one",width:"+0.6ex",textOnly:!0},{symbol:"2️⃣",name:"two",width:"+0.6ex",textOnly:!0},{symbol:"3️⃣",name:"three",width:"+0.6ex",textOnly:!0},{symbol:"4️⃣",name:"four",width:"+0.6ex",textOnly:!0},{symbol:"5️⃣",name:"five",width:"+0.6ex",textOnly:!0},{symbol:"6️⃣",name:"six",width:"+0.6ex",textOnly:!0},{symbol:"7️⃣",name:"seven",width:"+0.6ex",textOnly:!0},{symbol:"8️⃣",name:"eight",width:"+0.6ex",textOnly:!0},{symbol:"9️⃣",name:"nine",width:"+0.6ex",textOnly:!0},{symbol:"🔟",name:"keycap_ten",width:"+0.6ex",textOnly:!1},{symbol:"#️⃣",name:"hash",width:"+0.6ex",textOnly:!0},{symbol:"*️⃣",name:"asterisk",width:"+0.6ex",textOnly:!0},{symbol:"▶️",name:"arrow_forward",width:"+0.6ex",textOnly:!1},{symbol:"⏸",name:"pause_button",width:"+0.6ex",textOnly:!1},{symbol:"⏯",name:"play_or_pause_button",width:"+0.6ex",textOnly:!1},{symbol:"⏹",name:"stop_button",width:"+0.6ex",textOnly:!1},{symbol:"⏺",name:"record_button",width:"+0.6ex",textOnly:!1},{symbol:"⏭",name:"next_track_button",width:"+0.6ex",textOnly:!1},{symbol:"⏮",name:"previous_track_button",width:"+0.6ex",textOnly:!1},{symbol:"⏩",name:"fast_forward",width:"+0.6ex",textOnly:!1},{symbol:"⏪",name:"rewind",width:"+0.6ex",textOnly:!1},{symbol:"⏫",name:"arrow_double_up",width:"+0.6ex",textOnly:!1},{symbol:"⏬",name:"arrow_double_down",width:"+0.6ex",textOnly:!1},{symbol:"◀️",name:"arrow_backward",width:"+0.6ex",textOnly:!1},{symbol:"🔼",name:"arrow_up_small",width:"+0.6ex",textOnly:!1},{symbol:"🔽",name:"arrow_down_small",width:"+0.6ex",textOnly:!1},{symbol:"➡️",name:"arrow_right",width:"+0.6ex",textOnly:!1},{symbol:"⬅️",name:"arrow_left",width:"+0.6ex",textOnly:!1},{symbol:"⬆️",name:"arrow_up",width:"+0.6ex",textOnly:!1},{symbol:"⬇️",name:"arrow_down",width:"+0.6ex",textOnly:!1},{symbol:"↗️",name:"arrow_upper_right",width:"+0.6ex",textOnly:!1},{symbol:"↘️",name:"arrow_lower_right",width:"+0.6ex",textOnly:!1},{symbol:"↙️",name:"arrow_lower_left",width:"+0.6ex",textOnly:!1},{symbol:"↖️",name:"arrow_upper_left",width:"+0.6ex",textOnly:!1},{symbol:"↕️",name:"arrow_up_down",width:"+0.6ex",textOnly:!1},{symbol:"↔️",name:"left_right_arrow",width:"+0.6ex",textOnly:!1},{symbol:"↪️",name:"arrow_right_hook",width:"+0.6ex",textOnly:!1},{symbol:"↩️",name:"leftwards_arrow_with_hook",width:"+0.6ex",textOnly:!1},{symbol:"⤴️",name:"arrow_heading_up",width:"+0.6ex",textOnly:!1},{symbol:"⤵️",name:"arrow_heading_down",width:"+0.6ex",textOnly:!1},{symbol:"🔀",name:"twisted_rightwards_arrows",width:"+0.6ex",textOnly:!1},{symbol:"🔁",name:"repeat",width:"+0.6ex",textOnly:!1},{symbol:"🔂",name:"repeat_one",width:"+0.6ex",textOnly:!1},{symbol:"🔄",name:"arrows_counterclockwise",width:"+0.6ex",textOnly:!1},{symbol:"🔃",name:"arrows_clockwise",width:"+0.6ex",textOnly:!1},{symbol:"🎵",name:"musical_note",width:"+0.6ex",textOnly:!1},{symbol:"🎶",name:"notes",width:"+0.6ex",textOnly:!1},{symbol:"➕",name:"heavy_plus_sign",width:"+0.6ex",textOnly:!1},{symbol:"➖",name:"heavy_minus_sign",width:"+0.6ex",textOnly:!1},{symbol:"➗",name:"heavy_division_sign",width:"+0.6ex",textOnly:!1},{symbol:"✖️",name:"heavy_multiplication_x",width:"+0.6ex",textOnly:!1},{symbol:"💲",name:"heavy_dollar_sign",width:"+0.6ex",textOnly:!1},{symbol:"💱",name:"currency_exchange",width:"+0.6ex",textOnly:!1},{symbol:"™️",name:"tm",width:"+0.6ex",textOnly:!1},{symbol:"©️",name:"copyright",width:"+0.6ex",textOnly:!1},{symbol:"®️",name:"registered",width:"+0.6ex",textOnly:!1},{symbol:"〰️",name:"wavy_dash",width:"+0.6ex",textOnly:!1},{symbol:"➰",name:"curly_loop",width:"+0.6ex",textOnly:!1},{symbol:"➿",name:"loop",width:"+0.6ex",textOnly:!1},{symbol:"🔚",name:"end",width:"+0.6ex",textOnly:!1},{symbol:"🔙",name:"back",width:"+0.6ex",textOnly:!1},{symbol:"🔛",name:"on",width:"+0.6ex",textOnly:!1},{symbol:"🔝",name:"top",width:"+0.6ex",textOnly:!1},{symbol:"🔜",name:"soon",width:"+0.6ex",textOnly:!1},{symbol:"✔️",name:"heavy_check_mark",width:"+0.6ex",textOnly:!1},{symbol:"☑️",name:"ballot_box_with_check",width:"+0.6ex",textOnly:!1},{symbol:"🔘",name:"radio_button",width:"+0.6ex",textOnly:!1},{symbol:"⚪️",name:"white_circle",width:"+0.6ex",textOnly:!1},{symbol:"⚫️",name:"black_circle",width:"+0.6ex",textOnly:!1},{symbol:"🔴",name:"red_circle",width:"+0.6ex",textOnly:!1},{symbol:"🔵",name:"large_blue_circle",width:"+0.6ex",textOnly:!1},{symbol:"🔺",name:"small_red_triangle",width:"+0.6ex",textOnly:!1},{symbol:"🔻",name:"small_red_triangle_down",width:"+0.6ex",textOnly:!1},{symbol:"🔸",name:"small_orange_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔹",name:"small_blue_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔶",name:"large_orange_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔷",name:"large_blue_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔳",name:"white_square_button",width:"+0.6ex",textOnly:!1},{symbol:"🔲",name:"black_square_button",width:"+0.6ex",textOnly:!1},{symbol:"▪️",name:"black_small_square",width:"+0.6ex",textOnly:!1},{symbol:"▫️",name:"white_small_square",width:"+0.6ex",textOnly:!1},{symbol:"◾️",name:"black_medium_small_square",width:"+0.6ex",textOnly:!1},{symbol:"◽️",name:"white_medium_small_square",width:"+0.6ex",textOnly:!1},{symbol:"◼️",name:"black_medium_square",width:"+0.6ex",textOnly:!1},{symbol:"◻️",name:"white_medium_square",width:"+0.6ex",textOnly:!1},{symbol:"⬛️",name:"black_large_square",width:"+0.6ex",textOnly:!1},{symbol:"⬜️",name:"white_large_square",width:"+0.6ex",textOnly:!1},{symbol:"🔈",name:"speaker",width:"+0.6ex",textOnly:!1},{symbol:"🔇",name:"mute",width:"+0.6ex",textOnly:!1},{symbol:"🔉",name:"sound",width:"+0.6ex",textOnly:!1},{symbol:"🔊",name:"loud_sound",width:"+0.6ex",textOnly:!1},{symbol:"🔔",name:"bell",width:"+0.6ex",textOnly:!1},{symbol:"🔕",name:"no_bell",width:"+0.6ex",textOnly:!1},{symbol:"📣",name:"mega",width:"+0.6ex",textOnly:!1},{symbol:"📢",name:"loudspeaker",width:"+0.6ex",textOnly:!1},{symbol:"👁‍🗨",name:"eye_speech_bubble",width:"+0.6ex",textOnly:!0},{symbol:"💬",name:"speech_balloon",width:"+0.6ex",textOnly:!1},{symbol:"💭",name:"thought_balloon",width:"+0.6ex",textOnly:!1},{symbol:"🗯",name:"right_anger_bubble",width:"+0.6ex",textOnly:!1},{symbol:"♠️",name:"spades",width:"+0.6ex",textOnly:!1},{symbol:"♣️",name:"clubs",width:"+0.6ex",textOnly:!1},{symbol:"♥️",name:"hearts",width:"+0.6ex",textOnly:!1},{symbol:"♦️",name:"diamonds",width:"+0.6ex",textOnly:!1},{symbol:"🃏",name:"black_joker",width:"+0.6ex",textOnly:!1},{symbol:"🎴",name:"flower_playing_cards",width:"+0.6ex",textOnly:!1},{symbol:"🀄️",name:"mahjong",width:"+0.6ex",textOnly:!0},{symbol:"🕐",name:"clock1",width:"+0.6ex",textOnly:!1},{symbol:"🕑",name:"clock2",width:"+0.6ex",textOnly:!1},{symbol:"🕒",name:"clock3",width:"+0.6ex",textOnly:!1},{symbol:"🕓",name:"clock4",width:"+0.6ex",textOnly:!1},{symbol:"🕔",name:"clock5",width:"+0.6ex",textOnly:!1},{symbol:"🕕",name:"clock6",width:"+0.6ex",textOnly:!1},{symbol:"🕖",name:"clock7",width:"+0.6ex",textOnly:!1},{symbol:"🕗",name:"clock8",width:"+0.6ex",textOnly:!1},{symbol:"🕘",name:"clock9",width:"+0.6ex",textOnly:!1},{symbol:"🕙",name:"clock10",width:"+0.6ex",textOnly:!1},{symbol:"🕚",name:"clock11",width:"+0.6ex",textOnly:!1},{symbol:"🕛",name:"clock12",width:"+0.6ex",textOnly:!1},{symbol:"🕜",name:"clock130",width:"+0.6ex",textOnly:!1},{symbol:"🕝",name:"clock230",width:"+0.6ex",textOnly:!1},{symbol:"🕞",name:"clock330",width:"+0.6ex",textOnly:!1},{symbol:"🕟",name:"clock430",width:"+0.6ex",textOnly:!1},{symbol:"🕠",name:"clock530",width:"+0.6ex",textOnly:!1},{symbol:"🕡",name:"clock630",width:"+0.6ex",textOnly:!1},{symbol:"🕢",name:"clock730",width:"+0.6ex",textOnly:!1},{symbol:"🕣",name:"clock830",width:"+0.6ex",textOnly:!1},{symbol:"🕤",name:"clock930",width:"+0.6ex",textOnly:!1},{symbol:"🕥",name:"clock1030",width:"+0.6ex",textOnly:!1},{symbol:"🕦",name:"clock1130",width:"+0.6ex",textOnly:!1},{symbol:"🕧",name:"clock1230",width:"+0.6ex",textOnly:!1},{symbol:"🏳️",name:"white_flag",width:"+0.6ex",textOnly:!0},{symbol:"🏴",name:"black_flag",width:"+0.6ex",textOnly:!1},{symbol:"🏁",name:"checkered_flag",width:"+0.6ex",textOnly:!1},{symbol:"🚩",name:"triangular_flag_on_post",width:"+0.6ex",textOnly:!1},{symbol:"🏳️‍🌈",name:"rainbow_flag",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇫",name:"afghanistan",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇽",name:"aland_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇱",name:"albania",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇿",name:"algeria",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇸",name:"american_samoa",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇩",name:"andorra",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇴",name:"angola",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇮",name:"anguilla",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇶",name:"antarctica",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇬",name:"antigua_barbuda",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇷",name:"argentina",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇲",name:"armenia",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇼",name:"aruba",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇺",name:"australia",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇹",name:"austria",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇿",name:"azerbaijan",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇸",name:"bahamas",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇭",name:"bahrain",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇩",name:"bangladesh",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇧",name:"barbados",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇾",name:"belarus",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇪",name:"belgium",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇿",name:"belize",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇯",name:"benin",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇲",name:"bermuda",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇹",name:"bhutan",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇴",name:"bolivia",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇶",name:"caribbean_netherlands",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇦",name:"bosnia_herzegovina",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇼",name:"botswana",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇷",name:"brazil",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇴",name:"british_indian_ocean_territory",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇬",name:"british_virgin_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇳",name:"brunei",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇬",name:"bulgaria",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇫",name:"burkina_faso",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇮",name:"burundi",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇻",name:"cape_verde",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇭",name:"cambodia",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇲",name:"cameroon",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇦",name:"canada",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇨",name:"canary_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇾",name:"cayman_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇫",name:"central_african_republic",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇩",name:"chad",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇱",name:"chile",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇳",name:"cn",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇽",name:"christmas_island",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇨",name:"cocos_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇴",name:"colombia",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇲",name:"comoros",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇬",name:"congo_brazzaville",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇩",name:"congo_kinshasa",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇰",name:"cook_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇷",name:"costa_rica",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇮",name:"cote_divoire",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇷",name:"croatia",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇺",name:"cuba",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇼",name:"curacao",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇾",name:"cyprus",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇿",name:"czech_republic",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇰",name:"denmark",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇯",name:"djibouti",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇲",name:"dominica",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇴",name:"dominican_republic",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇨",name:"ecuador",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇬",name:"egypt",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇻",name:"el_salvador",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇶",name:"equatorial_guinea",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇷",name:"eritrea",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇪",name:"estonia",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇹",name:"ethiopia",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇺",name:"eu",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇺",name:"european_union",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇰",name:"falkland_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇴",name:"faroe_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇯",name:"fiji",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇮",name:"finland",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇷",name:"fr",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇫",name:"french_guiana",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇫",name:"french_polynesia",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇫",name:"french_southern_territories",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇦",name:"gabon",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇲",name:"gambia",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇪",name:"georgia",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇪",name:"de",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇭",name:"ghana",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇮",name:"gibraltar",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇷",name:"greece",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇱",name:"greenland",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇩",name:"grenada",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇵",name:"guadeloupe",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇺",name:"guam",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇹",name:"guatemala",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇬",name:"guernsey",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇳",name:"guinea",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇼",name:"guinea_bissau",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇾",name:"guyana",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇹",name:"haiti",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇳",name:"honduras",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇰",name:"hong_kong",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇺",name:"hungary",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇸",name:"iceland",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇳",name:"india",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇩",name:"indonesia",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇷",name:"iran",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇶",name:"iraq",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇪",name:"ireland",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇲",name:"isle_of_man",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇱",name:"israel",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇹",name:"it",width:"+0.6ex",textOnly:!0},{symbol:"🇯🇲",name:"jamaica",width:"+0.6ex",textOnly:!0},{symbol:"🇯🇵",name:"jp",width:"+0.6ex",textOnly:!0},{symbol:"🎌",name:"crossed_flags",width:"+0.6ex",textOnly:!1},{symbol:"🇯🇪",name:"jersey",width:"+0.6ex",textOnly:!0},{symbol:"🇯🇴",name:"jordan",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇿",name:"kazakhstan",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇪",name:"kenya",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇮",name:"kiribati",width:"+0.6ex",textOnly:!0},{symbol:"🇽🇰",name:"kosovo",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇼",name:"kuwait",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇬",name:"kyrgyzstan",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇦",name:"laos",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇻",name:"latvia",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇧",name:"lebanon",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇸",name:"lesotho",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇷",name:"liberia",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇾",name:"libya",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇮",name:"liechtenstein",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇹",name:"lithuania",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇺",name:"luxembourg",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇴",name:"macau",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇰",name:"macedonia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇬",name:"madagascar",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇼",name:"malawi",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇾",name:"malaysia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇻",name:"maldives",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇱",name:"mali",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇹",name:"malta",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇭",name:"marshall_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇶",name:"martinique",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇷",name:"mauritania",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇺",name:"mauritius",width:"+0.6ex",textOnly:!0},{symbol:"🇾🇹",name:"mayotte",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇽",name:"mexico",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇲",name:"micronesia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇩",name:"moldova",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇨",name:"monaco",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇳",name:"mongolia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇪",name:"montenegro",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇸",name:"montserrat",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇦",name:"morocco",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇿",name:"mozambique",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇲",name:"myanmar",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇦",name:"namibia",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇷",name:"nauru",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇵",name:"nepal",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇱",name:"netherlands",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇨",name:"new_caledonia",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇿",name:"new_zealand",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇮",name:"nicaragua",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇪",name:"niger",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇬",name:"nigeria",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇺",name:"niue",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇫",name:"norfolk_island",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇵",name:"northern_mariana_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇵",name:"north_korea",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇴",name:"norway",width:"+0.6ex",textOnly:!0},{symbol:"🇴🇲",name:"oman",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇰",name:"pakistan",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇼",name:"palau",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇸",name:"palestinian_territories",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇦",name:"panama",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇬",name:"papua_new_guinea",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇾",name:"paraguay",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇪",name:"peru",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇭",name:"philippines",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇳",name:"pitcairn_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇱",name:"poland",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇹",name:"portugal",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇷",name:"puerto_rico",width:"+0.6ex",textOnly:!0},{symbol:"🇶🇦",name:"qatar",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇪",name:"reunion",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇴",name:"romania",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇺",name:"ru",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇼",name:"rwanda",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇱",name:"st_barthelemy",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇭",name:"st_helena",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇳",name:"st_kitts_nevis",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇨",name:"st_lucia",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇲",name:"st_pierre_miquelon",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇨",name:"st_vincent_grenadines",width:"+0.6ex",textOnly:!0},{symbol:"🇼🇸",name:"samoa",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇲",name:"san_marino",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇹",name:"sao_tome_principe",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇦",name:"saudi_arabia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇳",name:"senegal",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇸",name:"serbia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇨",name:"seychelles",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇱",name:"sierra_leone",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇬",name:"singapore",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇽",name:"sint_maarten",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇰",name:"slovakia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇮",name:"slovenia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇧",name:"solomon_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇴",name:"somalia",width:"+0.6ex",textOnly:!0},{symbol:"🇿🇦",name:"south_africa",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇸",name:"south_georgia_south_sandwich_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇷",name:"kr",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇸",name:"south_sudan",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇸",name:"es",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇰",name:"sri_lanka",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇩",name:"sudan",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇷",name:"suriname",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇿",name:"swaziland",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇪",name:"sweden",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇭",name:"switzerland",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇾",name:"syria",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇼",name:"taiwan",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇯",name:"tajikistan",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇿",name:"tanzania",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇭",name:"thailand",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇱",name:"timor_leste",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇬",name:"togo",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇰",name:"tokelau",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇴",name:"tonga",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇹",name:"trinidad_tobago",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇳",name:"tunisia",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇷",name:"tr",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇲",name:"turkmenistan",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇨",name:"turks_caicos_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇻",name:"tuvalu",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇬",name:"uganda",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇦",name:"ukraine",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇪",name:"united_arab_emirates",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇧",name:"gb",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇧",name:"uk",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇸",name:"us",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇮",name:"us_virgin_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇾",name:"uruguay",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇿",name:"uzbekistan",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇺",name:"vanuatu",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇦",name:"vatican_city",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇪",name:"venezuela",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇳",name:"vietnam",width:"+0.6ex",textOnly:!0},{symbol:"🇼🇫",name:"wallis_futuna",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇭",name:"western_sahara",width:"+0.6ex",textOnly:!0},{symbol:"🇾🇪",name:"yemen",width:"+0.6ex",textOnly:!0},{symbol:"🇿🇲",name:"zambia",width:"+0.6ex",textOnly:!0},{symbol:"🇿🇼",name:"zimbabwe",width:"+0.6ex",textOnly:!0}]},7337:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.faIcons=void 0,e.faIcons=[{alias:"js",name:"fa_js",tags:["color_js"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" fill="currentColor"/></svg>'},{alias:"jsfiddle",name:"fa_jsfiddle",tags:["color_jsfiddle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M510.6 237.5c-4.7-2.6-5.7-5.7-6.4-10.8-2.4-16.5-3.5-33.6-9.1-49.1-35.9-100-154-143.4-246.8-91.6-27.4 15.3-49 36.4-65.5 63.9-3.2-1.5-5.5-2.7-7.8-3.7-30.1-12.4-59-10.1-85.3 9.2-25.5 18.7-36.4 44.5-32.7 76.4 .4 3-2 7.6-4.5 9.5-39.7 30-56 78.1-41.9 124.6 13.8 45.6 57.5 79.8 105.6 81.4 30.3 1 60.6 .5 91 .5 84 0 168.1 .5 252.1-.5 52.7-.6 96.1-36.9 108.2-87.3 11.5-48.1-11.1-97.3-56.8-122.6zm21.1 156.9c-18.2 22.4-42.3 35.3-71.3 35.7-56.9 .8-113.8 .2-170.7 .2 0 .7-163 .2-163.7 .2-43.9-.3-76.7-19.8-95.2-60-18.9-41.2-4-90.8 34.2-116.1 9.2-6.1 12.5-11.6 10.1-23.1-5.5-26.4 4.5-48 26.4-63 23-15.7 47.4-16.1 72-3.1 10.3 5.5 14.6 11.6 22.2-2.5 14.2-26.4 34.6-46.7 60.7-61.3 97.5-54.4 228.4 7.6 230.2 132.7 .1 8.2 2.4 12.4 9.8 15.9 57.6 26.8 74.5 96.1 35.1 144.5zm-87.8-80.5c-5.8 31.2-34.6 55.1-66.7 55.1-17 0-32.1-6.5-44.1-17.7-27.7-25.7-71.1-75-95.9-93.4-20.1-14.9-42-12.3-60.3 3.8-50 44.1 15.9 121.8 67.1 77.2 4.5-4 7.8-9.5 12.7-12.8 8.2-5.5 20.8-.9 13.2 10.6-17.4 26.3-49.3 38.2-78.9 29.3-28.9-8.7-48.8-36-48.6-70.2 1.2-22.5 12.4-43.1 35.4-56 22.6-12.6 46.4-13.1 67 2.5C295.7 280.7 320.5 324 352.2 343.5c24.6 15.1 54.3 7.4 68.8-17.5 28.8-49.2-34.6-105-78.9-63.5-4 3.7-6.9 8.9-11.4 11.7-11 6.8-17.3-4.1-12.8-10.4 20.7-28.6 50.5-40.4 83.3-28.2 31.4 11.7 49.1 44.4 42.8 78.2z" fill="currentColor"/></svg>'},{alias:"squared_js",name:"fa_square_js",tags:["color_squared_js"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96zM180.9 444.9c-33.7 0-53.2-17.4-63.2-38.5L152 385.7c6.6 11.7 12.6 21.6 27.1 21.6c13.8 0 22.6-5.4 22.6-26.5V237.7h42.1V381.4c0 43.6-25.6 63.5-62.9 63.5zm85.8-43L301 382.1c9 14.7 20.8 25.6 41.5 25.6c17.4 0 28.6-8.7 28.6-20.8c0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5c0-31.6 24.1-55.6 61.6-55.6c26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18c-12.3 0-20.1 7.8-20.1 18c0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2c0 37.8-29.8 58.6-69.7 58.6c-39.1 0-64.4-18.6-76.7-43z" fill="currentColor"/></svg>'},{alias:"node_js",name:"fa_node_js",tags:["color_node_js"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6 .4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2 .7 376.3 .7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8 .5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" fill="currentColor"/></svg>'},{alias:"node",name:"fa_node",tags:["color_node"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4 .1l14.8 8.8c.5 .3 1.3 .3 1.8 0L375 408c.5-.3 .9-.9 .9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6 .3-.9 1-.9 1.6v66.7c0 .6 .4 1.2 .9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9 .7-1.7 1.7-1.7h7.3c.9 0 1.7 .7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6 .2 .8 .8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5 .3-.4 .5-.8 .4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7 .7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7 .1 1.8 1.2 2.1 2.8 .1 1 .3 2.7 .6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3 .4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3 .7 2.5 1.8 3.2 1.1 .7 2.5 .7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6 .3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1 .7 2.6 .7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6 .3-.9 .9-.9 1.6v24.3c0 .7 .4 1.3 .9 1.6l21 12.1c.6 .3 1.3 .3 1.8 0l21-12.1c.6-.3 .9-.9 .9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3 .7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1 .7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4 .3-.7 .7-.7 1.2v13.6c0 .5 .3 1 .7 1.2l11.8 6.8c.4 .3 1 .3 1.4 0L584 235c.4-.3 .7-.7 .7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7 .1-.5 .2-1.1 .2-1.7zm-74.3-124.9l-.8 .5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" fill="currentColor"/></svg>'},{alias:"vuejs",name:"fa_vuejs",tags:["color_vuejs"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" fill="currentColor"/></svg>'},{alias:"code_branch",name:"fa_code_branch",tags:["color_code_branch"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3l0 87.8c18.8-10.9 40.7-17.1 64-17.1l96 0c35.3 0 64-28.7 64-64l0-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 6.7c0 70.7-57.3 128-128 128l-96 0c-35.3 0-64 28.7-64 64l0 6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3l0-6.7 0-198.7C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" fill="currentColor"/></svg>'},{alias:"code",name:"fa_code",tags:["color_code"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z" fill="currentColor"/></svg>'},{alias:"bug",name:"fa_bug",tags:["color_bug"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 0c53 0 96 43 96 96l0 3.6c0 15.7-12.7 28.4-28.4 28.4l-135.1 0c-15.7 0-28.4-12.7-28.4-28.4l0-3.6c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4l112 0c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5l64.3 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6L272 240c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 239.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.3 0c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" fill="currentColor"/></svg>'},{alias:"network_wired",name:"fa_network_wired",tags:["color_network_wired"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M256 64l128 0 0 64-128 0 0-64zM240 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l48 0 0 32L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0 0 32-48 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l160 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0-32 256 0 0 32-48 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l160 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0-32 96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-256 0 0-32 48 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48L240 0zM96 448l0-64 128 0 0 64L96 448zm320-64l128 0 0 64-128 0 0-64z" fill="currentColor"/></svg>'},{alias:"terminal",name:"fa_terminal",tags:["color_terminal"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6zM256 416l288 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-288 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z" fill="currentColor"/></svg>'},{alias:"laptop_code",name:"fa_laptop_code",tags:["color_laptop_code"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M64 96c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 256-64 0 0-256L128 96l0 256-64 0L64 96zM0 403.2C0 392.6 8.6 384 19.2 384l601.6 0c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8L76.8 480C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" fill="currentColor"/></svg>'},{alias:"github",name:"fa_github",tags:["color_github"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" fill="currentColor"/></svg>'},{alias:"wordpress",name:"fa_wordpress",tags:["color_wordpress"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8 .9 0 1.8 .1 2.8 .2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7 .3 13.7 .3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" fill="currentColor"/></svg>'},{alias:"apple",name:"fa_apple",tags:["color_apple"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" fill="currentColor"/></svg>'},{alias:"android",name:"fa_android",tags:["color_android"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M420.6 301.9a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m-265.1 0a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m273.7-144.5 47.9-83a10 10 0 1 0 -17.3-10h0l-48.5 84.1a301.3 301.3 0 0 0 -246.6 0L116.2 64.5a10 10 0 1 0 -17.3 10h0l47.9 83C64.5 202.2 8.2 285.6 0 384H576c-8.2-98.5-64.5-181.8-146.9-226.6" fill="currentColor"/></svg>'},{alias:"html5",name:"fa_html5",tags:["color_html5"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" fill="currentColor"/></svg>'},{alias:"react",name:"fa_react",tags:["color_react"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1 .9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2 .6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6 .4 19.5 .6 29.5 .6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8 .9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" fill="currentColor"/></svg>'},{alias:"java",name:"fa_java",tags:["color_java"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M277.7 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.8 0 242.8 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.2 12.2 0 0 1 -2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.3 17.3 0 0 0 -8.2 6.3 70.5 70.5 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6 .7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.8 509.4 401 461.3 348 437.4zM124.4 396c-78.7 22 47.9 67.4 148.1 24.5a185.9 185.9 0 0 1 -28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.6 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.4 60.4 0 0 1 -21.1-12.8z" fill="currentColor"/></svg>'},{alias:"python",name:"fa_python",tags:["color_python"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4 .1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8 .1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3 .1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" fill="currentColor"/></svg>'},{alias:"linux",name:"fa_linux",tags:["color_linux"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5 .2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4 .2-.8 .7-.6 1.1 .3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6 .2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5 .1-1.3 .6-3.4 1.5-3.2 2.9 .1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7 .1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9 .6 7.9 1.2 11.8 1.2 8.1 2.5 15.7 .8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1 .6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3 .4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4 .7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6 .6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7 .8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4 .6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1 .8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7 .4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6 .8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1 .3-.2 .7-.3 1-.5 .8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" fill="currentColor"/></svg>'},{alias:"microsoft",name:"fa_microsoft",tags:["color_microsoft"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" fill="currentColor"/></svg>'},{alias:"yarn",name:"fa_yarn",tags:["color_yarn"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4 .1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3 .8-10.8-5.7 .8-19.2 .8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3 .8 1.4 13.7 .8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2 .9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4 .2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" fill="currentColor"/></svg>'},{alias:"ubuntu",name:"fa_ubuntu",tags:["color_ubuntu"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M469.2 75A75.6 75.6 0 1 0 317.9 75a75.6 75.6 0 1 0 151.2 0zM154.2 240.7A75.6 75.6 0 1 0 3 240.7a75.6 75.6 0 1 0 151.2 0zM57 346C75.6 392.9 108 433 150 461.1s91.5 42.6 142 41.7c-14.7-18.6-22.9-41.5-23.2-65.2c-6.8-.9-13.3-2.1-19.5-3.4c-26.8-5.7-51.9-17.3-73.6-34s-39.3-38.1-51.7-62.5c-20.9 9.9-44.5 12.8-67.1 8.2zm395.1 89.8a75.6 75.6 0 1 0 -151.2 0 75.6 75.6 0 1 0 151.2 0zM444 351.6c18.5 14.8 31.6 35.2 37.2 58.2c33.3-41.3 52.6-92.2 54.8-145.2s-12.5-105.4-42.2-149.4c-8.6 21.5-24 39.6-43.8 51.6c15.4 28.6 22.9 60.8 21.9 93.2s-10.7 64-28 91.6zM101.1 135.4c12.4 2.7 24.3 7.5 35.1 14.3c16.6-24.2 38.9-44.1 64.8-58S255.8 70.4 285.2 70c.2-5.9 .9-11.9 2-17.7c3.6-16.7 11.1-32.3 21.8-45.5c-47.7-3.8-95.4 6-137.6 28.5S94.3 91.7 70.8 133.4c2.7-.2 5.3-.3 8-.3c7.5 0 15 .8 22.4 2.3z" fill="currentColor"/></svg>'},{alias:"swift",name:"fa_swift",tags:["color_swift"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M448 156.1c0-4.5-.1-9-.2-13.5a196.3 196.3 0 0 0 -2.6-29.4 99.6 99.6 0 0 0 -9.2-28A94.1 94.1 0 0 0 394.8 44a99.2 99.2 0 0 0 -28-9.2 195 195 0 0 0 -29.4-2.6c-4.5-.1-9-.2-13.5-.2H124.1c-4.5 0-9 .1-13.5 .2-2.5 .1-4.9 .2-7.4 .3a171.7 171.7 0 0 0 -22.1 2.3 103.1 103.1 0 0 0 -21.2 6.1q-3.5 1.5-6.8 3.1a94.7 94.7 0 0 0 -18.4 12.3c-1.9 1.6-3.7 3.3-5.4 5A93.9 93.9 0 0 0 12 85.2a99.5 99.5 0 0 0 -9.2 28 196.3 196.3 0 0 0 -2.5 29.4c-.1 4.5-.2 9-.2 13.5v199.8c0 4.5 .1 9 .2 13.5a196.1 196.1 0 0 0 2.6 29.4 99.3 99.3 0 0 0 9.2 28A94.3 94.3 0 0 0 53.2 468a99.5 99.5 0 0 0 28 9.2 195 195 0 0 0 29.4 2.6c4.5 .1 9 .2 13.5 .2H323.9c4.5 0 9-.1 13.5-.2a196.6 196.6 0 0 0 29.4-2.6 99.6 99.6 0 0 0 28-9.2A94.2 94.2 0 0 0 436 426.8a99.3 99.3 0 0 0 9.2-28 194.8 194.8 0 0 0 2.6-29.4c.1-4.5 .2-9 .2-13.5V172.1c0-5.4 0-10.7 0-16.1zm-69.9 241c-20-38.9-57.2-29.3-76.3-19.5-1.7 1-3.5 2-5.3 3l-.4 .3c-39.5 21-92.5 22.5-145.9-.4A234.6 234.6 0 0 1 45 290.1a230.6 230.6 0 0 0 39.2 23.4c56.4 26.4 113 24.5 153 0-57-43.9-104.6-101-141.1-147.2a197.1 197.1 0 0 1 -18.8-25.9c43.7 40 112.7 90.2 137.5 104.1-52.6-55.5-98.9-123.9-96.7-121.7 82.8 83.4 159.2 130.6 159.2 130.6 2.9 1.6 5 2.9 6.7 4a127.4 127.4 0 0 0 4.2-12.5c13.2-48.3-1.7-103.6-35.3-149.2C329.6 141.8 375 229.3 356.4 303.4c-.4 1.7-1 3.4-1.4 5.1 38.5 47.4 28 98.2 23.1 88.6z" fill="currentColor"/></svg>'},{alias:"safari",name:"fa_safari",tags:["color_safari"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M274.7 274.7l-37.4-37.4L166 346zM256 8C119 8 8 119 8 256S119 504 256 504 504 393 504 256 393 8 256 8zM411.9 182.8l14.8-6.1A8 8 0 0 1 437.1 181h0a8 8 0 0 1 -4.3 10.5L418 197.6a8 8 0 0 1 -10.5-4.3h0A8 8 0 0 1 411.9 182.8zM314.4 94l6.1-14.8A8 8 0 0 1 331 74.9h0a8 8 0 0 1 4.3 10.5l-6.1 14.8a8 8 0 0 1 -10.5 4.3h0A8 8 0 0 1 314.4 94zM256 60h0a8 8 0 0 1 8 8V84a8 8 0 0 1 -8 8h0a8 8 0 0 1 -8-8V68A8 8 0 0 1 256 60zM181 74.9a8 8 0 0 1 10.5 4.3L197.6 94a8 8 0 1 1 -14.8 6.1l-6.1-14.8A8 8 0 0 1 181 74.9zm-63.6 42.5h0a8 8 0 0 1 11.3 0L140 128.7A8 8 0 0 1 140 140h0a8 8 0 0 1 -11.3 0l-11.3-11.3A8 8 0 0 1 117.4 117.4zM60 256h0a8 8 0 0 1 8-8H84a8 8 0 0 1 8 8h0a8 8 0 0 1 -8 8H68A8 8 0 0 1 60 256zm40.2 73.2-14.8 6.1A8 8 0 0 1 74.9 331h0a8 8 0 0 1 4.3-10.5L94 314.4a8 8 0 0 1 10.5 4.3h0A8 8 0 0 1 100.2 329.2zm4.3-136h0A8 8 0 0 1 94 197.6l-14.8-6.1A8 8 0 0 1 74.9 181h0a8 8 0 0 1 10.5-4.3l14.8 6.1A8 8 0 0 1 104.5 193.2zM197.6 418l-6.1 14.8a8 8 0 0 1 -14.8-6.1l6.1-14.8A8 8 0 1 1 197.6 418zM264 444a8 8 0 0 1 -8 8h0a8 8 0 0 1 -8-8V428a8 8 0 0 1 8-8h0a8 8 0 0 1 8 8zm67-6.9h0a8 8 0 0 1 -10.5-4.3L314.4 418a8 8 0 0 1 4.3-10.5h0a8 8 0 0 1 10.5 4.3l6.1 14.8A8 8 0 0 1 331 437.1zm63.6-42.5h0a8 8 0 0 1 -11.3 0L372 383.3A8 8 0 0 1 372 372h0a8 8 0 0 1 11.3 0l11.3 11.3A8 8 0 0 1 394.6 394.6zM286.3 286.3 110.3 401.7 225.8 225.8 401.7 110.3zM437.1 331h0a8 8 0 0 1 -10.5 4.3l-14.8-6.1a8 8 0 0 1 -4.3-10.5h0A8 8 0 0 1 418 314.4l14.8 6.1A8 8 0 0 1 437.1 331zM444 264H428a8 8 0 0 1 -8-8h0a8 8 0 0 1 8-8h16a8 8 0 0 1 8 8h0A8 8 0 0 1 444 264z" fill="currentColor"/></svg>'},{alias:"sass",name:"fa_sass",tags:["color_sass"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M301.8 378.9c-.3 .6-.6 1.1 0 0zm249.1-87a131.2 131.2 0 0 0 -58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.3 5.9a122.8 122.8 0 0 0 -5.3 19.1c-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.9 77.3-42.1 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4 .8-.7 1.3-.9 1.7 .3-.5 .5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4 .3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.8-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8 61.8-23.8 109.9-90.1 95.8-145.6C386.5 18.3 293-.2 204.6 31.2c-52.7 18.7-109.7 48.1-150.7 86.4-48.7 45.6-56.5 85.3-53.3 101.9 11.4 58.9 92.6 97.3 125.1 125.7-1.6 .9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4 .7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5a201.2 201.2 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.3 .3 0 0 0 .1 .2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.2-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.7 450.1 270 450.1 270a201.2 201.2 0 0 0 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.5 79.5 0 0 0 21.6-11.1c12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zm-429.2 144.7c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9 .8-.5 1.2-.7 1.2-.7 .9-.6 1.9-1.1 2.9-1.7 8.3 30.4 .3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5 .1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5a36.2 36.2 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.9 34.4z" fill="currentColor"/></svg>'},{alias:"php",name:"fa_php",tags:["color_php"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" fill="currentColor"/></svg>'},{alias:"opera",name:"fa_opera",tags:["color_opera"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1 .3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" fill="currentColor"/></svg>'},{alias:"npm",name:"fa_npm",tags:["color_npm"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" fill="currentColor"/></svg>'},{alias:"joomla",name:"fa_joomla",tags:["color_joomla"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1 .6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6 .6 120.7 .6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" fill="currentColor"/></svg>'},{alias:"gulp",name:"fa_gulp",tags:["color_gulp"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512" height="1em"><path d="M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7 .9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3 .2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5 .9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9 .1-1.8 .3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6 .8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5 .6 .2 1.1 .4 1.6 .7 2.6 1.8 1.6 4.5 .3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3 .5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4 .5 3.2 1.5 1.7 2.2 1.3 4.5 .4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9 .9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2 .4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3 .5-.4 .9-.6 .6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3 .8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7 .2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3 .9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3 .2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8 .1 26.3 .4l12.6-48.7L228.1 .6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1 .1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2 .8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2 .1-.3l.2-.7c-1.8 .6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7 .1 13.9-1.6 13.9-3.7z" fill="currentColor"/></svg>'},{alias:"google_drive",name:"fa_google_drive",tags:["color_google_drive"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" fill="currentColor"/></svg>'},{alias:"gitkraken",name:"fa_gitkraken",tags:["color_gitkraken"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 592 512" height="1em"><path d="M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8 .4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" fill="currentColor"/></svg>'},{alias:"git",name:"fa_git",tags:["color_git"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M216.3 158.4H137C97 147.9 6.5 150.6 6.5 233.2c0 30.1 15 51.2 35 61-25.1 23-37 33.9-37 49.2 0 11 4.5 21.1 17.9 26.8C8.1 383.6 0 393.4 0 411.7c0 32.1 28.1 50.8 101.6 50.8 70.8 0 111.8-26.4 111.8-73.2 0-58.7-45.2-56.5-151.6-63l13.4-21.6c27.3 7.6 118.7 10 118.7-67.9 0-18.7-7.7-31.7-15-41.1l37.4-2.8zm-63.4 241.9c0 32.1-104.9 32.1-104.9 2.4 0-8.1 5.3-15 10.6-21.5 77.7 5.3 94.3 3.4 94.3 19.1zm-50.8-134.6c-52.8 0-50.5-71.2 1.2-71.2 49.5 0 50.8 71.2-1.2 71.2zm133.3 100.5v-32.1c26.8-3.7 27.2-2 27.2-11V203.6c0-8.5-2.1-7.4-27.2-16.3l4.5-32.9H324v168.7c0 6.5 .4 7.3 6.5 8.1l20.7 2.8v32.1zm52.5-244.3c-23.2 0-36.6-13.4-36.6-36.6s13.4-35.8 36.6-35.8c23.6 0 37 12.6 37 35.8s-13.4 36.6-37 36.6zM512 350.5c-17.5 8.5-43.1 16.3-66.3 16.3-48.4 0-66.7-19.5-66.7-65.5V194.8c0-5.4 1.1-4.1-31.7-4.1V154.5c35.8-4.1 50-22 54.5-66.3h38.6c0 65.8-1.3 61.8 3.3 61.8H501v40.7h-60.6v97.2c0 6.9-4.9 51.4 60.6 26.8z" fill="currentColor"/></svg>'},{alias:"git_alt",name:"fa_git_alt",tags:["color_git_alt"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M439.6 236.1L244 40.5a28.9 28.9 0 0 0 -40.8 0l-40.7 40.6 51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.2 199v121.9c25.3 12.5 22.3 41.9 9.1 55a34.3 34.3 0 0 1 -48.6 0c-17.6-17.6-11.1-46.9 11.3-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1a28.9 28.9 0 0 0 0 40.8l195.6 195.6a28.9 28.9 0 0 0 40.8 0l194.7-194.7a28.9 28.9 0 0 0 0-40.8z" fill="currentColor"/></svg>'},{alias:"firefox",name:"fa_firefox",tags:["color_firefox"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M503.5 241.5c-.1-1.6-.2-3.1-.2-4.7v-.1l-.4-4.7v-.1a245.9 245.9 0 0 0 -7.3-41.2c0-.1 0-.1-.1-.2l-1.1-4c-.1-.2-.1-.5-.2-.6-.4-1.2-.7-2.5-1.1-3.7-.1-.2-.1-.6-.2-.8-.4-1.2-.7-2.4-1.1-3.5-.1-.4-.2-.6-.4-1-.4-1.2-.7-2.3-1.2-3.5l-.4-1.1c-.4-1.1-.8-2.3-1.2-3.4a8.3 8.3 0 0 0 -.4-1c-.5-1.1-.8-2.3-1.3-3.4-.1-.2-.2-.6-.4-.8-.5-1.2-1-2.3-1.4-3.5 0-.1-.1-.2-.1-.4-1.6-3.8-3.2-7.7-5-11.4l-.4-.7c-.5-1-.8-1.8-1.3-2.6-.2-.5-.5-1.1-.7-1.6-.4-.8-.8-1.6-1.2-2.4-.4-.6-.6-1.2-1-1.8s-.8-1.4-1.2-2.3c-.4-.6-.7-1.3-1.1-1.9s-.8-1.4-1.2-2.2a18.1 18.1 0 0 0 -1.2-2c-.4-.7-.8-1.3-1.2-2s-.8-1.3-1.2-2-.8-1.3-1.2-1.9-.8-1.4-1.3-2.2a15.6 15.6 0 0 0 -1.2-1.8L463.2 119a15.6 15.6 0 0 0 -1.2-1.8c-.5-.7-1.1-1.6-1.6-2.3-.4-.5-.7-1.1-1.1-1.6l-1.8-2.5c-.4-.5-.6-.8-1-1.3-1-1.3-1.8-2.5-2.8-3.7a248.8 248.8 0 0 0 -23.5-26.6A186.8 186.8 0 0 0 412 62.5c-4-3.5-8.2-6.7-12.5-9.8a162.5 162.5 0 0 0 -24.6-15.1c-2.4-1.3-4.8-2.5-7.2-3.7a254 254 0 0 0 -55.4-19.6c-1.9-.4-3.8-.8-5.6-1.2h-.1c-1-.1-1.8-.4-2.8-.5a236.4 236.4 0 0 0 -38-4H255.1a234.6 234.6 0 0 0 -45.5 5c-33.6 7.1-63.2 21.2-82.9 39-1.1 1-1.9 1.7-2.4 2.2l-.5 .5H124l-.1 .1 .1-.1a.1 .1 0 0 0 .1-.1l-.1 .1a.4 .4 0 0 1 .2-.1c14.6-8.8 34.9-16 49.4-19.6l5.9-1.4c.4-.1 .8-.1 1.2-.2 1.7-.4 3.4-.7 5.2-1.1 .2 0 .6-.1 .8-.1C250.9 20.9 319.3 40.1 367 85.6a171.5 171.5 0 0 1 26.9 32.8c30.4 49.2 27.5 111.1 3.8 147.6-34.4 53-111.4 71.3-159 24.8a84.2 84.2 0 0 1 -25.6-59 74.1 74.1 0 0 1 6.2-31c1.7-3.8 13.1-25.7 18.2-24.6-13.1-2.8-37.6 2.6-54.7 28.2-15.4 22.9-14.5 58.2-5 83.3a132.9 132.9 0 0 1 -12.1-39.2c-12.2-82.6 43.3-153 94.3-170.5-27.5-24-96.5-22.3-147.7 15.4-29.9 22-51.2 53.2-62.5 90.4 1.7-20.9 9.6-52.1 25.8-83.9-17.2 8.9-39 37-49.8 62.9-15.6 37.4-21 82.2-16.1 124.8 .4 3.2 .7 6.4 1.1 9.6 19.9 117.1 122 206.4 244.8 206.4C392.8 503.4 504 392.2 504 255 503.9 250.5 503.8 245.9 503.5 241.5z" fill="currentColor"/></svg>'},{alias:"edge",name:"fa_edge",tags:["color_edge"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M120.1 37.4C161.1 12.2 207.7-.8 255 0C423 0 512 123.8 512 219.5C511.9 252.2 499 283.4 476.1 306.7C453.2 329.9 422.1 343.2 389.4 343.7C314.2 343.7 297.9 320.6 297.9 311.7C297.9 307.9 299.1 305.5 302.7 302.3L303.7 301.1L304.1 299.5C314.6 288 320 273.3 320 257.9C320 179.2 237.8 115.2 136 115.2C98.5 114.9 61.5 124.1 28.5 142.1C55.5 84.6 111.2 44.5 119.8 38.3C120.6 37.7 120.1 37.4 120.1 37.4V37.4zM135.7 355.5C134.3 385.5 140.3 415.5 152.1 442.7C165.7 469.1 184.8 493.7 208.6 512C149.1 500.5 97.1 468.1 59.2 422.7C21.1 376.3 0 318.4 0 257.9C0 206.7 62.4 163.5 136 163.5C172.6 162.9 208.4 174.4 237.8 196.2L234.2 197.4C182.7 215 135.7 288.1 135.7 355.5V355.5zM469.8 400L469.1 400.1C457.3 418.9 443.2 435.2 426.9 449.6C396.1 477.6 358.8 495.1 318.1 499.5C299.5 499.8 281.3 496.3 264.3 488.1C238.7 477.8 217.2 458.1 202.7 435.1C188.3 411.2 181.6 383.4 183.7 355.5C183.1 335.4 189.1 315.2 198.7 297.3C212.6 330.4 236.2 358.6 266.3 378.1C296.4 397.6 331.8 407.6 367.7 406.7C398.7 407 429.8 400 457.9 386.2L459.8 385.3C463.7 383 467.5 381.4 471.4 385.3C475.9 390.2 473.2 394.5 470.2 399.3C470 399.5 469.9 399.8 469.8 400V400z" fill="currentColor"/></svg>'},{alias:"dev",name:"fa_dev",tags:["color_dev"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M120.1 208.3c-3.9-2.9-7.8-4.4-11.7-4.4H91v104.5h17.5c3.9 0 7.8-1.5 11.7-4.4 3.9-2.9 5.8-7.3 5.8-13.1v-69.7c0-5.8-2-10.2-5.8-13.1zM404.1 32H43.9C19.7 32 .1 51.6 0 75.8v360.4C.1 460.4 19.7 480 43.9 480h360.2c24.2 0 43.8-19.6 43.9-43.8V75.8c-.1-24.2-19.7-43.8-43.9-43.8zM154.2 291.2c0 18.8-11.6 47.3-48.4 47.3h-46.4V173h47.4c35.4 0 47.4 28.5 47.4 47.3l0 70.9zm100.7-88.7H201.6v38.4h32.6v29.6H201.6v38.4h53.3v29.6h-62.2c-11.2 .3-20.4-8.5-20.7-19.7V193.7c-.3-11.2 8.6-20.4 19.7-20.7h63.2l0 29.5zm103.6 115.3c-13.2 30.8-36.9 24.6-47.4 0l-38.5-144.8h32.6l29.7 113.7 29.6-113.7h32.6l-38.5 144.8z" fill="currentColor"/></svg>'},{alias:"css3",name:"fa_css3",tags:["color_css3"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" fill="currentColor"/></svg>'},{alias:"chrome",name:"fa_chrome",tags:["color_chrome"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M0 256C0 209.4 12.5 165.6 34.3 127.1L144.1 318.3C166 357.5 207.9 384 256 384C270.3 384 283.1 381.7 296.8 377.4L220.5 509.6C95.9 492.3 0 385.3 0 256zM365.1 321.6C377.4 302.4 384 279.1 384 256C384 217.8 367.2 183.5 340.7 160H493.4C505.4 189.6 512 222.1 512 256C512 397.4 397.4 511.1 256 512L365.1 321.6zM477.8 128H256C193.1 128 142.3 172.1 130.5 230.7L54.2 98.5C101 38.5 174 0 256 0C350.8 0 433.5 51.5 477.8 128V128zM168 256C168 207.4 207.4 168 256 168C304.6 168 344 207.4 344 256C344 304.6 304.6 344 256 344C207.4 344 168 304.6 168 256z" fill="currentColor"/></svg>'},{alias:"internet_explorer",name:"fa_internet_explorer",tags:["color_internet_explorer"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M483 159.7c10.9-24.6 21.4-60.4 21.4-87.9 0-72.7-79.6-98.4-209.7-38.6-107.6-7.2-211.2 73.7-237.1 186.5 30.9-34.9 78.3-82.3 122-101.2C125.4 166.9 79.1 228 44 291.7 23.2 329.7 0 390.9 0 436.7c0 98.6 92.9 86.5 180.3 42 31.4 15.4 66.6 15.6 101.7 15.6 97.1 0 184.2-54.3 216.8-146H377.9c-52.5 88.6-196.8 53-196.8-47.4H509.9c6.4-43.6-1.7-95.7-26.9-141.2zM64.6 346.9c17.7 51.2 53.7 95.9 100.3 123.3-88.7 48.9-173.3 29.1-100.3-123.3zm116-108.9c2-55.2 50.3-94.9 104-94.9 53.4 0 102 39.7 104 94.9H180.5zm184.5-187.6c21.4-10.3 48.6-22 72.6-22 31.4 0 54.3 21.7 54.3 53.7 0 20-7.4 49-14.6 67.9-26.3-42.3-66-81.6-112.3-99.6z" fill="currentColor"/></svg>'},{alias:"gitlab",name:"fa_gitlab",tags:["color_gitlab"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M503.5 204.6L502.8 202.8L433.1 21C431.7 17.5 429.2 14.4 425.9 12.4C423.5 10.8 420.8 9.9 417.9 9.6C415 9.3 412.2 9.7 409.5 10.7C406.8 11.7 404.4 13.3 402.4 15.5C400.5 17.6 399.1 20.1 398.3 22.9L351.3 166.9H160.8L113.7 22.9C112.9 20.1 111.5 17.6 109.6 15.5C107.6 13.4 105.2 11.7 102.5 10.7C99.9 9.7 97 9.3 94.1 9.6C91.3 9.9 88.5 10.8 86.1 12.4C82.8 14.4 80.3 17.5 78.9 21L9.3 202.8L8.5 204.6C-1.5 230.8-2.7 259.6 5 286.6C12.8 313.5 29.1 337.3 51.5 354.2L51.7 354.4L52.3 354.8L158.3 434.3L210.9 474L242.9 498.2C246.6 500.1 251.2 502.5 255.9 502.5C260.6 502.5 265.2 500.1 268.9 498.2L300.9 474L353.5 434.3L460.2 354.4L460.5 354.1C482.9 337.2 499.2 313.5 506.1 286.6C514.7 259.6 513.5 230.8 503.5 204.6z" fill="currentColor"/></svg>'},{alias:"google",name:"fa_google",tags:["color_google"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 488 512" height="1em"><path d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" fill="currentColor"/></svg>'},{alias:"clone",name:"fa_clone",tags:["color_clone"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M64 464l224 0c8.8 0 16-7.2 16-16l0-64 48 0 0 64c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64l64 0 0 48-64 0c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16zM224 304l224 0c8.8 0 16-7.2 16-16l0-224c0-8.8-7.2-16-16-16L224 48c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16zm-64-16l0-224c0-35.3 28.7-64 64-64L448 0c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64l-224 0c-35.3 0-64-28.7-64-64z" fill="currentColor"/></svg>'},{alias:"check_circle",name:"fa_check_circle",tags:["color_check_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" fill="currentColor"/></svg>'},{alias:"check_circle_o",name:"fa_check_circle-o",tags:["color_check_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L369 209z" fill="currentColor"/></svg>'},{alias:"camera",name:"fa_camera",tags:["color_camera"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M149.1 64.8L138.7 96 64 96C28.7 96 0 124.7 0 160L0 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64l-74.7 0L362.9 64.8C356.4 45.2 338.1 32 317.4 32L194.6 32c-20.7 0-39 13.2-45.5 32.8zM256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" fill="currentColor"/></svg>'},{alias:"bars",name:"fa_bars",tags:["color_bars"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z" fill="currentColor"/></svg>'},{alias:"bluetooth",name:"fa_bluetooth",tags:["color_bluetooth"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" height="1em"><path d="M196.5 260l92.6-103.3L143.1 0v206.3l-86.1-86.1-31.4 31.4 108.1 108.4L25.6 368.4l31.4 31.4 86.1-86.1L145.8 512l148.6-148.6-97.9-103.3zm40.9-103l-50 50-.3-100.3 50.3 50.3zM187.4 313l50 50-50.3 50.3 .3-100.3z" fill="currentColor"/></svg>'},{alias:"bell_slash_o",name:"fa_bell_slash_o",tags:["color_bell_slash_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6C495.5 322.9 480 278.8 480 233.4l0-33.4c0-75.8-55.5-138.6-128-150.1L352 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 17.9c-43.9 7-81.5 32.7-104.4 68.7L38.8 5.1zM221.7 148.4C239.6 117.1 273.3 96 312 96l8 0 8 0c57.4 0 104 46.6 104 104l0 33.4c0 32.7 6.4 64.8 18.7 94.5L221.7 148.4zM406.2 416l-60.9-48-176.9 0c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1l0 11.4c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6l286.2 0zM384 448l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" fill="currentColor"/></svg>'},{alias:"bell_slash",name:"fa_bell_slash",tags:["color_bell_slash"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-90.2-70.7c.2-.4 .4-.9 .6-1.3c5.2-11.5 3.1-25-5.3-34.4l-7.4-8.3C497.3 319.2 480 273.9 480 226.8l0-18.8c0-77.4-55-142-128-156.8L352 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 19.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM406.2 416L160 222.1l0 4.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S115.4 416 128 416l278.2 0zm-40.9 77.3c12-12 18.7-28.3 18.7-45.3l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" fill="currentColor"/></svg>'},{alias:"bell_o",name:"fa_bell_o",tags:["color_bell_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416l400 0c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4l0-25.4c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm0 96c61.9 0 112 50.1 112 112l0 25.4c0 47.9 13.9 94.6 39.7 134.6L72.3 368C98.1 328 112 281.3 112 233.4l0-25.4c0-61.9 50.1-112 112-112zm64 352l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" fill="currentColor"/></svg>'},{alias:"bell",name:"fa_bell",tags:["color_bell"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416l384 0c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8l0-18.8c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" fill="currentColor"/></svg>'},{alias:"battery_quarter",name:"fa_battery_quarter",tags:["color_battery_quarter"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm112 96l-96 0 0 128 96 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_three_quarters",name:"fa_battery_three_quarters",tags:["color_battery_three_quarters"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm272 96L96 192l0 128 256 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_full",name:"fa_battery_full",tags:["color_battery_full"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm368 96L96 192l0 128 352 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_half",name:"fa_battery_half",tags:["color_battery_half"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm208 96L96 192l0 128 192 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_empty",name:"fa_battery_empty",tags:["color_battery_empty"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M80 160c-8.8 0-16 7.2-16 16l0 160c0 8.8 7.2 16 16 16l384 0c8.8 0 16-7.2 16-16l0-160c0-8.8-7.2-16-16-16L80 160zM0 176c0-44.2 35.8-80 80-80l384 0c44.2 0 80 35.8 80 80l0 16c17.7 0 32 14.3 32 32l0 64c0 17.7-14.3 32-32 32l0 16c0 44.2-35.8 80-80 80L80 416c-44.2 0-80-35.8-80-80L0 176z" fill="currentColor"/></svg>'},{alias:"cc",name:"fa_cc",tags:["color_cc"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M512 80c8.8 0 16 7.2 16 16l0 320c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16L48 96c0-8.8 7.2-16 16-16l448 0zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" fill="currentColor"/></svg>'},{alias:"creative_commons",name:"fa_creative_commons",tags:["color_creative_commons"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M245.8 214.9l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.7 0 52.7 12 66 35.9zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.5-21.3l31 15.5c-2.1 3.8-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.7 0 52.6 12 65.6 35.9zM247.6 8.1C104.7 8.1 0 123.1 0 256.1c0 138.5 113.6 248 247.6 248 129.9 0 248.4-100.9 248.4-248 0-137.9-106.6-248-248.4-248zm.9 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.4-203.3 203.7-203.3 112.5 0 202.8 89.5 202.8 203.3 0 121.7-99.7 202.8-202.8 202.8z" fill="currentColor"/></svg>'},{alias:"envelope",name:"fa_envelope",tags:["color_envelope"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48L48 64zM0 176L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-208L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" fill="currentColor"/></svg>'},{alias:"envelope_o",name:"fa_envelope_o",tags:["color_envelope_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M64 112c-8.8 0-16 7.2-16 16l0 22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1l0-22.1c0-8.8-7.2-16-16-16L64 112zM48 212.2L48 384c0 8.8 7.2 16 16 16l384 0c8.8 0 16-7.2 16-16l0-171.8L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64l384 0c35.3 0 64 28.7 64 64l0 256c0 35.3-28.7 64-64 64L64 448c-35.3 0-64-28.7-64-64L0 128z" fill="currentColor"/></svg>'},{alias:"envelope_open",name:"fa_envelope_open",tags:["color_envelope_open"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M64 208.1L256 65.9 448 208.1l0 47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5l0-47.4zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1L0 448c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-239.9c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z" fill="currentColor"/></svg>'},{alias:"envelope_open_o",name:"fa_envelope_open_o",tags:["color_envelope_open_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5l0 13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1l0-13.6c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2 464 456c0 4.4-3.6 8-8 8L56 464c-4.4 0-8-3.6-8-8l0-179.8zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5L0 456c0 30.9 25.1 56 56 56l400 0c30.9 0 56-25.1 56-56l0-255.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z" fill="currentColor"/></svg>'},{alias:"frown",name:"fa_frown",tags:["color_frown"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"frown_o",name:"fa_frown_o",tags:["color_frown_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"industry",name:"fa_industry",tags:["color_industry"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M64 32C46.3 32 32 46.3 32 64l0 240 0 48 0 80c0 26.5 21.5 48 48 48l416 0c26.5 0 48-21.5 48-48l0-128 0-151.8c0-18.2-19.4-29.7-35.4-21.1L352 215.4l0-63.2c0-18.2-19.4-29.7-35.4-21.1L160 215.4 160 64c0-17.7-14.3-32-32-32L64 32z" fill="currentColor"/></svg>'},{alias:"meh",name:"fa_meh",tags:["color_meh"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM160 336l192 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-192 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z" fill="currentColor"/></svg>'},{alias:"meh_o",name:"fa_meh_o",tags:["color_meh_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z" fill="currentColor"/></svg>'},{alias:"phone_square",name:"fa_phone_square",tags:["color_phone_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z" fill="currentColor"/></svg>'},{alias:"phone_square_flip",name:"fa_phone_square_flip",tags:["color_phone_square_flip"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M384 32c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z" fill="currentColor"/></svg>'},{alias:"plus_circle",name:"fa_plus_circle",tags:["color_plus_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 344l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" fill="currentColor"/></svg>'},{alias:"minus_square",name:"fa_minus_square",tags:["color_minus_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm88 200l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z" fill="currentColor"/></svg>'},{alias:"minus_square_o",name:"fa_minus_square_o",tags:["color_minus_square_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM152 232l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z" fill="currentColor"/></svg>'},{alias:"minus_circle",name:"fa_minus_circle",tags:["color_minus_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM184 232l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z" fill="currentColor"/></svg>'},{alias:"question_circle",name:"fa_question_circle",tags:["color_question_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" fill="currentColor"/></svg>'},{alias:"question_circle_o",name:"fa_question_circle_o",tags:["color_question_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" fill="currentColor"/></svg>'},{alias:"question_square",name:"fa_question_square",tags:["color_question_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" height="1em"><path fill-rule="evenodd" clip-rule="evenodd" d="M4 4h16v16H4zm1.5 1.5v13h13v-13z" fill="currentColor"/><path d="M11.05 15h1.5v1.5h-1.5zm.055-1q0-.888.21-1.416.211-.528.832-1.156.627-.634.793-.901.255-.408.256-.882 0-.628-.3-.955-.295-.334-.87-.334-.55 0-.89.327-.332.321-.332.875H9.25q.013-1.182.767-1.87Q10.778 7 12.026 7q1.286 0 2.001.681.723.682.723 1.904 0 1.088-.972 2.144l-.787.808q-.422.501-.435 1.463z" fill="currentColor"/></svg>'},{alias:"print",name:"fa_print",tags:["color_print"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M128 0C92.7 0 64 28.7 64 64l0 96 64 0 0-96 226.7 0L384 93.3l0 66.7 64 0 0-66.7c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0L128 0zM384 352l0 32 0 64-256 0 0-64 0-16 0-16 256 0zm64 32l32 0c17.7 0 32-14.3 32-32l0-96c0-35.3-28.7-64-64-64L64 192c-35.3 0-64 28.7-64 64l0 96c0 17.7 14.3 32 32 32l32 0 0 64c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-64zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" fill="currentColor"/></svg>'},{alias:"paper_plane",name:"fa_paper_plane",tags:["color_paper_plane"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480l0-83.6c0-4 1.5-7.8 4.2-10.8L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" fill="currentColor"/></svg>'},{alias:"paper_plane_o",name:"fa_paper_plane_o",tags:["color_paper_plane_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376l0 103.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z" fill="currentColor"/></svg>'},{alias:"share_alt",name:"fa_share_alt",tags:["color_share_alt"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z" fill="currentColor"/></svg>'},{alias:"share_alt_square",name:"fa_share_alt_square",tags:["color_share_alt_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z" fill="currentColor"/></svg>'},{alias:"signal_strong",name:"fa_signal_strong",tags:["color_signal_strong"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M576 0c17.7 0 32 14.3 32 32l0 448c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-448c0-17.7 14.3-32 32-32zM448 96c17.7 0 32 14.3 32 32l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352c0-17.7 14.3-32 32-32zM352 224l0 256c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32s32 14.3 32 32zM192 288c17.7 0 32 14.3 32 32l0 160c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-160c0-17.7 14.3-32 32-32zM96 416l0 64c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32s32 14.3 32 32z" fill="currentColor"/></svg>'},{alias:"signal_good",name:"fa_signal_good",tags:["color_signal_good"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><g fill="currentColor"><path d="m 9 4 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0"/><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill-opacity="0.34902"/></g></svg>'},{alias:"signal_fair",name:"fa_signal_fair",tags:["color_signal_fair"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><g fill="currentColor"><path d="m 5 7 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0"/><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill-opacity="0.34902"/></g></svg>'},{alias:"signal_weak",name:"fa_signal_weak",tags:["color_signal_weak"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><g fill="currentColor"><path d="m 1 10 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0"/><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill-opacity="0.34902"/></g></svg>'},{alias:"signal_none",name:"fa_signal_none",tags:["color_signal_none"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill="currentColor" fill-opacity="0.34902"/></svg>'},{alias:"signal_4g",name:"fa_signal_4g",tags:["color_signal_4g"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em"><path d="M3.75 18a.75.75 0 0 1 .743.648l.007.102v1.5a.75.75 0 0 1-1.493.102L3 20.25v-1.5a.75.75 0 0 1 .75-.75m4-2.999a.75.75 0 0 1 .743.649l.007.101v4.499a.75.75 0 0 1-1.493.102L7 20.25v-4.499a.75.75 0 0 1 .75-.75m4-3.001a.75.75 0 0 1 .743.648l.007.102v7.5a.75.75 0 0 1-1.493.102L11 20.25v-7.5a.75.75 0 0 1 .75-.75m4-3a.75.75 0 0 1 .743.648l.007.102v10.5a.75.75 0 0 1-1.493.102L15 20.25V9.75a.75.75 0 0 1 .75-.75m3.96-3a.73.73 0 0 1 .722.642l.008.101.056 13.5a.737.737 0 0 1-.715.757.73.73 0 0 1-.722-.641l-.007-.102-.056-13.5A.737.737 0 0 1 19.71 6m-9.028-3q1.038 0 1.624.495T13 4.937h-1.171q-.08-.501-.355-.734t-.756-.232q-.614 0-.935.46-.32.462-.324 1.372v.373q0 .919.348 1.388.35.47 1.023.47.678 0 .967-.29V6.739h-1.095v-.886H13v2.33q-.326.39-.918.603A3.9 3.9 0 0 1 10.766 9q-.757 0-1.33-.33a2.2 2.2 0 0 1-.882-.961q-.31-.63-.319-1.48v-.397q0-.875.295-1.514a2.2 2.2 0 0 1 .85-.98Q9.935 3 10.682 3m-4.076.08v3.642h.661v.934h-.661V8.92h-1.16V7.656H3.053L3 6.926 5.434 3.08zm-1.16 1.58-.076.133-1.215 1.929h1.292z" fill="currentColor"/></svg>'},{alias:"signal_3g",name:"fa_signal_3g",tags:["color_signal_3g"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em"><path d="M11.75 12a.75.75 0 0 1 .743.648l.007.102v7.5a.75.75 0 0 1-1.493.102L11 20.25v-7.5a.75.75 0 0 1 .75-.75m4-3a.75.75 0 0 1 .743.648l.007.102v10.5a.75.75 0 0 1-1.493.102L15 20.25V9.75a.75.75 0 0 1 .75-.75m-12 9a.75.75 0 0 1 .743.648l.007.102v1.5a.75.75 0 0 1-1.493.102L3 20.25v-1.5a.75.75 0 0 1 .75-.75M19.743 6a.75.75 0 0 1 .75.64l.007.102v13.501a.75.75 0 0 1-1.492.116L19 20.258V6.757A.75.75 0 0 1 19.743 6M7.75 15a.75.75 0 0 1 .743.648l.007.102v4.499a.75.75 0 0 1-1.493.101L7 20.25v-4.5a.75.75 0 0 1 .75-.75M4.985 3q.927 0 1.452.443.525.444.526 1.221 0 .402-.245.738a1.6 1.6 0 0 1-.642.518q.494.176.736.53.243.352.243.833 0 .78-.568 1.248Q5.92 9 4.985 9q-.875 0-1.43-.461Q3 8.077 3 7.319h1.16q0 .33.246.538a.9.9 0 0 0 .607.209q.414 0 .648-.22a.76.76 0 0 0 .235-.579q0-.874-.963-.874H4.32v-.906h.617q.441 0 .654-.221.213-.22.212-.586 0-.352-.21-.549t-.58-.197a.86.86 0 0 0-.557.183.58.58 0 0 0-.225.475H3.072q0-.457.247-.82.246-.363.69-.567Q4.45 3 4.985 3m5.697 0q1.038 0 1.624.495T13 4.937h-1.171q-.08-.501-.355-.734t-.756-.232q-.614 0-.935.46-.32.462-.324 1.372v.373q0 .919.348 1.388.35.47 1.023.47.678 0 .967-.29V6.739h-1.095v-.886H13v2.33q-.326.39-.918.603A3.9 3.9 0 0 1 10.766 9q-.757 0-1.33-.33a2.2 2.2 0 0 1-.882-.961q-.31-.63-.319-1.48v-.397q0-.875.295-1.514a2.2 2.2 0 0 1 .85-.98Q9.935 3 10.682 3" fill="currentColor"/></svg>'},{alias:"sliders",name:"fa_sliders",tags:["color_sliders"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M0 416c0 17.7 14.3 32 32 32l54.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-246.7 0c-12.3-28.3-40.5-48-73.3-48s-61 19.7-73.3 48L32 384c-17.7 0-32 14.3-32 32zm128 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32-80c-32.8 0-61 19.7-73.3 48L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l246.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48l54.7 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-54.7 0c-12.3-28.3-40.5-48-73.3-48zM192 128a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm73.3-64C253 35.7 224.8 16 192 16s-61 19.7-73.3 48L32 64C14.3 64 0 78.3 0 96s14.3 32 32 32l86.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 128c17.7 0 32-14.3 32-32s-14.3-32-32-32L265.3 64z" fill="currentColor"/></svg>'},{alias:"smile",name:"fa_smile",tags:["color_smile"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"smile_o",name:"fa_smile_o",tags:["color_smile_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"times_circle",name:"fa_times_circle",tags:["color_times_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" fill="currentColor"/></svg>'},{alias:"times_circle_o",name:"fa_times_circle_o",tags:["color_times_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0z" fill="currentColor"/></svg>'},{alias:"toggle_on",name:"fa_toggle_on",tags:["color_toggle_on"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192s-86-192-192-192L192 64zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" fill="currentColor"/></svg>'},{alias:"toggle_off",name:"fa_toggle_off",tags:["color_toggle_off"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128l-192 0c-70.7 0-128-57.3-128-128s57.3-128 128-128l192 0zM576 256c0-106-86-192-192-192L192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" fill="currentColor"/></svg>'},{alias:"wifi",name:"fa_wifi",tags:["color_wifi"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" fill="currentColor"/></svg>'},{alias:"exclamation_triangle",name:"fa_exclamation_triangle",tags:["color_exclamation_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480L40 480c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24l0 112c0 13.3 10.7 24 24 24s24-10.7 24-24l0-112c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" fill="currentColor"/></svg>'},{alias:"user",name:"fa_user",tags:["color_user"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0z" fill="currentColor"/></svg>'},{alias:"user_o",name:"fa_user_o",tags:["color_user_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464l349.5 0c-8.9-63.3-63.3-112-129-112l-91.4 0c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3z" fill="currentColor"/></svg>'},{alias:"user_circle",name:"fa_user_circle",tags:["color_user_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M399 384.2C376.9 345.8 335.4 320 288 320l-64 0c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z" fill="currentColor"/></svg>'},{alias:"user_circle_o",name:"fa_user_circle_o",tags:["color_user_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M406.5 399.6C387.4 352.9 341.5 320 288 320l-64 0c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3l64 0c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" fill="currentColor"/></svg>'},{alias:"universal_access",name:"fa_universal_access",tags:["color_universal_access"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm161.5-86.1c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3l0 50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6l0-50.1c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" fill="currentColor"/></svg>'},{alias:"file_text",name:"fa_file_text",tags:["color_file_text"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM112 256l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z" fill="currentColor"/></svg>'},{alias:"file_text_o",name:"fa_file_text_o",tags:["color_file_text_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M64 464c-8.8 0-16-7.2-16-16L48 64c0-8.8 7.2-16 16-16l160 0 0 80c0 17.7 14.3 32 32 32l80 0 0 288c0 8.8-7.2 16-16 16L64 464zM64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-293.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0L64 0zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z" fill="currentColor"/></svg>'},{alias:"refresh",name:"fa_refresh",tags:["color_refresh"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M105.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L386.3 160 352 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l111.5 0c0 0 0 0 0 0l.4 0c17.7 0 32-14.3 32-32l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 35.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C73.2 122 55.6 150.7 44.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM39 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1L16 432c0 17.7 14.3 32 32 32s32-14.3 32-32l0-35.1 17.6 17.5c0 0 0 0 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.8c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L125.6 352l34.4 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L48.4 288c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z" fill="currentColor"/></svg>'},{alias:"facebook",name:"fa_facebook",tags:["color_facebook"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" height="1em"><path d="M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z" fill="currentColor"/></svg>'},{alias:"facebook_circle",name:"fa_facebook_circle",tags:["color_facebook_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z" fill="currentColor"/></svg>'},{alias:"facebook_square",name:"fa_facebook_square",tags:["color_facebook_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64h98.2V334.2H109.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H255V480H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" fill="currentColor"/></svg>'},{alias:"linkedin",name:"fa_linkedin",tags:["color_linkedin"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z" fill="currentColor"/></svg>'},{alias:"linkedin_square",name:"fa_linkedin_square",tags:["color_linkedin_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" fill="currentColor"/></svg>'},{alias:"pinterest",name:"fa_pinterest",tags:["color_pinterest"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3 .8-3.4 5-20.3 6.9-28.1 .6-2.5 .3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" fill="currentColor"/></svg>'},{alias:"pinterest_square",name:"fa_pinterest_square",tags:["color_pinterest_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M384 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64h72.6l-2.2-.8c-5.4-48.1-3.1-57.5 15.7-134.7c3.9-16 8.5-35 13.9-57.9c0 0-7.3-14.8-7.3-36.5c0-70.7 75.5-78 75.5-25c0 13.5-5.4 31.1-11.2 49.8c-3.3 10.6-6.6 21.5-9.1 32c-5.7 24.5 12.3 44.4 36.4 44.4c43.7 0 77.2-46 77.2-112.4c0-58.8-42.3-99.9-102.6-99.9C153 139 112 191.4 112 245.6c0 21.1 8.2 43.7 18.3 56c2 2.4 2.3 4.5 1.7 7c-1.1 4.7-3.1 12.9-4.7 19.2c-1 4-1.8 7.3-2.1 8.6c-1.1 4.5-3.5 5.5-8.2 3.3c-30.6-14.3-49.8-59.1-49.8-95.1C67.2 167.1 123.4 96 229.4 96c85.2 0 151.4 60.7 151.4 141.8c0 84.6-53.3 152.7-127.4 152.7c-24.9 0-48.3-12.9-56.3-28.2c0 0-12.3 46.9-15.3 58.4c-5 19.3-17.6 42.9-27.4 59.3H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z" fill="currentColor"/></svg>'},{alias:"instagram",name:"fa_instagram",tags:["color_instagram"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="currentColor"/></svg>'},{alias:"instagram_square",name:"fa_instagram_square",tags:["color_instagram_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M194.4 211.7a53.3 53.3 0 1 0 59.3 88.7 53.3 53.3 0 1 0 -59.3-88.7zm142.3-68.4c-5.2-5.2-11.5-9.3-18.4-12c-18.1-7.1-57.6-6.8-83.1-6.5c-4.1 0-7.9 .1-11.2 .1c-3.3 0-7.2 0-11.4-.1c-25.5-.3-64.8-.7-82.9 6.5c-6.9 2.7-13.1 6.8-18.4 12s-9.3 11.5-12 18.4c-7.1 18.1-6.7 57.7-6.5 83.2c0 4.1 .1 7.9 .1 11.1s0 7-.1 11.1c-.2 25.5-.6 65.1 6.5 83.2c2.7 6.9 6.8 13.1 12 18.4s11.5 9.3 18.4 12c18.1 7.1 57.6 6.8 83.1 6.5c4.1 0 7.9-.1 11.2-.1c3.3 0 7.2 0 11.4 .1c25.5 .3 64.8 .7 82.9-6.5c6.9-2.7 13.1-6.8 18.4-12s9.3-11.5 12-18.4c7.2-18 6.8-57.4 6.5-83c0-4.2-.1-8.1-.1-11.4s0-7.1 .1-11.4c.3-25.5 .7-64.9-6.5-83l0 0c-2.7-6.9-6.8-13.1-12-18.4zm-67.1 44.5A82 82 0 1 1 178.4 324.2a82 82 0 1 1 91.1-136.4zm29.2-1.3c-3.1-2.1-5.6-5.1-7.1-8.6s-1.8-7.3-1.1-11.1s2.6-7.1 5.2-9.8s6.1-4.5 9.8-5.2s7.6-.4 11.1 1.1s6.5 3.9 8.6 7s3.2 6.8 3.2 10.6c0 2.5-.5 5-1.4 7.3s-2.4 4.4-4.1 6.2s-3.9 3.2-6.2 4.2s-4.8 1.5-7.3 1.5l0 0c-3.8 0-7.5-1.1-10.6-3.2zM448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96zM357 389c-18.7 18.7-41.4 24.6-67 25.9c-26.4 1.5-105.6 1.5-132 0c-25.6-1.3-48.3-7.2-67-25.9s-24.6-41.4-25.8-67c-1.5-26.4-1.5-105.6 0-132c1.3-25.6 7.1-48.3 25.8-67s41.5-24.6 67-25.8c26.4-1.5 105.6-1.5 132 0c25.6 1.3 48.3 7.1 67 25.8s24.6 41.4 25.8 67c1.5 26.3 1.5 105.4 0 131.9c-1.3 25.6-7.1 48.3-25.8 67z" fill="currentColor"/></svg>'},{alias:"tumblr",name:"fa_tumblr",tags:["color_tumblr"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" height="1em"><path d="M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1 .8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5 .9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" fill="currentColor"/></svg>'},{alias:"tumblr_square",name:"fa_tumblr_square",tags:["color_tumblr_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96zM256.8 416c-75.5 0-91.9-55.5-91.9-87.9v-90H135.2c-3.4 0-6.2-2.8-6.2-6.2V189.4c0-4.5 2.8-8.5 7.1-10c38.8-13.7 50.9-47.5 52.7-73.2c.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2H249.1V321c0 21.4 14.8 33.5 42.5 22.4c3-1.2 5.6-2 8-1.4c2.2 .5 3.6 2.1 4.6 4.9L318 387.1c1 3.2 2 6.7-.3 9.1c-8.5 9.1-31.2 19.8-60.9 19.8z" fill="currentColor"/></svg>'},{alias:"twitter",name:"fa_twitter",tags:["color_twitter"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M459.4 151.7c.3 4.5 .3 9.1 .3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53 51.7 63.7 129.3 105.3 216.4 109.8-1.6-7.8-2.6-15.9-2.6-24 0-57.8 46.8-104.9 104.9-104.9 30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8 21.1-2.3 41.6-8.1 60.4-16.2-14.3 20.8-32.2 39.3-52.6 54.3z" fill="currentColor"/></svg>'},{alias:"twitter_square",name:"fa_twitter_square",tags:["color_twitter_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM351.3 199.3v0c0 86.7-66 186.6-186.6 186.6c-37.2 0-71.7-10.8-100.7-29.4c5.3 .6 10.4 .8 15.8 .8c30.7 0 58.9-10.4 81.4-28c-28.8-.6-53-19.5-61.3-45.5c10.1 1.5 19.2 1.5 29.6-1.2c-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3c-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1c32.3 39.8 80.8 65.8 135.2 68.6c-9.3-44.5 24-80.6 64-80.6c18.9 0 35.9 7.9 47.9 20.7c14.8-2.8 29-8.3 41.6-15.8c-4.9 15.2-15.2 28-28.8 36.1c13.2-1.4 26-5.1 37.8-10.2c-8.9 13.1-20.1 24.7-32.9 34c.2 2.8 .2 5.7 .2 8.5z" fill="currentColor"/></svg>'},{alias:"x_twitter",name:"fa_x_twitter",tags:["color_x_twitter"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" fill="currentColor"/></svg>'},{alias:"x_twitter_square",name:"fa_x_twitter_square",tags:["color_x_twitter_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm297.1 84L257.3 234.6 379.4 396H283.8L209 298.1 123.3 396H75.8l111-126.9L69.7 116h98l67.7 89.5L313.6 116h47.5zM323.3 367.6L153.4 142.9H125.1L296.9 367.6h26.3z" fill="currentColor"/></svg>'},{alias:"globe",name:"fa_globe",tags:["color_globe"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M352 256c0 22.2-1.2 43.6-3.3 64l-185.3 0c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64l185.3 0c2.2 20.4 3.3 41.8 3.3 64zm28.8-64l123.1 0c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64l-123.1 0c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32l-116.7 0c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0l-176.6 0c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0L18.6 160C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192l123.1 0c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64L8.1 320C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6l176.6 0c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352l116.7 0zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6l116.7 0z" fill="currentColor"/></svg>'},{alias:"search",name:"fa_search",tags:["color_search"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" fill="currentColor"/></svg>'},{alias:"computer",name:"fa_computer",tags:["color_computer"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 202.901 202.9" height="1em" xml:space="preserve"><path d="m129.481 157.402-3.84-19.062h69.93V0H7.325v138.334h67.662l-3.834 19.063H7.274V202.9h188.353v-45.498zm-69.617 19.515H18.603v-7.693h41.261zm-33.789-62.084V19.436h150.742v95.403H26.075zm158.968 67.431h-59.438v-13.045h59.448v13.045z" fill="currentColor"/></svg>'},{alias:"alarm_clock",name:"fa_alarm_clock",tags:["color_alarm_clock"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em" fill="none"><path d="M3 5.5L5 3.5M21 5.5L19 3.5M12 8.5V12.5L14 14.5M20 12.5C20 16.9183 16.4183 20.5 12 20.5C7.58172 20.5 4 16.9183 4 12.5C4 8.08172 7.58172 4.5 12 4.5C16.4183 4.5 20 8.08172 20 12.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>'},{alias:"cloud",name:"fa_cloud",tags:["color_cloud"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em" fill="none"><path d="M16.286 20C19.442 20 22 17.472 22 14.353c0-2.472-1.607-4.573-3.845-5.338C17.837 6.194 15.415 4 12.476 4 9.32 4 6.762 6.528 6.762 9.647c0 .69.125 1.35.354 1.962a4.4 4.4 0 0 0-.83-.08C3.919 11.53 2 13.426 2 15.765S3.919 20 6.286 20z" fill="currentColor"/></svg>'},{alias:"cloud_o",name:"fa_cloud_o",tags:["color_cloud_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em" fill="none"><path d="M14.381 9.027a5.8 5.8 0 0 1 1.905-.321c.654 0 1.283.109 1.87.309m-11.04 2.594a4.4 4.4 0 0 0-.83-.08C3.919 11.53 2 13.426 2 15.765S3.919 20 6.286 20h10C19.442 20 22 17.472 22 14.353c0-2.472-1.607-4.573-3.845-5.338M7.116 11.609a5.6 5.6 0 0 1-.354-1.962C6.762 6.528 9.32 4 12.476 4c2.94 0 5.361 2.194 5.68 5.015m-11.04 2.594a4.3 4.3 0 0 1 1.55.634" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></svg>'},{alias:"comment",name:"fa_comment",tags:["color_comment"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c0 0 0 0 0 0s0 0 0 0s0 0 0 0c0 0 0 0 0 0l.3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z" fill="currentColor"/></svg>'},{alias:"comment_o",name:"fa_comment_o",tags:["color_comment_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4c26.5 9.6 56.2 15.1 87.8 15.1c124.7 0 208-80.5 208-160s-83.3-160-208-160S48 160.5 48 240c0 32 12.4 62.8 35.7 89.2c8.6 9.7 12.8 22.5 11.8 35.5c-1.4 18.1-5.7 34.7-11.3 49.4c17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9c1.8-2.7 3.5-5.4 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208s-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6c-15.1 6.6-32.3 12.6-50.1 16.1c-.8 .2-1.6 .3-2.4 .5c-4.4 .8-8.7 1.5-13.2 1.9c-.2 0-.5 .1-.7 .1c-5.1 .5-10.2 .8-15.3 .8c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c4.1-4.2 7.8-8.7 11.3-13.5c1.7-2.3 3.3-4.6 4.8-6.9l.3-.5z" fill="currentColor"/></svg>'},{alias:"comments",name:"fa_comments",tags:["color_comments"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2s0 0 0 0s0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.2-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9c0 0 0 0 0 0s0 0 0 0l-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z" fill="currentColor"/></svg>'},{alias:"comments_o",name:"fa_comments_o",tags:["color_comments_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.8 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z" fill="currentColor"/></svg>'},{alias:"explosive_materials",name:"fa_explosive_materials",tags:["color_explosive_materials"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M16.504 12.025v151.26l54.93 177.096c-.248.088-.49.187-.737.276l90.278 47.748-32.21 40.035 28.817 38.04 89.61 27.946H361.08l-196.783-37.424a78.5 78.5 0 0 0 6.326-12.22l325.95 18.11V413.25l-321.627 17.313a79.6 79.6 0 0 0 1.563-14.627l320.062-60.504v-50.81l-320.8 99.216a78.6 78.6 0 0 0-3.463-14.578l324.263-170.49v-65.41L167.35 377.767a78.6 78.6 0 0 0-7.88-12.032L496.567 62.836v-50.81l-.002.005H456.27L148.533 354.456a78.7 78.7 0 0 0-12.068-8.38L364.578 12.032H298l-172.725 328.83a79 79 0 0 0-10.318-3.037l101.28-325.793H168.35l-60.963 324.473a81 81 0 0 0-9.282-.584l17.1-323.89h-44.97l17.812 324.466a79 79 0 0 0-9.926 1.85zm22.642 349.84c-12.633 13.97-20.314 32.506-20.314 52.897 0 43.655 35.188 78.843 78.844 78.843 19.185 0 36.72-6.81 50.36-18.136l-54.415-39.784 29.425-32.424-83.9-41.397z" fill="currentColor"/></svg>'},{alias:"toxic_material_triangle",name:"fa_toxic_material_triangle",tags:["color_toxic_material_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 458.09 458.089" height="1em" xml:space="preserve"><path d="M436.912 430.19c-.03.006-.077 0-.118 0H21.184a21.185 21.185 0 0 1-18.347-31.777L210.642 38.489a21.19 21.19 0 0 1 18.348-10.592 21.18 21.18 0 0 1 18.341 10.592l206.776 358.139a21.1 21.1 0 0 1 3.983 12.377c.006 11.698-9.481 21.185-21.178 21.185M57.878 387.822H400.1L228.989 91.456zm244.434-33.414c-1.785 3.818-5.13 6.206-8.913 7.093 1.762 3.464 2.181 7.565.449 11.378-2.997 6.609-10.805 9.511-17.372 6.508-6.644-3.014-9.552-10.805-6.514-17.4.095-.296.367-.432.503-.71l-43.072-19.357-43.621 18.146c.142.278.384.42.479.704 2.837 6.679-.266 14.404-6.992 17.241-6.679 2.784-14.375-.337-17.188-7.027-1.631-3.89-1.082-7.956.774-11.361-3.742-.992-7.052-3.511-8.701-7.353-2.784-6.69.308-14.416 7.022-17.2 6.679-2.825 14.375.289 17.2 6.975.101.296.071.573.171.846l27.538-11.449-27.207-12.224c-.118.266-.071.567-.213.839-2.997 6.597-10.805 9.511-17.401 6.514-6.579-3.014-9.469-10.805-6.472-17.413 1.744-3.812 5.125-6.183 8.896-7.116-1.785-3.44-2.21-7.555-.467-11.36 3.009-6.608 10.805-9.499 17.413-6.514 6.608 3.015 9.511 10.805 6.466 17.413-.094.277-.366.438-.461.674l43.066 19.398 43.592-18.134c-.136-.296-.378-.438-.508-.733-2.809-6.727.307-14.41 7.021-17.224 6.649-2.825 14.346.284 17.171 7.011 1.638 3.854 1.081 7.955-.804 11.36 3.771 1.005 7.087 3.464 8.736 7.376 2.783 6.668-.313 14.34-7.022 17.165-6.685 2.831-14.375-.296-17.2-6.957-.13-.277-.071-.591-.172-.856l-27.526 11.432 27.189 12.234c.112-.26.083-.555.207-.839 3.038-6.597 10.805-9.517 17.39-6.502a13.126 13.126 0 0 1 6.543 17.422m-30.594-113.735c3.404 3.114 5.556 7.436 5.556 12.229 0 7.938-5.881 14.334-13.701 16.297v5.957c0 10.279-8.417 18.714-18.713 18.714h-34.685c-10.297 0-18.708-8.435-18.708-18.714v-5.934c-7.861-1.963-13.772-8.358-13.772-16.326 0-4.822 2.163-9.144 5.609-12.247-5.361-7.737-8.535-16.913-8.535-26.811 0-27.216 23.613-49.316 52.741-49.316 29.117 0 52.76 22.1 52.76 49.316.018 9.91-3.179 19.085-8.552 26.835m-52.884-23.25c0-7.791-6.543-14.097-14.588-14.097-8.015 0-14.594 6.307-14.594 14.097 0 7.796 6.579 14.1 14.594 14.1 8.045-.012 14.588-6.304 14.588-14.1m23.927 41.491-14.15-23.944-14.682 24.405 14.541-7.058zm22.614-41.491c0-7.791-6.555-14.097-14.569-14.097-8.051 0-14.576 6.307-14.576 14.097 0 7.796 6.525 14.1 14.576 14.1 8.032-.012 14.569-6.304 14.569-14.1" fill="currentColor"/></svg>'},{alias:"biohazard_circle",name:"fa_biohazard_circle",tags:["color_biohazard_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 185 181" height="1em"><path fill="none" d="M-.5-.5h185v181H-.5z"/><path fill="currentColor" d="M80.5.5q74.508-3.662 99.5 66 12.613 65.21-42.5 101.5Q75.937 198.183 27 150.5q-39.898-49.398-11-106 22.761-36 64.5-44"/><path fill="white" d="M79.5 14.5q65.459-5.42 87.5 56 9.243 48.782-28.5 80.5-33.532 22.442-72 10Q10.798 134.86 19 73.5q13.48-46.836 60.5-59"/><path fill="currentColor" d="M86.5 26.5h4v4q-24.824 5.626-21.5 31 5.096 16.85 22.5 19-5.547 6.093-8 14-16.083-18.634-37-5.5-12.685 11.742-7 28-.798 3.03-4 2.5-8.733-37.033 28-47-10.104-33.792 23-46"/><path fill="currentColor" d="M96.5 27.5q23.145 2.382 29.5 25 1.553 10.362-2.5 20 31.01 7.256 29.5 39a24 24 0 0 1-3.5 8q-1.83-.58-2-2.5 5.822-24.66-18-33-16.632-3.29-26.5 10.5-3.093-3.888-4-9-4.005-1.086-4.5-5 28.167-5.838 22.5-34-5.904-13.575-20.5-16z"/><path fill="currentColor" d="M87.5 55.5q14.269-.96 26 7a18.9 18.9 0 0 1-3 5q-17.301-11.963-34.5 0-3.096-2.614-1.5-6a84.5 84.5 0 0 1 13-6"/><path fill="currentColor" d="M58.5 87.5h6q-1.267 10.34 4.5 19 5.18 7.197 12.5 12-1.068 2.319-3.5 3-20.162-10.801-19.5-34"/><path fill="currentColor" d="M122.5 87.5h5q1.147 23.715-19.5 35a36 36 0 0 0-3.5-4.5q18.033-9.801 18-30.5"/><path fill="currentColor" d="M85.5 96.5q4.095-.04 7.5 2a22.2 22.2 0 0 0 6-2q1.588.195 2.5 1.5-8.406 25.689 17 35 15.28 2.073 25.5-9.5 4.455 1.635 1 5-27.49 23.364-52-3-12.914 15.815-33.5 13.5-12.338-3.41-20-13.5a7.3 7.3 0 0 1 3-2q16.08 17.123 36 4.5 13.675-13.419 7-31.5"/></svg>'},{alias:"risk_of_fire_triangle",name:"fa_risk_of_fire_triangle",tags:["color_risk_of_fire_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 117.828 103.684" height="1em"><path fill="none" d="M610.34 321.44a6.26 6.26 0 0 0-4.479 3.047l-52.634 91.188a6.25 6.25 0 0 0 0 6.231 6.31 6.31 0 0 0 5.448 3.142h105.27c2.25 0 4.33-1.211 5.449-3.142a6.25 6.25 0 0 0 0-6.231l-52.636-91.188c-1.3-2.25-3.86-3.45-6.42-3.05z" transform="translate(-552.522 -321.48)"/><path fill="currentColor" d="M610.83 324.02a3.32 3.32 0 0 0-2.375 1.625l-53 91.812a3.37 3.37 0 0 0 0 3.312c.592 1.021 1.685 1.689 2.875 1.688h106c1.189.003 2.283-.665 2.875-1.688a3.37 3.37 0 0 0 0-3.312l-53-91.812c-.7-1.18-2.02-1.84-3.39-1.62zm.5 10.56 45 79.25h-90.062l45.06-79.25z" transform="translate(-552.522 -321.48)"/><path stroke="currentColor" stroke-width="4" fill="none" d="M901.4-47.336h54.089" transform="translate(-325.56 108.17)scale(.41428)"/><path stroke="currentColor" stroke-width="2" fill="currentColor" d="M939.29-49.286c29.395 4.191 36.33-14.608 35.142-41.731-3.479 4.135-6.959 12.213-10.433 6.862 7.647-12.461 12.588-25.789 0-44.753-1.146 10.74-2.918 18.467-7.689 11.803-.038-12.251-.212-24.483-10.985-34.591 0 0-7.937 15.683-6.313 13.453 3.248-4.441-17.366-40.748-19.491-39.534.054 10.931 5.834 25.197-1.92 31.571l-7.415-9.608c-1.076 11.242-2.513 22.894-3.569 34.871l-9.884-12.081c2.387 13.121 6.439 28.422-.276 29.65-7.574 6.987-7.431-3.663-10.433-7.138 1.231 66.539 15.89 55.189 27.455 61.78-6.169-9.797-13.922-19.584-10.98-29.381l4.667.825c-2.916-4.394-3.922-8.783-.276-13.177 7.374 4.436 9.059 15.511 12.353 24.709.886-11.697 1.55-23.04 7.415-42.558l4.117 23.337c3.178 3.178 5.266-26.373 5.214-26.906-.283-3.05 9.759 22.87 4.667 23.889 0 0 9.886-7.963 9.886-4.394s-1.919 12.352-1.919 12.352l8.232-.547c-1.08 13.622-7.17 23.9-17.57 31.304z" transform="translate(-325.56 108.17)scale(.41428)"/></svg>'},{alias:"oxidizing_substance",name:"fa_oxidizing_substance",tags:["color_oxidizing_substance"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 324.995 324.995" height="1em" xml:space="preserve"><path fill="currentColor" d="M59.074 206.255c2.225 7.093 8.006 13.402 15.267 18.868a90 90 0 0 1 5.33-16.692c-5.662-21.642-5.194-38.797-3.878-36.018 2.274 4.797 5.037 8.235 8.148 10.807 2.469 2.045 5.178 3.519 8.033 4.688 3.127-3.954 6.587-7.609 10.312-10.992a91.3 91.3 0 0 1 21.74-14.685c-.082-5.814-.979-11.727-3.372-17.922-.609-1.572 10.971 5.488 17.258 12.515.457-.136.93-.234 1.392-.359 5.57-40.124 24.949-67.02 24.949-67.02s-12.575 31.334 1.692 63.751c14.8.375 28.756 4.204 41.016 10.835 6.978-15.224 9.828-26.499 9.828-26.499 7.936 10.541 9.747 24.753 8.398 39.585a92 92 0 0 1 4.868 4.77c10.546-3.737 20.978-5.243 25.362-18.623 1.071-3.258 5.009 25.77-5.096 52.449a92 92 0 0 1 2.513 9.056c11.047-12.173 19.526-27.059 19.526-44.116 0-35.833-14.071-28.724-5.243-51.584.767-1.98-10.682 9.143-17.71 19.537-6.962-21.468-19.809-58.106-43.072-78.622 0 0 12.689 32.292-12.037 66.085 0 0 8.681-20.804-5.542-64.763S207.375 0 207.375 0s-78.736 45.356-98.289 130.842c-8.224-11.83-19.798-22.703-18.982-20.587 6.342 16.431.109 33.162-3.807 50.219-18.341-16.268-35.588-24.182-33.488-21.599 18.089 22.236-2.101 40.712 6.265 67.38"/><path fill="currentColor" d="M223.225 190.46c-1.12-1.24-2.246-2.469-3.443-3.639-5.238-5.102-11.139-9.518-17.612-13.054a80 80 0 0 0-30.323-9.399 82 82 0 0 0-8.218-.413c-14.794 0-28.615 4.058-40.532 11.025a80.6 80.6 0 0 0-14.234 10.584 80.9 80.9 0 0 0-14.789 18.477 80 80 0 0 0-8.703 21.762 78 78 0 0 0-1.142 5.809c-.674 4.199-1.12 8.474-1.12 12.863 0 44.47 36.05 80.52 80.52 80.52s80.52-36.05 80.52-80.52c0-3.541-.305-7.005-.751-10.427a84 84 0 0 0-.538-3.535c-2.666-15.278-9.638-29.039-19.635-40.053m-59.591 111.631c-25.215 0-46.569-16.442-53.994-39.178a56.7 56.7 0 0 1-2.828-17.644c0-.99.098-1.958.147-2.937.37-7.245 2.072-14.125 4.906-20.407a57 57 0 0 1 6.766-11.259 57 57 0 0 1 9.883-10.014c9.671-7.62 21.849-12.205 35.115-12.205 6.908 0 13.5 1.294 19.619 3.552a57 57 0 0 1 6.01 2.605 57 57 0 0 1 19.129 15.741 57 57 0 0 1 6.222 9.948c3.704 7.549 5.842 16.002 5.842 24.976 0 1.882-.103 3.737-.283 5.57q-.015.156-.022.321c-2.937 28.615-27.114 50.931-56.512 50.931"/></svg>'},{alias:"compressed_gas_diamond",name:"fa_compressed_gas_diamond",tags:["color_compressed_gas_diamond"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 579 579" height="1em" ><path d="M25.301 289.672 289.33 553.7l264.073-264.072c-88.053-87.952-175.931-176.079-264.03-263.985z" fill ="none" stroke="none"/><path d="M147.66 148.012 6 289.672 147.669 431.34 289.329 573l141.687-141.688 141.688-141.688-141.64-141.64C353.165 70.086 289.403 6.344 289.375 6.344c-.029 0-63.8 63.752-141.717 141.668m260.962 22.413 119.199 119.2L408.575 408.87 289.319 528.127 170.129 408.87 50.95 289.606l119.19-119.19c65.557-65.557 119.208-119.19 119.237-119.19s53.689 53.642 119.246 119.2" fill="currentColor" stroke="none"/><path d="M437.625 288c-.969-.003-1.948.044-2.562.156-1.193.225-231.267 61.994-232.094 62.313-6.52 2.563-10.896 9.67-12.219 19.875-.272 2.067-.4 5.84-.281 8.25.189 3.91.7 7.239 1.656 11.125 3.898 15.827 13.746 28.263 24.281 30.625 1.229.271 4.116.35 5.344.125 1.04-.177 229.029-61.311 231.344-62.031 4.405-1.37 7.723-4.446 10.156-9.407 1.358-2.752 2.178-5.415 2.875-9.312.555-3.071 1.033-4.391 2.344-6.375 1.594-2.422 4.357-4.486 7.156-5.313.46-.13 11.84-3.179 25.281-6.781 13.441-3.614 24.728-6.71 25.094-6.875 5.433-2.492 7.411-10.428 4.281-17.125-1.724-3.673-4.849-6.385-8.156-7.094-1.122-.236-2.835-.209-3.969.063-.52.13-11.713 3.124-24.906 6.656-13.181 3.543-24.27 6.511-24.625 6.594-.425.106-1.36.156-2.719.156-2.268-.012-3.138-.162-4.969-.906-2.29-.945-3.735-2.096-6.062-4.813-3.484-4.063-6.629-6.627-10.125-8.281-1.5-.697-3.114-1.22-4.531-1.469-.65-.112-1.625-.153-2.594-.156" transform="scale(.8)" fill="currentColor" stroke="none"/></svg>'},{alias:"hand_gesture_stop",name:"fa_hand_gesture_stop",tags:["color_hand_gesture_stop"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em" xml:space="preserve"><path d="M256 0C114.842 0 0 114.84 0 256s114.842 256 256 256 256-114.84 256-256S397.158 0 256 0m112.393 310.583h-.003a101.513 101.513 0 0 1-101.514 101.514c-47.676 0-91.834-25.09-116.238-66.047l-37.395-62.757c-6.846-10.176-4.123-24.104 6.054-30.95a22.13 22.13 0 0 1 12.394-3.778c7.188 0 14.264 3.45 18.556 9.83l17.985 26.733c6.555 9.742 21.761 5.101 21.761-6.638V152.525c0-11.291 8.153-21.238 19.35-22.697a23 23 0 0 1 2.95-.192c7.606 0 14.356 3.861 18.386 9.72 1.078 1.566 3.513 1.059 3.914-.8v-16.354c0-12.264 10.035-22.299 22.299-22.299q1.395-.001 2.823.176c11.253 1.402 19.477 11.374 19.477 22.713v15.763l.511.864a1.948 1.948 0 0 0 3.293.096l.019-.026c4.019-5.934 10.812-9.854 18.477-9.854q1.394-.001 2.825.176c11.252 1.402 19.476 11.374 19.476 22.713v52c.842 1.947 3.442 2.259 4.752.591 4.09-5.215 10.446-8.582 17.549-8.582q1.388-.001 2.812.175c11.257 1.396 19.487 11.37 19.487 22.714z" fill="currentColor"/></svg>'},{alias:"dangerously_reactive_circle",name:"fa_dangerously_reactive_circle",tags:["color_dangerously_reactive_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 920 800" height="1em"><path d="M423.8 48c-70.4 5.2-135.1 30.5-189.3 74.1-94.3 75.7-141.1 195-123.5 314.6 8.7 59.7 33.3 116 71.6 163.8 11.3 14.2 36.8 39.7 50.9 50.9 52.3 41.6 111.8 66.2 178.5 73.7 14.6 1.7 55.1 1.7 69.5.1 55-6.2 104.5-23.6 149-52.1 35.4-22.7 69.7-55.5 94.1-90.1 33.7-47.7 53.7-100.9 60.6-161.5 1.6-14.3 1.6-54.8-.1-69.5-7.4-66.6-32.1-126.3-73.7-178.5-11.3-14.1-36.8-39.6-50.9-50.9-51.5-41-110.4-65.7-174.8-73.1-16.4-1.9-46.8-2.6-61.9-1.5m62.8 72.9c57.7 8.7 108.9 34.6 150 75.6 15.6 15.6 22.9 24.4 35.2 42.8 24.3 36.5 39 78.6 43.3 124.2 1.4 15.4.7 46.4-1.5 61.3-8.8 59.3-34.8 110.7-77 152.7-30.8 30.7-64.4 51.4-105 65-25.5 8.4-47.6 12.3-76.2 13.2-56.6 1.8-110.2-13.3-156.1-43.9-18.4-12.3-27.2-19.6-42.8-35.2-41.1-41.1-66.6-91.8-75.7-150.1-2.9-18.8-3.2-57.7-.5-76 8.9-59.6 34.9-111.8 76.6-153.6 17.7-17.7 35.2-31.1 57.3-43.8 29.2-16.8 67.2-29.4 99.8-33 5.2-.6 11.1-1.3 13-1.5 9.2-1.1 47.1.4 59.6 2.3" fill="currentColor"/><path d="m430.5 136.5-2.5 2.4v109.2l2.5 2.4c3 3 6.4 3.2 9.9.4l2.6-2V138.1l-2.6-2c-3.5-2.8-6.9-2.6-9.9.4m-47.3 8.1c-1.3.9-2.7 2.6-3.2 3.9-.6 1.6 2.3 15.9 11 52.9 6.6 27.8 12.4 51.5 13 52.6 2.3 4.3 10.2 3.6 12.9-1.1 1.4-2.5.7-6.1-10.3-53-6.6-27.7-12.3-51.4-12.8-52.5-1-2.1-4.7-4.4-7.1-4.4-.7 0-2.3.7-3.5 1.6m97.1-.4c-1.2.6-2.6 2.2-3.2 3.7-.5 1.4-6.3 25.1-12.7 52.6-10.7 45.7-11.5 50.1-10.3 52.5 2.7 4.7 10.6 5.3 13 .8.6-1.2 6.5-24.9 13.1-52.7 12.8-54.6 12.8-54.4 7.2-57-3-1.3-4.2-1.3-7.1.1m-140.9 24.3c-3.2 1.3-4.4 3.2-4.4 6.9 0 2.7 44.3 84.5 46.7 86.3s6.7 1.6 9.2-.5c5-4.1 4.7-4.8-19.8-49.7-25-45.8-25-45.8-31.7-43m186.4-.3c-2.1.7-6.4 7.8-23.9 40.1-28 51.4-25.5 46.1-23.6 50.3 1.1 2.1 2.6 3.6 4.3 4 6.4 1.6 6.5 1.5 30.6-42.6 14.9-27.2 22.7-42.5 22.7-44.5.2-5.9-4.4-9.2-10.1-7.3m-101 94.1c-.8.7-4.2 4.6-7.6 8.8-8.1 10.1-8.3 11.8-1.9 15 2.3 1.2 4.4 2.3 4.6 2.6.3.2-1.2 1.7-3.2 3.4-5.2 4.2-4.9 7 .9 10.9 3.3 2.4 4.4 3.6 3.9 4.8-1.6 4-1.7 8.8-.2 10.1 2.9 2.4 5.4.4 7.6-6.1 2.8-8.3 2.7-9.4-1.4-12-1.9-1.3-3.5-2.5-3.5-2.8s1.6-1.6 3.5-3c3.5-2.5 5.3-6 4-8-.3-.6-2.9-2.2-5.6-3.6l-5-2.5 5.1-6.4c3.4-4.2 5-7.2 4.8-8.6-.4-2.7-4-4.2-6-2.6m28.5 10.3c-4.6 5.2-8.3 10.3-8.3 11.3 0 .9 1.4 3 3 4.6 1.7 1.6 3 3.3 3 3.8s-2 3.3-4.5 6.1c-5.6 6.6-6 10.1-1.2 11.4 3 .8 3.2 1.1 3.2 5.6 0 5.1 1.8 7.5 4.7 6.3 1.6-.6 5.8-11.5 5.8-14.9 0-1.1-1.1-2.3-2.6-2.8-2.9-1.1-3-.9 2.8-7.8 3.6-4.2 3.5-5.4-.7-9.4l-3.5-3.3 6.5-7.5c4.9-5.6 6.5-8.1 6.3-10-.2-2-.9-2.6-3.3-2.7-2.7-.3-3.9.8-11.2 9.3M323 289.3v23.4l3.7 2.4c2 1.3 4.6 4 5.8 5.9 2 3.5 2 4.9 2.3 106 .2 56.4 0 105.3-.3 108.8-.5 5-1.3 7-3.6 9.7-1.6 1.8-4 3.6-5.4 3.9l-2.5.6v47h104v-46.8l-4.9-1.7c-9.9-3.2-18-10.8-22.9-21.2l-2.7-5.8-.3-78.3-.2-78.2-5-7.6c-6.8-10.4-8.3-16.3-6-24.4 1.8-6.5 11.1-13 18.6-13 1.3 0 2.4-.2 2.4-.4 0-.5-9.7-47.8-10.5-51.4l-.5-2.2h-72zm156.1 3.2c-5 14.6-9.1 26.9-9.1 27.4s1.1 1.2 2.4 1.5c3.7.9 8.7 5.6 10.7 10.1 3.6 7.8 2.2 14.7-5.1 25.9l-5 7.6-.2 78.2-.3 78.3-2.3 5.2-2.4 5.2 11.4 32.5 11.3 32.6H576v-46.8l-3.1-1.2c-4.9-2.1-10.9-12.2-35.2-59l-22.5-43.3 7.8-7.4c27.5-25.8 41.8-65.8 35.5-99-5.5-29.2-23.6-56.8-44.4-67.7-7.5-3.9-16.5-6.6-22.2-6.6h-3.6zm-58.7 60.7 3.1 6.2.3 78.1c.1 58.8.5 78.6 1.4 80.3 3.5 6.7 15.1 6.7 18.6 0 .9-1.7 1.3-21.5 1.4-80.3l.3-78 2.8-5.9c1.5-3.2 2.7-6 2.7-6.2s-7.6-.4-16.8-.4h-16.9z" fill="currentColor"/></svg>'},{alias:"corrosive_materials",name:"fa_corrosive_materials",tags:["color_corrosive_materials"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 226 228" height="1em"><path d="M54.5 24.7c-7.2 6.9-20.3 19.8-29.2 28.6L9 69.3v82.8l5.2 5.3c2.9 2.9 16.3 16.4 29.7 29.9L68.3 212h83.2l11.5-11.8c6.3-6.5 19-19.5 28.3-28.9 9.2-9.5 17.2-18.4 17.7-19.8 1.3-3.3 1.3-78.5.1-81.7-.8-2-53-54.8-56.3-56.9-.7-.5-20.2-.9-43.3-.9h-42zm87.7 8.1c.9.4 11.6 10.5 23.7 22.5L188 77v67.5l-22.7 23.3-22.8 23.2h-66l-22.3-22.7C42 155.7 31.5 144.5 31 143.2c-1.5-3.4-1.3-62.8.1-65.5.7-1.2 4.6-5.5 8.8-9.6 4.2-4 13.5-13.1 20.6-20.1 7.2-7.1 14.4-13.6 16-14.4 2.5-1.3 7.7-1.6 33.5-1.5 16.8 0 31.3.3 32.2.7" fill="currentColor"/><path d="M93.6 58.2c-1.1 1.6-1.6 4.7-1.6 10.6 0 13.5-2.8 17.6-11.8 17l-4.7-.3-.2-6.5c-.2-3.6-.5-8-.8-9.8-.5-2.9-.9-3.2-4.1-3.2-2.6 0-3.3.3-2.7 1.2.4.7 1 20.2 1.3 43.4l.5 42.1 2.8 3.7c5.6 7.3 4.7 7.1 37.9 7.1h29.7l3.5-3.4c6.7-6.5 6.6-5.7 6.6-49.4 0-23.3.4-40.6 1-42.1.9-2.5.8-2.6-2.5-2.6H145v8.4c0 10.1-1.1 11.9-7.3 11.4-3.5-.3-4.5-.9-7.4-4.8-4.8-6.5-7.3-12.5-7.3-17.5 0-7.7.4-7.5-14.6-7.5-12.6 0-13.4.1-14.8 2.2m33.6 30.5c1 .9 1.8 2.1 1.8 2.6 0 .6 1.1 2.5 2.5 4.3 2.9 3.8 3.2 6.2.9 7.1-2.5.9-4.7-.9-5.7-4.8-1.1-4.1-2.4-5.9-4.4-5.9-1.2 0-1.4 1.3-1 6.7.3 3.8.9 8.5 1.2 10.5 1.1 5.8-3.7 9.7-5.1 4.2l-.7-2.7-1.3 2.5c-1.8 3.4-4.3 4.2-6.5 2.2-1.5-1.4-1.9-3.2-1.9-9.5 0-4.3-.4-8-.9-8.4-1.6-.9-3.1 3-3.1 7.8 0 5.5-2.2 7.9-4.8 5.4-1.5-1.6-1.5-2.1.1-8.2 1.7-6.2 1.6-8.5-.2-8.5-1 0-4.1 6.7-4.1 9 0 2.4-1.5 3.3-4 2.5-2.8-.9-2.5-3.1 1.5-11.3l3.6-7.2h15.1c12.7 0 15.4.3 17 1.7m8.8 22.5c0 3.1-4.2 1.9-5.4-1.5-.8-2.2-.7-3 .4-3.8 1.8-1.1 5 2.3 5 5.3m-45.4.3c.7 1.7-2.1 6.5-3.6 6.5-1.4 0-1.2-5.4.2-6.8 1.6-1.6 2.7-1.5 3.4.3m9.9 6.9c-2.6 9.4-5.4 13-6.9 9-.9-2.2.3-8.3 2.2-11.6 1.5-2.6 1.7-2.6 3.4-1.1 1.2 1 1.6 2.4 1.3 3.7m11.5 1.1c.9 1.1 1 2.9.4 6.8-.8 4.6-1.2 5.2-3.4 5.2-2.3 0-2.5-.4-2.8-4.7-.5-7.3 2.6-11.2 5.8-7.3m11.4 4.8c.8 4.7.7 6.1-.5 7.3-2.3 2.3-4.8-.3-5.5-5.8-.8-6-.1-8 2.8-7.6 2 .3 2.4 1.2 3.2 6.1m-26.8 12.2c-.5 1.8-1.2 2.5-2.4 2.3-2.1-.4-2.8-4.4-1.1-6.4 1.9-2.3 4.4.6 3.5 4.1m13.2 2.6c.3 2.9-2 6.5-3.6 5.5s-1.5-7.3.1-7.9c2.1-.9 3.2-.1 3.5 2.4m12.6-1.2c.9 1.4-.4 4.1-1.9 4.1-1.8 0-2.8-1.7-2.1-3.5.6-1.7 3.2-2 4-.6" fill="currentColor"/><path d="M113 101.2c0 3.2.4 5.8 1 5.8 1.3 0 1.3-8 0-10-.7-1.1-1 .2-1 4.2" fill="currentColor"/></svg>'},{alias:"road_three_way",name:"fa_road_three_way",tags:["color_road_three_way"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" height="1em"><path d="M481 1.1C305.5 11.7 146.4 113.5 61.6 269.6 29.3 329.1 10 392.3 2.4 463.5c-2.4 22.3-2.4 74.7 0 97 9.8 92 40.2 173.6 91.6 246 107.1 150.7 284.4 232.4 466.5 215 148.1-14.2 282.3-92.3 369.4-214.9 112.1-157.8 124.8-367.2 32.5-537C866.8 93.7 679.2-11 481 1.1m37.2 103.8c1.3.5 34 29.1 72.8 63.5 50.5 44.9 71.1 63.8 72.8 66.8 2.8 5.2 2.8 9.6-.1 13.9-4.6 7-3.9 6.9-54.9 6.9H563v127.5c0 70.1.3 127.5.8 127.5.4 0 3-1.6 5.7-3.6 37.5-26.9 96.1-46.3 139.8-46.4h7.7v-46.3c0-44.3.1-46.3 2-49.5 2.4-3.9 7.5-7.2 11.3-7.2 5.2 0 9.3 2.7 17.9 12.1 22.2 24.3 117.3 131.7 118.9 134.4 2.3 3.6 2.5 10.5.5 14.3-1.9 3.5-125.2 141.9-128.7 144.5-6.4 4.7-15.6 2.6-19.9-4.5-1.9-3.2-2-5.2-2-49.6v-46.4l-8.7.7c-20.5 1.5-36.9 5.3-53.9 12.4-38.8 16.3-69.3 49.4-82.8 90.1-8.3 25.2-8.6 29.7-8.6 143.3 0 104.7.3 99.2-6 105.5-6.8 6.9-5.7 6.7-45 6.7h-35.5l-4.6-2.7c-2.5-1.5-5.9-4.6-7.5-6.9l-2.9-4.2-.6-104.1c-.6-113.3-.4-110.4-6.4-131.1-14.7-50.7-52.3-88.3-103-103-10-2.9-22.7-5-35.7-6l-8.8-.7v46.4c0 44.4-.1 46.4-2 49.6-4.3 7.1-13.5 9.2-19.9 4.5-3.5-2.6-126.8-141-128.7-144.5-.8-1.5-1.4-4.5-1.4-6.8s.6-5.3 1.4-6.8c1.9-3.5 125.2-141.9 128.7-144.5 6.4-4.7 15.6-2.6 19.9 4.5 1.9 3.2 2 5.2 2 49.5V461h7.8c4.2 0 13.5.7 20.5 1.5 40.9 4.8 83.2 20.4 115.8 42.6 4.7 3.3 8.9 5.9 9.2 5.9.4 0 .7-57.4.7-127.5V256h-45.7c-51.1 0-50.4.1-55-6.9-2.9-4.3-2.9-8.7 0-13.9 1.5-2.9 22.8-22.4 72.7-66.7 38.8-34.5 71.4-63.1 72.5-63.5 2.7-1.2 9.8-1.2 12.7-.1" fill="currentColor"/></svg>'},{alias:"lower_left_shadow_square",name:"fa_lower_left_shadow_square",tags:["color_lower_left_shadow_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 116 104" height="1em"><path d="M37 20.5V26H26l.2 29.2.3 29.3 29.3.3L85 85V74h11V15H37zm56 24V71H40V18h53z" fill="currentColor"/></svg>'},{alias:"pinterest_p",name:"fa_pinterest_p",tags:["color_pinterest_p"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" fill="currentColor"/></svg>'},{alias:"man_in_circle",name:"fa_man_in_circle",tags:["color_man_in_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240" height="1em"><path d="M106.5.6c-9.2 1.4-19.8 3.9-26 6.1C40.6 21.1 11.4 54.5 2.4 96c-2.6 11.8-2.6 36.2 0 48 10.4 48.1 47.5 84.5 96.1 94.1 10.3 2.1 34.9 1.8 45.5-.5 42.4-9.1 76.8-39.9 89.9-80.4 4.4-13.6 5.6-21.5 5.6-37.2 0-15.8-1.2-23.5-5.6-37.3C221 42.9 187.3 12.3 146 2.9 137.7 1 113.3-.4 106.5.6m39 23.4c16.9 4.6 32.1 13.4 44.6 25.9 12.6 12.6 21.3 27.7 26.1 45.1 2 7.3 2.3 10.8 2.3 25s-.3 17.7-2.3 25c-4.8 17.4-13.5 32.5-26.1 45.1-8.9 8.9-17.2 14.7-28.7 20.1-14.5 6.7-21.5 8.2-40.9 8.2-14.8.1-18.1-.2-25.5-2.2-17.3-4.7-32.2-13.4-45.1-26.1-12.5-12.5-21.3-27.7-26.1-45.1-2-7.3-2.3-10.8-2.3-25s.3-17.7 2.3-25C33.7 58.7 62 31.4 98.4 22.9c11.4-2.6 35.6-2.1 47.1 1.1" fill="currentColor"/><path d="M114.7 43.5c-8.1 2.8-12.1 8.9-11.5 17.5.5 6.9 3.5 11.5 9.2 14.1 11.9 5.4 24.5-2.5 24.6-15.4 0-8-5-14.5-12.8-16.7-4.6-1.2-4.8-1.2-9.5.5M96.4 83c-5.2 2.1-5.4 3.5-5.4 31.2V140h11v58h36v-58h11.1l-.3-26.5c-.3-26-.3-26.5-2.6-28.7-2.2-2.2-2.8-2.3-25-2.5-12.5-.1-23.7.2-24.8.7" fill="currentColor"/></svg>'},{alias:"nice_face",name:"fa_nice_face",tags:["color_nice_face"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 582 234" height="1em"><path d="M157 21.9c-10.5 2.1-20.2 5.1-25.2 7.9-1.8 1.1-5.9 3.4-9 5.1-6.5 3.7-21.8 19.3-21.8 22.2 0 1.6.8 1.9 4.6 1.9 4.1 0 5.2-.5 11.2-5.8 13.7-12 14.2-12 14.2-.1 0 10.6 1.4 14.3 7.5 20.4 10.7 10.7 26.9 11.4 37.7 1.6 11.4-10.2 13.3-26.6 4.3-37.3-3.8-4.5-2.5-5.2 8.3-4.4 27.7 2.1 43.8 8.3 58.2 22.7 2.3 2.4 3.7 2.9 7.4 2.9 3.9 0 4.6-.3 4.6-2 0-2-6.7-10.2-12.8-15.8-8.9-7.9-23.6-15-38.1-18.3-12.8-3-38.4-3.5-51.1-1m10.4 18.2c5.1 3 7.6 7.6 7.6 14 0 6.6-2.3 10.8-7.9 14.4-4.4 2.7-11.5 3.4-15.4 1.4-12.3-6.3-14.3-20.3-4.1-28.7 3.4-2.8 4.6-3.2 10.1-3.2 4.5 0 7.2.6 9.7 2.1m296.1-18.5c-16.3 3-26.7 7-38.7 14.7-7.8 5.1-20.6 19.6-19.2 21.9.3.5 2.6.8 5.1.8 3.6 0 5-.5 7.1-2.8 4.7-4.9 14.2-12.2 16-12.2 1.5 0 1.7 1.2 1.7 9.7 0 9.1.2 10.1 2.9 14.3 7.6 11.8 21.1 16.8 34 12.4 7-2.4 15-10.5 17-17.4 2.8-9.4 1.7-17.4-3.5-24.4-1.9-2.6-2.6-4.3-1.9-5 2.1-2.1 37.6 2.9 40.7 5.8s9.8 16.9 13.8 28.9c7.6 23 8.9 30.9 8.9 56.2.1 25.6-1.2 33.9-9 56.6-4.3 12.7-14.8 35.4-18.1 39.1-2.2 2.5-.7 3.8 4.5 3.8 4.4 0 9.2-2 9.2-3.9 0-.5 2-3.7 4.3-7.3 9.6-14.3 20.4-38.4 24.3-54.3 2.3-9.5 4.3-24.3 4.4-32.6 0-18.9-5.9-45.6-13.6-61-1.3-2.6-2.4-5.2-2.4-5.8 0-.7 2.2-.8 6.5-.4 8.4.8 8.5-.4.6-9.4C551 41 549 39.3 542 35c-3-1.8-6.5-4.2-7.7-5.3s-3.9-2.3-6-2.8c-2.1-.4-7.1-1.7-11.2-2.8-14.9-4.2-39-5.3-53.6-2.5m8.6 18.7c10.5 7.1 10.6 20.7.3 27.9-4.5 3.1-12.6 3.8-17.2 1.4-6.7-3.5-10.7-11.1-9.6-18.1.7-4.9 2.8-8 7.3-11.1 4.9-3.3 14.3-3.4 19.2-.1M37.8 28.2c-3.1 2.4-14.6 20.7-20.1 32C4.9 86.3-.1 113 2.9 139.8c1.1 9.9 4.2 25.4 6.1 29.7.4 1.1 2.3 5.6 4 10 6.8 17 21.6 42.4 25.6 43.9 3 1.1 9.4.6 10-.8.3-.7-.8-3.6-2.5-6.2-3.8-6.2-12.6-25.7-15.7-34.9-6.7-19.6-9.7-36.5-9.7-56C20.6 97.2 25.9 74.8 39 48c2.6-5.2 5.8-11.4 7.3-13.7 3.9-6.2 3.6-7.3-2.1-7.3-2.7 0-5.5.6-6.4 1.2m258.9 1.4c-.4.4-.7 13.5-.7 29.1V87h8.5c15.7 0 24.6 5.8 29.6 19.2 2 5.4 2.3 8.1 2.3 18.8 0 14.6-1.9 21.1-8 28.6-8.1 9.8-24.1 13.2-35.4 7.4-4.4-2.3-10.5-9.3-11.5-13.2-1.1-4.2-3-5.4-6.9-4-1.8.7-4.3 1.2-5.5 1.2-3.1 0-6.1 1.8-6.1 3.6 0 3.2 7 16.6 11 20.8 20.8 22.1 64 13.7 75.4-14.8 5.9-15 6.9-33.8 2.6-50.3-5.3-20.3-16.8-32-35.2-35.8L314 68l-.2-19.3-.3-19.2-8-.3c-4.5-.1-8.4 0-8.8.4" fill="currentColor"/><path d="M242.6 185.8c-.7 1.2 9.6 13.1 16 18.4 19.1 15.7 50.8 22.9 81.1 18.4 18.7-2.8 31.8-7.8 43.9-17 7.1-5.3 18.8-18.2 17.8-19.7-.3-.5-2.9-.9-5.9-.9-4.8 0-5.6.3-7.7 3-7.3 9.3-25 17.9-42.8 20.7-12.2 1.9-43.3 1.2-53-1.1-14.1-3.5-26.1-9.8-33.7-17.6-4.5-4.7-5.1-5-10-5-2.8 0-5.4.3-5.7.8" fill="currentColor"/></svg>'},{alias:"explosive_materials_triangle",name:"fa_explosive_materials_triangle",tags:["color_explosive_materials_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 517 504" height="1em"><path d="M55.5 27.5q202-.25 404 .5 30.177 6.684 34.5 37.5 1.63 11.445-3 22a51737 51737 0 0 1-208 380q-21.953 14.037-47 6-5.722-1.858-10-6a106079 106079 0 0 1-202-383q-9.21-42.6 31.5-57" fill="currentColor"/><path fill="white" d="M68.5 44.5q59.859-.495 119.5 1a5983 5983 0 0 1 5.5 155.5l2 3a42.4 42.4 0 0 1 8.5 1.5q1.238 6.28-2.5 11.5l2 3q5.816 1.093 11.5-.5 3.748.474 4.5 4a138 138 0 0 1-7 24.5 455 455 0 0 0-15-2 28.4 28.4 0 0 1-4.5-7.5 18.4 18.4 0 0 0-7-4q-29.847 20.701-21 56 17.603 38.673 58.5 26.5a121 121 0 0 0 13-7q1.873-3.314-.5-6.5a30 30 0 0 0-7-6q.944-11.643-9.5-16-3.545 1.771-7 0a59 59 0 0 0-6.5-8q-3.756-7.719 2.5-13.5 4.644-1.39 7 3l3 .5q8.526-4.13 17 .5a9.8 9.8 0 0 1 1 4 108 108 0 0 0-3 10q.328 9.826 10 11 4.35 6.351 10.5 10.5 2.916-1.409 5-4 5.205-12.702 17.5-18.5 2.153-3.4-1-6a30.1 30.1 0 0 0-12-3q-3.415-2.938-7.5-4.5a75 75 0 0 0-7.5 3.5q-12.11 3.735-6.5-8.5a42.4 42.4 0 0 1 8.5-1.5q3.038-1.791 1-4.5a156 156 0 0 1-19-3.5q-6.74-6.097-5.5-15.5a16.7 16.7 0 0 0-4-4l-.5-5a9319 9319 0 0 1 43.5-176 6.98 6.98 0 0 1 2.5-3.5q37.5-1 75 0 1.526 1.574.5 3.5-38.02 63.05-76 126-1.574 1.526-3.5.5a23.1 23.1 0 0 0-6-7q-5.442-.322-6 5.5 2.046 7.536 10 6-3.125 11.507-10 21.5l1 1.5A42653 42653 0 0 0 372.5 46a418 418 0 0 1 57-1q1.526 1.574.5 3.5a18280 18280 0 0 0-113.5 114l1 1L454.5 50q2.798-1.952 6-1 16.925 10.31 12 29l-172 128q-1.926 1.026-3.5-.5a51.7 51.7 0 0 0-1.5-9.5q-7.827-2.344-16-1a87 87 0 0 0-6 9 226 226 0 0 0 11.5 8.5q1.561 4.704-2.5 7.5-5.265 3.273-10.5 6.5a3.94 3.94 0 0 1-2-1l-1-7q-4.966-2.989-10.5-3.5-10.555 8.639 3 12.5a6.2 6.2 0 0 1 2 3.5 21.4 21.4 0 0 1-5 6q2.042 2.376 2 5.5a8.4 8.4 0 0 0 4-.5 39.2 39.2 0 0 1 8-9 27100 27100 0 0 1 174-105.5q1.671 1.834.5 4a6123 6123 0 0 0-36.5 65.5 5240 5240 0 0 0-87 40 1376 1376 0 0 0 70-20 18.5 18.5 0 0 1 6-.5 721 721 0 0 1-29 55 9497 9497 0 0 1-47.5 2q-9.332-2.041-16.5-8.5-3-1-6 0a63 63 0 0 1-7 8 4.93 4.93 0 0 1-3 .5 8.4 8.4 0 0 0 .5 4 34.8 34.8 0 0 1 6 6 42.8 42.8 0 0 0 1.5 9 11.3 11.3 0 0 0 3.5 1 53.6 53.6 0 0 1 11.5-3.5l8-11a717 717 0 0 1 42 1q1.58 2.082.5 4.5a357 357 0 0 1-15.5 26.5 525 525 0 0 1-35.5-6.5l-2.5 1a300 300 0 0 0 29 10.5q3.082 1.03 5 3.5a12178 12178 0 0 1-70.5 130q-13.39 11.28-30.5 6.5a34.7 34.7 0 0 1-7.5-6.5 90924 90924 0 0 1-188-361q-6.225-14.364-1-29 7.305-12.573 21.5-15"/><path fill="white" d="M207.5 44.5q19.007-.25 38 .5 1.611 1.108 2 3a6455 6455 0 0 0-14 91q-.313 2.807-3 3.5-4.883-4.992-11-2.5-4.221 3.619.5 6.5 5.202-.674 10.5 1.5a6.3 6.3 0 0 1 1 3 1649 1649 0 0 1-7.5 51.5 7.25 7.25 0 0 1-2.5 2l-13-7.5q-5.485.162-11 0a17.1 17.1 0 0 1-1-5.5 9769 9769 0 0 0 8.5-129 82.3 82.3 0 0 1 2.5-18"/><path d="M222.5 88.5q2.628-.124 3 2.5-3.183 5.781-1 12-.25 2.25-2.5 2.5a95 95 0 0 0-8.5-8q3.067-6.067 9-9m143 93q16.966 3.867 1 10-6.078-.31-4.5-6a19.6 19.6 0 0 0 3.5-4m-121 7q5.74-.09 2 3.5-6.08.702-2-3.5m64 37q7.242-.172 4 6.5-10.318 1-4-6.5m-14 7q2.466-.32 4.5 1a170 170 0 0 1 4.5 11.5 11.2 11.2 0 0 0-1 4.5q-7.983-.612-12.5-7-.498-6.262 4.5-10m47 7q6.09-.022 12 1.5 3.874 4.338-.5 8.5-2.082 1.58-4.5.5l-6-4q-3.276-2.846-1-6.5m-47 68q6.645.636 9 7-.324 7.679-4.5 14-13.042 2.41-17.5-10 4.35-8.375 13-11" fill="currentColor"/></svg>'},{alias:"household_hazardous_waste",name:"fa_household_hazardous_waste",tags:["color_household_hazardous_waste"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 180" height="1em" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd"><path fill="none" d="M-.5-.5h49l-49 50z"/><path fill="currentColor" d="M48.5-.5h81a1300 1300 0 0 0 50 47v86a1624 1624 0 0 0-49 47h-82a865 865 0 0 0-49-50v-80z"/><path fill="none" d="M129.5-.5h50v47a1300 1300 0 0 1-50-47"/><path fill="white" d="M59.5 19.5q31.004-.25 62 .5L161 59.5q1 30 0 60a1072 1072 0 0 0-39.5 38.5q-30 1-60 0L20 118.5a841 841 0 0 1 0-58 760 760 0 0 0 39.5-41"/><path fill="none" d="m90.5 49.5-2-2q-.013-2.712 1.5-5 .745 3.465.5 7"/><path fill="currentColor" d="M69.5 47.5q2.178 5.962 7.5 10 2.244 2.925.5 6-6.76-3.618-10-10.5a53 53 0 0 1 2-5.5"/><path fill="currentColor" d="M130.5 63.5q1.438.68 2.5 2a12.5 12.5 0 0 1 0 7 38.2 38.2 0 0 0-6 10q-5.625-8.202 3-14 .74-2.45.5-5"/><path fill="currentColor" d="m88.5 47.5 2 2q.034 3.64 1.5 7a140 140 0 0 1 10 20 16.24 16.24 0 0 1 0 8q-3.41 5.481-3.5 12 6.093-.336 8.5-6a42.5 42.5 0 0 0 0-13 48 48 0 0 1-4.5-11.5q2.633-8.485 9.5-14.5l1-4q2.897 4.67 2 10a62.7 62.7 0 0 1-8 7q-1.952 2.797-1 6 7 9 16 16 7.478 8.34 2 18a149 149 0 0 1-11.5 9q9.432 2.917 15.5-5 .968-12.122 2-24a43 43 0 0 0 7 16q2.104 16.19-10.5 26.5a54 54 0 0 1-15 8 42.5 42.5 0 0 1-13 0q-3.701-2.382-.5-5.5a331 331 0 0 0 9.5-2.5q1.255-1.517 1-3.5a353 353 0 0 1-16 0 191 191 0 0 0 15-10q6.032-7.75 2.5-17-3.263 12.015-15.5 14a4.93 4.93 0 0 1-2.5-1 104 104 0 0 0 1-20 114 114 0 0 0-4.5-14 3.65 3.65 0 0 0-1.5 1q-2.584 12.52.5 25 .532 14.727-12.5 8a36.2 36.2 0 0 0-4-7q-3.414 11.324 6.5 18.5 11.039 4.794-3 3.5h-6q-.356 1.936 1 3 6.383 3.644 14 3.5 2.27 3.681-2 5-27.02 2.371-37.5-22.5a49.3 49.3 0 0 1 0-14 222 222 0 0 0 5-16q3.57 2.89 3.5 7.5a54.6 54.6 0 0 1-5 13q4.641 15.635 21 15A64.8 64.8 0 0 1 55 105.5Q53.525 92.671 63.5 84q-3.132-6.636-9.5-10.5-1.236-5.073.5-10 2.95 5.7 8.5 9 2.8 3.462 3 8 6.288-7.544 4-17 7.874 8.64 2 19a30.5 30.5 0 0 0 0 11q1.94 8.52 9 4l.5-3a61.6 61.6 0 0 0-3.5-10 42.5 42.5 0 0 1 0-13 154 154 0 0 0 10.5-24"/><path fill="none" d="M74.5 124.5q-3.047.708-5 3-1.356-1.064-1-3zm-75 5a865 865 0 0 1 49 50h-49zm180 3v47h-49a1624 1624 0 0 1 49-47"/></svg>'},{alias:"poison_sign",name:"fa_poison_sign",tags:["color_poison_sign"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 294" height="1em"><path fill="none" d="M-.5-.5h86a5100 5100 0 0 1-86 84z"/><path fill="currentColor" d="M85.5-.5h128a5090 5090 0 0 0 86 84v126a5111 5111 0 0 0-86 84h-128a5112 5112 0 0 0-86-84v-126a5100 5100 0 0 0 86-84"/><path fill="none" d="M213.5-.5h86v84a5090 5090 0 0 1-86-84"/><path fill="#fff" d="M263.5 98.5q1.478 47.435 1 95a6072 6072 0 0 1-66 64.5 2400 2400 0 0 1-98 0Q67.33 225.832 34 193.5a2209 2209 0 0 1 0-94Q67.29 67.209 100.5 35a2401 2401 0 0 1 98 0 5847 5847 0 0 1 65 63.5"/><path fill="currentColor" d="M162.5 74.5q8.004-.374 15 3.5a68 68 0 0 0 12 7 54.5 54.5 0 0 1 6 6.5 21.1 21.1 0 0 0 1 9q.91-.186 1-1 2.676 1.61 3.5 5 3.142 17.59-1 35a16.6 16.6 0 0 1-2.5 4h-3q.18-12.975 3.5-25-1.077-1.426-2.5-.5-3.506 8.496-11 3.5-1.82.37-2 2-1.987-2.179-2.5 1-.893-5.373-4-1-.539-4.567-2-1-4.5-4-9 0a7.25 7.25 0 0 0-2.5-2q-.94 2.847-1 7-1.88 22.882 21 17 4.107.803 5.5-3l2.5 2.5q-1.846 1.774 0 3.5 2.616-.795 4.5 0 1.107 4.068-2 7a4.46 4.46 0 0 0-1.5-2q-.859 2.367-1 4.5l-5 1q1.374.417 2 1.5a163 163 0 0 1-18-.5 65 65 0 0 0-7-6.5q-1.648 4.289 1.5 8l11 8q.3 6.38 1.5 12.5 2.8 1.067 4.5-1.5 1.434-5.763 2.5-11.5 2.244-.76 3.5 1.5 1.457 11.139-4 21a92.7 92.7 0 0 1-22.5 15.5q-12 1-24 0-12.968-6.618-21.5-18.5a46.3 46.3 0 0 1-1-17q1.43-3.138 4-1l1 10q2.356 3.634 6.5 4a61.6 61.6 0 0 1-.5-16 172 172 0 0 1 13-8q2.018-3.495.5-7-2.349 4.087-7 5.5a93.7 93.7 0 0 1-26-1q-3.498-5.322-1-11.5a19.2 19.2 0 0 1-3-5 2155 2155 0 0 0-3-14q-.25-10.013.5-20a20.6 20.6 0 0 1 2-6q1.67-1.816 3.5 0l1-1.5q-1.526-4.18-.5-8.5 10.183-9.966 23.5-15a334 334 0 0 1 34-1"/><path fill="#fff" d="m108.5 142.5-2-6q-.87-5.463-1.5-11-3.669-4.017-1.5-9 2.088 3.588 6 5a28.7 28.7 0 0 1 7-2 4.93 4.93 0 0 1-.5 3q-3.5 1.5-5 5-.018 7.821-2.5 15m89 1-2 2a25 25 0 0 1-4.5-4 74 74 0 0 0 0-12 72.5 72.5 0 0 0-8.5-6q.18-1.63 2-2 7.494 4.996 11-3.5 1.423-.926 2.5.5-3.32 12.025-3.5 25z"/><path fill="currentColor" d="M182.5 123.5a72.5 72.5 0 0 1 8.5 6 74 74 0 0 1 0 12 25 25 0 0 0 4.5 4q5.45 12.086-8 14-.626-1.083-2-1.5l5-1q.141-2.133 1-4.5a4.46 4.46 0 0 1 1.5 2q3.107-2.932 2-7-1.884-.795-4.5 0-1.846-1.726 0-3.5l-2.5-2.5q-1.393 3.803-5.5 3 5.368-6.096 4-14-10.49-6.913-23-5.5-.85 1.492-2 2.5.06-4.153 1-7a7.25 7.25 0 0 1 2.5 2q4.5-4 9 0 1.461-3.567 2 1 3.107-4.373 4 1 .513-3.179 2.5-1"/><path fill="#fff" d="M182.5 144.5q-22.88 5.882-21-17 1.15-1.008 2-2.5 12.51-1.412 23 5.5 1.368 7.904-4 14m-51-20q14.25-.495 9.5 13-2.38 4.884-7.5 6.5-7.5 1-15 0a49 49 0 0 1-5-11.5 10.3 10.3 0 0 1 1.5-4q8.079-3.313 16.5-4"/><path fill="currentColor" d="M73.5 125.5q13.47-1.966 16.5 11 4.18 5.082 10 8 1.016 5.498-2.5 10-2.362 1.697-5 .5a22.6 22.6 0 0 0-8-4l-16-1q-10.222-7.63.5-14.5a61 61 0 0 1 4.5-10m145 2q12.717-2.56 12.5 10 7.664 8.69-2.5 14.5l-17 1q-13.407 10.818-11.5-6.5a100 100 0 0 0 18.5-19"/><path fill="#bababa" d="M98.5 126.5q1.487 6.825 3 14-3.684-6.356-3-14"/><path fill="#fff" d="M153.5 146.5q5.59 5.826 3.5 14-20.014 6.357-11.5-12a346 346 0 0 0 8-2m-17 26q18.777-1.07 37 3 .483 3.334-2 5.5-19.743 12.276-40 1-1.426-1.077-.5-2.5 19.164 9.59 38.5.5 1.255-1.517 1-3.5-2.34.028-4.5 1l-5-2q-6.155.906-12.5 0-9.097.41-18 2-1.817-1.16 0-2.5a219 219 0 0 0 6-2.5"/><path fill="#fff" d="M136.5 178.5q2.405-.282 4 1.5-2.944 1.266-4-1.5m9 0h3q-1.119 5.715-3 0"/><path fill="#d8d8d8" d="M156.5 178.5q2.217-.393 4 1l-2 1q-1.82-.37-2-2"/><path fill="#fff" d="M151.5 179.5q2.755.209 1 2-1.197-.686-1-2m-13 12q.353-.895 1.5-1a67 67 0 0 0 5.5 1.5q9.141.44 18 .5-4.833 4.275-11.5 4-7.881.292-13.5-5"/><path fill="currentColor" d="M108.5 191.5q11.098.858 9.5 12-14.1 7.099-22.5 20.5-5.875 2.536-12 .5-2.74-7.475-8.5-13-1.937-7.593 5.5-10.5 16.633 2.407 28-9.5m109 33q-3.993 2.652-9 2-3.604.16-5.5-3a44.7 44.7 0 0 0-5.5-9.5 154 154 0 0 1-17.5-10.5q-1-2 0-4l5.5-5.5q2.5-1 5 0a216 216 0 0 0 17 10q8.385-.142 16 3 1.653 3.601.5 7.5-5.532 3.733-6.5 10"/><path fill="none" d="M-.5 209.5a5112 5112 0 0 1 86 84h-86zm300 0v84h-86a5111 5111 0 0 1 86-84"/></svg>'},{alias:"risk_of_fire_circle",name:"fa_risk_of_fire_circle",tags:["color_risk_of_fire_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" height="1em" ><path fill="none" d="M-.5-.5h300v300H-.5z"/><path fill="currentColor" d="M287.5 104.5q4.65 11.944 6.5 25a361 361 0 0 1 0 38q-.43 8.481-3.5 16a270 270 0 0 0 3-25.5q-.75-16.265-2-32.5a32.5 32.5 0 0 1-2.5 6 49.6 49.6 0 0 1-1-14q.21 3.815 2 7l.5-4.5a84 84 0 0 1-3-15.5"/><path fill="currentColor" d="M287.5 104.5a84 84 0 0 0 3 15.5l-.5 4.5q-1.79-3.185-2-7a49.6 49.6 0 0 0 1 14 32.5 32.5 0 0 0 2.5-6q1.25 16.235 2 32.5a270 270 0 0 1-3 25.5q-17.707 70.976-85 100.5a132.5 132.5 0 0 1-38 9.5q-17.507.25-35-.5a1317 1317 0 0 1-28-5.5q-71.866-25.12-94.5-98Q-11.75 97.26 59.5 36q64.335-47.952 141-22 64.622 24.873 87 90.5"/><path fill="white" d="M162.5 24.5q58.746 6.98 92.5 55 34.907 57.158 11 120-32.138 67.36-106.5 76-21.895 1.335-43-4-67.314-20.564-88.5-88Q9.724 101.914 73.5 49q14.25-10.117 30-17a116 116 0 0 1 27-6.5 385 385 0 0 1 32-1"/><path fill="currentColor" d="M175.5 115.5q.975-.456 2-1a62.7 62.7 0 0 0 1.5-11 14.7 14.7 0 0 0 3.5 3q4.962 5.11 5 12.5a163 163 0 0 1-4.5 21.5 16.24 16.24 0 0 0 0 8q1.774 1.846 3.5 0a230 230 0 0 1 12.5-13q4.194-4.891 6-11 4.724 8.884 3 19-3.99 10.985-8 22-2.258 13.065 7 4a234 234 0 0 1 7-16q6.9 35.415-20.5 58.5-15.406 10.852-34 8.5 13.89-9.776 19-26 1.469-4.687 1-10h-3a182 182 0 0 1-5-10q1.283-1.19 2.5 1 1.026-1.926-.5-3.5-4.014.051-8 1.5l-2-1a136 136 0 0 1-3-17 83 83 0 0 0-6-13q-1.237-1.329-3-1 .25 10.512-.5 21-1.01 4.962-5.5 5.5-1.993-6-6.5-10.5-1.892.389-3 2a64.2 64.2 0 0 0 0 16q3.686 8.787 2.5 18a12.4 12.4 0 0 1-4.5-5 150 150 0 0 1-6-16q-.784-2.584-3-4-1.418.608-2 2a145 145 0 0 0-.5 17q-13.205-3.07-3.5 6a134.3 134.3 0 0 1 9 20q3.19 2.421 4.5 6-1.423.978-3.5 1a175 175 0 0 0-10.5-2q-13.805-5.551-20.5-19l-4-10a309 309 0 0 0-8.5-41q1.297-1.624 3-.5 6.255 3.125 10 9 3.301 1.237 5.5-1.5a174 174 0 0 0 2.5-22.5q.115-5-2-9.5 3.034-.811 6 1.5a57.7 57.7 0 0 1 8.5 9.5q10.609-23.808.5-48l1-2q12.25 7 19 19.5 3.301 1.238 5.5-1.5 1-4.5 0-9-8.2-20.944-1-42 1.665-2.305 4.5-2-.286 8.9 3.5 17a270 270 0 0 1 14 29 555 555 0 0 1 2.5 28q5.587-2.093 7-8"/><path fill="currentColor" d="M160.5 155.5a136 136 0 0 0 3 17l2 1q3.986-1.449 8-1.5 1.526 1.574.5 3.5-1.217-2.19-2.5-1a182 182 0 0 0 5 10v1q-4.682 3.828-10 6a38 38 0 0 1 2.5-8q.747-4.473.5-9-5.205 1.182-8 6-1.783 1.393-4 1 3.856-12.655 3-26"/><path fill="currentColor" d="M204.5 239.5h-109v-8h109z"/></svg>'},{alias:"oxidizing_substance_circle",name:"fa_oxidizing_substance_circle",tags:["color_oxidizing_substance_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 184 181" height="1em"><path fill="none" d="M-.5-.5h184v181H-.5z"/><path fill="currentColor" d="M78.5.5q60.445-4.405 91.5 47 24.14 50.83-8 97-38.48 45.159-96.5 31.5-61.437-22.094-64-87.5Q5.034 27.718 61.5 5a312 312 0 0 0 17-4.5"/><path fill="white" d="M78.5 14.5q55.634-4.818 81.5 44 19.56 53.32-22.5 91.5-40.22 27.212-84 6Q2.603 121.827 20 62.5q17.377-38.64 58.5-48"/><path fill="currentColor" d="M90.5 25.5q2.315 8.67 6.5 17 1.44 8.46 2.5 17 7.495-4.146 7.5-13l5 10q.27 6.636.5 13 4.454-1.706 6.5-6l2 4a169 169 0 0 0-2 16 20.6 20.6 0 0 0 7-5q7.782 18.99-2 37a71.7 71.7 0 0 0-9 17q-5.572 7.572-14.5 10.5 10.989.75 22 .5v9h-60v-9q9.513.25 19-.5-16.47-7.486-19.5-25.5-6.615-7.734-7-18-1-12 0-24a57 57 0 0 0 7.5 5q.005-10.358.5-21a41 41 0 0 1 5 7 18 18 0 0 0 3.5 2q.63-6.422.5-13 .53-4.557 3.5-8-1.238-1.427-.5-3a205 205 0 0 1 9 14 20.5 20.5 0 0 0 3-8 379 379 0 0 1 3.5-25"/><path fill="white" d="M88.5 66.5q3.504 2.256 5.5 6l3.5 14h-13q-.924-6.825 3.5-12 .746-3.97.5-8"/><path fill="white" d="M75.5 74.5a194 194 0 0 1 5 12.5q-2.67 3.335-7 3.5z"/><path fill="white" d="M105.5 78.5q1.79.705 2 3a54 54 0 0 0 2 9l-1 1a432 432 0 0 1-8-5q2.54-4.025 5-8"/><path fill="white" d="M63.5 88.5q3.211 3.701 8 5a55.5 55.5 0 0 0-5.5 7 27.4 27.4 0 0 1-2.5-12"/><path fill="white" d="M118.5 92.5q1.469 4.687 1 10a4.93 4.93 0 0 1-.5 3 44.8 44.8 0 0 0-5.5-9.5q2.02-2.504 5-3.5"/><path fill="white" d="M84.5 94.5q32.064-1.197 25.5 30-8.797 14.407-25.5 10.5-18.144-8.906-12.5-28.5 4.527-7.872 12.5-12"/><path fill="white" d="M118.5 92.5q.09-.814 1-1 1.962 5.722 0 11 .469-5.313-1-10"/></svg>'},{alias:"toxic_material_circle",name:"fa_toxic_material_circle",tags:["color_toxic_material_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 171 162" height="1em"><path fill="none" d="M-.5-.5h79Q11.528 12.73 6.5 81q2.41 54.826 53 76a146 146 0 0 0 16 4.5h-76z"/><path fill="none" d="M92.5-.5h78v162h-74q67.563-13.075 71-82-3.046-57.81-58-76.5a4905 4905 0 0 1-17-3.5"/><path fill="currentColor" d="M78.5-.5h14q8.298 1.725 17 3.5 54.954 18.69 58 76.5-3.437 68.925-71 82h-21a146 146 0 0 1-16-4.5q-50.59-21.174-53-76 5.028-68.27 72-81.5"/><path fill="white" d="M76.5 12.5q63.435-3.273 78.5 58 4.618 51.317-41.5 73.5-53.64 18.04-85.5-28.5Q1.564 58.996 51.5 22q11.958-6.728 25-9.5"/><path fill="currentColor" d="M78.5 37.5q9.14-.54 18 1.5A103.6 103.6 0 0 1 116 55.5q1.055 7.84-4 14l-1 12-2.5 2.5q9.387-1.35 14-10 4.354-4.476 9-.5.777 3.6 3.5 6 1.534 5.726-1.5 10.5l-12-2-17 9.5a138 138 0 0 0 14 7.5q4.968.807 9.5-1.5 15.512 4.005 2 12-.266 9.758-9.5 6.5a49.7 49.7 0 0 0-7-10l-15-6.5q-5.453 3.484-12 4-6.92-1.07-13-3.5l-14 7q-2.977 3.201-4 7.5-3.55 2.843-8 1.5a36.7 36.7 0 0 1-4-7.5q-9.942-5.404 0-10.5l12 1A88 88 0 0 0 69 98.5q1.032-1.248-.5-2-9.27-6.397-20-8.5-11.961 6.063-9.5-7.5 2.83-2.289 3-6 3.498-4.935 8.5-1.5 3.875 6.624 11 9.5l1-1a89 89 0 0 1-1.5-12q-4.737-5.71-4-13 8.738-12 21.5-19"/><path fill="white" d="M79.5 40.5q10.574-1.173 20 3.5A126 126 0 0 1 113 56.5q1 2.5 0 5a19.35 19.35 0 0 0-4.5-7q-1.5.5-2 2 2.499 2.238 3 5.5a251 251 0 0 0-1.5 18.5 124 124 0 0 1-12 9q.432 5.463-4.5 7.5-6.187 1.28-12-1a82 82 0 0 0-2.5-7.5l-11-7a11.5 11.5 0 0 1-1.5-5.5q2-7 0-14 .114-4.108 3-7l-1-1.5q-5.472 3.44-5.5 10-2.06-3.293-1-7 8.325-10.107 19.5-16"/><path fill="currentColor" d="M68.5 70.5a72.4 72.4 0 0 1 12 .5q2.09 4.64-2 8-11.67 3.58-10-8.5"/><path fill="currentColor" d="M92.5 70.5a72.4 72.4 0 0 1 12 .5q1.433 7.36-6 9.5-7.686-2.596-6-10"/><path fill="white" d="M45.5 74.5a4.93 4.93 0 0 1 3 .5q6.8 10.413 19 13.5 2 2 0 4a138 138 0 0 0-17.5-8 30.6 30.6 0 0 1-8.5 3v-4h3q-.354-4.663 1-9"/><path fill="white" d="M126.5 74.5q2.435-.21 3.5 2 .745 3.465.5 7h3q.255 1.983-1 3.5-6.268-1.84-13-1a297 297 0 0 0-14.5 7.5q-1.08-2.418.5-4.5 13.276-3.606 21-14.5"/><path fill="currentColor" d="M85.5 81.5q2.835-.306 4.5 2a31.4 31.4 0 0 0 3.5 7 3.65 3.65 0 0 1-1 1.5 87 87 0 0 0-10.5-.5q.813-5.208 3.5-10"/><path fill="white" d="M71.5 89.5a5.6 5.6 0 0 1 3 1q1.132 10.594 12 10 11.547-.075 14-11 3.012 12.8-10 16.5-18.712 2.025-19-16.5"/><path fill="white" d="M68.5 101.5q2.405-.282 4 1.5a68.7 68.7 0 0 1-14 7 80 80 0 0 1-8 10.5 7.25 7.25 0 0 1-2.5-2q.006-5.538-3-10a7.3 7.3 0 0 0-2 3q-3.04-4.712 3-5 5.017 2.462 10.5 1.5a102 102 0 0 0 12-6.5"/><path fill="white" d="M101.5 100.5q8.468 3.732 17 7.5 5.166.703 10-1.5 3.245.368 5 3-2.531 3.915-4-1a3.65 3.65 0 0 0-1.5 1 79 79 0 0 0-2 10q-2.907 2.04-5-1a17.3 17.3 0 0 0-3.5-7 161 161 0 0 0-15-8q-1.329-1.238-1-3"/></svg>'},{alias:"compressed_gas_circle",name:"fa_compressed_gas_circle",tags:["color_compressed_gas_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 223 224" height="1em"><path fill="none" d="M-.5-.5h223v224H-.5z"/><path fill="currentColor" d="M96.5 3.5Q183.359.196 215 80.5q16.989 68.52-34.5 116.5-57.797 43.212-123 12Q-3.792 171.674 1 99.5q16.03-79.777 95.5-96"/><path fill="white" d="M96.5 20.5q68.884-4.2 99.5 57 21.112 62.803-27.5 107.5-55.496 39.132-113 3Q10.755 151.79 19 94.5q16.623-60.377 77.5-74"/><path fill="currentColor" d="M178.5 75.5q10.465-1.042 8 9a354 354 0 0 1-24 10.5l-2.5 2.5a28.4 28.4 0 0 1-3 11A9811 9811 0 0 1 53.5 152q-3.707 1.06-7-1-12.157-9.969-9.5-25.5a11.5 11.5 0 0 1 3.5-4.5l100-41a12.5 12.5 0 0 1 7 0 57.4 57.4 0 0 0 9 4.5 161 161 0 0 0 22-9"/></svg>'},{alias:"corrosive_circle",name:"fa_corrosive_circle",tags:["color_corrosive_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 205 193" height="1em"><path fill="none" d="M-.5-.5h205v193H-.5z"/><path fill="currentColor" d="M84.5.5q72.725-6.03 104.5 59 19.013 51.892-14 96-46.398 50.538-111.5 28.5Q1.322 153.93 5 84.5 17.362 16.393 84.5.5"/><path fill="white" d="M91.5 14.5q59.738-2.022 84.5 52 16.461 50.505-20.5 88.5-45.105 36.928-97 10Q9.748 131.704 22 73.5q17.463-50.075 69.5-59"/><path fill="currentColor" d="M111.5 53.5a297 297 0 0 1 39.5 6q3.051.22 5-2a137 137 0 0 1-1.5 12.5q.289 3.756 2 7a9.8 9.8 0 0 1-2 5q2.782 5.118 1 10.5-2.259 1.87-4.5 0-1.042-5.245 1.5-10-2.879-5.13-2-10.5a2136 2136 0 0 1-37-6q-8.714-5.03-2-12.5"/><path fill="currentColor" d="M90.5 54.5q6.7-.55 13 1.5 3.839 4.387 0 9a544 544 0 0 1-39 7.5 29.5 29.5 0 0 0 1 6.5 15.1 15.1 0 0 1-3 6q2.208 5.724 1 11.5-4.874 2.047-5-3.5a2160 2160 0 0 0 3-22.5 85 85 0 0 1-1.5-13q2.21 2.26 5.5 2a229 229 0 0 0 25-5"/><path fill="white" d="M113.5 55.5a1243 1243 0 0 0 40 6q.483 4.548-4 5a1386 1386 0 0 1-37-3.5q-1.611-1.108-2-3a21 21 0 0 1 3-4.5"/><path fill="white" d="M89.5 57.5a72.4 72.4 0 0 1 12 .5q2.46 4.164-2 6a1444 1444 0 0 0-36 3.5v-5a263 263 0 0 0 26-5"/><path fill="currentColor" d="M170.5 72.5q1.184.424 2 1.5-2.28 3.895-2.5 8.5-4.141 1.5-4 6l-3 3a103 103 0 0 0 2-9 196 196 0 0 1 5.5-10"/><path fill="currentColor" d="M133.5 75.5q1.983-.255 3.5 1a96 96 0 0 0 6.5 15.5l-1 1.5a37 37 0 0 1-6.5-9q-.301-4.88-2.5-9"/><path fill="currentColor" d="M161.5 74.5h3q-.075 6.291-2.5 12a8.9 8.9 0 0 1-3 4 4.46 4.46 0 0 1-1.5-2 44.3 44.3 0 0 1 5-10 6.85 6.85 0 0 1-1-4"/><path fill="currentColor" d="M140.5 76.5q4.48-.117 2 3.5.763 1.752 2.5 2.5.068 4.251 2.5 7.5a4.45 4.45 0 0 1-2 1.5 48.3 48.3 0 0 0-4.5-9 18.5 18.5 0 0 1-.5-6"/><path fill="currentColor" d="M74.5 85.5q1.762-.329 3 1-2.415 4.08-2.5 9l-3 2q-.465 7.742-7.5 5 1.095-7.562 5-14 2.653 2.937 2 6a42.4 42.4 0 0 1 3-9"/><path fill="currentColor" d="M45.5 85.5q4.593 3.185 4.5 9a12.4 12.4 0 0 1 2.5-4q.882 3.615 3.5 6 .51 3.804 1.5 7.5l-1 1.5q-5.77-2.013-6.5-8l-3-2q-.144-4.427-2.5-8 .544-1.025 1-2m127 15q-3.203 2.804-8 2a27.6 27.6 0 0 1-6-3.5q-2.36-1.048-4 1l2 1q-3.762.172-6 3 2.28 4.159 7 5.5-9.027 2.475-10-7a82 82 0 0 0-18 1 43.1 43.1 0 0 0 13 1v3q-38 1 0 2v3a43.1 43.1 0 0 0-13 1q8.228 1 16 2l-11 2q.166.925 1 1.5 10.5 1 21 0a140 140 0 0 1 16-3.5v3a37.9 37.9 0 0 0-14 3.5q-11.5 1-23 0-4.072-1.312-4-5.5-5.174 1.115-5-4-6.852.625-4.5-6a18.84 18.84 0 0 0 6.5-5.5 25 25 0 0 1 7-.5q-1.014-5.985 5-5 4.802.777 9.5 2 3.569.025 6.5-2a47 47 0 0 1 8 4.5q3.97.746 8 .5"/><path fill="white" d="M138.5 99.5q4.017-2.115 8 .5-4.141 1.083-8-.5"/><path fill="currentColor" d="M172.5 100.5q1.356 1.064 1 3-4.82.465-9-1 4.797.804 8-2"/><path fill="currentColor" d="M69.5 105.5h25v11h-68v-12q13.509-.25 27 .5 7.75 6.65 16 .5"/></svg>'},{alias:"chronic_toxicity_circle",name:"fa_chronic_toxicity_circle",tags:["color_chronic_toxicity_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" height="1em"><circle cx="200" cy="200" r="160.821" stroke="currentColor" stroke-width="28.358" fill="none"/><path d="M129 112v30h49.5L200 246.2 221.5 142H271v-30z" fill="currentColor"/><circle cx="200" cy="304.776" r="17.5" fill="currentColor"/></svg>'}]},2287:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.findIcon=e.findFaIconsByTag=e.findFaIconsByName=e.findSquaredIconByTag=e.findSquaredIconByName=e.findSquaredIcon=void 0;var r=n(1635),i=n(7337),o=n(6319),a=n(1665),s=n(5050),l=n(9745),T=function(t,e){return void 0===e&&(e=!1),s.emojiIcons.find((function(n){return!(n.name!==t||e&&n.textOnly)}))};e.findSquaredIcon=function(t){return a.squaredIcons.find((function(e){return e.alias===t||e.name===t}))};e.findSquaredIconByName=function(t){return a.squaredIcons.find((function(e){return e.alias===t||e.name===t}))};e.findSquaredIconByTag=function(t){return a.squaredIcons.find((function(e){var n;return null===(n=e.tags)||void 0===n?void 0:n.includes(t)}))};e.findFaIconsByName=function(t){return i.faIcons.find((function(e){return e.alias===t||e.name===t}))};e.findFaIconsByTag=function(t){return i.faIcons.find((function(e){var n;return null===(n=e.tags)||void 0===n?void 0:n.includes(t)}))};e.findIcon=function(t,n){var i;if(void 0===n&&(n=!1),t.includes("emoji")){var a=null===(i=t.replace(/emoji/g,""))||void 0===i?void 0:i.trim();return{icon:a?T(a,n):null,name:a,color:"",isSquared:!1}}var s=function(t){var e=t.match(/\bcolor\s*=\s*(#[0-9a-fA-F]{3,8}|\w+\([^)]*\)|[a-zA-Z]+)/);if(e)return{parsedName:t.slice(0,e.index).trim(),parsedColor:e[1]||""};var n=t.split(/\s+/);return{parsedName:n[0],parsedColor:n.length>1?n.slice(1).join(" ").trim():""}}(t),Q=s.parsedName||t,c=s.parsedColor||"";if(!Q)return{icon:null,name:"",color:"",isSquared:!1};var u=function(t,n){void 0===n&&(n=!1);var r=o.unicodeIcons.find((function(e){return e.alias===t||e.name===t}));return r||(r=n?null:(0,e.findFaIconsByName)(t))||(r=T(t,n)),r}(Q,n);if(u)return{icon:u,name:Q,color:c,isSquared:!1};if(u=(0,e.findSquaredIconByName)(Q))return{icon:u,name:Q,color:c,isSquared:!0};if(Q.includes("_")){var d=r.__read(Q.split("_")),h=d[0],p=d.slice(1),m="color_".concat(p.join("_"));if(l.cssColors.includes(h)&&p.length>0){if(u=function(t,n){void 0===n&&(n=!1);var r=o.unicodeIcons.find((function(e){return e.tags.includes(t)}));return r||(r=n?null:(0,e.findFaIconsByTag)(t)),r}(m,n),u)return{icon:u,name:Q,color:h,isSquared:!1};if(u=(0,e.findSquaredIconByTag)(m))return{icon:u,name:Q,color:h,isSquared:!0}}}return{icon:null,name:Q,color:"",isSquared:!1}}},1665:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.squaredIcons=void 0,e.squaredIcons=[{symbol:"1",alias:"squared_one",name:"squared_digit_one",tags:["color_squared_one"]},{symbol:"2",alias:"squared_two",name:"squared_digit_two",tags:["color_squared_two"]},{symbol:"3",alias:"squared_three",name:"squared_digit_three",tags:["color_squared_three"]},{symbol:"4",alias:"squared_four",name:"squared_digit_four",tags:["color_squared_four"]},{symbol:"5",alias:"squared_five",name:"squared_digit_five",tags:["color_squared_five"]},{symbol:"6",alias:"squared_six",name:"squared_digit_six",tags:["color_squared_six"]},{symbol:"7",alias:"squared_seven",name:"squared_digit_seven",tags:["color_squared_seven"]},{symbol:"8",alias:"squared_eight",name:"squared_digit_eight",tags:["color_squared_eight"]},{symbol:"9",alias:"squared_nine",name:"squared_digit_nine",tags:["color_squared_nine"]},{symbol:"0",alias:"squared_zero",name:"squared_digit_zero",tags:["color_squared_zero"]}]},6319:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.unicodeIcons=void 0,e.unicodeIcons=[{symbol:"�",unicodeHex:"FFFD",code:65533,alias:"unknown",name:"unknown",tags:["color_unknown"],nameUnicode:"REPLACEMENT CHARACTER",width:"+0.5ex"},{symbol:"×",unicodeHex:"D7",code:215,alias:"times",name:"multiplication_sign",tags:["color_times"],nameUnicode:"MULTIPLICATION SIGN",width:"+0.5ex"},{symbol:"•",unicodeHex:"2022",code:8226,alias:"",name:"bullet",tags:["color_bullet"],nameUnicode:"BULLET",width:"+0.5ex"},{symbol:"※",unicodeHex:"203B",code:8251,alias:"",name:"reference_mark",tags:["color_reference_mark"],nameUnicode:"REFERENCE MARK",width:"+0.5ex"},{symbol:"←",unicodeHex:"2190",code:8592,alias:"left_arrow",name:"leftwards_arrow",tags:["color_left_arrow"],nameUnicode:"LEFTWARDS ARROW",width:"+0.5ex"},{symbol:"↑",unicodeHex:"2191",code:8593,alias:"up_arrow",name:"upwards_arrow",tags:["color_up_arrow"],nameUnicode:"UPWARDS ARROW",width:"+0.5ex"},{symbol:"→",unicodeHex:"2192",code:8594,alias:"right_arrow",name:"rightwards_arrow",tags:["color_right_arrow"],nameUnicode:"RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"↓",unicodeHex:"2193",code:8595,alias:"down_arrow",name:"downwards_arrow",tags:["color_down_arrow"],nameUnicode:"DOWNWARDS ARROW",width:"+0.5ex"},{symbol:"①",unicodeHex:"2460",code:9312,alias:"circled_one",name:"circled_digit_one",tags:["color_circled_one"],nameUnicode:"CIRCLED DIGIT ONE",width:"+0.6ex"},{symbol:"②",unicodeHex:"2461",code:9313,alias:"circled_two",name:"circled_digit_two",tags:["color_circled_two"],nameUnicode:"CIRCLED DIGIT TWO",width:"+0.6ex"},{symbol:"③",unicodeHex:"2462",code:9314,alias:"circled_three",name:"circled_digit_three",tags:["color_circled_three"],nameUnicode:"CIRCLED DIGIT THREE",width:"+0.6ex"},{symbol:"④",unicodeHex:"2463",code:9315,alias:"circled_four",name:"circled_digit_four",tags:["color_circled_four"],nameUnicode:"CIRCLED DIGIT FOUR",width:"+0.6ex"},{symbol:"⑤",unicodeHex:"2464",code:9316,alias:"circled_five",name:"circled_digit_five",tags:["color_circled_five"],nameUnicode:"CIRCLED DIGIT FIVE",width:"+0.6ex"},{symbol:"⑥",unicodeHex:"2465",code:9317,alias:"circled_six",name:"circled_digit_six",tags:["color_circled_six"],nameUnicode:"CIRCLED DIGIT SIX",width:"+0.6ex"},{symbol:"⑦",unicodeHex:"2466",code:9318,alias:"circled_seven",name:"circled_digit_seven",tags:["color_circled_seven"],nameUnicode:"CIRCLED DIGIT SEVEN",width:"+0.6ex"},{symbol:"⑧",unicodeHex:"2467",code:9319,alias:"circled_eight",name:"circled_digit_eight",tags:["color_circled_eight"],nameUnicode:"CIRCLED DIGIT EIGHT",width:"+0.6ex"},{symbol:"⑨",unicodeHex:"2468",code:9320,alias:"circled_nine",name:"circled_digit_nine",tags:["color_circled_nine"],nameUnicode:"CIRCLED DIGIT NINE",width:"+0.6ex"},{symbol:"⓪",unicodeHex:"24EA",code:9450,alias:"circled_zero",name:"circled_digit_zero",tags:["color_circled_zero"],nameUnicode:"CIRCLED DIGIT ZERO",width:"+0.6ex"},{symbol:"■",unicodeHex:"25A0",code:9632,alias:"",name:"black_square",tags:["color_square"],nameUnicode:"BLACK SQUARE",width:"+0.5ex"},{symbol:"▲",unicodeHex:"25B2",code:9650,alias:"black_triangle",name:"black_up_pointing_triangle",tags:["color_triangle"],nameUnicode:"BLACK UP-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▼",unicodeHex:"25BC",code:9660,alias:"black_triangle_down",name:"black_down_pointing_triangle",tags:["color_triangle_down"],nameUnicode:"BLACK DOWN-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▶",unicodeHex:"25B6",code:9654,alias:"black_triangle_right",name:"black_right_pointing_triangle",tags:["color_triangle_right"],nameUnicode:"BLACK RIGHT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"◀",unicodeHex:"25C0",code:9664,alias:"black_triangle_left",name:"black_left_pointing_triangle",tags:["color_triangle_left"],nameUnicode:"BLACK LEFT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"△",unicodeHex:"25B3",code:9651,alias:"triangle",name:"white_up_pointing_triangle",tags:[],nameUnicode:"WHITE UP-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▽",unicodeHex:"25BD",code:9661,alias:"triangle_down",name:"white_down_pointing_triangle",tags:[],nameUnicode:"WHITE DOWN-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▷",unicodeHex:"25B7",code:9655,alias:"triangle_right",name:"white_right_pointing_triangle",tags:[],nameUnicode:"WHITE RIGHT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"◁",unicodeHex:"25C1",code:9665,alias:"triangle_left",name:"white_left_pointing_triangle",tags:[],nameUnicode:"WHITE LEFT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"○",unicodeHex:"25CB",code:9675,alias:"circle",name:"white_circle",nameUnicode:"WHITE CIRCLE",tags:[],width:"+0.5ex"},{symbol:"●",unicodeHex:"25CF",code:9679,alias:"",name:"black_circle",tags:["color_circle"],nameUnicode:"BLACK CIRCLE",width:"+0.5ex"},{symbol:"◎",unicodeHex:"25CE",code:9678,alias:"",name:"bullseye",tags:["color_bullseye"],nameUnicode:"BULLSEYE",width:"+0.5ex"},{symbol:"★",unicodeHex:"2605",code:9733,alias:"",name:"black_star",tags:["color_star"],nameUnicode:"BLACK STAR",width:"+0.5ex"},{symbol:"☆",unicodeHex:"2606",code:9734,alias:"star",name:"white_star",tags:[],nameUnicode:"WHITE STAR",width:"+0.5ex"},{symbol:"☹",unicodeHex:"2639",code:9785,alias:"sad_face",name:"white_frowning_face",tags:["color_sad_face"],nameUnicode:"WHITE FROWNING FACE",width:"+0.5ex"},{symbol:"☺",unicodeHex:"263A",code:9786,alias:"smiley",name:"white_smiling_face",tags:[],nameUnicode:"WHITE SMILING FACE",width:"+0.5ex"},{symbol:"☻",unicodeHex:"263B",code:9787,alias:"black_smiley",name:"black_smiling_face",tags:["color_smiley"],nameUnicode:"BLACK SMILING FACE",width:"+0.5ex"},{symbol:"♡",unicodeHex:"2661",code:9825,alias:"heart",name:"white_heart_suit",tags:[],nameUnicode:"WHITE HEART SUIT",width:"+0.5ex"},{symbol:"♥",unicodeHex:"2665",code:9829,alias:"black_heart",name:"black_heart_suit",tags:["color_heart"],nameUnicode:"BLACK HEART SUIT",width:"+0.5ex"},{symbol:"♨",unicodeHex:"2668",code:9832,alias:"",name:"hot_springs",tags:["color_hot_springs"],nameUnicode:"HOT SPRINGS",width:"+0.6ex"},{symbol:"⦾",unicodeHex:"29BE",code:10686,alias:"",name:"circled_white_bullet",tags:["color_circled_white_bullet"],nameUnicode:"CIRCLED WHITE BULLET",width:"+0.5ex"},{symbol:"⦿",unicodeHex:"29BF",code:10687,alias:"",name:"circled_bullet",tags:["color_circled_bullet"],nameUnicode:"CIRCLED BULLET",width:"+0.5ex"},{symbol:"〈",unicodeHex:"3008",code:12296,alias:"left_angle",name:"left_angle_bracket",tags:["color_left_angle"],nameUnicode:"LEFT ANGLE BRACKET",width:"+0.5ex"},{symbol:"〉",unicodeHex:"3009",code:12297,alias:"right_angle",name:"right_angle_bracket",tags:["color_right_angle"],nameUnicode:"RIGHT ANGLE BRACKET",width:"+0.5ex"},{symbol:"・",unicodeHex:"30FB",code:12539,alias:"middle_dot",name:"katakana_middle_dot",tags:["color_middle_dot"],nameUnicode:"KATAKANA MIDDLE DOT",width:"+0.5ex"},{symbol:"☀",unicodeHex:"2600",code:9728,alias:"black_sun",name:"black_sun_with_rays",tags:["color_sun"],nameUnicode:"BLACK SUN WITH RAYS",width:"+0.5ex"},{symbol:"☼",unicodeHex:"263C",code:9788,alias:"sun",name:"white_sun_with_rays",tags:[],nameUnicode:"WHITE SUN WITH RAYS",width:"+0.5ex"},{symbol:"☁",unicodeHex:"2601",code:9729,alias:"",name:"cloud",tags:["color_cloud"],nameUnicode:"CLOUD",width:"+0.5ex"},{symbol:"☂",unicodeHex:"2602",code:9730,alias:"",name:"umbrella",tags:["color_umbrella"],nameUnicode:"UMBRELLA",width:"+0.5ex"},{symbol:"☃",unicodeHex:"2603",code:9731,alias:"",name:"snowman",tags:[],nameUnicode:"SNOWMAN",width:"+0.5ex"},{symbol:"☉",unicodeHex:"2609",code:9737,alias:"astro_sun",name:"sun",tags:["color_astro_sun"],nameUnicode:"SUN",width:"+0.5ex"},{symbol:"☽",unicodeHex:"263D",code:9789,alias:"right_moon",name:"first_quarter_moon",tags:["color_right_moon"],nameUnicode:"FIRST QUARTER MOON",width:"+0.5ex"},{symbol:"☾",unicodeHex:"263E",code:9790,alias:"left_moon",name:"last_quarter_moon",tags:["color_left_moon"],nameUnicode:"LAST QUARTER MOON",width:"+0.5ex"},{symbol:"☎",unicodeHex:"260E",code:9742,alias:"",name:"black_telephone",tags:["color_telephone"],nameUnicode:"BLACK TELEPHONE",width:"+0.6ex"},{symbol:"☏",unicodeHex:"260F",code:9743,alias:"telephone",name:"white_telephone",tags:[],nameUnicode:"WHITE TELEPHONE",width:"+0.6ex"},{symbol:"☖",unicodeHex:"2616",code:9750,alias:"shogi",name:"white_shogi_piece",tags:[],nameUnicode:"WHITE SHOGI PIECE",width:"+0.5ex"},{symbol:"☗",unicodeHex:"2617",code:9751,alias:"black_shogi",name:"black_shogi_piece",tags:["color_shogi"],nameUnicode:"BLACK SHOGI PIECE",width:"+0.5ex"},{symbol:"☘",unicodeHex:"2618",code:9752,alias:"",name:"shamrock",tags:["color_shamrock"],nameUnicode:"SHAMROCK",width:"+0.5ex"},{symbol:"☚",unicodeHex:"261A",code:9754,alias:"black_point_left",name:"black_left_pointing_index",tags:["color_point_left"],nameUnicode:"BLACK LEFT POINTING INDEX",width:"+0.5ex"},{symbol:"☜",unicodeHex:"261C",code:9756,alias:"point_left",name:"white_left_pointing_index",tags:[],nameUnicode:"WHITE LEFT POINTING INDEX",width:"+0.5ex"},{symbol:"☛",unicodeHex:"261B",code:9755,alias:"black_point_right",name:"black_right_pointing_index",tags:["color_point_right"],nameUnicode:"BLACK RIGHT POINTING INDEX",width:"+0.5ex"},{symbol:"☞",unicodeHex:"261E",code:9758,alias:"point_right",name:"white_right_pointing_index",tags:[],nameUnicode:"WHITE RIGHT POINTING INDEX",width:"+0.5ex"},{symbol:"☝",unicodeHex:"261D",code:9757,alias:"point_up",name:"white_up_pointing_index",tags:["color_point_up"],nameUnicode:"WHITE UP POINTING INDEX",width:"+0.5ex"},{symbol:"☟",unicodeHex:"261F",code:9759,alias:"point_down",name:"white_down_pointing_index",tags:["color_point_down"],nameUnicode:"WHITE DOWN POINTING INDEX",width:"+0.5ex"},{symbol:"☠",unicodeHex:"2620",code:9760,alias:"skull",name:"skull_and_crossbones",tags:["color_skull"],nameUnicode:"SKULL AND CROSSBONES",width:"+0.5ex"},{symbol:"☡",unicodeHex:"2621",code:9761,alias:"caution",name:"caution_sign",tags:["color_caution"],nameUnicode:"CAUTION SIGN",width:"+0.5ex"},{symbol:"☢",unicodeHex:"2622",code:9762,alias:"radiation",name:"radioactive_sign",tags:["color_radiation"],nameUnicode:"RADIOACTIVE SIGN",width:"+0.5ex"},{symbol:"☣",unicodeHex:"2623",code:9763,alias:"biohazard",name:"biohazard_sign",tags:["color_biohazard"],nameUnicode:"BIOHAZARD SIGN",width:"+0.5ex"},{symbol:"☯",unicodeHex:"262F",code:9775,alias:"",name:"yin_yang",tags:["color_yin_yang"],nameUnicode:"YIN YANG",width:"+0.5ex"},{symbol:"♀",unicodeHex:"2640",code:9792,alias:"female",name:"female_sign",tags:["color_female"],nameUnicode:"FEMALE SIGN",width:"+0.5ex"},{symbol:"♂",unicodeHex:"2642",code:9794,alias:"male",name:"male_sign",tags:["color_male"],nameUnicode:"MALE SIGN",width:"+0.5ex"},{symbol:"⚢",unicodeHex:"26A2",code:9890,alias:"female_female",name:"doubled_female_sign",tags:["color_female_female"],nameUnicode:"DOUBLED FEMALE SIGN",width:"+0.5ex"},{symbol:"⚣",unicodeHex:"26A3",code:9891,alias:"male_male",name:"doubled_male_sign",tags:["color_male_male"],nameUnicode:"DOUBLED MALE SIGN",width:"+0.5ex"},{symbol:"⚤",unicodeHex:"26A4",code:9892,alias:"female_male",name:"interlocked_female_and_male_sign",tags:["color_female_male"],nameUnicode:"INTERLOCKED FEMALE AND MALE SIGN",width:"+0.5ex"},{symbol:"⚥",unicodeHex:"26A5",code:9893,alias:"hermaphrodite",name:"male_and_female_sign",tags:["color_hermaphrodite"],nameUnicode:"MALE AND FEMALE SIGN",width:"+0.5ex"},{symbol:"⚦",unicodeHex:"26A6",code:9894,alias:"male_stroke",name:"male_with_stroke_sign",tags:["color_male_stroke"],nameUnicode:"MALE WITH STROKE SIGN",width:"+0.5ex"},{symbol:"⚧",unicodeHex:"26A7",code:9895,alias:"transgender",name:"male_with_stroke_and_male_and_female_sign",tags:["color_transgender"],nameUnicode:"MALE WITH STROKE AND MALE AND FEMALE SIGN",width:"+0.5ex"},{symbol:"⚨",unicodeHex:"26A8",code:9896,alias:"male_stroke_v",name:"vertical_male_with_stroke_sign",tags:["color_male_stroke_v"],nameUnicode:"VERTICAL MALE WITH STROKE SIGN",width:"+0.5ex"},{symbol:"⚩",unicodeHex:"26A9",code:9897,alias:"male_stroke_h",name:"horizontal_male_with_stroke_sign",tags:["color_male_stroke_h"],nameUnicode:"HORIZONTAL MALE WITH STROKE SIGN",width:"+0.5ex"},{symbol:"☿",unicodeHex:"263F",code:9791,alias:"",name:"mercury",tags:["color_mercury"],nameUnicode:"MERCURY",width:"+0.5ex"},{symbol:"♀",unicodeHex:"2640",code:9792,alias:"venus",name:"venus",tags:["color_venus"],nameUnicode:"FEMALE SIGN",width:"+0.5ex"},{symbol:"♂",unicodeHex:"2642",code:9794,alias:"mars",name:"mars",tags:["color_mars"],nameUnicode:"MALE SIGN",width:"+0.5ex"},{symbol:"♁",unicodeHex:"2641",code:9793,alias:"",name:"earth",tags:["color_earth"],nameUnicode:"EARTH",width:"+0.5ex"},{symbol:"♃",unicodeHex:"2643",code:9795,alias:"",name:"jupiter",tags:["color_jupiter"],nameUnicode:"JUPITER",width:"+0.5ex"},{symbol:"♄",unicodeHex:"2644",code:9796,alias:"",name:"saturn",tags:["color_saturn"],nameUnicode:"SATURN",width:"+0.5ex"},{symbol:"♅",unicodeHex:"2645",code:9797,alias:"",name:"uranus",tags:["color_uranus"],nameUnicode:"URANUS",width:"+0.5ex"},{symbol:"♆",unicodeHex:"2646",code:9798,alias:"",name:"neptune",tags:["color_neptune"],nameUnicode:"NEPTUNE",width:"+0.5ex"},{symbol:"♇",unicodeHex:"2647",code:9799,alias:"",name:"pluto",tags:["color_pluto"],nameUnicode:"PLUTO",width:"+0.5ex"},{symbol:"♔",unicodeHex:"2654",code:9812,alias:"chess_king",name:"white_chess_king",tags:[],nameUnicode:"WHITE CHESS KING",width:"+0.5ex"},{symbol:"♕",unicodeHex:"2655",code:9813,alias:"chess_queen",name:"white_chess_queen",tags:[],nameUnicode:"WHITE CHESS QUEEN",width:"+0.5ex"},{symbol:"♖",unicodeHex:"2656",code:9814,alias:"chess_rook",name:"white_chess_rook",tags:[],nameUnicode:"WHITE CHESS ROOK",width:"+0.5ex"},{symbol:"♗",unicodeHex:"2657",code:9815,alias:"chess_bishop",name:"white_chess_bishop",tags:[],nameUnicode:"WHITE CHESS BISHOP",width:"+0.5ex"},{symbol:"♘",unicodeHex:"2658",code:9816,alias:"chess_knight",name:"white_chess_knight",tags:[],nameUnicode:"WHITE CHESS KNIGHT",width:"+0.5ex"},{symbol:"♙",unicodeHex:"2659",code:9817,alias:"chess_pawn",name:"white_chess_pawn",tags:[],nameUnicode:"WHITE CHESS PAWN",width:"+0.5ex"},{symbol:"♚",unicodeHex:"265A",code:9818,alias:"",name:"black_chess_king",tags:["color_chess_king"],nameUnicode:"BLACK CHESS KING",width:"+0.5ex"},{symbol:"♛",unicodeHex:"265B",code:9819,alias:"",name:"black_chess_queen",tags:["color_chess_queen"],nameUnicode:"BLACK CHESS QUEEN",width:"+0.5ex"},{symbol:"♜",unicodeHex:"265C",code:9820,alias:"",name:"black_chess_rook",tags:["color_chess_rook"],nameUnicode:"BLACK CHESS ROOK",width:"+0.5ex"},{symbol:"♝",unicodeHex:"265D",code:9821,alias:"",name:"black_chess_bishop",tags:["color_chess_bishop"],nameUnicode:"BLACK CHESS BISHOP",width:"+0.5ex"},{symbol:"♞",unicodeHex:"265E",code:9822,alias:"",name:"black_chess_knight",tags:["color_chess_knight"],nameUnicode:"BLACK CHESS KNIGHT",width:"+0.5ex"},{symbol:"♟",unicodeHex:"265F",code:9823,alias:"",name:"black_chess_pawn",tags:["color_chess_pawn"],nameUnicode:"BLACK CHESS PAWN",width:"+0.5ex"},{symbol:"♠",unicodeHex:"2660",code:9824,alias:"black_spades",name:"black_spade_suit",tags:["color_spades"],nameUnicode:"BLACK SPADE SUIT",width:"+0.5ex"},{symbol:"♤",unicodeHex:"2664",code:9828,alias:"spades",name:"white_spade_suit",tags:[],nameUnicode:"WHITE SPADE SUIT",width:"+0.5ex"},{symbol:"♦",unicodeHex:"2666",code:9830,alias:"black_diamonds",name:"black_diamond_suit",tags:["color_diamonds"],nameUnicode:"BLACK DIAMOND SUIT",width:"+0.5ex"},{symbol:"♢",unicodeHex:"2662",code:9826,alias:"diamonds",name:"white_diamond_suit",tags:[],nameUnicode:"WHITE DIAMOND SUIT",width:"+0.5ex"},{symbol:"♣",unicodeHex:"2663",code:9827,alias:"black_clubs",name:"black_club_suit",tags:["color_clubs"],nameUnicode:"BLACK CLUB SUIT",width:"+0.5ex"},{symbol:"♧",unicodeHex:"2667",code:9831,alias:"clubs",name:"white_club_suit",tags:[],nameUnicode:"WHITE CLUB SUIT",width:"+0.5ex"},{symbol:"♩",unicodeHex:"2669",code:9833,alias:"",name:"quarter_note",tags:["color_quarter_note"],nameUnicode:"QUARTER NOTE",width:"+0.5ex"},{symbol:"♪",unicodeHex:"266A",code:9834,alias:"",name:"eighth_note",tags:["color_eighth_note"],nameUnicode:"EIGHTH NOTE",width:"+0.5ex"},{symbol:"♫",unicodeHex:"266B",code:9835,alias:"two_notes",name:"beamed_eighth_notes",tags:["color_two_notes"],nameUnicode:"BEAMED EIGHTH NOTES",width:"+0.5ex"},{symbol:"♬",unicodeHex:"266C",code:9836,alias:"sixteenth_notes",name:"beamed_sixteenth_notes",tags:["color_sixteenth_notes"],nameUnicode:"BEAMED SIXTEENTH NOTES",width:"+0.5ex"},{symbol:"♭",unicodeHex:"266D",code:9837,alias:"flat",name:"music_flat_sign",tags:["color_flat"],nameUnicode:"MUSIC FLAT SIGN",width:"+0.5ex"},{symbol:"♮",unicodeHex:"266E",code:9838,alias:"natural",name:"music_natural_sign",tags:["color_natural"],nameUnicode:"MUSIC NATURAL SIGN",width:"+0.5ex"},{symbol:"♯",unicodeHex:"266F",code:9839,alias:"sharp",name:"music_sharp_sign",tags:["color_sharp"],nameUnicode:"MUSIC SHARP SIGN",width:"+0.5ex"},{symbol:"♰",unicodeHex:"2670",code:9840,alias:"west_cross",name:"west_syriac_cross",tags:["color_west_cross"],nameUnicode:"WEST SYRIAC CROSS",width:"+0.5ex"},{symbol:"♱",unicodeHex:"2671",code:9841,alias:"east_cross",name:"east_syriac_cross",tags:["color_east_cross"],nameUnicode:"EAST SYRIAC CROSS",width:"+0.5ex"},{symbol:"♲",unicodeHex:"2672",code:9842,alias:"recycle",name:"universal_recycling_symbol",tags:[],nameUnicode:"UNIVERSAL RECYCLING SYMBOL",width:"+0.6ex"},{symbol:"♳",unicodeHex:"2673",code:9843,alias:"recycle_plastics_1",name:"recycling_symbol_for_type_1_plastics",tags:["color_recycle_plastics_1"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-1 PLASTICS",width:"+0.6ex"},{symbol:"♴",unicodeHex:"2674",code:9844,alias:"recycle_plastics_2",name:"recycling_symbol_for_type_2_plastics",tags:["color_recycle_plastics_2"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-2 PLASTICS",width:"+0.6ex"},{symbol:"♵",unicodeHex:"2675",code:9845,alias:"recycle_plastics_3",name:"recycling_symbol_for_type_3_plastics",tags:["color_recycle_plastics_3"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-3 PLASTICS",width:"+0.6ex"},{symbol:"♶",unicodeHex:"2676",code:9846,alias:"recycle_plastics_4",name:"recycling_symbol_for_type_4_plastics",tags:["color_recycle_plastics_4"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-4 PLASTICS",width:"+0.6ex"},{symbol:"♷",unicodeHex:"2677",code:9847,alias:"recycle_plastics_5",name:"recycling_symbol_for_type_5_plastics",tags:["color_recycle_plastics_5"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-5 PLASTICS",width:"+0.6ex"},{symbol:"♸",unicodeHex:"2678",code:9848,alias:"recycle_plastics_6",name:"recycling_symbol_for_type_6_plastics",tags:["color_recycle_plastics_6"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-6 PLASTICS",width:"+0.6ex"},{symbol:"♹",unicodeHex:"2679",code:9849,alias:"recycle_plastics_7",name:"recycling_symbol_for_type_7_plastics",tags:["color_recycle_plastics_7"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-7 PLASTICS",width:"+0.6ex"},{symbol:"♺",unicodeHex:"267A",code:9850,alias:"recycle_generic_materials",name:"recycling_symbol_for_generic_materials",tags:["color_recycle_generic_materials"],nameUnicode:"RECYCLING SYMBOL FOR GENERIC MATERIALS",width:"+0.6ex"},{symbol:"♻",unicodeHex:"267B",code:9851,alias:"black_recycle",name:"black_universal_recycling_symbol",tags:["color_recycle"],nameUnicode:"BLACK UNIVERSAL RECYCLING SYMBOL",width:"+0.6ex"},{symbol:"♼",unicodeHex:"267C",code:9852,alias:"recycled_paper",name:"recycled_paper_symbol",tags:["color_recycled_paper"],nameUnicode:"RECYCLED PAPER SYMBOL",width:"+0.6ex"},{symbol:"♽",unicodeHex:"267D",code:9853,alias:"partially_recycled_paper",name:"partially_recycled_paper_symbol",tags:["color_partially_recycled_paper"],nameUnicode:"PARTIALLY-RECYCLED PAPER SYMBOL",width:"+0.6ex"},{symbol:"♾",unicodeHex:"267E",code:9854,alias:"acid_free",name:"permanent_paper_sign",tags:["color_acid_free"],nameUnicode:"PERMANENT PAPER SIGN",width:"+0.5ex"},{symbol:"♿",unicodeHex:"267F",code:9855,alias:"wheelchair",name:"wheelchair_symbol",tags:["color_wheelchair"],nameUnicode:"WHEELCHAIR SYMBOL",width:"+0.5ex"},{symbol:"⚀",unicodeHex:"2680",code:9856,alias:"dice_1",name:"die_face_1",tags:["color_dice_1"],nameUnicode:"DIE FACE-1",width:"+0.5ex"},{symbol:"⚁",unicodeHex:"2681",code:9857,alias:"dice_2",name:"die_face_2",tags:["color_dice_2"],nameUnicode:"DIE FACE-2",width:"+0.5ex"},{symbol:"⚂",unicodeHex:"2682",code:9858,alias:"dice_3",name:"die_face_3",tags:["color_dice_3"],nameUnicode:"DIE FACE-3",width:"+0.5ex"},{symbol:"⚃",unicodeHex:"2683",code:9859,alias:"dice_4",name:"die_face_4",tags:["color_dice_4"],nameUnicode:"DIE FACE-4",width:"+0.5ex"},{symbol:"⚄",unicodeHex:"2684",code:9860,alias:"dice_5",name:"die_face_5",tags:["color_dice_5"],nameUnicode:"DIE FACE-5",width:"+0.5ex"},{symbol:"⚅",unicodeHex:"2685",code:9861,alias:"dice_6",name:"die_face_6",tags:["color_dice_6"],nameUnicode:"DIE FACE-6",width:"+0.5ex"},{symbol:"⚆",unicodeHex:"2686",code:9862,alias:"circled_right_dot",name:"white_circle_with_dot_right",tags:[],nameUnicode:"WHITE CIRCLE WITH DOT RIGHT",width:"+0.5ex"},{symbol:"⚇",unicodeHex:"2687",code:9863,alias:"circled_two_dots",name:"white_circle_with_two_dots",tags:[],nameUnicode:"WHITE CIRCLE WITH TWO DOTS",width:"+0.5ex"},{symbol:"⚈",unicodeHex:"2688",code:9864,alias:"black_circled_right_dot",name:"black_circle_with_white_dot_right",tags:["color_circled_right_dot"],nameUnicode:"BLACK CIRCLE WITH WHITE DOT RIGHT",width:"+0.5ex"},{symbol:"⚉",unicodeHex:"2689",code:9865,alias:"black_circled_two_dots",name:"black_circle_with_two_white_dots",tags:["color_circled_two_dots"],nameUnicode:"BLACK CIRCLE WITH TWO WHITE DOTS",width:"+0.5ex"},{symbol:"⚐",unicodeHex:"2690",code:9872,alias:"flag",name:"white_flag",tags:[],nameUnicode:"WHITE FLAG",width:"+0.5ex"},{symbol:"⚑",unicodeHex:"2691",code:9873,alias:"",name:"black_flag",tags:["color_flag"],nameUnicode:"BLACK FLAG",width:"+0.5ex"},{symbol:"⚔",unicodeHex:"2694",code:9876,alias:"swords",name:"crossed_swords",tags:["color_swords"],nameUnicode:"CROSSED SWORDS",width:"+0.5ex"},{symbol:"⚘",unicodeHex:"2698",code:9880,alias:"",name:"flower",tags:["color_flower"],nameUnicode:"FLOWER",width:"+0.5ex"},{symbol:"⚙",unicodeHex:"2699",code:9881,alias:"",name:"gear",tags:["color_gear"],nameUnicode:"GEAR",width:"+0.5ex"},{symbol:"⚚",unicodeHex:"269A",code:9882,alias:"hermes",name:"staff_of_hermes",tags:["color_hermes"],nameUnicode:"STAFF OF HERMES",width:"+0.5ex"},{symbol:"⚛",unicodeHex:"269B",code:9883,alias:"atom",name:"atom_symbol",tags:["color_atom"],nameUnicode:"ATOM SYMBOL",width:"+0.5ex"},{symbol:"⚝",unicodeHex:"269D",code:9885,alias:"outlined_star",name:"outlined_white_star",tags:["color_outlined_star"],nameUnicode:"OUTLINED WHITE STAR",width:"+0.5ex"},{symbol:"⚠",unicodeHex:"26A0",code:9888,alias:"warning",name:"warning_sign",tags:["color_warning"],nameUnicode:"WARNING SIGN",width:"+0.5ex"},{symbol:"⚬",unicodeHex:"26AC",code:9900,alias:"medium_small_circle",name:"medium_small_white_circle",tags:["color_medium_small_circle"],nameUnicode:"MEDIUM SMALL WHITE CIRCLE",width:"+0.5ex"},{symbol:"⚭",unicodeHex:"26AD",code:9901,alias:"marriage",name:"marriage_symbol",tags:["color_marriage"],nameUnicode:"MARRIAGE SYMBOL",width:"+0.5ex"},{symbol:"⚮",unicodeHex:"26AE",code:9902,alias:"divorce",name:"divorce_symbol",tags:["color_divorce"],nameUnicode:"DIVORCE SYMBOL",width:"+0.8ex"},{symbol:"⚯",unicodeHex:"26AF",code:9903,alias:"unmarried_partnership",name:"unmarried_partnership_symbol",tags:["color_unmarried_partnership"],nameUnicode:"UNMARRIED PARTNERSHIP SYMBOL",width:"+1ex"},{symbol:"⚲",unicodeHex:"26B2",code:9906,alias:"",name:"neuter",tags:["color_neuter"],nameUnicode:"NEUTER",width:"+0.5ex"},{symbol:"⚳",unicodeHex:"26B3",code:9907,alias:"",name:"ceres",tags:["color_ceres"],nameUnicode:"CERES",width:"+0.5ex"},{symbol:"⚴",unicodeHex:"26B4",code:9908,alias:"",name:"pallas",tags:["color_pallas"],nameUnicode:"PALLAS",width:"+0.5ex"},{symbol:"⚵",unicodeHex:"26B5",code:9909,alias:"",name:"juno",tags:["color_juno"],nameUnicode:"JUNO",width:"+0.5ex"},{symbol:"⚶",unicodeHex:"26B6",code:9910,alias:"",name:"vesta",tags:["color_vesta"],nameUnicode:"VESTA",width:"+0.5ex"},{symbol:"⚷",unicodeHex:"26B7",code:9911,alias:"",name:"chiron",tags:["color_chiron"],nameUnicode:"CHIRON",width:"+0.5ex"},{symbol:"⚹",unicodeHex:"26B9",code:9913,alias:"",name:"sextile",tags:["color_sextile"],nameUnicode:"SEXTILE",width:"+0.5ex"},{symbol:"⚿",unicodeHex:"26BF",code:9919,alias:"",name:"squared_key",tags:["color_squared_key"],nameUnicode:"SQUARED KEY",width:"+0.5ex"},{symbol:"⛀",unicodeHex:"26C0",code:9920,alias:"draughts_man",name:"white_draughts_man",tags:[],nameUnicode:"WHITE DRAUGHTS MAN",width:"+0.5ex"},{symbol:"⛁",unicodeHex:"26C1",code:9921,alias:"draughts_king",name:"white_draughts_king",tags:[],nameUnicode:"WHITE DRAUGHTS KING",width:"+0.5ex"},{symbol:"⛂",unicodeHex:"26C2",code:9922,alias:"",name:"black_draughts_man",tags:["color_draughts_man"],nameUnicode:"BLACK DRAUGHTS MAN",width:"+0.5ex"},{symbol:"⛃",unicodeHex:"26C3",code:9923,alias:"",name:"black_draughts_king",tags:["color_draughts_king"],nameUnicode:"BLACK DRAUGHTS KING",width:"+0.5ex"},{symbol:"⛆",unicodeHex:"26C6",code:9926,alias:"",name:"rain",tags:["color_rain"],nameUnicode:"RAIN",width:"+0.5ex"},{symbol:"⛇",unicodeHex:"26C7",code:9927,alias:"",name:"black_snowman",tags:["color_snowman"],nameUnicode:"BLACK SNOWMAN",width:"+0.5ex"},{symbol:"⛉",unicodeHex:"26C9",code:9929,alias:"turned_shogi_piece",name:"turned_white_shogi_piece",tags:[],nameUnicode:"TURNED WHITE SHOGI PIECE",width:"+0.5ex"},{symbol:"⛊",unicodeHex:"26CA",code:9930,alias:"black_turned_shogi_piece",name:"turned_black_shogi_piece",tags:["color_turned_shogi_piece"],nameUnicode:"TURNED BLACK SHOGI PIECE",width:"+0.5ex"},{symbol:"⛋",unicodeHex:"26CB",code:9931,alias:"squared_diamond",name:"white_diamond_in_square",tags:["color_squared_diamond"],nameUnicode:"WHITE DIAMOND IN SQUARE",width:"+0.5ex"},{symbol:"⛌",unicodeHex:"26CC",code:9932,alias:"",name:"crossing_lanes",tags:["color_crossing_lanes"],nameUnicode:"CROSSING LANES",width:"+0.5ex"},{symbol:"⛍",unicodeHex:"26CD",code:9933,alias:"",name:"disabled_car",tags:["color_disabled_car"],nameUnicode:"DISABLED CAR",width:"+0.5ex"},{symbol:"⛐",unicodeHex:"26D0",code:9936,alias:"sliding_car",name:"car_sliding",tags:["color_sliding_car"],nameUnicode:"CAR SLIDING",width:"+0.5ex"},{symbol:"⛒",unicodeHex:"26D2",code:9938,alias:"",name:"circled_crossing_lanes",tags:["color_circled_crossing_lanes"],nameUnicode:"CIRCLED CROSSING LANES",width:"+0.5ex"},{symbol:"⛟",unicodeHex:"26DF",code:9951,alias:"",name:"black_truck",tags:["color_truck"],nameUnicode:"BLACK TRUCK",width:"+0.5ex"},{symbol:"⛤",unicodeHex:"26E4",code:9956,alias:"",name:"pentagram",tags:["color_pentagram"],nameUnicode:"PENTAGRAM",width:"+0.5ex"},{symbol:"⛧",unicodeHex:"26E7",code:9959,alias:"",name:"inverted_pentagram",tags:["color_inverted_pentagram"],nameUnicode:"INVERTED PENTAGRAM",width:"+0.5ex"},{symbol:"⛩",unicodeHex:"26E9",code:9961,alias:"",name:"shinto_shrine",tags:["color_shinto_shrine"],nameUnicode:"SHINTO SHRINE",width:"+0.5ex"},{symbol:"⛫",unicodeHex:"26EB",code:9963,alias:"",name:"castle",tags:["color_castle"],nameUnicode:"CASTLE",width:"+0.5ex"},{symbol:"⛬",unicodeHex:"26EC",code:9964,alias:"",name:"historic_site",tags:["color_historic_site"],nameUnicode:"HISTORIC SITE",width:"+0.5ex"},{symbol:"⛭",unicodeHex:"26ED",code:9965,alias:"",name:"gear_without_hub",tags:["color_gear_without_hub"],nameUnicode:"GEAR WITHOUT HUB",width:"+0.5ex"},{symbol:"⛮",unicodeHex:"26EE",code:9966,alias:"",name:"gear_with_handles",tags:["color_gear_with_handles"],nameUnicode:"GEAR WITH HANDLES",width:"+0.5ex"},{symbol:"⛯",unicodeHex:"26EF",code:9967,alias:"map_lighthouse",name:"map_symbol_for_lighthouse",tags:["color_map_lighthouse"],nameUnicode:"MAP SYMBOL FOR LIGHTHOUSE",width:"+0.5ex"},{symbol:"⛱",unicodeHex:"26F1",code:9969,alias:"",name:"umbrella_on_ground",tags:["color_umbrella_on_ground"],nameUnicode:"UMBRELLA ON GROUND",width:"+0.5ex"},{symbol:"⛶",unicodeHex:"26F6",code:9974,alias:"",name:"square_four_corners",tags:["color_square_four_corners"],nameUnicode:"SQUARE FOUR CORNERS",width:"+0.5ex"},{symbol:"⛸",unicodeHex:"26F8",code:9976,alias:"",name:"ice_skate",tags:["color_ice_skate"],nameUnicode:"ICE SKATE",width:"+0.5ex"},{symbol:"⛻",unicodeHex:"26FB",code:9979,alias:"japanese_bank",name:"japanese_bank_symbol",tags:["color_japanese_bank"],nameUnicode:"JAPANESE BANK SYMBOL",width:"+0.5ex"},{symbol:"⛾",unicodeHex:"26FE",code:9982,alias:"black_squared_cup",name:"cup_on_black_square",tags:["color_squared_cup"],nameUnicode:"CUP ON BLACK SQUARE",width:"+0.5ex"},{symbol:"☺",unicodeHex:"263A",code:9786,alias:"relaxed",name:"relaxed",tags:["color_relaxed"],nameUnicode:"relaxed",width:"+0.5ex"},{symbol:"☹",unicodeHex:"2639",code:9785,alias:"frowning_face",name:"frowning_face",tags:["color_frowning_face"],nameUnicode:"frowning_face",width:"+0.5ex"},{symbol:"♨",unicodeHex:"2668",code:9832,alias:"hotsprings",name:"hotsprings",tags:["color_hotsprings"],nameUnicode:"hotsprings",width:"+0.5ex"},{symbol:"©",unicodeHex:"A9",code:169,alias:"copyright",name:"copyright",tags:["color_copyright"],nameUnicode:"Copyright Sign",width:"+0.5ex"},{symbol:"™",unicodeHex:"2122",code:8482,alias:"tm",name:"tm",tags:["color_tm"],nameUnicode:"Trade Mark Sign",width:"+0.5ex"},{symbol:"®",unicodeHex:"AE",code:174,alias:"registered",name:"registered",tags:["color_registered"],nameUnicode:"Registered Sign",width:"+0.5ex"},{symbol:"〰",unicodeHex:"3030",code:12336,alias:"wavy_dash",name:"wavy_dash",tags:["color_wavy_dash"],nameUnicode:"Wavy Das",width:"+0.5ex"},{symbol:"✔",unicodeHex:"2714",code:10004,alias:"heavy_check_mark",name:"heavy_check_mark",tags:["color_heavy_check_mark"],nameUnicode:"Heavy Check Mark",width:"+0.5ex"},{symbol:"☑",unicodeHex:"2611",code:9745,alias:"ballot_box_with_check",name:"ballot_box_with_check",tags:["color_ballot_box_with_check"],nameUnicode:"Ballot Box with Check",width:"+0.5ex"},{symbol:"❇",unicodeHex:"2747",code:10055,alias:"sparkle",name:"sparkle",tags:["color_sparkle"],nameUnicode:"sparkle",width:"+0.5ex"},{symbol:"✳",unicodeHex:"2733",code:10035,alias:"eight_spoked_asterisk",name:"eight_spoked_asterisk",tags:["color_eight_spoked_asterisk"],nameUnicode:"eight spoked asterisk",width:"+0.5ex"},{symbol:"Ⓜ",unicodeHex:"24C2",code:9410,alias:"m",name:"m",tags:["color_m"],nameUnicode:"Circled Latin Capital Letter M",width:"+0.5ex"},{symbol:"◦",unicodeHex:"25E6",code:8729,alias:"bullet_o",name:"white_bullet",tags:["color_bullet_o"],nameUnicode:"WHITE BULLET",width:"+0.5ex"},{symbol:"⁃",unicodeHex:"2043",code:8259,alias:"hyphen_bullet",name:"hyphen_bullet",tags:["color_hyphen_bullet"],nameUnicode:"HYPHEN BULLET",width:"+0.5ex"},{symbol:"↔",unicodeHex:"2194",code:8596,alias:"left_right_arrow",name:"left_right_arrow",tags:["color_left_right_arrow"],nameUnicode:"LEFT RIGHT ARROW",width:"+0.5ex"},{symbol:"↕",unicodeHex:"2195",code:8597,alias:"up_down_arrow",name:"up_down_arrow",tags:["color_up_down_arrow"],nameUnicode:"UP DOWN ARROW",width:"+0.5ex"},{symbol:"↖",unicodeHex:"2196",code:8598,alias:"nw_arrow",name:"north_west_arrow",tags:["color_nw_arrow"],nameUnicode:"NORTH WEST ARROW",width:"+0.5ex"},{symbol:"↗",unicodeHex:"2197",code:8599,alias:"ne_arrow",name:"north_east_arrow",tags:["color_ne_arrow"],nameUnicode:"NORTH EAST ARROW",width:"+0.5ex"},{symbol:"↘",unicodeHex:"2198",code:8600,alias:"se_arrow",name:"south_east_arrow",tags:["color_se_arrow"],nameUnicode:"SOUTH EAST ARROW",width:"+0.5ex"},{symbol:"↙",unicodeHex:"2199",code:8601,alias:"sw_arrow",name:"south_west_arrow",tags:["color_sw_arrow"],nameUnicode:"SOUTH WEST ARROW",width:"+0.5ex"},{symbol:"⤡",unicodeHex:"2921",code:10529,alias:"nw_se_arrow",name:"north_west_and_south_east_arrow",tags:["color_nw_se_arrow"],nameUnicode:"NORTH WEST AND SOUTH EAST ARROW",width:"+0.5ex"},{symbol:"⤢",unicodeHex:"2922",code:10530,alias:"ne_sw_arrow",name:"north_east_and_south_west_arrow",tags:["color_ne_sw_arrow"],nameUnicode:"NORTH EAST AND SOUTH WEST ARROW",width:"+0.5ex"},{symbol:"⇦",unicodeHex:"21E6",code:8678,alias:"left_fill_arrow_o",name:"leftwards_white_arrow",tags:["color_left_fill_arrow_o"],nameUnicode:"LEFTWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⇧",unicodeHex:"21E7",code:8679,alias:"up_fill_arrow_o",name:"upwards_white_arrow",tags:["color_up_fill_arrow_o"],nameUnicode:"UPWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⇨",unicodeHex:"21E8",code:8680,alias:"right_fill_arrow_o",name:"rightwards_white_arrow",tags:["color_right_fill_arrow_o"],nameUnicode:"RIGHTWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⇩",unicodeHex:"21E9",code:8681,alias:"down_fill_arrow_o",name:"downwards_white_arrow",tags:["color_down_fill_arrow_o"],nameUnicode:"DOWNWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⬄",unicodeHex:"2B04",code:11012,alias:"left_right_fill_arrow_o",name:"left_right_white_arrow",tags:["color_left_right_fill_arrow_o"],nameUnicode:"LEFT RIGHT WHITE ARROW",width:"+0.5ex"},{symbol:"⇳",unicodeHex:"21F3",code:8691,alias:"up_down_fill_arrow_o",name:"up_down_white_arrow",tags:["color_up_down_fill_arrow_o"],nameUnicode:"UP DOWN WHITE ARROW",width:"+0.5ex"},{symbol:"⬅",unicodeHex:"2B05",code:11077,alias:"left_fill_arrow",name:"leftwards_black_arrow",tags:["color_left_fill_arrow"],nameUnicode:"LEFTWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"⬆",unicodeHex:"2191",code:8593,alias:"up_fill_arrow",name:"upwards_black_arrow",tags:["color_up_fill_arrow"],nameUnicode:"UPWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"➡",unicodeHex:"27A1",code:10145,alias:"right_fill_arrow",name:"rightwards_black_arrow",tags:["color_right_fill_arrow"],nameUnicode:"RIGHTWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"⬇",unicodeHex:"2193",code:8595,alias:"down_fill_arrow",name:"downwards_black_arrow",tags:["color_down_fill_arrow"],nameUnicode:"DOWNWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"⬌",unicodeHex:"2B8C",code:11148,alias:"left_right_fill_arrow",name:"left_right_black_arrow",tags:["color_left_right_fill_arrow"],nameUnicode:"LEFT RIGHT BLACK ARROW",width:"+0.5ex"},{symbol:"⬍",unicodeHex:"2B8D",code:11149,alias:"up_down_fill_arrow",name:"up_down_black_arrow",tags:["color_up_down_fill_arrow"],nameUnicode:"UP DOWN BLACK ARROW",width:"+0.5ex"},{symbol:"⬀",unicodeHex:"2B80",code:11136,alias:"ne_fill_arrow_o",name:"north_east_white_arrow",tags:["color_ne_fill_arrow_o"],nameUnicode:"NORTH EAST WHITE ARROW",width:"+0.5ex"},{symbol:"⬁",unicodeHex:"2B81",code:11137,alias:"nw_fill_arrow_o",name:"north_west_white_arrow",tags:["color_nw_fill_arrow_o"],nameUnicode:"NORTH WEST WHITE ARROW",width:"+0.5ex"},{symbol:"⬂",unicodeHex:"2B82",code:11138,alias:"se_fill_arrow_o",name:"south_east_white_arrow",tags:["color_se_fill_arrow_o"],nameUnicode:"SOUTH EAST WHITE ARROW",width:"+0.5ex"},{symbol:"⬃",unicodeHex:"2B83",code:11139,alias:"sw_fill_arrow_o",name:"south_west_white_arrow",tags:["color_sw_fill_arrow_o"],nameUnicode:"SOUTH WEST WHITE ARROW",width:"+0.5ex"},{symbol:"⬈",unicodeHex:"2B88",code:11144,alias:"ne_fill_arrow",name:"north_east_black_arrow",tags:["color_ne_fill_arrow"],nameUnicode:"NORTH EAST BLACK ARROW",width:"+0.5ex"},{symbol:"⬉",unicodeHex:"2B89",code:11145,alias:"nw_fill_arrow",name:"north_west_black_arrow",tags:["color_nw_fill_arrow"],nameUnicode:"NORTH WEST BLACK ARROW",width:"+0.5ex"},{symbol:"⬊",unicodeHex:"2B8A",code:11146,alias:"se_fill_arrow",name:"south_east_black_arrow",tags:["color_se_fill_arrow"],nameUnicode:"SOUTH EAST BLACK ARROW",width:"+0.5ex"},{symbol:"⬋",unicodeHex:"2B8B",code:11147,alias:"sw_fill_arrow",name:"south_west_black_arrow",tags:["color_sw_fill_arrow"],nameUnicode:"SOUTH WEST BLACK ARROW",width:"+0.5ex"},{symbol:"↵",unicodeHex:"21B5",code:8629,alias:"down_left_arrow",name:"downwards_left_corner_arrow",tags:["color_down_left_arrow"],nameUnicode:"DOWNWARDS ARROW WITH CORNER LEFTWARDS",width:"+0.5ex"},{symbol:"↳",unicodeHex:"21B3",code:8627,alias:"down_right_arrow",name:"downwards_right_corner_arrow",tags:["color_down_right_arrow"],nameUnicode:"DOWNWARDS ARROW WITH TIP RIGHTWARDS",width:"+0.5ex"},{symbol:"➮",unicodeHex:"27AE",code:10142,alias:"upper_shadow_right_arrow",name:"heavy_upper_right_shadowed_white_rightwards_arrow",tags:["color_upper_shadow_right_arrow"],nameUnicode:"HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➭",unicodeHex:"279D",code:10141,alias:"lower_shadow_right_arrow",name:"heavy_lower_right_shadowed_white_rightwards_arrow",tags:["color_lower_shadow_right_arrow"],nameUnicode:"HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➯",unicodeHex:"279F",code:10143,alias:"notched_lower_shadow_right_arrow",name:"notched_lower_right_shadowed_white_rightwards_arrow",tags:["color_notched_lower_shadow_right_arrow"],nameUnicode:"NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➱",unicodeHex:"27B1",code:10145,alias:"notched_upper_shadow_right_arrow",name:"notched_upper_right_shadowed_white_rightwards_arrow",tags:["color_notched_upper_shadow_right_arrow"],nameUnicode:"NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➲",unicodeHex:"27B2",code:10162,alias:"circled_heavy_right_arrow",name:"circled_heavy_white_rightwards_arrow",tags:["color_circled_heavy_right_arrow"],nameUnicode:"CIRCLED HEAVY WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"❍",unicodeHex:"274D",code:10061,alias:"shadowed_circle",name:"shadowed_white_circle",tags:["color_shadowed_circle"],nameUnicode:"SHADOWED WHITE CIRCLE",width:"+0.5ex"},{symbol:"❏",unicodeHex:"274F",code:10063,alias:"lower_right_shadow_square",name:"lower_right_drop_shadowed_white_square",tags:["color_lower_right_shadow_square"],nameUnicode:"LOWER RIGHT DROP-SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"❐",unicodeHex:"2750",code:10064,alias:"upper_right_shadow_square",name:"upper_right_drop_shadowed_white_square",tags:["color_upper_right_shadow_square"],nameUnicode:"UPPER RIGHT DROP-SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"❑",unicodeHex:"2751",code:10065,alias:"lower_right_shadow_square",name:"lower_right_shadowed_white_square",tags:["color_lower_right_shadow_square"],nameUnicode:"LOWER RIGHT SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"❒",unicodeHex:"2752",code:10066,alias:"upper_right_shadow_square",name:"upper_right_shadowed_white_square",tags:["color_upper_right_shadow_square"],nameUnicode:"UPPER RIGHT SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"➤",unicodeHex:"27A4",code:10148,alias:"black_right_arrowhead",name:"black_rightwards_arrowhead",tags:["color_right_arrowhead"],nameUnicode:"BLACK RIGHTWARDS ARROWHEAD",width:"+0.5ex"},{symbol:"➢",unicodeHex:"27A2",code:10146,alias:"top_lighted_right_arrowhead",name:"3d_top_lighted_right_arrowhead",tags:["color_top_lighted_right_arrowhead"],nameUnicode:"THREE-D TOP-LIGHTED RIGHTWARDS ARROWHEAD",width:"+0.5ex"},{symbol:"➣",unicodeHex:"27A3",code:10147,alias:"bottom_lighted_right_arrowhead",name:"3d_bottom_lighted_right_arrowhead",tags:["color_bottom_lighted_right_arrowhead"],nameUnicode:"THREE-D BOTTOM-LIGHTED RIGHTWARDS ARROWHEAD",width:"+0.5ex"},{symbol:"□",unicodeHex:"25A1",code:9633,alias:"square",name:"white_square",tags:[],nameUnicode:"WHITE SQUARE",width:"+0.5ex"},{symbol:"▪",unicodeHex:"25AA",code:9642,alias:"black_small_square",name:"black_small_square",tags:["color_small_square"],nameUnicode:"BLACK SMALL SQUARE",width:"+0.5ex"},{symbol:"▫",unicodeHex:"25AB",code:9643,alias:"small_square",name:"white_small_square",tags:[],nameUnicode:"WHITE SMALL SQUARE",width:"+0.5ex"},{symbol:"◻",unicodeHex:"25FB",code:9611,alias:"medium_square",name:"white_medium_square",tags:[],nameUnicode:"WHITE MEDIUM SQUARE",width:"+0.5ex"},{symbol:"◼",unicodeHex:"25FC",code:9612,alias:"black_medium_square",name:"black_medium_square",tags:["color_medium_square"],nameUnicode:"BLACK MEDIUM SQUARE",width:"+0.5ex"},{symbol:"⬒",unicodeHex:"2B12",code:11026,alias:"square_top_fill",name:"square_with_top_half_black",tags:["color_square_top_fill"],nameUnicode:"SQUARE WITH TOP HALF BLACK",width:"+0.5ex"},{symbol:"⬓",unicodeHex:"2B13",code:11027,alias:"square_bottom_fill",name:"square_with_bottom_half_black",tags:["color_square_bottom_fill"],nameUnicode:"SQUARE WITH BOTTOM HALF BLACK",width:"+0.5ex"},{symbol:"⬔",unicodeHex:"2B14",code:11028,alias:"square_right_fill",name:"square_with_upper_right_diagonal_half_black",tags:["color_square_right_fill"],nameUnicode:"SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK",width:"+0.5ex"},{symbol:"⬕",unicodeHex:"2B15",code:11029,alias:"square_left_fill",name:"square_with_lower_left_diagonal_half_black",tags:["color_square_left_fill"],nameUnicode:"SQUARE WITH LOWER LEFT DIAGONAL HALF BLACK",width:"+0.5ex"},{symbol:"◢",unicodeHex:"25E2",code:9698,alias:"black_triangle_lower_right",name:"black_lower_right_triangle",tags:["color_triangle_lower_right"],nameUnicode:"BLACK LOWER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"◣",unicodeHex:"25E3",code:9699,alias:"black_triangle_lower_left",name:"black_lower_left_triangle",tags:["color_triangle_lower_left"],nameUnicode:"BLACK LOWER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◤",unicodeHex:"25E4",code:9700,alias:"black_triangle_upper_left",name:"black_upper_left_triangle",tags:["color_triangle_upper_left"],nameUnicode:"BLACK UPPER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◥",unicodeHex:"25E5",code:9701,alias:"black_triangle_upper_right",name:"black_upper_right_triangle",tags:["color_triangle_upper_right"],nameUnicode:"BLACK UPPER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"◿",unicodeHex:"25FF",code:9727,alias:"triangle_lower_right",name:"lower_right_triangle",tags:[],nameUnicode:"LOWER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"◺",unicodeHex:"25FA",code:9722,alias:"triangle_lower_left",name:"lower_left_triangle",tags:[],nameUnicode:"LOWER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◸",unicodeHex:"25F8",code:9720,alias:"triangle_upper_left",name:"upper_left_triangle",tags:[],nameUnicode:"UPPER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◹",unicodeHex:"25F9",code:9721,alias:"triangle_upper_right",name:"upper_right_triangle",tags:[],nameUnicode:"UPPER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"▴",unicodeHex:"25B4",code:9652,alias:"black_small_triangle",name:"black_up_pointing_small_triangle",tags:["color_small_triangle"],nameUnicode:"BLACK UP-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▵",unicodeHex:"25B5",code:9653,alias:"small_triangle",name:"white_up_pointing_small_triangle",tags:[],nameUnicode:"WHITE UP-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▸",unicodeHex:"25B8",code:9656,alias:"black_small_triangle_right",name:"black_right_pointing_small_triangle",tags:["color_small_triangle_right"],nameUnicode:"BLACK RIGHT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▹",unicodeHex:"25B9",code:9657,alias:"small_triangle_right",name:"white_right_pointing_small_triangle",tags:[],nameUnicode:"WHITE RIGHT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▾",unicodeHex:"25BE",code:9662,alias:"black_small_triangle_down",name:"black_down_pointing_small_triangle",tags:["color_small_triangle_down"],nameUnicode:"BLACK DOWN-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▿",unicodeHex:"25BF",code:9663,alias:"small_triangle_down",name:"white_down_pointing_small_triangle",tags:[],nameUnicode:"WHITE DOWN-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"◂",unicodeHex:"25C2",code:9666,alias:"black_small_triangle_left",name:"black_left_pointing_small_triangle",tags:["color_small_triangle_left"],nameUnicode:"BLACK LEFT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"◃",unicodeHex:"25C3",code:9667,alias:"small_triangle_left",name:"white_left_pointing_small_triangle",tags:[],nameUnicode:"WHITE LEFT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"►",unicodeHex:"25BA",code:9658,alias:"black_right_pointer",name:"black_right_pointing_pointer",tags:["color_right_pointer"],nameUnicode:"BLACK RIGHT-POINTING POINTER",width:"+0.5ex"},{symbol:"▻",unicodeHex:"25BB",code:9659,alias:"right_pointer",name:"white_right_pointing_pointer",tags:[],nameUnicode:"WHITE RIGHT-POINTING POINTER",width:"+0.5ex"},{symbol:"◄",unicodeHex:"25C4",code:9668,alias:"black_left_pointer",name:"black_left_pointing_pointer",tags:["color_left_pointer"],nameUnicode:"BLACK LEFT-POINTING POINTER",width:"+0.5ex"},{symbol:"◅",unicodeHex:"25C5",code:9669,alias:"left_pointer",name:"white_left_pointing_pointer",tags:[],nameUnicode:"WHITE LEFT-POINTING POINTER",width:"+0.5ex"},{symbol:"◯",unicodeHex:"25EF",code:9711,alias:"large_circle",name:"large_circle",tags:[],nameUnicode:"LARGE CIRCLE",width:"+0.5ex"},{symbol:"⬤",unicodeHex:"2B24",code:11036,alias:"black_large_circle",name:"black_large_circle",tags:["color_large_circle"],nameUnicode:"BLACK LARGE CIRCLE",width:"+0.5ex"},{symbol:"◆",unicodeHex:"25C6",code:9670,alias:"black_diamond",name:"black_diamond",tags:["color_diamond"],nameUnicode:"BLACK DIAMOND",width:"+0.5ex"},{symbol:"◇",unicodeHex:"25C7",code:9671,alias:"diamond",name:"white_diamond",tags:[],nameUnicode:"WHITE DIAMOND",width:"+0.5ex"},{symbol:"⬥",unicodeHex:"2B25",code:11045,alias:"black_medium_diamond",name:"black_medium_diamond",tags:["color_medium_diamond"],nameUnicode:"BLACK MEDIUM DIAMOND",width:"+0.5ex"},{symbol:"⬦",unicodeHex:"2B26",code:11046,alias:"medium_diamond",name:"white_medium_diamond",tags:[],nameUnicode:"WHITE MEDIUM DIAMOND",width:"+0.5ex"},{symbol:"⬩",unicodeHex:"2B29",code:11049,alias:"black_small_diamond",name:"black_small_diamond",tags:["color_small_diamond"],nameUnicode:"BLACK SMALL DIAMOND",width:"+0.5ex"},{symbol:"⬖",unicodeHex:"2B16",code:11030,alias:"diamond_left_fill",name:"diamond_with_left_half_black",tags:["color_diamond_left_fill"],nameUnicode:"DIAMOND WITH LEFT HALF BLACK",width:"+0.5ex"},{symbol:"⬗",unicodeHex:"2B17",code:11031,alias:"diamond_right_fill",name:"diamond_with_right_half_black",tags:["color_diamond_right_fill"],nameUnicode:"DIAMOND WITH RIGHT HALF BLACK",width:"+0.5ex"},{symbol:"⬘",unicodeHex:"2B18",code:11032,alias:"diamond_top_fill",name:"diamond_with_top_half_black",tags:["color_diamond_top_fill"],nameUnicode:"DIAMOND WITH TOP HALF BLACK",width:"+0.5ex"},{symbol:"⬙",unicodeHex:"2B19",code:11033,alias:"diamond_bottom_fill",name:"diamond_with_bottom_half_black",tags:["color_diamond_bottom_fill"],nameUnicode:"DIAMOND WITH BOTTOM HALF BLACK",width:"+0.5ex"},{symbol:"⬪",unicodeHex:"2B2A",code:11050,alias:"black_small_lozenge",name:"black_small_lozenge",tags:["color_small_lozenge"],nameUnicode:"BLACK SMALL LOZENGE",width:"+0.5ex"},{symbol:"⬫",unicodeHex:"2B2B",code:11051,alias:"small_lozenge",name:"white_small_lozenge",tags:[],nameUnicode:"WHITE SMALL LOZENGE",width:"+0.5ex"},{symbol:"◈",unicodeHex:"25C8",code:9672,alias:"diamond_fill_small",name:"white_diamond_containing_black_small_diamond",tags:["color_diamond_fill_small"],nameUnicode:"WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND",width:"+0.5ex"},{symbol:"❖",unicodeHex:"2756",code:10070,alias:"black_diamond_white_x",name:"black_diamond_minus_white_x",tags:["color_diamond_white_x"],nameUnicode:"BLACK DIAMOND MINUS WHITE X",width:"+0.5ex"},{symbol:"⟐",unicodeHex:"27D0",code:10192,alias:"diamond_dot",name:"white_diamond_with_centred_dot",tags:["color_diamond_dot"],nameUnicode:"WHITE DIAMOND WITH CENTRED DOT",width:"+0.5ex"},{symbol:"✠",unicodeHex:"2720",code:10016,alias:"maltese_cross",name:"maltese_cross",tags:["color_maltese_cross"],nameUnicode:"MALTESE CROSS",width:"+0.5ex"},{symbol:"⊞",unicodeHex:"229E",code:8862,alias:"squared_plus",name:"squared_plus",tags:["color_squared_plus"],nameUnicode:"SQUARED PLUS",width:"+0.5ex"},{symbol:"⊟",unicodeHex:"229F",code:8863,alias:"squared_minus",name:"squared_minus",tags:["color_squared_minus"],nameUnicode:"SQUARED MINUS",width:"+0.5ex"},{symbol:"⊠",unicodeHex:"22A0",code:8864,alias:"squared_times",name:"squared_times",tags:["color_squared_times"],nameUnicode:"SQUARED TIMES",width:"+0.5ex"},{symbol:"⊡",unicodeHex:"22A1",code:8865,alias:"squared_dot",name:"squared_dot_operator",tags:["color_squared_dot"],nameUnicode:"SQUARED DOT OPERATOR",width:"+0.5ex"},{symbol:"⛝",unicodeHex:"26DD",code:9949,alias:"squared_saltire",name:"squared_saltire",tags:["color_squared_saltire"],nameUnicode:"SQUARED SALTIRE",width:"+0.5ex"},{symbol:"⧇",unicodeHex:"29C7",code:10695,alias:"squared_circle",name:"squared_small_circle",tags:["color_squared_circle"],nameUnicode:"SQUARED SMALL CIRCLE",width:"+0.5ex"},{symbol:"⧈",unicodeHex:"29C8",code:10696,alias:"squared_square",name:"squared_square",tags:["color_squared_square"],nameUnicode:"SQUARED SQUARE",width:"+0.5ex"},{symbol:"⧆",unicodeHex:"29C6",code:10694,alias:"squared_asterisk",name:"squared_asterisk",tags:["color_squared_asterisk"],nameUnicode:"SQUARED ASTERISK",width:"+0.5ex"},{symbol:"⧄",unicodeHex:"29C4",code:10692,alias:"squared_slash",name:"squared_rising_diagonal_slash",tags:["color_squared_slash"],nameUnicode:"SQUARED RISING DIAGONAL SLASH",width:"+0.5ex"},{symbol:"⃠",unicodeHex:"20E0",code:8416,alias:"circle_backslash",name:"combining_enclosing_circle_backslash",tags:["color_circle_backslash"],nameUnicode:"COMBINING ENCLOSING CIRCLE BACKSLASH",width:"+0.5ex"},{symbol:"⊕",unicodeHex:"2295",code:8853,alias:"circled_plus",name:"circled_plus",tags:["color_circled_plus"],nameUnicode:"CIRCLED PLUS",width:"+0.5ex"},{symbol:"⊖",unicodeHex:"2296",code:8854,alias:"circled_minus",name:"circled_minus",tags:["color_circled_minus"],nameUnicode:"CIRCLED MINUS",width:"+0.5ex"},{symbol:"⊗",unicodeHex:"2297",code:8855,alias:"circled_times",name:"circled_times",tags:["color_circled_times"],nameUnicode:"CIRCLED TIMES",width:"+0.5ex"},{symbol:"⊘",unicodeHex:"2298",code:8856,alias:"circled_division",name:"circled_division_slash",tags:["color_circled_division"],nameUnicode:"CIRCLED DIVISION SLASH",width:"+0.5ex"},{symbol:"⊙",unicodeHex:"2299",code:8857,alias:"circled_dot",name:"circled_dot_operator",tags:["color_circled_dot"],nameUnicode:"CIRCLED DOT OPERATOR",width:"+0.5ex"},{symbol:"⊚",unicodeHex:"229A",code:8858,alias:"circled_ring",name:"circled_ring_operator",tags:["color_circled_ring"],nameUnicode:"CIRCLED RING OPERATOR",width:"+0.5ex"},{symbol:"⊛",unicodeHex:"229B",code:8859,alias:"circled_asterisk",name:"circled_asterisk_operator",tags:["color_circled_asterisk"],nameUnicode:"CIRCLED ASTERISK OPERATOR",width:"+0.5ex"},{symbol:"⊜",unicodeHex:"229C",code:8860,alias:"circled_equals",name:"circled_equals",tags:["color_circled_equals"],nameUnicode:"CIRCLED EQUALS",width:"+0.5ex"},{symbol:"⊝",unicodeHex:"229D",code:8861,alias:"circled_dash",name:"circled_dash",tags:["color_circled_dash"],nameUnicode:"CIRCLED DASH",width:"+0.5ex"},{symbol:"⎊",unicodeHex:"238A",code:9098,alias:"circled_triangle_down",name:"circled_triangle_down",tags:["color_circled_triangle_down"],nameUnicode:"CIRCLED TRIANGLE DOWN",width:"+0.5ex"},{symbol:"⏣",unicodeHex:"23E3",code:9187,alias:"benzene_ring",name:"benzene_ring_with_circle",tags:["color_benzene_ring"],nameUnicode:"BENZENE RING WITH CIRCLE",width:"+0.5ex"},{symbol:"✓",unicodeHex:"2713",code:10003,alias:"check_mark",name:"check_mark",tags:["color_check_mark"],nameUnicode:"CHECK MARK",width:"+0.5ex"},{symbol:"‘",unicodeHex:"2018",code:8216,alias:"single_quote_left",name:"left_single_quotation_mark",tags:["color_single_quote_left"],nameUnicode:"LEFT SINGLE QUOTATION MARK",width:"+0.3ex"},{symbol:"’",unicodeHex:"2019",code:8217,alias:"single_quote_right",name:"right_single_quotation_mark",tags:["color_single_quote_right"],nameUnicode:"RIGHT SINGLE QUOTATION MARK",width:"+0.3ex"},{symbol:"‚",unicodeHex:"201A",code:8218,alias:"single_quote_low",name:"single_low_9_quotation_mark",tags:["color_single_quote_low"],nameUnicode:"SINGLE LOW-9 QUOTATION MARK",width:"+0.3ex"},{symbol:"‛",unicodeHex:"201B",code:8219,alias:"single_quote_reversed",name:"single_high_reversed_9_quotation_mark",tags:["color_single_quote_reversed"],nameUnicode:"SINGLE HIGH-REVERSED-9 QUOTATION MARK",width:"+0.3ex"},{symbol:"“",unicodeHex:"201C",code:8220,alias:"double_quote_left",name:"left_double_quotation_mark",tags:["color_double_quote_left"],nameUnicode:"LEFT DOUBLE QUOTATION MARK",width:"+0.3ex"},{symbol:"”",unicodeHex:"201D",code:8221,alias:"double_quote_right",name:"right_double_quotation_mark",tags:["color_double_quote_right"],nameUnicode:"RIGHT DOUBLE QUOTATION MARK",width:"+0.3ex"},{symbol:"„",unicodeHex:"201E",code:8222,alias:"double_quote_low",name:"double_low_9_quotation_mark",tags:["color_double_quote_low"],nameUnicode:"DOUBLE LOW-9 QUOTATION MARK",width:"+0.3ex"},{symbol:"❛",unicodeHex:"275B",code:10075,alias:"heavy_single_quote_turned",name:"heavy_single_turned_comma_quotation_mark_ornament",tags:["color_heavy_single_quote_turned"],nameUnicode:"HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"❜",unicodeHex:"275C",code:10076,alias:"heavy_single_quote",name:"heavy_single_comma_quotation_mark_ornament",tags:["color_heavy_single_quote"],nameUnicode:"HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"❝",unicodeHex:"275D",code:10077,alias:"heavy_double_quote_turned",name:"heavy_double_turned_comma_quotation_mark_ornament",tags:["color_heavy_double_quote_turned"],nameUnicode:"HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"❞",unicodeHex:"275E",code:10078,alias:"heavy_double_quote",name:"heavy_double_comma_quotation_mark_ornament",tags:["color_heavy_double_quote"],nameUnicode:"HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"Ⓐ",unicodeHex:"24B6",code:9398,alias:"circled_capital_a",name:"circled_latin_capital_a",tags:["color_circled_capital_a"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER A",width:"+0.6ex"},{symbol:"Ⓑ",unicodeHex:"24B7",code:9399,alias:"circled_capital_b",name:"circled_latin_capital_b",tags:["color_circled_capital_b"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER B",width:"+0.6ex"},{symbol:"Ⓒ",unicodeHex:"24B8",code:9400,alias:"circled_capital_c",name:"circled_latin_capital_c",tags:["color_circled_capital_c"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER C",width:"+0.6ex"},{symbol:"Ⓓ",unicodeHex:"24B9",code:9401,alias:"circled_capital_d",name:"circled_latin_capital_d",tags:["color_circled_capital_d"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER D",width:"+0.6ex"},{symbol:"Ⓔ",unicodeHex:"24BA",code:9402,alias:"circled_capital_e",name:"circled_latin_capital_e",tags:["color_circled_capital_e"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER E",width:"+0.6ex"},{symbol:"Ⓕ",unicodeHex:"24BB",code:9403,alias:"circled_capital_f",name:"circled_latin_capital_f",tags:["color_circled_capital_f"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER F",width:"+0.6ex"},{symbol:"Ⓖ",unicodeHex:"24BC",code:9404,alias:"circled_capital_g",name:"circled_latin_capital_g",tags:["color_circled_capital_g"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER G",width:"+0.6ex"},{symbol:"Ⓗ",unicodeHex:"24BD",code:9405,alias:"circled_capital_h",name:"circled_latin_capital_h",tags:["color_circled_capital_h"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER H",width:"+0.6ex"},{symbol:"Ⓘ",unicodeHex:"24BE",code:9406,alias:"circled_capital_i",name:"circled_latin_capital_i",tags:["color_circled_capital_i"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER I",width:"+0.6ex"},{symbol:"Ⓙ",unicodeHex:"24BF",code:9407,alias:"circled_capital_j",name:"circled_latin_capital_j",tags:["color_circled_capital_j"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER J",width:"+0.6ex"},{symbol:"Ⓚ",unicodeHex:"24C0",code:9408,alias:"circled_capital_k",name:"circled_latin_capital_k",tags:["color_circled_capital_k"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER K",width:"+0.6ex"},{symbol:"Ⓛ",unicodeHex:"24C1",code:9409,alias:"circled_capital_l",name:"circled_latin_capital_l",tags:["color_circled_capital_l"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER L",width:"+0.6ex"},{symbol:"Ⓜ",unicodeHex:"24C2",code:9410,alias:"circled_capital_m",name:"circled_latin_capital_m",tags:["color_circled_capital_m"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER M",width:"+0.6ex"},{symbol:"Ⓝ",unicodeHex:"24C3",code:9411,alias:"circled_capital_n",name:"circled_latin_capital_n",tags:["color_circled_capital_n"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER N",width:"+0.6ex"},{symbol:"Ⓞ",unicodeHex:"24C4",code:9412,alias:"circled_capital_o",name:"circled_latin_capital_o",tags:["color_circled_capital_o"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER O",width:"+0.6ex"},{symbol:"Ⓟ",unicodeHex:"24C5",code:9413,alias:"circled_capital_p",name:"circled_latin_capital_p",tags:["color_circled_capital_p"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER P",width:"+0.6ex"},{symbol:"Ⓠ",unicodeHex:"24C6",code:9414,alias:"circled_capital_q",name:"circled_latin_capital_q",tags:["color_circled_capital_q"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER Q",width:"+0.6ex"},{symbol:"Ⓡ",unicodeHex:"24C7",code:9415,alias:"circled_capital_r",name:"circled_latin_capital_r",tags:["color_circled_capital_r"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER R",width:"+0.6ex"},{symbol:"Ⓢ",unicodeHex:"24C8",code:9416,alias:"circled_capital_s",name:"circled_latin_capital_s",tags:["color_circled_capital_s"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER S",width:"+0.6ex"},{symbol:"Ⓣ",unicodeHex:"24C9",code:9417,alias:"circled_capital_t",name:"circled_latin_capital_t",tags:["color_circled_capital_t"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER T",width:"+0.6ex"},{symbol:"Ⓤ",unicodeHex:"24CA",code:9418,alias:"circled_capital_u",name:"circled_latin_capital_u",tags:["color_circled_capital_u"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER U",width:"+0.6ex"},{symbol:"Ⓥ",unicodeHex:"24CB",code:9419,alias:"circled_capital_v",name:"circled_latin_capital_v",tags:["color_circled_capital_v"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER V",width:"+0.6ex"},{symbol:"Ⓦ",unicodeHex:"24CC",code:9420,alias:"circled_capital_w",name:"circled_latin_capital_w",tags:["color_circled_capital_w"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER W",width:"+0.6ex"},{symbol:"Ⓧ",unicodeHex:"24CD",code:9421,alias:"circled_capital_x",name:"circled_latin_capital_x",tags:["color_circled_capital_x"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER X",width:"+0.6ex"},{symbol:"Ⓨ",unicodeHex:"24CE",code:9422,alias:"circled_capital_y",name:"circled_latin_capital_y",tags:["color_circled_capital_y"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER Y",width:"+0.6ex"},{symbol:"Ⓩ",unicodeHex:"24CF",code:9423,alias:"circled_capital_z",name:"circled_latin_capital_z",tags:["color_circled_capital_z"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER Z",width:"+0.6ex"},{symbol:"ⓐ",unicodeHex:"24D0",code:9424,alias:"circled_a",name:"circled_latin_small_a",tags:["color_circled_a"],nameUnicode:"CIRCLED LATIN SMALL LETTER A",width:"+0.6ex"},{symbol:"ⓑ",unicodeHex:"24D1",code:9425,alias:"circled_b",name:"circled_latin_small_b",tags:["color_circled_b"],nameUnicode:"CIRCLED LATIN SMALL LETTER B",width:"+0.6ex"},{symbol:"ⓒ",unicodeHex:"24D2",code:9426,alias:"circled_c",name:"circled_latin_small_c",tags:["color_circled_c"],nameUnicode:"CIRCLED LATIN SMALL LETTER C",width:"+0.6ex"},{symbol:"ⓓ",unicodeHex:"24D3",code:9427,alias:"circled_d",name:"circled_latin_small_d",tags:["color_circled_d"],nameUnicode:"CIRCLED LATIN SMALL LETTER D",width:"+0.6ex"},{symbol:"ⓔ",unicodeHex:"24D4",code:9428,alias:"circled_e",name:"circled_latin_small_e",tags:["color_circled_e"],nameUnicode:"CIRCLED LATIN SMALL LETTER E",width:"+0.6ex"},{symbol:"ⓕ",unicodeHex:"24D5",code:9429,alias:"circled_f",name:"circled_latin_small_f",tags:["color_circled_f"],nameUnicode:"CIRCLED LATIN SMALL LETTER F",width:"+0.6ex"},{symbol:"ⓖ",unicodeHex:"24D6",code:9430,alias:"circled_g",name:"circled_latin_small_g",tags:["color_circled_g"],nameUnicode:"CIRCLED LATIN SMALL LETTER G",width:"+0.6ex"},{symbol:"ⓗ",unicodeHex:"24D7",code:9431,alias:"circled_h",name:"circled_latin_small_h",tags:["color_circled_h"],nameUnicode:"CIRCLED LATIN SMALL LETTER H",width:"+0.6ex"},{symbol:"ⓘ",unicodeHex:"24D8",code:9432,alias:"circled_i",name:"circled_latin_small_i",tags:["color_circled_i"],nameUnicode:"CIRCLED LATIN SMALL LETTER I",width:"+0.6ex"},{symbol:"ⓙ",unicodeHex:"24D9",code:9433,alias:"circled_j",name:"circled_latin_small_j",tags:["color_circled_j"],nameUnicode:"CIRCLED LATIN SMALL LETTER J",width:"+0.6ex"},{symbol:"ⓚ",unicodeHex:"24DA",code:9434,alias:"circled_k",name:"circled_latin_small_k",tags:["color_circled_k"],nameUnicode:"CIRCLED LATIN SMALL LETTER K",width:"+0.6ex"},{symbol:"ⓛ",unicodeHex:"24DB",code:9435,alias:"circled_l",name:"circled_latin_small_l",tags:["color_circled_l"],nameUnicode:"CIRCLED LATIN SMALL LETTER L",width:"+0.6ex"},{symbol:"ⓜ",unicodeHex:"24DC",code:9436,alias:"circled_m",name:"circled_latin_small_m",tags:["color_circled_m"],nameUnicode:"CIRCLED LATIN SMALL LETTER M",width:"+0.6ex"},{symbol:"ⓝ",unicodeHex:"24DD",code:9437,alias:"circled_n",name:"circled_latin_small_n",tags:["color_circled_n"],nameUnicode:"CIRCLED LATIN SMALL LETTER N",width:"+0.6ex"},{symbol:"ⓞ",unicodeHex:"24DE",code:9438,alias:"circled_o",name:"circled_latin_small_o",tags:["color_circled_o"],nameUnicode:"CIRCLED LATIN SMALL LETTER O",width:"+0.6ex"},{symbol:"ⓟ",unicodeHex:"24DF",code:9439,alias:"circled_p",name:"circled_latin_small_p",tags:["color_circled_p"],nameUnicode:"CIRCLED LATIN SMALL LETTER P",width:"+0.6ex"},{symbol:"ⓠ",unicodeHex:"24E0",code:9440,alias:"circled_q",name:"circled_latin_small_q",tags:["color_circled_q"],nameUnicode:"CIRCLED LATIN SMALL LETTER Q",width:"+0.6ex"},{symbol:"ⓡ",unicodeHex:"24E1",code:9441,alias:"circled_r",name:"circled_latin_small_r",tags:["color_circled_r"],nameUnicode:"CIRCLED LATIN SMALL LETTER R",width:"+0.6ex"},{symbol:"ⓢ",unicodeHex:"24E2",code:9442,alias:"circled_s",name:"circled_latin_small_s",tags:["color_circled_s"],nameUnicode:"CIRCLED LATIN SMALL LETTER S",width:"+0.6ex"},{symbol:"ⓣ",unicodeHex:"24E3",code:9443,alias:"circled_t",name:"circled_latin_small_t",tags:["color_circled_t"],nameUnicode:"CIRCLED LATIN SMALL LETTER T",width:"+0.6ex"},{symbol:"ⓤ",unicodeHex:"24E4",code:9444,alias:"circled_u",name:"circled_latin_small_u",tags:["color_circled_u"],nameUnicode:"CIRCLED LATIN SMALL LETTER U",width:"+0.6ex"},{symbol:"ⓥ",unicodeHex:"24E5",code:9445,alias:"circled_v",name:"circled_latin_small_v",tags:["color_circled_v"],nameUnicode:"CIRCLED LATIN SMALL LETTER V",width:"+0.6ex"},{symbol:"ⓦ",unicodeHex:"24E6",code:9446,alias:"circled_w",name:"circled_latin_small_w",tags:["color_circled_w"],nameUnicode:"CIRCLED LATIN SMALL LETTER W",width:"+0.6ex"},{symbol:"ⓧ",unicodeHex:"24E7",code:9447,alias:"circled_x",name:"circled_latin_small_x",tags:["color_circled_x"],nameUnicode:"CIRCLED LATIN SMALL LETTER X",width:"+0.6ex"},{symbol:"ⓨ",unicodeHex:"24E8",code:9448,alias:"circled_y",name:"circled_latin_small_y",tags:["color_circled_y"],nameUnicode:"CIRCLED LATIN SMALL LETTER Y",width:"+0.6ex"},{symbol:"ⓩ",unicodeHex:"24E9",code:9449,alias:"circled_z",name:"circled_latin_small_z",tags:["color_circled_z"],nameUnicode:"CIRCLED LATIN SMALL LETTER Z",width:"+0.6ex"},{symbol:"⍰",unicodeHex:"2370",code:9072,alias:"squared_question",name:"apl_functional_symbol_quad_question",tags:["color_squared_question"],nameUnicode:"APL FUNCTIONAL SYMBOL QUAD QUESTION",width:"+0.6ex"},{symbol:"⌦",unicodeHex:"2326",code:8998,alias:"erase_right",name:"erase_to_the_right",tags:["color_erase_right"],nameUnicode:"ERASE TO THE RIGHT",width:"+0.6ex"},{symbol:"⌫",unicodeHex:"232B",code:9003,alias:"erase_left",name:"erase_to_the_left",tags:["color_erase_left"],nameUnicode:"ERASE TO THE LEFT",width:"+0.6ex"},{symbol:"✆",unicodeHex:"2706",code:9990,alias:"telephone_location",name:"telephone_location_sign",tags:["color_telephone_location"],nameUnicode:"TELEPHONE LOCATION SIGN",width:"+0.6ex"}]},283:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.parseMarkdownByElement=e.parseMmdElement=e.formatSourceMML=e.formatSource=e.formatSourceHtmlWord=e.formatSourceHtml=void 0;var r=n(1635);e.formatSourceHtml=function(t,e){return void 0===e&&(e=!1),(t=e?t:t.trim()).replace(/&amp;/g,"&").replace(/&nbsp;/g," ").replace(/&lt;/g,"<").replace(/&gt;/g,">")};e.formatSourceHtmlWord=function(t,e){return void 0===e&&(e=!1),(t=e?t:t.trim()).replace(/<maligngroup><\/maligngroup>/g,"<maligngroup/>").replace(/<malignmark><\/malignmark>/g,"<malignmark/>").replace(/&nbsp;/g,"&#xA0;")};e.formatSource=function(t,e){return void 0===e&&(e=!1),(t=e?t:t.trim()).replace(/\u2062/g,"").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")};e.formatSourceMML=function(t){return t.trim().replace(/&#xA0;/g," ").replace(/\u00A0/g," ").replace(/&nbsp;/g," ")};e.parseMmdElement=function(t,n){var r,i;if(void 0===n&&(n=[]),!t)return n;if(["MOLECULE","CHARTDATA"].includes(null===(r=t.tagName)||void 0===r?void 0:r.toUpperCase())){if(null===(i=t.children)||void 0===i?void 0:i.length)for(var o=0;o<t.children.length;o++)n.push({type:t.children[o].tagName.toLowerCase(),value:(0,e.formatSourceHtml)(t.children[o].innerHTML)});return n}if(!t.children||!t.children.length)return n;for(var a=0;a<t.children.length;a++){var s=t.children[a];["smiles","smiles-inline"].includes(t.className)&&"SVG"===s.tagName.toUpperCase()?n.push({type:"svg",value:s.outerHTML}):-1!==["MATHML","MATHMLWORD","ASCIIMATH","LATEX","MJX-CONTAINER","LINEARMATH","TABLE","TSV","CSV","SMILES","TABLE-MARKDOWN","ERROR"].indexOf(s.tagName)&&("MJX-CONTAINER"===s.tagName||"TABLE"===s.tagName?"TABLE"===s.tagName?n.push({type:"html",value:s.outerHTML}):n.push({type:"svg",value:s.innerHTML}):n.push({type:s.tagName.toLowerCase(),value:["LATEX","ASCIIMATH","LINEARMATH","ERROR","TSV","CSV","TABLE-MARKDOWN","SMILES"].includes(s.tagName)?(0,e.formatSourceHtml)(s.innerHTML,"TSV"===s.tagName||"CSV"===s.tagName||"TABLE-MARKDOWN"===s.tagName):"MATHMLWORD"===s.tagName?(0,e.formatSourceHtmlWord)(s.innerHTML):s.innerHTML}))}return n};e.parseMarkdownByElement=function(t,n){var i,o;if(void 0===n&&(n=!0),!t)return null;var a=n?".math-inline, .math-block, .table_tabular, .inline-tabular, .smiles, .smiles-inline":"div:not(.cell-item) > .math-inline, div:not(.cell-item) > .math-block, .table_tabular, div:not(.cell-item) > .inline-tabular, div:not(.cell-item) > .smiles, div:not(.cell-item) > .smiles-inline",s=Array.from(t.querySelectorAll("".concat(a,", ").concat("pre > mol, svg > metadata > molecule",", ").concat("svg > metadata > chartdata"))).filter((function(t){var e,n;return!(null===(e=t.classList)||void 0===e?void 0:e.contains("table_tabular"))||!(null===(n=t.parentElement)||void 0===n?void 0:n.closest(".table_tabular"))})),l=[];try{for(var T=r.__values(s),Q=T.next();!Q.done;Q=T.next()){var c=Q.value;l=(0,e.parseMmdElement)(c,l)}}catch(t){i={error:t}}finally{try{Q&&!Q.done&&(o=T.return)&&o.call(T)}finally{if(i)throw i.error}}return l}},2599:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.formatMathJaxError=void 0;e.formatMathJaxError=function(t,e,n){void 0===n&&(n="MathJax");try{var r="string"==typeof e?e:"Invalid LaTeX data";if("object"==typeof t&&null!==t){var i={message:t.message||"Unknown error",latex:r};console.log("[".concat(n,"] ERROR=>"),JSON.stringify(i,null,2))}else"string"==typeof t?console.log("[".concat(n,"] ERROR=> ").concat(t),"\nLaTeX: ".concat(r)):console.log("[".concat(n,"] ERROR=> Unexpected error type"),t,"\nLaTeX: ".concat(r))}catch(r){console.log("[".concat(n,"] ERROR (formatting error)=>"),r),console.log("[".concat(n,"] Original Error=>"),t),console.log("[".concat(n,"] LaTeX=> ").concat(e))}}},7726:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.reDiagboxG=e.reFootNoteText=e.reFootNoteMark=e.reOpenTagFootnotetextNumbered=e.reOpenTagFootnotetextG=e.reOpenTagFootnotetext=e.reOpenTagFootnoteNumbered=e.reOpenTagFootnoteG=e.reOpenTagFootnote=e.reFootNote=e.closeTagTabular=e.openTagTabular=e.reMultiRow=e.reMultiRowWithVPos=e.reAddContentsLineG=e.reAddContentsLine=e.reSetCounterG=e.reSetCounter=e.defQED=e.reNewCommandQedSymbolG=e.reNewCommandQedSymbol=e.defTheoremStyle=e.reTheoremStyleG=e.reTheoremStyle=e.reNewTheoremUnNumbered=e.reNewTheoremNumbered2=e.reNewTheoremNumbered=e.reNewTheorem=e.reNewTheoremUnNumberedInit=e.reNewTheoremInit=e.reNewTheoremG=e.openTagProof=e.openTagDescription=e.openTag=e.labelTagG=e.labelTag=e.closeTagSpan=e.reSeparatingSpanG=e.reSeparatingSpan=e.reSpanG=e.reSpan=e.markerCloseTagSpan=e.markerBeginTagSpan=e.reOpenTagSmiles=e.open_tag_smiles=e.mathMLInlineRegex=e.closeTagMML=e.openTagMML=e.attribute=e.attr_value=void 0,e.LATEX_BLOCK_ENV_OPEN_RE=e.LATEX_LIST_BOUNDARY_INLINE_RE=e.LATEX_ITEM_COMMAND_INLINE_RE=e.LATEX_ITEM_COMMAND_RE=e.END_LIST_ENV_RE=e.END_LIST_ENV_INLINE_RE=e.BEGIN_LIST_ENV_INLINE_RE=e.BEGIN_LIST_ENV_RE=e.BEGIN_LST_WITH_TRAIL_WS_NL_RE=e.END_TABULAR_INLINE_RE=e.END_LST_INLINE_RE=e.BEGIN_TABULAR_INLINE_RE=e.BEGIN_LST_INLINE_RE=e.BEGIN_LST_RE=e.END_LST_RE=e.BEGIN_LST_FAST_RE=e.LATEX_BLOCK_ENV=e.RE_INCLUDEGRAPHICS_WITH_ALIGNMENT_GLOBAL=e.RE_ALIGN_CENTERING_GLOBAL=e.RE_CAPTION_TAG_BEGIN=e.RE_CAPTION_TAG_GLOBAL=e.RE_CAPTION_TAG=e.RE_BEGIN_TABLE_OR_FIGURE_WITH_PLACEMENT=e.RE_BEGIN_FIGURE_OR_TABLE_ENV=e.RE_ALIGN_ENV_BLOCK=e.RE_BEGIN_ALIGN_ENV=e.RE_CAPTION_SETUP=e.RE_CAPTION_SETUP_TAG_BEGIN=e.lineSpaceTag=e.RE_DIMENSIONAL_UNIT_TAG=e.RE_CLINE=e.RE_HDASHLINE=e.RE_HHLINE=e.RE_HLINE=e.RE_TAG_WITH_CLINE=e.RE_TAG_WITH_HDASHLINE=e.RE_TAG_WITH_HHLINE=e.RE_TAG_WITH_HLINE=e.ANGLE_BRACKETS_RE=e.preserveNewlineUnlessDoubleAngleUuidRegex=e.singleCurlyBracketPattern=e.doubleCurlyBracketUuidPattern=e.singleAngleBracketPattern=e.doubleAngleBracketUuidPattern=e.uuidPatternNoCapture=e.uuidPattern=e.svgInlineRegex=e.svgRegex=e.reNumber=e.reDiagbox=void 0,e.INLINE_ELEMENT_TOKENS=e.CLOSING_STYLE_TOKENS=e.OPENING_STYLE_TOKENS=e.renderOptionsDef=e.codeHighlightDef=e.mathTokenTypes=e.terminatedRules=e.mdSeparatorsDef=e.csvSeparatorsDef=e.tsvSeparatorsDef=e.mathEnvironments=e.latexEnvironments=e.RE_EMPTY_TEXT=e.SIMPLE_MATH_DELIM_RE=e.TEXTWIDTH_RE=e.HIGHLIGHT_TEXT_COLOR=e.HIGHLIGHT_COLOR=e.LST_HLJS_LANGUAGES=e.ENUM_STYLES=e.ITEM_LEVEL_COMMANDS=e.ENUM_LEVEL_COMMANDS=e.LATEX_ENUM_STYLE_KEY_RE=e.LATEX_ENUM_STYLE_RE=e.BLOCK_LATEX_RE=void 0;var r=n(1635);e.attr_value="(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\")",e.attribute="(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*"+e.attr_value+")?)";var i="^<(math)"+e.attribute+"*\\s*\\/?>";e.openTagMML=new RegExp("(?:"+i+")"),e.closeTagMML=new RegExp("(?:^<\\/math*\\s*>)"),e.mathMLInlineRegex=/^<(math\b[^>]*)>[\s\S]*<\/math>/,e.open_tag_smiles="^<(smiles)"+e.attribute+"*\\s*\\/?>",e.reOpenTagSmiles=new RegExp("(?:"+e.open_tag_smiles+")"),e.markerBeginTagSpan=/^<\/?(span)(?=(\s|>|$))/i,e.markerCloseTagSpan=/<\/span\s*>/i,e.reSpan=/^<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(.*)<\/span\>/,e.reSpanG=/<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(.*)<\/span\>/,e.reSeparatingSpan=/^<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(\s*)<\/span\>/,e.reSeparatingSpanG=/<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(\s*)<\/span\>/;e.closeTagSpan=new RegExp("(?:<\\/span*\\s*>)"),e.labelTag=/\\label\s{0,}\{([^}]*)\}/,e.labelTagG=/\\label\s{0,}\{([^}]*)\}/g,e.openTag=/\\begin\s{0,}\{(?<name>[^}]*)\}/,e.openTagDescription=/\\begin\s{0,}\{(?<name>[^}]*)\}\s{0,}\[(?<description>[^\]]*)\]/,e.openTagProof=/\\begin\s{0,}\{([proof\s]+)\}/,e.reNewTheoremG=/\\newtheorem([^}]*)\s{0,}\{(?<name>[^}]*)\}/,e.reNewTheoremInit=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}/,e.reNewTheoremUnNumberedInit=/^\\newtheorem\*\s{0,}\{(?<name>[^}]*)\}/,e.reNewTheorem=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<print>[^}]*)\}/,e.reNewTheoremNumbered=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<print>[^}]*)\}\s{0,}\[(?<numbered>[^\]]*)\]/,e.reNewTheoremNumbered2=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}\s{0,}\[(?<numbered>[^\]]*)\]\s{0,}\{(?<print>[^}]*)\}/,e.reNewTheoremUnNumbered=/^\\newtheorem\*\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<print>[^}]*)\}/,e.reTheoremStyle=/^\\theoremstyle\s{0,}\{(definition|plain|remark)\}/,e.reTheoremStyleG=/\\theoremstyle\s{0,}\{(definition|plain|remark)\}/,e.defTheoremStyle="plain",e.reNewCommandQedSymbol=/^\\renewcommand\s{0,}\\qedsymbol\s{0,}\{(?<qed>[^}]*)\}/,e.reNewCommandQedSymbolG=/\\renewcommand\s{0,}\\qedsymbol\s{0,}\{(?<qed>[^}]*)\}/,e.defQED="$\\square$",e.reSetCounter=/^\\setcounter\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<number>[^}]*)\}/,e.reSetCounterG=/\\setcounter\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<number>[^}]*)\}/,e.reAddContentsLine=/^\\addcontentsline\s{0,}\{(?<exp>[^}]*)\}\s{0,}\{(?<unit>[^}]*)\}/,e.reAddContentsLineG=/^\\addcontentsline\s{0,}\{(?<exp>[^}]*)\}\s{0,}\{(?<unit>[^}]*)\}/,e.reMultiRowWithVPos=/(?:\\multirow\s{0,}\[(?<vpos>[^\]]*)\]\s{0,}\{(?<nrows>[^}]*)\}\s{0,}\{(?<width>[^}]*)\})/,e.reMultiRow=/(?:\\multirow\s{0,}\{(?<nrows>[^}]*)\}\s{0,}\{(?<width>[^}]*)\})/,e.openTagTabular=/^\\begin\s{0,}{tabular}\s{0,}\{([^}]*)\}/,e.closeTagTabular=/^\\end\s{0,}{tabular}/,e.reFootNote=/^\\footnote/,e.reOpenTagFootnote=/^\\footnote\s{0,}\[\s{0,}\]\s{0,}{|^\\footnote\s{0,}\[-?\d+\]\s{0,}{|^\\footnote\s{0,}{/,e.reOpenTagFootnoteG=/\\footnote\s{0,}\[\s{0,}\]\s{0,}{|\\footnote\s{0,}\[-?\d+\]\s{0,}{|\\footnote\s{0,}{/,e.reOpenTagFootnoteNumbered=/\\footnote\s{0,}\[(?<number>-?\d+)\]\s{0,}{/,e.reOpenTagFootnotetext=/^\\footnotetext\s{0,}\[\s{0,}\]\s{0,}{|^\\footnotetext\s{0,}\[-?\d+\]\s{0,}{|^\\footnotetext\s{0,}{|^\\blfootnotetext\s{0,}{/,e.reOpenTagFootnotetextG=/\\footnotetext\s{0,}\[\s{0,}\]\s{0,}{|\\footnotetext\s{0,}\[-?\d+\]\s{0,}{|\\footnotetext\s{0,}{|\\blfootnotetext\s{0,}{/,e.reOpenTagFootnotetextNumbered=/\\footnotetext\s{0,}\[(?<number>-?\d+)\]\s{0,}{/,e.reFootNoteMark=/^\\footnotemark/,e.reFootNoteText=/^\\footnotetext|\\blfootnotetext/,e.reDiagboxG=/\\(diagbox|backslashbox|slashbox)(\[[^\]]*\])?/g,e.reDiagbox=/\\(diagbox|backslashbox|slashbox)(?:\[(.*?)\])?/,e.reNumber=/^-?\d+$/,e.svgRegex=/^<svg\b[^>]*>[\s\S]*<\/svg>$/,e.svgInlineRegex=/^<svg\b[^>]*>[\s\S]*<\/svg>/,e.uuidPattern="(f[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})",e.uuidPatternNoCapture="f[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}",e.doubleAngleBracketUuidPattern=new RegExp("<<(?:".concat(e.uuidPattern,")>>"),"g"),e.singleAngleBracketPattern=new RegExp("<(?:".concat(e.uuidPattern,")>"),"g"),e.doubleCurlyBracketUuidPattern=new RegExp("\\{\\{(?:".concat(e.uuidPattern,")\\}\\}"),"g"),e.singleCurlyBracketPattern=new RegExp("\\{(?:".concat(e.uuidPattern,")\\}"),"g"),e.preserveNewlineUnlessDoubleAngleUuidRegex=new RegExp(String.raw(o||(o=r.__makeTemplateObject(["\r?\n(?!s*<<(?:",")>>)"],["\\r?\\n(?!\\s*<<(?:",")>>)"])),e.uuidPatternNoCapture),"g"),e.ANGLE_BRACKETS_RE=/[<>]/g,e.RE_TAG_WITH_HLINE=/\[(.*?)\]\s{0,}\\hline/,e.RE_TAG_WITH_HHLINE=/\[(.*?)\]\s{0,}\\hhline/,e.RE_TAG_WITH_HDASHLINE=/\[(.*?)\]\s{0,}\\hdashline/,e.RE_TAG_WITH_CLINE=/\[(.*?)\]\s{0,}\\cline\s{0,}\{([^}]*)\}/,e.RE_HLINE=/\\hline/,e.RE_HHLINE=/\\hhline/,e.RE_HDASHLINE=/\\hdashline/,e.RE_CLINE=/\\cline\s{0,}\{([^}]*)\}/,e.RE_DIMENSIONAL_UNIT_TAG=/\[(\d+(?:\.\d+)?(?:ex|pt|em|px|cm|mm|in))\]?/,e.lineSpaceTag=new RegExp([e.RE_TAG_WITH_HLINE.source,e.RE_TAG_WITH_HHLINE.source,e.RE_TAG_WITH_HDASHLINE.source,e.RE_TAG_WITH_CLINE.source,e.RE_HLINE.source,e.RE_HHLINE.source,e.RE_HDASHLINE.source,e.RE_CLINE.source,e.RE_DIMENSIONAL_UNIT_TAG.source].join("|"),"g"),e.RE_CAPTION_SETUP_TAG_BEGIN=/\\captionsetup\s{0,}\{/,e.RE_CAPTION_SETUP=/^\\captionsetup\s{0,}\{([^}]*)\}/,e.RE_BEGIN_ALIGN_ENV=/\\begin\s{0,}\{(center|left|right)\}/,e.RE_ALIGN_ENV_BLOCK=/\\begin\s{0,}\{(center|left|right)\}\s{0,}([\s\S]*?)\s{0,}\\end\s{0,}\{(center|left|right)\}/,e.RE_BEGIN_FIGURE_OR_TABLE_ENV=/\\begin\s{0,}\{(table|figure)\}/,e.RE_BEGIN_TABLE_OR_FIGURE_WITH_PLACEMENT=/\\begin\s{0,}\{(table|figure)\}\s{0,}\[(H|\!H|H\!|h|\!h|h\!|t|\!t|b|\!b|p|\!p)\]/,e.RE_CAPTION_TAG=/\\caption\s{0,}\{([^}]*)\}/,e.RE_CAPTION_TAG_GLOBAL=/\s{0,}\\caption\s{0,}\{([^}]*)\}\s{0,}/g,e.RE_CAPTION_TAG_BEGIN=/\\caption\s{0,}\{/,e.RE_ALIGN_CENTERING_GLOBAL=/\\centering/g,e.RE_INCLUDEGRAPHICS_WITH_ALIGNMENT_GLOBAL=/\\includegraphics\[((.*)(center|left|right))\]\s{0,}\{([^{}]*)\}/g,e.LATEX_BLOCK_ENV=new Set(["lstlisting","itemize","enumerate"]),e.BEGIN_LST_FAST_RE=/^\\begin\{lstlisting\}/,e.END_LST_RE=/^\\end\{lstlisting\}\s*$/,e.BEGIN_LST_RE=/^\\begin\{lstlisting\}(?:\[(.*?)\])?\s*$/,e.BEGIN_LST_INLINE_RE=/\\begin\{lstlisting\}(?:\[(.*?)\])?/,e.BEGIN_TABULAR_INLINE_RE=/\\begin\s{0,}{tabular}\s{0,}\{([^}]*)\}/,e.END_LST_INLINE_RE=/\\end\{lstlisting\}/,e.END_TABULAR_INLINE_RE=/\\end\{tabular\}/;var o,a,s,l=String.raw(a||(a=r.__makeTemplateObject(["(?:[^S\r\n]*\r?\n)?"],["(?:[^\\S\\r\\n]*\\r?\\n)?"])));e.BEGIN_LST_WITH_TRAIL_WS_NL_RE=new RegExp(String.raw(s||(s=r.__makeTemplateObject(["^\\begin{lstlisting}(?:[(.*?)])?"],["^\\\\begin\\{lstlisting\\}(?:\\[(.*?)\\])?"])))+l),e.BEGIN_LIST_ENV_RE=/^\\begin\s*\{(itemize|enumerate)\}/,e.BEGIN_LIST_ENV_INLINE_RE=/\\begin\s*\{(itemize|enumerate)\}/,e.END_LIST_ENV_INLINE_RE=/\\end\s*\{(itemize|enumerate)\}/,e.END_LIST_ENV_RE=/^\\end\s*\{(itemize|enumerate)\}/,e.LATEX_ITEM_COMMAND_RE=/^(?:\\item\s*\[([^\]]*)\]|\\item)/,e.LATEX_ITEM_COMMAND_INLINE_RE=/(?:item\s*\[([^\]]*)\]|item)/,e.LATEX_LIST_BOUNDARY_INLINE_RE=/\\begin\s*\{(itemize|enumerate)\}|\\end\s*\{(itemize|enumerate)\}|\\item/,e.LATEX_BLOCK_ENV_OPEN_RE=/\\begin{(center|left|right|table|figure|tabular|lstlisting)}/,e.BLOCK_LATEX_RE=/\\begin\{(tabular|itemize|enumerate|lstlisting)\}/,e.LATEX_ENUM_STYLE_RE=/(?:\\alph|\\Alph|\\arabic|\\roman|\\Roman)\s*\{(enumi|enumii|enumiii|enumiv)\}/,e.LATEX_ENUM_STYLE_KEY_RE=/^(?:alph|Alph|arabic|roman|Roman)/,e.ENUM_LEVEL_COMMANDS=["labelenumi","labelenumii","labelenumiii","labelenumiv"],e.ITEM_LEVEL_COMMANDS=["labelitemi","labelitemii","labelitemiii","labelitemiv"],e.ENUM_STYLES={alph:"lower-alpha",Alph:"upper-alpha",arabic:"decimal",roman:"lower-roman",Roman:"upper-roman"},e.LST_HLJS_LANGUAGES={"c++":"cpp",assembler:"x86asm",caml:"ocaml",csh:"shell",inform:"inform7",ksh:"shell",sh:"shell"},e.HIGHLIGHT_COLOR="rgba(0, 147, 255, 0.25)",e.HIGHLIGHT_TEXT_COLOR="#1e2029",e.TEXTWIDTH_RE=/^\s*(\d*\.?\d+)?\s*\\(?:textwidth|linewidth)\b/,e.SIMPLE_MATH_DELIM_RE=/(^|[^\\])\$\$(?!\$)/g,e.RE_EMPTY_TEXT=/^[\s\u00a0]*$/,e.latexEnvironments=["figure","table","tabular","enumerate","itemize","proof","center","left","right","abstract","lstlisting"],e.mathEnvironments=["align","align*","alignat","alignat*","aligned","alignedat","array","Bmatrix","bmatrix","cases","numcases","subnumcases","eqnarray","eqnarray*","equation","equation*","gather","gather*","gathered","matrix","multline","multline*","pmatrix","smallmatrix","split","subarray","Vmatrix","vmatrix"],e.tsvSeparatorsDef={column:"\t",row:"\n"},e.csvSeparatorsDef={column:",",row:"\n",toQuoteAllFields:!1},e.mdSeparatorsDef={column:" ",row:" <br> "},e.terminatedRules={smilesDrawerBlock:{terminated:["paragraph","reference","blockquote","list"]},BeginTable:{terminated:["newTheoremBlock"]},BeginAlign:{terminated:["newTheoremBlock"]},BeginTabular:{terminated:["paragraph","newTheoremBlock"]},BeginProof:{terminated:["newTheoremBlock"]},BeginTheorem:{terminated:["newTheoremBlock"]},newTheoremBlock:{terminated:["pageBreaksBlock"]},ReNewCommand:{terminated:[]},Lists:{terminated:["paragraph"]},separatingSpan:{terminated:[]},headingSection:{terminated:["newTheoremBlock","mathMLBlock"]},addContentsLineBlock:{terminated:["newTheoremBlock"]},mathMLBlock:{terminated:["paragraph","newTheoremBlock"]},abstractBlock:{terminated:["paragraph"]},pageBreaksBlock:{terminated:["paragraph"]},paragraphDiv:{terminated:[]},svg_block:{terminated:["paragraph"]},image_with_size_block:{terminated:["paragraph"]},fence:{terminated:["paragraph","reference","blockquote","list"]}},e.mathTokenTypes=["display_math","inline_math","equation_math_not_number","equation_math"],e.codeHighlightDef={auto:!1,code:!0},e.renderOptionsDef={enable_markdown:!0,enable_latex:!0,enable_markdown_mmd_extensions:!0},e.OPENING_STYLE_TOKENS=["strong_open","em_open","s_open","mark_open","underline_open","out_open","text_latex_open","textbf_open","texttt_open","textit_open"],e.CLOSING_STYLE_TOKENS=["strong_close","em_close","s_close","mark_close","underline_close","out_close","text_latex_close","textbf_close","texttt_close","textit_close"],e.INLINE_ELEMENT_TOKENS=["text","inline_math","inline_mathML","code_inline","smiles_inline","link_open","label","dotfill","textbf","texttt","textit","text_latex","url"]},9921:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.skipBackticks=e.findFirstTagContentWithNesting=e.isEscapedAt=e.applyAttrToInlineMath=e.applyAttrToMathml=e.isMathInText=e.addAttributesToParentToken=e.addAttributesToParentTokenByType=e.getSpacesFromLeft=e.canonicalMathPositions=e.canonicalMath=e.findOpenCloseTagsMathEnvironment=e.findOpenCloseTags=e.findBackTick=e.attrSetToBegin=e.uid=e.arrayResortFromElement=e.arrayDelElement=e.arraysCompare=e.includesMultiMathTag=e.includesMultiMathBeginTag=e.hasOddSimpleMathTag=e.includesSimpleMathTag=e.isNotBackticked=e.getLatexTextWidth=e.getWidthFromDocument=e.beginTag=e.endTag=void 0;var r=n(1635),i=n(7726);e.endTag=function(t,e){void 0===e&&(e=!1);try{return-1!==t.indexOf("*")&&(t=t.replace(/\*/,"\\*")),e?new RegExp("^\\\\ends{0,}{("+t+")}"):new RegExp("\\\\ends{0,}{("+t+")}")}catch(t){return null}};e.beginTag=function(t,e){void 0===e&&(e=!1);try{return-1!==t.indexOf("*")&&(t=t.replace(/\*/,"\\*")),e?new RegExp("^\\\\begins{0,}{("+t+")}"):new RegExp("\\\\begins{0,}{("+t+")}")}catch(t){return null}};e.getWidthFromDocument=function(t){void 0===t&&(t=1200);try{var e=document.getElementById("container-ruller");return e?e.offsetWidth:1200}catch(e){return t}};e.getLatexTextWidth=function(t,n){void 0===n&&(n=1200);var r="";try{var i=t.match(/\\textwidth/);if(!i)return r;n=(0,e.getWidthFromDocument)(n);var o=t.slice(0,i.index);o=o?o.trim():"";var a=parseFloat(o);return r="width: ".concat((a=a||1)*n,"px; ")}catch(t){return r}};e.isNotBackticked=function(t,e){var n,r=0,i=t.length,o=0,a=!1,s=0;n=t.charCodeAt(r);for(var l="",T="",Q=!1;r<i;)96===n?a?(a=!1,s=r,l.includes(e)&&(Q=!0,l="")):o%2==0&&(a=!0,s=r):a?l+=t[r]:T+=t[r],92===n&&r+1<i&&96===t.charCodeAt(r+1)?o++:o=0,++r===i&&a&&(a=!1,r=s+1),n=t.charCodeAt(r);return!Q||T.includes(e)};e.includesSimpleMathTag=function(t,n){return void 0===n&&(n="$$"),t.includes(n)&&(0,e.isNotBackticked)(t,n)};e.hasOddSimpleMathTag=function(t,n){if(void 0===n&&(n="$$"),!(0,e.includesSimpleMathTag)(t,n))return!1;for(var r=new RegExp(i.SIMPLE_MATH_DELIM_RE),o=0;null!==r.exec(t);)o++;return o%2==1};e.includesMultiMathBeginTag=function(t,n){var r=null;try{if(!n.test(t))return r;for(var o=void 0,a=0;a<t.length;a++){r=null;var s=a<t.length?t.slice(a):"";if(!(o=s?s.match(n):null))break;if((0,e.isNotBackticked)(t,o[0])){if(r=null,"\\["===o[0]||"["===o[0])r=/\\\]/;else if("\\("===o[0]||"("===o[0])r=/\\\)/;else if(o[1]){if(i.latexEnvironments.includes(o[1]))return null;r=(0,e.endTag)(o[1])}break}a+=o.index+o[0].length-1}return r}catch(t){return null}};e.includesMultiMathTag=function(t,n){var r,i=!1;if(!n.test(t))return i;for(var o=0;o<t.length;o++){i=!1;var a=o<t.length?t.slice(o):"";if(!(r=a?a.match(n):null))break;if((0,e.isNotBackticked)(t,r[0])){i=!0;break}o+=r.index+r[0].length}return i};e.arraysCompare=function(t,e){return!(t.length<2||e.length<2)&&(t.length==e.length?t.every((function(t,n){return t===e[n]})):t.length<e.length?0===t.filter((function(t){return-1===e.indexOf(t)})).length:0===e.filter((function(e){return-1===t.indexOf(e)})).length)};e.arrayDelElement=function(t,e){var n=t.indexOf(e);return-1===n?t:t.splice(n,1)};e.arrayResortFromElement=function(t,e,n,i){void 0===n&&(n=!1),void 0===i&&(i=-1);var o=t.indexOf(e),a=r.__spreadArray([],r.__read(t),!1),s=r.__spreadArray([],r.__read(t),!1);if(o<a.length-1){if(n){var l=a.splice(0,o),T=s.splice(o+1);if(-1!==i){if(-1!==l.indexOf(i))return[e].concat(l.reverse(),T.reverse());if(-1!==T.indexOf(i))return[e].concat(T,l)}return[e].concat(l.reverse(),T.reverse())}l=a.splice(0,o),T=s.splice(o+1);return[e].concat(l.reverse(),T.reverse())}l=a.splice(0,o);return[e].concat(n?l:l.reverse())};e.uid=function(){return Date.now().toString(36)+Math.random().toString(36).substr(2)};e.attrSetToBegin=function(t,e,n){var r=(null==t?void 0:t.length)?t.findIndex((function(t){return t[0]===e})):-1;r<0?t.unshift([e,n]):t[r]=[e,n]};e.findBackTick=function(t,e,n){void 0===n&&(n="");var r,i,o=t,a=e.length;if(96!==e.charCodeAt(o))return null;var s=o;for(o++;o<a&&96===e.charCodeAt(o);)o++;var l=e.slice(s,o);if(n===l)return{marker:l,posEnd:o};for(r=i=o;-1!==(r=e.indexOf("`",i));){for(i=r+1;i<a&&96===e.charCodeAt(i);)i++;if(i-r===l.length)return{marker:l,content:e.slice(o,r).replace(/\n/g," ").replace(/^ (.+) $/,"$1"),posEnd:i}}return{marker:l,posEnd:t+l.length,pending:l}};e.findOpenCloseTags=function(t,n,r,i,o){void 0===i&&(i=""),void 0===o&&(o=!1);var a=t.length,s=[],l=[],T="",Q=0;if(i){var c=t.indexOf(i);if(-1===c)return{arrOpen:s,arrClose:l,pending:i};Q=c+i.length,i=""}for(var u=Q;u<a;u++){if(96===t.charCodeAt(u)){var d=(0,e.findBackTick)(u,t,i);if(d){if(d.pending&&(T=d.pending,!o))break;u=o?d.posEnd-1:d.posEnd;continue}}if(92===t.charCodeAt(u)){var h=t.slice(u).match(n);if(h){var p=u+h[0].length;s.push({posStart:u+h.index,content:h[0],posEnd:p}),u=p}else{if(!r)continue;if(h=t.slice(u).match(r)){p=u+h[0].length;l.push({posStart:u+h.index,content:h[0],posEnd:p}),u=p<a?p-1:p}}}}return{arrOpen:s,arrClose:l,pending:T}};e.findOpenCloseTagsMathEnvironment=function(t,e,n,r){void 0===r&&(r=!0);for(var i=t.length,o=[],a=[],s=0;s<i;s++)if(92===t.charCodeAt(s)){var l=t.slice(s).match(e);if(l){var T=s+l[0].length;o.push({posStart:s+l.index,content:l[0],posEnd:T}),s=T-1}else if(l=t.slice(s).match(n)){T=s+l[0].length;if(a.push({posStart:s+l.index,content:l[0],posEnd:T}),r&&a.length===(null==o?void 0:o.length))break;s=T-1}}return{arrOpen:o,arrClose:a}};var o=function(t,e){var n=t.slice(e).match(/^([a-z]+|.) ?/i);return n?(e+=n[1].length,{cs:n[1],next:e}):{cs:" ",next:++e}},a=function(t,e){var n=t.slice(e).match(/^([0-9.,]+|) ?/i);return n?(e+=n[1].length,{cs:n[1],next:e}):{cs:"",next:++e}},s=function(t,e){var n=t.slice(e).match(/^([a-z]+|) ?/i);return n?(e+=n[1].length,{cs:n[1],next:e}):{cs:"",next:++e}},l=function(t,e){return t.charAt(e).match(/\s/)};e.canonicalMath=function(t){if(!t||!t.trim())return[];for(var e,n,r=[],i=0;i<t.length;)if(l(t,i)&&i++,(n=(e=t.charAt(i++)).charCodeAt(0))>=55296&&n<56320&&(e+=t.charAt(i++)),/^\\/.test(e)){var T=o(t,i),Q=T.cs;i=T.next,r.push(e+Q)}else if(/[0-9.,]/.test(e)){var c=a(t,i);Q=c.cs;i=c.next,r.push(e+Q)}else if(/[a-z]/i.test(e)){var u=s(t,i);Q=u.cs;i=u.next,r.push(e+Q)}else r.push(e);return r};e.canonicalMathPositions=function(t){if(!t||!t.trim())return[];for(var e,n,r=[],i=0,T=0,Q=!1,c=0,u=null,d=0,h=0,p="",m=0;i<t.length;)if(l(t,i)&&i++,T=i,(n=(e=t.charAt(i++)).charCodeAt(0))>=55296&&n<56320&&(e+=t.charAt(i++)),/^\\/.test(e)){d===m&&(p="");var f=o(t,i),y=f.cs,g=f.next,L=e+y;Q&&0===c&&(Q=!1),Q||r.push({content:L,contentSlice:t.slice(T,g),type:"command",positions:{start:T,end:g},fontControl:u,parentCommand:p}),i=g,d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null),["\\text","\\textsf","\\textit","\\textbf","\\textrm","\\texttt"].includes(L)&&(Q=!0),["\\mit","\\rm","\\oldstyle","\\cal","\\it","\\bf","\\bbFont","\\scr","\\frak","\\sf","\\tt","\\Bbb","\\emph"].includes(L)&&(u={command:L,includeIntoBraces:["\\Bbb"].includes(L)},h=d),m=d,p=L}else if(/[0-9.,]/.test(e)){d===m&&(p="");var b=a(t,i);y=b.cs,g=b.next;Q&&0===c&&(Q=!1),Q||r.push({content:e+y,contentSlice:t.slice(T,g),type:"numbers",positions:{start:T,end:g},fontControl:u,parentCommand:p}),i=g,d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null)}else if(/[a-z]/i.test(e)){d===m&&(p="");var v=s(t,i);y=v.cs,g=v.next;Q&&0===c&&(Q=!1),Q||r.push({content:e+y,contentSlice:t.slice(T,g),type:"letters",positions:{start:T,end:g},fontControl:u,parentCommand:p}),i=g,d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null)}else if("{"!==e&&"}"!==e&&(d===m&&(p=""),d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null)),"{"===e&&d++,"}"===e&&(d===h&&(u=null),--d===m&&(p=""),d--),Q){if("{"===e&&c++,"}"===e&&c--,0===c){var x=r[r.length-1];x.positions.end=i,x.content=t.slice(x.positions.start,x.positions.end),x.contentSlice=t.slice(x.positions.start,x.positions.end),Q=!1}}else r.push({content:e,contentSlice:t.slice(T,T+e.length),type:"other",positions:{start:T,end:i},fontControl:u,parentCommand:p});return r};e.getSpacesFromLeft=function(t){var e=t?t.trimLeft():"";return t?t.length-e.length:0};e.addAttributesToParentTokenByType=function(t,e,n,r,i){var o;void 0===i&&(i=null);try{if(!e.content||!(null==e?void 0:e.children.length))return;if(i&&!i.test(e.content))return;e.children.find((function(t){return t.type===n}))&&((null===(o=t.attrs)||void 0===o?void 0:o.length)?t.attrs.push(r):t.attrs=[r])}catch(t){console.log("[MMD]=>[addAttributesToParentTokenByType]=>ERROR=>",t)}};e.addAttributesToParentToken=function(t,n){try{if(!n.content||!(null==n?void 0:n.children.length))return;(0,e.addAttributesToParentTokenByType)(t,n,"dotfill",["data-has-dotfill","true"],/\\dotfill/)}catch(t){console.log("[MMD]=>[addAttributesToParentToken]=>ERROR=>",t)}};e.isMathInText=function(t,e,n){try{if(!n.forDocx||e<0||e>=t.length)return!1;var r=t[e];if(!["inline_math","inline_mathML"].includes(r.type))return!1;if(r.attrGet("data-math-in-text"))return!0;var o=e>0?t[e-1]:null;if((null==o?void 0:o.type)&&i.INLINE_ELEMENT_TOKENS.includes(o.type))return!0;for(var a=e+1;a<t.length;a++){var s=t[a];if(!i.CLOSING_STYLE_TOKENS.includes(s.type)){if(i.OPENING_STYLE_TOKENS.includes(s.type)||i.INLINE_ELEMENT_TOKENS.includes(s.type))return!0;break}}return!1}catch(t){return console.log("[MMD][isMathInText]=>[ERROR]=>",t),!1}};e.applyAttrToMathml=function(t,e,n){try{return n.forDocx&&e?t.replace(/<mathmlword(\s|>)/g,"<mathmlword ".concat(e,"$1")).replace(/<mathml(\s|>)/g,"<mathml ".concat(e,"$1")):t}catch(e){return t}};e.applyAttrToInlineMath=function(t,e,n){t.forEach((function(t){["inline_math","inline_mathML"].includes(t.type)&&t.attrSet(e,n)}))};e.isEscapedAt=function(t,e){for(var n=0,r=e-1;r>=0&&92===t.charCodeAt(r);r--)n++;return n%2==1};e.findFirstTagContentWithNesting=function(t,n,r,i,o){void 0===i&&(i=""),void 0===o&&(o=!1);var a=t.length,s=[],l="",T=0;if(i){var Q=t.indexOf(i);if(-1===Q)return{block:null,pending:i};T=Q+i.length,i=""}for(var c=T;c<a;c++){var u=t.charCodeAt(c);if(96===u){var d=(0,e.findBackTick)(c,t,i);if(d){if(d.pending&&(l=d.pending,!o))break;c=o?d.posEnd-1:d.posEnd;continue}}if(92===u){var h=t.slice(c).match(n);if(h&&0===h.index){var p={posStart:c,posEnd:c+(f=h[0]).length,content:f};s.push({open:p,level:s.length}),c=p.posEnd-1}else{var m=r?t.slice(c).match(r):null;if(m&&0===m.index){var f,y={posStart:c,posEnd:c+(f=m[0]).length,content:f},g=s.pop();if(g){var L=g.open.posEnd,b=y.posStart,v={open:g.open,close:y,content:t.slice(L,b),contentPosStart:L,contentPosEnd:b,level:g.level};if(0===g.level)return{block:v,pending:""}}c=y.posEnd-1}}}}return{block:null,pending:l}};e.skipBackticks=function(t,n){if(96!==t.charCodeAt(n))return n;if((0,e.isEscapedAt)(t,n))return n;for(var r=0;n+r<t.length&&96===t.charCodeAt(n+r);)r++;var i="`".repeat(r),o=n+r,a=t.indexOf(i,o);return-1===a?t.length:a+r}},5083:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Other=void 0;var r=n(8437),i=n(2691),o=n(6893);new(n(209).CharacterMap)("remap",null,{"-":"−","*":"∗","`":"‘"}),e.Other=function(t,e){var n=t.stack.env.font?{mathvariant:t.stack.env.font}:{},a=r.MapHandler.getMap("remap").lookup(e),s=(0,o.getRange)(e),l=(null==s?void 0:s[3])||"mo",T=t.create("token",l,n,a?a.char:e);(null==s?void 0:s[4])&&T.attributes.set("mathvariant",s[4]),"mo"===l&&(i.default.setProperty(T,"fixStretchy",!0),t.configuration.addNode("fixStretchy",T)),t.Push(T)}},7569:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ArrayConfiguration=void 0;var r=n(6441);n(5100),e.ArrayConfiguration=r.Configuration.create("array",{handler:{environment:["array-environment"]}})},5100:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(209),i=n(2960),o=n(6980),a=n(8117);new r.EnvironmentMap("array-environment",i.default.environment,{array:["AlignedArray"],gathered:["AmsEqnArray",null,null,null,"c",null,".5em","D"],aligned:["AmsEqnArray",null,null,null,"rlrlrlrlrlrl",function(t){for(var e=[],n=0,r=t.length;n<r;n++)e[n]=o.default.Em(t[n]);return e.join(" ")}([0,2,0,2,0,2,0,2,0,2,0]),".5em","D"]},a.default)},8117:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(8364),i=n(6980),o=r.default;o.AlignedArray=function(t,e){var n=e.getName(),o=t.GetBrackets("\\begin{"+n+"}"),a=r.default.Array(t,e);return a.hasOwnProperty("arraydef")?a.arraydef.name=n:a.arraydef={name:n},i.default.setArrayAlign(a,o)},o.AmsEqnArray=function(t,e,n,o,a,s,l){var T=e.getName(),Q=t.GetBrackets("\\begin{"+T+"}"),c=r.default.EqnArray(t,e,n,o,a,s,l);return c.hasOwnProperty("arraydef")?c.arraydef.name=T:c.arraydef={name:T},i.default.setArrayAlign(c,Q)},e.default=o},4977:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.IconConfiguration=e.IconMethods=void 0;var r=n(6441),i=n(209),o=n(8770),a=n(2287);e.IconMethods={},e.IconMethods.Icon=function(t,e){var n=t.GetArgument(e);if(n=n?n.trim():""){var r=(0,a.findIcon)(n,!0),i=r.icon,s=void 0===i?null:i,l=r.name,T=void 0===l?"":l,Q=r.color,c=void 0===Q?"":Q,u=r.isSquared,d=void 0!==u&&u;if(T){if(!s)throw new o.default("MultipleIconProperty",'The icon name "%1" can\'t be found.',n);if(d){var h=t.create("text",s.symbol),p=(m=t.create("node","mtext",[],{},h),{height:"+0.1em",depth:"+0.1em",lspace:"+0.1em",width:"+0.3em",style:c?"border: 1px solid ".concat(c,";"):"border: 1px solid;"});c&&(p.color=c),m=t.create("node","mpadded",[m],p),t.Push(m)}else{h=t.create("text",s.symbol),m=t.create("node","mtext",[],{},h),p={width:s.width?s.width:"+0.5ex"};c&&(p.color=c),m=t.create("node","mpadded",[m],p),t.Push(m)}}else{var m=t.create("node","mtext",[],{},"");t.Push(m)}}else{var m=t.create("node","mtext",[],{},"");t.Push(m)}},new i.CommandMap("icon",{icon:"Icon"},e.IconMethods),e.IconConfiguration=r.Configuration.create("icon",{handler:{macro:["icon"]}})},5810:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.MathJax=e.OuterHTML=void 0;var r=n(1635),i=n(4863),o=n(4347),a=n(5450),s=n(8155),l=n(4128),T=n(5707),Q=n(283),c=n(2599),u=n(8871),d=n(9921),h=new i.MathJaxConfigure,p=function(t){return(new o.SerializedMmlVisitor).visitTree(t)},m=function(t,e){return e=Object.assign(e,{aligned:!0}),new l.MathMLVisitorWord(e).visitTree(t)},f=function(t,e){var n=new s.SerializedAsciiVisitor(e).visitTree(t);return{ascii:(null==n?void 0:n.ascii)?n.ascii.trim():n.ascii,linear:n.linear,ascii_tsv:(null==n?void 0:n.ascii_tsv)?n.ascii_tsv.trim():n.ascii_tsv,ascii_csv:(null==n?void 0:n.ascii_csv)?n.ascii_csv.trim():n.ascii_csv,ascii_md:(null==n?void 0:n.ascii_md)?n.ascii_md.trim():n.ascii_md}},y=function(t,n,r,i){if(void 0===i&&(i=!1),!(null==r?void 0:r.sre)&&!(null==r?void 0:r.assistiveMml))return{};if(function(t,e){t.setAttribute(e,"role","math"),t.setAttribute(e,"tabindex","0");var n=t.firstChild(e);n&&t.setAttribute(n,"aria-hidden","true")}(t,n),r.sre){var o=function(t,e,n){var r=t.lastChild(e),i=t.innerHTML(r),o=(0,T.getSpeech)(n,i);return t.setAttribute(e,"aria-label",o),t.removeAttribute(r,"aria-hidden"),o}(t,n,r.sre);return i&&o?{speech:o}:{}}return r.assistiveMml&&function(t,n){var r=t.lastChild(n),i=t.getAttribute(r,"id");i||(i=e.MathJax.nextAssistiveId(),t.setAttribute(r,"id",i)),t.setAttribute(n,"aria-labelledby",i),t.removeAttribute(r,"aria-hidden")}(t,n),{}},g=function(t,e,n,r,i){var o=i.include_latex,a=void 0!==o&&o,s=i.include_svg,l=void 0===s||s,T={};return r&&(T.error=r.message),a&&(T.latex=n),l&&e&&(T.svg=t.outerHTML(e)),T};e.OuterHTML=function(t,e,n){void 0===n&&(n=!1);var r=e.include_mathml,i=void 0!==r&&r,o=e.include_mathml_word,a=void 0!==o&&o,s=e.include_asciimath,l=void 0!==s&&s,T=e.include_linearmath,c=void 0!==T&&T,u=e.include_latex,d=void 0!==u&&u,h=e.include_svg,p=void 0===h||h,m=e.include_error,f=void 0!==m&&m,y=e.include_speech,g=void 0!==y&&y,L="";return i&&t.mathml&&(L+=n?"<mathml>"+(0,Q.formatSourceMML)(t.mathml)+"</mathml>":'<mathml style="display: none;">'+(0,Q.formatSourceMML)(t.mathml)+"</mathml>"),a&&t.mathml_word&&(L+='<mathmlword style="display: none;">'+t.mathml_word+"</mathmlword>"),l&&t.asciimath&&(L||(L+="\n"),L+='<asciimath style="display: none;">'+(0,Q.formatSource)(t.asciimath)+"</asciimath>"),c&&t.linearmath&&(L||(L+="\n"),L+='<linearmath style="display: none;">'+(0,Q.formatSource)(t.linearmath)+"</linearmath>"),d&&t.latex&&(L||(L+="\n"),L+='<latex style="display: none;">'+(0,Q.formatSource)(t.latex)+"</latex>"),g&&t.speech&&(L||(L+="\n"),L+='<speech style="display: none;">'+(0,Q.formatSource)(t.speech)+"</speech>"),f&&t.error&&(L||(L+="\n"),L+='<error style="display: none;">'+(0,Q.formatSource)(t.error)+"</error>"),p&&t.svg&&(L||(L+="\n"),L+=t.svg),L};var L=function(t,n,r){switch(void 0===r&&(r=!1),null==n?void 0:n.output_format){case"latex":return"";case"mathml":return t.mathml?(0,Q.formatSourceMML)(t.mathml):"";default:return(0,e.OuterHTML)(t,n,r)}};e.MathJax={assistiveMml:!0,nonumbers:!1,_a11y:{renderKey:(0,d.uid)(),counter:0},beginRender:function(t){this._a11y.renderKey=t||(0,d.uid)(),this._a11y.counter=0},nextAssistiveId:function(t){return void 0===t&&(t="mjx-mml-"),this._a11y.counter+=1,"".concat(t).concat(this._a11y.renderKey,"-").concat(this._a11y.counter)},checkAccessibility:function(t,e){return void 0===t&&(t=null),void 0===e&&(e=!1),this.assistiveMml||null===t?this.assistiveMml&&null===t?(this.assistiveMml=!1,this.nonumbers=e,void h.changeHandler(!1,e)):void(this.nonumbers!==e&&(this.nonumbers=e,h.changeHandler(this.assistiveMml,e))):(this.assistiveMml=!0,this.nonumbers=e,void h.changeHandler(!0,e))},Stylesheet:function(){return i.svg.styleSheet(h.mDocTeX)},TexConvert:function(t,e,n){var i,o,s,l,T,Q;void 0===e&&(e={}),void 0===n&&(n=!1);var d=e.display,L=void 0===d||d,b=e.metric,v=void 0===b?{}:b,x=e.outMath,_=void 0===x?{}:x,H=e.mathJax,w=void 0===H?{}:H,O=e.forDocx,M=void 0===O?{}:O,S=e.accessibility,E=void 0===S?null:S,A=e.nonumbers,C=void 0!==A&&A,V=v.em,N=void 0===V?16:V,I=v.ex,P=void 0===I?8:I,R=v.cwidth,k=void 0===R?1200:R,D=v.lwidth,B=void 0===D?1e5:D,j=v.scale,F=void 0===j?1:j,G=w.mtextInheritFont,q=void 0!==G&&G;this.checkAccessibility(E,C),h.mDocTeX.outputJax.options.mtextInheritFont=q;try{var U=(null===(o=null===(i=null==e?void 0:e.outMath)||void 0===i?void 0:i.optionAscii)||void 0===o?void 0:o.tableToTsv)||(null===(l=null===(s=null==e?void 0:e.outMath)||void 0===s?void 0:s.optionAscii)||void 0===l?void 0:l.tableToCsv)||(null===(Q=null===(T=null==e?void 0:e.outMath)||void 0===T?void 0:T.optionAscii)||void 0===Q?void 0:Q.tableToMd)?h.docTeXTSV.convert(t,{display:L,em:N,ex:P,containerWidth:k,lineWidth:B,scale:F}):h.mDocTeX.convert(t,{display:L,em:N,ex:P,containerWidth:k,lineWidth:B,scale:F}),Z=h.mDocTeX.outputJax;return function(t,e,n,i,o,s){var l,T;void 0===o&&(o=!1);var Q=i.include_mathml,c=void 0!==Q&&Q,d=i.include_mathml_word,h=void 0!==d&&d,g=i.include_asciimath,L=void 0!==g&&g,b=i.include_latex,v=void 0!==b&&b,x=i.include_linearmath,_=void 0!==x&&x,H=i.include_svg,w=void 0===H||H,O=i.include_speech,M=void 0!==O&&O,S=i.optionAscii,E=void 0===S?{showStyle:!1,extraBrackets:!0}:S,A=i.output_format,C=void 0===A?"svg":A,V={},N=y(t,e,s,M);if(N.speech&&(V.speech=N.speech),(c||"mathml"===C)&&(V.mathml=p(n.root)),h&&(V.mathml_word=m(n.root,{forDocx:o})),L||(null==E?void 0:E.tableToCsv)||(null==E?void 0:E.tableToTsv)||(null==E?void 0:E.tableToMd)||_){var I=f(n.root,E);(L||(null==E?void 0:E.tableToCsv)||(null==E?void 0:E.tableToTsv)||(null==E?void 0:E.tableToMd))&&(V.asciimath=I.ascii,V.asciimath_tsv=I.ascii_tsv,V.asciimath_csv=I.ascii_csv,V.asciimath_md=I.ascii_md),_&&(V.linearmath=I.linear)}if(v&&(V.latex=n.math?n.math:n.inputJax.processStrings?"":n.start.node.outerHTML),w&&(V.svg=t.outerHTML(e),e)){var P=e instanceof a.LiteElement||e instanceof HTMLElement?(0,u.getMathDimensions)(e):null;P&&(V.width=P.containerWidth,V.widthEx=P.widthEx,V.heightEx=P.heightEx,V.height=P.viewBoxHeight,V.heightAndDepth=P.viewBoxHeightAndDepth)}return V.labels=(null===(T=null===(l=n.inputJax.parseOptions)||void 0===l?void 0:l.tags)||void 0===T?void 0:T.labels)?r.__assign({},n.inputJax.parseOptions.tags.labels):null,V}(h.adaptor,U,Z.math,_,M,E)}catch(e){if(n)throw e;if((0,c.formatMathJaxError)(e,t,"TexConvert"),_&&_.include_svg){U=h.docTeX.convert(t,{display:L,em:N,ex:P,containerWidth:k,lineWidth:B,scale:F});return g(h.adaptor,U,t,e,_)}return g(h.adaptor,null,t,e,_)}},TexConvertToAscii:function(t,e){void 0===e&&(e={});var n=e.display,r=void 0===n||n,i=e.metric,o=void 0===i?{}:i,a=e.outMath,s=void 0===a?{}:a,l=e.accessibility,T=void 0===l?null:l,Q=o.em,c=void 0===Q?16:Q,u=o.ex,d=void 0===u?8:u,p=o.cwidth,m=void 0===p?1200:p,y=o.lwidth,g=void 0===y?1e5:y,L=o.scale,b=void 0===L?1:L;this.checkAccessibility(T),h.docTeX.convert(t,{display:r,em:c,ex:d,containerWidth:m,lineWidth:g,scale:b});var v=h.docTeX.outputJax,x=s.optionAscii,_=void 0===x?{showStyle:!1,extraBrackets:!0}:x;return f(v.math.root,_).ascii},Typeset:function(t,e,n){void 0===e&&(e={}),void 0===n&&(n=!1);var i=this.TexConvert(t,e,n);return{html:L(i,e.outMath,e.forPptx),labels:i.labels,ascii:i.asciimath,linear:i.linearmath,ascii_tsv:null==i?void 0:i.asciimath_tsv,ascii_csv:null==i?void 0:i.asciimath_csv,ascii_md:null==i?void 0:i.asciimath_md,data:r.__assign({},i)}},TypesetSvgAndAscii:function(t,e){void 0===e&&(e={});var n=e.outMath,i=void 0===n?{}:n,o=i.include_asciimath,a=void 0!==o&&o;e.outMath.include_asciimath=!0;var s=this.TexConvert(t,e);return e.outMath.include_asciimath=a,{html:L(s,i),ascii:s.asciimath,linear:s.linearmath,labels:s.labels,ascii_tsv:null==s?void 0:s.asciimath_tsv,ascii_csv:null==s?void 0:s.asciimath_csv,ascii_md:null==s?void 0:s.asciimath_md,data:r.__assign({},s)}},TypesetMathML:function(t,n){void 0===n&&(n={});var i=n.display,o=void 0===i||i,s=n.metric,l=void 0===s?{}:s,T=n.outMath,c=void 0===T?{}:T,d=n.forDocx,g=void 0===d?{}:d,L=n.accessibility,b=void 0===L?null:L,v=l.em,x=void 0===v?16:v,_=l.ex,H=void 0===_?8:_,w=l.cwidth,O=void 0===w?1200:w,M=l.lwidth,S=void 0===M?1e5:M,E=l.scale,A=void 0===E?1:E;this.checkAccessibility(b);var C=h.docMathML.convert(t,{display:o,em:x,ex:H,containerWidth:O,lineWidth:S,scale:A}),V=h.docMathML.outputJax,N=function(t,e,n,r,i,o){void 0===i&&(i=!1);var s=r.include_mathml,l=void 0!==s&&s,T=r.include_mathml_word,Q=void 0!==T&&T,c=r.include_asciimath,d=void 0!==c&&c,h=r.include_svg,g=void 0===h||h,L=r.include_speech,b=void 0!==L&&L,v=r.include_linearmath,x=void 0!==v&&v,_=r.optionAscii,H=void 0===_?{showStyle:!1,extraBrackets:!0}:_,w=r.output_format,O=void 0===w?"svg":w,M={},S=y(t,e,o,b);if(S.speech&&(M.speech=S.speech),(l||"mathml"===O)&&(M.mathml=p(n.root)),Q&&(M.mathml_word=m(n.root,{forDocx:i})),d||x){var E=f(n.root,H);d&&(M.asciimath=E.ascii),x&&(M.linearmath=E.linear)}if(g&&(M.svg=t.outerHTML(e),e)){var A=e instanceof a.LiteElement||e instanceof HTMLElement?(0,u.getMathDimensions)(e):null;A&&(M.width=A.containerWidth,M.widthEx=A.widthEx,M.heightEx=A.heightEx,M.height=A.viewBoxHeight,M.heightAndDepth=A.viewBoxHeightAndDepth)}return M}(h.adaptor,C,V.math,c,g,b);return{html:"mathml"===(null==c?void 0:c.output_format)?(0,Q.formatSourceMML)(N.mathml):(0,e.OuterHTML)(N,n.outMath),data:r.__assign({},N)}},AsciiMathToSvg:function(t,n){void 0===n&&(n={});var r=n.display,i=void 0===r||r,o=n.metric,a=void 0===o?{}:o,s=n.outMath,l=void 0===s?{}:s,T=n.forDocx,c=void 0===T?{}:T,u=n.accessibility,d=void 0===u?null:u,f=a.em,g=void 0===f?16:f,L=a.ex,b=void 0===L?8:L,v=a.cwidth,x=void 0===v?1200:v,_=a.lwidth,H=void 0===_?1e5:_,w=a.scale,O=void 0===w?1:w;this.checkAccessibility(d);var M=h.docAsciiMath.convert(t,{display:i,em:g,ex:b,containerWidth:x,lineWidth:H,scale:O}),S=h.docAsciiMath.outputJax,E=function(t,e,n,r,i,o){void 0===i&&(i=!1);var a=r.include_mathml,s=void 0!==a&&a,l=r.include_mathml_word,T=void 0!==l&&l,Q=r.include_asciimath,c=void 0!==Q&&Q,u=r.include_svg,d=void 0===u||u,h=r.include_speech,f=void 0!==h&&h,g=r.output_format,L=void 0===g?"svg":g,b={},v=y(t,e,o,f);return v.speech&&(b.speech=v.speech),(s||"mathml"===L)&&(b.mathml=p(n.root)),T&&(b.mathml_word=m(n.root,{forDocx:i})),c&&(b.asciimath=n.math?n.math:n.inputJax.processStrings?"":n.start.node.outerHTML),d&&(b.svg=t.outerHTML(e)),b}(h.adaptor,M,S.math,l,c,d);return"mathml"===(null==l?void 0:l.output_format)?(0,Q.formatSourceMML)(E.mathml):(0,e.OuterHTML)(E,n.outMath)},Reset:function(t){void 0===t&&(t=0),t?t--:t=0,h.mTex.parseOptions.tags.reset(t)},GetLastEquationNumber:function(){return h.mTex.parseOptions.tags.counter}}},2897:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default={TeX:{packages:["base","ams","boldsymbol","html","newcommand","unicode","color","mhchem","enclose","extpfeil","empheq","cases","cancel","fix-unicode","icon"],tagSide:"right",tagIndent:"0.8em",multlineWidth:"100%",useLabelIds:!0,tags:"ams",inlineMath:[["$","$"],["\\(","\\)"]],displayMath:[["$$","$$"],["\\[","\\]"]],processEscapes:!0,processEnvironments:!0,processRefs:!0,maxMacros:1e4,maxBuffer:15360},asciimath:{delimiters:[["<ascii>","</ascii>"],["`","`"]]},MathML:{parseAs:"html",forceReparse:!0},HTML:{scale:1,mathmlSpacing:!1,exFactor:.5},SVG:{fontCache:"none"},CHTML:null}},4863:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.MathJaxConfigure=e.asciimath=e.svg=e.mml=void 0;var r=n(1635),i=n(1039),o=n(4928),a=n(7782),s=n(3710),l=n(4016),T=n(8244),Q=n(353),c=n(9400),u=n(984);n(1909),n(7569),n(4977);var d=n(4855),h=n(6441),p=n(5083);h.Configuration.create("fix-unicode",{fallback:{character:p.Other}});var m=n(2897);n(2985);var f=n(1252);f.BaseConfiguration.handler.macro.push("wasysym-mathchar0mo"),f.BaseConfiguration.handler.macro.push("wasysym-macros");var y=a.AbstractTags.prototype.startEquation;a.AbstractTags.prototype.startEquation=function(t){this.history=[],this.stack=[],this.clearTag(),this.currentTag=new a.TagInfo("",void 0,void 0),y.call(this,t)};var g=Object.assign({},m.default.TeX||{}),L=Object.assign({},g,{packages:[].concat(g.packages,["array"])}),b=Object.assign({},m.default.MathML||{}),v=Object.assign({},m.default.SVG||{}),x=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r.__extends(e,t),e.prototype.formatError=function(t){throw Error("TeX error: "+t.message)},e}(o.TeX);e.mml=new s.MathML(b),e.svg=new l.SVG(v),e.asciimath=new T.AsciiMath({});var _=function(){var t=this;this.chooseAdaptor=function(){try{document,document.getElementsByTagName("div").length>0?(t.adaptor=(0,c.browserAdaptor)(),t.domNode=document):(t.adaptor=(0,u.liteAdaptor)(),t.domNode="<html></html>")}catch(e){t.adaptor=(0,u.liteAdaptor)(),t.domNode="<html></html>"}},this.initTex=function(e){void 0===e&&(e=!1),e?(t.mTex=new x(Object.assign({},g,{tags:"none"})),t.tex=new o.TeX(Object.assign({},g,{tags:"none"})),t.texTSV=new o.TeX(Object.assign({},L,{tags:"none"}))):(t.mTex=new x(g),t.tex=new o.TeX(g),t.texTSV=new o.TeX(L))},this.setHandler=function(n,r){void 0===n&&(n=!1),void 0===r&&(r=!1),t.initTex(r),t.handler=(0,Q.RegisterHTMLHandler)(t.adaptor),n&&(0,d.AssistiveMmlHandler)(t.handler),t.docTeX=i.mathjax.document(t.domNode,{InputJax:t.tex,OutputJax:e.svg}),t.docTeXTSV=i.mathjax.document(t.domNode,{InputJax:t.texTSV,OutputJax:e.svg}),t.mDocTeX=i.mathjax.document(t.domNode,{InputJax:t.mTex,OutputJax:e.svg}),t.docMathML=i.mathjax.document(t.domNode,{InputJax:e.mml,OutputJax:e.svg}),t.docAsciiMath=i.mathjax.document(t.domNode,{InputJax:e.asciimath,OutputJax:e.svg})},this.changeHandler=function(e,n){void 0===e&&(e=!1),void 0===n&&(n=!1),t.handler&&i.mathjax.handlers.unregister(t.handler),t.setHandler(e,n)},this.initTex(),this.chooseAdaptor(),this.setHandler(!0)};e.MathJaxConfigure=_},4128:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.MathMLVisitorWord=void 0;var r=n(1635),i=function(t){function e(e){var n=t.call(this)||this;return n.options=null,n.isSubTable=function(t){for(var e=!1;t.Parent;){if("mtable"===t.Parent.kind){e=!0;break}t=t.Parent}return e},n.needToAddRow=function(t){if(t.parent&&t.parent.childNodes.length>0){var e=t.parent.childNodes.findIndex((function(e){return e===t}));if(e<t.parent.childNodes.length){var n=t.parent.childNodes[e+1];n&&n.kind&&(n.needRow=!0)}}},n.needConvertToFenced=function(t){var e=t.kind,n=t.properties;return"mrow"===e&&n&&7===n.texClass},n.pasteNodeToNewRow=function(t,e){var i=r.__read(t.isToken||0===t.childNodes.length?["\n",""]:["\n",e],2),o=i[0],a=i[1];return t.needRow=!1,e+"<mrow>"+a+o+n.visitNode(t,e+" ")+a+o+e+"</mrow>"+a},n.convertToFenced=function(t,e){var i=r.__read(t.isToken||0===t.childNodes.length?["\n",""]:["\n",e],2),o=i[0],a=i[1];if(t.needRow)return n.pasteNodeToNewRow(t,e);var s=t.kind,l=t.properties,T=e+"<mfenced";n.options.forDocx?(T+=l.open?' open="'.concat(l.open,'" branch_open="').concat(l.open,'"'):' open="" branch_open=""',T+=l.close?' close="'.concat(l.close,'" branch_close="').concat(l.close,'"'):' close="" branch_close=""'):(T+=l.open?' open="'.concat(l.open,'"'):' open=""',T+=l.close?' close="'.concat(l.close,'"'):' close=""'),T+=' separators="|"',T+=">",T+=o+e+" <"+s+">";for(var Q=0;Q<t.childNodes.length;Q++){if(0!==Q||"mo"!==t.childNodes[Q].kind||4!==t.childNodes[Q].texClass)if(Q!==t.childNodes.length-1||"mo"!==t.childNodes[Q].kind||5!==t.childNodes[Q].texClass)T+=o+n.visitNode(t.childNodes[Q],e+" ")+a}return T+=o+e+" </"+s+">"+a,T+=o+e+"</mfenced>"},n.options=e,n}return r.__extends(e,t),e.prototype.visitTextNode=function(t,e){var n=this.options.unicodeConvert,r=void 0!==n&&n;return this.quoteHTML(t.getText(),r)},e.prototype.restructureMtrForAligned=function(t,e){var n=r.__read(t.isToken||0===t.childNodes.length?["\n",""]:["\n",e],1)[0],i="",o=(t.Parent&&t.Parent.attributes?t.Parent.attributes.getAllAttributes():{}).columnalign,a=void 0===o?"":o;if(!a)return i;if(a.indexOf("center")>=0)return i;var s=e+" ",l=s+" ",T=l+" ",Q=T+" ";if(a.includes("right left")){if(i+=e+"<mtr>",t.childNodes.length>1){i+=n+s+"<mtd>",i+=n+l+"<mrow>";for(var c=0;c<t.childNodes.length;c++){i+=n+T+"<mrow>",i+=n+Q+"<maligngroup/>",i+=(u=this.childNodeMml(t.childNodes[c],Q,n)).trim()?n+u:n,i+=T+"</mrow>"}i+=n+l+"</mrow>",i+=n+s+"</mtd>"}else i+=n+s+"<mtd>",i+=n+l+"<mrow>",i+=n+Q+"<maligngroup/>",i+=n+this.childNodeMml(t.childNodes[0],Q,n),i+=l+"</mrow>",i+=n+s+"</mtd>";return i+=n+e+"</mtr>"}if(1===t.childNodes.length)return i=e+"<mtr>",i+=n+s+"<mtd>",i+=n+l+"<mrow>",i+=n+Q+"<maligngroup/>",i+=n+Q+"<malignmark/>",i+=n+this.childNodeMml(t.childNodes[0],Q,n),i+=l+"</mrow>",i+=n+s+"</mtd>",i+=n+e+"</mtr>";i=e+"<mtr>",i+=n+s+"<mtd>",i+=n+l+"<mrow>";for(c=0;c<t.childNodes.length;c++){var u;i+=n+T+"<maligngroup/>",i+=n+T+"<malignmark/>",i+=n+T+"<mrow>",i+=(u=this.childNodeMml(t.childNodes[c],Q,n)).trim()?n+u:n,c<t.childNodes.length-1&&(i+=Q+"<mo>"+String.fromCharCode(8197)+String.fromCharCode(8197)+String.fromCharCode(8197)+String.fromCharCode(8197)+"</mo>"+n),i+=T+"</mrow>"}return i+=n+l+"</mrow>",i+=n+s+"</mtd>",i+=n+e+"</mtr>"},e.prototype.visitDefault=function(e,n){var r,i,o,a;if(e.needRow)return this.pasteNodeToNewRow(e,n);if("msubsup"===e.kind||"msub"===e.kind||"sup"===e.kind)return this.visitMunderoverNode(e,n);if(!this.options.forDocx&&"mtr"===e.kind&&this.options.aligned&&e.Parent&&"mtable"===e.Parent.kind&&(e.Parent.Parent&&"math"===e.Parent.Parent.kind||!this.isSubTable(e.Parent))){var s=this.restructureMtrForAligned(e,n);if(s)return s}if(this.needConvertToFenced(e))return this.convertToFenced(e,n);if("mo"===e.kind&&"mover"===(null===(r=e.Parent)||void 0===r?void 0:r.kind)&&(null===(o=null===(i=e.attributes)||void 0===i?void 0:i.attributes)||void 0===o?void 0:o.stretchy)){var l="text"===(null===(a=e.childNodes[0])||void 0===a?void 0:a.kind)&&e.childNodes[0].text;if("―"===l)return n+"<mo>"+(l="¯")+"</mo>"}return this.options.forDocx&&"mo"===e.kind&&e.properties&&e.properties.hasOwnProperty("movablelimits")&&!0===e.properties.movesupsub&&!0===e.properties.texprimestyle&&1===e.properties.texClass&&!1===e.properties.movablelimits&&(e.attributes.attributes?e.attributes.attributes.movablelimits=!1:e.attributes.attributes={movablelimits:!1}),t.prototype.visitDefault.call(this,e,n)},e.prototype.visitMunderoverNode=function(e,n){var i,o,a;if("munder"===e.kind||"mover"===e.kind){var s=!0,l=e.over<=(null===(i=e.childNodes)||void 0===i?void 0:i.length)?e.childNodes[e.over]:null;if("mo"===(null==l?void 0:l.kind)){var T=l.childNodes[0];!(null===(a=null===(o=l.attributes)||void 0===o?void 0:o.attributes)||void 0===a?void 0:a.stretchy)||"―"!==T.text&&"¯"!==T.text||(s=!1)}s&&(e.attributes.attributes.accent=!0),e.attributes.attributes.accentunder=!1}var Q=e.childNodes[e.base];"msup"!==e.kind&&"msub"!==e.kind&&Q&&"TeXAtom"!==Q.kind&&("mrow"!==Q.kind||this.needConvertToFenced(Q))&&(Q.needRow=!0);var c=r.__read(e.isToken||0===e.childNodes.length?["\n",""]:["\n",n],1)[0],u=n+" ",d=t.prototype.visitDefault.call(this,e,n);return"mo"===Q.kind&&1===Q.properties.texClass&&(d+=c+n+"<mrow>",d+=c+u+"<mo>"+String.fromCharCode(8202)+"</mo>",d+=c+n+"</mrow>"),d},e.prototype.visitMunderNode=function(t,e){var n,r=t.childNodes[1]?t.childNodes[1]:null;if(r&&"mo"===r.kind&&1===(null===(n=r.childNodes)||void 0===n?void 0:n.length)&&"text"===r.childNodes[0].kind){var i=r.childNodes[0];"―"===i.text&&(i.text="_")}return this.visitMunderoverNode(t,e)},e.prototype.visitMoverNode=function(t,e){return this.visitMunderoverNode(t,e)},e.prototype.quoteHTML=function(t,e){void 0===e&&(e=!1);var n=t.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\"/g,"&quot;");return e&&(n=n.replace(/([\uD800-\uDBFF].)/g,(function(t,e){return"&#x"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536).toString(16).toUpperCase()+";"})).replace(/([\u0080-\uD7FF\uE000-\uFFFF])/g,(function(t,e){return"&#x"+e.charCodeAt(0).toString(16).toUpperCase()+";"}))),n},e}(n(4347).SerializedMmlVisitor);e.MathMLVisitorWord=i},2985:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});var r=n(209),i=n(2960),o=n(8364);new r.CharacterMap("wasysym-mathchar0mo",i.default.mathchar0mo,{varangle:"∢",Perp:"⫫"}),new r.CommandMap("wasysym-macros",{Vmathcal:["Macro","{\\cal #1}",1],Varangle:["Macro","{\\mathop{{<\\!\\!\\!\\!\\!\\small)}\\:}\\nolimits}"],longdiv:["Macro","\\enclose{longdiv}{#1}",1],lcm:["Macro","\\enclose{bottom}{\\smash{)}{#1}\\:}",1],oint:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x222E}\\,}{\\unicode{x222E}}{\\unicode{x222E}}{\\unicode{x222E}}}\\,}\\nolimits}"],oiint:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x222F}\\,}{\\unicode{x222F}}{\\unicode{x222F}}{\\unicode{x222F}}}\\,}\\nolimits}"],oiiint:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x2230}\\,}{\\unicode{x2230}}{\\unicode{x2230}}{\\unicode{x2230}}}\\,}\\nolimits}"],ointclockwise:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x2232}\\,}{\\unicode{x2232}}{\\unicode{x2232}}{\\unicode{x2232}}}\\,}\\nolimits}"],ointctrclockwise:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x2233}\\,}{\\unicode{x2233}}{\\unicode{x2233}}{\\unicode{x2233}}}\\,}\\nolimits}"],llbracket:["Macro","{[\\![}"],rrbracket:["Macro","{]\\!]}"],hhline:["Macro","\\hline \\hline"],AA:["Macro","{\\unicode{x212B}}"],pounds:["Macro","{\\it\\unicode{xA3}}"],highlight:["Macro","\\mathchoice%{\\colorbox{#1}{$\\displaystyle{#2}$}}%{\\colorbox{#1}{$\\textstyle{#2}$}}%{\\colorbox{#1}{$\\scriptstyle{#2}$}}%{\\colorbox{#1}{$\\scriptscriptstyle{#2}$}}",2]},o.default)},3702:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.hasOnlyOneMoNode=e.getFunctionNameFromAscii=e.AddToAsciiData=e.initAsciiData=void 0;e.initAsciiData=function(){return{ascii:"",linear:"",ascii_tsv:"",ascii_csv:"",ascii_md:""}};e.AddToAsciiData=function(t,e){return t.ascii+=e.ascii,t.linear+=e.hasOwnProperty("linear")?e.linear:e.ascii,t.ascii_tsv+=e.hasOwnProperty("ascii_tsv")?e.ascii_tsv:e.ascii,t.ascii_csv+=e.hasOwnProperty("ascii_csv")?e.ascii_csv:e.ascii,t.ascii_md+=e.hasOwnProperty("ascii_md")?e.ascii_md:e.ascii,t};e.getFunctionNameFromAscii=function(t,e){var n;if(!(null==t?void 0:t.trim()))return"";t=t.trim();var r="";switch(e.kind){case"mi":r=t;break;case"msub":case"msubsup":r=t.match(/^.*?(?=_)/)[0].trim();break;case"msup":r=(null===(n=t.trim())||void 0===n?void 0:n.match(/^.*?(?=\^)/))[0].trim()}return r};e.hasOnlyOneMoNode=function(t){var n,r,i;return"mo"===(null==t?void 0:t.kind)?1===(null===(n=t.childNodes)||void 0===n?void 0:n.length):("inferredMrow"===t.kind&&1===(null===(r=null==t?void 0:t.childNodes)||void 0===r?void 0:r.length)||"TeXAtom"===t.kind&&1===(null===(i=null==t?void 0:t.childNodes)||void 0===i?void 0:i.length))&&(0,e.hasOnlyOneMoNode)(t.childNodes[0])}},8446:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.handle=e.getAttributes=e.FindSymbolToAM=e.FindSymbolReplace=e.SymbolToAM=e.getSymbolType=e.needFirstSpace=e.needLastSpaceAfterTeXAtom=e.needFirstSpaceBeforeTeXAtom=void 0;var r=n(1635),i=n(747),o=n(3768),a=n(9196),s=n(3702),l=n(18),T=n(8311),Q=/^\w/;e.needFirstSpaceBeforeTeXAtom=function(t){var e;if((0,T.isFirstChild)(t))return!1;if("TeXAtom"===t.kind&&(null===(e=t.properties)||void 0===e?void 0:e.texClass)===i.TEXCLASS.OP){var n=t.parent.childNodes.findIndex((function(e){return e===t}));return"mi"===t.parent.childNodes[n-1].kind}return!1};e.needLastSpaceAfterTeXAtom=function(t){var e;if((0,T.isLastChild)(t))return!1;if("TeXAtom"===t.kind&&(null===(e=t.properties)||void 0===e?void 0:e.texClass)===i.TEXCLASS.OP){var n=t.parent.childNodes.findIndex((function(e){return e===t})),r=t.parent.childNodes[n+1];return"mi"===r.kind||"msub"===r.kind}return!1};e.needFirstSpace=function(t,e){void 0===e&&(e=!1);try{if((0,T.isFirstChild)(t))return!1;var n=t.parent.childNodes.findIndex((function(e){return e===t})),r=t.parent.childNodes[n-1];if(r.attributes.get("hasLastSpace"))return!1;if("mi"===r.kind||"mo"===r.kind&&!e){var i=r.childNodes[0]?r.childNodes[0].text:"";return Q.test(i[0])}return!1}catch(t){return!1}};var c=function(t,n,r){var o;void 0===n&&(n=!1),void 0===r&&(r=!1);var a=!1;try{if("msubsup"===t.parent.kind)return!1;if((0,T.isLastChild)(t))return!1;var s=t.parent.childNodes.findIndex((function(e){return e===t})),l=t.parent.childNodes[s+1];if("text"!==l.childNodes[0].kind||"⁡"!==l.childNodes[0].text||(0,T.isLastChild)(l)||(l=t.parent.childNodes[s+2],a=!0),"TeXAtom"===l.kind&&(null===(o=l.properties)||void 0===o?void 0:o.texClass)===i.TEXCLASS.OP)return!0;if(n&&"mfrac"===l.kind)return!1;if("mi"===l.kind||"mo"===l.kind){var c=l.childNodes[0]?l.childNodes[0].text:"";if(l.childNodes[0]&&"text"===l.childNodes[0].kind&&"⁡"===l.childNodes[0].text)return!0;var u=(0,e.SymbolToAM)(l.kind,c);return r?Q.test(u.linear):Q.test(u.ascii)}return"mrow"!==l.kind&&a}catch(t){return a}};e.getSymbolType=function(t,e){var n=o.AMsymbols.find((function(n){return n.tag===t&&n.output===e}));return n?n.symbolType:""};e.SymbolToAM=function(t,e,n,i){var a,s;void 0===n&&(n=null),void 0===i&&(i=!1);var l=null,T=n?Object.getOwnPropertyNames(n):[];if(e="mtext"!==t?e.split(" ").join(""):e,i&&n&&T.length>0){var Q=function(t,e){if(l=o.AMsymbols.find((function(n){return"mstyle"===n.tag&&n.atname===t&&n.atval===e})))return"break"};try{for(var c=r.__values(Object.entries(n)),u=c.next();!u.done;u=c.next()){var d=r.__read(u.value,2);if("break"===Q(d[0],d[1]))break}}catch(t){a={error:t}}finally{try{u&&!u.done&&(s=c.return)&&s.call(c)}finally{if(a)throw a.error}}if(l&&l.input)return{ascii:l.input+"("+e+")",linear:l.output+"("+e+")"}}if(l||(l=(0,o.findAmSymbolByTag)(t,e)),!l&&n&&T.length>0&&Object.getOwnPropertyNames(n)&&!1===n.stretchy){for(var h=e.split(""),p="",m="",f=0;f<h.length;f++){var y=(0,o.findAmSymbolByTag)(t,h[f]);p+=f>0?" ":"",m+=f>0?" ":"",p+=y&&y.input?y.input:h[f],m+=y&&y.output?y.output_linear?y.output_linear:y.output:h[f]}return{ascii:p,linear:m?m.split(" ").join(""):""}}return{ascii:l?l.input:e,linear:l?l.output_linear?l.output_linear:l.output:e}};e.FindSymbolReplace=function(t){return t.replace(/\u00A0/g," ")};e.FindSymbolToAM=function(t,e,n){void 0===n&&(n=null),e=e.split(" ").join("");var r=null;return n&&n.stretchy&&(r=(0,o.findAmSymbolByTagStretchy)(t,e)),r||(r=(0,o.findAmSymbolByTag)(t,e)),{ascii:r?r.input:"",linear:r?r.output_linear?r.output_linear:r.output:e}};var u=function(t){var e="";try{return t.childNodes.forEach((function(t){e+=t.text})),e}catch(t){return e}},d=function(t,e){return f.handleAll(t,e)};e.getAttributes=function(t){return t.attributes.getAllAttributes()};var h=function(t){return 1===t.childNodes.length&&(t.childNodes[0].isKind("inferredMrow")||t.childNodes[0].isKind("TeXAtom"))&&(t=h(t.childNodes[0])),t},p=function(t,n,r){for(var i,a=h(n),s={collChildrenCanBeVerticalMath:!0,startedFromMathOperation:!1,mmlCollVerticalMath:"",mmlCollVerticalMath_linear:"",mathOperation:""},T=!1,Q=0;Q<a.childNodes.length;Q++){T&&(s.mmlCollVerticalMath_linear+=")",T=!1);var c=a.childNodes[Q];if(c.isKind("inferredMrow")||c.isKind("TeXAtom")){var d=p(t,c,r);d.collChildrenCanBeVerticalMath||(s.collChildrenCanBeVerticalMath=!1),d.startedFromMathOperation&&(s.startedFromMathOperation=!0),d.mathOperation&&(s.mathOperation=d.mathOperation),s.mmlCollVerticalMath+=d.mmlCollVerticalMath,s.mmlCollVerticalMath_linear+=d.mmlCollVerticalMath_linear}else{var m=t.visitNode(c,""),f=u(c);if("mfrac"===(null==c?void 0:c.kind)&&((null===(i=s.mmlCollVerticalMath_linear)||void 0===i?void 0:i.trim())&&(0,l.needsParensForFollowingDivision)(s.mmlCollVerticalMath_linear)||(0,l.needBrackets)(t,c))&&(s.mmlCollVerticalMath_linear+="(",T=!0),"mo"===c.kind){var y=(0,e.getSymbolType)("mo",f);y!==o.eSymbolType.logical&&y!==o.eSymbolType.relation&&y!==o.eSymbolType.arrow||(s.collChildrenCanBeVerticalMath=!1)}if(!c.isKind("mstyle")){if(0===Q&&"mo"===c.kind&&r>0){var g=u(c);"+"!==g&&"-"!==g&&"−"!==g&&"×"!==g&&"÷"!==g||(s.mathOperation=m.ascii,s.startedFromMathOperation=!0)}s.mmlCollVerticalMath+='","'===m.ascii?",":m.ascii,s.mmlCollVerticalMath_linear+='","'===m.linear?",":m.linear}}}return T&&(s.mmlCollVerticalMath_linear+=")"),s},m=function(){return function(t,n){var r=(0,s.initAsciiData)();try{var i=u(t);if(t.attributes.get("flattenSup")&&"∧"===i)return t.Parent.attributes.setInherited("ignoreBrackets",!0),r;if("⁡"===i)return r;var o=(0,e.getAttributes)(t),a=(0,e.SymbolToAM)(t.kind,i,o,n.options.showStyle);if(a.ascii&&a.ascii.length>1){r=(0,s.AddToAsciiData)(r,{ascii:Q.test(a.ascii[0])&&(0,e.needFirstSpace)(t)?" ":"",linear:Q.test(a.linear[0])&&(0,e.needFirstSpace)(t)?" ":""}),r=(0,s.AddToAsciiData)(r,{ascii:a.ascii,linear:a.linear||a.ascii});var l=c(t),T=Q.test(a.ascii[a.ascii.length-1])&&l,d=Q.test(a.linear[a.linear.length-1])&&l;t.attributes.setInherited("hasLastSpace",T),r=(0,s.AddToAsciiData)(r,{ascii:T?" ":"",linear:d?" ":""})}else"―"===a.ascii&&"munder"===t.Parent.kind&&(a.ascii="_"),r=","===a.ascii&&("mtd"===t.Parent.kind||"TeXAtom"===t.Parent.kind&&"mtd"===t.Parent.Parent.kind)?(0,s.AddToAsciiData)(r,{ascii:'"'+a.ascii+'"',linear:a.linear,ascii_tsv:"".concat(n.options.tableToTsv?a.ascii:'"'+a.ascii+'"'),ascii_csv:a.ascii,ascii_md:a.ascii}):(0,s.AddToAsciiData)(r,{ascii:a.ascii,linear:a.linear,ascii_tsv:'"'===a.ascii?"":a.ascii,ascii_csv:'"'===a.ascii?"":a.ascii,ascii_md:a.ascii});if(t.Parent&&"mpadded"===t.Parent.kind&&t.Parent.Parent&&"menclose"===t.Parent.Parent.kind){var h=(0,e.getAttributes)(t.Parent.Parent);if(h.notation&&-1!==h.notation.toString().indexOf("bottom"))return t.Parent.Parent.attributes.attributes.lcm=!0,(0,s.initAsciiData)()}return r}catch(t){return console.error("mml => mo =>",t),r}}};e.handle=function(t,e){var n=(y[t.kind]||d)(t,e);return t.currentData=n,n};var f={handle:e.handle,handleAll:function(t,e){var n,i,o=(0,s.initAsciiData)();try{try{for(var a=r.__values(t.childNodes),l=a.next();!l.done;l=a.next()){var T=l.value,Q=e.visitNode(T,"");o=(0,s.AddToAsciiData)(o,Q),T.currentData=o}}catch(t){n={error:t}}finally{try{l&&!l.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}return t.currentData=o,o}catch(t){return console.error("mml => handleAll =>",t),o}}},y={mi:function(t,n){var r=(0,s.initAsciiData)();try{if(!t.childNodes||0===t.childNodes.length)return r;var i=t.childNodes[0].text,a=n.options.showStyle?(0,e.getAttributes)(t):null,l=(0,e.SymbolToAM)(t.kind,i,a);if(l.ascii&&l.ascii.length>1&&Q.test(l.ascii[0])){var T=o.regExpIsFunction.test(l.ascii.trim());T&&t.Parent.attributes.setInherited("isFunction",T),r=(0,s.AddToAsciiData)(r,{ascii:(0,e.needFirstSpace)(t)?" ":"",linear:(0,e.needFirstSpace)(t,!0)?" ":""}),r=(0,s.AddToAsciiData)(r,{ascii:l.ascii,linear:l.linear||l.ascii});var u=c(t,T),d=c(t,T,!0);t.attributes.setInherited("hasLastSpace",u),r=(0,s.AddToAsciiData)(r,{ascii:u?" ":"",linear:d?" ":""})}else r=(0,s.AddToAsciiData)(r,{ascii:l.ascii,linear:l.linear||l.ascii});return r}catch(t){return console.error("mml => mi =>",t),r}},mo:m(),mn:m(),mfrac:function(t,e){var n,r,i,o,a=(0,s.initAsciiData)();try{var l=t.childNodes[0]?t.childNodes[0]:null,T=t.childNodes[1]?t.childNodes[1]:null,Q=l?e.visitNode(l,""):null,c=T?e.visitNode(T,""):null;return l&&"mrow"===l.kind&&l.childNodes.length>1||e.options.extraBrackets?(a=(0,s.AddToAsciiData)(a,{ascii:"(",linear:(null===(n=Q.linear)||void 0===n?void 0:n.length)>1?"(":""}),a=(0,s.AddToAsciiData)(a,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),a=(0,s.AddToAsciiData)(a,{ascii:")",linear:(null===(r=Q.linear)||void 0===r?void 0:r.length)>1?")":""})):a=(0,s.AddToAsciiData)(a,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),a=(0,s.AddToAsciiData)(a,{ascii:"/",linear:"/"}),T&&"mrow"===T.kind&&T.childNodes.length>1||e.options.extraBrackets?(a=(0,s.AddToAsciiData)(a,{ascii:"(",linear:(null===(i=c.linear)||void 0===i?void 0:i.length)>1?"(":""}),a=(0,s.AddToAsciiData)(a,{ascii:c?c.ascii:"",linear:c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),a=(0,s.AddToAsciiData)(a,{ascii:")",linear:(null===(o=c.linear)||void 0===o?void 0:o.length)>1?")":""})):a=(0,s.AddToAsciiData)(a,{ascii:c?c.ascii:"",linear:c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),a}catch(t){return console.error("mml => mfrac =>",t),a}},msup:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=(0,s.hasOnlyOneMoNode)(a);a.attributes.setInherited("flattenSup",T);var Q=o?e.visitNode(o,""):null,c=a?e.visitNode(a,""):null;i=(0,s.AddToAsciiData)(i,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""});var u=1===(null===(n=null==c?void 0:c.linear)||void 0===n?void 0:n.length)?(0,l.findAmSymbolsToLinear)(c.linear,"msup"):null,d=u?u.output:"";if(t.attributes.get("ignoreBrackets")&&!c.ascii)return i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:d||"^"});d||(d=(0,l.replaceScripts)(null==c?void 0:c.linear));var h=!d&&(null===(r=null==c?void 0:c.linear)||void 0===r?void 0:r.length)>1&&!(0,l.isWrappedWithParens)(c.linear);return i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:d||"^"}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?"(":"",linear:h?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:c?c.ascii:"",linear:!d&&c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?")":"",linear:h?")":""})}catch(t){return console.error("mml => msup =>",t),i}},msub:function(t,e){var n,r=(0,s.initAsciiData)();try{var i=t.childNodes[0]?t.childNodes[0]:null,o=t.childNodes[1]?t.childNodes[1]:null,a=i?e.visitNode(i,""):null,T=o?e.visitNode(o,""):null;r=(0,s.AddToAsciiData)(r,{ascii:a?a.ascii:"",linear:a?a.linear:"",ascii_tsv:a?a.ascii_tsv:"",ascii_csv:a?a.ascii_csv:"",ascii_md:a?a.ascii_md:""});var Q=(0,l.replaceScripts)(null==T?void 0:T.linear,"sub");r=(0,s.AddToAsciiData)(r,{ascii:"_",linear:Q||"_"});var c=!Q&&(null===(n=null==T?void 0:T.linear)||void 0===n?void 0:n.length)>1&&!(0,l.isWrappedWithParens)(T.linear);return r=(0,s.AddToAsciiData)(r,{ascii:e.options.extraBrackets?"(":"",linear:c?"(":""}),r=(0,s.AddToAsciiData)(r,{ascii:T?T.ascii:"",linear:!Q&&T?T.linear:"",ascii_tsv:T?T.ascii_tsv:"",ascii_csv:T?T.ascii_csv:"",ascii_md:T?T.ascii_md:""}),r=(0,s.AddToAsciiData)(r,{ascii:e.options.extraBrackets?")":"",linear:c?")":""})}catch(t){return console.error("mml => msub =>",t),r}},msubsup:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=t.childNodes[2]?t.childNodes[2]:null,Q=o?e.visitNode(o,""):null,c=a?e.visitNode(a,""):null,u=T?e.visitNode(T,""):null,d=(null==Q?void 0:Q.linear)&&(0,l.hasAnyWhitespace)(Q.linear);i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:Q?Q.ascii:"",linear:(null==Q?void 0:Q.linear)?(0,l.replaceUnicodeWhitespace)(Q.linear):"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?")":""});var h=(0,l.replaceScripts)(null==c?void 0:c.linear,"sub");return i=(0,s.AddToAsciiData)(i,{ascii:"_",linear:h||"_"}),d=!h&&(null===(n=null==c?void 0:c.linear)||void 0===n?void 0:n.length)>1&&!(0,l.isWrappedWithParens)(c.linear),i=(0,s.AddToAsciiData)(i,{ascii:"(",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:c?c.ascii:"",linear:!h&&c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:")",linear:d?")":""}),h=(0,l.replaceScripts)(null==u?void 0:u.linear),i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:h||"^"}),d=!h&&(null===(r=null==u?void 0:u.linear)||void 0===r?void 0:r.length)>1&&!(0,l.isWrappedWithParens)(u.linear),i=(0,s.AddToAsciiData)(i,{ascii:"(",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:u?u.ascii:"",linear:!h&&u?u.linear:"",ascii_tsv:u?u.ascii_tsv:"",ascii_csv:u?u.ascii_csv:"",ascii_md:u?u.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:")",linear:d?")":""})}catch(t){return console.error("mml => msubsup =>",t),i}},msqrt:function(t,e){var n=(0,s.initAsciiData)();try{var r=t.childNodes[0]?t.childNodes[0]:null,i=r?e.visitNode(r,""):null;return n=(0,s.AddToAsciiData)(n,{ascii:"sqrt",linear:"√"}),n=(0,s.AddToAsciiData)(n,{ascii:i?i.ascii:"",linear:i?i.linear:"",ascii_tsv:i?i.ascii_tsv:"",ascii_csv:i?i.ascii_csv:"",ascii_md:i?i.ascii_md:""})}catch(t){return console.error("mml => msqrt =>",t),n}},mover:function(t){return function(n,i){var o,a,T,Q,c,u,d,h,p,m,f=(0,s.initAsciiData)();try{var y=n.childNodes[0]?n.childNodes[0]:"",g=n.childNodes[1]?n.childNodes[1]:"",L=y?i.visitNode(y,""):null,b=g?i.visitNode(g,""):null;if(g&&"mo"===g.kind){var v=b.ascii;if((_=(0,e.FindSymbolToAM)("mover",v,(0,e.getAttributes)(g))).ascii){var x=(0,l.formatLinearFromAscii)(_.ascii,null==L?void 0:L.linear);f=(0,s.AddToAsciiData)(f,{ascii:" ",linear:""}),f=(0,s.AddToAsciiData)(f,{ascii:_.ascii,linear:x?"":_.linear}),f=(0,s.AddToAsciiData)(f,{ascii:"(",linear:!x&&(null===(a=null===(o=null==L?void 0:L.linear)||void 0===o?void 0:o.trim())||void 0===a?void 0:a.length)>1?"(":""}),f=(0,s.AddToAsciiData)(f,{ascii:L?L.ascii?L.ascii.trim():L.ascii:"",linear:x||(L?L.linear?L.linear.trim():L.linear:""),ascii_tsv:L?L.ascii_tsv?L.ascii_tsv.trim():L.ascii_tsv:"",ascii_csv:L?L.ascii_csv?L.ascii_csv.trim():L.ascii_csv:"",ascii_md:L?L.ascii_md?L.ascii_md.trim():L.ascii_md:""}),f=(0,s.AddToAsciiData)(f,{ascii:")",linear:!x&&(null===(Q=null===(T=null==L?void 0:L.linear)||void 0===T?void 0:T.trim())||void 0===Q?void 0:Q.length)>1?")":""})}else{x=(0,l.formatLinearFromAscii)(_.linear,null==L?void 0:L.linear,"mover");f=(0,s.AddToAsciiData)(f,{ascii:L?L.ascii:"",linear:!x&&L?L.linear:"",ascii_tsv:L?L.ascii_tsv:"",ascii_csv:L?L.ascii_csv:"",ascii_md:L?L.ascii_md:""}),f=(0,s.AddToAsciiData)(f,{ascii:"^",linear:x||"^"}),f=(0,s.AddToAsciiData)(f,{ascii:i.options.extraBrackets?"(":"",linear:!x&&(null===(c=null==b?void 0:b.linear)||void 0===c?void 0:c.length)?"(":""}),f=(0,s.AddToAsciiData)(f,{ascii:b?b.ascii:"",linear:!x&&b?b.linear:"",ascii_tsv:b?b.ascii_tsv:"",ascii_csv:b?b.ascii_csv:"",ascii_md:b?b.ascii_md:""}),f=(0,s.AddToAsciiData)(f,{ascii:i.options.extraBrackets?")":"",linear:!x&&(null===(u=null==b?void 0:b.linear)||void 0===u?void 0:u.length)?")":""})}}else{var _=t.handleAll(n,i);x="";if((null===(d=null==L?void 0:L.linear)||void 0===d?void 0:d.length)&&(null===(h=b.linear)||void 0===h?void 0:h.length)){x+=(null===(p=L.linear)||void 0===p?void 0:p.length)>1?"(".concat(L.linear,")"):L.linear;var H=1===b.linear.length?(0,l.findAmSymbolsToLinear)(b.linear):null;H?x+=L.linear.length>1?H.outputComplex:H.output:(x+="^",x+=(null===(m=b.linear)||void 0===m?void 0:m.length)>1?"(".concat(b.linear,")"):b.linear)}f=x?(0,s.AddToAsciiData)(f,r.__assign(r.__assign({},_),{linear:x})):(0,s.AddToAsciiData)(f,_)}return f}catch(t){return console.error("mml => mover =>",t),f}}}(f),munder:function(t){return function(n,i){var o,a,T=(0,s.initAsciiData)();try{var Q=n.childNodes[0]?n.childNodes[0]:null,c=n.childNodes[1]?n.childNodes[1]:null,u=Q?i.visitNode(Q,""):null,d=c?i.visitNode(c,""):null;if(c&&"mo"===c.kind){var h=d.ascii,p=(0,e.FindSymbolToAM)(n.kind,h);if(p.ascii){var m=(0,l.formatLinearFromAscii)(p.ascii,null==u?void 0:u.linear);T=(0,s.AddToAsciiData)(T,{ascii:p.ascii+"(",linear:m||p.linear+"("}),T=(0,s.AddToAsciiData)(T,{ascii:u?u.ascii:"",linear:!m&&u?u.linear:"",ascii_tsv:u?u.ascii_tsv:"",ascii_csv:u?u.ascii_csv:"",ascii_md:u?u.ascii_md:""}),T=(0,s.AddToAsciiData)(T,{ascii:")",linear:m?"":")"})}else{var f=t.handleAll(n,i);m="";(null===(o=null==u?void 0:u.linear)||void 0===o?void 0:o.length)&&(null===(a=d.linear)||void 0===a?void 0:a.length)&&(m=(0,l.formatLinearFromAscii)(d.linear,u.linear)),T=m?(0,s.AddToAsciiData)(T,r.__assign(r.__assign({},f),{linear:m})):(0,s.AddToAsciiData)(T,f)}}else T=(0,s.AddToAsciiData)(T,{ascii:u?u.ascii:"",linear:u?u.linear:"",ascii_tsv:u?u.ascii_tsv:"",ascii_csv:u?u.ascii_csv:"",ascii_md:u?u.ascii_md:""}),T=(0,s.AddToAsciiData)(T,{ascii:"_",linear:"_"}),T=(0,s.AddToAsciiData)(T,{ascii:i.options.extraBrackets?"(":"",linear:i.options.extraBrackets?"(":""}),T=(0,s.AddToAsciiData)(T,{ascii:d?d.ascii:"",linear:d?d.linear:"",ascii_tsv:d?d.ascii_tsv:"",ascii_csv:d?d.ascii_csv:"",ascii_md:d?d.ascii_md:""}),T=(0,s.AddToAsciiData)(T,{ascii:i.options.extraBrackets?")":"",linear:i.options.extraBrackets?")":""});return T}catch(t){return console.error("mml => munder =>",t),T}}}(f),munderover:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=t.childNodes[2]?t.childNodes[2]:null,Q=o?e.visitNode(o,""):null,c=a?e.visitNode(a,""):null,u=T?e.visitNode(T,""):null,d=(null==Q?void 0:Q.linear)&&(0,l.hasAnyWhitespace)(Q.linear);return i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:Q.ascii?Q.ascii:"",linear:Q.linear?(0,l.replaceUnicodeWhitespace)(Q.linear):"",ascii_tsv:Q.ascii_tsv?Q.ascii_tsv:"",ascii_csv:Q.ascii_csv?Q.ascii_csv:"",ascii_md:Q.ascii_md?Q.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?")":""}),i=(0,s.AddToAsciiData)(i,{ascii:"_",linear:"_"}),d=(null===(n=null==c?void 0:c.linear)||void 0===n?void 0:n.length)>1&&!(0,l.isWrappedWithParens)(c.linear),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?"(":"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:c.ascii?c.ascii:"",linear:c.linear?c.linear:"",ascii_tsv:c.ascii_tsv?c.ascii_tsv:"",ascii_csv:c.ascii_csv?c.ascii_csv:"",ascii_md:c.ascii_md?c.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?")":"",linear:d?")":""}),i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:"^"}),d=(null===(r=null==u?void 0:u.linear)||void 0===r?void 0:r.length)>1&&!(0,l.isWrappedWithParens)(u.linear),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?"(":"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:u.ascii?u.ascii:"",linear:u.linear?u.linear:"",ascii_tsv:u.ascii_tsv?u.ascii_tsv:"",ascii_csv:u.ascii_csv?u.ascii_csv:"",ascii_md:u.ascii_md?u.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?")":"",linear:d?")":""})}catch(t){return console.error("mml => munderover =>",t),i}},mspace:function(t){return function(n,r){var i,o,a=(0,s.initAsciiData)();try{var l=(0,e.getAttributes)(n);if(l&&"2em"===l.width){if(a=(0,s.AddToAsciiData)(a,{ascii:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":"",linear:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":""}),a=(0,s.AddToAsciiData)(a,{ascii:"qquad",linear:" "}),null===(i=n.parent)||void 0===i?void 0:i.parent){var T=c(n.parent.parent);n.parent.parent.attributes.setInherited("hasLastSpace",T),a=(0,s.AddToAsciiData)(a,{ascii:T?" ":"",linear:T?" ":""})}return a}if(l&&"1em"===l.width){if(a=(0,s.AddToAsciiData)(a,{ascii:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":"",linear:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":""}),a=(0,s.AddToAsciiData)(a,{ascii:"quad",linear:" "}),null===(o=n.parent)||void 0===o?void 0:o.parent){T=c(n.parent.parent);n.parent.parent.attributes.setInherited("hasLastSpace",T),a=(0,s.AddToAsciiData)(a,{ascii:T?" ":"",linear:T?" ":""})}return a}var Q=t.handleAll(n,r);return a=(0,s.AddToAsciiData)(a,Q)}catch(t){return console.error("mml => mspace =>",t),a}}}(f),mtext:function(t,n){var r=(0,s.initAsciiData)();try{if(!t.childNodes||0===t.childNodes.length)return r;var i=t.childNodes[0],o=(0,e.FindSymbolReplace)(i.text),a=(0,e.FindSymbolToAM)(t.kind,o);if(a.ascii)return r=(0,s.AddToAsciiData)(r,{ascii:a.ascii,linear:a.linear});var l=t.attributes.get("toTsv"),T=t.attributes.get("toCsv"),Q=t.attributes.get("toMd");return r="("===o[0]||l||T||Q?(0,s.AddToAsciiData)(r,{ascii:"("===o[0]?o.replace(/"/g,""):o,linear:"("===o[0]?o.replace(/"/g,""):o,ascii_tsv:l?o.replace(/"/g,""):o,ascii_csv:T?o.replace(/"/g,""):o,ascii_md:o}):!o||o&&!o.trim()?(0,s.AddToAsciiData)(r,{ascii:"",linear:""}):(0,s.AddToAsciiData)(r,{ascii:'"'+o+'"',linear:o,ascii_tsv:n.options.tableToTsv?o.replace(/"/g,""):'"'+o+'"',ascii_csv:n.options.tableToCsv?o.replace(/"/g,""):o,ascii_md:o})}catch(t){return console.error("mml => mtext =>",t),r}},mtable:function(t,e){var n,r,o,s,l,T,Q,c,u,d,h,m,f,y,g,L,b,v,x,_,H,w,O,M,S="",E="",A="",C="";try{var V=t.prevClass===i.TEXCLASS.INNER,N="menclose"===(null===(n=t.Parent)||void 0===n?void 0:n.kind),I=t.childNodes.length,P=e.options.tableToTsv&&!e.options.isSubTable&&("math"===(null===(r=t.Parent)||void 0===r?void 0:r.kind)||N&&"math"===(null===(o=t.Parent.Parent)||void 0===o?void 0:o.kind)),R=e.options.tableToCsv&&!e.options.isSubTable&&("math"===(null===(s=t.Parent)||void 0===s?void 0:s.kind)||N&&"math"===(null===(l=t.Parent.Parent)||void 0===l?void 0:l.kind)),k=e.options.tableToMd&&!e.options.isSubTable&&("math"===(null===(T=t.Parent)||void 0===T?void 0:T.kind)||N&&"math"===(null===(Q=t.Parent.Parent)||void 0===Q?void 0:Q.kind));t.attributes.setInherited("toTsv",P),t.attributes.setInherited("toCsv",R),t.attributes.setInherited("toMd",k);for(var D=t.attributes.get("columnalign"),B=D?D.split(" "):[],j=t.attributes.isSet("rowlines")?t.attributes.get("rowlines").split(" "):[],F=t.attributes.get("name"),G=t.parent&&"mrow"===t.parent.kind&&(null===(c=t.parent.properties)||void 0===c?void 0:c.hasOwnProperty("open")),q=t.parent&&"mrow"===t.parent.kind&&(null===(u=t.parent.properties)||void 0===u?void 0:u.hasOwnProperty("close")),U=!!G&&t.parent.properties.open,Z=!!q&&t.parent.properties.close,z=G&&t.parent.properties.open||q&&t.parent.properties.close,W=N&&(null===(d=t.Parent.Parent)||void 0===d?void 0:d.isKind("mrow"))&&((null===(h=t.Parent.Parent.properties)||void 0===h?void 0:h.hasOwnProperty("open"))&&t.Parent.Parent.properties.open||(null===(m=t.Parent.Parent.properties)||void 0===m?void 0:m.hasOwnProperty("close"))&&t.Parent.Parent.properties.close),X=!!z||!!W,$=!(!z&&!W||!U||!Z),K=a.envArraysShouldBeFlattenInTSV.includes(F)&&!G&&!q&&!N,J="right"===D&&!X,Y=[],tt=!1,et=0;et<I;et++){var nt=t.childNodes[et];nt.attributes.setInherited("toTsv",P),nt.attributes.setInherited("toCsv",R),nt.attributes.setInherited("toMd",k),nt.attributes.setInherited("itShouldBeFlatten",K);for(var rt="",it="",ot="",at="",st="",lt="",Tt="",Qt="",ct=null===(f=nt.childNodes)||void 0===f?void 0:f.length,ut=nt.attributes.get("displaystyle"),dt=0;dt<ct;dt++){dt>0&&(ut?(null==B?void 0:B.length)&&"left"===B[dt-1]&&"right"===B[dt]&&(it+=$?",":" "):(rt+=",",it+=$?",":" ",ot+=P?(null===(y=e.options.tsv_separators)||void 0===y?void 0:y.column)||"\t":K?", ":",",at+=R?(null===(g=e.options.csv_separators)||void 0===g?void 0:g.column)||",":K?", ":",",st+=k?(null===(L=e.options.md_separators)||void 0===L?void 0:L.column)||" ":K?", ":","));var ht=nt.childNodes[dt],pt=e.visitNode(ht,""),mt=pt.ascii,ft=void 0===mt?"":mt,yt=pt.linear,gt=void 0===yt?"":yt,Lt=pt.ascii_tsv,bt=void 0===Lt?"":Lt,vt=pt.ascii_csv,xt=void 0===vt?"":vt,_t=pt.ascii_md,Ht=void 0===_t?"":_t,wt="",Ot="";if(J){var Mt=p(e,ht,et);wt=Mt.mmlCollVerticalMath,Ot=Mt.mmlCollVerticalMath_linear,Mt.startedFromMathOperation&&(tt=!0,Qt=Mt.mathOperation),Mt.collChildrenCanBeVerticalMath||(J=!1)}rt+=ft,it+=gt,ot+=!P&&K?bt.trimEnd():bt,at+=!R&&K?xt.trimEnd():xt,st+=!k&&K?Ht.trimEnd():Ht,lt+=wt,Tt+=Ot}J&&(null==j?void 0:j.length)&&(null==j?void 0:j.length)>et&&"none"!==j[et]&&(lt+="=",Tt+="=");var St=null===(b=nt.attributes)||void 0===b?void 0:b.get("displaystyle");Y.push({mmlRow:rt,mmlRow_linear:it,mmlRow_tsv:ot,mmlRow_csv:at,mmlRow_md:st,mmlRowVerticalMath:lt,mmlRowVerticalMath_linear:Tt,mathOperation:Qt,encloseToSquareBrackets:I>1||V||ct>1&&!St,toTsv:P,toCsv:R,toMd:k,itShouldBeFlatten:K})}if(tt||(J=!1),J&&Y.length>2)for(Qt="",et=Y.length-1;et>=0;et--)Y[et].mathOperation?Qt=Y[et].mathOperation:Qt&&et>0&&(Y[et].mmlRowVerticalMath=Qt+Y[et].mmlRowVerticalMath,Y[et].mmlRowVerticalMath_linear=Qt+Y[et].mmlRowVerticalMath_linear);var Et="",At="",Ct="",Vt="",Nt="";for(et=0;et<Y.length;et++)et>0&&!J&&(Et+=",",Ct+=P?(null===(v=e.options.tsv_separators)||void 0===v?void 0:v.row)||"\n":K?", ":",",Vt+=R?(null===(x=e.options.csv_separators)||void 0===x?void 0:x.row)||"\n":K?", ":",",Nt+=k?(null===(_=e.options.md_separators)||void 0===_?void 0:_.row)||" <br> ":K?", ":",",$&&(At+=",")),rt=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow,it=J?Y[et].mmlRowVerticalMath_linear:Y[et].mmlRow_linear,ot=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow_tsv,at=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow_csv,st=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow_md,Et+=Y[et].encloseToSquareBrackets&&!J?"["+rt+"]":rt,Y[et].encloseToSquareBrackets&&!J&&$?At+="["+it+"]":(At+=At&&!J?"\n":"",At+=it),Ct+=!Y[et].encloseToSquareBrackets||Y[et].itShouldBeFlatten||Y[et].toTsv||J?ot:"["+ot+"]",Vt+=!Y[et].encloseToSquareBrackets||Y[et].itShouldBeFlatten||Y[et].toCsv||J?at:"["+at+"]",Nt+=!Y[et].encloseToSquareBrackets||Y[et].itShouldBeFlatten||Y[et].toMd||J?st:"["+st+"]";return J&&((null===(H=t.Parent)||void 0===H?void 0:H.isKind("mrow"))&&t.Parent.attributes.setInherited("isVerticalMath",!0),(null===(w=t.Parent)||void 0===w?void 0:w.isKind("menclose"))&&(null===(M=null===(O=t.Parent)||void 0===O?void 0:O.Parent)||void 0===M?void 0:M.isKind("mrow"))&&t.Parent.Parent.attributes.setInherited("isVerticalMath",!0)),P?E+='"'+Ct+'"':K||J?E+=Ct:(E+=G||N?"":"{:",E+=Ct,E+=q||N?"":":}"),R||K||J?A+=Vt:(A+=G||N?"":"{:",A+=Vt,A+=q||N?"":":}"),k||K||J?C+=Nt:(C+=G||N?"":"{:",C+=Nt,C+=q||N?"":":}"),J?S+=Et:(S+=G||N?"":"{:",S+=Et,S+=q||N?"":":}"),{ascii:S,linear:At,ascii_tsv:E,ascii_csv:A,ascii_md:C}}catch(t){return console.error("mml => mtable =>",t),{ascii:S,linear:S,ascii_tsv:E,ascii_csv:A,ascii_md:C}}},mrow:function(t,e){try{for(var n=t.properties&&t.properties.texClass===i.TEXCLASS.INNER&&t.parent&&"inferredMrow"===t.parent.kind,r=t.properties&&t.properties.hasOwnProperty("open")&&""===t.properties.open,a=t.properties&&t.properties.hasOwnProperty("close")&&""===t.properties.close,l="",T="",Q="",c="",u="",d="",h=null,p=!1,m=0;m<t.childNodes.length;m++){var f=e.visitNode(t.childNodes[m],"");if(p){var y=(0,s.getFunctionNameFromAscii)(f.ascii,t.childNodes[m]);y&&!o.regExpIsFunction.test(y)||(l+=")",T+=")",Q+=")",c+=")",u+=")",p=!1)}"mfrac"===t.childNodes[m].kind&&(null==d?void 0:d.trim())&&(o.regExpIsFunction.test(d.trim())||"mo"===(null==h?void 0:h.kind)&&-1===(null==h?void 0:h.texClass))&&(l+="(",T+="(",Q+="(",c+="(",u+="(",p=!0),l+=f.ascii,T+=f.linear,Q+=f.ascii_tsv,c+=f.ascii_csv,u+=f.ascii_md,d=l,h=t.childNodes[m]}p&&(l+=")",T+=")",Q+=")",c+=")",u+=")");var g=t.attributes.get("isVerticalMath"),L=n&&r&&!g?"{:":"",b=n&&a&&!g?":}":"";return{ascii:L+l+b,linear:T,ascii_tsv:L+Q+b,ascii_csv:L+c+b,ascii_md:L+u+b}}catch(t){return console.error("mml => mrow =>",t),(0,s.initAsciiData)()}},mtr:function(t,e){var n,r,i,o=(0,s.initAsciiData)();try{for(var a=t.attributes.get("displaystyle"),l=t.attributes.get("toTsv"),T=t.attributes.get("toCsv"),Q=t.attributes.get("toMd"),c=t.attributes.get("itShouldBeFlatten"),u=0;u<t.childNodes.length;u++){u>0&&!a&&(o=(0,s.AddToAsciiData)(o,{ascii:",",linear:" ",ascii_tsv:l?(null===(n=e.options.tsv_separators)||void 0===n?void 0:n.column)||"\t":c?", ":",",ascii_csv:T?(null===(r=e.options.csv_separators)||void 0===r?void 0:r.column)||",":c?", ":",",ascii_md:Q?(null===(i=e.options.md_separators)||void 0===i?void 0:i.column)||" ":c?", ":","}));var d=e.visitNode(t.childNodes[u],""),h=d.ascii,p=void 0===h?"":h,m=d.linear,f=void 0===m?"":m,y=d.ascii_tsv,g=void 0===y?"":y,L=d.ascii_csv,b=void 0===L?"":L,v=d.ascii_md,x=void 0===v?"":v;o=(0,s.AddToAsciiData)(o,{ascii:p,linear:f,ascii_tsv:!l&&c?null==g?void 0:g.trimEnd():g,ascii_csv:!T&&c?null==b?void 0:b.trimEnd():b,ascii_md:!Q&&c?null==x?void 0:x.trimEnd():x})}return o}catch(t){return console.error("mml => mtr =>",t),o}},mpadded:function(t){return function(n,r){var i=(0,s.initAsciiData)();try{var o=t.handleAll(n,r);if(n.Parent&&"menclose"===n.Parent.kind){var a=(0,e.getAttributes)(n.Parent);if(a&&"bottom"===a.notation&&a.lcm&&(!o||!o.ascii))return i}return i=(0,s.AddToAsciiData)(i,{ascii:'"',linear:"",ascii_tsv:r.options.tableToTsv?"":'"',ascii_csv:"",ascii_md:""}),i=(0,s.AddToAsciiData)(i,o),i=(0,s.AddToAsciiData)(i,{ascii:'"',linear:"",ascii_tsv:r.options.tableToTsv?"":'"',ascii_csv:"",ascii_md:""})}catch(t){return console.error("mml => mpadded =>",t),i}}}(f),mroot:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=a?e.visitNode(a,""):null,Q=o?e.visitNode(o,""):null,c=(0,l.findRootSymbol)(null==T?void 0:T.linear);return i=(0,s.AddToAsciiData)(i,{ascii:"root",linear:c||"root"}),i=(0,s.AddToAsciiData)(i,{ascii:a?"(":"",linear:c?"":a?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:T?T.ascii:"",linear:c?"":T?T.linear:"",ascii_tsv:T?T.ascii_tsv:"",ascii_csv:T?T.ascii_csv:"",ascii_md:T?T.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:a?")":"",linear:c?"":a?")":""}),i=(0,s.AddToAsciiData)(i,{ascii:o?"(":"",linear:(null===(n=Q.linear)||void 0===n?void 0:n.length)>1?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:o?")":"",linear:(null===(r=Q.linear)||void 0===r?void 0:r.length)>1?")":""})}catch(t){return console.error("mml => mroot =>",t),i}},menclose:function(t){return function(n,r){var i=(0,s.initAsciiData)();try{var o=(0,e.getAttributes)(n),a=!1,l=!1;o&&o.notation&&(a=o.notation.toString().indexOf("left")>-1,l=o.notation.toString().indexOf("right")>-1),i=(0,s.AddToAsciiData)(i,{ascii:a?"[":"",linear:""});var T=t.handleAll(n,r);return i=(0,s.AddToAsciiData)(i,T),o&&o.lcm&&(i=(0,s.AddToAsciiData)(i,{ascii:"",linear:""})),i=(0,s.AddToAsciiData)(i,{ascii:l?"]":"",linear:""})}catch(t){return console.error("mml => menclose =>",t),i}}}(f)}},3768:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.findAmSymbolByTagStretchy=e.findAmSymbolByTag=e.regExpIsFunction=e.getFunctions=e.AMsymbols=e.eSymbolType=void 0;var n;!function(t){t.operation="operation",t.relation="relation",t.logical="logical",t.miscellaneous="miscellaneous",t.arrow="arrow"}(n=e.eSymbolType||(e.eSymbolType={}));var r=["𝒜","ℬ","𝒞","𝒟","ℰ","ℱ","𝒢","ℋ","ℐ","𝒥","𝒦","ℒ","ℳ","𝒩","𝒪","𝒫","𝒬","ℛ","𝒮","𝒯","𝒰","𝒱","𝒲","𝒳","𝒴","𝒵","𝒶","𝒷","𝒸","𝒹","ℯ","𝒻","ℊ","𝒽","𝒾","𝒿","𝓀","𝓁","𝓂","𝓃","ℴ","𝓅","𝓆","𝓇","𝓈","𝓉","𝓊","𝓋","𝓌","𝓍","𝓎","𝓏"],i=["𝔄","𝔅","ℭ","𝔇","𝔈","𝔉","𝔊","ℌ","ℑ","𝔍","𝔎","𝔏","𝔐","𝔑","𝔒","𝔓","𝔔","ℜ","𝔖","𝔗","𝔘","𝔙","𝔚","𝔛","𝔜","ℨ","𝔞","𝔟","𝔠","𝔡","𝔢","𝔣","𝔤","𝔥","𝔦","𝔧","𝔨","𝔩","𝔪","𝔫","𝔬","𝔭","𝔮","𝔯","𝔰","𝔱","𝔲","𝔳","𝔴","𝔵","𝔶","𝔷"],o=["𝔸","𝔹","ℂ","𝔻","𝔼","𝔽","𝔾","ℍ","𝕀","𝕁","𝕂","𝕃","𝕄","ℕ","𝕆","ℙ","ℚ","ℝ","𝕊","𝕋","𝕌","𝕍","𝕎","𝕏","𝕐","ℤ","𝕒","𝕓","𝕔","𝕕","𝕖","𝕗","𝕘","𝕙","𝕚","𝕛","𝕜","𝕝","𝕞","𝕟","𝕠","𝕡","𝕢","𝕣","𝕤","𝕥","𝕦","𝕧","𝕨","𝕩","𝕪","𝕫"];e.AMsymbols=[{input:"alpha",tag:"mi",output:"α",tex:null,ttype:0},{input:"beta",tag:"mi",output:"β",tex:null,ttype:0},{input:"chi",tag:"mi",output:"χ",tex:null,ttype:0},{input:"delta",tag:"mi",output:"δ",tex:null,ttype:0},{input:"Delta",tag:"mo",output:"Δ",tex:null,ttype:0},{input:"Delta",tag:"mi",output:"Δ",tex:null,ttype:0},{input:"epsi",tag:"mi",output:"ε",tex:"epsilon",ttype:0},{input:"epsilon",tag:"mi",output:"ϵ",tex:"epsilon",ttype:0},{input:"varepsilon",tag:"mi",output:"ɛ",tex:null,ttype:0},{input:"eta",tag:"mi",output:"η",tex:null,ttype:0},{input:"gamma",tag:"mi",output:"γ",tex:null,ttype:0},{input:"Gamma",tag:"mo",output:"Γ",tex:null,ttype:0},{input:"iota",tag:"mi",output:"ι",tex:null,ttype:0},{input:"kappa",tag:"mi",output:"κ",tex:null,ttype:0},{input:"lambda",tag:"mi",output:"λ",tex:null,ttype:0},{input:"Lambda",tag:"mo",output:"Λ",tex:null,ttype:0},{input:"lamda",tag:"mi",output:"λ",tex:null,ttype:0},{input:"Lamda",tag:"mo",output:"Λ",tex:null,ttype:0},{input:"mu",tag:"mi",output:"μ",tex:null,ttype:0},{input:"nu",tag:"mi",output:"ν",tex:null,ttype:0},{input:"omega",tag:"mi",output:"ω",tex:null,ttype:0},{input:"Omega",tag:"mo",output:"Ω",tex:null,ttype:0},{input:"phi",tag:"mi",output:"ϕ",tex:null,ttype:0},{input:"varphi",tag:"mi",output:"φ",tex:null,ttype:0},{input:"Phi",tag:"mo",output:"Φ",tex:null,ttype:0},{input:"Phi",tag:"mi",output:"Φ",tex:null,ttype:0},{input:"pi",tag:"mi",output:"π",tex:null,ttype:0},{input:"Pi",tag:"mo",output:"Π",tex:null,ttype:0},{input:"psi",tag:"mi",output:"ψ",tex:null,ttype:0},{input:"Psi",tag:"mi",output:"Ψ",tex:null,ttype:0},{input:"rho",tag:"mi",output:"ρ",tex:null,ttype:0},{input:"sigma",tag:"mi",output:"σ",tex:null,ttype:0},{input:"Sigma",tag:"mo",output:"Σ",tex:null,ttype:0},{input:"tau",tag:"mi",output:"τ",tex:null,ttype:0},{input:"theta",tag:"mi",output:"θ",tex:null,ttype:0},{input:"vartheta",tag:"mi",output:"ϑ",tex:null,ttype:0},{input:"Theta",tag:"mo",output:"Θ",tex:null,ttype:0},{input:"upsilon",tag:"mi",output:"υ",tex:null,ttype:0},{input:"xi",tag:"mi",output:"ξ",tex:null,ttype:0},{input:"Xi",tag:"mo",output:"Ξ",tex:null,ttype:0},{input:"zeta",tag:"mi",output:"ζ",tex:null,ttype:0},{input:"-",tag:"mo",output:"−",tex:null,ttype:0,symbolType:n.operation},{input:"*",tag:"mo",output:"⋅",tex:"cdot",ttype:0,symbolType:n.operation},{input:"**",tag:"mo",output:"∗",tex:"ast",ttype:0,symbolType:n.operation},{input:"***",tag:"mo",output:"⋆",tex:"star",ttype:0,symbolType:n.operation},{input:"//",tag:"mo",output:"/",tex:null,ttype:0,symbolType:n.operation},{input:"\\\\",tag:"mo",output:"\\",tex:"backslash",ttype:0,symbolType:n.operation},{input:"\\\\",tag:"mo",output:"∖",tex:"backslash",ttype:0,symbolType:n.operation},{input:"setminus",tag:"mo",output:"\\",tex:null,ttype:0,symbolType:n.operation},{input:"xx",tag:"mo",output:"×",tex:"times",ttype:0,symbolType:n.operation},{input:"|><",tag:"mo",output:"⋉",tex:"ltimes",ttype:0,symbolType:n.operation},{input:"><|",tag:"mo",output:"⋊",tex:"rtimes",ttype:0,symbolType:n.operation},{input:"|><|",tag:"mo",output:"⋈",tex:"bowtie",ttype:0,symbolType:n.operation},{input:"-:",tag:"mo",output:"÷",tex:"div",ttype:0,symbolType:n.operation},{input:"divide",tag:"mo",output:"-:",tex:null,ttype:8,symbolType:n.operation},{input:"@",tag:"mo",output:"∘",tex:"circ",ttype:0,symbolType:n.operation},{input:"o+",tag:"mo",output:"⊕",tex:"oplus",ttype:0,symbolType:n.operation},{input:"ox",tag:"mo",output:"⊗",tex:"otimes",ttype:0,symbolType:n.operation},{input:"o.",tag:"mo",output:"⊙",tex:"odot",ttype:0,symbolType:n.operation},{input:"sum",tag:"mo",output:"∑",tex:null,ttype:7,symbolType:n.operation},{input:"prod",tag:"mo",output:"∏",tex:null,ttype:7,symbolType:n.operation},{input:"^^",tag:"mo",output:"∧",tex:"wedge",ttype:0,symbolType:n.operation},{input:"^^^",tag:"mo",output:"⋀",tex:"bigwedge",ttype:7,symbolType:n.operation},{input:"vv",tag:"mo",output:"∨",tex:"vee",ttype:0,symbolType:n.operation},{input:"vvv",tag:"mo",output:"⋁",tex:"bigvee",ttype:7,symbolType:n.operation},{input:"nn",tag:"mo",output:"∩",tex:"cap",ttype:0,symbolType:n.operation},{input:"nnn",tag:"mo",output:"⋂",tex:"bigcap",ttype:7,symbolType:n.operation},{input:"uu",tag:"mo",output:"∪",tex:"cup",ttype:0,symbolType:n.operation},{input:"uuu",tag:"mo",output:"⋃",tex:"bigcup",ttype:7,symbolType:n.operation},{input:"bigoplus",tag:"mo",output:"⨁",tex:"bigoplus",ttype:7,symbolType:n.operation},{input:"=",tag:"mo",output:"=",tex:null,ttype:0,symbolType:n.relation},{input:"!=",tag:"mo",output:"≠",tex:"ne",ttype:0,symbolType:n.relation},{input:":=",tag:"mo",output:":=",tex:null,ttype:0,symbolType:n.relation},{input:" < ",tag:"mo",output:"<",tex:null,ttype:0,symbolType:n.relation},{input:" <= ",tag:"mo",output:"≤",tex:"le",ttype:0,symbolType:n.relation},{input:"lt=",tag:"mo",output:"≤",tex:"leq",ttype:0,symbolType:n.relation},{input:" > ",tag:"mo",output:">",tex:null,ttype:0,symbolType:n.relation},{input:" >= ",tag:"mo",output:"≥",tex:"ge",ttype:0,symbolType:n.relation},{input:"gt=",tag:"mo",output:"≥",tex:"geq",ttype:0,symbolType:n.relation},{input:" >= ",tag:"mo",output:"≧",tex:"geqq",ttype:0,symbolType:n.relation},{input:" <= ",tag:"mo",output:"≦",tex:"leqq",ttype:0,symbolType:n.relation},{input:" <= ",tag:"mo",output:"⩽",tex:"leqslant",ttype:0,symbolType:n.relation},{input:" >= ",tag:"mo",output:"⩾",tex:"geqslant",ttype:0,symbolType:n.relation},{input:"-<",tag:"mo",output:"≺",tex:"prec",ttype:0,symbolType:n.relation},{input:"-lt",tag:"mo",output:"≺",tex:null,ttype:0,symbolType:n.relation},{input:">-",tag:"mo",output:"≻",tex:"succ",ttype:0,symbolType:n.relation},{input:"-<=",tag:"mo",output:"⪯",tex:"preceq",ttype:0,symbolType:n.relation},{input:">-=",tag:"mo",output:"⪰",tex:"succeq",ttype:0,symbolType:n.relation},{input:"in",tag:"mo",output:"∈",tex:null,ttype:0,symbolType:n.relation},{input:"!in",tag:"mo",output:"∉",tex:"notin",ttype:0,symbolType:n.relation},{input:"sub",tag:"mo",output:"⊂",tex:"subset",ttype:0,symbolType:n.relation},{input:"sup",tag:"mo",output:"⊃",tex:"supset",ttype:0,symbolType:n.relation},{input:"sube",tag:"mo",output:"⊆",tex:"subseteq",ttype:0,symbolType:n.relation},{input:"supe",tag:"mo",output:"⊇",tex:"supseteq",ttype:0,symbolType:n.relation},{input:"-=",tag:"mo",output:"≡",tex:"equiv",ttype:0,symbolType:n.relation},{input:"~=",tag:"mo",output:"≅",tex:"cong",ttype:0,symbolType:n.relation},{input:"~~",tag:"mo",output:"≈",tex:"approx",ttype:0,symbolType:n.relation},{input:"prop",tag:"mo",output:"∝",tex:"propto",ttype:0,symbolType:n.relation},{input:"longrightarrow",tag:"mo",output:"⟶",tex:"longrightarrow",ttype:0,symbolType:n.relation},{input:"longleftarrow",tag:"mo",output:"⟵",tex:"longleftarrow",ttype:0,symbolType:n.relation},{input:"Longleftarrow",tag:"mo",output:"⟸",tex:"Longleftarrow",ttype:0,symbolType:n.relation},{input:"Longrightarrow",tag:"mo",output:"⟹",tex:"Longrightarrow",ttype:0,symbolType:n.relation},{input:"longleftrightarrow",tag:"mo",output:"⟷",tex:"longleftrightarrow",ttype:0,symbolType:n.relation},{input:"Longleftrightarrow",tag:"mo",output:"⟺",tex:"Longleftrightarrow",ttype:0,symbolType:n.relation},{input:"longmapsto",tag:"mo",output:"⟼",tex:"longmapsto",ttype:0,symbolType:n.relation},{input:"not",tag:"mo",output:"¬",tex:"neg",ttype:0,symbolType:n.logical},{input:"=>",tag:"mo",output:"⇒",tex:"implies",ttype:0,symbolType:n.logical},{input:"if",tag:"mo",output:"if",tex:null,ttype:6,symbolType:n.logical},{input:"<=>",tag:"mo",output:"⇔",tex:"iff",ttype:0,symbolType:n.logical},{input:"AA",tag:"mo",output:"∀",tex:"forall",ttype:0,symbolType:n.logical},{input:"EE",tag:"mo",output:"∃",tex:"exists",ttype:0,symbolType:n.logical},{input:"_|_",tag:"mo",output:"⊥",tex:"bot",ttype:0,symbolType:n.logical},{input:"TT",tag:"mo",output:"⊤",tex:"top",ttype:0,symbolType:n.logical},{input:"TT",tag:"mi",output:"⊤",tex:"top",ttype:0,symbolType:n.logical},{input:"|--",tag:"mo",output:"⊢",tex:"vdash",ttype:0,symbolType:n.logical},{input:"|==",tag:"mo",output:"⊨",tex:"models",ttype:0,symbolType:n.logical},{input:"(",tag:"mo",output:"(",tex:null,ttype:4},{input:")",tag:"mo",output:")",tex:null,ttype:5},{input:"[",tag:"mo",output:"[",tex:null,ttype:4},{input:"]",tag:"mo",output:"]",tex:null,ttype:5},{input:"{",tag:"mo",output:"{",tex:null,ttype:4},{input:"}",tag:"mo",output:"}",tex:null,ttype:5},{input:"|",tag:"mo",output:"|",tex:null,ttype:9},{input:"||",tag:"mo",output:"∥",tex:null,ttype:9},{input:"||",tag:"mo",output:"‖",tex:null,ttype:9},{input:"|",tag:"mo",output:"∥",tex:null,ttype:9},{input:"||",tag:"mo",output:"||",tex:null,ttype:9},{input:"(:",tag:"mo",output:"〈",tex:"langle",ttype:4},{input:"(:",tag:"mo",output:"⟨",tex:"langle",ttype:4},{input:":)",tag:"mo",output:"〉",tex:"rangle",ttype:5},{input:":)",tag:"mo",output:"⟩",tex:"rangle",ttype:5},{input:"llcorner",tag:"mo",output:"⌞",tex:"llcorner",ttype:4},{input:"lrcorner",tag:"mo",output:"⌟",tex:"lrcorner",ttype:5},{input:"ulcorner",tag:"mo",output:"⌜",tex:"ulcorner",ttype:4},{input:"urcorner",tag:"mo",output:"⌝",tex:"urcorner",ttype:5},{input:"<<",tag:"mo",output:"〈",tex:null,ttype:4},{input:">>",tag:"mo",output:"〉",tex:null,ttype:5},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:4,invisible:!0},{input:":}",tag:"mo",output:":}",tex:null,ttype:5,invisible:!0},{input:"int",tag:"mo",output:"∫",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:8},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:8},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:8},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:8},{input:"oint",tag:"mo",output:"∮",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"oint",tag:"mtext",output:"∮",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"del",tag:"mo",output:"∂",tex:"partial",ttype:0,symbolType:n.miscellaneous},{input:"del",tag:"mi",output:"∂",tex:"partial",ttype:0,symbolType:n.miscellaneous},{input:"grad",tag:"mo",output:"∇",tex:"nabla",ttype:0,symbolType:n.miscellaneous},{input:"+-",tag:"mo",output:"±",tex:"pm",ttype:0,symbolType:n.miscellaneous},{input:"O/",tag:"mo",output:"∅",tex:"emptyset",ttype:0,symbolType:n.miscellaneous},{input:"oo",tag:"mo",output:"∞",tex:"infty",ttype:0,symbolType:n.miscellaneous},{input:"aleph",tag:"mo",output:"ℵ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:0,symbolType:n.miscellaneous},{input:":.",tag:"mo",output:"∴",tex:"therefore",ttype:0,symbolType:n.miscellaneous},{input:":'",tag:"mo",output:"∵",tex:"because",ttype:0,symbolType:n.miscellaneous},{input:"/_",tag:"mo",output:"∠",tex:"angle",ttype:0,symbolType:n.miscellaneous},{input:"/_\\",tag:"mo",output:"△",tex:"triangle",ttype:0,symbolType:n.miscellaneous},{input:"'",tag:"mo",output:"′",tex:"prime",ttype:0,symbolType:n.miscellaneous},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:1,acc:!0,stretchy:!1,symbolType:n.miscellaneous},{input:"widetilde",tag:"mover",output:"~",tex:null,ttype:1,acc:!0,stretchy:!0,symbolType:n.miscellaneous},{input:"\\ ",tag:"mo",output:" ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"frown",tag:"mo",output:"⌢",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"quad",tag:"mo",output:"  ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"qquad",tag:"mo",output:"    ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"cdots",tag:"mo",output:"⋯",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"vdots",tag:"mo",output:"⋮",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"ddots",tag:"mo",output:"⋱",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"dots",tag:"mo",output:"…",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"diamond",tag:"mo",output:"⋄",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"square",tag:"mo",output:"□",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"|__",tag:"mo",output:"⌊",tex:"lfloor",ttype:0,symbolType:n.miscellaneous},{input:"__|",tag:"mo",output:"⌋",tex:"rfloor",ttype:0,symbolType:n.miscellaneous},{input:"|~",tag:"mo",output:"⌈",tex:"lceiling",ttype:0,symbolType:n.miscellaneous},{input:"~|",tag:"mo",output:"⌉",tex:"rceiling",ttype:0,symbolType:n.miscellaneous},{input:"CC",tag:"mo",output:"ℂ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"NN",tag:"mo",output:"ℕ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"QQ",tag:"mo",output:"ℚ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"RR",tag:"mo",output:"ℝ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"ZZ",tag:"mo",output:"ℤ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"f",tag:"mi",output:"f",tex:null,ttype:1,func:!0},{input:"g",tag:"mi",output:"g",tex:null,ttype:1,func:!0},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:7},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:7},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:1,func:!0},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:1,func:!0},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:1,func:!0},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:1,func:!0},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:1,func:!0},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:1,func:!0},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:1,func:!0},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:1,func:!0},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:1,func:!0},{input:"arcsin",tag:"mo",output:"arcsin",tex:null,ttype:1,func:!0},{input:"arccos",tag:"mo",output:"arccos",tex:null,ttype:1,func:!0},{input:"arctan",tag:"mo",output:"arctan",tex:null,ttype:1,func:!0},{input:"coth",tag:"mo",output:"coth",tex:null,ttype:1,func:!0},{input:"sech",tag:"mo",output:"sech",tex:null,ttype:1,func:!0},{input:"csch",tag:"mo",output:"csch",tex:null,ttype:1,func:!0},{input:"exp",tag:"mo",output:"exp",tex:null,ttype:1,func:!0},{input:"abs",tag:"mo",output:"abs",tex:null,ttype:1,rewriteleftright:["|","|"]},{input:"norm",tag:"mo",output:"norm",tex:null,ttype:1,rewriteleftright:["∥","∥"]},{input:"floor",tag:"mo",output:"floor",tex:null,ttype:1,rewriteleftright:["⌊","⌋"]},{input:"ceil",tag:"mo",output:"ceil",tex:null,ttype:1,rewriteleftright:["⌈","⌉"]},{input:"log",tag:"mo",output:"log",tex:null,ttype:1,func:!0},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:1,func:!0},{input:"det",tag:"mo",output:"det",tex:null,ttype:1,func:!0},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:0},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:0},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:1,func:!0},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:1,func:!0},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:0},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:0},{input:"min",tag:"mo",output:"min",tex:null,ttype:7},{input:"max",tag:"mo",output:"max",tex:null,ttype:7},{input:"uarr",tag:"mo",output:"↑",tex:"uparrow",ttype:0,symbolType:n.arrow},{input:"darr",tag:"mo",output:"↓",tex:"downarrow",ttype:0,symbolType:n.arrow},{input:"rarr",tag:"mo",output:"→",tex:"rightarrow",ttype:0,symbolType:n.arrow},{input:"->",tag:"mo",output:"→",tex:"to",ttype:0,symbolType:n.arrow},{input:">->",tag:"mo",output:"↣",tex:"rightarrowtail",ttype:0,symbolType:n.arrow},{input:"->>",tag:"mo",output:"↠",tex:"twoheadrightarrow",ttype:0,symbolType:n.arrow},{input:">->>",tag:"mo",output:"⤖",tex:"twoheadrightarrowtail",ttype:0,symbolType:n.arrow},{input:"|->",tag:"mo",output:"↦",tex:"mapsto",ttype:0,symbolType:n.arrow},{input:"larr",tag:"mo",output:"←",tex:"leftarrow",ttype:0,symbolType:n.arrow},{input:"harr",tag:"mo",output:"↔",tex:"leftrightarrow",ttype:0,symbolType:n.arrow},{input:"rArr",tag:"mo",output:"⇒",tex:"Rightarrow",ttype:0,symbolType:n.arrow},{input:"lArr",tag:"mo",output:"⇐",tex:"Leftarrow",ttype:0,symbolType:n.arrow},{input:"hArr",tag:"mo",output:"⇔",tex:"Leftrightarrow",ttype:0,symbolType:n.arrow},{input:"sqrt",tag:"msqrt",output:"sqrt",tex:null,ttype:1},{input:"root",tag:"mroot",output:"root",tex:null,ttype:2},{input:"frac",tag:"mfrac",output:"/",tex:null,ttype:2},{input:"/",tag:"mfrac",output:"/",tex:null,ttype:3},{input:"stackrel",tag:"mover",output:"stackrel",tex:null,ttype:2},{input:"overset",tag:"mover",output:"stackrel",tex:null,ttype:2},{input:"underset",tag:"munder",output:"stackrel",tex:null,ttype:2},{input:"_",tag:"msub",output:"_",tex:null,ttype:3},{input:"^",tag:"msup",output:"^",tex:null,ttype:3},{input:"hat",tag:"mover",output:"^",tex:null,ttype:1,acc:!0},{input:"widehat",tag:"mover",output:"^",tex:null,ttype:1,acc:!0,stretchy:!0},{input:"bar",tag:"mover",output:"¯",tex:"overline",ttype:1,acc:!0},{input:"bar",tag:"mover",output:"―",tex:"overline",ttype:1,acc:!0},{input:"bar",tag:"mover",output:"macr",tex:"bar",ttype:0},{input:"vec",tag:"mover",output:"→",tex:null,ttype:1,acc:!0},{input:"vec",tag:"mover",output:"rarr",output_linear:"→",tex:"vec",ttype:0},{input:"",tag:"mover",output:"larr",output_linear:"←",tex:"overleftarrow",ttype:0},{input:"dot",tag:"mover",output:".",tex:null,ttype:1,acc:!0},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:1,acc:!0},{input:"ul",tag:"munder",output:"̲",tex:"underline",ttype:1,acc:!0},{input:"ubrace",tag:"munder",output:"⏟",tex:"underbrace",ttype:15,acc:!0},{input:"obrace",tag:"mover",output:"⏞",tex:"overbrace",ttype:15,acc:!0},{input:"color",tag:"mstyle",ttype:2},{input:"cancel",tag:"menclose",output:"cancel",tex:null,ttype:1},{input:"bb",tag:"mstyle",atname:"mathvariant",atval:"bold",output:"bb",tex:null,ttype:1},{input:"mathbf",tag:"mstyle",atname:"mathvariant",atval:"bold",output:"mathbf",tex:null,ttype:1},{input:"sf",tag:"mstyle",atname:"mathvariant",atval:"sans-serif",output:"sf",tex:null,ttype:1},{input:"mathsf",tag:"mstyle",atname:"mathvariant",atval:"sans-serif",output:"mathsf",tex:null,ttype:1},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:1,codes:o},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:1,codes:o},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:1,codes:r},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:1,codes:r},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"-tex-calligraphic",output:"mathcal",tex:null,ttype:1,codes:r},{input:"tt",tag:"mstyle",atname:"mathvariant",atval:"monospace",output:"tt",tex:null,ttype:1},{input:"mathtt",tag:"mstyle",atname:"mathvariant",atval:"monospace",output:"mathtt",tex:null,ttype:1},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:1,codes:i},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:1,codes:i}];e.getFunctions=function(){for(var t=e.AMsymbols.filter((function(t){return t.func})),n=[],r=0;r<(null==t?void 0:t.length);r++)n.push(t[r].input);return n};var a=(0,e.getFunctions)();e.regExpIsFunction=new RegExp("(?:"+a.join("|")+")$");e.findAmSymbolByTag=function(t,n){return e.AMsymbols.find((function(e){return"mo"===t||"mi"===t?("mo"===e.tag||"mi"===e.tag)&&e.output===n:e.tag===t&&e.output===n}))};e.findAmSymbolByTagStretchy=function(t,n){return e.AMsymbols.find((function(e){return"mo"===t||"mi"===t?("mo"===e.tag||"mi"===e.tag)&&e.output===n&&e.stretchy:e.tag===t&&e.output===n&&e.stretchy}))}},18:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.formatLinearFromAscii=e.replaceUnicodeWhitespace=e.hasAnyWhitespace=e.isWrappedWithParens=e.needBrackets=e.needsParensForFollowingDivision=e.findRootSymbol=e.findAmSymbolsToLinear=e.replaceScripts=e.rootSymbols=e.amSymbolsToLinear=void 0;var r=n(1635),i=n(8311),o=n(3768),a=/([\p{L}\p{N}]|[)\]}]|[!′″‴%°])$/u,s=/^([\p{L}\p{N}]|[\(\[\{]|[!′″‴%°])/u,l=/\p{White_Space}/gu,T=/^\s*[234]\s*$/;e.amSymbolsToLinear=[{input:"hat",output:"̂",outputComplex:"ˆ"},{input:"widehat",output:"̂",outputComplex:"ˆ"},{input:"widetilde",output:"̃",outputComplex:" ̃"},{input:"tilde",output:"̃",outputComplex:" ̃"},{input:"vec",output:"⃗",outputComplex:" ⃗"},{input:"bar",output:"̄",outputComplex:"¯"},{input:"breve",output:"̆",outputComplex:" ̆"},{input:"˘",output:"̆",outputComplex:" ̆"},{input:"‾",output:"̄",outputComplex:"¯"},{input:"˙",output:"̇",outputComplex:" ̇"},{input:"¨",output:"̈",outputComplex:" ̈"},{input:"ˇ",output:"̌",outputComplex:" ̌"},{input:"`",output:"̀",outputComplex:" ̀"},{input:"´",output:"́",outputComplex:" ́"},{input:"′",output:"′",outputComplex:"′"},{input:"′′",output:"′′",outputComplex:"′′"},{input:"←",output:"⃖",outputComplex:" ⃖"},{input:"harr",output:"⃡",outputComplex:" ⃡",tag:"mover"},{input:"↔",output:"⃡",outputComplex:" ⃡",tag:"mover"},{input:"⏞",output:"⏞",outputComplex:"⏞",isFirst:!0},{input:"obrace",output:"⏞",outputComplex:"⏞",isFirst:!0},{input:"⏟",output:"⏟",outputComplex:"⏟",isFirst:!0},{input:"ubrace",output:"⏟",outputComplex:"⏟",isFirst:!0},{input:"ul",output:"̲",outputComplex:"̲",isFirst:!0},{input:"―",output:"▁",outputComplex:"▁",isFirst:!0},{input:"∘",output:"°",outputComplex:"°",tag:"msup"},{input:"˚",output:"̊",outputComplex:"̊",tag:"mover"},{input:"⃛",output:"⃛",outputComplex:"⃛",tag:"mover"}],e.rootSymbols=[{val:2,output:"√"},{val:3,output:"∛"},{val:4,output:"∜"}];var Q={0:"⁰",1:"¹",2:"²",3:"³",4:"⁴",5:"⁵",6:"⁶",7:"⁷",8:"⁸",9:"⁹","+":"⁺","-":"⁻","−":"⁻","=":"⁼","(":"⁽",")":"⁾",i:"ⁱ",n:"ⁿ",a:"ᵃ",b:"ᵇ",c:"ᶜ",d:"ᵈ",e:"ᵉ",f:"ᶠ",g:"ᵍ",h:"ʰ",j:"ʲ",k:"ᵏ",l:"ˡ",m:"ᵐ",o:"ᵒ",p:"ᵖ",r:"ʳ",s:"ˢ",t:"ᵗ",u:"ᵘ",v:"ᵛ",w:"ʷ",x:"ˣ",y:"ʸ",z:"ᶻ",A:"ᴬ",B:"ᴮ",D:"ᴰ",E:"ᴱ",G:"ᴳ",H:"ᴴ",I:"ᴵ",J:"ᴶ",K:"ᴷ",L:"ᴸ",M:"ᴹ",N:"ᴺ",O:"ᴼ",P:"ᴾ",R:"ᴿ",T:"ᵀ",U:"ᵁ",V:"ⱽ",W:"ᵂ","′":"′"," ":" "},c={0:"₀",1:"₁",2:"₂",3:"₃",4:"₄",5:"₅",6:"₆",7:"₇",8:"₈",9:"₉","+":"₊","-":"₋","−":"₋","=":"₌","(":"₍",")":"₎",a:"ₐ",e:"ₑ",h:"ₕ",i:"ᵢ",j:"ⱼ",k:"ₖ",l:"ₗ",m:"ₘ",n:"ₙ",o:"ₒ",p:"ₚ",r:"ᵣ",s:"ₛ",t:"ₜ",u:"ᵤ",v:"ᵥ",x:"ₓ"," ":" "},u=function(t,e){var n,i,o="";try{for(var a=r.__values(t),s=a.next();!s.done;s=a.next()){var l=e[s.value];if(!l)return{ok:!1,out:""};o+=l}}catch(t){n={error:t}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}return{ok:!0,out:o}};e.replaceScripts=function(t,e){if(void 0===e&&(e="sup"),!t)return"";if(!(t=t.trim()))return"";var n=u(t,"sup"===e?Q:c);return n.ok&&n.out?n.out:""};e.findAmSymbolsToLinear=function(t,n){void 0===n&&(n="");var r=null;return n&&(r=e.amSymbolsToLinear.find((function(e){return e.tag===n&&e.input===t})))?r:e.amSymbolsToLinear.find((function(e){return e.input===t}))};e.findRootSymbol=function(t){if(!t)return"";if(T.test(t)){var n=Number(t),r=e.rootSymbols.find((function(t){return t.val===n}));return r?r.output:""}var i=(0,e.replaceScripts)(t);return i?" "+i+e.rootSymbols[0].output:""};e.needsParensForFollowingDivision=function(t){if(!t)return!1;var e=Array.from(t.trimEnd()).pop();return!!e&&a.test(e)};e.needBrackets=function(t,e,n){var r,a;void 0===n&&(n=!1);try{if((0,i.isLastChild)(e))return!1;var l=e.parent.childNodes.findIndex((function(t){return t===e})),T=e.parent.childNodes[l+1],Q=t.visitNode(T,"");if(n)if(T.attributes.get("isFunction")||o.regExpIsFunction.test(Q.linear.trim())||"mo"===(null==T?void 0:T.kind)&&-1===(null==T?void 0:T.texClass))return!1;if(null===(r=Q.linear)||void 0===r?void 0:r.trim()){var c=null!==(a=Array.from(Q.linear.trimStart())[0])&&void 0!==a?a:"";return!!c&&s.test(c)}return!1}catch(t){return!1}};e.isWrappedWithParens=function(t){if(!t)return!1;var e=t.trim();if(!e.startsWith("(")||!e.endsWith(")"))return!1;for(var n=0,r=0;r<e.length;r++){var i=e[r];if("("===i)n++;else if(")"===i){if(0===--n&&r!==e.length-1)return!1;if(n<0)return!1}}return 0===n};e.hasAnyWhitespace=function(t){return t.replace(l,"").length!==t.length};e.replaceUnicodeWhitespace=function(t){return t.replace(l," ")};e.formatLinearFromAscii=function(t,n,r){void 0===r&&(r="");var i=(0,e.findAmSymbolsToLinear)(t,r);if(!i)return"";var o=(null!=n?n:"").trim(),a=o.length>1?"(".concat(o,")"):o;return i.isFirst?i.output+a:a+(o.length>1?i.outputComplex:i.output)}},8155:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.SerializedAsciiVisitor=void 0;var r=n(1635),i=n(6677),o=n(8446),a=n(3702),s=n(3768),l=n(18),T=function(t){function e(e){var n=t.call(this)||this;return n.options=null,n.setChildInheritedAttribute=function(t,e){var n,i,o;try{var a=(null==t?void 0:t.attributes)?null===(o=null==t?void 0:t.attributes)||void 0===o?void 0:o.getAllInherited():null;if(!(a&&a.hasOwnProperty(e)&&t.childNodes&&t.childNodes.length))return;try{for(var s=r.__values(t.childNodes),l=s.next();!l.done;l=s.next()){var T=l.value;T.attributes&&T.attributes.setInherited(e,a[e])}}catch(t){n={error:t}}finally{try{l&&!l.done&&(i=s.return)&&i.call(s)}finally{if(n)throw n.error}}}catch(t){console.log("[MMD]=>error=>",t)}},n.options=e,n}return r.__extends(e,t),e.prototype.visitTree=function(t){return this.visitNode(t,"")},e.prototype.visitNode=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];this.setChildInheritedAttribute(t,"toTsv"),this.setChildInheritedAttribute(t,"toCsv"),this.setChildInheritedAttribute(t,"toMd"),this.setChildInheritedAttribute(t,"flattenSup");var i=this.nodeHandlers.get(t.kind)||this.visitDefault;return i.call.apply(i,r.__spreadArray([this,t],r.__read(e),!1))},e.prototype.visitTextNode=function(t,e){var n=(0,a.initAsciiData)();try{var r=t.getText();return n=(0,a.AddToAsciiData)(n,{ascii:r,linear:r})}catch(t){return console.error("mml => visitTextNode =>",t),n}},e.prototype.visitXMLNode=function(t,e){var n=(0,a.initAsciiData)();try{var r=e+t.getSerializedXML();return n=(0,a.AddToAsciiData)(n,{ascii:r,linear:r})}catch(t){return console.error("mml => visitXMLNode =>",t),n}},e.prototype.needsGrouping=function(t){try{if(t.parent&&("math"===t.parent.kind||"mstyle"===t.parent.kind||"mtable"===t.parent.kind||"mtr"===t.parent.kind||"mtd"===t.parent.kind||"menclose"===t.parent.kind))return!1;if(this.options.extraBrackets&&t.parent.parent&&("msup"===t.parent.parent.kind||"msub"===t.parent.parent.kind||"msubsup"===t.parent.parent.kind||"mover"===t.parent.parent.kind||"munder"===t.parent.parent.kind||"munderover"===t.parent.parent.kind))return!1;if("TeXAtom"===t.parent.kind&&"inferredMrow"===t.parent.parent.kind)return!1;if(t.childNodes&&1===t.childNodes.length&&t.childNodes[0].childNodes&&1===t.childNodes[0].childNodes.length)return!1;if(t.properties&&"("===t.properties.open&&")"===t.properties.close)return!1;var e=t.childNodes[0];return 1!=t.childNodes.length||"mtext"!=e.kind}catch(t){return!1}},e.prototype.needsGroupingStyle=function(t){try{if(t.childNodes.length<2)return null;var e=t.childNodes[0],n=this.getAttributes(e);if(!n||!n.mathvariant||!n.hasOwnProperty("mathvariant"))return null;for(var r=1;r<t.childNodes.length;r++){var i=this.getAttributes(t.childNodes[r]);if(!i||i.mathvariant!==n.mathvariant)return null}return n}catch(t){return null}},e.prototype.visitInferredMrowNode=function(t,e){var n,r,i=this,o=(0,a.initAsciiData)();try{var T=t.childNodes.findIndex((function(t){return"menclose"===t.kind})),Q=t.childNodes.find((function(t){return"msub"===t.kind}));if(T>-1){var c=t.childNodes[T],u=this.getAttributes(c),d=c.attributes.get("isFrame");"mtable"===(null===(r=null===(n=c.childNodes[0])||void 0===n?void 0:n.childNodes[0])||void 0===r?void 0:r.kind)&&(d=!0);var h=this.getAttributesDefaults(c);if(!u.notation&&"longdiv"===h.notation||-1!==u.notation.toString().indexOf("longdiv")){if(0===T){var p=this.visitNode(c,"");o=(0,a.AddToAsciiData)(o,{ascii:"((".concat(p.ascii,")/())"),linear:"((".concat(p.linear,")/())"),ascii_tsv:"((".concat(p.ascii_tsv,")/())"),ascii_csv:"((".concat(p.ascii_csv,")/())"),ascii_md:"((".concat(p.ascii_md,")/())")})}else{for(var m=[],f=1;T-f>=0;){var y=t.childNodes[T-f];m.unshift(y),f++}if(T-m.length>0)for(var g=0;g<T-m.length;g++){p=this.visitNode(t.childNodes[g],e);o=(0,a.AddToAsciiData)(o,{ascii:p.ascii,linear:p.linear,ascii_tsv:p.ascii_tsv,ascii_csv:p.ascii_csv,ascii_md:p.ascii_md})}var L=this.visitNode(c,"");if(o=(0,a.AddToAsciiData)(o,{ascii:"((",linear:"(("}),o=(0,a.AddToAsciiData)(o,{ascii:L.ascii,linear:L.linear,ascii_tsv:L.ascii_tsv,ascii_csv:L.ascii_csv,ascii_md:L.ascii_md}),o=(0,a.AddToAsciiData)(o,{ascii:")/(",linear:")/("}),m.forEach((function(t){var e=i.visitNode(t,"");o=(0,a.AddToAsciiData)(o,{ascii:e.ascii,linear:e.linear,ascii_tsv:e.ascii_tsv,ascii_csv:e.ascii_csv,ascii_md:e.ascii_md})})),o=(0,a.AddToAsciiData)(o,{ascii:"))",linear:"))"}),T<t.childNodes.length-1)for(var b=T+1;b<t.childNodes.length;b++){p=this.visitNode(t.childNodes[b],e);o=(0,a.AddToAsciiData)(o,{ascii:p.ascii,linear:p.linear,ascii_tsv:p.ascii_tsv,ascii_csv:p.ascii_csv,ascii_md:p.ascii_md})}}return o}if(!d&&(!u.notation&&"bottom"===h.notation||-1!==u.notation.toString().indexOf("bottom"))){if(0===T){p=this.visitNode(c,"");o=(0,a.AddToAsciiData)(o,{ascii:"(()/(",linear:"(()/("}),o=(0,a.AddToAsciiData)(o,p),o=(0,a.AddToAsciiData)(o,{ascii:"))",linear:"))"})}else{for(m=[],f=1;T-f>=0;){y=t.childNodes[T-f];m.unshift(y),f++}if(T-m.length>0)for(var v=0;v<T-m.length;v++){var x=this.visitNode(t.childNodes[v],e);o=(0,a.AddToAsciiData)(o,x)}o=(0,a.AddToAsciiData)(o,{ascii:"((",linear:"(("}),m.forEach((function(t){var e=i.visitNode(t,"");o=(0,a.AddToAsciiData)(o,e)})),o=(0,a.AddToAsciiData)(o,{ascii:")/(",linear:")/("});p=this.visitNode(c,"");if(o=(0,a.AddToAsciiData)(o,p),o=(0,a.AddToAsciiData)(o,{ascii:"))",linear:"))"}),T<t.childNodes.length-1)for(var _=T+1;_<t.childNodes.length;_++){var H=this.visitNode(t.childNodes[_],e);o=(0,a.AddToAsciiData)(o,H)}}return o}}var w=this.needsGrouping(t),O=w?this.needsGroupingStyle(t):null,M=t.parent&&"TeXAtom"===t.parent.kind&&t.parent.Parent&&"mtd"===t.parent.Parent.kind&&t.childNodes.length>1;o=(0,a.AddToAsciiData)(o,{ascii:M&&Q?"{:":"",linear:""}),w&&!O&&(o=(0,a.AddToAsciiData)(o,{ascii:"(",linear:"("}));for(var S="",E="",A=null,C=!1,V=!1,N=0;N<t.childNodes.length;N++){y=t.childNodes[N],p=this.visitNode(y,e);if(C){var I=(0,a.getFunctionNameFromAscii)(p.ascii,y);I&&!s.regExpIsFunction.test(I)||(o=(0,a.AddToAsciiData)(o,{ascii:")",linear:")"}),C=!1)}if(V&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:")"}),V=!1),"mfrac"===(null==y?void 0:y.kind))if(null==S?void 0:S.trim())A.attributes.get("isFunction")||s.regExpIsFunction.test(S.trim())||"mo"===(null==A?void 0:A.kind)&&-1===(null==A?void 0:A.texClass)?(o=(0,a.AddToAsciiData)(o,{ascii:"(",linear:"("}),C=!0,(0,l.needBrackets)(this,y,!0)&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:"("}),V=!0)):((0,l.needsParensForFollowingDivision)(E)||(0,l.needBrackets)(this,y))&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:"("}),V=!0);else(0,l.needBrackets)(this,y)&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:"("}),V=!0);S=(o=(0,a.AddToAsciiData)(o,p)).ascii,E=o.linear,A=y}return C&&(o=(0,a.AddToAsciiData)(o,{ascii:")",linear:")"})),V&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:")"})),w&&!O&&(o=(0,a.AddToAsciiData)(o,{ascii:")",linear:")"})),o=(0,a.AddToAsciiData)(o,{ascii:M&&Q?":}":"",linear:""})}catch(t){return o}},e.prototype.visitTeXAtomNode=function(t,e){var n,r,i,s,l,T=(0,a.initAsciiData)();try{var Q=this.childNodeMml(t,e+" ","\n");return(0,o.needFirstSpaceBeforeTeXAtom)(t)&&(T=(0,a.AddToAsciiData)(T,{ascii:" ",linear:" "})),T=(0,a.AddToAsciiData)(T,{ascii:(null===(n=Q.ascii)||void 0===n?void 0:n.match(/\S/))?Q.ascii:"",linear:(null===(r=Q.linear)||void 0===r?void 0:r.match(/\S/))?Q.linear:"",ascii_tsv:(null===(i=Q.ascii_tsv)||void 0===i?void 0:i.match(/\S/))?Q.ascii_tsv:"",ascii_csv:(null===(s=Q.ascii_csv)||void 0===s?void 0:s.match(/\S/))?Q.ascii_csv:"",ascii_md:(null===(l=Q.ascii_md)||void 0===l?void 0:l.match(/\S/))?Q.ascii_md:""}),(0,o.needLastSpaceAfterTeXAtom)(t)&&(T=(0,a.AddToAsciiData)(T,{ascii:" ",linear:" "})),T}catch(t){return console.error("mml => visitTeXAtomNode =>",t),T}},e.prototype.visitAnnotationNode=function(t,e){var n=(0,a.initAsciiData)();try{var r=this.childNodeMml(t,"","");return n=(0,a.AddToAsciiData)(n,{ascii:e+"<annotation"+this.getAttributes(t)+">"+r.ascii+"</annotation>",linear:e+"<annotation"+this.getAttributes(t)+">"+r.ascii+"</annotation>",ascii_tsv:e+"<annotation"+this.getAttributes(t)+">"+r.ascii_tsv+"</annotation>",ascii_csv:e+"<annotation"+this.getAttributes(t)+">"+r.ascii_csv+"</annotation>",ascii_md:e+"<annotation"+this.getAttributes(t)+">"+r.ascii_md+"</annotation>"})}catch(t){return console.error("mml => visitAnnotationNode =>",t),n}},e.prototype.visitDefault=function(t,e){return this.childNodeMml(t," ","")},e.prototype.childNodeMml=function(t,e,n){var r=o.handle.bind(this),i=(0,a.initAsciiData)();try{if("mover"===t.kind&&t.childNodes.length>1&&"TeXAtom"===t.childNodes[0].kind&&"TeXAtom"===t.childNodes[1].kind){var s=t.childNodes[0];s.properties.needBrackets=!0;var l=r(s,this),T=r(t.childNodes[1],this);i=(0,a.AddToAsciiData)(i,l),i=(0,a.AddToAsciiData)(i,{ascii:"^",linear:"^"}),i=(0,a.AddToAsciiData)(i,{ascii:"(",linear:"("}),i=(0,a.AddToAsciiData)(i,T),i=(0,a.AddToAsciiData)(i,{ascii:")",linear:")"})}else{var Q=r(t,this);i=(0,a.AddToAsciiData)(i,Q)}return i}catch(t){return i}},e.prototype.getAttributes=function(t){return t.attributes.getAllAttributes()},e.prototype.getAttributesDefaults=function(t){return t.attributes.getAllDefaults()},e}(i.MmlVisitor);e.SerializedAsciiVisitor=T},8311:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isLastChild=e.isFirstChild=void 0;e.isFirstChild=function(t){return t.parent&&t.parent.childNodes[0]&&t.parent.childNodes[0]===t};e.isLastChild=function(t){return t.parent&&t.parent.childNodes&&t.parent.childNodes[t.parent.childNodes.length-1]===t}},8871:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getMathDimensions=e.getNodeAttributes=void 0;var r=n(5450),i=function(t,e){var n;return t instanceof r.LiteElement?(null===(n=t.attributes)||void 0===n?void 0:n[e])||"":(t instanceof HTMLElement||t instanceof SVGSVGElement)&&t.getAttribute(e)||""},o=function(t,e){var n,i;return t instanceof r.LiteElement?(null===(n=t.styles)||void 0===n?void 0:n.get(e))||"":(t instanceof HTMLElement||t instanceof SVGSVGElement)&&(null===(i=t.style)||void 0===i?void 0:i[e])||""};e.getNodeAttributes=function(t){var e,n={containerWidth:"",svgViewBox:"",svgWidth:"",svgMinWidth:"",svgHeight:""};try{if(t instanceof r.LiteElement)n.containerWidth=i(t,"width"),(a=(null===(e=t.children)||void 0===e?void 0:e.length)?t.children.find((function(t){return"svg"===t.kind})):null)&&(n.svgWidth=i(a,"width"),n.svgMinWidth=o(a,"min-width"),n.svgHeight=i(a,"height"),n.svgViewBox=i(a,"viewBox"));else if(t instanceof HTMLElement){n.containerWidth=i(t,"width");var a,s=t.getElementsByTagName("svg");(a=s.length?s[0]:null)&&(n.svgWidth=i(a,"width"),n.svgMinWidth=o(a,"min-width"),n.svgHeight=i(a,"height"),n.svgViewBox=i(a,"viewBox"))}return n}catch(t){return console.log("[ERROR]=>[getNodeAttributes]=>",t),n}};e.getMathDimensions=function(t){var n=(0,e.getNodeAttributes)(t),r=n.containerWidth,i=n.svgViewBox,o=n.svgWidth,a=n.svgMinWidth,s=n.svgHeight,l=function(t){var e=t?Number(t.replace(/ex/g,"")):0;return isNaN(e)?0:e};"100%"===o&&(o=a);var T=l(o),Q=l(s),c=i?i.split(" "):[];return{containerWidth:r,widthEx:T,heightEx:Q,viewBoxHeight:(null==c?void 0:c.length)>3?Math.abs(Number(c[1]))/1e3:0,viewBoxHeightAndDepth:(null==c?void 0:c.length)>3?Math.abs(Number(c[3]))/1e3:0}}},5707:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.addAriaToMathHTML=e.addSpeechToMathContainer=e.getSpeech=void 0;e.getSpeech=function(t,e){try{return t.toSpeech(e)}catch(t){return console.error("ERROR=>[getSpeech]=>"+t),""}};e.addSpeechToMathContainer=function(t,n,r){if(!n.hasAttribute("aria-label")){var i=n.querySelector("mjx-assistive-mml");if(i){var o=(0,e.getSpeech)(t,i.innerHTML);if(o){n.setAttribute("aria-label",o),n.setAttribute("role","math"),n.setAttribute("tabindex","0"),n.removeAttribute("aria-labelledby");var a=r.createElement("speech");a.textContent=o,a.style.display="none";var s=n.parentElement;s?s.appendChild(a):console.warn("[addSpeechToMathContainer] mjx-container has no parentElement — speech element not appended")}}}};e.addAriaToMathHTML=function(t,n){try{var r=(new DOMParser).parseFromString(n,"text/html"),i=r?r.querySelectorAll("mjx-container"):null;if(!i||!i.length)return n;for(var o=0;o<i.length;o++)(0,e.addSpeechToMathContainer)(t,i[o],r);return r.body.innerHTML}catch(t){return console.error("ERROR=>[addAriaToMathHTML]=>"+t),n}}},4666:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.loadSreAsync=e.loadSre=void 0;var r=n(1635),i=n(9453);e.loadSre=function(t){void 0===t&&(t={});var e=Object.assign({},{domain:"mathspeak"},t);return i.setupEngine(e),i};e.loadSreAsync=function(t){return void 0===t&&(t={}),r.__awaiter(void 0,void 0,void 0,(function(){var e;return r.__generator(this,(function(n){switch(n.label){case 0:return e=r.__assign({domain:"mathspeak",locale:"en"},t),i.setupEngine(e),[4,i.engineReady()];case 1:return n.sent(),[2,i]}}))}))}},1635:(t,e,n)=>{"use strict";n.r(e),n.d(e,{__addDisposableResource:()=>N,__assign:()=>o,__asyncDelegator:()=>H,__asyncGenerator:()=>_,__asyncValues:()=>w,__await:()=>x,__awaiter:()=>h,__classPrivateFieldGet:()=>A,__classPrivateFieldIn:()=>V,__classPrivateFieldSet:()=>C,__createBinding:()=>m,__decorate:()=>s,__disposeResources:()=>P,__esDecorate:()=>T,__exportStar:()=>f,__extends:()=>i,__generator:()=>p,__importDefault:()=>E,__importStar:()=>S,__makeTemplateObject:()=>O,__metadata:()=>d,__param:()=>l,__propKey:()=>c,__read:()=>g,__rest:()=>a,__runInitializers:()=>Q,__setFunctionName:()=>u,__spread:()=>L,__spreadArray:()=>v,__spreadArrays:()=>b,__values:()=>y,default:()=>R});var r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},r(t,e)};function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var o=function(){return o=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},o.apply(this,arguments)};function a(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(t);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]])}return n}function s(t,e,n,r){var i,o=arguments.length,a=o<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var s=t.length-1;s>=0;s--)(i=t[s])&&(a=(o<3?i(a):o>3?i(e,n,a):i(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}function l(t,e){return function(n,r){e(n,r,t)}}function T(t,e,n,r,i,o){function a(t){if(void 0!==t&&"function"!=typeof t)throw new TypeError("Function expected");return t}for(var s,l=r.kind,T="getter"===l?"get":"setter"===l?"set":"value",Q=!e&&t?r.static?t:t.prototype:null,c=e||(Q?Object.getOwnPropertyDescriptor(Q,r.name):{}),u=!1,d=n.length-1;d>=0;d--){var h={};for(var p in r)h[p]="access"===p?{}:r[p];for(var p in r.access)h.access[p]=r.access[p];h.addInitializer=function(t){if(u)throw new TypeError("Cannot add initializers after decoration has completed");o.push(a(t||null))};var m=(0,n[d])("accessor"===l?{get:c.get,set:c.set}:c[T],h);if("accessor"===l){if(void 0===m)continue;if(null===m||"object"!=typeof m)throw new TypeError("Object expected");(s=a(m.get))&&(c.get=s),(s=a(m.set))&&(c.set=s),(s=a(m.init))&&i.unshift(s)}else(s=a(m))&&("field"===l?i.unshift(s):c[T]=s)}Q&&Object.defineProperty(Q,r.name,c),u=!0}function Q(t,e,n){for(var r=arguments.length>2,i=0;i<e.length;i++)n=r?e[i].call(t,n):e[i].call(t);return r?n:void 0}function c(t){return"symbol"==typeof t?t:"".concat(t)}function u(t,e,n){return"symbol"==typeof e&&(e=e.description?"[".concat(e.description,"]"):""),Object.defineProperty(t,"name",{configurable:!0,value:n?"".concat(n," ",e):e})}function d(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)}function h(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))}function p(t,e){var n,r,i,o,a={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(s){return function(l){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,s[0]&&(a=0)),a;)try{if(n=1,r&&(i=2&s[0]?r.return:s[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,s[1])).done)return i;switch(r=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,r=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(i=a.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){a.label=s[1];break}if(6===s[0]&&a.label<i[1]){a.label=i[1],i=s;break}if(i&&a.label<i[2]){a.label=i[2],a.ops.push(s);break}i[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],r=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,l])}}}var m=Object.create?function(t,e,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(e,n);i&&!("get"in i?!e.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return e[n]}}),Object.defineProperty(t,r,i)}:function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]};function f(t,e){for(var n in t)"default"===n||Object.prototype.hasOwnProperty.call(e,n)||m(e,t,n)}function y(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function g(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=o.next()).done;)a.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return a}function L(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(g(arguments[e]));return t}function b(){for(var t=0,e=0,n=arguments.length;e<n;e++)t+=arguments[e].length;var r=Array(t),i=0;for(e=0;e<n;e++)for(var o=arguments[e],a=0,s=o.length;a<s;a++,i++)r[i]=o[a];return r}function v(t,e,n){if(n||2===arguments.length)for(var r,i=0,o=e.length;i<o;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}function x(t){return this instanceof x?(this.v=t,this):new x(t)}function _(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=n.apply(t,e||[]),o=[];return r={},a("next"),a("throw"),a("return"),r[Symbol.asyncIterator]=function(){return this},r;function a(t){i[t]&&(r[t]=function(e){return new Promise((function(n,r){o.push([t,e,n,r])>1||s(t,e)}))})}function s(t,e){try{(n=i[t](e)).value instanceof x?Promise.resolve(n.value.v).then(l,T):Q(o[0][2],n)}catch(t){Q(o[0][3],t)}var n}function l(t){s("next",t)}function T(t){s("throw",t)}function Q(t,e){t(e),o.shift(),o.length&&s(o[0][0],o[0][1])}}function H(t){var e,n;return e={},r("next"),r("throw",(function(t){throw t})),r("return"),e[Symbol.iterator]=function(){return this},e;function r(r,i){e[r]=t[r]?function(e){return(n=!n)?{value:x(t[r](e)),done:!1}:i?i(e):e}:i}}function w(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=y(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,i){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,i,(e=t[n](e)).done,e.value)}))}}}function O(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t}var M=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};function S(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.prototype.hasOwnProperty.call(t,n)&&m(e,t,n);return M(e,t),e}function E(t){return t&&t.__esModule?t:{default:t}}function A(t,e,n,r){if("a"===n&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===n?r:"a"===n?r.call(t):r?r.value:e.get(t)}function C(t,e,n,r,i){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!i)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!i:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?i.call(t,n):i?i.value=n:e.set(t,n),n}function V(t,e){if(null===e||"object"!=typeof e&&"function"!=typeof e)throw new TypeError("Cannot use 'in' operator on non-object");return"function"==typeof t?e===t:t.has(e)}function N(t,e,n){if(null!=e){if("object"!=typeof e&&"function"!=typeof e)throw new TypeError("Object expected.");var r;if(n){if(!Symbol.asyncDispose)throw new TypeError("Symbol.asyncDispose is not defined.");r=e[Symbol.asyncDispose]}if(void 0===r){if(!Symbol.dispose)throw new TypeError("Symbol.dispose is not defined.");r=e[Symbol.dispose]}if("function"!=typeof r)throw new TypeError("Object not disposable.");t.stack.push({value:e,dispose:r,async:n})}else n&&t.stack.push({async:!0});return e}var I="function"==typeof SuppressedError?SuppressedError:function(t,e,n){var r=new Error(n);return r.name="SuppressedError",r.error=t,r.suppressed=e,r};function P(t){function e(e){t.error=t.hasError?new I(e,t.error,"An error was suppressed during disposal."):e,t.hasError=!0}return function n(){for(;t.stack.length;){var r=t.stack.pop();try{var i=r.dispose&&r.dispose.call(r.value);if(r.async)return Promise.resolve(i).then(n,(function(t){return e(t),n()}))}catch(t){e(t)}}if(t.hasError)throw t.error}()}const R={__extends:i,__assign:o,__rest:a,__decorate:s,__param:l,__metadata:d,__awaiter:h,__generator:p,__createBinding:m,__exportStar:f,__values:y,__read:g,__spread:L,__spreadArrays:b,__spreadArray:v,__await:x,__asyncGenerator:_,__asyncDelegator:H,__asyncValues:w,__makeTemplateObject:O,__importStar:S,__importDefault:E,__classPrivateFieldGet:A,__classPrivateFieldSet:C,__classPrivateFieldIn:V,__addDisposableResource:N,__disposeResources:P}}},__webpack_module_cache__={};function __webpack_require__(t){var e=__webpack_module_cache__[t];if(void 0!==e)return e.exports;var n=__webpack_module_cache__[t]={exports:{}};return __webpack_modules__[t].call(n.exports,n,n.exports,__webpack_require__),n.exports}__webpack_require__.d=(t,e)=>{for(var n in e)__webpack_require__.o(e,n)&&!__webpack_require__.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),__webpack_require__.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),__webpack_require__.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var __webpack_exports__=__webpack_require__(7493)})();
33
+ */Object.defineProperty(e,"__esModule",{value:!0}),e.mhchemParser=void 0;var n=function(){function t(){}return t.toTex=function(t,e){return o.go(i.go(t,e),"tex"!==e)},t}();function r(t){var e,n,r={};for(e in t)for(n in t[e]){var i=n.split("|");t[e][n].stateArray=i;for(var o=0;o<i.length;o++)r[i[o]]=[]}for(e in t)for(n in t[e])for(i=t[e][n].stateArray||[],o=0;o<i.length;o++){var a=t[e][n];a.action_=[].concat(a.action_);for(var s=0;s<a.action_.length;s++)"string"==typeof a.action_[s]&&(a.action_[s]={type_:a.action_[s]});for(var l=e.split("|"),T=0;T<l.length;T++)if("*"===i[o]){var Q=void 0;for(Q in r)r[Q].push({pattern:l[T],task:a})}else r[i[o]].push({pattern:l[T],task:a})}return r}e.mhchemParser=n;var i={go:function(t,e){if(!t)return[];void 0===e&&(e="ce");var n,r="0",o={};o.parenthesisLevel=0,t=(t=(t=t.replace(/\n/g," ")).replace(/[\u2212\u2013\u2014\u2010]/g,"-")).replace(/[\u2026]/g,"...");for(var a=10,s=[];;){n!==t?(a=10,n=t):a--;var l=i.stateMachines[e],T=l.transitions[r]||l.transitions["*"];t:for(var Q=0;Q<T.length;Q++){var c=i.patterns.match_(T[Q].pattern,t);if(c){for(var u=T[Q].task,d=0;d<u.action_.length;d++){var h=void 0;if(l.actions[u.action_[d].type_])h=l.actions[u.action_[d].type_](o,c.match_,u.action_[d].option);else{if(!i.actions[u.action_[d].type_])throw["MhchemBugA","mhchem bug A. Please report. ("+u.action_[d].type_+")"];h=i.actions[u.action_[d].type_](o,c.match_,u.action_[d].option)}i.concatArray(s,h)}if(r=u.nextState||r,!(t.length>0))return s;if(u.revisit||(t=c.remainder),!u.toContinue)break t}}if(a<=0)throw["MhchemBugU","mhchem bug U. Please report."]}},concatArray:function(t,e){if(e)if(Array.isArray(e))for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e)},patterns:{patterns:{empty:/^$/,else:/^./,else2:/^./,space:/^\s/,"space A":/^\s(?=[A-Z\\$])/,space$:/^\s$/,"a-z":/^[a-z]/,x:/^x/,x$:/^x$/,i$:/^i$/,letters:/^(?:[a-zA-Z\u03B1-\u03C9\u0391-\u03A9?@]|(?:\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))))+/,"\\greek":/^\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))/,"one lowercase latin letter $":/^(?:([a-z])(?:$|[^a-zA-Z]))$/,"$one lowercase latin letter$ $":/^\$(?:([a-z])(?:$|[^a-zA-Z]))\$$/,"one lowercase greek letter $":/^(?:\$?[\u03B1-\u03C9]\$?|\$?\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega)\s*\$?)(?:\s+|\{\}|(?![a-zA-Z]))$/,digits:/^[0-9]+/,"-9.,9":/^[+\-]?(?:[0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+))/,"-9.,9 no missing 0":/^[+\-]?[0-9]+(?:[.,][0-9]+)?/,"(-)(9.,9)(e)(99)":function(t){var e=t.match(/^(\+\-|\+\/\-|\+|\-|\\pm\s?)?([0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+))?(\((?:[0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+))\))?(?:(?:([eE])|\s*(\*|x|\\times|\u00D7)\s*10\^)([+\-]?[0-9]+|\{[+\-]?[0-9]+\}))?/);return e&&e[0]?{match_:e.slice(1),remainder:t.substr(e[0].length)}:null},"(-)(9)^(-9)":/^(\+\-|\+\/\-|\+|\-|\\pm\s?)?([0-9]+(?:[,.][0-9]+)?|[0-9]*(?:\.[0-9]+)?)\^([+\-]?[0-9]+|\{[+\-]?[0-9]+\})/,"state of aggregation $":function(t){var e=i.patterns.findObserveGroups(t,"",/^\([a-z]{1,3}(?=[\),])/,")","");if(e&&e.remainder.match(/^($|[\s,;\)\]\}])/))return e;var n=t.match(/^(?:\((?:\\ca\s?)?\$[amothc]\$\))/);return n?{match_:n[0],remainder:t.substr(n[0].length)}:null},"_{(state of aggregation)}$":/^_\{(\([a-z]{1,3}\))\}/,"{[(":/^(?:\\\{|\[|\()/,")]}":/^(?:\)|\]|\\\})/,", ":/^[,;]\s*/,",":/^[,;]/,".":/^[.]/,". __* ":/^([.\u22C5\u00B7\u2022]|[*])\s*/,"...":/^\.\.\.(?=$|[^.])/,"^{(...)}":function(t){return i.patterns.findObserveGroups(t,"^{","","","}")},"^($...$)":function(t){return i.patterns.findObserveGroups(t,"^","$","$","")},"^a":/^\^([0-9]+|[^\\_])/,"^\\x{}{}":function(t){return i.patterns.findObserveGroups(t,"^",/^\\[a-zA-Z]+\{/,"}","","","{","}","",!0)},"^\\x{}":function(t){return i.patterns.findObserveGroups(t,"^",/^\\[a-zA-Z]+\{/,"}","")},"^\\x":/^\^(\\[a-zA-Z]+)\s*/,"^(-1)":/^\^(-?\d+)/,"'":/^'/,"_{(...)}":function(t){return i.patterns.findObserveGroups(t,"_{","","","}")},"_($...$)":function(t){return i.patterns.findObserveGroups(t,"_","$","$","")},_9:/^_([+\-]?[0-9]+|[^\\])/,"_\\x{}{}":function(t){return i.patterns.findObserveGroups(t,"_",/^\\[a-zA-Z]+\{/,"}","","","{","}","",!0)},"_\\x{}":function(t){return i.patterns.findObserveGroups(t,"_",/^\\[a-zA-Z]+\{/,"}","")},"_\\x":/^_(\\[a-zA-Z]+)\s*/,"^_":/^(?:\^(?=_)|\_(?=\^)|[\^_]$)/,"{}^":/^\{\}(?=\^)/,"{}":/^\{\}/,"{...}":function(t){return i.patterns.findObserveGroups(t,"","{","}","")},"{(...)}":function(t){return i.patterns.findObserveGroups(t,"{","","","}")},"$...$":function(t){return i.patterns.findObserveGroups(t,"","$","$","")},"${(...)}$__$(...)$":function(t){return i.patterns.findObserveGroups(t,"${","","","}$")||i.patterns.findObserveGroups(t,"$","","","$")},"=<>":/^[=<>]/,"#":/^[#\u2261]/,"+":/^\+/,"-$":/^-(?=[\s_},;\]/]|$|\([a-z]+\))/,"-9":/^-(?=[0-9])/,"- orbital overlap":/^-(?=(?:[spd]|sp)(?:$|[\s,;\)\]\}]))/,"-":/^-/,"pm-operator":/^(?:\\pm|\$\\pm\$|\+-|\+\/-)/,operator:/^(?:\+|(?:[\-=<>]|<<|>>|\\approx|\$\\approx\$)(?=\s|$|-?[0-9]))/,arrowUpDown:/^(?:v|\(v\)|\^|\(\^\))(?=$|[\s,;\)\]\}])/,"\\bond{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\bond{","","","}")},"->":/^(?:<->|<-->|->|<-|<=>>|<<=>|<=>|[\u2192\u27F6\u21CC])/,CMT:/^[CMT](?=\[)/,"[(...)]":function(t){return i.patterns.findObserveGroups(t,"[","","","]")},"1st-level escape":/^(&|\\\\|\\hline)\s*/,"\\,":/^(?:\\[,\ ;:])/,"\\x{}{}":function(t){return i.patterns.findObserveGroups(t,"",/^\\[a-zA-Z]+\{/,"}","","","{","}","",!0)},"\\x{}":function(t){return i.patterns.findObserveGroups(t,"",/^\\[a-zA-Z]+\{/,"}","")},"\\ca":/^\\ca(?:\s+|(?![a-zA-Z]))/,"\\x":/^(?:\\[a-zA-Z]+\s*|\\[_&{}%])/,orbital:/^(?:[0-9]{1,2}[spdfgh]|[0-9]{0,2}sp)(?=$|[^a-zA-Z])/,others:/^[\/~|]/,"\\frac{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\frac{","","","}","{","","","}")},"\\overset{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\overset{","","","}","{","","","}")},"\\underset{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\underset{","","","}","{","","","}")},"\\underbrace{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\underbrace{","","","}_","{","","","}")},"\\color{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\color{","","","}")},"\\color{(...)}{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\color{","","","}","{","","","}")||i.patterns.findObserveGroups(t,"\\color","\\","",/^(?=\{)/,"{","","","}")},"\\ce{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\ce{","","","}")},"\\pu{(...)}":function(t){return i.patterns.findObserveGroups(t,"\\pu{","","","}")},oxidation$:/^(?:[+-][IVX]+|(?:\\pm|\$\\pm\$|\+-|\+\/-)\s*0)$/,"d-oxidation$":/^(?:[+-]?[IVX]+|(?:\\pm|\$\\pm\$|\+-|\+\/-)\s*0)$/,"1/2$":/^[+\-]?(?:[0-9]+|\$[a-z]\$|[a-z])\/[0-9]+(?:\$[a-z]\$|[a-z])?$/,amount:function(t){var e;if(e=t.match(/^(?:(?:(?:\([+\-]?[0-9]+\/[0-9]+\)|[+\-]?(?:[0-9]+|\$[a-z]\$|[a-z])\/[0-9]+|[+\-]?[0-9]+[.,][0-9]+|[+\-]?\.[0-9]+|[+\-]?[0-9]+)(?:[a-z](?=\s*[A-Z]))?)|[+\-]?[a-z](?=\s*[A-Z])|\+(?!\s))/))return{match_:e[0],remainder:t.substr(e[0].length)};var n=i.patterns.findObserveGroups(t,"","$","$","");return n&&(e=n.match_.match(/^\$(?:\(?[+\-]?(?:[0-9]*[a-z]?[+\-])?[0-9]*[a-z](?:[+\-][0-9]*[a-z]?)?\)?|\+|-)\$$/))?{match_:e[0],remainder:t.substr(e[0].length)}:null},amount2:function(t){return this.amount(t)},"(KV letters),":/^(?:[A-Z][a-z]{0,2}|i)(?=,)/,formula$:function(t){if(t.match(/^\([a-z]+\)$/))return null;var e=t.match(/^(?:[a-z]|(?:[0-9\ \+\-\,\.\(\)]+[a-z])+[0-9\ \+\-\,\.\(\)]*|(?:[a-z][0-9\ \+\-\,\.\(\)]+)+[a-z]?)$/);return e?{match_:e[0],remainder:t.substr(e[0].length)}:null},uprightEntities:/^(?:pH|pOH|pC|pK|iPr|iBu)(?=$|[^a-zA-Z])/,"/":/^\s*(\/)\s*/,"//":/^\s*(\/\/)\s*/,"*":/^\s*[*.]\s*/},findObserveGroups:function(t,e,n,r,i,o,a,s,l,T){var Q=function(t,e){if("string"==typeof e)return 0!==t.indexOf(e)?null:e;var n=t.match(e);return n?n[0]:null},c=Q(t,e);if(null===c)return null;if(t=t.substr(c.length),null===(c=Q(t,n)))return null;var u=function(t,e,n){for(var r=0;e<t.length;){var i=t.charAt(e),o=Q(t.substr(e),n);if(null!==o&&0===r)return{endMatchBegin:e,endMatchEnd:e+o.length};if("{"===i)r++;else if("}"===i){if(0===r)throw["ExtraCloseMissingOpen","Extra close brace or missing open brace"];r--}e++}return null}(t,c.length,r||i);if(null===u)return null;var d=t.substring(0,r?u.endMatchEnd:u.endMatchBegin);if(o||a){var h=this.findObserveGroups(t.substr(u.endMatchEnd),o,a,s,l);if(null===h)return null;var p=[d,h.match_];return{match_:T?p.join(""):p,remainder:h.remainder}}return{match_:d,remainder:t.substr(u.endMatchEnd)}},match_:function(t,e){var n=i.patterns.patterns[t];if(void 0===n)throw["MhchemBugP","mhchem bug P. Please report. ("+t+")"];if("function"==typeof n)return i.patterns.patterns[t](e);var r=e.match(n);return r?r.length>2?{match_:r.slice(1),remainder:e.substr(r[0].length)}:{match_:r[1]||r[0],remainder:e.substr(r[0].length)}:null}},actions:{"a=":function(t,e){t.a=(t.a||"")+e},"b=":function(t,e){t.b=(t.b||"")+e},"p=":function(t,e){t.p=(t.p||"")+e},"o=":function(t,e){t.o=(t.o||"")+e},"o=+p1":function(t,e,n){t.o=(t.o||"")+n},"q=":function(t,e){t.q=(t.q||"")+e},"d=":function(t,e){t.d=(t.d||"")+e},"rm=":function(t,e){t.rm=(t.rm||"")+e},"text=":function(t,e){t.text_=(t.text_||"")+e},insert:function(t,e,n){return{type_:n}},"insert+p1":function(t,e,n){return{type_:n,p1:e}},"insert+p1+p2":function(t,e,n){return{type_:n,p1:e[0],p2:e[1]}},copy:function(t,e){return e},write:function(t,e,n){return n},rm:function(t,e){return{type_:"rm",p1:e}},text:function(t,e){return i.go(e,"text")},"tex-math":function(t,e){return i.go(e,"tex-math")},"tex-math tight":function(t,e){return i.go(e,"tex-math tight")},bond:function(t,e,n){return{type_:"bond",kind_:n||e}},"color0-output":function(t,e){return{type_:"color0",color:e}},ce:function(t,e){return i.go(e,"ce")},pu:function(t,e){return i.go(e,"pu")},"1/2":function(t,e){var n=[];e.match(/^[+\-]/)&&(n.push(e.substr(0,1)),e=e.substr(1));var r=e.match(/^([0-9]+|\$[a-z]\$|[a-z])\/([0-9]+)(\$[a-z]\$|[a-z])?$/);return r[1]=r[1].replace(/\$/g,""),n.push({type_:"frac",p1:r[1],p2:r[2]}),r[3]&&(r[3]=r[3].replace(/\$/g,""),n.push({type_:"tex-math",p1:r[3]})),n},"9,9":function(t,e){return i.go(e,"9,9")}},stateMachines:{tex:{transitions:r({empty:{0:{action_:"copy"}},"\\ce{(...)}":{0:{action_:[{type_:"write",option:"{"},"ce",{type_:"write",option:"}"}]}},"\\pu{(...)}":{0:{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},else:{0:{action_:"copy"}}}),actions:{}},ce:{transitions:r({empty:{"*":{action_:"output"}},else:{"0|1|2":{action_:"beginsWithBond=false",revisit:!0,toContinue:!0}},oxidation$:{0:{action_:"oxidation-output"}},CMT:{r:{action_:"rdt=",nextState:"rt"},rd:{action_:"rqt=",nextState:"rdt"}},arrowUpDown:{"0|1|2|as":{action_:["sb=false","output","operator"],nextState:"1"}},uprightEntities:{"0|1|2":{action_:["o=","output"],nextState:"1"}},orbital:{"0|1|2|3":{action_:"o=",nextState:"o"}},"->":{"0|1|2|3":{action_:"r=",nextState:"r"},"a|as":{action_:["output","r="],nextState:"r"},"*":{action_:["output","r="],nextState:"r"}},"+":{o:{action_:"d= kv",nextState:"d"},"d|D":{action_:"d=",nextState:"d"},q:{action_:"d=",nextState:"qd"},"qd|qD":{action_:"d=",nextState:"qd"},dq:{action_:["output","d="],nextState:"d"},3:{action_:["sb=false","output","operator"],nextState:"0"}},amount:{"0|2":{action_:"a=",nextState:"a"}},"pm-operator":{"0|1|2|a|as":{action_:["sb=false","output",{type_:"operator",option:"\\pm"}],nextState:"0"}},operator:{"0|1|2|a|as":{action_:["sb=false","output","operator"],nextState:"0"}},"-$":{"o|q":{action_:["charge or bond","output"],nextState:"qd"},d:{action_:"d=",nextState:"d"},D:{action_:["output",{type_:"bond",option:"-"}],nextState:"3"},q:{action_:"d=",nextState:"qd"},qd:{action_:"d=",nextState:"qd"},"qD|dq":{action_:["output",{type_:"bond",option:"-"}],nextState:"3"}},"-9":{"3|o":{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"3"}},"- orbital overlap":{o:{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"2"},d:{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"2"}},"-":{"0|1|2":{action_:[{type_:"output",option:1},"beginsWithBond=true",{type_:"bond",option:"-"}],nextState:"3"},3:{action_:{type_:"bond",option:"-"}},a:{action_:["output",{type_:"insert",option:"hyphen"}],nextState:"2"},as:{action_:[{type_:"output",option:2},{type_:"bond",option:"-"}],nextState:"3"},b:{action_:"b="},o:{action_:{type_:"- after o/d",option:!1},nextState:"2"},q:{action_:{type_:"- after o/d",option:!1},nextState:"2"},"d|qd|dq":{action_:{type_:"- after o/d",option:!0},nextState:"2"},"D|qD|p":{action_:["output",{type_:"bond",option:"-"}],nextState:"3"}},amount2:{"1|3":{action_:"a=",nextState:"a"}},letters:{"0|1|2|3|a|as|b|p|bp|o":{action_:"o=",nextState:"o"},"q|dq":{action_:["output","o="],nextState:"o"},"d|D|qd|qD":{action_:"o after d",nextState:"o"}},digits:{o:{action_:"q=",nextState:"q"},"d|D":{action_:"q=",nextState:"dq"},q:{action_:["output","o="],nextState:"o"},a:{action_:"o=",nextState:"o"}},"space A":{"b|p|bp":{action_:[]}},space:{a:{action_:[],nextState:"as"},0:{action_:"sb=false"},"1|2":{action_:"sb=true"},"r|rt|rd|rdt|rdq":{action_:"output",nextState:"0"},"*":{action_:["output","sb=true"],nextState:"1"}},"1st-level escape":{"1|2":{action_:["output",{type_:"insert+p1",option:"1st-level escape"}]},"*":{action_:["output",{type_:"insert+p1",option:"1st-level escape"}],nextState:"0"}},"[(...)]":{"r|rt":{action_:"rd=",nextState:"rd"},"rd|rdt":{action_:"rq=",nextState:"rdq"}},"...":{"o|d|D|dq|qd|qD":{action_:["output",{type_:"bond",option:"..."}],nextState:"3"},"*":{action_:[{type_:"output",option:1},{type_:"insert",option:"ellipsis"}],nextState:"1"}},". __* ":{"*":{action_:["output",{type_:"insert",option:"addition compound"}],nextState:"1"}},"state of aggregation $":{"*":{action_:["output","state of aggregation"],nextState:"1"}},"{[(":{"a|as|o":{action_:["o=","output","parenthesisLevel++"],nextState:"2"},"0|1|2|3":{action_:["o=","output","parenthesisLevel++"],nextState:"2"},"*":{action_:["output","o=","output","parenthesisLevel++"],nextState:"2"}},")]}":{"0|1|2|3|b|p|bp|o":{action_:["o=","parenthesisLevel--"],nextState:"o"},"a|as|d|D|q|qd|qD|dq":{action_:["output","o=","parenthesisLevel--"],nextState:"o"}},", ":{"*":{action_:["output","comma"],nextState:"0"}},"^_":{"*":{action_:[]}},"^{(...)}|^($...$)":{"0|1|2|as":{action_:"b=",nextState:"b"},p:{action_:"b=",nextState:"bp"},"3|o":{action_:"d= kv",nextState:"D"},q:{action_:"d=",nextState:"qD"},"d|D|qd|qD|dq":{action_:["output","d="],nextState:"D"}},"^a|^\\x{}{}|^\\x{}|^\\x|'":{"0|1|2|as":{action_:"b=",nextState:"b"},p:{action_:"b=",nextState:"bp"},"3|o":{action_:"d= kv",nextState:"d"},q:{action_:"d=",nextState:"qd"},"d|qd|D|qD":{action_:"d="},dq:{action_:["output","d="],nextState:"d"}},"_{(state of aggregation)}$":{"d|D|q|qd|qD|dq":{action_:["output","q="],nextState:"q"}},"_{(...)}|_($...$)|_9|_\\x{}{}|_\\x{}|_\\x":{"0|1|2|as":{action_:"p=",nextState:"p"},b:{action_:"p=",nextState:"bp"},"3|o":{action_:"q=",nextState:"q"},"d|D":{action_:"q=",nextState:"dq"},"q|qd|qD|dq":{action_:["output","q="],nextState:"q"}},"=<>":{"0|1|2|3|a|as|o|q|d|D|qd|qD|dq":{action_:[{type_:"output",option:2},"bond"],nextState:"3"}},"#":{"0|1|2|3|a|as|o":{action_:[{type_:"output",option:2},{type_:"bond",option:"#"}],nextState:"3"}},"{}^":{"*":{action_:[{type_:"output",option:1},{type_:"insert",option:"tinySkip"}],nextState:"1"}},"{}":{"*":{action_:{type_:"output",option:1},nextState:"1"}},"{...}":{"0|1|2|3|a|as|b|p|bp":{action_:"o=",nextState:"o"},"o|d|D|q|qd|qD|dq":{action_:["output","o="],nextState:"o"}},"$...$":{a:{action_:"a="},"0|1|2|3|as|b|p|bp|o":{action_:"o=",nextState:"o"},"as|o":{action_:"o="},"q|d|D|qd|qD|dq":{action_:["output","o="],nextState:"o"}},"\\bond{(...)}":{"*":{action_:[{type_:"output",option:2},"bond"],nextState:"3"}},"\\frac{(...)}":{"*":{action_:[{type_:"output",option:1},"frac-output"],nextState:"3"}},"\\overset{(...)}":{"*":{action_:[{type_:"output",option:2},"overset-output"],nextState:"3"}},"\\underset{(...)}":{"*":{action_:[{type_:"output",option:2},"underset-output"],nextState:"3"}},"\\underbrace{(...)}":{"*":{action_:[{type_:"output",option:2},"underbrace-output"],nextState:"3"}},"\\color{(...)}{(...)}":{"*":{action_:[{type_:"output",option:2},"color-output"],nextState:"3"}},"\\color{(...)}":{"*":{action_:[{type_:"output",option:2},"color0-output"]}},"\\ce{(...)}":{"*":{action_:[{type_:"output",option:2},"ce"],nextState:"3"}},"\\,":{"*":{action_:[{type_:"output",option:1},"copy"],nextState:"1"}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}],nextState:"3"}},"\\x{}{}|\\x{}|\\x":{"0|1|2|3|a|as|b|p|bp|o|c0":{action_:["o=","output"],nextState:"3"},"*":{action_:["output","o=","output"],nextState:"3"}},others:{"*":{action_:[{type_:"output",option:1},"copy"],nextState:"3"}},else2:{a:{action_:"a to o",nextState:"o",revisit:!0},as:{action_:["output","sb=true"],nextState:"1",revisit:!0},"r|rt|rd|rdt|rdq":{action_:["output"],nextState:"0",revisit:!0},"*":{action_:["output","copy"],nextState:"3"}}}),actions:{"o after d":function(t,e){var n;if((t.d||"").match(/^[1-9][0-9]*$/)){var r=t.d;t.d=void 0,(n=this.output(t)).push({type_:"tinySkip"}),t.b=r}else n=this.output(t);return i.actions["o="](t,e),n},"d= kv":function(t,e){t.d=e,t.dType="kv"},"charge or bond":function(t,e){if(t.beginsWithBond){var n=[];return i.concatArray(n,this.output(t)),i.concatArray(n,i.actions.bond(t,e,"-")),n}t.d=e},"- after o/d":function(t,e,n){var r=i.patterns.match_("orbital",t.o||""),o=i.patterns.match_("one lowercase greek letter $",t.o||""),a=i.patterns.match_("one lowercase latin letter $",t.o||""),s=i.patterns.match_("$one lowercase latin letter$ $",t.o||""),l="-"===e&&(r&&""===r.remainder||o||a||s);!l||t.a||t.b||t.p||t.d||t.q||r||!a||(t.o="$"+t.o+"$");var T=[];return l?(i.concatArray(T,this.output(t)),T.push({type_:"hyphen"})):(r=i.patterns.match_("digits",t.d||""),n&&r&&""===r.remainder?(i.concatArray(T,i.actions["d="](t,e)),i.concatArray(T,this.output(t))):(i.concatArray(T,this.output(t)),i.concatArray(T,i.actions.bond(t,e,"-")))),T},"a to o":function(t){t.o=t.a,t.a=void 0},"sb=true":function(t){t.sb=!0},"sb=false":function(t){t.sb=!1},"beginsWithBond=true":function(t){t.beginsWithBond=!0},"beginsWithBond=false":function(t){t.beginsWithBond=!1},"parenthesisLevel++":function(t){t.parenthesisLevel++},"parenthesisLevel--":function(t){t.parenthesisLevel--},"state of aggregation":function(t,e){return{type_:"state of aggregation",p1:i.go(e,"o")}},comma:function(t,e){var n=e.replace(/\s*$/,"");return n!==e&&0===t.parenthesisLevel?{type_:"comma enumeration L",p1:n}:{type_:"comma enumeration M",p1:n}},output:function(t,e,n){var r;if(t.r){var o=void 0;o="M"===t.rdt?i.go(t.rd,"tex-math"):"T"===t.rdt?[{type_:"text",p1:t.rd||""}]:i.go(t.rd,"ce");var a=void 0;a="M"===t.rqt?i.go(t.rq,"tex-math"):"T"===t.rqt?[{type_:"text",p1:t.rq||""}]:i.go(t.rq,"ce"),r={type_:"arrow",r:t.r,rd:o,rq:a}}else r=[],(t.a||t.b||t.p||t.o||t.q||t.d||n)&&(t.sb&&r.push({type_:"entitySkip"}),t.o||t.q||t.d||t.b||t.p||2===n?t.o||t.q||t.d||!t.b&&!t.p?t.o&&"kv"===t.dType&&i.patterns.match_("d-oxidation$",t.d||"")?t.dType="oxidation":t.o&&"kv"===t.dType&&!t.q&&(t.dType=void 0):(t.o=t.a,t.d=t.b,t.q=t.p,t.a=t.b=t.p=void 0):(t.o=t.a,t.a=void 0),r.push({type_:"chemfive",a:i.go(t.a,"a"),b:i.go(t.b,"bd"),p:i.go(t.p,"pq"),o:i.go(t.o,"o"),q:i.go(t.q,"pq"),d:i.go(t.d,"oxidation"===t.dType?"oxidation":"bd"),dType:t.dType}));for(var s in t)"parenthesisLevel"!==s&&"beginsWithBond"!==s&&delete t[s];return r},"oxidation-output":function(t,e){var n=["{"];return i.concatArray(n,i.go(e,"oxidation")),n.push("}"),n},"frac-output":function(t,e){return{type_:"frac-ce",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"overset-output":function(t,e){return{type_:"overset",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"underset-output":function(t,e){return{type_:"underset",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"underbrace-output":function(t,e){return{type_:"underbrace",p1:i.go(e[0],"ce"),p2:i.go(e[1],"ce")}},"color-output":function(t,e){return{type_:"color",color1:e[0],color2:i.go(e[1],"ce")}},"r=":function(t,e){t.r=e},"rdt=":function(t,e){t.rdt=e},"rd=":function(t,e){t.rd=e},"rqt=":function(t,e){t.rqt=e},"rq=":function(t,e){t.rq=e},operator:function(t,e,n){return{type_:"operator",kind_:n||e}}}},a:{transitions:r({empty:{"*":{action_:[]}},"1/2$":{0:{action_:"1/2"}},else:{0:{action_:[],nextState:"1",revisit:!0}},"${(...)}$__$(...)$":{"*":{action_:"tex-math tight",nextState:"1"}},",":{"*":{action_:{type_:"insert",option:"commaDecimal"}}},else2:{"*":{action_:"copy"}}}),actions:{}},o:{transitions:r({empty:{"*":{action_:[]}},"1/2$":{0:{action_:"1/2"}},else:{0:{action_:[],nextState:"1",revisit:!0}},letters:{"*":{action_:"rm"}},"\\ca":{"*":{action_:{type_:"insert",option:"circa"}}},"\\pu{(...)}":{"*":{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\x{}{}|\\x{}|\\x":{"*":{action_:"copy"}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"{(...)}":{"*":{action_:[{type_:"write",option:"{"},"text",{type_:"write",option:"}"}]}},else2:{"*":{action_:"copy"}}}),actions:{}},text:{transitions:r({empty:{"*":{action_:"output"}},"{...}":{"*":{action_:"text="}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"\\greek":{"*":{action_:["output","rm"]}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:["output","copy"]}},else:{"*":{action_:"text="}}}),actions:{output:function(t){if(t.text_){var e={type_:"text",p1:t.text_};for(var n in t)delete t[n];return e}}}},pq:{transitions:r({empty:{"*":{action_:[]}},"state of aggregation $":{"*":{action_:"state of aggregation"}},i$:{0:{action_:[],nextState:"!f",revisit:!0}},"(KV letters),":{0:{action_:"rm",nextState:"0"}},formula$:{0:{action_:[],nextState:"f",revisit:!0}},"1/2$":{0:{action_:"1/2"}},else:{0:{action_:[],nextState:"!f",revisit:!0}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"{(...)}":{"*":{action_:"text"}},"a-z":{f:{action_:"tex-math"}},letters:{"*":{action_:"rm"}},"-9.,9":{"*":{action_:"9,9"}},",":{"*":{action_:{type_:"insert+p1",option:"comma enumeration S"}}},"\\color{(...)}{(...)}":{"*":{action_:"color-output"}},"\\color{(...)}":{"*":{action_:"color0-output"}},"\\ce{(...)}":{"*":{action_:"ce"}},"\\pu{(...)}":{"*":{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"copy"}},else2:{"*":{action_:"copy"}}}),actions:{"state of aggregation":function(t,e){return{type_:"state of aggregation subscript",p1:i.go(e,"o")}},"color-output":function(t,e){return{type_:"color",color1:e[0],color2:i.go(e[1],"pq")}}}},bd:{transitions:r({empty:{"*":{action_:[]}},x$:{0:{action_:[],nextState:"!f",revisit:!0}},formula$:{0:{action_:[],nextState:"f",revisit:!0}},else:{0:{action_:[],nextState:"!f",revisit:!0}},"-9.,9 no missing 0":{"*":{action_:"9,9"}},".":{"*":{action_:{type_:"insert",option:"electron dot"}}},"a-z":{f:{action_:"tex-math"}},x:{"*":{action_:{type_:"insert",option:"KV x"}}},letters:{"*":{action_:"rm"}},"'":{"*":{action_:{type_:"insert",option:"prime"}}},"${(...)}$__$(...)$":{"*":{action_:"tex-math"}},"{(...)}":{"*":{action_:"text"}},"\\color{(...)}{(...)}":{"*":{action_:"color-output"}},"\\color{(...)}":{"*":{action_:"color0-output"}},"\\ce{(...)}":{"*":{action_:"ce"}},"\\pu{(...)}":{"*":{action_:[{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"copy"}},else2:{"*":{action_:"copy"}}}),actions:{"color-output":function(t,e){return{type_:"color",color1:e[0],color2:i.go(e[1],"bd")}}}},oxidation:{transitions:r({empty:{"*":{action_:"roman-numeral"}},"pm-operator":{"*":{action_:{type_:"o=+p1",option:"\\pm"}}},else:{"*":{action_:"o="}}}),actions:{"roman-numeral":function(t){return{type_:"roman numeral",p1:t.o||""}}}},"tex-math":{transitions:r({empty:{"*":{action_:"output"}},"\\ce{(...)}":{"*":{action_:["output","ce"]}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"{...}|\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"o="}},else:{"*":{action_:"o="}}}),actions:{output:function(t){if(t.o){var e={type_:"tex-math",p1:t.o};for(var n in t)delete t[n];return e}}}},"tex-math tight":{transitions:r({empty:{"*":{action_:"output"}},"\\ce{(...)}":{"*":{action_:["output","ce"]}},"\\pu{(...)}":{"*":{action_:["output",{type_:"write",option:"{"},"pu",{type_:"write",option:"}"}]}},"{...}|\\,|\\x{}{}|\\x{}|\\x":{"*":{action_:"o="}},"-|+":{"*":{action_:"tight operator"}},else:{"*":{action_:"o="}}}),actions:{"tight operator":function(t,e){t.o=(t.o||"")+"{"+e+"}"},output:function(t){if(t.o){var e={type_:"tex-math",p1:t.o};for(var n in t)delete t[n];return e}}}},"9,9":{transitions:r({empty:{"*":{action_:[]}},",":{"*":{action_:"comma"}},else:{"*":{action_:"copy"}}}),actions:{comma:function(){return{type_:"commaDecimal"}}}},pu:{transitions:r({empty:{"*":{action_:"output"}},space$:{"*":{action_:["output","space"]}},"{[(|)]}":{"0|a":{action_:"copy"}},"(-)(9)^(-9)":{0:{action_:"number^",nextState:"a"}},"(-)(9.,9)(e)(99)":{0:{action_:"enumber",nextState:"a"}},space:{"0|a":{action_:[]}},"pm-operator":{"0|a":{action_:{type_:"operator",option:"\\pm"},nextState:"0"}},operator:{"0|a":{action_:"copy",nextState:"0"}},"//":{d:{action_:"o=",nextState:"/"}},"/":{d:{action_:"o=",nextState:"/"}},"{...}|else":{"0|d":{action_:"d=",nextState:"d"},a:{action_:["space","d="],nextState:"d"},"/|q":{action_:"q=",nextState:"q"}}}),actions:{enumber:function(t,e){var n=[];return"+-"===e[0]||"+/-"===e[0]?n.push("\\pm "):e[0]&&n.push(e[0]),e[1]&&(i.concatArray(n,i.go(e[1],"pu-9,9")),e[2]&&(e[2].match(/[,.]/)?i.concatArray(n,i.go(e[2],"pu-9,9")):n.push(e[2])),(e[3]||e[4])&&("e"===e[3]||"*"===e[4]?n.push({type_:"cdot"}):n.push({type_:"times"}))),e[5]&&n.push("10^{"+e[5]+"}"),n},"number^":function(t,e){var n=[];return"+-"===e[0]||"+/-"===e[0]?n.push("\\pm "):e[0]&&n.push(e[0]),i.concatArray(n,i.go(e[1],"pu-9,9")),n.push("^{"+e[2]+"}"),n},operator:function(t,e,n){return{type_:"operator",kind_:n||e}},space:function(){return{type_:"pu-space-1"}},output:function(t){var e,n=i.patterns.match_("{(...)}",t.d||"");n&&""===n.remainder&&(t.d=n.match_);var r=i.patterns.match_("{(...)}",t.q||"");if(r&&""===r.remainder&&(t.q=r.match_),t.d&&(t.d=t.d.replace(/\u00B0C|\^oC|\^{o}C/g,"{}^{\\circ}C"),t.d=t.d.replace(/\u00B0F|\^oF|\^{o}F/g,"{}^{\\circ}F")),t.q){t.q=t.q.replace(/\u00B0C|\^oC|\^{o}C/g,"{}^{\\circ}C"),t.q=t.q.replace(/\u00B0F|\^oF|\^{o}F/g,"{}^{\\circ}F");var o={d:i.go(t.d,"pu"),q:i.go(t.q,"pu")};"//"===t.o?e={type_:"pu-frac",p1:o.d,p2:o.q}:(e=o.d,o.d.length>1||o.q.length>1?e.push({type_:" / "}):e.push({type_:"/"}),i.concatArray(e,o.q))}else e=i.go(t.d,"pu-2");for(var a in t)delete t[a];return e}}},"pu-2":{transitions:r({empty:{"*":{action_:"output"}},"*":{"*":{action_:["output","cdot"],nextState:"0"}},"\\x":{"*":{action_:"rm="}},space:{"*":{action_:["output","space"],nextState:"0"}},"^{(...)}|^(-1)":{1:{action_:"^(-1)"}},"-9.,9":{0:{action_:"rm=",nextState:"0"},1:{action_:"^(-1)",nextState:"0"}},"{...}|else":{"*":{action_:"rm=",nextState:"1"}}}),actions:{cdot:function(){return{type_:"tight cdot"}},"^(-1)":function(t,e){t.rm+="^{"+e+"}"},space:function(){return{type_:"pu-space-2"}},output:function(t){var e=[];if(t.rm){var n=i.patterns.match_("{(...)}",t.rm||"");e=n&&""===n.remainder?i.go(n.match_,"pu"):{type_:"rm",p1:t.rm}}for(var r in t)delete t[r];return e}}},"pu-9,9":{transitions:r({empty:{0:{action_:"output-0"},o:{action_:"output-o"}},",":{0:{action_:["output-0","comma"],nextState:"o"}},".":{0:{action_:["output-0","copy"],nextState:"o"}},else:{"*":{action_:"text="}}}),actions:{comma:function(){return{type_:"commaDecimal"}},"output-0":function(t){var e=[];if(t.text_=t.text_||"",t.text_.length>4){var n=t.text_.length%3;0===n&&(n=3);for(var r=t.text_.length-3;r>0;r-=3)e.push(t.text_.substr(r,3)),e.push({type_:"1000 separator"});e.push(t.text_.substr(0,n)),e.reverse()}else e.push(t.text_);for(var i in t)delete t[i];return e},"output-o":function(t){var e=[];if(t.text_=t.text_||"",t.text_.length>4){var n=t.text_.length-3,r=void 0;for(r=0;r<n;r+=3)e.push(t.text_.substr(r,3)),e.push({type_:"1000 separator"});e.push(t.text_.substr(r))}else e.push(t.text_);for(var i in t)delete t[i];return e}}}}},o={go:function(t,e){if(!t)return"";for(var n="",r=!1,i=0;i<t.length;i++){var a=t[i];"string"==typeof a?n+=a:(n+=o._go2(a),"1st-level escape"===a.type_&&(r=!0))}return e&&!r&&n&&(n="{"+n+"}"),n},_goInner:function(t){return o.go(t,!1)},_go2:function(t){var e;switch(t.type_){case"chemfive":e="";var n={a:o._goInner(t.a),b:o._goInner(t.b),p:o._goInner(t.p),o:o._goInner(t.o),q:o._goInner(t.q),d:o._goInner(t.d)};n.a&&(n.a.match(/^[+\-]/)&&(n.a="{"+n.a+"}"),e+=n.a+"\\,"),(n.b||n.p)&&(e+="{\\vphantom{A}}",e+="^{\\hphantom{"+(n.b||"")+"}}_{\\hphantom{"+(n.p||"")+"}}",e+="\\mkern-1.5mu",e+="{\\vphantom{A}}",e+="^{\\smash[t]{\\vphantom{2}}\\llap{"+(n.b||"")+"}}",e+="_{\\vphantom{2}\\llap{\\smash[t]{"+(n.p||"")+"}}}"),n.o&&(n.o.match(/^[+\-]/)&&(n.o="{"+n.o+"}"),e+=n.o),"kv"===t.dType?((n.d||n.q)&&(e+="{\\vphantom{A}}"),n.d&&(e+="^{"+n.d+"}"),n.q&&(e+="_{\\smash[t]{"+n.q+"}}")):"oxidation"===t.dType?(n.d&&(e+="{\\vphantom{A}}",e+="^{"+n.d+"}"),n.q&&(e+="{\\vphantom{A}}",e+="_{\\smash[t]{"+n.q+"}}")):(n.q&&(e+="{\\vphantom{A}}",e+="_{\\smash[t]{"+n.q+"}}"),n.d&&(e+="{\\vphantom{A}}",e+="^{"+n.d+"}"));break;case"rm":case"roman numeral":e="\\mathrm{"+t.p1+"}";break;case"text":t.p1.match(/[\^_]/)?(t.p1=t.p1.replace(" ","~").replace("-","\\text{-}"),e="\\mathrm{"+t.p1+"}"):e="\\text{"+t.p1+"}";break;case"state of aggregation":e="\\mskip2mu "+o._goInner(t.p1);break;case"state of aggregation subscript":e="\\mskip1mu "+o._goInner(t.p1);break;case"bond":if(!(e=o._getBond(t.kind_)))throw["MhchemErrorBond","mhchem Error. Unknown bond type ("+t.kind_+")"];break;case"frac":var r="\\frac{"+t.p1+"}{"+t.p2+"}";e="\\mathchoice{\\textstyle"+r+"}{"+r+"}{"+r+"}{"+r+"}";break;case"pu-frac":var i="\\frac{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";e="\\mathchoice{\\textstyle"+i+"}{"+i+"}{"+i+"}{"+i+"}";break;case"tex-math":case"1st-level escape":e=t.p1+" ";break;case"frac-ce":e="\\frac{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";break;case"overset":e="\\overset{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";break;case"underset":e="\\underset{"+o._goInner(t.p1)+"}{"+o._goInner(t.p2)+"}";break;case"underbrace":e="\\underbrace{"+o._goInner(t.p1)+"}_{"+o._goInner(t.p2)+"}";break;case"color":e="{\\color{"+t.color1+"}{"+o._goInner(t.color2)+"}}";break;case"color0":e="\\color{"+t.color+"}";break;case"arrow":var a={rd:o._goInner(t.rd),rq:o._goInner(t.rq)},s=o._getArrow(t.r);a.rd||a.rq?"<=>"===t.r||"<=>>"===t.r||"<<=>"===t.r||"<--\x3e"===t.r?(s="\\long"+s,a.rd&&(s="\\overset{"+a.rd+"}{"+s+"}"),a.rq&&(s="<--\x3e"===t.r?"\\underset{\\lower2mu{"+a.rq+"}}{"+s+"}":"\\underset{\\lower6mu{"+a.rq+"}}{"+s+"}"),s=" {}\\mathrel{"+s+"}{} "):(a.rq&&(s+="[{"+a.rq+"}]"),s=" {}\\mathrel{\\x"+(s+="{"+a.rd+"}")+"}{} "):s=" {}\\mathrel{\\long"+s+"}{} ",e=s;break;case"operator":e=o._getOperator(t.kind_);break;case"space":e=" ";break;case"tinySkip":e="\\mkern2mu";break;case"entitySkip":case"pu-space-1":e="~";break;case"pu-space-2":e="\\mkern3mu ";break;case"1000 separator":e="\\mkern2mu ";break;case"commaDecimal":e="{,}";break;case"comma enumeration L":e="{"+t.p1+"}\\mkern6mu ";break;case"comma enumeration M":e="{"+t.p1+"}\\mkern3mu ";break;case"comma enumeration S":e="{"+t.p1+"}\\mkern1mu ";break;case"hyphen":e="\\text{-}";break;case"addition compound":e="\\,{\\cdot}\\,";break;case"electron dot":e="\\mkern1mu \\bullet\\mkern1mu ";break;case"KV x":e="{\\times}";break;case"prime":e="\\prime ";break;case"cdot":e="\\cdot ";break;case"tight cdot":e="\\mkern1mu{\\cdot}\\mkern1mu ";break;case"times":e="\\times ";break;case"circa":e="{\\sim}";break;case"^":e="uparrow";break;case"v":e="downarrow";break;case"ellipsis":e="\\ldots ";break;case"/":e="/";break;case" / ":e="\\,/\\,";break;default:throw["MhchemBugT","mhchem bug T. Please report."]}return e},_getArrow:function(t){switch(t){case"->":case"→":case"⟶":return"rightarrow";case"<-":return"leftarrow";case"<->":return"leftrightarrow";case"<--\x3e":return"leftrightarrows";case"<=>":case"⇌":return"rightleftharpoons";case"<=>>":return"Rightleftharpoons";case"<<=>":return"Leftrightharpoons";default:throw["MhchemBugT","mhchem bug T. Please report."]}},_getBond:function(t){switch(t){case"-":case"1":return"{-}";case"=":case"2":return"{=}";case"#":case"3":return"{\\equiv}";case"~":return"{\\tripledash}";case"~-":return"{\\rlap{\\lower.1em{-}}\\raise.1em{\\tripledash}}";case"~=":case"~--":return"{\\rlap{\\lower.2em{-}}\\rlap{\\raise.2em{\\tripledash}}-}";case"-~-":return"{\\rlap{\\lower.2em{-}}\\rlap{\\raise.2em{-}}\\tripledash}";case"...":return"{{\\cdot}{\\cdot}{\\cdot}}";case"....":return"{{\\cdot}{\\cdot}{\\cdot}{\\cdot}}";case"->":return"{\\rightarrow}";case"<-":return"{\\leftarrow}";case"<":return"{<}";case">":return"{>}";default:throw["MhchemBugT","mhchem bug T. Please report."]}},_getOperator:function(t){switch(t){case"+":return" {}+{} ";case"-":return" {}-{} ";case"=":return" {}={} ";case"<":return" {}<{} ";case">":return" {}>{} ";case"<<":return" {}\\ll{} ";case">>":return" {}\\gg{} ";case"\\pm":return" {}\\pm{} ";case"\\approx":case"$\\approx$":return" {}\\approx{} ";case"v":case"(v)":return" \\downarrow{} ";case"^":case"(^)":return" \\uparrow{} ";default:throw["MhchemBugT","mhchem bug T. Please report."]}}}},5606:t=>{var e,n,r=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===i||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(n){try{return e.call(null,t,0)}catch(n){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:i}catch(t){e=i}try{n="function"==typeof clearTimeout?clearTimeout:o}catch(t){n=o}}();var s,l=[],T=!1,Q=-1;function c(){T&&s&&(T=!1,s.length?l=s.concat(l):Q=-1,l.length&&u())}function u(){if(!T){var t=a(c);T=!0;for(var e=l.length;e;){for(s=l,l=[];++Q<e;)s&&s[Q].run();Q=-1,e=l.length}s=null,T=!1,function(t){if(n===clearTimeout)return clearTimeout(t);if((n===o||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(t);try{return n(t)}catch(e){try{return n.call(null,t)}catch(e){return n.call(this,t)}}}(t)}}function d(t,e){this.fun=t,this.array=e}function h(){}r.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];l.push(new d(t,e)),1!==l.length||T||a(u)},d.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=h,r.addListener=h,r.once=h,r.off=h,r.removeListener=h,r.removeAllListeners=h,r.emit=h,r.prependListener=h,r.prependOnceListener=h,r.listeners=function(t){return[]},r.binding=function(t){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(t){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},9453:function(module,__unused_webpack_exports,__webpack_require__){var __dirname="/",process=__webpack_require__(5606),t;t=()=>(()=>{"use strict";var __webpack_modules__={4601:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractAudioRenderer=void 0;const r=n(3684);e.AbstractAudioRenderer=class{constructor(){this.separator_=" "}setSeparator(t){this.separator_=t}getSeparator(){return"braille"===r.default.getInstance().modality?"":this.separator_}error(t){return null}merge(t){let e="";const n=t.length-1;for(let r,i=0;r=t[i];i++)if(e+=r.speech,i<n){const t=r.attributes.separator;e+=void 0!==t?t:this.getSeparator()}return e}finalize(t){return t}pauseValue(t){let e;switch(t){case"long":e=750;break;case"medium":e=500;break;case"short":e=250;break;default:e=parseInt(t,10)}return Math.floor(e*r.default.getInstance().getRate()/100)}}},2575:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AcssRenderer=void 0;const r=n(9686),i=n(5390),o=n(3778),a=n(9569);class s extends a.MarkupRenderer{markup(t){this.setScaleFunction(-2,2,0,10,0);const e=o.personalityMarkup(t),n=[],r={open:[]};let i=null,a=!1;for(let t,s=0;t=e[s];s++){if(o.isMarkupElement(t)){o.mergeMarkup(r,t);continue}if(o.isPauseElement(t)){a&&(i=o.mergePause(i,t,Math.max));continue}const e='"'+this.merge(t.span)+'"';a=!0,i&&(n.push(this.pause(i)),i=null);const s=this.prosody_(r);n.push(s?"(text ("+s+") "+e+")":e)}return"(exp "+n.join(" ")+")"}error(t){return'(error "'+i.Move.get(t)+'")'}prosodyElement(t,e){switch(e=this.applyScaleFunction(e),t){case r.personalityProps.RATE:return"(richness . "+e+")";case r.personalityProps.PITCH:return"(average-pitch . "+e+")";case r.personalityProps.VOLUME:return"(stress . "+e+")"}return"(value . "+e+")"}pause(t){return"(pause . "+this.pauseValue(t[r.personalityProps.PAUSE])+")"}prosody_(t){const e=t.open,n=[];for(let r,i=0;r=e[i];i++)n.push(this.prosodyElement(r,t[r]));return n.join(" ")}}e.AcssRenderer=s},3778:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isSpanElement=e.isPauseElement=e.isMarkupElement=e.personalityMarkup=e.sortClose=e.mergeMarkup=e.mergePause=void 0;const r=n(4422),i=n(9686),o=n(4752);function a(t,e,n){return(n||function(n,r){return"number"==typeof n&&"number"==typeof r?n+r:"number"==typeof n?r:"number"==typeof r?n:[t,e].sort()[0]}).call(null,t,e)}e.mergePause=function(t,e,n){return t?{pause:a(t.pause,e.pause,n)}:e},e.mergeMarkup=function(t,e){delete t.open,e.close.forEach((e=>delete t[e])),e.open.forEach((n=>t[n]=e[n]));const n=Object.keys(t);t.open=n},e.sortClose=function(t,e){if(t.length<=1)return t;const n=[];for(let r,i=0;r=e[i],t.length;i++)r.close&&r.close.length&&r.close.forEach((function(e){const r=t.indexOf(e);-1!==r&&(n.unshift(e),t.splice(r,1))}));return n};let s={},l=[];function T(t,e){const n=t[t.length-1];if(n){if(d(e)&&d(n)){if(void 0===n.join)return void(n.span=n.span.concat(e.span));const t=n.span.pop(),r=e.span.shift();return n.span.push(t+n.join+r),n.span=n.span.concat(e.span),void(n.join=e.join)}u(e)&&u(n)?n.pause=a(n.pause,e.pause):t.push(e)}else t.push(e)}function Q(t,e){t.rate&&(e.rate=t.rate),t.pitch&&(e.pitch=t.pitch),t.volume&&(e.volume=t.volume)}function c(t){return"object"==typeof t&&t.open}function u(t){return"object"==typeof t&&1===Object.keys(t).length&&Object.keys(t)[0]===i.personalityProps.PAUSE}function d(t){const e=Object.keys(t);return"object"==typeof t&&(1===e.length&&"span"===e[0]||2===e.length&&("span"===e[0]&&"join"===e[1]||"span"===e[1]&&"join"===e[0]))}function h(t,e,n,r,s,l=!1){if(l){const l=t[t.length-1];let T;if(l&&(T=l[i.personalityProps.JOIN]),l&&!e.speech&&s&&u(l)){const t=i.personalityProps.PAUSE;l[t]=a(l[t],s[t]),s=null}if(l&&e.speech&&0===Object.keys(n).length&&d(l)){if(void 0!==T){const t=l.span.pop();e=new o.Span(t.speech+T+e.speech,t.attributes)}l.span.push(e),e=new o.Span("",{}),l[i.personalityProps.JOIN]=r}}0!==Object.keys(n).length&&t.push(n),e.speech&&t.push({span:[e],join:r}),s&&t.push(s)}function p(t,e){if(!e)return t;const n={};for(const r of i.personalityPropList){const i=t[r],o=e[r];if(!i&&!o||i&&o&&i===o)continue;const a=i||0;c(n)||(n.open=[],n.close=[]),i||n.close.push(r),o||n.open.push(r),o&&i&&(n.close.push(r),n.open.push(r)),e[r]=a,n[r]=a,s[r]?s[r].push(a):s[r]=[a]}if(c(n)){let t=n.close.slice();for(;t.length>0;){let i=l.pop();const o=(0,r.setdifference)(i,t);if(t=(0,r.setdifference)(t,i),i=o,0!==t.length){if(0!==i.length){n.close=n.close.concat(i),n.open=n.open.concat(i);for(let t,r=0;t=i[r];r++)n[t]=e[t]}}else 0!==i.length&&l.push(i)}l.push(n.open)}return n}e.personalityMarkup=function(t){s={},l=[];let e=[];const n={};for(let r,o=0;r=t[o];o++){let t=null;const o=r.descriptionSpan(),a=r.personality,s=a[i.personalityProps.JOIN];delete a[i.personalityProps.JOIN],void 0!==a[i.personalityProps.PAUSE]&&(t={[i.personalityProps.PAUSE]:a[i.personalityProps.PAUSE]},delete a[i.personalityProps.PAUSE]),h(e,o,p(a,n),s,t,!0)}return e=e.concat(function(){const t=[];for(let e=l.length-1;e>=0;e--){const n=l[e];if(n.length){const e={open:[],close:[]};for(let t=0;t<n.length;t++){const r=n[t];e.close.push(r),e[r]=0}t.push(e)}}return t}()),e=function(t){const e={},n=[];for(let r,i=0;r=t[i];i++){if(!c(r)){T(n,r);continue}if(!r.close||1!==r.close.length||r.open.length){Q(r,e),n.push(r);continue}let o=t[i+1];if(!o||d(o)){Q(r,e),n.push(r);continue}const a=u(o)?o:null;a&&(o=t[i+2]),o&&c(o)&&o.open[0]===r.close[0]&&!o.close.length&&o[o.open[0]]===e[o.open[0]]?a?(T(n,a),i+=2):i+=1:(Q(r,e),n.push(r))}return n}(e),e},e.isMarkupElement=c,e.isPauseElement=u,e.isSpanElement=d},2975:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AuditoryDescription=void 0;const r=n(7534),i=n(4752);class o{constructor({context:t,text:e,userValue:n,annotation:r,attributes:i,personality:o,layout:a}){this.context=t||"",this.text=e||"",this.userValue=n||"",this.annotation=r||"",this.attributes=i||{},this.personality=o||{},this.layout=a||""}static create(t,e={}){return t.text=r.Grammar.getInstance().apply(t.text,e),new o(t)}isEmpty(){return 0===this.context.length&&0===this.text.length&&0===this.userValue.length&&0===this.annotation.length}clone(){let t,e;if(this.personality){t={};for(const e in this.personality)t[e]=this.personality[e]}if(this.attributes){e={};for(const t in this.attributes)e[t]=this.attributes[t]}return new o({context:this.context,text:this.text,userValue:this.userValue,annotation:this.annotation,personality:t,attributes:e,layout:this.layout})}toString(){return'AuditoryDescription(context="'+this.context+'" text="'+this.text+'" userValue="'+this.userValue+'" annotation="'+this.annotation+'")'}descriptionString(){return this.context&&this.text?this.context+" "+this.text:this.context||this.text}descriptionSpan(){return new i.Span(this.descriptionString(),this.attributes)}equals(t){return this.context===t.context&&this.text===t.text&&this.userValue===t.userValue&&this.annotation===t.annotation}}e.AuditoryDescription=o},840:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isXml=e.registerRenderer=e.error=e.finalize=e.merge=e.markup=e.getSeparator=e.setSeparator=void 0;const r=n(3684),i=n(9686),o=n(2575),a=n(9413),s=n(3064),l=n(9815),T=n(4752),Q=n(4238),c=n(1990),u=n(6310),d=n(8155),h=new Q.SsmlRenderer,p=new Map([[i.Markup.NONE,new u.StringRenderer],[i.Markup.PUNCTUATION,new s.PunctuationRenderer],[i.Markup.LAYOUT,new a.LayoutRenderer],[i.Markup.ACSS,new o.AcssRenderer],[i.Markup.SABLE,new l.SableRenderer],[i.Markup.VOICEXML,h],[i.Markup.SSML,h],[i.Markup.SSML_STEP,new c.SsmlStepRenderer]]);e.setSeparator=function(t){const e=p.get(r.default.getInstance().markup);e&&e.setSeparator(t)},e.getSeparator=function(){const t=p.get(r.default.getInstance().markup);return t?t.getSeparator():""},e.markup=function(t){const e=p.get(r.default.getInstance().markup);return e?e.markup(t):""},e.merge=function(t){const e=t.map((t=>"string"==typeof t?new T.Span(t,{}):t)),n=p.get(r.default.getInstance().markup);return n?n.merge(e):t.join()},e.finalize=function(t){const e=p.get(r.default.getInstance().markup);return e?e.finalize(t):t},e.error=function(t){const e=p.get(r.default.getInstance().markup);return e?e.error(t):""},e.registerRenderer=function(t,e){p.set(t,e)},e.isXml=function(){return p.get(r.default.getInstance().markup)instanceof d.XmlRenderer}},9413:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.LayoutRenderer=void 0;const r=n(5605),i=n(7041),o=n(9686),a=n(3778),s=n(8155);class l extends s.XmlRenderer{finalize(t){return function(t){T="";const e=i.parseInput(`<all>${t}</all>`);return r.Debugger.getInstance().output(i.formatXml(e.toString())),T=d(e),T}(t)}pause(t){return""}prosodyElement(t,e){return t===o.personalityProps.LAYOUT?`<${e}>`:""}closeTag(t){return`</${t}>`}markup(t){const e=[];let n=[];for(const r of t){if(!r.layout){n.push(r);continue}e.push(this.processContent(n)),n=[];const t=r.layout;t.match(/^begin/)?e.push("<"+t.replace(/^begin/,"")+">"):t.match(/^end/)?e.push("</"+t.replace(/^end/,"")+">"):console.warn("Something went wrong with layout markup: "+t)}return e.push(this.processContent(n)),e.join("")}processContent(t){const e=[],n=a.personalityMarkup(t);for(let t,r=0;t=n[r];r++)t.span?e.push(this.merge(t.span)):a.isPauseElement(t);return e.join("")}}e.LayoutRenderer=l;let T="";const Q={TABLE:function(t){let e=f(t);e.forEach((t=>{t.cells=t.cells.slice(1).slice(0,-1),t.width=t.width.slice(1).slice(0,-1)}));const[n,r]=y(e);return e=g(e,r),L(e,n)},CASES:function(t){let e=f(t);e.forEach((t=>{t.cells=t.cells.slice(0,-1),t.width=t.width.slice(0,-1)}));const[n,r]=y(e);return e=g(e,r),L(e,n)},CAYLEY:function(t){let e=f(t);e.forEach((t=>{t.cells=t.cells.slice(1).slice(0,-1),t.width=t.width.slice(1).slice(0,-1),t.sep=t.sep+t.sep}));const[n,r]=y(e),i={lfence:"",rfence:"",cells:r.map((t=>"⠐"+new Array(t).join("⠒"))),width:r,height:1,sep:e[0].sep};return e.splice(1,0,i),e=g(e,r),L(e,n)},MATRIX:function(t){let e=f(t);const[n,r]=y(e);return e=g(e,r),L(e,n)},CELL:d,FENCE:d,ROW:d,FRACTION:function(t){const[e,n,,r,i]=Array.from(t.childNodes),o=c(n),a=c(r),s=p(o),l=p(a);let T=Math.max(s,l);const Q=e+new Array(T+1).join("⠒")+i;return T=Q.length,`${_(o,T)}\n${Q}\n${_(a,T)}`},NUMERATOR:H,DENOMINATOR:H};function c(t){const e=i.tagName(t),n=Q[e];return n?n(t):t.textContent}function u(t,e){if(!t||!e)return t+e;const n=h(t),r=h(e),i=n-r;t=i<0?m(t,r,p(t)):t,e=i>0?m(e,n,p(e)):e;const o=t.split(/\r\n|\r|\n/),a=e.split(/\r\n|\r|\n/),s=[];for(let t=0;t<o.length;t++)s.push(o[t]+a[t]);return s.join("\n")}function d(t){let e="";for(const n of Array.from(t.childNodes))e=n.nodeType!==i.NodeType.TEXT_NODE?u(e,c(n)):u(e,n.textContent);return e}function h(t){return t.split(/\r\n|\r|\n/).length}function p(t){return t.split(/\r\n|\r|\n/).reduce(((t,e)=>Math.max(e.length,t)),0)}function m(t,e,n){return t=function(t,e){const n=e-h(t);return t+(n>0?new Array(n+1).join("\n"):"")}(t,e),function(t,e){const n=t.split(/\r\n|\r|\n/),r=[];for(const t of n){const n=e-t.length;r.push(t+(n>0?new Array(n+1).join("⠀"):""))}return r.join("\n")}(t,n)}function f(t){const e=Array.from(t.childNodes),n=[];for(const t of e)t.nodeType===i.NodeType.ELEMENT_NODE&&n.push(x(t));return n}function y(t){const e=t.reduce(((t,e)=>Math.max(e.height,t)),0),n=[];for(let e=0;e<t[0].width.length;e++)n.push(t.map((t=>t.width[e])).reduce(((t,e)=>Math.max(t,e)),0));return[e,n]}function g(t,e){const n=[];for(const r of t){if(0===r.height)continue;const t=[];for(let n=0;n<r.cells.length;n++)t.push(m(r.cells[n],r.height,e[n]));r.cells=t,n.push(r)}return n}function L(t,e){if(1===e)return t.map((t=>t.lfence+t.cells.join(t.sep)+t.rfence)).join("\n");const n=[];for(const e of t){const t=b(e.sep,e.height);let r=e.cells.shift();for(;e.cells.length;)r=u(r,t),r=u(r,e.cells.shift());r=u(b(e.lfence,e.height),r),r=u(r,b(e.rfence,e.height)),n.push(r),n.push(e.lfence+new Array(p(r)-3).join(e.sep)+e.rfence)}return n.slice(0,-1).join("\n")}function b(t,e){let n="";for(;e;)n+=t+"\n",e--;return n.slice(0,-1)}function v(t){return t.nodeType===i.NodeType.ELEMENT_NODE&&"FENCE"===i.tagName(t)?c(t):""}function x(t){const e=Array.from(t.childNodes),n=v(e[0]),r=v(e[e.length-1]);n&&e.shift(),r&&e.pop();let o="";const a=[];for(const t of e){if(t.nodeType===i.NodeType.TEXT_NODE){o=t.textContent;continue}const e=c(t);a.push(e)}return{lfence:n,rfence:r,sep:o,cells:a,height:a.reduce(((t,e)=>Math.max(h(e),t)),0),width:a.map(p)}}function _(t,e){const n=(e-p(t))/2,[r,i]=Math.floor(n)===n?[n,n]:[Math.floor(n),Math.ceil(n)],o=t.split(/\r\n|\r|\n/),a=[],[s,l]=[new Array(r+1).join("⠀"),new Array(i+1).join("⠀")];for(const t of o)a.push(s+t+l);return a.join("\n")}function H(t){const e=t.firstChild,n=d(t);if(e&&e.nodeType===i.NodeType.ELEMENT_NODE){if("ENGLISH"===i.tagName(e))return"⠰"+n;if("NUMBER"===i.tagName(e))return"⠼"+n}return n}},9569:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MarkupRenderer=void 0;const r=n(9686),i=n(4601);class o extends i.AbstractAudioRenderer{constructor(){super(...arguments),this.ignoreElements=[r.personalityProps.LAYOUT],this.scaleFunction=null}setScaleFunction(t,e,n,r,i=0){this.scaleFunction=o=>{const a=(o-t)/(e-t),s=n*(1-a)+r*a;return+(Math.round(s+"e+"+i)+"e-"+i)}}applyScaleFunction(t){return this.scaleFunction?this.scaleFunction(t):t}ignoreElement(t){return-1!==this.ignoreElements.indexOf(t)}}e.MarkupRenderer=o},3064:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.PunctuationRenderer=void 0;const r=n(9686),i=n(4601),o=n(3778);class a extends i.AbstractAudioRenderer{markup(t){const e=o.personalityMarkup(t);let n="",i=null,a=!1;for(let t,s=0;t=e[s];s++)o.isMarkupElement(t)||(o.isPauseElement(t)?a&&(i=o.mergePause(i,t,Math.max)):(i&&(n+=this.pause(i[r.personalityProps.PAUSE]),i=null),n+=(a?this.getSeparator():"")+this.merge(t.span),a=!0));return n}pause(t){let e;return e="number"==typeof t?t<=250?"short":t<=500?"medium":"long":t,a.PAUSE_PUNCTUATION.get(e)||""}}e.PunctuationRenderer=a,a.PAUSE_PUNCTUATION=new Map([["short",","],["medium",";"],["long","."]])},9815:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SableRenderer=void 0;const r=n(9686),i=n(8155);class o extends i.XmlRenderer{finalize(t){return'<?xml version="1.0"?><!DOCTYPE SABLE PUBLIC "-//SABLE//DTD SABLE speech mark up//EN" "Sable.v0_2.dtd" []><SABLE>'+this.getSeparator()+t+this.getSeparator()+"</SABLE>"}pause(t){return'<BREAK MSEC="'+this.pauseValue(t[r.personalityProps.PAUSE])+'"/>'}prosodyElement(t,e){switch(e=this.applyScaleFunction(e),t){case r.personalityProps.PITCH:return'<PITCH RANGE="'+e+'%">';case r.personalityProps.RATE:return'<RATE SPEED="'+e+'%">';case r.personalityProps.VOLUME:return'<VOLUME LEVEL="'+e+'%">';default:return"<"+t.toUpperCase()+' VALUE="'+e+'">'}}closeTag(t){return"</"+t.toUpperCase()+">"}}e.SableRenderer=o},4752:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Span=void 0,e.Span=class{constructor(t,e){this.speech=t,this.attributes=e}}},4238:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SsmlRenderer=void 0;const r=n(3684),i=n(9686),o=n(8155);class a extends o.XmlRenderer{finalize(t){return'<?xml version="1.0"?><speak version="1.1" xmlns="http://www.w3.org/2001/10/synthesis"><prosody rate="'+r.default.getInstance().getRate()+'%">'+this.getSeparator()+t+this.getSeparator()+"</prosody></speak>"}pause(t){return'<break time="'+this.pauseValue(t[i.personalityProps.PAUSE])+'ms"/>'}prosodyElement(t,e){const n=(e=Math.floor(this.applyScaleFunction(e)))<0?e.toString():"+"+e.toString();return"<prosody "+t.toLowerCase()+'="'+n+(t===i.personalityProps.VOLUME?">":'%">')}closeTag(t){return"</prosody>"}}e.SsmlRenderer=a},1990:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SsmlStepRenderer=void 0;const r=n(4238);class i extends r.SsmlRenderer{markup(t){return i.MARKS={},super.markup(t)}merge(t){const e=[];for(let n=0;n<t.length;n++){const r=t[n],o=r.attributes.extid;o&&!i.MARKS[o]&&(e.push('<mark name="'+o+'"/>'),i.MARKS[o]=!0),1===r.speech.length&&r.speech.match(/[a-zA-Z]/)?e.push('<say-as interpret-as="'+i.CHARACTER_ATTR+'">'+r.speech+"</say-as>"):e.push(r.speech)}return e.join(this.getSeparator())}}e.SsmlStepRenderer=i,i.CHARACTER_ATTR="character",i.MARKS={}},6310:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.StringRenderer=void 0;const r=n(4601),i=n(3778);class o extends r.AbstractAudioRenderer{markup(t){let e="";const n=(0,i.personalityMarkup)(t).filter((t=>t.span));if(!n.length)return e;const r=n.length-1;for(let t,i=0;t=n[i];i++){if(t.span&&(e+=this.merge(t.span)),i>=r)continue;const n=t.join;e+=void 0===n?this.getSeparator():n}return e}}e.StringRenderer=o},8155:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.XmlRenderer=void 0;const r=n(3684),i=n(3778),o=n(9569);class a extends o.MarkupRenderer{markup(t){this.setScaleFunction(-2,2,-100,100,2);const e=i.personalityMarkup(t),n=[],o=[];for(let t,a=0;t=e[a];a++)if(t.span)n.push(this.merge(t.span));else if(i.isPauseElement(t))n.push(this.pause(t));else{if(t.close.length)for(let e=0;e<t.close.length;e++){const e=o.pop();if(-1===t.close.indexOf(e))throw new r.SREError("Unknown closing markup element: "+e);n.push(this.closeTag(e))}t.open.length&&i.sortClose(t.open.slice(),e.slice(a+1)).forEach((e=>{n.push(this.prosodyElement(e,t[e])),o.push(e)}))}return n.join(" ")}}e.XmlRenderer=a},4422:(t,e)=>{function n(t,e){return t?e?t.filter((t=>e.indexOf(t)<0)):t:[]}Object.defineProperty(e,"__esModule",{value:!0}),e.union=e.setdifference=e.interleaveLists=e.removeEmpty=void 0,e.removeEmpty=function(t){return t.filter((t=>t))},e.interleaveLists=function(t,e){const n=[];for(;t.length||e.length;)t.length&&n.push(t.shift()),e.length&&n.push(e.shift());return n},e.setdifference=n,e.union=function(t,e){return t&&e?t.concat(n(e,t)):t||e||[]}},4698:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.loadScript=e.loadMapsForIE_=e.installWGXpath_=e.loadWGXpath_=e.mapsForIE=e.detectEdge=e.detectIE=void 0;const r=n(495),i=n(1746);function o(t){l(r.default.WGXpath),a(t)}function a(t,e){let n=e||1;"undefined"==typeof wgxpath&&n<10?setTimeout((function(){a(t,n++)}),200):n>=10||(r.default.wgxpath=wgxpath,t?r.default.wgxpath.install({document}):r.default.wgxpath.install(),i.xpath.evaluate=document.evaluate,i.xpath.result=XPathResult,i.xpath.createNSResolver=document.createNSResolver)}function s(){l(r.default.mathmapsIePath)}function l(t){const e=r.default.document.createElement("script");e.type="text/javascript",e.src=t,r.default.document.head?r.default.document.head.appendChild(e):r.default.document.body.appendChild(e)}e.detectIE=function(){return"undefined"!=typeof window&&"ActiveXObject"in window&&"clipboardData"in window&&(s(),o(),!0)},e.detectEdge=function(){var t;return"undefined"!=typeof window&&"MSGestureEvent"in window&&null===(null===(t=window.chrome)||void 0===t?void 0:t.loadTimes)&&(document.evaluate=null,o(!0),!0)},e.mapsForIE=null,e.loadWGXpath_=o,e.installWGXpath_=a,e.loadMapsForIE_=s,e.loadScript=l},7090:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.Cli=void 0;const i=n(3113),o=n(8844),a=n(5124),s=n(9050),l=n(5605),T=n(3684),Q=n(9686),c=n(9190),u=n(2114),d=n(495),h=n(6948);e.Cli=class{constructor(){this.process=d.default.extRequire("process"),this.setup={mode:Q.Mode.SYNC},this.processors=[],this.output=this.process.stdout,this.dp=new d.default.xmldom.DOMParser({errorHandler:(t,e)=>{throw new T.SREError("XML DOM error!")}})}set(t,e,n){this.setup[t]=void 0===e||e}processor(t){this.processors.push(t)}loadLocales(){return r(this,void 0,void 0,(function*(){for(const t of h.Variables.LOCALES.keys())yield u.setupEngine({locale:t})}))}enumerate(t=!1){return r(this,void 0,void 0,(function*(){const e=u.setupEngine(this.setup);return(t?this.loadLocales():e).then((()=>T.EnginePromise.getall().then((()=>{const t=i.DynamicCstr.DEFAULT_ORDER.map((t=>t.length)),e=(e,n)=>{t[n]=Math.max.apply(null,Object.keys(e).map((t=>t.length)).concat(t[n]))},n=(t,e)=>t+new Array(e-t.length+1).join(" ");let r=a.SpeechRuleEngine.getInstance().enumerate();r=o.enumerate(r);const l=[];e(r,0);for(const i in r){let o=!0;const a=r[i];e(a,1);for(const T in a){let Q=!0;const c=a[T];e(c,2);for(const e in c){const a=Object.keys(c[e]).sort();if("clearspeak"===e){let a=!0;const c=s.ClearspeakPreferences.getLocalePreferences(r)[i];for(const r in c)l.push([n(o?i:"",t[0]),n(Q?T:"",t[1]),n(a?e:"",t[2]),c[r].join(", ")]),o=!1,Q=!1,a=!1}else l.push([n(o?i:"",t[0]),n(Q?T:"",t[1]),n(e,t[2]),a.join(", ")]);o=!1,Q=!1}}}let T=0,Q="";Q+=i.DynamicCstr.DEFAULT_ORDER.slice(0,-1).map((e=>n(e,t[T++]))).join(" | "),Q+="\n",t.forEach((t=>Q+=new Array(t+3).join("="))),Q+="========================\n",Q+=l.map((t=>t.join(" | "))).join("\n"),console.info(Q)}))))}))}execute(t){T.EnginePromise.getall().then((()=>{this.runProcessors_(((t,e)=>this.output.write(u.processFile(t,e)+"\n")),t)}))}readline(){this.process.stdin.setEncoding("utf8");const t=d.default.extRequire("readline").createInterface({input:this.process.stdin,output:this.output});let e="";t.on("line",(n=>{e+=n,this.readExpression_(e)&&t.close()}).bind(this)),t.on("close",(()=>{this.runProcessors_(((e,n)=>{t.output.write(c.output(e,n)+"\n")}),e),u.engineReady().then((()=>l.Debugger.getInstance().exit((()=>u.exit(0)))))}).bind(this))}commandLine(){return r(this,void 0,void 0,(function*(){const t=d.default.commander,e=u,n=(t=>(e,n)=>this.set(t,e,n)).bind(this),r=this.processor.bind(this);t.version(e.version).usage("[options] <file ...>").option("-i, --input [name]","Input file [name]. (Deprecated)").option("-o, --output [name]","Output file [name]. Defaults to stdout.").option("-d, --domain [name]","Speech rule set [name]. See --options for details.",n(i.Axis.DOMAIN),i.DynamicCstr.DEFAULT_VALUES[i.Axis.DOMAIN]).option("-t, --style [name]","Speech style [name]. See --options for details.",n(i.Axis.STYLE),i.DynamicCstr.DEFAULT_VALUES[i.Axis.STYLE]).option("-c, --locale [code]","Locale [code].",n(i.Axis.LOCALE),i.DynamicCstr.DEFAULT_VALUES[i.Axis.LOCALE]).option("-b, --modality [name]","Modality [name].",n(i.Axis.MODALITY),i.DynamicCstr.DEFAULT_VALUES[i.Axis.MODALITY]).option("-k, --markup [name]","Generate speech output with markup tags.",n("markup"),"none").option("-r, --rate [value]","Base rate [value] for tagged speech output.",n("rate"),"100").option("-p, --speech","Generate speech output (default).",(()=>r("speech"))).option("-a, --audit","Generate auditory descriptions (JSON format).",(()=>r("description"))).option("-j, --json","Generate JSON of semantic tree.",(()=>r("json"))).option("-x, --xml","Generate XML of semantic tree.",(()=>r("semantic"))).option("-m, --mathml","Generate enriched MathML.",(()=>r("enriched"))).option("-g, --generate <depth>","Include generated speech in enriched MathML (with -m option only).",n("speech"),"none").option("-w, --structure","Include structure attribute in enriched MathML (with -m option only).",n("structure")).option("-P, --pprint","Pretty print output whenever possible.",n("pprint")).option("-f, --rules [name]","Loads a local rule file [name].",n("rules")).option("-C, --subiso [name]","Supplementary country code (or similar) for the given locale.",n("subiso")).option("-N, --number","Translate number to word.",(()=>r("number"))).option("-O, --ordinal","Translate number to ordinal.",(()=>r("ordinal")),"ordinal").option("-S, --numeric","Translate number to numeric ordinal.",(()=>r("numericOrdinal"))).option("-F, --vulgar","Translate vulgar fraction to word. Provide vulgar fraction as slash seperated numbers.",(()=>r("vulgar"))).option("-v, --verbose","Verbose mode.").option("-l, --log [name]","Log file [name].").option("--opt","List engine setup options.").option("--opt-all","List engine setup options for all available locales.").on("option:opt",(()=>{this.enumerate().then((()=>u.exit(0)))})).on("option:opt-all",(()=>{this.enumerate(!0).then((()=>u.exit(0)))})).parse(this.process.argv),yield u.engineReady().then((()=>u.setupEngine(this.setup)));const o=t.opts();o.output&&(this.output=d.default.fs.createWriteStream(o.output)),o.verbose&&(yield l.Debugger.getInstance().init(o.log)),o.input&&this.execute(o.input),t.args.length?(t.args.forEach(this.execute.bind(this)),u.engineReady().then((()=>l.Debugger.getInstance().exit((()=>u.exit(0)))))):this.readline()}))}runProcessors_(t,e){try{this.processors.length||this.processors.push("speech"),e&&this.processors.forEach((n=>t(n,e)))}catch(t){console.error(t.name+": "+t.message),l.Debugger.getInstance().exit((()=>this.process.exit(1)))}}readExpression_(t){try{const e=t.replace(/(&|#|;)/g,"");this.dp.parseFromString(e,"text/xml")}catch(t){return!1}return!0}}},5605:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Debugger=void 0;const r=n(495);class i{constructor(){this.isActive_=!1,this.outputFunction_=console.info,this.fileHandle=Promise.resolve(),this.stream_=null}static getInstance(){return i.instance=i.instance||new i,i.instance}init(t){return t&&this.startDebugFile_(t),this.isActive_=!0,this.fileHandle}output(...t){this.isActive_&&this.output_(t)}generateOutput(t){this.isActive_&&this.output_(t.apply(t,[]))}exit(t=(()=>{})){this.fileHandle.then((()=>{this.isActive_&&this.stream_&&this.stream_.end("","",t)}))}startDebugFile_(t){this.fileHandle=r.default.fs.promises.open(t,"w"),this.fileHandle=this.fileHandle.then((e=>{this.stream_=e.createWriteStream(t),this.outputFunction_=function(...t){this.stream_.write(t.join(" ")),this.stream_.write("\n")}.bind(this),this.stream_.on("error",function(t){console.info("Invalid log file. Debug information sent to console."),this.outputFunction_=console.info}.bind(this)),this.stream_.on("finish",(function(){console.info("Finalizing debug file.")}))}))}output_(t){console.info!==this.outputFunction_?this.fileHandle.then((()=>this.outputFunction_.apply(this.outputFunction_,["Speech Rule Engine Debugger:"].concat(t)))):this.outputFunction_.apply(console,["Speech Rule Engine Debugger:"].concat(t))}}e.Debugger=i},7041:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.serializeXml=e.cloneNode=e.tagName=e.querySelectorAll=e.querySelectorAllByAttrValue=e.querySelectorAllByAttr=e.formatXml=e.createTextNode=e.createElementNS=e.createElement=e.replaceNode=e.NodeType=e.parseInput=e.XML_ENTITIES=e.trimInput_=e.toArray=void 0;const r=n(3684),i=n(9686),o=n(495),a=n(1746);function s(t){const e=[];for(let n=0,r=t.length;n<r;n++)e.push(t[n]);return e}function l(t){return(t=t.replace(/&nbsp;/g," ")).replace(/>[ \f\n\r\t\v\u200b]+</g,"><").trim()}function T(t,e){if(!e)return[!1,""];const n=t.match(/^<([^> ]+).*>/),r=e.match(/^<\/([^>]+)>(.*)/);return n&&r&&n[1]===r[1]?[!0,r[2]]:[!1,""]}e.toArray=s,e.trimInput_=l,e.XML_ENTITIES={"&lt;":!0,"&gt;":!0,"&amp;":!0,"&quot;":!0,"&apos;":!0},e.parseInput=function(t){const e=new o.default.xmldom.DOMParser,n=l(t),s=!!n.match(/&(?!lt|gt|amp|quot|apos)\w+;/g);if(!n)throw new Error("Empty input!");try{const t=e.parseFromString(n,s?"text/html":"text/xml");return r.default.getInstance().mode===i.Mode.HTTP?(a.xpath.currentDocument=t,s?t.body.childNodes[0]:t.documentElement):t.documentElement}catch(t){throw new r.SREError("Illegal input: "+t.message)}},function(t){t[t.ELEMENT_NODE=1]="ELEMENT_NODE",t[t.ATTRIBUTE_NODE=2]="ATTRIBUTE_NODE",t[t.TEXT_NODE=3]="TEXT_NODE",t[t.CDATA_SECTION_NODE=4]="CDATA_SECTION_NODE",t[t.ENTITY_REFERENCE_NODE=5]="ENTITY_REFERENCE_NODE",t[t.ENTITY_NODE=6]="ENTITY_NODE",t[t.PROCESSING_INSTRUCTION_NODE=7]="PROCESSING_INSTRUCTION_NODE",t[t.COMMENT_NODE=8]="COMMENT_NODE",t[t.DOCUMENT_NODE=9]="DOCUMENT_NODE",t[t.DOCUMENT_TYPE_NODE=10]="DOCUMENT_TYPE_NODE",t[t.DOCUMENT_FRAGMENT_NODE=11]="DOCUMENT_FRAGMENT_NODE",t[t.NOTATION_NODE=12]="NOTATION_NODE"}(e.NodeType||(e.NodeType={})),e.replaceNode=function(t,e){t.parentNode&&(t.parentNode.insertBefore(e,t),t.parentNode.removeChild(t))},e.createElement=function(t){return o.default.document.createElement(t)},e.createElementNS=function(t,e){return o.default.document.createElementNS(t,e)},e.createTextNode=function(t){return o.default.document.createTextNode(t)},e.formatXml=function(t){let e="",n=/(>)(<)(\/*)/g,r=0,i=(t=t.replace(n,"$1\r\n$2$3")).split("\r\n");for(n=/(\.)*(<)(\/*)/g,i=i.map((t=>t.replace(n,"$1\r\n$2$3").split("\r\n"))).reduce(((t,e)=>t.concat(e)),[]);i.length;){let t=i.shift();if(!t)continue;let n=0;if(t.match(/^<\w[^>/]*>[^>]+$/)){const e=T(t,i[0]);e[0]?e[1]?(t+=i.shift().slice(0,-e[1].length),e[1].trim()&&i.unshift(e[1])):t+=i.shift():n=1}else if(t.match(/^<\/\w/))0!==r&&(r-=1);else if(t.match(/^<\w[^>]*[^/]>.*$/))n=1;else if(t.match(/^<\w[^>]*\/>.+$/)){const e=t.indexOf(">")+1;t.slice(e).trim()&&i.unshift(),t=t.slice(0,e)}else n=0;e+=new Array(r+1).join(" ")+t+"\r\n",r+=n}return e},e.querySelectorAllByAttr=function(t,e){return t.querySelectorAll?s(t.querySelectorAll(`[${e}]`)):a.evalXPath(`.//*[@${e}]`,t)},e.querySelectorAllByAttrValue=function(t,e,n){return t.querySelectorAll?s(t.querySelectorAll(`[${e}="${n}"]`)):a.evalXPath(`.//*[@${e}="${n}"]`,t)},e.querySelectorAll=function(t,e){return t.querySelectorAll?s(t.querySelectorAll(e)):a.evalXPath(`.//${e}`,t)},e.tagName=function(t){return t.tagName.toUpperCase()},e.cloneNode=function(t){return t.cloneNode(!0)},e.serializeXml=function(t){return(new o.default.xmldom.XMLSerializer).serializeToString(t)}},3684:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.EnginePromise=e.SREError=void 0;const r=n(3113),i=n(9686),o=n(5605),a=n(6948);class s extends Error{constructor(t=""){super(),this.message=t,this.name="SRE Error"}}e.SREError=s;class l{constructor(){this.customLoader=null,this.parsers={},this.comparator=null,this.mode=i.Mode.SYNC,this.init=!0,this.delay=!1,this.comparators={},this.domain="mathspeak",this.style=r.DynamicCstr.DEFAULT_VALUES[r.Axis.STYLE],this._defaultLocale=r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE],this.locale=this.defaultLocale,this.subiso="",this.modality=r.DynamicCstr.DEFAULT_VALUES[r.Axis.MODALITY],this.speech=i.Speech.NONE,this.markup=i.Markup.NONE,this.walker="Table",this.structure=!1,this.ruleSets=[],this.strict=!1,this.isIE=!1,this.isEdge=!1,this.rate="100",this.pprint=!1,this.config=!1,this.rules="",this.prune="",this.evaluator=l.defaultEvaluator,this.defaultParser=new r.DynamicCstrParser(r.DynamicCstr.DEFAULT_ORDER),this.parser=this.defaultParser,this.dynamicCstr=r.DynamicCstr.defaultCstr()}set defaultLocale(t){this._defaultLocale=a.Variables.ensureLocale(t,this._defaultLocale)}get defaultLocale(){return this._defaultLocale}static getInstance(){return l.instance=l.instance||new l,l.instance}static defaultEvaluator(t,e){return t}static evaluateNode(t){return l.nodeEvaluator(t)}getRate(){const t=parseInt(this.rate,10);return isNaN(t)?100:t}setDynamicCstr(t){if(this.defaultLocale&&(r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE]=this.defaultLocale),t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const i=e[n];if(-1!==r.DynamicCstr.DEFAULT_ORDER.indexOf(i)){const e=t[i];this[i]=e}}}i.DOMAIN_TO_STYLES[this.domain]=this.style;const e=[this.locale,this.modality,this.domain,this.style].join("."),n=r.DynamicProperties.createProp([r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE]],[r.DynamicCstr.DEFAULT_VALUES[r.Axis.MODALITY]],[r.DynamicCstr.DEFAULT_VALUES[r.Axis.DOMAIN]],[r.DynamicCstr.DEFAULT_VALUES[r.Axis.STYLE]]),o=this.comparators[this.domain],a=this.parsers[this.domain];this.parser=a||this.defaultParser,this.dynamicCstr=this.parser.parse(e),this.dynamicCstr.updateProperties(n.getProperties()),this.comparator=o?o():new r.DefaultComparator(this.dynamicCstr)}configurate(t){this.mode!==i.Mode.HTTP||this.config||(function(t){const e=document.documentElement.querySelectorAll('script[type="text/x-sre-config"]');for(let n=0,r=e.length;n<r;n++){let r;try{r=e[n].innerHTML;const i=JSON.parse(r);for(const e in i)t[e]=i[e]}catch(t){o.Debugger.getInstance().output("Illegal configuration ",r)}}}(t),this.config=!0),function(t){if("undefined"!=typeof SREfeature)for(const[e,n]of Object.entries(SREfeature))t[e]=n}(t)}setCustomLoader(t){t&&(this.customLoader=t)}}e.default=l,l.BINARY_FEATURES=["strict","structure","pprint"],l.STRING_FEATURES=["markup","style","domain","speech","walker","defaultLocale","locale","delay","modality","rate","rules","subiso","prune"],l.nodeEvaluator=function(t){return[]};class T{static get(t=l.getInstance().locale){return T.promises[t]||Promise.resolve("")}static getall(){return Promise.all(Object.values(T.promises))}}e.EnginePromise=T,T.loaded={},T.promises={}},9686:(t,e)=>{var n;Object.defineProperty(e,"__esModule",{value:!0}),e.DOMAIN_TO_STYLES=e.Markup=e.Speech=e.personalityPropList=e.personalityProps=e.Mode=void 0,function(t){t.SYNC="sync",t.ASYNC="async",t.HTTP="http"}(e.Mode||(e.Mode={})),function(t){t.PITCH="pitch",t.RATE="rate",t.VOLUME="volume",t.PAUSE="pause",t.JOIN="join",t.LAYOUT="layout"}(n=e.personalityProps||(e.personalityProps={})),e.personalityPropList=[n.PITCH,n.RATE,n.VOLUME,n.PAUSE,n.JOIN],function(t){t.NONE="none",t.SHALLOW="shallow",t.DEEP="deep"}(e.Speech||(e.Speech={})),function(t){t.NONE="none",t.LAYOUT="layout",t.PUNCTUATION="punctuation",t.SSML="ssml",t.SSML_STEP="ssml_step",t.ACSS="acss",t.SABLE="sable",t.VOICEXML="voicexml"}(e.Markup||(e.Markup={})),e.DOMAIN_TO_STYLES={mathspeak:"default",clearspeak:"default"}},317:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.setup=void 0;const i=n(2420),o=n(2741),a=n(4698),s=n(5605),l=n(3684),T=n(3633),Q=n(495);e.setup=function(t){return r(this,void 0,void 0,(function*(){const e=l.default.getInstance();"default"!==t.domain||"speech"!==t.modality&&t.modality&&"speech"!==e.modality||(t.domain="mathspeak");const n=n=>{void 0!==t[n]&&(e[n]=t[n])};return n("mode"),e.configurate(t),l.default.BINARY_FEATURES.forEach((n=>{void 0!==t[n]&&(e[n]=!!t[n])})),l.default.STRING_FEATURES.forEach(n),t.debug&&s.Debugger.getInstance().init(),t.json&&(Q.default.jsonPath=T.makePath(t.json)),t.xpath&&(Q.default.WGXpath=t.xpath),e.setCustomLoader(t.custom),function(t){t.isIE=a.detectIE(),t.isEdge=a.detectEdge()}(e),i.setLocale(),e.setDynamicCstr(),e.init?(l.EnginePromise.promises.init=new Promise(((t,e)=>{setTimeout((()=>{t("init")}),10)})),e.init=!1,l.EnginePromise.get()):e.delay?(e.delay=!1,l.EnginePromise.get()):o.loadLocale()}))}},5390:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Event=e.EventType=e.Move=e.KeyCode=void 0,function(t){t[t.ENTER=13]="ENTER",t[t.ESC=27]="ESC",t[t.SPACE=32]="SPACE",t[t.PAGE_UP=33]="PAGE_UP",t[t.PAGE_DOWN=34]="PAGE_DOWN",t[t.END=35]="END",t[t.HOME=36]="HOME",t[t.LEFT=37]="LEFT",t[t.UP=38]="UP",t[t.RIGHT=39]="RIGHT",t[t.DOWN=40]="DOWN",t[t.TAB=9]="TAB",t[t.LESS=188]="LESS",t[t.GREATER=190]="GREATER",t[t.DASH=189]="DASH",t[t.ZERO=48]="ZERO",t[t.ONE=49]="ONE",t[t.TWO=50]="TWO",t[t.THREE=51]="THREE",t[t.FOUR=52]="FOUR",t[t.FIVE=53]="FIVE",t[t.SIX=54]="SIX",t[t.SEVEN=55]="SEVEN",t[t.EIGHT=56]="EIGHT",t[t.NINE=57]="NINE",t[t.A=65]="A",t[t.B=66]="B",t[t.C=67]="C",t[t.D=68]="D",t[t.E=69]="E",t[t.F=70]="F",t[t.G=71]="G",t[t.H=72]="H",t[t.I=73]="I",t[t.J=74]="J",t[t.K=75]="K",t[t.L=76]="L",t[t.M=77]="M",t[t.N=78]="N",t[t.O=79]="O",t[t.P=80]="P",t[t.Q=81]="Q",t[t.R=82]="R",t[t.S=83]="S",t[t.T=84]="T",t[t.U=85]="U",t[t.V=86]="V",t[t.W=87]="W",t[t.X=88]="X",t[t.Y=89]="Y",t[t.Z=90]="Z"}(e.KeyCode||(e.KeyCode={})),e.Move=new Map([[13,"ENTER"],[27,"ESC"],[32,"SPACE"],[33,"PAGE_UP"],[34,"PAGE_DOWN"],[35,"END"],[36,"HOME"],[37,"LEFT"],[38,"UP"],[39,"RIGHT"],[40,"DOWN"],[9,"TAB"],[188,"LESS"],[190,"GREATER"],[189,"DASH"],[48,"ZERO"],[49,"ONE"],[50,"TWO"],[51,"THREE"],[52,"FOUR"],[53,"FIVE"],[54,"SIX"],[55,"SEVEN"],[56,"EIGHT"],[57,"NINE"],[65,"A"],[66,"B"],[67,"C"],[68,"D"],[69,"E"],[70,"F"],[71,"G"],[72,"H"],[73,"I"],[74,"J"],[75,"K"],[76,"L"],[77,"M"],[78,"N"],[79,"O"],[80,"P"],[81,"Q"],[82,"R"],[83,"S"],[84,"T"],[85,"U"],[86,"V"],[87,"W"],[88,"X"],[89,"Y"],[90,"Z"]]),function(t){t.CLICK="click",t.DBLCLICK="dblclick",t.MOUSEDOWN="mousedown",t.MOUSEUP="mouseup",t.MOUSEOVER="mouseover",t.MOUSEOUT="mouseout",t.MOUSEMOVE="mousemove",t.SELECTSTART="selectstart",t.KEYPRESS="keypress",t.KEYDOWN="keydown",t.KEYUP="keyup",t.TOUCHSTART="touchstart",t.TOUCHMOVE="touchmove",t.TOUCHEND="touchend",t.TOUCHCANCEL="touchcancel"}(e.EventType||(e.EventType={})),e.Event=class{constructor(t,e,n){this.src=t,this.type=e,this.callback=n}add(){this.src.addEventListener(this.type,this.callback)}remove(){this.src.removeEventListener(this.type,this.callback)}}},3633:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.localePath=e.makePath=void 0;const r=n(495);function i(t){return t.match("/$")?t:t+"/"}e.makePath=i,e.localePath=function(t,e="json"){return i(r.default.jsonPath)+t+(e.match(/^\./)?e:"."+e)}},8231:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.KeyProcessor=e.Processor=void 0;const r=n(5390);class i{constructor(t,e){this.name=t,this.process=e.processor,this.postprocess=e.postprocessor||((t,e)=>t),this.processor=this.postprocess?function(t){return this.postprocess(this.process(t),t)}:this.process,this.print=e.print||i.stringify_,this.pprint=e.pprint||this.print}static stringify_(t){return t?t.toString():t}}e.Processor=i,i.LocalState={walker:null,speechGenerator:null,highlighter:null};class o extends i{constructor(t,e){super(t,e),this.key=e.key||o.getKey_}static getKey_(t){return"string"==typeof t?r.KeyCode[t.toUpperCase()]:t}}e.KeyProcessor=o},9190:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.keypress=e.output=e.print=e.process=e.set=void 0;const r=n(840),i=n(7059),o=n(7022),a=n(3826),s=n(6256),l=n(4493),T=n(2421),Q=n(2338),c=n(3294),u=n(7041),d=n(3684),h=n(9686),p=n(8231),m=n(1746),f=new Map;function y(t){f.set(t.name,t)}function g(t){const e=f.get(t);if(!e)throw new d.SREError("Unknown processor "+t);return e}function L(t,e){const n=g(t);try{return n.processor(e)}catch(t){throw new d.SREError("Processing error for expression "+e)}}function b(t,e){const n=g(t);return d.default.getInstance().pprint?n.pprint(e):n.print(e)}e.set=y,e.process=L,e.print=b,e.output=function(t,e){const n=g(t);try{const t=n.processor(e);return d.default.getInstance().pprint?n.pprint(t):n.print(t)}catch(t){throw new d.SREError("Processing error for expression "+e)}},e.keypress=function(t,e){const n=g(t),r=n instanceof p.KeyProcessor?n.key(e):e,i=n.processor(r);return d.default.getInstance().pprint?n.pprint(i):n.print(i)},y(new p.Processor("semantic",{processor:function(t){const e=u.parseInput(t);return s.xmlTree(e)},postprocessor:function(t,e){const n=d.default.getInstance().speech;if(n===h.Speech.NONE)return t;const i=u.cloneNode(t);let o=T.computeMarkup(i);if(n===h.Speech.SHALLOW)return t.setAttribute("speech",r.finalize(o)),t;const a=m.evalXPath(".//*[@id]",t),s=m.evalXPath(".//*[@id]",i);for(let t,e,n=0;t=a[n],e=s[n];n++)o=T.computeMarkup(e),t.setAttribute("speech",r.finalize(o));return t},pprint:function(t){return u.formatXml(t.toString())}})),y(new p.Processor("speech",{processor:function(t){const e=u.parseInput(t),n=s.xmlTree(e),i=T.computeSpeech(n);return r.finalize(r.markup(i))},pprint:function(t){const e=t.toString();return r.isXml()?u.formatXml(e):e}})),y(new p.Processor("json",{processor:function(t){const e=u.parseInput(t);return s.getTree(e).toJson()},postprocessor:function(t,e){const n=d.default.getInstance().speech;if(n===h.Speech.NONE)return t;const i=u.parseInput(e),o=s.xmlTree(i),a=T.computeMarkup(o);if(n===h.Speech.SHALLOW)return t.stree.speech=r.finalize(a),t;const l=t=>{const e=m.evalXPath(`.//*[@id=${t.id}]`,o)[0],n=T.computeMarkup(e);t.speech=r.finalize(n),t.children&&t.children.forEach(l)};return l(t.stree),t},print:function(t){return JSON.stringify(t)},pprint:function(t){return JSON.stringify(t,null,2)}})),y(new p.Processor("description",{processor:function(t){const e=u.parseInput(t),n=s.xmlTree(e);return T.computeSpeech(n)},print:function(t){return JSON.stringify(t)},pprint:function(t){return JSON.stringify(t,null,2)}})),y(new p.Processor("enriched",{processor:function(t){return i.semanticMathmlSync(t)},postprocessor:function(t,e){const n=c.getSemanticRoot(t);let r;switch(d.default.getInstance().speech){case h.Speech.NONE:break;case h.Speech.SHALLOW:r=l.generator("Adhoc"),r.getSpeech(n,t);break;case h.Speech.DEEP:r=l.generator("Tree"),r.getSpeech(t,t)}return t},pprint:function(t){return u.formatXml(t.toString())}})),y(new p.Processor("walker",{processor:function(t){const e=l.generator("Node");p.Processor.LocalState.speechGenerator=e,e.setOptions({modality:d.default.getInstance().modality,locale:d.default.getInstance().locale,domain:d.default.getInstance().domain,style:d.default.getInstance().style}),p.Processor.LocalState.highlighter=o.highlighter({color:"black"},{color:"white"},{renderer:"NativeMML"});const n=L("enriched",t),r=b("enriched",n);return p.Processor.LocalState.walker=Q.walker(d.default.getInstance().walker,n,e,p.Processor.LocalState.highlighter,r),p.Processor.LocalState.walker},print:function(t){return p.Processor.LocalState.walker.speech()}})),y(new p.KeyProcessor("move",{processor:function(t){return p.Processor.LocalState.walker?!1===p.Processor.LocalState.walker.move(t)?r.error(t):p.Processor.LocalState.walker.speech():null}})),y(new p.Processor("number",{processor:function(t){const e=parseInt(t,10);return isNaN(e)?"":a.LOCALE.NUMBERS.numberToWords(e)}})),y(new p.Processor("ordinal",{processor:function(t){const e=parseInt(t,10);return isNaN(e)?"":a.LOCALE.NUMBERS.wordOrdinal(e)}})),y(new p.Processor("numericOrdinal",{processor:function(t){const e=parseInt(t,10);return isNaN(e)?"":a.LOCALE.NUMBERS.numericOrdinal(e)}})),y(new p.Processor("vulgar",{processor:function(t){const[e,n]=t.split("/").map((t=>parseInt(t,10)));return isNaN(e)||isNaN(n)?"":L("speech",`<mfrac><mn>${e}</mn><mn>${n}</mn></mfrac>`)}}))},2114:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.localePath=e.exit=e.move=e.walk=e.processFile=e.file=e.vulgar=e.numericOrdinal=e.ordinal=e.number=e.toEnriched=e.toDescription=e.toJson=e.toSemantic=e.toSpeech=e.localeLoader=e.engineReady=e.engineSetup=e.setupEngine=e.version=void 0;const i=n(3684),o=n(317),a=n(9686),s=n(3633),l=n(9190),T=n(495),Q=n(6948),c=n(2741);function u(t){return r(this,void 0,void 0,(function*(){return(0,o.setup)(t)}))}function d(t,e){return l.process(t,e)}function h(t,e,n){switch(i.default.getInstance().mode){case a.Mode.ASYNC:return function(t,e,n){return r(this,void 0,void 0,(function*(){const r=yield T.default.fs.promises.readFile(e,{encoding:"utf8"}),o=l.output(t,r);if(n)try{T.default.fs.promises.writeFile(n,o)}catch(t){throw new i.SREError("Can not write to file: "+n)}return o}))}(t,e,n);case a.Mode.SYNC:return function(t,e,n){const r=function(t){let e;try{e=T.default.fs.readFileSync(t,{encoding:"utf8"})}catch(e){throw new i.SREError("Can not open file: "+t)}return e}(e),o=l.output(t,r);if(n)try{T.default.fs.writeFileSync(n,o)}catch(t){throw new i.SREError("Can not write to file: "+n)}return o}(t,e,n);default:throw new i.SREError(`Can process files in ${i.default.getInstance().mode} mode`)}}e.version=Q.Variables.VERSION,e.setupEngine=u,e.engineSetup=function(){const t=["mode"].concat(i.default.STRING_FEATURES,i.default.BINARY_FEATURES),e=i.default.getInstance(),n={};return t.forEach((function(t){n[t]=e[t]})),n.json=T.default.jsonPath,n.xpath=T.default.WGXpath,n.rules=e.ruleSets.slice(),n},e.engineReady=function(){return r(this,void 0,void 0,(function*(){return u({}).then((()=>i.EnginePromise.getall()))}))},e.localeLoader=c.standardLoader,e.toSpeech=function(t){return d("speech",t)},e.toSemantic=function(t){return d("semantic",t)},e.toJson=function(t){return d("json",t)},e.toDescription=function(t){return d("description",t)},e.toEnriched=function(t){return d("enriched",t)},e.number=function(t){return d("number",t)},e.ordinal=function(t){return d("ordinal",t)},e.numericOrdinal=function(t){return d("numericOrdinal",t)},e.vulgar=function(t){return d("vulgar",t)},e.file={},e.file.toSpeech=function(t,e){return h("speech",t,e)},e.file.toSemantic=function(t,e){return h("semantic",t,e)},e.file.toJson=function(t,e){return h("json",t,e)},e.file.toDescription=function(t,e){return h("description",t,e)},e.file.toEnriched=function(t,e){return h("enriched",t,e)},e.processFile=h,e.walk=function(t){return l.output("walker",t)},e.move=function(t){return l.keypress("move",t)},e.exit=function(t){const e=t||0;i.EnginePromise.getall().then((()=>process.exit(e)))},e.localePath=s.localePath,T.default.documentSupported?u({mode:a.Mode.HTTP}).then((()=>u({}))):u({mode:a.Mode.SYNC}).then((()=>u({mode:a.Mode.ASYNC})))},495:(__unused_webpack_module,exports,__nested_webpack_require_45537__)=>{Object.defineProperty(exports,"__esModule",{value:!0});const variables_1=__nested_webpack_require_45537__(6948);class SystemExternal{static extRequire(library){if(void 0!==process){const nodeRequire=eval("require");return nodeRequire(library)}return null}}exports.default=SystemExternal,SystemExternal.windowSupported=!("undefined"==typeof window),SystemExternal.documentSupported=SystemExternal.windowSupported&&!(void 0===window.document),SystemExternal.xmldom=SystemExternal.documentSupported?window:SystemExternal.extRequire("xmldom-sre"),SystemExternal.document=SystemExternal.documentSupported?window.document:(new SystemExternal.xmldom.DOMImplementation).createDocument("","",0),SystemExternal.xpath=SystemExternal.documentSupported?document:function(){const t={document:{},XPathResult:{}};return SystemExternal.extRequire("wicked-good-xpath").install(t),t.document.XPathResult=t.XPathResult,t.document}(),SystemExternal.mathmapsIePath="https://cdn.jsdelivr.net/npm/sre-mathmaps-ie@"+variables_1.Variables.VERSION+"mathmaps_ie.js",SystemExternal.commander=SystemExternal.documentSupported?null:SystemExternal.extRequire("commander"),SystemExternal.fs=SystemExternal.documentSupported?null:SystemExternal.extRequire("fs"),SystemExternal.url=variables_1.Variables.url,SystemExternal.jsonPath=(SystemExternal.documentSupported?SystemExternal.url:process.env.SRE_JSON_PATH||__nested_webpack_require_45537__.g.SRE_JSON_PATH||__dirname+"/mathmaps")+"/",SystemExternal.WGXpath=variables_1.Variables.WGXpath,SystemExternal.wgxpath=null},6948:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Variables=void 0;class n{static ensureLocale(t,e){return n.LOCALES.get(t)?t:(console.error(`Locale ${t} does not exist! Using ${n.LOCALES.get(e)} instead.`),e)}}e.Variables=n,n.VERSION="4.0.6",n.LOCALES=new Map([["ca","Catalan"],["da","Danish"],["de","German"],["en","English"],["es","Spanish"],["fr","French"],["hi","Hindi"],["it","Italian"],["nb","Bokmål"],["nn","Nynorsk"],["sv","Swedish"],["nemeth","Nemeth"]]),n.mathjaxVersion="3.2.1",n.url="https://cdn.jsdelivr.net/npm/speech-rule-engine@"+n.VERSION+"/lib/mathmaps",n.WGXpath="https://cdn.jsdelivr.net/npm/wicked-good-xpath@1.3.0/dist/wgxpath.install.js"},1746:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.updateEvaluator=e.evaluateString=e.evaluateBoolean=e.getLeafNodes=e.evalXPath=e.resolveNameSpace=e.xpath=void 0;const r=n(3684),i=n(9686),o=n(495);function a(){return"undefined"!=typeof XPathResult}e.xpath={currentDocument:null,evaluate:a()?document.evaluate:o.default.xpath.evaluate,result:a()?XPathResult:o.default.xpath.XPathResult,createNSResolver:a()?document.createNSResolver:o.default.xpath.createNSResolver};const s={xhtml:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",mml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function l(t){return s[t]||null}e.resolveNameSpace=l;class T{constructor(){this.lookupNamespaceURI=l}}function Q(t,n,o){return r.default.getInstance().mode!==i.Mode.HTTP||r.default.getInstance().isIE||r.default.getInstance().isEdge?e.xpath.evaluate(t,n,new T,o,null):e.xpath.currentDocument.evaluate(t,n,l,o,null)}function c(t,n){let r;try{r=Q(t,n,e.xpath.result.ORDERED_NODE_ITERATOR_TYPE)}catch(t){return[]}const i=[];for(let t=r.iterateNext();t;t=r.iterateNext())i.push(t);return i}e.evalXPath=c,e.getLeafNodes=function(t){return c(".//*[count(*)=0]",t)},e.evaluateBoolean=function(t,n){let r;try{r=Q(t,n,e.xpath.result.BOOLEAN_TYPE)}catch(t){return!1}return r.booleanValue},e.evaluateString=function(t,n){let r;try{r=Q(t,n,e.xpath.result.STRING_TYPE)}catch(t){return""}return r.stringValue},e.updateEvaluator=function(t){if(r.default.getInstance().mode!==i.Mode.HTTP)return;let n=t;for(;n&&!n.evaluate;)n=n.parentNode;n&&n.evaluate?e.xpath.currentDocument=n:t.ownerDocument&&(e.xpath.currentDocument=t.ownerDocument)}},9492:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractEnrichCase=void 0,e.AbstractEnrichCase=class{constructor(t){this.semantic=t}}},1475:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseBinomial=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return!t.mathmlTree&&"line"===t.type&&"binomial"===t.role}getMathml(){if(!this.semantic.childNodes.length)return this.mml;const t=this.semantic.childNodes[0];if(this.mml=(0,o.walkTree)(t),this.mml.hasAttribute(a.Attribute.TYPE)){const t=r.createElement("mrow");t.setAttribute(a.Attribute.ADDED,"true"),r.replaceNode(this.mml,t),t.appendChild(this.mml),this.mml=t}return(0,a.setAttributes)(this.mml,this.semantic),this.mml}}e.CaseBinomial=s},4009:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseDoubleScript=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){if(!t.mathmlTree||!t.childNodes.length)return!1;const e=r.tagName(t.mathmlTree),n=t.childNodes[0].role;return"MSUBSUP"===e&&"subsup"===n||"MUNDEROVER"===e&&"underover"===n}getMathml(){const t=this.semantic.childNodes[0],e=t.childNodes[0],n=this.semantic.childNodes[1],r=t.childNodes[1],i=o.walkTree(n),s=o.walkTree(e),l=o.walkTree(r);return(0,a.setAttributes)(this.mml,this.semantic),this.mml.setAttribute(a.Attribute.CHILDREN,(0,a.makeIdList)([e,r,n])),[s,l,i].forEach((t=>o.getInnerNode(t).setAttribute(a.Attribute.PARENT,this.mml.getAttribute(a.Attribute.ID)))),this.mml.setAttribute(a.Attribute.TYPE,t.role),o.addCollapsedAttribute(this.mml,[this.semantic.id,[t.id,e.id,r.id],n.id]),this.mml}}e.CaseDoubleScript=s},3008:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseEmbellished=void 0;const r=n(7041),i=n(7603),o=n(9492),a=n(4009),s=n(6844),l=n(8097),T=n(3408),Q=n(7206);class c extends o.AbstractEnrichCase{constructor(t){super(t),this.fenced=null,this.fencedMml=null,this.fencedMmlNodes=[],this.ofence=null,this.ofenceMml=null,this.ofenceMap={},this.cfence=null,this.cfenceMml=null,this.cfenceMap={},this.parentCleanup=[]}static test(t){return!(!t.mathmlTree||!t.fencePointer||t.mathmlTree.getAttribute("data-semantic-type"))}static makeEmptyNode_(t){const e=r.createElement("mrow"),n=new i.SemanticNode(t);return n.type="empty",n.mathmlTree=e,n}static fencedMap_(t,e){e[t.id]=t.mathmlTree,t.embellished&&c.fencedMap_(t.childNodes[0],e)}getMathml(){return this.getFenced_(),this.fencedMml=T.walkTree(this.fenced),this.getFencesMml_(),"empty"!==this.fenced.type||this.fencedMml.parentNode||(this.fencedMml.setAttribute(Q.Attribute.ADDED,"true"),this.cfenceMml.parentNode.insertBefore(this.fencedMml,this.cfenceMml)),this.getFencedMml_(),this.rewrite_()}fencedElement(t){return"fenced"===t.type||"matrix"===t.type||"vector"===t.type}getFenced_(){let t=this.semantic;for(;!this.fencedElement(t);)t=t.childNodes[0];this.fenced=t.childNodes[0],this.ofence=t.contentNodes[0],this.cfence=t.contentNodes[1],c.fencedMap_(this.ofence,this.ofenceMap),c.fencedMap_(this.cfence,this.cfenceMap)}getFencedMml_(){let t=this.ofenceMml.nextSibling;for(t=t===this.fencedMml?t:this.fencedMml;t&&t!==this.cfenceMml;)this.fencedMmlNodes.push(t),t=t.nextSibling}getFencesMml_(){let t=this.semantic;const e=Object.keys(this.ofenceMap),n=Object.keys(this.cfenceMap);for(;!(this.ofenceMml&&this.cfenceMml||t===this.fenced);)-1===e.indexOf(t.fencePointer)||this.ofenceMml||(this.ofenceMml=t.mathmlTree),-1===n.indexOf(t.fencePointer)||this.cfenceMml||(this.cfenceMml=t.mathmlTree),t=t.childNodes[0];this.ofenceMml||(this.ofenceMml=this.ofence.mathmlTree),this.cfenceMml||(this.cfenceMml=this.cfence.mathmlTree),this.ofenceMml&&(this.ofenceMml=T.ascendNewNode(this.ofenceMml)),this.cfenceMml&&(this.cfenceMml=T.ascendNewNode(this.cfenceMml))}rewrite_(){let t=this.semantic,e=null;const n=this.introduceNewLayer_();for((0,Q.setAttributes)(n,this.fenced.parent);!this.fencedElement(t);){const i=t.mathmlTree,o=this.specialCase_(t,i);if(o)t=o;else{(0,Q.setAttributes)(i,t);const e=[];for(let n,r=1;n=t.childNodes[r];r++)e.push(T.walkTree(n));t=t.childNodes[0]}const a=r.createElement("dummy"),s=i.childNodes[0];r.replaceNode(i,a),r.replaceNode(n,i),r.replaceNode(i.childNodes[0],n),r.replaceNode(a,s),e||(e=i)}return T.walkTree(this.ofence),T.walkTree(this.cfence),this.cleanupParents_(),e||n}specialCase_(t,e){const n=r.tagName(e);let i,o=null;if("MSUBSUP"===n?(o=t.childNodes[0],i=a.CaseDoubleScript):"MMULTISCRIPTS"===n&&("superscript"===t.type||"subscript"===t.type?i=s.CaseMultiscripts:"tensor"===t.type&&(i=l.CaseTensor),o=i&&t.childNodes[0]&&"subsup"===t.childNodes[0].role?t.childNodes[0]:t),!o)return null;const T=o.childNodes[0],Q=c.makeEmptyNode_(T.id);return o.childNodes[0]=Q,e=new i(t).getMathml(),o.childNodes[0]=T,this.parentCleanup.push(e),o.childNodes[0]}introduceNewLayer_(){const t=this.fullFence(this.ofenceMml),e=this.fullFence(this.cfenceMml);let n=r.createElement("mrow");if(r.replaceNode(this.fencedMml,n),this.fencedMmlNodes.forEach((t=>n.appendChild(t))),n.insertBefore(t,this.fencedMml),n.appendChild(e),!n.parentNode){const t=r.createElement("mrow");for(;n.childNodes.length>0;)t.appendChild(n.childNodes[0]);n.appendChild(t),n=t}return n}fullFence(t){const e=this.fencedMml.parentNode;let n=t;for(;n.parentNode&&n.parentNode!==e;)n=n.parentNode;return n}cleanupParents_(){this.parentCleanup.forEach((function(t){const e=t.childNodes[1].getAttribute(Q.Attribute.PARENT);t.childNodes[0].setAttribute(Q.Attribute.PARENT,e)}))}}e.CaseEmbellished=c},7847:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseLimit=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){if(!t.mathmlTree||!t.childNodes.length)return!1;const e=r.tagName(t.mathmlTree),n=t.type;return("limupper"===n||"limlower"===n)&&("MSUBSUP"===e||"MUNDEROVER"===e)||"limboth"===n&&("MSUB"===e||"MUNDER"===e||"MSUP"===e||"MOVER"===e)}static walkTree_(t){t&&o.walkTree(t)}getMathml(){const t=this.semantic.childNodes;return"limboth"!==this.semantic.type&&this.mml.childNodes.length>=3&&(this.mml=o.introduceNewLayer([this.mml],this.semantic)),(0,a.setAttributes)(this.mml,this.semantic),t[0].mathmlTree||(t[0].mathmlTree=this.semantic.mathmlTree),t.forEach(s.walkTree_),this.mml}}e.CaseLimit=s},520:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseLine=void 0;const r=n(9492),i=n(3408),o=n(7206);class a extends r.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return!!t.mathmlTree&&"line"===t.type}getMathml(){return this.semantic.contentNodes.length&&i.walkTree(this.semantic.contentNodes[0]),this.semantic.childNodes.length&&i.walkTree(this.semantic.childNodes[0]),(0,o.setAttributes)(this.mml,this.semantic),this.mml}}e.CaseLine=a},140:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseMultiindex=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static multiscriptIndex(t){return"punctuated"===t.type&&"dummy"===t.contentNodes[0].role?o.collapsePunctuated(t):(o.walkTree(t),t.id)}static createNone_(t){const e=r.createElement("none");return t&&(0,a.setAttributes)(e,t),e.setAttribute(a.Attribute.ADDED,"true"),e}completeMultiscript(t,e){const n=r.toArray(this.mml.childNodes).slice(1);let i=0;const l=t=>{for(let e,r=0;e=t[r];r++){const t=n[i];if(t&&e===parseInt(o.getInnerNode(t).getAttribute(a.Attribute.ID)))o.getInnerNode(t).setAttribute(a.Attribute.PARENT,this.semantic.id.toString()),i++;else{const n=this.semantic.querySelectorAll((t=>t.id===e));this.mml.insertBefore(s.createNone_(n[0]),t||null)}}};l(t),n[i]&&"MPRESCRIPTS"!==r.tagName(n[i])?this.mml.insertBefore(n[i],r.createElement("mprescripts")):i++,l(e)}}e.CaseMultiindex=s},6844:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseMultiscripts=void 0;const r=n(7041),i=n(5594),o=n(140),a=n(3408),s=n(7206);class l extends o.CaseMultiindex{static test(t){return!!t.mathmlTree&&"MMULTISCRIPTS"===r.tagName(t.mathmlTree)&&("superscript"===t.type||"subscript"===t.type)}constructor(t){super(t)}getMathml(){let t,e,n;if((0,s.setAttributes)(this.mml,this.semantic),this.semantic.childNodes[0]&&"subsup"===this.semantic.childNodes[0].role){const r=this.semantic.childNodes[0];t=r.childNodes[0],e=o.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[1]),n=o.CaseMultiindex.multiscriptIndex(r.childNodes[1]);const l=[this.semantic.id,[r.id,t.id,n],e];a.addCollapsedAttribute(this.mml,l),this.mml.setAttribute(s.Attribute.TYPE,r.role),this.completeMultiscript(i.SemanticSkeleton.interleaveIds(n,e),[])}else{t=this.semantic.childNodes[0],e=o.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[1]);const n=[this.semantic.id,t.id,e];a.addCollapsedAttribute(this.mml,n)}const r=i.SemanticSkeleton.collapsedLeafs(n||[],e),l=a.walkTree(t);return a.getInnerNode(l).setAttribute(s.Attribute.PARENT,this.semantic.id.toString()),r.unshift(t.id),this.mml.setAttribute(s.Attribute.CHILDREN,r.join(",")),this.mml}}e.CaseMultiscripts=l},3805:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseProof=void 0;const r=n(9492),i=n(3408),o=n(7206);class a extends r.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return!!t.mathmlTree&&("inference"===t.type||"premises"===t.type)}getMathml(){return this.semantic.childNodes.length?(this.semantic.contentNodes.forEach((function(t){i.walkTree(t),(0,o.setAttributes)(t.mathmlTree,t)})),this.semantic.childNodes.forEach((function(t){i.walkTree(t)})),(0,o.setAttributes)(this.mml,this.semantic),this.mml.getAttribute("data-semantic-id")===this.mml.getAttribute("data-semantic-parent")&&this.mml.removeAttribute("data-semantic-parent"),this.mml):this.mml}}e.CaseProof=a},7920:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseTable=void 0;const r=n(7041),i=n(9492),o=n(3408),a=n(7206);class s extends i.AbstractEnrichCase{constructor(t){super(t),this.inner=[],this.mml=t.mathmlTree}static test(t){return"matrix"===t.type||"vector"===t.type||"cases"===t.type}getMathml(){const t=o.cloneContentNode(this.semantic.contentNodes[0]),e=this.semantic.contentNodes[1]?o.cloneContentNode(this.semantic.contentNodes[1]):null;if(this.inner=this.semantic.childNodes.map(o.walkTree),this.mml)if("MFENCED"===r.tagName(this.mml)){const n=this.mml.childNodes;this.mml.insertBefore(t,n[0]||null),e&&this.mml.appendChild(e),this.mml=o.rewriteMfenced(this.mml)}else{const n=[t,this.mml];e&&n.push(e),this.mml=o.introduceNewLayer(n,this.semantic)}else this.mml=o.introduceNewLayer([t].concat(this.inner,[e]),this.semantic);return(0,a.setAttributes)(this.mml,this.semantic),this.mml}}e.CaseTable=s},8097:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseTensor=void 0;const r=n(5594),i=n(140),o=n(3408),a=n(7206);class s extends i.CaseMultiindex{static test(t){return!!t.mathmlTree&&"tensor"===t.type}constructor(t){super(t)}getMathml(){o.walkTree(this.semantic.childNodes[0]);const t=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[1]),e=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[2]),n=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[3]),s=i.CaseMultiindex.multiscriptIndex(this.semantic.childNodes[4]);(0,a.setAttributes)(this.mml,this.semantic);const l=[this.semantic.id,this.semantic.childNodes[0].id,t,e,n,s];o.addCollapsedAttribute(this.mml,l);const T=r.SemanticSkeleton.collapsedLeafs(t,e,n,s);return T.unshift(this.semantic.childNodes[0].id),this.mml.setAttribute(a.Attribute.CHILDREN,T.join(",")),this.completeMultiscript(r.SemanticSkeleton.interleaveIds(n,s),r.SemanticSkeleton.interleaveIds(t,e)),this.mml}}e.CaseTensor=s},5360:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CaseText=void 0;const r=n(9492),i=n(3408),o=n(7206);class a extends r.AbstractEnrichCase{constructor(t){super(t),this.mml=t.mathmlTree}static test(t){return"punctuated"===t.type&&("text"===t.role||t.contentNodes.every((t=>"dummy"===t.role)))}getMathml(){const t=[],e=i.collapsePunctuated(this.semantic,t);return this.mml=i.introduceNewLayer(t,this.semantic),(0,o.setAttributes)(this.mml,this.semantic),this.mml.removeAttribute(o.Attribute.CONTENT),i.addCollapsedAttribute(this.mml,e),this.mml}}e.CaseText=a},7059:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.prepareMmlString=e.testTranslation=e.semanticMathml=e.semanticMathmlSync=e.semanticMathmlNode=void 0;const r=n(5605),i=n(7041),o=n(3684),a=n(6256),s=n(3408);function l(t){const e=i.cloneNode(t),n=a.getTree(e);return s.enrich(e,n)}function T(t){return l(i.parseInput(t))}function Q(t){return t.match(/^<math/)||(t="<math>"+t),t.match(/\/math>$/)||(t+="</math>"),t}n(2156),e.semanticMathmlNode=l,e.semanticMathmlSync=T,e.semanticMathml=function(t,e){o.EnginePromise.getall().then((()=>{const n=i.parseInput(t);e(l(n))}))},e.testTranslation=function(t){r.Debugger.getInstance().init();const e=T(Q(t));return r.Debugger.getInstance().exit(),e},e.prepareMmlString=Q},7206:(t,e)=>{var n;function r(t){return t.map((function(t){return t.id})).join(",")}function i(t,e){const r=[];"mglyph"===e.role&&r.push("image"),e.attributes.href&&r.push("link"),r.length&&t.setAttribute(n.POSTFIX,r.join(" "))}Object.defineProperty(e,"__esModule",{value:!0}),e.addPrefix=e.removeAttributePrefix=e.setPostfix=e.setAttributes=e.makeIdList=e.EnrichAttributes=e.Attribute=e.Prefix=void 0,e.Prefix="data-semantic-",function(t){t.ADDED="data-semantic-added",t.ALTERNATIVE="data-semantic-alternative",t.CHILDREN="data-semantic-children",t.COLLAPSED="data-semantic-collapsed",t.CONTENT="data-semantic-content",t.EMBELLISHED="data-semantic-embellished",t.FENCEPOINTER="data-semantic-fencepointer",t.FONT="data-semantic-font",t.ID="data-semantic-id",t.ANNOTATION="data-semantic-annotation",t.ATTRIBUTES="data-semantic-attributes",t.OPERATOR="data-semantic-operator",t.OWNS="data-semantic-owns",t.PARENT="data-semantic-parent",t.POSTFIX="data-semantic-postfix",t.PREFIX="data-semantic-prefix",t.ROLE="data-semantic-role",t.SPEECH="data-semantic-speech",t.STRUCTURE="data-semantic-structure",t.TYPE="data-semantic-type"}(n=e.Attribute||(e.Attribute={})),e.EnrichAttributes=[n.ADDED,n.ALTERNATIVE,n.CHILDREN,n.COLLAPSED,n.CONTENT,n.EMBELLISHED,n.FENCEPOINTER,n.FONT,n.ID,n.ANNOTATION,n.ATTRIBUTES,n.OPERATOR,n.OWNS,n.PARENT,n.POSTFIX,n.PREFIX,n.ROLE,n.SPEECH,n.STRUCTURE,n.TYPE],e.makeIdList=r,e.setAttributes=function(t,o){t.setAttribute(n.TYPE,o.type);const a=o.allAttributes();for(let n,r=0;n=a[r];r++)t.setAttribute(e.Prefix+n[0].toLowerCase(),n[1]);o.childNodes.length&&t.setAttribute(n.CHILDREN,r(o.childNodes)),o.contentNodes.length&&t.setAttribute(n.CONTENT,r(o.contentNodes)),o.parent&&t.setAttribute(n.PARENT,o.parent.id.toString());const s=o.attributesXml();s&&t.setAttribute(n.ATTRIBUTES,s),i(t,o)},e.setPostfix=i,e.removeAttributePrefix=function(t){return t.toString().replace(new RegExp(e.Prefix,"g"),"")},e.addPrefix=function(t){return e.Prefix+t}},364:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.factory=e.getCase=void 0,e.getCase=function(t){for(let n,r=0;n=e.factory[r];r++)if(n.test(t))return n.constr(t);return null},e.factory=[]},2156:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(1475),i=n(4009),o=n(3008),a=n(7847),s=n(520),l=n(6844),T=n(3805),Q=n(7920),c=n(8097),u=n(5360);n(364).factory.push({test:a.CaseLimit.test,constr:t=>new a.CaseLimit(t)},{test:o.CaseEmbellished.test,constr:t=>new o.CaseEmbellished(t)},{test:i.CaseDoubleScript.test,constr:t=>new i.CaseDoubleScript(t)},{test:c.CaseTensor.test,constr:t=>new c.CaseTensor(t)},{test:l.CaseMultiscripts.test,constr:t=>new l.CaseMultiscripts(t)},{test:s.CaseLine.test,constr:t=>new s.CaseLine(t)},{test:r.CaseBinomial.test,constr:t=>new r.CaseBinomial(t)},{test:T.CaseProof.test,constr:t=>new T.CaseProof(t)},{test:Q.CaseTable.test,constr:t=>new Q.CaseTable(t)},{test:u.CaseText.test,constr:t=>new u.CaseText(t)})},3408:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.printNodeList__=e.collapsePunctuated=e.getInnerNode=e.setOperatorAttribute_=e.createInvisibleOperator_=e.rewriteMfenced=e.cloneContentNode=e.addCollapsedAttribute=e.parentNode_=e.isIgnorable_=e.unitChild_=e.descendNode_=e.ascendNewNode=e.validLca_=e.pathToRoot_=e.attachedElement_=e.prunePath_=e.mathmlLca_=e.lcaType=e.functionApplication_=e.isDescendant_=e.insertNewChild_=e.mergeChildren_=e.collectChildNodes_=e.collateChildNodes_=e.childrenSubset_=e.moveSemanticAttributes_=e.introduceLayerAboveLca=e.introduceNewLayer=e.walkTree=e.enrich=e.SETTINGS=void 0;const r=n(5605),i=n(7041),o=n(3684),a=n(218),s=n(9156),l=n(5594),T=n(8478),Q=n(7206),c=n(364);function u(t){const e=(0,c.getCase)(t);let n;if(e)return n=e.getMathml(),S(n);if(1===t.mathml.length)return r.Debugger.getInstance().output("Walktree Case 0"),n=t.mathml[0],Q.setAttributes(n,t),t.childNodes.length&&(r.Debugger.getInstance().output("Walktree Case 0.1"),t.childNodes.forEach((function(t){"empty"===t.type&&n.appendChild(u(t))}))),S(n);const i=t.contentNodes.map(N);R(t,i);const o=t.childNodes.map(u),a=l.SemanticSkeleton.combineContentChildren(t,i,o);if(n=t.mathmlTree,null===n)r.Debugger.getInstance().output("Walktree Case 1"),n=d(a,t);else{const t=w(a);r.Debugger.getInstance().output("Walktree Case 2"),t?(r.Debugger.getInstance().output("Walktree Case 2.1"),n=t.parentNode):(r.Debugger.getInstance().output("Walktree Case 2.2"),n=k(n))}return n=I(n),g(n,a,t),Q.setAttributes(n,t),S(n)}function d(t,e){const n=_(t);let o=n.node;const a=n.type;if(a!==x.VALID||!T.hasEmptyTag(o))if(r.Debugger.getInstance().output("Walktree Case 1.1"),o=i.createElement("mrow"),a===x.PRUNED)r.Debugger.getInstance().output("Walktree Case 1.1.0"),o=h(o,n.node,t);else if(t[0]){r.Debugger.getInstance().output("Walktree Case 1.1.1");const e=w(t),n=m(e.parentNode,t);i.replaceNode(e,o),n.forEach((function(t){o.appendChild(t)}))}return e.mathmlTree||(e.mathmlTree=o),o}function h(t,e,n){let o=E(e);if(T.hasMathTag(o)){r.Debugger.getInstance().output("Walktree Case 1.1.0.0"),p(o,t),i.toArray(o.childNodes).forEach((function(e){t.appendChild(e)}));const e=t;t=o,o=e}const a=n.indexOf(e);return n[a]=o,i.replaceNode(o,t),t.appendChild(o),n.forEach((function(e){t.appendChild(e)})),t}function p(t,e){for(const n of Q.EnrichAttributes)t.hasAttribute(n)&&(e.setAttribute(n,t.getAttribute(n)),t.removeAttribute(n))}function m(t,e){const n=i.toArray(t.childNodes);let r=1/0,o=-1/0;return e.forEach((function(t){const e=n.indexOf(t);-1!==e&&(r=Math.min(r,e),o=Math.max(o,e))})),n.slice(r,o+1)}function f(t,e,n){const r=[];let o=i.toArray(t.childNodes),a=!1;for(;o.length;){const t=o.shift();if(t.hasAttribute(Q.Attribute.TYPE)){r.push(t);continue}const e=y(t);0!==e.length&&(1!==e.length?(a?t.setAttribute("AuxiliaryImplicit",!0):a=!0,o=e.concat(o)):r.push(t))}const s=[],l=n.childNodes.map((function(t){return t.mathmlTree}));for(;l.length;){const t=l.pop();if(t){if(-1!==r.indexOf(t))break;-1!==e.indexOf(t)&&s.unshift(t)}}return r.concat(s)}function y(t){const e=[];let n=i.toArray(t.childNodes);for(;n.length;){const t=n.shift();t.nodeType===i.NodeType.ELEMENT_NODE&&(t.hasAttribute(Q.Attribute.TYPE)?e.push(t):n=i.toArray(t.childNodes).concat(n))}return e}function g(t,e,n){const r="implicit"===n.role&&s.flags.combine_juxtaposition?f(t,e,n):i.toArray(t.childNodes);if(!r.length)return void e.forEach((function(e){t.appendChild(e)}));let o=0;for(;e.length;){const n=e[0];r[o]===n||v(r[o],n)?(e.shift(),o++):r[o]&&-1===e.indexOf(r[o])?o++:(b(n,t)||L(t,r[o],n),e.shift())}}function L(t,e,n){if(!e)return void t.insertBefore(n,null);let r=e,i=V(r);for(;i&&i.firstChild===r&&!r.hasAttribute("AuxiliaryImplicit")&&i!==t;)r=i,i=V(r);i&&(i.insertBefore(n,r),r.removeAttribute("AuxiliaryImplicit"))}function b(t,e){if(!t)return!1;do{if((t=t.parentNode)===e)return!0}while(t);return!1}function v(t,e){const n=a.functionApplication();if(t&&e&&t.textContent&&e.textContent&&t.textContent===n&&e.textContent===n&&"true"===e.getAttribute(Q.Attribute.ADDED)){for(let n,r=0;n=t.attributes[r];r++)e.hasAttribute(n.nodeName)||e.setAttribute(n.nodeName,n.nodeValue);return i.replaceNode(t,e),!0}return!1}var x;function _(t){const e=w(t);if(!e)return{type:x.INVALID,node:null};const n=w(t.slice().reverse());if(e===n)return{type:x.VALID,node:e};const r=O(e),i=H(r,t),o=O(n,(function(t){return-1!==i.indexOf(t)})),a=o[0],s=i.indexOf(a);return-1===s?{type:x.INVALID,node:null}:{type:i.length!==r.length?x.PRUNED:M(i[s+1],o[1])?x.VALID:x.INVALID,node:a}}function H(t,e){let n=0;for(;t[n]&&-1===e.indexOf(t[n]);)n++;return t.slice(0,n+1)}function w(t){let e=0,n=null;for(;!n&&e<t.length;)t[e].parentNode&&(n=t[e]),e++;return n}function O(t,e){const n=e||(t=>!1),r=[t];for(;!n(t)&&!T.hasMathTag(t)&&t.parentNode;)t=V(t),r.unshift(t);return r}function M(t,e){return!(!t||!e||t.previousSibling||e.nextSibling)}function S(t){for(;!T.hasMathTag(t)&&A(t);)t=V(t);return t}function E(t){const e=i.toArray(t.childNodes);if(!e)return t;const n=e.filter((function(t){return t.nodeType===i.NodeType.ELEMENT_NODE&&!T.hasIgnoreTag(t)}));return 1===n.length&&T.hasEmptyTag(n[0])&&!n[0].hasAttribute(Q.Attribute.TYPE)?E(n[0]):t}function A(t){const e=V(t);return!(!e||!T.hasEmptyTag(e))&&i.toArray(e.childNodes).every((function(e){return e===t||C(e)}))}function C(t){if(t.nodeType!==i.NodeType.ELEMENT_NODE)return!0;if(!t||T.hasIgnoreTag(t))return!0;const e=i.toArray(t.childNodes);return!(!T.hasEmptyTag(t)&&e.length||T.hasDisplayTag(t)||t.hasAttribute(Q.Attribute.TYPE)||T.isOrphanedGlyph(t))&&i.toArray(t.childNodes).every(C)}function V(t){return t.parentNode}function N(t){if(t.mathml.length)return u(t);const n=e.SETTINGS.implicit?P(t):i.createElement("mrow");return t.mathml=[n],n}function I(t){if("MFENCED"!==i.tagName(t))return t;const e=i.createElement("mrow");for(let n,r=0;n=t.attributes[r];r++)-1===["open","close","separators"].indexOf(n.name)&&e.setAttribute(n.name,n.value);return i.toArray(t.childNodes).forEach((function(t){e.appendChild(t)})),i.replaceNode(t,e),e}function P(t){const e=i.createElement("mo"),n=i.createTextNode(t.textContent);return e.appendChild(n),Q.setAttributes(e,t),e.setAttribute(Q.Attribute.ADDED,"true"),e}function R(t,e){const n=t.type+(t.textContent?","+t.textContent:"");e.forEach((function(t){k(t).setAttribute(Q.Attribute.OPERATOR,n)}))}function k(t){const e=i.toArray(t.childNodes);if(!e)return t;const n=e.filter((function(t){return!C(t)})),r=[];for(let t,e=0;t=n[e];e++)if(T.hasEmptyTag(t)){const e=k(t);e&&e!==t&&r.push(e)}else r.push(t);return 1===r.length?r[0]:t}function D(t,e,n=!1){const r=Q.removeAttributePrefix(i.formatXml(t.toString()));return n?e+":\n```html\n"+r+"\n```\n":r}e.SETTINGS={collapsed:!0,implicit:!0,wiki:!0},e.enrich=function(t,n){const a=i.cloneNode(t);return u(n.root),o.default.getInstance().structure&&t.setAttribute(Q.Attribute.STRUCTURE,l.SemanticSkeleton.fromStructure(t,n).toString()),r.Debugger.getInstance().generateOutput((()=>[D(a,"Original MathML",e.SETTINGS.wiki),D(n,"Semantic Tree",e.SETTINGS.wiki),D(t,"Semantically enriched MathML",e.SETTINGS.wiki)])),t},e.walkTree=u,e.introduceNewLayer=d,e.introduceLayerAboveLca=h,e.moveSemanticAttributes_=p,e.childrenSubset_=m,e.collateChildNodes_=f,e.collectChildNodes_=y,e.mergeChildren_=g,e.insertNewChild_=L,e.isDescendant_=b,e.functionApplication_=v,function(t){t.VALID="valid",t.INVALID="invalid",t.PRUNED="pruned"}(x=e.lcaType||(e.lcaType={})),e.mathmlLca_=_,e.prunePath_=H,e.attachedElement_=w,e.pathToRoot_=O,e.validLca_=M,e.ascendNewNode=S,e.descendNode_=E,e.unitChild_=A,e.isIgnorable_=C,e.parentNode_=V,e.addCollapsedAttribute=function(t,e){const n=new l.SemanticSkeleton(e);t.setAttribute(Q.Attribute.COLLAPSED,n.toString())},e.cloneContentNode=N,e.rewriteMfenced=I,e.createInvisibleOperator_=P,e.setOperatorAttribute_=R,e.getInnerNode=k,e.collapsePunctuated=function(t,e){const n=!!e,r=e||[],i=t.parent,o=t.contentNodes.map((function(t){return t.id}));o.unshift("c");const a=[t.id,o];for(let e,o=0;e=t.childNodes[o];o++){const t=u(e);r.push(t);const o=k(t);i&&!n&&o.setAttribute(Q.Attribute.PARENT,i.id.toString()),a.push(e.id)}return a},e.printNodeList__=function(t,e){console.info(t),i.toArray(e).forEach((function(t){console.info(t.toString())})),console.info("<<<<<<<<<<<<<<<<<")}},256:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractHighlighter=void 0;const r=n(1746),i=n(7206);class o{constructor(){this.color=null,this.mactionName="",this.currentHighlights=[]}highlight(t){this.currentHighlights.push(t.map((t=>{const e=this.highlightNode(t);return this.setHighlighted(t),e})))}highlightAll(t){const e=this.getMactionNodes(t);for(let t,n=0;t=e[n];n++)this.highlight([t])}unhighlight(){const t=this.currentHighlights.pop();t&&t.forEach((t=>{this.isHighlighted(t.node)&&(this.unhighlightNode(t),this.unsetHighlighted(t.node))}))}unhighlightAll(){for(;this.currentHighlights.length>0;)this.unhighlight()}setColor(t){this.color=t}colorString(){return this.color.rgba()}addEvents(t,e){const n=this.getMactionNodes(t);for(let t,r=0;t=n[r];r++)for(const n in e)t.addEventListener(n,e[n])}getMactionNodes(t){return Array.from(t.getElementsByClassName(this.mactionName))}isMactionNode(t){const e=t.className||t.getAttribute("class");return!!e&&!!e.match(new RegExp(this.mactionName))}isHighlighted(t){return t.hasAttribute(o.ATTR)}setHighlighted(t){t.setAttribute(o.ATTR,"true")}unsetHighlighted(t){t.removeAttribute(o.ATTR)}colorizeAll(t){r.evalXPath(`.//*[@${i.Attribute.ID}]`,t).forEach((t=>this.colorize(t)))}uncolorizeAll(t){r.evalXPath(`.//*[@${i.Attribute.ID}]`,t).forEach((t=>this.uncolorize(t)))}colorize(t){const e=(0,i.addPrefix)("foreground");t.hasAttribute(e)&&(t.setAttribute(e+"-old",t.style.color),t.style.color=t.getAttribute(e))}uncolorize(t){const e=(0,i.addPrefix)("foreground")+"-old";t.hasAttribute(e)&&(t.style.color=t.getAttribute(e))}}e.AbstractHighlighter=o,o.ATTR="sre-highlight"},823:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ChtmlHighlighter=void 0;const r=n(6732);class i extends r.CssHighlighter{constructor(){super()}isMactionNode(t){return t.tagName.toUpperCase()===this.mactionName.toUpperCase()}getMactionNodes(t){return Array.from(t.getElementsByTagName(this.mactionName))}}e.ChtmlHighlighter=i},4881:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ContrastPicker=e.ColorPicker=void 0;const n={red:{red:255,green:0,blue:0},green:{red:0,green:255,blue:0},blue:{red:0,green:0,blue:255},yellow:{red:255,green:255,blue:0},cyan:{red:0,green:255,blue:255},magenta:{red:255,green:0,blue:255},white:{red:255,green:255,blue:255},black:{red:0,green:0,blue:0}};function r(t,e){const r=t||{color:e};let i=Object.prototype.hasOwnProperty.call(r,"color")?n[r.color]:r;return i||(i=n[e]),i.alpha=Object.prototype.hasOwnProperty.call(r,"alpha")?r.alpha:1,function(t){const e=t=>(t=Math.max(t,0),t=Math.min(255,t),Math.round(t));return t.red=e(t.red),t.green=e(t.green),t.blue=e(t.blue),t.alpha=Math.max(t.alpha,0),t.alpha=Math.min(1,t.alpha),t}(i)}class i{constructor(t,e){this.foreground=r(e,i.DEFAULT_FOREGROUND_),this.background=r(t,i.DEFAULT_BACKGROUND_)}static toHex(t){const e=t.toString(16);return 1===e.length?"0"+e:e}rgba(){const t=function(t){return"rgba("+t.red+","+t.green+","+t.blue+","+t.alpha+")"};return{background:t(this.background),foreground:t(this.foreground)}}rgb(){const t=function(t){return"rgb("+t.red+","+t.green+","+t.blue+")"};return{background:t(this.background),alphaback:this.background.alpha.toString(),foreground:t(this.foreground),alphafore:this.foreground.alpha.toString()}}hex(){const t=function(t){return"#"+i.toHex(t.red)+i.toHex(t.green)+i.toHex(t.blue)};return{background:t(this.background),alphaback:this.background.alpha.toString(),foreground:t(this.foreground),alphafore:this.foreground.alpha.toString()}}}e.ColorPicker=i,i.DEFAULT_BACKGROUND_="blue",i.DEFAULT_FOREGROUND_="black",e.ContrastPicker=class{constructor(){this.hue=10,this.sat=100,this.light=50,this.incr=50}generate(){return e=function(t,e,n){e=e>1?e/100:e,n=n>1?n/100:n;const r=(1-Math.abs(2*n-1))*e,i=r*(1-Math.abs(t/60%2-1)),o=n-r/2;let a=0,s=0,l=0;return 0<=t&&t<60?[a,s,l]=[r,i,0]:60<=t&&t<120?[a,s,l]=[i,r,0]:120<=t&&t<180?[a,s,l]=[0,r,i]:180<=t&&t<240?[a,s,l]=[0,i,r]:240<=t&&t<300?[a,s,l]=[i,0,r]:300<=t&&t<360&&([a,s,l]=[r,0,i]),{red:a+o,green:s+o,blue:l+o}}(this.hue,this.sat,this.light),"rgb("+(t={red:Math.round(255*e.red),green:Math.round(255*e.green),blue:Math.round(255*e.blue)}).red+","+t.green+","+t.blue+")";var t,e}increment(){this.hue=(this.hue+this.incr)%360}}},6732:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CssHighlighter=void 0;const r=n(256);class i extends r.AbstractHighlighter{constructor(){super(),this.mactionName="mjx-maction"}highlightNode(t){const e={node:t,background:t.style.backgroundColor,foreground:t.style.color},n=this.colorString();return t.style.backgroundColor=n.background,t.style.color=n.foreground,e}unhighlightNode(t){t.node.style.backgroundColor=t.background,t.node.style.color=t.foreground}}e.CssHighlighter=i},7022:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.highlighterMapping_=e.addEvents=e.highlighter=void 0;const r=n(823),i=n(4881),o=n(6732),a=n(4835),s=n(158),l=n(7615),T=n(3191),Q=n(3278);e.highlighter=function(t,n,r){const o=new i.ColorPicker(t,n),a="NativeMML"===r.renderer&&"Safari"===r.browser?"MML-CSS":"SVG"===r.renderer&&"v3"===r.browser?"SVG-V3":r.renderer,s=new(e.highlighterMapping_[a]||e.highlighterMapping_.NativeMML);return s.setColor(o),s},e.addEvents=function(t,n,r){const i=e.highlighterMapping_[r.renderer];i&&(new i).addEvents(t,n)},e.highlighterMapping_={SVG:T.SvgHighlighter,"SVG-V3":Q.SvgV3Highlighter,NativeMML:l.MmlHighlighter,"HTML-CSS":a.HtmlHighlighter,"MML-CSS":s.MmlCssHighlighter,CommonHTML:o.CssHighlighter,CHTML:r.ChtmlHighlighter}},4835:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.HtmlHighlighter=void 0;const r=n(7041),i=n(256);class o extends i.AbstractHighlighter{constructor(){super(),this.mactionName="maction"}highlightNode(t){const e={node:t,foreground:t.style.color,position:t.style.position},n=this.color.rgb();t.style.color=n.foreground,t.style.position="relative";const i=t.bbox;if(i&&i.w){const o=.05,a=0,s=r.createElement("span"),l=parseFloat(t.style.paddingLeft||"0");s.style.backgroundColor=n.background,s.style.opacity=n.alphaback.toString(),s.style.display="inline-block",s.style.height=i.h+i.d+2*o+"em",s.style.verticalAlign=-i.d+"em",s.style.marginTop=s.style.marginBottom=-o+"em",s.style.width=i.w+2*a+"em",s.style.marginLeft=l-a+"em",s.style.marginRight=-i.w-a-l+"em",t.parentNode.insertBefore(s,t),e.box=s}return e}unhighlightNode(t){const e=t.node;e.style.color=t.foreground,e.style.position=t.position,t.box&&t.box.parentNode.removeChild(t.box)}}e.HtmlHighlighter=o},158:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MmlCssHighlighter=void 0;const r=n(6732);class i extends r.CssHighlighter{constructor(){super(),this.mactionName="maction"}getMactionNodes(t){return Array.from(t.getElementsByTagName(this.mactionName))}isMactionNode(t){return t.tagName===this.mactionName}}e.MmlCssHighlighter=i},7615:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MmlHighlighter=void 0;const r=n(256);class i extends r.AbstractHighlighter{constructor(){super(),this.mactionName="maction"}highlightNode(t){let e=t.getAttribute("style");return e+=";background-color: "+this.colorString().background,e+=";color: "+this.colorString().foreground,t.setAttribute("style",e),{node:t}}unhighlightNode(t){let e=t.node.getAttribute("style");e=e.replace(";background-color: "+this.colorString().background,""),e=e.replace(";color: "+this.colorString().foreground,""),t.node.setAttribute("style",e)}colorString(){return this.color.rgba()}getMactionNodes(t){return Array.from(t.getElementsByTagName(this.mactionName))}isMactionNode(t){return t.tagName===this.mactionName}}e.MmlHighlighter=i},3191:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SvgHighlighter=void 0;const r=n(7041),i=n(256);class o extends i.AbstractHighlighter{constructor(){super(),this.mactionName="mjx-svg-maction"}highlightNode(t){let e;if(this.isHighlighted(t))return e={node:t.previousSibling||t,background:t.style.backgroundColor,foreground:t.style.color},e;if("svg"===t.tagName){const e={node:t,background:t.style.backgroundColor,foreground:t.style.color};return t.style.backgroundColor=this.colorString().background,t.style.color=this.colorString().foreground,e}const n=r.createElementNS("http://www.w3.org/2000/svg","rect");let o;if("use"===t.nodeName){const e=r.createElementNS("http://www.w3.org/2000/svg","g");t.parentNode.insertBefore(e,t),e.appendChild(t),o=e.getBBox(),e.parentNode.replaceChild(t,e)}else o=t.getBBox();n.setAttribute("x",(o.x-40).toString()),n.setAttribute("y",(o.y-40).toString()),n.setAttribute("width",(o.width+80).toString()),n.setAttribute("height",(o.height+80).toString());const a=t.getAttribute("transform");return a&&n.setAttribute("transform",a),n.setAttribute("fill",this.colorString().background),n.setAttribute(i.AbstractHighlighter.ATTR,"true"),t.parentNode.insertBefore(n,t),e={node:n,foreground:t.getAttribute("fill")},t.setAttribute("fill",this.colorString().foreground),e}setHighlighted(t){"svg"===t.tagName&&super.setHighlighted(t)}unhighlightNode(t){if("background"in t)return t.node.style.backgroundColor=t.background,void(t.node.style.color=t.foreground);t.foreground?t.node.nextSibling.setAttribute("fill",t.foreground):t.node.nextSibling.removeAttribute("fill"),t.node.parentNode.removeChild(t.node)}isMactionNode(t){let e=t.className||t.getAttribute("class");return e=void 0!==e.baseVal?e.baseVal:e,!!e&&!!e.match(new RegExp(this.mactionName))}}e.SvgHighlighter=o},3278:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SvgV3Highlighter=void 0;const r=n(7041),i=n(1746),o=n(256),a=n(4881),s=n(3191);class l extends s.SvgHighlighter{constructor(){super(),this.mactionName="maction"}highlightNode(t){let e;if(this.isHighlighted(t))return e={node:t,background:this.colorString().background,foreground:this.colorString().foreground},e;if("svg"===t.tagName||"MJX-CONTAINER"===t.tagName)return e={node:t,background:t.style.backgroundColor,foreground:t.style.color},t.style.backgroundColor=this.colorString().background,t.style.color=this.colorString().foreground,e;const n=r.createElementNS("http://www.w3.org/2000/svg","rect");n.setAttribute("sre-highlighter-added","true");const i=t.getBBox();n.setAttribute("x",(i.x-40).toString()),n.setAttribute("y",(i.y-40).toString()),n.setAttribute("width",(i.width+80).toString()),n.setAttribute("height",(i.height+80).toString());const s=t.getAttribute("transform");if(s&&n.setAttribute("transform",s),n.setAttribute("fill",this.colorString().background),t.setAttribute(o.AbstractHighlighter.ATTR,"true"),t.parentNode.insertBefore(n,t),e={node:t,foreground:t.getAttribute("fill")},"rect"===t.nodeName){const e=new a.ColorPicker({alpha:0,color:"black"});t.setAttribute("fill",e.rgba().foreground)}else t.setAttribute("fill",this.colorString().foreground);return e}unhighlightNode(t){const e=t.node.previousSibling;if(e&&e.hasAttribute("sre-highlighter-added"))return t.foreground?t.node.setAttribute("fill",t.foreground):t.node.removeAttribute("fill"),void t.node.parentNode.removeChild(e);t.node.style.backgroundColor=t.background,t.node.style.color=t.foreground}isMactionNode(t){return t.getAttribute("data-mml-node")===this.mactionName}getMactionNodes(t){return Array.from(i.evalXPath(`.//*[@data-mml-node="${this.mactionName}"]`,t))}}e.SvgV3Highlighter=l},8729:function(t,e,n){var r=this&&this.__createBinding||(Object.create?function(t,e,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(e,n);i&&!("get"in i?!e.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return e[n]}}),Object.defineProperty(t,r,i)}:function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]}),i=this&&this.__exportStar||function(t,e){for(var n in t)"default"===n||Object.prototype.hasOwnProperty.call(e,n)||r(e,t,n)};Object.defineProperty(e,"__esModule",{value:!0}),e.variables=e.cli=void 0,i(n(2114),e);const o=n(7090),a=n(6948);e.cli=o.Cli,e.variables=a.Variables},4784:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.StaticTrieNode=e.AbstractTrieNode=void 0;const r=n(5605),i=n(7394);class o{constructor(t,e){this.constraint=t,this.test=e,this.children_={},this.kind=i.TrieNodeKind.ROOT}getConstraint(){return this.constraint}getKind(){return this.kind}applyTest(t){return this.test(t)}addChild(t){const e=t.getConstraint(),n=this.children_[e];return this.children_[e]=t,n}getChild(t){return this.children_[t]}getChildren(){const t=[];for(const e in this.children_)t.push(this.children_[e]);return t}findChildren(t){const e=[];for(const n in this.children_){const r=this.children_[n];r.applyTest(t)&&e.push(r)}return e}removeChild(t){delete this.children_[t]}toString(){return this.constraint}}e.AbstractTrieNode=o,e.StaticTrieNode=class extends o{constructor(t,e){super(t,e),this.rule_=null,this.kind=i.TrieNodeKind.STATIC}getRule(){return this.rule_}setRule(t){this.rule_&&r.Debugger.getInstance().output("Replacing rule "+this.rule_+" with "+t),this.rule_=t}toString(){return this.getRule()?this.constraint+"\n==> "+this.getRule().action:this.constraint}}},3998:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Trie=void 0;const r=n(7394),i=n(5388);class o{constructor(){this.root=(0,i.getNode)(r.TrieNodeKind.ROOT,"",null)}static collectRules_(t){const e=[];let n=[t];for(;n.length;){const t=n.shift();if(t.getKind()===r.TrieNodeKind.QUERY||t.getKind()===r.TrieNodeKind.BOOLEAN){const n=t.getRule();n&&e.unshift(n)}n=n.concat(t.getChildren())}return e}static printWithDepth_(t,e,n){n+=new Array(e+2).join(e.toString())+": "+t.toString()+"\n";const r=t.getChildren();for(let t,i=0;t=r[i];i++)n=o.printWithDepth_(t,e+1,n);return n}static order_(t){const e=t.getChildren();if(!e.length)return 0;const n=Math.max.apply(null,e.map(o.order_));return Math.max(e.length,n)}addRule(t){let e=this.root;const n=t.context,i=t.dynamicCstr.getValues();for(let t=0,o=i.length;t<o;t++)e=this.addNode_(e,i[t],r.TrieNodeKind.DYNAMIC,n);e=this.addNode_(e,t.precondition.query,r.TrieNodeKind.QUERY,n);const o=t.precondition.constraints;for(let t=0,i=o.length;t<i;t++)e=this.addNode_(e,o[t],r.TrieNodeKind.BOOLEAN,n);e.setRule(t)}lookupRules(t,e){let n=[this.root];const i=[];for(;e.length;){const t=e.shift(),i=[];for(;n.length;)n.shift().getChildren().forEach((e=>{e.getKind()===r.TrieNodeKind.DYNAMIC&&-1===t.indexOf(e.getConstraint())||i.push(e)}));n=i.slice()}for(;n.length;){const e=n.shift();if(e.getRule){const t=e.getRule();t&&i.push(t)}const r=e.findChildren(t);n=n.concat(r)}return i}hasSubtrie(t){let e=this.root;for(let n=0,r=t.length;n<r;n++){const r=t[n];if(e=e.getChild(r),!e)return!1}return!0}toString(){return o.printWithDepth_(this.root,0,"")}collectRules(){return o.collectRules_(this.root)}order(){return o.order_(this.root)}enumerate(t){return this.enumerate_(this.root,t)}byConstraint(t){let e=this.root;for(;t.length&&e;){const n=t.shift();e=e.getChild(n)}return e||null}enumerate_(t,e){e=e||{};const n=t.getChildren();for(let t,i=0;t=n[i];i++)t.kind===r.TrieNodeKind.DYNAMIC&&(e[t.getConstraint()]=this.enumerate_(t,e[t.getConstraint()]));return e}addNode_(t,e,n,r){let o=t.getChild(e);return o||(o=(0,i.getNode)(n,e,r),t.addChild(o)),o}}e.Trie=o},7394:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TrieNodeKind=void 0,function(t){t.ROOT="root",t.DYNAMIC="dynamic",t.QUERY="query",t.BOOLEAN="boolean",t.STATIC="static"}(e.TrieNodeKind||(e.TrieNodeKind={}))},5388:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BooleanTrieNode=e.QueryTrieNode=e.constraintTest_=e.DynamicTrieNode=e.RootTrieNode=e.getNode=void 0;const r=n(7041),i=n(1746),o=n(7534),a=n(8844),s=n(4784),l=n(4784),T=n(7394);e.getNode=function(t,e,n){switch(t){case T.TrieNodeKind.ROOT:return new Q;case T.TrieNodeKind.DYNAMIC:return new c(e);case T.TrieNodeKind.QUERY:return new h(e,n);case T.TrieNodeKind.BOOLEAN:return new p(e,n);default:return null}};class Q extends s.AbstractTrieNode{constructor(){super("",(()=>!0)),this.kind=T.TrieNodeKind.ROOT}}e.RootTrieNode=Q;class c extends s.AbstractTrieNode{constructor(t){super(t,(e=>e===t)),this.kind=T.TrieNodeKind.DYNAMIC}}e.DynamicTrieNode=c;const u={"=":(t,e)=>t===e,"!=":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e};function d(t){if(t.match(/^self::\*$/))return t=>!0;if(t.match(/^self::\w+$/)){const e=t.slice(6).toUpperCase();return t=>t.tagName&&r.tagName(t)===e}if(t.match(/^self::\w+:\w+$/)){const e=t.split(":"),n=i.resolveNameSpace(e[2]);if(!n)return null;const r=e[3].toUpperCase();return t=>t.localName&&t.localName.toUpperCase()===r&&t.namespaceURI===n}if(t.match(/^@\w+$/)){const e=t.slice(1);return t=>t.hasAttribute&&t.hasAttribute(e)}if(t.match(/^@\w+="[\w\d ]+"$/)){const e=t.split("="),n=e[0].slice(1),r=e[1].slice(1,-1);return t=>t.hasAttribute&&t.hasAttribute(n)&&t.getAttribute(n)===r}if(t.match(/^@\w+!="[\w\d ]+"$/)){const e=t.split("!="),n=e[0].slice(1),r=e[1].slice(1,-1);return t=>!t.hasAttribute||!t.hasAttribute(n)||t.getAttribute(n)!==r}if(t.match(/^contains\(\s*@grammar\s*,\s*"[\w\d ]+"\s*\)$/)){const e=t.split('"')[1];return t=>!!o.Grammar.getInstance().getParameter(e)}if(t.match(/^not\(\s*contains\(\s*@grammar\s*,\s*"[\w\d ]+"\s*\)\s*\)$/)){const e=t.split('"')[1];return t=>!o.Grammar.getInstance().getParameter(e)}if(t.match(/^name\(\.\.\/\.\.\)="\w+"$/)){const e=t.split('"')[1].toUpperCase();return t=>{var n,i;return(null===(i=null===(n=t.parentNode)||void 0===n?void 0:n.parentNode)||void 0===i?void 0:i.tagName)&&r.tagName(t.parentNode.parentNode)===e}}if(t.match(/^count\(preceding-sibling::\*\)=\d+$/)){const e=t.split("="),n=parseInt(e[1],10);return t=>{var e;return(null===(e=t.parentNode)||void 0===e?void 0:e.childNodes[n])===t}}if(t.match(/^.+\[@category!?=".+"\]$/)){let[,e,n,r]=t.match(/^(.+)\[@category(!?=)"(.+)"\]$/);const o=r.match(/^unit:(.+)$/);let s="";return o&&(r=o[1],s=":unit"),t=>{const o=i.evalXPath(e,t)[0];if(o){const t=a.lookupCategory(o.textContent+s);return"="===n?t===r:t!==r}return!1}}if(t.match(/^string-length\(.+\)\W+\d+/)){const[,e,n,r]=t.match(/^string-length\((.+)\)(\W+)(\d+)/),o=u[n]||u["="],a=parseInt(r,10);return t=>{const n=i.evalXPath(e,t)[0];return!!n&&o(Array.from(n.textContent).length,a)}}return null}e.constraintTest_=d;class h extends l.StaticTrieNode{constructor(t,e){super(t,d(t)),this.context=e,this.kind=T.TrieNodeKind.QUERY}applyTest(t){return this.test?this.test(t):this.context.applyQuery(t,this.constraint)===t}}e.QueryTrieNode=h;class p extends l.StaticTrieNode{constructor(t,e){super(t,d(t)),this.context=e,this.kind=T.TrieNodeKind.BOOLEAN}applyTest(t){return this.test?this.test(t):this.context.applyConstraint(t,this.constraint)}}e.BooleanTrieNode=p},2420:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.completeLocale=e.getLocale=e.setLocale=e.locales=void 0;const r=n(3684),i=n(6948),o=n(7534),a=n(1289),s=n(3078),l=n(1811),T=n(2437),Q=n(842),c=n(6905),u=n(6520),d=n(5937),h=n(3657),p=n(3347),m=n(7876),f=n(3737),y=n(3826);function g(){const t=i.Variables.ensureLocale(r.default.getInstance().locale,r.default.getInstance().defaultLocale);return r.default.getInstance().locale=t,e.locales[t]()}e.locales={ca:a.ca,da:s.da,de:l.de,en:T.en,es:Q.es,fr:c.fr,hi:u.hi,it:d.it,nb:h.nb,nn:m.nn,sv:f.sv,nemeth:p.nemeth},e.setLocale=function(){const t=g();if(function(t){const e=r.default.getInstance().subiso;-1===t.SUBISO.all.indexOf(e)&&(r.default.getInstance().subiso=t.SUBISO.default),t.SUBISO.current=r.default.getInstance().subiso}(t),t){for(const e of Object.getOwnPropertyNames(t))y.LOCALE[e]=t[e];for(const[e,n]of Object.entries(t.CORRECTIONS))o.Grammar.getInstance().setCorrection(e,n)}},e.getLocale=g,e.completeLocale=function(t){const n=e.locales[t.locale];if(!n)return void console.error("Locale "+t.locale+" does not exist!");const r=t.kind.toUpperCase(),i=t.messages;if(!i)return;const o=n();for(const[t,e]of Object.entries(i))o[r][t]=e}},3826:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createLocale=e.LOCALE=void 0;const r=n(6695);function i(){return{FUNCTIONS:(0,r.FUNCTIONS)(),MESSAGES:(0,r.MESSAGES)(),ALPHABETS:(0,r.ALPHABETS)(),NUMBERS:(0,r.NUMBERS)(),COMBINERS:{},CORRECTIONS:{},SUBISO:(0,r.SUBISO)()}}e.LOCALE=i(),e.createLocale=i},5681:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.localeFontCombiner=e.extractString=e.localEnclose=e.localRole=e.localFont=e.combinePostfixIndex=e.nestingToString=void 0;const r=n(3826),i=n(1404);function o(t,e){return void 0===t?e:"string"==typeof t?t:t[0]}e.nestingToString=function(t){switch(t){case 1:return r.LOCALE.MESSAGES.MS.ONCE||"";case 2:return r.LOCALE.MESSAGES.MS.TWICE;default:return t.toString()}},e.combinePostfixIndex=function(t,e){return t===r.LOCALE.MESSAGES.MS.ROOTINDEX||t===r.LOCALE.MESSAGES.MS.INDEX?t:t+" "+e},e.localFont=function(t){return o(r.LOCALE.MESSAGES.font[t],t)},e.localRole=function(t){return o(r.LOCALE.MESSAGES.role[t],t)},e.localEnclose=function(t){return o(r.LOCALE.MESSAGES.enclose[t],t)},e.extractString=o,e.localeFontCombiner=function(t){return"string"==typeof t?{font:t,combiner:r.LOCALE.ALPHABETS.combiner}:{font:t[0],combiner:r.LOCALE.COMBINERS[t[1]]||i.Combiners[t[1]]||r.LOCALE.ALPHABETS.combiner}}},1289:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ca=void 0;const r=n(3826),i=n(5681),o=n(3296),a=n(1404),s=function(t,e,n){return t="sans serif "+(n?n+" "+t:t),e?t+" "+e:t};let l=null;e.ca=function(){return l||(l=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.COMBINERS.sansserif=s,t.FUNCTIONS.fracNestDepth=t=>!1,t.FUNCTIONS.combineRootIndex=i.combinePostfixIndex,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>t+n,t.FUNCTIONS.fontRegexp=t=>RegExp("^"+t+" "),t.FUNCTIONS.plural=t=>/.*os$/.test(t)?t+"sos":/.*s$/.test(t)?t+"os":/.*ga$/.test(t)?t.slice(0,-2)+"gues":/.*\xe7a$/.test(t)?t.slice(0,-2)+"ces":/.*ca$/.test(t)?t.slice(0,-2)+"ques":/.*ja$/.test(t)?t.slice(0,-2)+"ges":/.*qua$/.test(t)?t.slice(0,-3)+"qües":/.*a$/.test(t)?t.slice(0,-1)+"es":/.*(e|i)$/.test(t)?t+"ns":/.*\xed$/.test(t)?t.slice(0,-1)+"ins":t+"s",t.FUNCTIONS.si=(t,e)=>(e.match(/^metre/)&&(t=t.replace(/a$/,"à").replace(/o$/,"ò").replace(/i$/,"í")),t+e),t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t}()),l}},3078:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.da=void 0;const r=n(3826),i=n(5681),o=n(1270),a=n(1404);let s=null;e.da=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t.FUNCTIONS.fontRegexp=e=>e===t.ALPHABETS.capPrefix.default?RegExp("^"+e+" "):RegExp(" "+e+"$"),t.ALPHABETS.combiner=a.Combiners.postfixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t}()),s}},1811:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.de=void 0;const r=n(7534),i=n(5681),o=n(3826),a=n(3966),s=function(t,e,n){return"s"===n&&(e=e.split(" ").map((function(t){return t.replace(/s$/,"")})).join(" "),n=""),t=n?n+" "+t:t,e?e+" "+t:t},l=function(t,e,n){return t=n&&"s"!==n?n+" "+t:t,e?t+" "+e:t};let T=null;e.de=function(){return T||(T=function(){const t=(0,o.createLocale)();return t.NUMBERS=a.default,t.COMBINERS.germanPostfix=l,t.ALPHABETS.combiner=s,t.FUNCTIONS.radicalNestDepth=e=>e>1?t.NUMBERS.numberToWords(e)+"fach":"",t.FUNCTIONS.combineRootIndex=(t,e)=>{const n=e?e+"wurzel":"";return t.replace("Wurzel",n)},t.FUNCTIONS.combineNestedRadical=(t,e,n)=>{const r=(e?e+" ":"")+(t=n.match(/exponent$/)?t+"r":t);return n.match(/ /)?n.replace(/ /," "+r+" "):r+" "+n},t.FUNCTIONS.fontRegexp=function(t){return t=t.split(" ").map((function(t){return t.replace(/s$/,"(|s)")})).join(" "),new RegExp("((^"+t+" )|( "+t+"$))")},t.CORRECTIONS.correctOne=t=>t.replace(/^eins$/,"ein"),t.CORRECTIONS.localFontNumber=t=>(0,i.localFont)(t).split(" ").map((function(t){return t.replace(/s$/,"")})).join(" "),t.CORRECTIONS.lowercase=t=>t.toLowerCase(),t.CORRECTIONS.article=t=>{const e=r.Grammar.getInstance().getParameter("case"),n=r.Grammar.getInstance().getParameter("plural");return"dative"===e?{der:"dem",die:n?"den":"der",das:"dem"}[t]:t},t.CORRECTIONS.masculine=t=>"dative"===r.Grammar.getInstance().getParameter("case")?t+"n":t,t}()),T}},2437:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.en=void 0;const r=n(7534),i=n(3826),o=n(5681),a=n(440),s=n(1404);let l=null;e.en=function(){return l||(l=function(){const t=(0,i.createLocale)();return t.NUMBERS=a.default,t.FUNCTIONS.radicalNestDepth=o.nestingToString,t.FUNCTIONS.plural=t=>/.*s$/.test(t)?t:t+"s",t.ALPHABETS.combiner=s.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=a.default.numberToWords,t.CORRECTIONS.article=t=>r.Grammar.getInstance().getParameter("noArticle")?"":t,t}()),l}},842:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.es=void 0;const r=n(3826),i=n(5681),o=n(8121),a=n(1404),s=function(t,e,n){return t="sans serif "+(n?n+" "+t:t),e?t+" "+e:t};let l=null;e.es=function(){return l||(l=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.COMBINERS.sansserif=s,t.FUNCTIONS.fracNestDepth=t=>!1,t.FUNCTIONS.combineRootIndex=i.combinePostfixIndex,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>t+n,t.FUNCTIONS.fontRegexp=t=>RegExp("^"+t+" "),t.FUNCTIONS.plural=t=>/.*(a|e|i|o|u)$/.test(t)?t+"s":/.*z$/.test(t)?t.slice(0,-1)+"ces":/.*c$/.test(t)?t.slice(0,-1)+"ques":/.*g$/.test(t)?t+"ues":/.*\u00f3n$/.test(t)?t.slice(0,-2)+"ones":t+"es",t.FUNCTIONS.si=(t,e)=>(e.match(/^metro/)&&(t=t.replace(/a$/,"á").replace(/o$/,"ó").replace(/i$/,"í")),t+e),t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t}()),l}},6905:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.fr=void 0;const r=n(7534),i=n(3826),o=n(5681),a=n(9990),s=n(1404);let l=null;e.fr=function(){return l||(l=function(){const t=(0,i.createLocale)();return t.NUMBERS=a.default,t.FUNCTIONS.radicalNestDepth=o.nestingToString,t.FUNCTIONS.combineRootIndex=o.combinePostfixIndex,t.FUNCTIONS.combineNestedFraction=(t,e,n)=>n.replace(/ $/g,"")+e+t,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>n+" "+t,t.FUNCTIONS.fontRegexp=t=>RegExp(" (en |)"+t+"$"),t.FUNCTIONS.plural=t=>/.*s$/.test(t)?t:t+"s",t.CORRECTIONS.article=t=>r.Grammar.getInstance().getParameter("noArticle")?"":t,t.ALPHABETS.combiner=s.Combiners.romanceCombiner,t.SUBISO={default:"fr",current:"fr",all:["fr","be","ch"]},t}()),l}},6520:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.hi=void 0;const r=n(3826),i=n(4585),o=n(1404),a=n(5681);let s=null;e.hi=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=i.default,t.ALPHABETS.combiner=o.Combiners.prefixCombiner,t.FUNCTIONS.radicalNestDepth=a.nestingToString,t}()),s}},5937:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.it=void 0;const r=n(5681),i=n(3826),o=n(6146),a=n(1404),s=function(t,e,n){return t.match(/^[a-zA-Z]$/)&&(e=e.replace("cerchiato","cerchiata")),t=n?t+" "+n:t,e?t+" "+e:t};let l=null;e.it=function(){return l||(l=function(){const t=(0,i.createLocale)();return t.NUMBERS=o.default,t.COMBINERS.italianPostfix=s,t.FUNCTIONS.radicalNestDepth=r.nestingToString,t.FUNCTIONS.combineRootIndex=r.combinePostfixIndex,t.FUNCTIONS.combineNestedFraction=(t,e,n)=>n.replace(/ $/g,"")+e+t,t.FUNCTIONS.combineNestedRadical=(t,e,n)=>n+" "+t,t.FUNCTIONS.fontRegexp=t=>RegExp(" (en |)"+t+"$"),t.ALPHABETS.combiner=a.Combiners.romanceCombiner,t}()),l}},3657:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.nb=void 0;const r=n(3826),i=n(5681),o=n(9808),a=n(1404);let s=null;e.nb=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t}()),s}},3347:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.nemeth=void 0;const r=n(3826),i=n(6823),o=n(1404),a=function(t){return t.match(RegExp("^"+u.ALPHABETS.languagePrefix.english))?t.slice(1):t},s=function(t,e,n){return t=a(t),e?t+e:t},l=function(t,e,n){return e+a(t)},T=function(t,e,n){return e+(n||"")+(t=a(t))+"⠻"},Q=function(t,e,n){return e+(n||"")+(t=a(t))+"⠻⠻"},c=function(t,e,n){return e+(t=a(t))+"⠾"};let u=null;e.nemeth=function(){return u||(u=function(){const t=(0,r.createLocale)();return t.NUMBERS=i.default,t.COMBINERS={postfixCombiner:s,germanCombiner:l,embellishCombiner:T,doubleEmbellishCombiner:Q,parensCombiner:c},t.FUNCTIONS.fracNestDepth=t=>!1,t.FUNCTIONS.fontRegexp=t=>RegExp("^"+t),t.FUNCTIONS.si=o.identityTransformer,t.ALPHABETS.combiner=(t,e,n)=>e?e+n+t:a(t),t.ALPHABETS.digitTrans={default:i.default.numberToWords},t}()),u}},7876:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.nn=void 0;const r=n(3826),i=n(5681),o=n(9808),a=n(1404);let s=null;e.nn=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t.SUBISO={default:"",current:"",all:["","alt"]},t}()),s}},3737:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.sv=void 0;const r=n(3826),i=n(5681),o=n(611),a=n(1404);let s=null;e.sv=function(){return s||(s=function(){const t=(0,r.createLocale)();return t.NUMBERS=o.default,t.FUNCTIONS.radicalNestDepth=i.nestingToString,t.FUNCTIONS.fontRegexp=function(t){return new RegExp("((^"+t+" )|( "+t+"$))")},t.ALPHABETS.combiner=a.Combiners.prefixCombiner,t.ALPHABETS.digitTrans.default=o.default.numberToWords,t.CORRECTIONS.correctOne=t=>t.replace(/^ett$/,"en"),t}()),s}},6695:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SUBISO=e.FUNCTIONS=e.ALPHABETS=e.NUMBERS=e.MESSAGES=void 0;const r=n(1404);e.MESSAGES=function(){return{MS:{},MSroots:{},font:{},embellish:{},role:{},enclose:{},navigate:{},regexp:{},unitTimes:""}},e.NUMBERS=function(){return{zero:"zero",ones:[],tens:[],large:[],special:{},wordOrdinal:r.identityTransformer,numericOrdinal:r.identityTransformer,numberToWords:r.identityTransformer,numberToOrdinal:r.pluralCase,vulgarSep:" ",numSep:" "}},e.ALPHABETS=function(){return{latinSmall:[],latinCap:[],greekSmall:[],greekCap:[],capPrefix:{default:""},smallPrefix:{default:""},digitPrefix:{default:""},languagePrefix:{},digitTrans:{default:r.identityTransformer,mathspeak:r.identityTransformer,clearspeak:r.identityTransformer},letterTrans:{default:r.identityTransformer},combiner:(t,e,n)=>t}},e.FUNCTIONS=function(){return{fracNestDepth:t=>r.vulgarFractionSmall(t,10,100),radicalNestDepth:t=>"",combineRootIndex:function(t,e){return t},combineNestedFraction:r.Combiners.identityCombiner,combineNestedRadical:r.Combiners.identityCombiner,fontRegexp:function(t){return new RegExp("^"+t.split(/ |-/).join("( |-)")+"( |-)")},si:r.siCombiner,plural:r.identityTransformer}},e.SUBISO=function(){return{default:"",current:"",all:[]}}},3296:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){const e=t%1e3,n=Math.floor(e/100),r=n?1===n?"cent":s.ones[n]+"-cents":"",i=function(t){const e=t%100;if(e<20)return s.ones[e];const n=Math.floor(e/10),r=s.tens[n],i=s.ones[e%10];return r&&i?r+(2===n?"-i-":"-")+i:r||i}(e%100);return r&&i?r+s.numSep+i:r||i}function o(t){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;){const r=t%(e>1?1e6:1e3);if(r){let t=s.large[e];if(e)if(1===e)n=(1===r?"":i(r)+s.numSep)+t+(n?s.numSep+n:"");else{const e=o(r);t=1===r?t:t.replace(/\u00f3$/,"ons"),n=e+s.numSep+t+(n?s.numSep+n:"")}else n=i(r)}t=Math.floor(t/(e>1?1e6:1e3)),e++}return n}function a(t){const e=r.Grammar.getInstance().getParameter("gender");return t.toString()+("f"===e?"a":"n")}const s=(0,n(6695).NUMBERS)();s.numericOrdinal=a,s.numberToWords=o,s.numberToOrdinal=function(t,e){if(t>1999)return a(t);if(t<=10)return s.special.onesOrdinals[t-1];const n=o(t);return n.match(/mil$/)?n.replace(/mil$/,"mil·lèsima"):n.match(/u$/)?n.replace(/u$/,"vena"):n.match(/a$/)?n.replace(/a$/,"ena"):n+(n.match(/e$/)?"na":"ena")},e.default=s},1270:(t,e,n)=>{function r(t,e=!1){return t===s.ones[1]?e?"et":"en":t}function i(t,e=!1){let n=t%1e3,i="",o=s.ones[Math.floor(n/100)];if(i+=o?r(o,!0)+" hundrede":"",n%=100,n)if(i+=i?" og ":"",o=e?s.special.smallOrdinals[n]:s.ones[n],o)i+=o;else{const t=e?s.special.tensOrdinals[Math.floor(n/10)]:s.tens[Math.floor(n/10)];o=s.ones[n%10],i+=o?r(o)+"og"+t:t}return i}function o(t,e=!1){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,o="";for(;t>0;){const a=t%1e3;if(a){const t=i(a,e&&!n);if(n){const e=s.large[n],i=a>1?"er":"";o=r(t,n<=1)+" "+e+i+(o?" og ":"")+o}else o=r(t)+o}t=Math.floor(t/1e3),n++}return o}function a(t){if(t%100)return o(t,!0);const e=o(t);return e.match(/e$/)?e:e+"e"}Object.defineProperty(e,"__esModule",{value:!0});const s=(0,n(6695).NUMBERS)();s.wordOrdinal=a,s.numericOrdinal=function(t){return t.toString()+"."},s.numberToWords=o,s.numberToOrdinal=function(t,e){return 1===t?e?"hel":"hele":2===t?e?"halv":"halve":a(t)+(e?"dele":"del")},e.default=s},3966:(t,e,n)=>{function r(t,e=!1){return t===s.ones[1]?e?"eine":"ein":t}function i(t){let e=t%1e3,n="",i=s.ones[Math.floor(e/100)];if(n+=i?r(i)+"hundert":"",e%=100,e)if(n+=n?s.numSep:"",i=s.ones[e],i)n+=i;else{const t=s.tens[Math.floor(e/10)];i=s.ones[e%10],n+=i?r(i)+"und"+t:t}return n}function o(t){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;){const o=t%1e3;if(o){const a=i(t%1e3);if(e){const t=s.large[e],i=e>1&&o>1?t.match(/e$/)?"n":"en":"";n=r(a,e>1)+t+i+n}else n=r(a,e>1)+n}t=Math.floor(t/1e3),e++}return n.replace(/ein$/,"eins")}function a(t){return 1===t?"erste":3===t?"dritte":7===t?"siebte":8===t?"achte":o(t)+(t<19?"te":"ste")}Object.defineProperty(e,"__esModule",{value:!0});const s=(0,n(6695).NUMBERS)();s.wordOrdinal=a,s.numericOrdinal=function(t){return t.toString()+"."},s.numberToWords=o,s.numberToOrdinal=function(t,e){return 1===t?"eintel":2===t?e?"halbe":"halb":a(t)+"l"},e.default=s},440:(t,e,n)=>{function r(t){let e=t%1e3,n="";return n+=a.ones[Math.floor(e/100)]?a.ones[Math.floor(e/100)]+a.numSep+"hundred":"",e%=100,e&&(n+=n?a.numSep:"",n+=a.ones[e]||a.tens[Math.floor(e/10)]+(e%10?a.numSep+a.ones[e%10]:"")),n}function i(t){if(0===t)return a.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;)t%1e3&&(n=r(t%1e3)+(e?"-"+a.large[e]+"-":"")+n),t=Math.floor(t/1e3),e++;return n.replace(/-$/,"")}function o(t){let e=i(t);return e.match(/one$/)?e=e.slice(0,-3)+"first":e.match(/two$/)?e=e.slice(0,-3)+"second":e.match(/three$/)?e=e.slice(0,-5)+"third":e.match(/five$/)?e=e.slice(0,-4)+"fifth":e.match(/eight$/)?e=e.slice(0,-5)+"eighth":e.match(/nine$/)?e=e.slice(0,-4)+"ninth":e.match(/twelve$/)?e=e.slice(0,-6)+"twelfth":e.match(/ty$/)?e=e.slice(0,-2)+"tieth":e+="th",e}Object.defineProperty(e,"__esModule",{value:!0});const a=(0,n(6695).NUMBERS)();a.wordOrdinal=o,a.numericOrdinal=function(t){const e=t%100,n=t.toString();if(e>10&&e<20)return n+"th";switch(t%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd";default:return n+"th"}},a.numberToWords=i,a.numberToOrdinal=function(t,e){if(1===t)return e?"oneths":"oneth";if(2===t)return e?"halves":"half";const n=o(t);return e?n+"s":n},e.default=a},8121:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){const e=t%1e3,n=Math.floor(e/100),r=o.special.hundreds[n],i=function(t){const e=t%100;if(e<30)return o.ones[e];const n=o.tens[Math.floor(e/10)],r=o.ones[e%10];return n&&r?n+" y "+r:n||r}(e%100);return 1===n?i?r+"to "+i:r:r&&i?r+" "+i:r||i}const o=(0,n(6695).NUMBERS)();o.numericOrdinal=function(t){const e=r.Grammar.getInstance().getParameter("gender");return t.toString()+("f"===e?"a":"o")},o.numberToWords=function(t){if(0===t)return o.zero;if(t>=Math.pow(10,36))return t.toString();let e=0,n="";for(;t>0;){const r=t%1e3;if(r){let t=o.large[e];const a=i(r);e?1===r?(t=t.match("/^mil( |$)/")?t:"un "+t,n=t+(n?" "+n:"")):(t=t.replace(/\u00f3n$/,"ones"),n=i(r)+" "+t+(n?" "+n:"")):n=a}t=Math.floor(t/1e3),e++}return n},o.numberToOrdinal=function(t,e){if(t>1999)return t.toString()+"a";if(t<=12)return o.special.onesOrdinals[t-1];const n=[];if(t>=1e3&&(t-=1e3,n.push("milésima")),!t)return n.join(" ");let r=0;return r=Math.floor(t/100),r>0&&(n.push(o.special.hundredsOrdinals[r-1]),t%=100),t<=12?n.push(o.special.onesOrdinals[t-1]):(r=Math.floor(t/10),r>0&&(n.push(o.special.tensOrdinals[r-1]),t%=10),t>0&&n.push(o.special.onesOrdinals[t-1])),n.join(" ")},e.default=o},9990:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(3684),i=n(7534),o=n(6695);function a(t){let e=t%1e3,n="";if(n+=Q.ones[Math.floor(e/100)]?Q.ones[Math.floor(e/100)]+"-cent":"",e%=100,e){n+=n?"-":"";let t=Q.ones[e];if(t)n+=t;else{const r=Q.tens[Math.floor(e/10)];r.match(/-dix$/)?(t=Q.ones[e%10+10],n+=r.replace(/-dix$/,"")+"-"+t):n+=r+(e%10?"-"+Q.ones[e%10]:"")}}const r=n.match(/s-\w+$/);return r?n.replace(/s-\w+$/,r[0].slice(1)):n.replace(/-un$/,"-et-un")}function s(t){if(0===t)return Q.zero;if(t>=Math.pow(10,36))return t.toString();Q.special["tens-"+r.default.getInstance().subiso]&&(Q.tens=Q.special["tens-"+r.default.getInstance().subiso]);let e=0,n="";for(;t>0;){const r=t%1e3;if(r){let t=Q.large[e];const i=a(r);if(t&&t.match(/^mille /)){const r=t.replace(/^mille /,"");n=n.match(RegExp(r))?i+(e?"-mille-":"")+n:n.match(RegExp(r.replace(/s$/,"")))?i+(e?"-mille-":"")+n.replace(r.replace(/s$/,""),r):i+(e?"-"+t+"-":"")+n}else t=1===r&&t?t.replace(/s$/,""):t,n=i+(e?"-"+t+"-":"")+n}t=Math.floor(t/1e3),e++}return n.replace(/-$/,"")}const l={1:"unième",2:"demi",3:"tiers",4:"quart"};function T(t){if(1===t)return"première";let e=s(t);return e.match(/^neuf$/)?e=e.slice(0,-1)+"v":e.match(/cinq$/)?e+="u":e.match(/trois$/)?e+="":(e.match(/e$/)||e.match(/s$/))&&(e=e.slice(0,-1)),e+="ième",e}const Q=(0,o.NUMBERS)();Q.wordOrdinal=T,Q.numericOrdinal=function(t){const e=i.Grammar.getInstance().getParameter("gender");return 1===t?t.toString()+("m"===e?"er":"re"):t.toString()+"e"},Q.numberToWords=s,Q.numberToOrdinal=function(t,e){const n=l[t]||T(t);return 3===t?n:e?n+"s":n},e.default=Q},4585:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){if(0===t)return a.zero;if(t>=Math.pow(10,32))return t.toString();let e=0,n="";const r=function(t){let e=t%1e3,n="";return n+=a.ones[Math.floor(e/100)]?a.ones[Math.floor(e/100)]+a.numSep+a.special.hundred:"",e%=100,e&&(n+=n?a.numSep:"",n+=a.ones[e]),n}(t%1e3);if(!(t=Math.floor(t/1e3)))return r;for(;t>0;){const r=t%100;r&&(n=a.ones[r]+a.numSep+a.large[e]+(n?a.numSep+n:"")),t=Math.floor(t/100),e++}return r?n+a.numSep+r:n}function o(t){const e=r.Grammar.getInstance().getParameter("gender");return t<=0?t.toString():t<10?"f"===e?a.special.ordinalsFeminine[t]:a.special.ordinalsMasculine[t]:i(t)+("f"===e?"वीं":"वाँ")}const a=(0,n(6695).NUMBERS)();a.wordOrdinal=o,a.numericOrdinal=function(t){const e=r.Grammar.getInstance().getParameter("gender");return t>0&&t<10?"f"===e?a.special.simpleSmallOrdinalsFeminine[t]:a.special.simpleSmallOrdinalsMasculine[t]:t.toString().split("").map((function(t){const e=parseInt(t,10);return isNaN(e)?"":a.special.simpleNumbers[e]})).join("")+("f"===e?"वीं":"वाँ")},a.numberToWords=i,a.numberToOrdinal=function(t,e){return t<=10?a.special.smallDenominators[t]:o(t)+" अंश"},e.default=a},6146:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7534);function i(t){let e=t%1e3,n="";if(n+=s.ones[Math.floor(e/100)]?s.ones[Math.floor(e/100)]+s.numSep+"cento":"",e%=100,e){n+=n?s.numSep:"";const t=s.ones[e];if(t)n+=t;else{let t=s.tens[Math.floor(e/10)];const r=e%10;1!==r&&8!==r||(t=t.slice(0,-1)),n+=t,n+=r?s.numSep+s.ones[e%10]:""}}return n}function o(t){if(0===t)return s.zero;if(t>=Math.pow(10,36))return t.toString();if(1===t&&r.Grammar.getInstance().getParameter("fraction"))return"un";let e=0,n="";for(;t>0;)t%1e3&&(n=i(t%1e3)+(e?"-"+s.large[e]+"-":"")+n),t=Math.floor(t/1e3),e++;return n.replace(/-$/,"")}function a(t){const e="m"===r.Grammar.getInstance().getParameter("gender")?"o":"a";let n=s.special.onesOrdinals[t];return n?n.slice(0,-1)+e:(n=o(t),n.slice(0,-1)+"esim"+e)}const s=(0,n(6695).NUMBERS)();s.wordOrdinal=a,s.numericOrdinal=function(t){const e=r.Grammar.getInstance().getParameter("gender");return t.toString()+("m"===e?"o":"a")},s.numberToWords=o,s.numberToOrdinal=function(t,e){if(2===t)return e?"mezzi":"mezzo";const n=a(t);if(!e)return n;const r=n.match(/o$/)?"i":"e";return n.slice(0,-1)+r},e.default=s},6823:(t,e,n)=>{function r(t){return t.toString().split("").map((function(t){return i.ones[parseInt(t,10)]})).join("")}Object.defineProperty(e,"__esModule",{value:!0});const i=(0,n(6695).NUMBERS)();i.numberToWords=r,i.numberToOrdinal=r,e.default=i},9808:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(3684);function i(t,e=!1){let n=t%1e3,r="";const i=Math.floor(n/100),a=s.ones[i];if(r+=a?(1===i?"":a)+"hundre":"",n%=100,n){if(r+=r?"og":"",e){const t=s.special.smallOrdinals[n];if(t)return r+t;if(n%10)return r+s.tens[Math.floor(n/10)]+s.special.smallOrdinals[n%10]}r+=s.ones[n]||s.tens[Math.floor(n/10)]+(n%10?s.ones[n%10]:"")}return e?o(r):r}function o(t){const e=s.special.endOrdinal[0];return"a"===e&&t.match(/en$/)?t.slice(0,-2)+s.special.endOrdinal:t.match(/(d|n)$/)||t.match(/hundre$/)?t+"de":t.match(/i$/)?t+s.special.endOrdinal:"a"===e&&t.match(/e$/)?t.slice(0,-1)+s.special.endOrdinal:(t.match(/e$/),t+"nde")}function a(t){return Q(t,!0)}const s=(0,n(6695).NUMBERS)();function l(t,e=!1){return t===s.ones[1]?"ein"===t?"eitt ":e?"et":"ett":t}function T(t,e=!1){let n=t%1e3,r="",i=s.ones[Math.floor(n/100)];if(r+=i?l(i)+"hundre":"",n%=100,n){if(r+=r?"og":"",e){const t=s.special.smallOrdinals[n];if(t)return r+t}if(i=s.ones[n],i)r+=i;else{const t=s.tens[Math.floor(n/10)];i=s.ones[n%10],r+=i?i+"og"+t:t}}return e?o(r):r}function Q(t,e=!1){const n="alt"===r.default.getInstance().subiso?function(t,e=!1){if(0===t)return e?s.special.smallOrdinals[0]:s.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,r="";for(;t>0;){const i=t%1e3;if(i){const o=T(t%1e3,!n&&e);!n&&e&&(e=!e),r=(1===n?l(o,!0):o)+(n>1?s.numSep:"")+(n?s.large[n]+(n>1&&i>1?"er":""):"")+(n>1&&r?s.numSep:"")+r}t=Math.floor(t/1e3),n++}return e?r+(r.match(/tusen$/)?"de":"te"):r}(t,e):function(t,e=!1){if(0===t)return e?s.special.smallOrdinals[0]:s.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,r="";for(;t>0;){const o=t%1e3;if(o){const a=i(t%1e3,!n&&e);!n&&e&&(e=!e),r=a+(n?" "+s.large[n]+(n>1&&o>1?"er":"")+(r?" ":""):"")+r}t=Math.floor(t/1e3),n++}return e?r+(r.match(/tusen$/)?"de":"te"):r}(t,e);return n}s.wordOrdinal=a,s.numericOrdinal=function(t){return t.toString()+"."},s.numberToWords=Q,s.numberToOrdinal=function(t,e){return a(t)},e.default=s},611:(t,e,n)=>{function r(t){let e=t%1e3,n="";const r=Math.floor(e/100);return n+=a.ones[r]?(1===r?"":a.ones[r]+a.numSep)+"hundra":"",e%=100,e&&(n+=n?a.numSep:"",n+=a.ones[e]||a.tens[Math.floor(e/10)]+(e%10?a.numSep+a.ones[e%10]:"")),n}function i(t,e=!1){if(0===t)return a.zero;if(t>=Math.pow(10,36))return t.toString();let n=0,i="";for(;t>0;){const o=t%1e3;if(o){const s=a.large[n],l=o>1&&n>1&&!e?"er":"";i=(1===n&&1===o?"":(n>1&&1===o?"en":r(t%1e3))+(n>1?" ":""))+(n?s+l+(n>1?" ":""):"")+i}t=Math.floor(t/1e3),n++}return i.replace(/ $/,"")}function o(t){let e=i(t,!0);return e.match(/^noll$/)?e="nollte":e.match(/ett$/)?e=e.replace(/ett$/,"första"):e.match(/tv\xe5$/)?e=e.replace(/tv\xe5$/,"andra"):e.match(/tre$/)?e=e.replace(/tre$/,"tredje"):e.match(/fyra$/)?e=e.replace(/fyra$/,"fjärde"):e.match(/fem$/)?e=e.replace(/fem$/,"femte"):e.match(/sex$/)?e=e.replace(/sex$/,"sjätte"):e.match(/sju$/)?e=e.replace(/sju$/,"sjunde"):e.match(/\xe5tta$/)?e=e.replace(/\xe5tta$/,"åttonde"):e.match(/nio$/)?e=e.replace(/nio$/,"nionde"):e.match(/tio$/)?e=e.replace(/tio$/,"tionde"):e.match(/elva$/)?e=e.replace(/elva$/,"elfte"):e.match(/tolv$/)?e=e.replace(/tolv$/,"tolfte"):e.match(/tusen$/)?e=e.replace(/tusen$/,"tusonde"):e.match(/jard$/)||e.match(/jon$/)?e+="te":e+="de",e}Object.defineProperty(e,"__esModule",{value:!0});const a=(0,n(6695).NUMBERS)();a.wordOrdinal=o,a.numericOrdinal=function(t){const e=t.toString();return e.match(/11$|12$/)?e+":e":e+(e.match(/1$|2$/)?":a":":e")},a.numberToWords=i,a.numberToOrdinal=function(t,e){if(1===t)return"hel";if(2===t)return e?"halva":"halv";let n=o(t);return n=n.match(/de$/)?n.replace(/de$/,""):n,n+(e?"delar":"del")},e.default=a},1404:(t,e)=>{function n(t,e=""){if(!t.childNodes||!t.childNodes[0]||!t.childNodes[0].childNodes||t.childNodes[0].childNodes.length<2||"number"!==t.childNodes[0].childNodes[0].tagName||"integer"!==t.childNodes[0].childNodes[0].getAttribute("role")||"number"!==t.childNodes[0].childNodes[1].tagName||"integer"!==t.childNodes[0].childNodes[1].getAttribute("role"))return{convertible:!1,content:t.textContent};const n=t.childNodes[0].childNodes[1].textContent,r=t.childNodes[0].childNodes[0].textContent,i=Number(n),o=Number(r);return isNaN(i)||isNaN(o)?{convertible:!1,content:`${r} ${e} ${n}`}:{convertible:!0,enumerator:o,denominator:i}}Object.defineProperty(e,"__esModule",{value:!0}),e.vulgarFractionSmall=e.convertVulgarFraction=e.Combiners=e.siCombiner=e.identityTransformer=e.pluralCase=void 0,e.pluralCase=function(t,e){return t.toString()},e.identityTransformer=function(t){return t.toString()},e.siCombiner=function(t,e){return t+e.toLowerCase()},e.Combiners={},e.Combiners.identityCombiner=function(t,e,n){return t+e+n},e.Combiners.prefixCombiner=function(t,e,n){return t=n?n+" "+t:t,e?e+" "+t:t},e.Combiners.postfixCombiner=function(t,e,n){return t=n?n+" "+t:t,e?t+" "+e:t},e.Combiners.romanceCombiner=function(t,e,n){return t=n?t+" "+n:t,e?t+" "+e:t},e.convertVulgarFraction=n,e.vulgarFractionSmall=function(t,e,r){const i=n(t);if(i.convertible){const t=i.enumerator,n=i.denominator;return t>0&&t<e&&n>0&&n<r}return!1}},4734:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Condition=e.BaseRuleStore=void 0;const r=n(2975),i=n(3113),o=n(7302),a=n(4470);class s{constructor(){this.context=new a.SpeechRuleContext,this.parseOrder=i.DynamicCstr.DEFAULT_ORDER,this.parser=new i.DynamicCstrParser(this.parseOrder),this.locale=i.DynamicCstr.DEFAULT_VALUES[i.Axis.LOCALE],this.modality=i.DynamicCstr.DEFAULT_VALUES[i.Axis.MODALITY],this.domain="",this.initialized=!1,this.inherits=null,this.kind="standard",this.customTranscriptions={},this.preconditions=new Map,this.speechRules_=[],this.rank=0,this.parseMethods={Rule:this.defineRule,Generator:this.generateRules,Action:this.defineAction,Precondition:this.definePrecondition,Ignore:this.ignoreRules}}static compareStaticConstraints_(t,e){if(t.length!==e.length)return!1;for(let n,r=0;n=t[r];r++)if(-1===e.indexOf(n))return!1;return!0}static comparePreconditions_(t,e){const n=t.precondition,r=e.precondition;return n.query===r.query&&s.compareStaticConstraints_(n.constraints,r.constraints)}defineRule(t,e,n,r,...i){const a=this.parseAction(n),s=this.parsePrecondition(r,i),l=this.parseCstr(e);if(!(a&&s&&l))return console.error(`Rule Error: ${r}, (${e}): ${n}`),null;const T=new o.SpeechRule(t,l,s,a);return T.precondition.rank=this.rank++,this.addRule(T),T}addRule(t){t.context=this.context,this.speechRules_.unshift(t)}deleteRule(t){const e=this.speechRules_.indexOf(t);-1!==e&&this.speechRules_.splice(e,1)}findRule(t){for(let e,n=0;e=this.speechRules_[n];n++)if(t(e))return e;return null}findAllRules(t){return this.speechRules_.filter(t)}evaluateDefault(t){const e=t.textContent.slice(0);return e.match(/^\s+$/)?this.evaluateWhitespace(e):this.evaluateString(e)}evaluateWhitespace(t){return[]}evaluateCustom(t){const e=this.customTranscriptions[t];return void 0!==e?r.AuditoryDescription.create({text:e},{adjust:!0,translate:!1}):null}evaluateCharacter(t){return this.evaluateCustom(t)||r.AuditoryDescription.create({text:t},{adjust:!0,translate:!0})}removeDuplicates(t){for(let e,n=this.speechRules_.length-1;e=this.speechRules_[n];n--)e!==t&&t.dynamicCstr.equal(e.dynamicCstr)&&s.comparePreconditions_(e,t)&&this.speechRules_.splice(n,1)}getSpeechRules(){return this.speechRules_}setSpeechRules(t){this.speechRules_=t}getPreconditions(){return this.preconditions}parseCstr(t){try{return this.parser.parse(this.locale+"."+this.modality+(this.domain?"."+this.domain:"")+"."+t)}catch(e){if("RuleError"===e.name)return console.error("Rule Error ",`Illegal Dynamic Constraint: ${t}.`,e.message),null;throw e}}parsePrecondition(t,e){try{const n=this.parsePrecondition_(t);t=n[0];let r=n.slice(1);for(const t of e)r=r.concat(this.parsePrecondition_(t));return new o.Precondition(t,...r)}catch(n){if("RuleError"===n.name)return console.error("Rule Error ",`Illegal preconditions: ${t}, ${e}.`,n.message),null;throw n}}parseAction(t){try{return o.Action.fromString(t)}catch(e){if("RuleError"===e.name)return console.error("Rule Error ",`Illegal action: ${t}.`,e.message),null;throw e}}parse(t){this.modality=t.modality||this.modality,this.locale=t.locale||this.locale,this.domain=t.domain||this.domain,this.context.parse(t.functions||[]),"actions"!==t.kind&&(this.kind=t.kind||this.kind,this.inheritRules()),this.parseRules(t.rules||[])}parseRules(t){for(let e,n=0;e=t[n];n++){const t=e[0],n=this.parseMethods[t];t&&n&&n.apply(this,e.slice(1))}}generateRules(t){const e=this.context.customGenerators.lookup(t);e&&e(this)}defineAction(t,e){let n;try{n=o.Action.fromString(e)}catch(t){if("RuleError"===t.name)return void console.error("Action Error ",e,t.message);throw t}const r=this.getFullPreconditions(t);if(!r)return void console.error(`Action Error: No precondition for action ${t}`);this.ignoreRules(t);const i=new RegExp("^\\w+\\.\\w+\\."+(this.domain?"\\w+\\.":""));r.conditions.forEach((([e,r])=>{const a=this.parseCstr(e.toString().replace(i,""));this.addRule(new o.SpeechRule(t,a,r,n))}))}getFullPreconditions(t){const e=this.preconditions.get(t);return e||!this.inherits?e:this.inherits.getFullPreconditions(t)}definePrecondition(t,e,n,...r){const i=this.parsePrecondition(n,r),o=this.parseCstr(e);i&&o?(i.rank=this.rank++,this.preconditions.set(t,new l(o,i))):console.error(`Precondition Error: ${n}, (${e})`)}inheritRules(){if(!this.inherits||!this.inherits.getSpeechRules().length)return;const t=new RegExp("^\\w+\\.\\w+\\."+(this.domain?"\\w+\\.":""));this.inherits.getSpeechRules().forEach((e=>{const n=this.parseCstr(e.dynamicCstr.toString().replace(t,""));this.addRule(new o.SpeechRule(e.name,n,e.precondition,e.action))}))}ignoreRules(t,...e){let n=this.findAllRules((e=>e.name===t));if(!e.length)return void n.forEach(this.deleteRule.bind(this));let r=[];for(const t of e){const e=this.parseCstr(t);for(const t of n)e.equal(t.dynamicCstr)?this.deleteRule(t):r.push(t);n=r,r=[]}}parsePrecondition_(t){const e=this.context.customGenerators.lookup(t);return e?e():[t]}}e.BaseRuleStore=s;class l{constructor(t,e){this.base=t,this._conditions=[],this.constraints=[],this.allCstr={},this.constraints.push(t),this.addCondition(t,e)}get conditions(){return this._conditions}addConstraint(t){if(this.constraints.filter((e=>e.equal(t))).length)return;this.constraints.push(t);const e=[];for(const[n,r]of this.conditions)this.base.equal(n)&&e.push([t,r]);this._conditions=this._conditions.concat(e)}addBaseCondition(t){this.addCondition(this.base,t)}addFullCondition(t){this.constraints.forEach((e=>this.addCondition(e,t)))}addCondition(t,e){const n=t.toString()+" "+e.toString();this.allCstr.condStr||(this.allCstr[n]=!0,this._conditions.push([t,e]))}}e.Condition=l},933:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BrailleStore=void 0;const r=n(8770),i=n(4760);class o extends i.MathStore{constructor(){super(...arguments),this.modality="braille",this.customTranscriptions={"⋊":"⠈⠡⠳"}}evaluateString(t){const e=[],n=Array.from(t);for(let t=0;t<n.length;t++)e.push(this.evaluateCharacter(n[t]));return e}annotations(){for(let t,e=0;t=this.annotators[e];e++)(0,r.activate)(this.locale,t)}}e.BrailleStore=o},3113:(t,e)=>{var n;Object.defineProperty(e,"__esModule",{value:!0}),e.DefaultComparator=e.DynamicCstrParser=e.DynamicCstr=e.DynamicProperties=e.Axis=void 0,function(t){t.DOMAIN="domain",t.STYLE="style",t.LOCALE="locale",t.TOPIC="topic",t.MODALITY="modality"}(n=e.Axis||(e.Axis={}));class r{constructor(t,e=Object.keys(t)){this.properties=t,this.order=e}static createProp(...t){const e=i.DEFAULT_ORDER,n={};for(let r=0,i=t.length,o=e.length;r<i&&r<o;r++)n[e[r]]=t[r];return new r(n)}getProperties(){return this.properties}getOrder(){return this.order}getAxes(){return this.order}getProperty(t){return this.properties[t]}updateProperties(t){this.properties=t}allProperties(){const t=[];return this.order.forEach((e=>t.push(this.getProperty(e).slice()))),t}toString(){const t=[];return this.order.forEach((e=>t.push(e+": "+this.getProperty(e).toString()))),t.join("\n")}}e.DynamicProperties=r;class i extends r{constructor(t,e){const n={};for(const[e,r]of Object.entries(t))n[e]=[r];super(n,e),this.components=t}static createCstr(...t){const e=i.DEFAULT_ORDER,n={};for(let r=0,i=t.length,o=e.length;r<i&&r<o;r++)n[e[r]]=t[r];return new i(n)}static defaultCstr(){return i.createCstr.apply(null,i.DEFAULT_ORDER.map((function(t){return i.DEFAULT_VALUES[t]})))}static validOrder(t){const e=i.DEFAULT_ORDER.slice();return t.every((t=>{const n=e.indexOf(t);return-1!==n&&e.splice(n,1)}))}getComponents(){return this.components}getValue(t){return this.components[t]}getValues(){return this.order.map((t=>this.getValue(t)))}allProperties(){const t=super.allProperties();for(let e,n,r=0;e=t[r],n=this.order[r];r++){const t=this.getValue(n);-1===e.indexOf(t)&&e.unshift(t)}return t}toString(){return this.getValues().join(".")}equal(t){const e=t.getAxes();if(this.order.length!==e.length)return!1;for(let n,r=0;n=e[r];r++){const e=this.getValue(n);if(!e||t.getValue(n)!==e)return!1}return!0}}e.DynamicCstr=i,i.DEFAULT_ORDER=[n.LOCALE,n.MODALITY,n.DOMAIN,n.STYLE,n.TOPIC],i.BASE_LOCALE="base",i.DEFAULT_VALUE="default",i.DEFAULT_VALUES={[n.LOCALE]:"en",[n.DOMAIN]:i.DEFAULT_VALUE,[n.STYLE]:i.DEFAULT_VALUE,[n.TOPIC]:i.DEFAULT_VALUE,[n.MODALITY]:"speech"},e.DynamicCstrParser=class{constructor(t){this.order=t}parse(t){const e=t.split("."),n={};if(e.length>this.order.length)throw new Error("Invalid dynamic constraint: "+n);let r=0;for(let t,i=0;t=this.order[i],e.length;i++,r++){const r=e.shift();n[t]=r}return new i(n,this.order.slice(0,r))}},e.DefaultComparator=class{constructor(t,e=new r(t.getProperties(),t.getOrder())){this.reference=t,this.fallback=e,this.order=this.reference.getOrder()}getReference(){return this.reference}setReference(t,e){this.reference=t,this.fallback=e||new r(t.getProperties(),t.getOrder()),this.order=this.reference.getOrder()}match(t){const e=t.getAxes();return e.length===this.reference.getAxes().length&&e.every((e=>{const n=t.getValue(e);return n===this.reference.getValue(e)||-1!==this.fallback.getProperty(e).indexOf(n)}))}compare(t,e){let n=!1;for(let r,i=0;r=this.order[i];i++){const i=t.getValue(r),o=e.getValue(r);if(!n){const t=this.reference.getValue(r);if(t===i&&t!==o)return-1;if(t===o&&t!==i)return 1;if(t===i&&t===o)continue;t!==i&&t!==o&&(n=!0)}const a=this.fallback.getProperty(r),s=a.indexOf(i),l=a.indexOf(o);if(s<l)return-1;if(l<s)return 1}return 0}toString(){return this.reference.toString()+"\n"+this.fallback.toString()}}},7534:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.numbersToAlpha=e.Grammar=e.ATTRIBUTE=void 0;const r=n(7041),i=n(3684),o=n(5681),a=n(3826);e.ATTRIBUTE="grammar";class s{constructor(){this.currentFlags={},this.parameters_={},this.corrections_={},this.preprocessors_={},this.stateStack_=[]}static getInstance(){return s.instance=s.instance||new s,s.instance}static parseInput(t){const e={},n=t.split(":");for(let t=0,r=n.length;t<r;t++){const r=n[t].split("="),i=r[0].trim();r[1]?e[i]=r[1].trim():i.match(/^!/)?e[i.slice(1)]=!1:e[i]=!0}return e}static parseState(t){const e={},n=t.split(" ");for(let t=0,r=n.length;t<r;t++){const r=n[t].split(":"),i=r[0],o=r[1];e[i]=o||!0}return e}static translateString_(t){if(t.match(/:unit$/))return s.translateUnit_(t);const e=i.default.getInstance();let n=e.evaluator(t,e.dynamicCstr);return n=null===n?t:n,s.getInstance().getParameter("plural")&&(n=a.LOCALE.FUNCTIONS.plural(n)),n}static translateUnit_(t){t=s.prepareUnit_(t);const e=i.default.getInstance(),n=s.getInstance().getParameter("plural"),r=e.strict,o=`${e.locale}.${e.modality}.default`;let l,T;return e.strict=!0,n&&(l=e.defaultParser.parse(o+".plural"),T=e.evaluator(t,l)),T?(e.strict=r,T):(l=e.defaultParser.parse(o+".default"),T=e.evaluator(t,l),e.strict=r,T?(n&&(T=a.LOCALE.FUNCTIONS.plural(T)),T):s.cleanUnit_(t))}static prepareUnit_(t){const e=t.match(/:unit$/);return e?t.slice(0,e.index).replace(/\s+/g," ")+t.slice(e.index):t}static cleanUnit_(t){return t.match(/:unit$/)?t.replace(/:unit$/,""):t}clear(){this.parameters_={},this.stateStack_=[]}setParameter(t,e){const n=this.parameters_[t];return e?this.parameters_[t]=e:delete this.parameters_[t],n}getParameter(t){return this.parameters_[t]}setCorrection(t,e){this.corrections_[t]=e}setPreprocessor(t,e){this.preprocessors_[t]=e}getCorrection(t){return this.corrections_[t]}getState(){const t=[];for(const e in this.parameters_){const n=this.parameters_[e];t.push("string"==typeof n?e+":"+n:e)}return t.join(" ")}pushState(t){for(const e in t)t[e]=this.setParameter(e,t[e]);this.stateStack_.push(t)}popState(){const t=this.stateStack_.pop();for(const e in t)this.setParameter(e,t[e])}setAttribute(t){if(t&&t.nodeType===r.NodeType.ELEMENT_NODE){const n=this.getState();n&&t.setAttribute(e.ATTRIBUTE,n)}}preprocess(t){return this.runProcessors_(t,this.preprocessors_)}correct(t){return this.runProcessors_(t,this.corrections_)}apply(t,e){return this.currentFlags=e||{},t=this.currentFlags.adjust||this.currentFlags.preprocess?s.getInstance().preprocess(t):t,(this.parameters_.translate||this.currentFlags.translate)&&(t=s.translateString_(t)),t=this.currentFlags.adjust||this.currentFlags.correct?s.getInstance().correct(t):t,this.currentFlags={},t}runProcessors_(t,e){for(const n in this.parameters_){const r=e[n];if(!r)continue;const i=this.parameters_[n];t=!0===i?r(t):r(t,i)}return t}}function l(t,e){if(!e||!t)return t;const n=a.LOCALE.FUNCTIONS.fontRegexp(o.localFont(e));return t.replace(n,"")}function T(t){return t.match(/\d+/)?a.LOCALE.NUMBERS.numberToWords(parseInt(t,10)):t}e.Grammar=s,e.numbersToAlpha=T,s.getInstance().setCorrection("localFont",o.localFont),s.getInstance().setCorrection("localRole",o.localRole),s.getInstance().setCorrection("localEnclose",o.localEnclose),s.getInstance().setCorrection("ignoreFont",l),s.getInstance().setPreprocessor("annotation",(function(t,e){return t+":"+e})),s.getInstance().setPreprocessor("noTranslateText",(function(t){return t.match(new RegExp("^["+a.LOCALE.MESSAGES.regexp.TEXT+"]+$"))&&(s.getInstance().currentFlags.translate=!1),t})),s.getInstance().setCorrection("ignoreCaps",(function(t){let e=a.LOCALE.ALPHABETS.capPrefix[i.default.getInstance().domain];return void 0===e&&(e=a.LOCALE.ALPHABETS.capPrefix.default),l(t,e)})),s.getInstance().setPreprocessor("numbers2alpha",T)},8844:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.enumerate=e.lookupString=e.lookupCategory=e.lookupRule=e.addSiUnitRules=e.addUnitRules=e.addFunctionRules=e.addSymbolRules=e.defineRule=e.defineRules=e.setSiPrefixes=void 0;const r=n(5605),i=n(3684),o=n(2420),a=n(8389),s=n(3113);let l=s.DynamicCstr.DEFAULT_VALUES[s.Axis.LOCALE],T=s.DynamicCstr.DEFAULT_VALUES[s.Axis.MODALITY],Q={};e.setSiPrefixes=function(t){Q=t};const c={};function u(t,e,n,r){const i=L(e);b(i,n),i.defineRulesFromMappings(t,l,T,e,r)}function d(t){if(g(t))return;const e=t.names,n=t.mappings,r=t.category;for(let t,i=0;t=e[i];i++)u(t,t,r,n)}function h(t){for(const e of Object.keys(Q)){const n=Object.assign({},t);n.mappings={};const r=Q[e];n.key=e+n.key,n.names=n.names.map((function(t){return e+t}));for(const e of Object.keys(t.mappings)){n.mappings[e]={};for(const i of Object.keys(t.mappings[e]))n.mappings[e][i]=o.locales[l]().FUNCTIONS.si(r,t.mappings[e][i])}y(n)}y(t)}function p(t,e){const n=c[t];return n?n.lookupRule(null,e):null}function m(t,e){const n=p(t,e);return n?n.action:null}function f(t,e){return e=e||{},t.length?(e[t[0]]=f(t.slice(1),e[t[0]]),e):e}function y(t){const e=t.names;e&&(t.names=e.map((function(t){return t+":unit"}))),d(t)}function g(t){return!(!t.locale&&!t.modality||(l=t.locale||l,T=t.modality||T,0))}function L(t){let e=c[t];return e?(r.Debugger.getInstance().output("Store exists! "+t),e):(e=new a.MathSimpleStore,c[t]=e,e)}function b(t,e){e&&(t.category=e)}e.defineRules=u,e.defineRule=function(t,e,n,r,i,o){const a=L(i);b(a,r),a.defineRuleFromStrings(t,l,T,e,n,i,o)},e.addSymbolRules=function(t){if(g(t))return;const e=a.MathSimpleStore.parseUnicode(t.key);u(t.key,e,t.category,t.mappings)},e.addFunctionRules=d,e.addUnitRules=function(t){g(t)||(t.si?h(t):y(t))},e.addSiUnitRules=h,e.lookupRule=p,e.lookupCategory=function(t){const e=c[t];return e?e.category:""},e.lookupString=m,i.default.getInstance().evaluator=m,e.enumerate=function(t={}){for(const e of Object.values(c))for(const[,n]of e.rules.entries())for(const{cstr:e}of n)t=f(e.getValues(),t);return t}},8389:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MathSimpleStore=void 0;const r=n(3684),i=n(3113);class o{constructor(){this.category="",this.rules=new Map}static parseUnicode(t){const e=parseInt(t,16);return String.fromCodePoint(e)}static testDynamicConstraints_(t,e){return r.default.getInstance().strict?e.cstr.equal(t):r.default.getInstance().comparator.match(e.cstr)}defineRulesFromMappings(t,e,n,r,i){for(const o in i)for(const a in i[o]){const s=i[o][a];this.defineRuleFromStrings(t,e,n,o,a,r,s)}}getRules(t){let e=this.rules.get(t);return e||(e=[],this.rules.set(t,e)),e}defineRuleFromStrings(t,e,n,i,o,a,s){let l=this.getRules(e);const T=r.default.getInstance().parsers[i]||r.default.getInstance().defaultParser,Q=r.default.getInstance().comparators[i],c=`${e}.${n}.${i}.${o}`,u=T.parse(c),d=Q?Q():r.default.getInstance().comparator,h=d.getReference();d.setReference(u);const p={cstr:u,action:s};l=l.filter((t=>!u.equal(t.cstr))),l.push(p),this.rules.set(e,l),d.setReference(h)}lookupRule(t,e){let n=this.getRules(e.getValue(i.Axis.LOCALE));return n=n.filter((function(t){return o.testDynamicConstraints_(e,t)})),1===n.length?n[0]:n.length?n.sort(((t,e)=>r.default.getInstance().comparator.compare(t.cstr,e.cstr)))[0]:null}}e.MathSimpleStore=o},4760:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MathStore=void 0;const r=n(4422),i=n(3826),o=n(8770),a=n(4734),s=n(7302);class l extends a.BaseRuleStore{constructor(){super(),this.annotators=[],this.parseMethods.Alias=this.defineAlias,this.parseMethods.SpecializedRule=this.defineSpecializedRule,this.parseMethods.Specialized=this.defineSpecialized}initialize(){this.initialized||(this.annotations(),this.initialized=!0)}annotations(){for(let t,e=0;t=this.annotators[e];e++)(0,o.activate)(this.domain,t)}defineAlias(t,e,...n){const r=this.parsePrecondition(e,n);if(!r)return void console.error(`Precondition Error: ${e} ${n}`);const i=this.preconditions.get(t);i?i.addFullCondition(r):console.error(`Alias Error: No precondition by the name of ${t}`)}defineRulesAlias(t,e,...n){const r=this.findAllRules((function(e){return e.name===t}));if(0===r.length)throw new s.OutputError("Rule with name "+t+" does not exist.");const i=[];r.forEach((t=>{(t=>{const e=t.dynamicCstr.toString(),n=t.action.toString();for(let t,r=0;t=i[r];r++)if(t.action===n&&t.cstr===e)return!1;return i.push({cstr:e,action:n}),!0})(t)&&this.addAlias_(t,e,n)}))}defineSpecializedRule(t,e,n,r){const i=this.parseCstr(e),o=this.findRule((e=>e.name===t&&i.equal(e.dynamicCstr))),a=this.parseCstr(n);if(!o&&r)throw new s.OutputError("Rule named "+t+" with style "+e+" does not exist.");const l=r?s.Action.fromString(r):o.action,T=new s.SpeechRule(o.name,a,o.precondition,l);this.addRule(T)}defineSpecialized(t,e,n){const r=this.parseCstr(n);if(!r)return void console.error(`Dynamic Constraint Error: ${n}`);const i=this.preconditions.get(t);i?i.addConstraint(r):console.error(`Alias Error: No precondition by the name of ${t}`)}evaluateString(t){const e=[];if(t.match(/^\s+$/))return e;let n=this.matchNumber_(t);if(n&&n.length===t.length)return e.push(this.evaluateCharacter(n.number)),e;const o=r.removeEmpty(t.replace(/\s/g," ").split(" "));for(let t,r=0;t=o[r];r++)if(1===t.length)e.push(this.evaluateCharacter(t));else if(t.match(new RegExp("^["+i.LOCALE.MESSAGES.regexp.TEXT+"]+$")))e.push(this.evaluateCharacter(t));else{let r=t;for(;r;){n=this.matchNumber_(r);const t=r.match(new RegExp("^["+i.LOCALE.MESSAGES.regexp.TEXT+"]+"));if(n)e.push(this.evaluateCharacter(n.number)),r=r.substring(n.length);else if(t)e.push(this.evaluateCharacter(t[0])),r=r.substring(t[0].length);else{const t=Array.from(r),n=t[0];e.push(this.evaluateCharacter(n)),r=t.slice(1).join("")}}}return e}parse(t){super.parse(t),this.annotators=t.annotators||[]}addAlias_(t,e,n){const r=this.parsePrecondition(e,n),i=new s.SpeechRule(t.name,t.dynamicCstr,r,t.action);i.name=t.name,this.addRule(i)}matchNumber_(t){const e=t.match(new RegExp("^"+i.LOCALE.MESSAGES.regexp.NUMBER)),n=t.match(new RegExp("^"+l.regexp.NUMBER));if(!e&&!n)return null;const r=n&&n[0]===t;return e&&e[0]===t||!r?e?{number:e[0],length:e[0].length}:null:{number:n[0].replace(new RegExp(l.regexp.DIGIT_GROUP,"g"),"X").replace(new RegExp(l.regexp.DECIMAL_MARK,"g"),i.LOCALE.MESSAGES.regexp.DECIMAL_MARK).replace(/X/g,i.LOCALE.MESSAGES.regexp.DIGIT_GROUP.replace(/\\/g,"")),length:n[0].length}}}e.MathStore=l,l.regexp={NUMBER:"((\\d{1,3})(?=(,| ))((,| )\\d{3})*(\\.\\d+)?)|^\\d*\\.\\d+|^\\d+",DECIMAL_MARK:"\\.",DIGIT_GROUP:","}},7302:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.OutputError=e.Precondition=e.Action=e.Component=e.ActionType=e.SpeechRule=void 0;const r=n(3684),i=n(7534);var o;function a(t){switch(t){case"[n]":return o.NODE;case"[m]":return o.MULTI;case"[t]":return o.TEXT;case"[p]":return o.PERSONALITY;default:throw"Parse error: "+t}}e.SpeechRule=class{constructor(t,e,n,r){this.name=t,this.dynamicCstr=e,this.precondition=n,this.action=r,this.context=null}toString(){return this.name+" | "+this.dynamicCstr.toString()+" | "+this.precondition.toString()+" ==> "+this.action.toString()}},function(t){t.NODE="NODE",t.MULTI="MULTI",t.TEXT="TEXT",t.PERSONALITY="PERSONALITY"}(o=e.ActionType||(e.ActionType={}));class s{constructor({type:t,content:e,attributes:n,grammar:r}){this.type=t,this.content=e,this.attributes=n,this.grammar=r}static grammarFromString(t){return i.Grammar.parseInput(t)}static fromString(t){const e={type:a(t.substring(0,3))};let n=t.slice(3).trim();if(!n)throw new Q("Missing content.");switch(e.type){case o.TEXT:if('"'===n[0]){const t=c(n,"\\(")[0].trim();if('"'!==t.slice(-1))throw new Q("Invalid string syntax.");e.content=t,n=n.slice(t.length).trim(),-1===n.indexOf("(")&&(n="");break}case o.NODE:case o.MULTI:{const t=n.indexOf(" (");if(-1===t){e.content=n.trim(),n="";break}e.content=n.substring(0,t).trim(),n=n.slice(t).trim()}}if(n){const t=s.attributesFromString(n);t.grammar&&(e.grammar=t.grammar,delete t.grammar),Object.keys(t).length&&(e.attributes=t)}return new s(e)}static attributesFromString(t){if("("!==t[0]||")"!==t.slice(-1))throw new Q("Invalid attribute expression: "+t);const e={},n=c(t.slice(1,-1),",");for(let t=0,r=n.length;t<r;t++){const r=n[t],o=r.indexOf(":");if(-1===o)e[r.trim()]="true";else{const t=r.substring(0,o).trim(),n=r.slice(o+1).trim();e[t]=t===i.ATTRIBUTE?s.grammarFromString(n):n}}return e}toString(){let t="";t+=function(t){switch(t){case o.NODE:return"[n]";case o.MULTI:return"[m]";case o.TEXT:return"[t]";case o.PERSONALITY:return"[p]";default:throw"Unknown type error: "+t}}(this.type),t+=this.content?" "+this.content:"";const e=this.attributesToString();return t+=e?" "+e:"",t}grammarToString(){return this.getGrammar().join(":")}getGrammar(){const t=[];for(const e in this.grammar)!0===this.grammar[e]?t.push(e):!1===this.grammar[e]?t.push("!"+e):t.push(e+"="+this.grammar[e]);return t}attributesToString(){const t=this.getAttributes(),e=this.grammarToString();return e&&t.push("grammar:"+e),t.length>0?"("+t.join(", ")+")":""}getAttributes(){const t=[];for(const e in this.attributes){const n=this.attributes[e];"true"===n?t.push(e):t.push(e+":"+n)}return t}}e.Component=s;class l{constructor(t){this.components=t}static fromString(t){const e=c(t,";").filter((function(t){return t.match(/\S/)})).map((function(t){return t.trim()})),n=[];for(let t=0,r=e.length;t<r;t++){const r=s.fromString(e[t]);r&&n.push(r)}return new l(n)}toString(){return this.components.map((function(t){return t.toString()})).join("; ")}}e.Action=l;class T{constructor(t,...e){this.query=t,this.constraints=e;const[n,r]=this.presetPriority();this.priority=n?r:this.calculatePriority()}static constraintValue(t,e){for(let n,r=0;n=e[r];r++)if(t.match(n))return++r;return 0}toString(){const t=this.constraints.join(", ");return`${this.query}, ${t} (${this.priority}, ${this.rank})`}calculatePriority(){const t=T.constraintValue(this.query,T.queryPriorities);if(!t)return 0;const e=this.query.match(/^self::.+\[(.+)\]/)[1];return 100*t+10*T.constraintValue(e,T.attributePriorities)}presetPriority(){if(!this.constraints.length)return[!1,0];const t=this.constraints[this.constraints.length-1].match(/^priority=(.*$)/);if(!t)return[!1,0];this.constraints.pop();const e=parseFloat(t[1]);return[!0,isNaN(e)?0:e]}}e.Precondition=T,T.queryPriorities=[/^self::\*\[.+\]$/,/^self::[\w-]+\[.+\]$/],T.attributePriorities=[/^@[\w-]+$/,/^@[\w-]+!=".+"$/,/^not\(contains\(@[\w-]+,\s*".+"\)\)$/,/^contains\(@[\w-]+,".+"\)$/,/^@[\w-]+=".+"$/];class Q extends r.SREError{constructor(t){super(t),this.name="RuleError"}}function c(t,e){const n=[];let r="";for(;""!==t;){const i=t.search(e);if(-1===i){if((t.match(/"/g)||[]).length%2!=0)throw new Q("Invalid string in expression: "+t);n.push(r+t),r="",t=""}else if((t.substring(0,i).match(/"/g)||[]).length%2==0)n.push(r+t.substring(0,i)),r="",t=t.substring(i+1);else{const e=t.substring(i).search('"');if(-1===e)throw new Q("Invalid string in expression: "+t);r+=t.substring(0,i+e+1),t=t.substring(i+e+1)}}return r&&n.push(r),n}e.OutputError=Q},4470:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SpeechRuleContext=void 0;const r=n(1746),i=n(9202);e.SpeechRuleContext=class{constructor(){this.customQueries=new i.CustomQueries,this.customStrings=new i.CustomStrings,this.contextFunctions=new i.ContextFunctions,this.customGenerators=new i.CustomGenerators}applyCustomQuery(t,e){const n=this.customQueries.lookup(e);return n?n(t):null}applySelector(t,e){return this.applyCustomQuery(t,e)||r.evalXPath(e,t)}applyQuery(t,e){const n=this.applySelector(t,e);return n.length>0?n[0]:null}applyConstraint(t,e){return!!this.applyQuery(t,e)||r.evaluateBoolean(e,t)}constructString(t,e){if(!e)return"";if('"'===e.charAt(0))return e.slice(1,-1);const n=this.customStrings.lookup(e);return n?n(t):r.evaluateString(e,t)}parse(t){const e=Array.isArray(t)?t:Object.entries(t);for(let t,n=0;t=e[n];n++)switch(t[0].slice(0,3)){case"CQF":this.customQueries.add(t[0],t[1]);break;case"CSF":this.customStrings.add(t[0],t[1]);break;case"CTF":this.contextFunctions.add(t[0],t[1]);break;case"CGF":this.customGenerators.add(t[0],t[1]);break;default:console.error("FunctionError: Invalid function name "+t[0])}}}},5124:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.storeFactory=e.SpeechRuleEngine=void 0;const r=n(2975),i=n(5605),o=n(7041),a=n(3684),s=n(9686),l=n(1746),T=n(3445),Q=n(7044),c=n(933),u=n(3113),d=n(7534),h=n(4760),p=n(7302),m=n(3998);class f{constructor(){this.trie=null,this.evaluators_={},this.trie=new m.Trie}static getInstance(){return f.instance=f.instance||new f,f.instance}static debugSpeechRule(t,e){const n=t.precondition,r=t.context.applyQuery(e,n.query);i.Debugger.getInstance().output(n.query,r?r.toString():r),n.constraints.forEach((n=>i.Debugger.getInstance().output(n,t.context.applyConstraint(e,n))))}static debugNamedSpeechRule(t,e){const n=f.getInstance().trie.collectRules().filter((e=>e.name==t));for(let r,o=0;r=n[o];o++)i.Debugger.getInstance().output("Rule",t,"DynamicCstr:",r.dynamicCstr.toString(),"number",o),f.debugSpeechRule(r,e)}evaluateNode(t){(0,l.updateEvaluator)(t);const e=(new Date).getTime();let n=[];try{n=this.evaluateNode_(t)}catch(t){console.error("Something went wrong computing speech."),i.Debugger.getInstance().output(t)}const r=(new Date).getTime();return i.Debugger.getInstance().output("Time:",r-e),n}toString(){return this.trie.collectRules().map((t=>t.toString())).join("\n")}runInSetting(t,e){const n=a.default.getInstance(),r={};for(const e in t)r[e]=n[e],n[e]=t[e];n.setDynamicCstr();const i=e();for(const t in r)n[t]=r[t];return n.setDynamicCstr(),i}addStore(t){const e=g(t);"abstract"!==e.kind&&e.getSpeechRules().forEach((t=>this.trie.addRule(t))),this.addEvaluator(e)}processGrammar(t,e,n){const r={};for(const i in n){const o=n[i];r[i]="string"==typeof o?t.constructString(e,o):o}d.Grammar.getInstance().pushState(r)}addEvaluator(t){const e=t.evaluateDefault.bind(t),n=this.evaluators_[t.locale];if(n)return void(n[t.modality]=e);const r={};r[t.modality]=e,this.evaluators_[t.locale]=r}getEvaluator(t,e){const n=this.evaluators_[t]||this.evaluators_[u.DynamicCstr.DEFAULT_VALUES[u.Axis.LOCALE]];return n[e]||n[u.DynamicCstr.DEFAULT_VALUES[u.Axis.MODALITY]]}enumerate(t){return this.trie.enumerate(t)}evaluateNode_(t){return t?(this.updateConstraint_(),this.evaluateTree_(t)):[]}evaluateTree_(t){const e=a.default.getInstance();let n;i.Debugger.getInstance().output(e.mode!==s.Mode.HTTP?t.toString():t),d.Grammar.getInstance().setAttribute(t);const o=this.lookupRule(t,e.dynamicCstr);if(!o)return e.strict?[]:(n=this.getEvaluator(e.locale,e.modality)(t),t.attributes&&this.addPersonality_(n,{},!1,t),n);i.Debugger.getInstance().generateOutput((()=>["Apply Rule:",o.name,o.dynamicCstr.toString(),(e.mode,s.Mode.HTTP,t).toString()]));const T=o.context,Q=o.action.components;n=[];for(let e,i=0;e=Q[i];i++){let i=[];const o=e.content||"",s=e.attributes||{};let Q=!1;e.grammar&&this.processGrammar(T,t,e.grammar);let c=null;if(s.engine){c=a.default.getInstance().dynamicCstr.getComponents();const t=d.Grammar.parseInput(s.engine);a.default.getInstance().setDynamicCstr(t)}switch(e.type){case p.ActionType.NODE:{const e=T.applyQuery(t,o);e&&(i=this.evaluateTree_(e))}break;case p.ActionType.MULTI:{Q=!0;const e=T.applySelector(t,o);e.length>0&&(i=this.evaluateNodeList_(T,e,s.sepFunc,T.constructString(t,s.separator),s.ctxtFunc,T.constructString(t,s.context)))}break;case p.ActionType.TEXT:{const e=s.span,n={};if(e){const r=(0,l.evalXPath)(e,t);r.length&&(n.extid=r[0].getAttribute("extid"))}const a=T.constructString(t,o);(a||""===a)&&(i=Array.isArray(a)?a.map((function(t){return r.AuditoryDescription.create({text:t.speech,attributes:t.attributes},{adjust:!0})})):[r.AuditoryDescription.create({text:a,attributes:n},{adjust:!0})])}break;case p.ActionType.PERSONALITY:default:i=[r.AuditoryDescription.create({text:o})]}i[0]&&!Q&&(s.context&&(i[0].context=T.constructString(t,s.context)+(i[0].context||"")),s.annotation&&(i[0].annotation=s.annotation)),this.addLayout(i,s,Q),e.grammar&&d.Grammar.getInstance().popState(),n=n.concat(this.addPersonality_(i,s,Q,t)),c&&a.default.getInstance().setDynamicCstr(c)}return n}evaluateNodeList_(t,e,n,i,o,a){if(!e.length)return[];const s=i||"",l=a||"",T=t.contextFunctions.lookup(o),Q=T?T(e,l):function(){return l},c=t.contextFunctions.lookup(n),u=c?c(e,s):function(){return[r.AuditoryDescription.create({text:s},{translate:!0})]};let d=[];for(let t,n=0;t=e[n];n++){const r=this.evaluateTree_(t);if(r.length>0&&(r[0].context=Q()+(r[0].context||""),d=d.concat(r),n<e.length-1)){const t=u();d=d.concat(t)}}return d}addLayout(t,e,n){const i=e.layout;i&&(i.match(/^begin/)?t.unshift(new r.AuditoryDescription({text:"",layout:i})):i.match(/^end/)?t.push(new r.AuditoryDescription({text:"",layout:i})):(t.unshift(new r.AuditoryDescription({text:"",layout:`begin${i}`})),t.push(new r.AuditoryDescription({text:"",layout:`end${i}`}))))}addPersonality_(t,e,n,i){const o={};let a=null;for(const t of s.personalityPropList){const n=e[t];if(void 0===n)continue;const r=parseFloat(n),i=isNaN(r)?'"'===n.charAt(0)?n.slice(1,-1):n:r;t===s.personalityProps.PAUSE?a=i:o[t]=i}for(let e,n=0;e=t[n];n++)this.addRelativePersonality_(e,o),this.addExternalAttributes_(e,i);if(n&&t.length&&delete t[t.length-1].personality[s.personalityProps.JOIN],a&&t.length){const e=t[t.length-1];e.text||Object.keys(e.personality).length?t.push(r.AuditoryDescription.create({text:"",personality:{pause:a}})):e.personality[s.personalityProps.PAUSE]=a}return t}addExternalAttributes_(t,e){if(e.hasAttributes()){const n=e.attributes;for(let e=n.length-1;e>=0;e--){const r=n[e].name;!t.attributes[r]&&r.match(/^ext/)&&(t.attributes[r]=n[e].value)}}}addRelativePersonality_(t,e){if(!t.personality)return t.personality=e,t;const n=t.personality;for(const t in e)n[t]&&"number"==typeof n[t]&&"number"==typeof e[t]?n[t]=n[t]+e[t]:n[t]||(n[t]=e[t]);return t}updateConstraint_(){const t=a.default.getInstance().dynamicCstr,e=a.default.getInstance().strict,n=this.trie,r={};let i=t.getValue(u.Axis.LOCALE),o=t.getValue(u.Axis.MODALITY),s=t.getValue(u.Axis.DOMAIN);n.hasSubtrie([i,o,s])||(s=u.DynamicCstr.DEFAULT_VALUES[u.Axis.DOMAIN],n.hasSubtrie([i,o,s])||(o=u.DynamicCstr.DEFAULT_VALUES[u.Axis.MODALITY],n.hasSubtrie([i,o,s])||(i=u.DynamicCstr.DEFAULT_VALUES[u.Axis.LOCALE]))),r[u.Axis.LOCALE]=[i],r[u.Axis.MODALITY]=["summary"!==o?o:u.DynamicCstr.DEFAULT_VALUES[u.Axis.MODALITY]],r[u.Axis.DOMAIN]=["speech"!==o?u.DynamicCstr.DEFAULT_VALUES[u.Axis.DOMAIN]:s];const l=t.getOrder();for(let n,i=0;n=l[i];i++)if(!r[n]){const i=t.getValue(n),o=this.makeSet_(i,t.preference),a=u.DynamicCstr.DEFAULT_VALUES[n];e||i===a||o.push(a),r[n]=o}t.updateProperties(r)}makeSet_(t,e){return e&&Object.keys(e).length?t.split(":"):[t]}lookupRule(t,e){if(!t||t.nodeType!==o.NodeType.ELEMENT_NODE&&t.nodeType!==o.NodeType.TEXT_NODE)return null;const n=this.lookupRules(t,e);return n.length>0?this.pickMostConstraint_(e,n):null}lookupRules(t,e){return this.trie.lookupRules(t,e.allProperties())}pickMostConstraint_(t,e){const n=a.default.getInstance().comparator;return e.sort((function(t,e){return n.compare(t.dynamicCstr,e.dynamicCstr)||e.precondition.priority-t.precondition.priority||e.precondition.constraints.length-t.precondition.constraints.length||e.precondition.rank-t.precondition.rank})),i.Debugger.getInstance().generateOutput((()=>e.map((t=>t.name+"("+t.dynamicCstr.toString()+")"))).bind(this)),e[0]}}e.SpeechRuleEngine=f;const y=new Map;function g(t){const e=`${t.locale}.${t.modality}.${t.domain}`;if("actions"===t.kind){const n=y.get(e);return n.parse(t),n}Q.init(),t&&!t.functions&&(t.functions=T.getStore(t.locale,t.modality,t.domain));const n="braille"===t.modality?new c.BrailleStore:new h.MathStore;return y.set(e,n),t.inherits&&(n.inherits=y.get(`${t.inherits}.${t.modality}.${t.domain}`)),n.parse(t),n.initialize(),n}e.storeFactory=g,a.default.nodeEvaluator=f.getInstance().evaluateNode.bind(f.getInstance())},9202:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CustomGenerators=e.ContextFunctions=e.CustomStrings=e.CustomQueries=void 0;class n{constructor(t,e){this.prefix=t,this.store=e}add(t,e){this.checkCustomFunctionSyntax_(t)&&(this.store[t]=e)}addStore(t){const e=Object.keys(t.store);for(let n,r=0;n=e[r];r++)this.add(n,t.store[n])}lookup(t){return this.store[t]}checkCustomFunctionSyntax_(t){const e=new RegExp("^"+this.prefix);return!!t.match(e)||(console.error("FunctionError: Invalid function name. Expected prefix "+this.prefix),!1)}}e.CustomQueries=class extends n{constructor(){super("CQF",{})}},e.CustomStrings=class extends n{constructor(){super("CSF",{})}},e.ContextFunctions=class extends n{constructor(){super("CTF",{})}},e.CustomGenerators=class extends n{constructor(){super("CGF",{})}}},8159:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.contentIterator=e.pauseSeparator=e.nodeCounter=void 0;const r=n(2975),i=n(1746),o=n(3684);e.nodeCounter=function(t,e){const n=t.length;let r=0,i=e;return e||(i=""),function(){return r<n&&(r+=1),i+" "+r}},e.pauseSeparator=function(t,e){const n=parseFloat(e),i=isNaN(n)?e:n;return function(){return[r.AuditoryDescription.create({text:"",personality:{pause:i}})]}},e.contentIterator=function(t,e){let n;return n=t.length>0?i.evalXPath("../../content/*",t[0]):[],function(){const t=n.shift(),i=e?[r.AuditoryDescription.create({text:e},{translate:!0})]:[];if(!t)return i;const a=o.default.evaluateNode(t);return i.concat(a)}}},6256:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getTreeFromString=e.getTree=e.xmlTree=void 0;const r=n(7041),i=n(1250);function o(t){return new i.SemanticTree(t)}e.xmlTree=function(t){return o(t).xml()},e.getTree=o,e.getTreeFromString=function(t){return o(r.parseInput(t))}},8770:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.annotate=e.activate=e.register=e.visitors=e.annotators=void 0;const r=n(5707);e.annotators=new Map,e.visitors=new Map,e.register=function(t){const n=t.domain+":"+t.name;t instanceof r.SemanticAnnotator?e.annotators.set(n,t):e.visitors.set(n,t)},e.activate=function(t,n){const r=t+":"+n,i=e.annotators.get(r)||e.visitors.get(r);i&&(i.active=!0)},e.annotate=function(t){for(const n of e.annotators.values())n.active&&n.annotate(t);for(const n of e.visitors.values())n.active&&n.visit(t,Object.assign({},n.def))}},5707:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticVisitor=e.SemanticAnnotator=void 0,e.SemanticAnnotator=class{constructor(t,e,n){this.domain=t,this.name=e,this.func=n,this.active=!1}annotate(t){t.childNodes.forEach(this.annotate.bind(this)),t.addAnnotation(this.domain,this.func(t))}},e.SemanticVisitor=class{constructor(t,e,n,r={}){this.domain=t,this.name=e,this.func=n,this.def=r,this.active=!1}visit(t,e){let n=this.func(t,e);t.addAnnotation(this.domain,n[0]);for(let e,r=0;e=t.childNodes[r];r++)n=this.visit(e,n[1]);return n}}},218:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.lookupSecondary=e.isEmbellishedType=e.isMatchingFence=e.functionApplication=e.invisibleComma=e.invisiblePlus=e.invisibleTimes=e.lookupMeaning=e.lookupRole=e.lookupType=e.equal=e.allLettersRegExp=void 0;const n=String.fromCodePoint(8291),r=[",","﹐",",",n],i=["¯","‒","–","—","―","﹘","-","⁻","₋","−","➖","﹣","-","‐","‑","‾","_"],o=["~","̃","∼","˜","∽","˷","̴","̰"],a={"(":")","[":"]","{":"}","⁅":"⁆","〈":"〉","❨":"❩","❪":"❫","❬":"❭","❮":"❯","❰":"❱","❲":"❳","❴":"❵","⟅":"⟆","⟦":"⟧","⟨":"⟩","⟪":"⟫","⟬":"⟭","⟮":"⟯","⦃":"⦄","⦅":"⦆","⦇":"⦈","⦉":"⦊","⦋":"⦌","⦍":"⦎","⦏":"⦐","⦑":"⦒","⦓":"⦔","⦕":"⦖","⦗":"⦘","⧘":"⧙","⧚":"⧛","⧼":"⧽","⸢":"⸣","⸤":"⸥","⸦":"⸧","⸨":"⸩","〈":"〉","《":"》","「":"」","『":"』","【":"】","〔":"〕","〖":"〗","〘":"〙","〚":"〛","〝":"〞","﴾":"﴿","︗":"︘","﹙":"﹚","﹛":"﹜","﹝":"﹞","(":")","[":"]","{":"}","⦅":"⦆","「":"」","⌈":"⌉","⌊":"⌋","⌌":"⌍","⌎":"⌏","⌜":"⌝","⌞":"⌟","⎛":"⎞","⎜":"⎟","⎝":"⎠","⎡":"⎤","⎢":"⎥","⎣":"⎦","⎧":"⎫","⎨":"⎬","⎩":"⎭","⎰":"⎱","⎸":"⎹"},s={"⎴":"⎵","⏜":"⏝","⏞":"⏟","⏠":"⏡","︵":"︶","︷":"︸","︹":"︺","︻":"︼","︽":"︾","︿":"﹀","﹁":"﹂","﹃":"﹄","﹇":"﹈"},l=Object.keys(a),T=Object.values(a);T.push("〟");const Q=Object.keys(s),c=Object.values(s),u=["|","¦","∣","⏐","⎸","⎹","❘","|","¦","︱","︲"],d=["‖","∥","⦀","⫴"],h=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],p=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","ı","ȷ"],m=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],f=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],y=["𝐀","𝐁","𝐂","𝐃","𝐄","𝐅","𝐆","𝐇","𝐈","𝐉","𝐊","𝐋","𝐌","𝐍","𝐎","𝐏","𝐐","𝐑","𝐒","𝐓","𝐔","𝐕","𝐖","𝐗","𝐘","𝐙"],g=["𝐚","𝐛","𝐜","𝐝","𝐞","𝐟","𝐠","𝐡","𝐢","𝐣","𝐤","𝐥","𝐦","𝐧","𝐨","𝐩","𝐪","𝐫","𝐬","𝐭","𝐮","𝐯","𝐰","𝐱","𝐲","𝐳"],L=["𝐴","𝐵","𝐶","𝐷","𝐸","𝐹","𝐺","𝐻","𝐼","𝐽","𝐾","𝐿","𝑀","𝑁","𝑂","𝑃","𝑄","𝑅","𝑆","𝑇","𝑈","𝑉","𝑊","𝑋","𝑌","𝑍"],b=["𝑎","𝑏","𝑐","𝑑","𝑒","𝑓","𝑔","ℎ","𝑖","𝑗","𝑘","𝑙","𝑚","𝑛","𝑜","𝑝","𝑞","𝑟","𝑠","𝑡","𝑢","𝑣","𝑤","𝑥","𝑦","𝑧","𝚤","𝚥"],v=["𝑨","𝑩","𝑪","𝑫","𝑬","𝑭","𝑮","𝑯","𝑰","𝑱","𝑲","𝑳","𝑴","𝑵","𝑶","𝑷","𝑸","𝑹","𝑺","𝑻","𝑼","𝑽","𝑾","𝑿","𝒀","𝒁"],x=["𝒂","𝒃","𝒄","𝒅","𝒆","𝒇","𝒈","𝒉","𝒊","𝒋","𝒌","𝒍","𝒎","𝒏","𝒐","𝒑","𝒒","𝒓","𝒔","𝒕","𝒖","𝒗","𝒘","𝒙","𝒚","𝒛"],_=["𝒜","ℬ","𝒞","𝒟","ℰ","ℱ","𝒢","ℋ","ℐ","𝒥","𝒦","ℒ","ℳ","𝒩","𝒪","𝒫","𝒬","ℛ","𝒮","𝒯","𝒰","𝒱","𝒲","𝒳","𝒴","𝒵","℘"],H=["𝒶","𝒷","𝒸","𝒹","ℯ","𝒻","ℊ","𝒽","𝒾","𝒿","𝓀","𝓁","𝓂","𝓃","ℴ","𝓅","𝓆","𝓇","𝓈","𝓉","𝓊","𝓋","𝓌","𝓍","𝓎","𝓏","ℓ"],w=["𝓐","𝓑","𝓒","𝓓","𝓔","𝓕","𝓖","𝓗","𝓘","𝓙","𝓚","𝓛","𝓜","𝓝","𝓞","𝓟","𝓠","𝓡","𝓢","𝓣","𝓤","𝓥","𝓦","𝓧","𝓨","𝓩"],O=["𝓪","𝓫","𝓬","𝓭","𝓮","𝓯","𝓰","𝓱","𝓲","𝓳","𝓴","𝓵","𝓶","𝓷","𝓸","𝓹","𝓺","𝓻","𝓼","𝓽","𝓾","𝓿","𝔀","𝔁","𝔂","𝔃"],M=["𝔄","𝔅","ℭ","𝔇","𝔈","𝔉","𝔊","ℌ","ℑ","𝔍","𝔎","𝔏","𝔐","𝔑","𝔒","𝔓","𝔔","ℜ","𝔖","𝔗","𝔘","𝔙","𝔚","𝔛","𝔜","ℨ"],S=["𝔞","𝔟","𝔠","𝔡","𝔢","𝔣","𝔤","𝔥","𝔦","𝔧","𝔨","𝔩","𝔪","𝔫","𝔬","𝔭","𝔮","𝔯","𝔰","𝔱","𝔲","𝔳","𝔴","𝔵","𝔶","𝔷"],E=["𝔸","𝔹","ℂ","𝔻","𝔼","𝔽","𝔾","ℍ","𝕀","𝕁","𝕂","𝕃","𝕄","ℕ","𝕆","ℙ","ℚ","ℝ","𝕊","𝕋","𝕌","𝕍","𝕎","𝕏","𝕐","ℤ"],A=["𝕒","𝕓","𝕔","𝕕","𝕖","𝕗","𝕘","𝕙","𝕚","𝕛","𝕜","𝕝","𝕞","𝕟","𝕠","𝕡","𝕢","𝕣","𝕤","𝕥","𝕦","𝕧","𝕨","𝕩","𝕪","𝕫"],C=["𝕬","𝕭","𝕮","𝕯","𝕰","𝕱","𝕲","𝕳","𝕴","𝕵","𝕶","𝕷","𝕸","𝕹","𝕺","𝕻","𝕼","𝕽","𝕾","𝕿","𝖀","𝖁","𝖂","𝖃","𝖄","𝖅"],V=["𝖆","𝖇","𝖈","𝖉","𝖊","𝖋","𝖌","𝖍","𝖎","𝖏","𝖐","𝖑","𝖒","𝖓","𝖔","𝖕","𝖖","𝖗","𝖘","𝖙","𝖚","𝖛","𝖜","𝖝","𝖞","𝖟"],N=["𝖠","𝖡","𝖢","𝖣","𝖤","𝖥","𝖦","𝖧","𝖨","𝖩","𝖪","𝖫","𝖬","𝖭","𝖮","𝖯","𝖰","𝖱","𝖲","𝖳","𝖴","𝖵","𝖶","𝖷","𝖸","𝖹"],I=["𝖺","𝖻","𝖼","𝖽","𝖾","𝖿","𝗀","𝗁","𝗂","𝗃","𝗄","𝗅","𝗆","𝗇","𝗈","𝗉","𝗊","𝗋","𝗌","𝗍","𝗎","𝗏","𝗐","𝗑","𝗒","𝗓"],P=["𝗔","𝗕","𝗖","𝗗","𝗘","𝗙","𝗚","𝗛","𝗜","𝗝","𝗞","𝗟","𝗠","𝗡","𝗢","𝗣","𝗤","𝗥","𝗦","𝗧","𝗨","𝗩","𝗪","𝗫","𝗬","𝗭"],R=["𝗮","𝗯","𝗰","𝗱","𝗲","𝗳","𝗴","𝗵","𝗶","𝗷","𝗸","𝗹","𝗺","𝗻","𝗼","𝗽","𝗾","𝗿","𝘀","𝘁","𝘂","𝘃","𝘄","𝘅","𝘆","𝘇"],k=["𝘈","𝘉","𝘊","𝘋","𝘌","𝘍","𝘎","𝘏","𝘐","𝘑","𝘒","𝘓","𝘔","𝘕","𝘖","𝘗","𝘘","𝘙","𝘚","𝘛","𝘜","𝘝","𝘞","𝘟","𝘠","𝘡"],D=["𝘢","𝘣","𝘤","𝘥","𝘦","𝘧","𝘨","𝘩","𝘪","𝘫","𝘬","𝘭","𝘮","𝘯","𝘰","𝘱","𝘲","𝘳","𝘴","𝘵","𝘶","𝘷","𝘸","𝘹","𝘺","𝘻"],B=["𝘼","𝘽","𝘾","𝘿","𝙀","𝙁","𝙂","𝙃","𝙄","𝙅","𝙆","𝙇","𝙈","𝙉","𝙊","𝙋","𝙌","𝙍","𝙎","𝙏","𝙐","𝙑","𝙒","𝙓","𝙔","𝙕"],j=["𝙖","𝙗","𝙘","𝙙","𝙚","𝙛","𝙜","𝙝","𝙞","𝙟","𝙠","𝙡","𝙢","𝙣","𝙤","𝙥","𝙦","𝙧","𝙨","𝙩","𝙪","𝙫","𝙬","𝙭","𝙮","𝙯"],F=["𝙰","𝙱","𝙲","𝙳","𝙴","𝙵","𝙶","𝙷","𝙸","𝙹","𝙺","𝙻","𝙼","𝙽","𝙾","𝙿","𝚀","𝚁","𝚂","𝚃","𝚄","𝚅","𝚆","𝚇","𝚈","𝚉"],G=["𝚊","𝚋","𝚌","𝚍","𝚎","𝚏","𝚐","𝚑","𝚒","𝚓","𝚔","𝚕","𝚖","𝚗","𝚘","𝚙","𝚚","𝚛","𝚜","𝚝","𝚞","𝚟","𝚠","𝚡","𝚢","𝚣"],q=["ⅅ","ⅆ","ⅇ","ⅈ","ⅉ"],U=["Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω"],Z=["α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω"],z=["𝚨","𝚩","𝚪","𝚫","𝚬","𝚭","𝚮","𝚯","𝚰","𝚱","𝚲","𝚳","𝚴","𝚵","𝚶","𝚷","𝚸","𝚺","𝚻","𝚼","𝚽","𝚾","𝚿","𝛀"],W=["𝛂","𝛃","𝛄","𝛅","𝛆","𝛇","𝛈","𝛉","𝛊","𝛋","𝛌","𝛍","𝛎","𝛏","𝛐","𝛑","𝛒","𝛓","𝛔","𝛕","𝛖","𝛗","𝛘","𝛙","𝛚"],X=["𝛢","𝛣","𝛤","𝛥","𝛦","𝛧","𝛨","𝛩","𝛪","𝛫","𝛬","𝛭","𝛮","𝛯","𝛰","𝛱","𝛲","𝛴","𝛵","𝛶","𝛷","𝛸","𝛹","𝛺"],$=["𝛼","𝛽","𝛾","𝛿","𝜀","𝜁","𝜂","𝜃","𝜄","𝜅","𝜆","𝜇","𝜈","𝜉","𝜊","𝜋","𝜌","𝜍","𝜎","𝜏","𝜐","𝜑","𝜒","𝜓","𝜔"],K=["𝜜","𝜝","𝜞","𝜟","𝜠","𝜡","𝜢","𝜣","𝜤","𝜥","𝜦","𝜧","𝜨","𝜩","𝜪","𝜫","𝜬","𝜮","𝜯","𝜰","𝜱","𝜲","𝜳","𝜴"],J=["𝜶","𝜷","𝜸","𝜹","𝜺","𝜻","𝜼","𝜽","𝜾","𝜿","𝝀","𝝁","𝝂","𝝃","𝝄","𝝅","𝝆","𝝇","𝝈","𝝉","𝝊","𝝋","𝝌","𝝍","𝝎"],Y=["𝝖","𝝗","𝝘","𝝙","𝝚","𝝛","𝝜","𝝝","𝝞","𝝟","𝝠","𝝡","𝝢","𝝣","𝝤","𝝥","𝝦","𝝨","𝝩","𝝪","𝝫","𝝬","𝝭","𝝮"],tt=["𝝰","𝝱","𝝲","𝝳","𝝴","𝝵","𝝶","𝝷","𝝸","𝝹","𝝺","𝝻","𝝼","𝝽","𝝾","𝝿","𝞀","𝞁","𝞂","𝞃","𝞄","𝞅","𝞆","𝞇","𝞈"],et=["𝞐","𝞑","𝞒","𝞓","𝞔","𝞕","𝞖","𝞗","𝞘","𝞙","𝞚","𝞛","𝞜","𝞝","𝞞","𝞟","𝞠","𝞢","𝞣","𝞤","𝞥","𝞦","𝞧","𝞨"],nt=["𝞪","𝞫","𝞬","𝞭","𝞮","𝞯","𝞰","𝞱","𝞲","𝞳","𝞴","𝞵","𝞶","𝞷","𝞸","𝞹","𝞺","𝞻","𝞼","𝞽","𝞾","𝞿","𝟀","𝟁","𝟂"],rt=["ℼ","ℽ","ℾ","ℿ"],it=["ϐ","ϑ","ϕ","ϖ","ϗ","ϰ","ϱ","ϵ","϶","ϴ"],ot=["𝛜","𝛝","𝛞","𝛟","𝛠","𝛡"],at=["𝜖","𝜗","𝜘","𝜙","𝜚","𝜛"],st=["𝞊","𝞋","𝞌","𝞍","𝞎","𝞏"],lt=["ℵ","ℶ","ℷ","ℸ"],Tt=h.concat(p,m,f,y,g,L,v,x,b,_,H,w,O,M,S,E,A,C,V,N,I,P,R,k,D,B,j,F,G,q,U,Z,z,W,X,$,K,J,Y,tt,rt,it,et,nt,ot,at,st,lt);e.allLettersRegExp=new RegExp(Tt.join("|"));const Qt=["+","±","∓","∔","∧","∨","∩","∪","⊌","⊍","⊎","⊓","⊔","⊝","⊞","⊤","⊥","⊺","⊻","⊼","⋄","⋎","⋏","⋒","⋓","⩞","⊕","⋔"],ct=String.fromCodePoint(8292);Qt.push(ct);const ut=["†","‡","∐","∗","∘","∙","≀","⊚","⊛","⊠","⊡","⋅","⋆","⋇","⋈","⋉","⋊","⋋","⋌","○","·","*","⊗","⊙"],dt=String.fromCodePoint(8290);ut.push(dt);const ht=String.fromCodePoint(8289),pt=["²","³","¹","⁰","⁴","⁵","⁶","⁷","⁸","⁹"].concat(["₀","₁","₂","₃","₄","₅","₆","₇","₈","₉"],["①","②","③","④","⑤","⑥","⑦","⑧","⑨","⑩","⑪","⑫","⑬","⑭","⑮","⑯","⑰","⑱","⑲","⑳","⓪","⓫","⓬","⓭","⓮","⓯","⓰","⓱","⓲","⓳","⓴","⓵","⓶","⓷","⓸","⓹","⓺","⓻","⓼","⓽","⓾","⓿","❶","❷","❸","❹","❺","❻","❼","❽","❾","❿","➀","➁","➂","➃","➄","➅","➆","➇","➈","➉","➊","➋","➌","➍","➎","➏","➐","➑","➒","➓","㉈","㉉","㉊","㉋","㉌","㉍","㉎","㉏","㉑","㉒","㉓","㉔","㉕","㉖","㉗","㉘","㉙","㉚","㉛","㉜","㉝","㉞","㉟","㊱","㊲","㊳","㊴","㊵","㊶","㊷","㊸","㊹","㊺","㊻","㊼","㊽","㊾","㊿"],["⑴","⑵","⑶","⑷","⑸","⑹","⑺","⑻","⑼","⑽","⑾","⑿","⒀","⒁","⒂","⒃","⒄","⒅","⒆","⒇"],["⒈","⒉","⒊","⒋","⒌","⒍","⒎","⒏","⒐","⒑","⒒","⒓","⒔","⒕","⒖","⒗","⒘","⒙","⒚","⒛","🄀","🄁","🄂","🄃","🄄","🄅","🄆","🄇","🄈","🄉","🄊"]),mt=["cos","cot","csc","sec","sin","tan","arccos","arccot","arccsc","arcsec","arcsin","arctan","arc cos","arc cot","arc csc","arc sec","arc sin","arc tan"].concat(["cosh","coth","csch","sech","sinh","tanh","arcosh","arcoth","arcsch","arsech","arsinh","artanh","arccosh","arccoth","arccsch","arcsech","arcsinh","arctanh"],["deg","det","dim","hom","ker","Tr","tr"],["log","ln","lg","exp","expt","gcd","gcd","arg","im","re","Pr"]),ft=[{set:["!",'"',"#","%","&",";","?","@","\\","¡","§","¶","¿","‗","†","‡","•","‣","․","‥","‧","‰","‱","‸","※","‼","‽","‾","⁁","⁂","⁃","⁇","⁈","⁉","⁋","⁌","⁍","⁎","⁏","⁐","⁑","⁓","⁕","⁖","⁘","⁙","⁚","⁛","⁜","⁝","⁞","︐","︔","︕","︖","︰","﹅","﹆","﹉","﹊","﹋","﹌","﹔","﹖","﹗","﹟","﹠","﹡","﹨","﹪","﹫","!",""","#","%","&","'","*","/",";","?","@","\"],type:"punctuation",role:"unknown"},{set:["︓",":",":","﹕"],type:"punctuation",role:"colon"},{set:r,type:"punctuation",role:"comma"},{set:["…","⋮","⋯","⋰","⋱","︙"],type:"punctuation",role:"ellipsis"},{set:[".","﹒","."],type:"punctuation",role:"fullstop"},{set:i,type:"operator",role:"dash"},{set:o,type:"operator",role:"tilde"},{set:["'","′","″","‴","‵","‶","‷","⁗","ʹ","ʺ"],type:"punctuation",role:"prime"},{set:["°"],type:"punctuation",role:"degree"},{set:l,type:"fence",role:"open"},{set:T,type:"fence",role:"close"},{set:Q,type:"fence",role:"top"},{set:c,type:"fence",role:"bottom"},{set:u,type:"fence",role:"neutral"},{set:d,type:"fence",role:"metric"},{set:p,type:"identifier",role:"latinletter",font:"normal"},{set:h,type:"identifier",role:"latinletter",font:"normal"},{set:f,type:"identifier",role:"latinletter",font:"normal"},{set:m,type:"identifier",role:"latinletter",font:"normal"},{set:g,type:"identifier",role:"latinletter",font:"bold"},{set:y,type:"identifier",role:"latinletter",font:"bold"},{set:b,type:"identifier",role:"latinletter",font:"italic"},{set:L,type:"identifier",role:"latinletter",font:"italic"},{set:x,type:"identifier",role:"latinletter",font:"bold-italic"},{set:v,type:"identifier",role:"latinletter",font:"bold-italic"},{set:H,type:"identifier",role:"latinletter",font:"script"},{set:_,type:"identifier",role:"latinletter",font:"script"},{set:O,type:"identifier",role:"latinletter",font:"bold-script"},{set:w,type:"identifier",role:"latinletter",font:"bold-script"},{set:S,type:"identifier",role:"latinletter",font:"fraktur"},{set:M,type:"identifier",role:"latinletter",font:"fraktur"},{set:A,type:"identifier",role:"latinletter",font:"double-struck"},{set:E,type:"identifier",role:"latinletter",font:"double-struck"},{set:V,type:"identifier",role:"latinletter",font:"bold-fraktur"},{set:C,type:"identifier",role:"latinletter",font:"bold-fraktur"},{set:I,type:"identifier",role:"latinletter",font:"sans-serif"},{set:N,type:"identifier",role:"latinletter",font:"sans-serif"},{set:R,type:"identifier",role:"latinletter",font:"sans-serif-bold"},{set:P,type:"identifier",role:"latinletter",font:"sans-serif-bold"},{set:D,type:"identifier",role:"latinletter",font:"sans-serif-italic"},{set:k,type:"identifier",role:"latinletter",font:"sans-serif-italic"},{set:j,type:"identifier",role:"latinletter",font:"sans-serif-bold-italic"},{set:B,type:"identifier",role:"latinletter",font:"sans-serif-bold-italic"},{set:G,type:"identifier",role:"latinletter",font:"monospace"},{set:F,type:"identifier",role:"latinletter",font:"monospace"},{set:q,type:"identifier",role:"latinletter",font:"double-struck-italic"},{set:Z,type:"identifier",role:"greekletter",font:"normal"},{set:U,type:"identifier",role:"greekletter",font:"normal"},{set:W,type:"identifier",role:"greekletter",font:"bold"},{set:z,type:"identifier",role:"greekletter",font:"bold"},{set:$,type:"identifier",role:"greekletter",font:"italic"},{set:X,type:"identifier",role:"greekletter",font:"italic"},{set:J,type:"identifier",role:"greekletter",font:"bold-italic"},{set:K,type:"identifier",role:"greekletter",font:"bold-italic"},{set:tt,type:"identifier",role:"greekletter",font:"sans-serif-bold"},{set:Y,type:"identifier",role:"greekletter",font:"sans-serif-bold"},{set:et,type:"identifier",role:"greekletter",font:"sans-serif-bold-italic"},{set:nt,type:"identifier",role:"greekletter",font:"sans-serif-bold-italic"},{set:rt,type:"identifier",role:"greekletter",font:"double-struck"},{set:it,type:"identifier",role:"greekletter",font:"normal"},{set:ot,type:"identifier",role:"greekletter",font:"bold"},{set:at,type:"identifier",role:"greekletter",font:"italic"},{set:st,type:"identifier",role:"greekletter",font:"sans-serif-bold"},{set:lt,type:"identifier",role:"otherletter",font:"normal"},{set:["0","1","2","3","4","5","6","7","8","9"],type:"number",role:"integer",font:"normal"},{set:["0","1","2","3","4","5","6","7","8","9"],type:"number",role:"integer",font:"normal"},{set:["𝟎","𝟏","𝟐","𝟑","𝟒","𝟓","𝟔","𝟕","𝟖","𝟗"],type:"number",role:"integer",font:"bold"},{set:["𝟘","𝟙","𝟚","𝟛","𝟜","𝟝","𝟞","𝟟","𝟠","𝟡"],type:"number",role:"integer",font:"double-struck"},{set:["𝟢","𝟣","𝟤","𝟥","𝟦","𝟧","𝟨","𝟩","𝟪","𝟫"],type:"number",role:"integer",font:"sans-serif"},{set:["𝟬","𝟭","𝟮","𝟯","𝟰","𝟱","𝟲","𝟳","𝟴","𝟵"],type:"number",role:"integer",font:"sans-serif-bold"},{set:["𝟶","𝟷","𝟸","𝟹","𝟺","𝟻","𝟼","𝟽","𝟾","𝟿"],type:"number",role:"integer",font:"monospace"},{set:["¼","½","¾","⅐","⅑","⅒","⅓","⅔","⅕","⅖","⅗","⅘","⅙","⅚","⅛","⅜","⅝","⅞","⅟","↉"],type:"number",role:"float"},{set:pt,type:"number",role:"othernumber"},{set:Qt,type:"operator",role:"addition"},{set:ut,type:"operator",role:"multiplication"},{set:["¯","-","⁒","⁻","₋","−","∖","∸","≂","⊖","⊟","➖","⨩","⨪","⨫","⨬","⨺","⩁","﹣","-","‐","‑"],type:"operator",role:"subtraction"},{set:["/","÷","⁄","∕","⊘","⟌","⦼","⨸"],type:"operator",role:"division"},{set:["∀","∃","∆","∇","∂","∁","∄"],type:"operator",role:"prefix operator"},{set:["𝛁","𝛛","𝟊","𝟋"],type:"operator",role:"prefix operator",font:"bold"},{set:["𝛻","𝜕"],type:"operator",role:"prefix operator",font:"italic"},{set:["𝝯","𝞉"],type:"operator",role:"prefix operator",font:"sans-serif-bold"},{set:["=","~","⁼","₌","∼","∽","≃","≅","≈","≊","≋","≌","≍","≎","≑","≒","≓","≔","≕","≖","≗","≘","≙","≚","≛","≜","≝","≞","≟","≡","≣","⧤","⩦","⩮","⩯","⩰","⩱","⩲","⩳","⩴","⩵","⩶","⩷","⩸","⋕","⩭","⩪","⩫","⩬","﹦","=","⩬","⊜","∷"],type:"relation",role:"equality"},{set:["<",">","≁","≂","≄","≆","≇","≉","≏","≐","≠","≢","≤","≥","≦","≧","≨","≩","≪","≫","≬","≭","≮","≯","≰","≱","≲","≳","≴","≵","≶","≷","≸","≹","≺","≻","≼","≽","≾","≿","⊀","⊁","⋖","⋗","⋘","⋙","⋚","⋛","⋜","⋝","⋞","⋟","⋠","⋡","⋦","⋧","⋨","⋩","⩹","⩺","⩻","⩼","⩽","⩾","⩿","⪀","⪁","⪂","⪃","⪄","⪅","⪆","⪇","⪈","⪉","⪊","⪋","⪌","⪍","⪎","⪏","⪐","⪑","⪒","⪓","⪔","⪕","⪖","⪗","⪘","⪙","⪚","⪛","⪜","⪝","⪞","⪟","⪠","⪡","⪢","⪣","⪤","⪥","⪦","⪧","⪨","⪩","⪪","⪫","⪬","⪭","⪮","⪯","⪰","⪱","⪲","⪳","⪴","⪵","⪶","⪷","⪸","⪹","⪺","⪻","⪼","⫷","⫸","⫹","⫺","⧀","⧁","﹤","﹥","<",">"],type:"relation",role:"inequality"},{set:["⋢","⋣","⋤","⋥","⊂","⊃","⊄","⊅","⊆","⊇","⊈","⊉","⊊","⊋","⊏","⊐","⊑","⊒","⪽","⪾","⪿","⫀","⫁","⫂","⫃","⫄","⫅","⫆","⫇","⫈","⫉","⫊","⫋","⫌","⫍","⫎","⫏","⫐","⫑","⫒","⫓","⫔","⫕","⫖","⫗","⫘","⋐","⋑","⋪","⋫","⋬","⋭","⊲","⊳","⊴","⊵"],type:"relation",role:"set"},{set:["⊢","⊣","⊦","⊧","⊨","⊩","⊪","⊫","⊬","⊭","⊮","⊯","⫞","⫟","⫠","⫡","⫢","⫣","⫤","⫥","⫦","⫧","⫨","⫩","⫪","⫫","⫬","⫭"],type:"relation",role:"unknown"},{set:["←","↑","→","↓","↔","↕","↖","↗","↘","↙","↚","↛","↜","↝","↞","↟","↠","↡","↢","↣","↤","↥","↦","↧","↨","↩","↪","↫","↬","↭","↮","↯","↰","↱","↲","↳","↴","↵","↶","↷","↸","↹","↺","↻","⇄","⇅","⇆","⇇","⇈","⇉","⇊","⇍","⇎","⇏","⇐","⇑","⇒","⇓","⇔","⇕","⇖","⇗","⇘","⇙","⇚","⇛","⇜","⇝","⇞","⇟","⇠","⇡","⇢","⇣","⇤","⇥","⇦","⇧","⇨","⇩","⇪","⇫","⇬","⇭","⇮","⇯","⇰","⇱","⇲","⇳","⇴","⇵","⇶","⇷","⇸","⇹","⇺","⇻","⇼","⇽","⇾","⇿","⌁","⌃","⌄","⌤","⎋","➔","➘","➙","➚","➛","➜","➝","➞","➟","➠","➡","➢","➣","➤","➥","➦","➧","➨","➩","➪","➫","➬","➭","➮","➯","➱","➲","➳","➴","➵","➶","➷","➸","➹","➺","➻","➼","➽","➾","⟰","⟱","⟲","⟳","⟴","⟵","⟶","⟷","⟸","⟹","⟺","⟻","⟼","⟽","⟾","⟿","⤀","⤁","⤂","⤃","⤄","⤅","⤆","⤇","⤈","⤉","⤊","⤋","⤌","⤍","⤎","⤏","⤐","⤑","⤒","⤓","⤔","⤕","⤖","⤗","⤘","⤙","⤚","⤛","⤜","⤝","⤞","⤟","⤠","⤡","⤢","⤣","⤤","⤥","⤦","⤧","⤨","⤩","⤪","⤭","⤮","⤯","⤰","⤱","⤲","⤳","⤴","⤵","⤶","⤷","⤸","⤹","⤺","⤻","⤼","⤽","⤾","⤿","⥀","⥁","⥂","⥃","⥄","⥅","⥆","⥇","⥈","⥉","⥰","⥱","⥲","⥳","⥴","⥵","⥶","⥷","⥸","⥹","⥺","⥻","⦳","⦴","⦽","⧪","⧬","⧭","⨗","⬀","⬁","⬂","⬃","⬄","⬅","⬆","⬇","⬈","⬉","⬊","⬋","⬌","⬍","⬎","⬏","⬐","⬑","⬰","⬱","⬲","⬳","⬴","⬵","⬶","⬷","⬸","⬹","⬺","⬻","⬼","⬽","⬾","⬿","⭀","⭁","⭂","⭃","⭄","⭅","⭆","⭇","⭈","⭉","⭊","⭋","⭌","←","↑","→","↓","↼","↽","↾","↿","⇀","⇁","⇂","⇃","⇋","⇌","⥊","⥋","⥌","⥍","⥎","⥏","⥐","⥑","⥒","⥓","⥔","⥕","⥖","⥗","⥘","⥙","⥚","⥛","⥜","⥝","⥞","⥟","⥠","⥡","⥢","⥣","⥤","⥥","⥦","⥧","⥨","⥩","⥪","⥫","⥬","⥭","⥮","⥯","⥼","⥽","⥾","⥿"],type:"relation",role:"arrow"},{set:["∈","∊","⋲","⋳","⋴","⋵","⋶","⋷","⋸","⋹","⋿"],type:"operator",role:"element"},{set:["∉"],type:"operator",role:"nonelement"},{set:["∋","∍","⋺","⋻","⋼","⋽","⋾"],type:"operator",role:"reelement"},{set:["∌"],type:"operator",role:"renonelement"},{set:["⅀","∏","∐","∑","⋀","⋁","⋂","⋃","⨀","⨁","⨂","⨃","⨄","⨅","⨆","⨇","⨈","⨉","⨊","⨋","⫼","⫿"],type:"largeop",role:"sum"},{set:["∫","∬","∭","∮","∯","∰","∱","∲","∳","⨌","⨍","⨎","⨏","⨐","⨑","⨒","⨓","⨔","⨕","⨖","⨗","⨘","⨙","⨚","⨛","⨜"],type:"largeop",role:"integral"},{set:["∟","∠","∡","∢","⊾","⊿","△","▷","▽","◁"],type:"operator",role:"geometry"},{set:["inf","lim","liminf","limsup","max","min","sup","injlim","projlim","inj lim","proj lim"],type:"function",role:"limit function"},{set:mt,type:"function",role:"prefix function"},{set:["mod","rem"],type:"operator",role:"prefix function"}],yt=function(){const t={};for(let e,n=0;e=ft[n];n++)e.set.forEach((function(n){t[n]={role:e.role||"unknown",type:e.type||"unknown",font:e.font||"unknown"}}));return t}();e.equal=function(t,e){return t.type===e.type&&t.role===e.role&&t.font===e.font},e.lookupType=function(t){var e;return(null===(e=yt[t])||void 0===e?void 0:e.type)||"unknown"},e.lookupRole=function(t){var e;return(null===(e=yt[t])||void 0===e?void 0:e.role)||"unknown"},e.lookupMeaning=function(t){return yt[t]||{role:"unknown",type:"unknown",font:"unknown"}},e.invisibleTimes=function(){return dt},e.invisiblePlus=function(){return ct},e.invisibleComma=function(){return n},e.functionApplication=function(){return ht},e.isMatchingFence=function(t,e){return-1!==u.indexOf(t)||-1!==d.indexOf(t)?t===e:a[t]===e||s[t]===e},e.isEmbellishedType=function(t){return"operator"===t||"relation"===t||"fence"===t||"punctuation"===t};const gt=new Map;function Lt(t,e){return`${t} ${e}`}function bt(t,e,n=""){for(const r of e)gt.set(Lt(t,r),n||t)}bt("d",["d","ⅆ","d","𝐝","𝑑","𝒹","𝓭","𝔡","𝕕","𝖉","𝖽","𝗱","𝘥","𝚍"]),bt("bar",i),bt("tilde",o),e.lookupSecondary=function(t,e){return gt.get(Lt(t,e))}},2083:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticMeaningCollator=e.SemanticNodeCollator=e.SemanticDefault=void 0;const r=n(218),i=n(9157);class o{constructor(){this.map={}}static key(t,e){return e?t+":"+e:t}add(t,e){this.map[o.key(t,e.font)]=e}addNode(t){this.add(t.textContent,t.meaning())}retrieve(t,e){return this.map[o.key(t,e)]}retrieveNode(t){return this.retrieve(t.textContent,t.font)}size(){return Object.keys(this.map).length}}e.SemanticDefault=o;class a{constructor(){this.map={}}add(t,e){const n=this.map[t];n?n.push(e):this.map[t]=[e]}retrieve(t,e){return this.map[o.key(t,e)]}retrieveNode(t){return this.retrieve(t.textContent,t.font)}copy(){const t=this.copyCollator();for(const e in this.map)t.map[e]=this.map[e];return t}minimize(){for(const t in this.map)1===this.map[t].length&&delete this.map[t]}minimalCollator(){const t=this.copy();for(const e in t.map)1===t.map[e].length&&delete t.map[e];return t}isMultiValued(){for(const t in this.map)if(this.map[t].length>1)return!0;return!1}isEmpty(){return!Object.keys(this.map).length}}class s extends a{copyCollator(){return new s}add(t,e){const n=o.key(t,e.font);super.add(n,e)}addNode(t){this.add(t.textContent,t)}toString(){const t=[];for(const e in this.map){const n=Array(e.length+3).join(" "),r=this.map[e],i=[];for(let t,e=0;t=r[e];e++)i.push(t.toString());t.push(e+": "+i.join("\n"+n))}return t.join("\n")}collateMeaning(){const t=new l;for(const e in this.map)t.map[e]=this.map[e].map((function(t){return t.meaning()}));return t}}e.SemanticNodeCollator=s;class l extends a{copyCollator(){return new l}add(t,e){const n=this.retrieve(t,e.font);if(!n||!n.find((function(t){return r.equal(t,e)}))){const n=o.key(t,e.font);super.add(n,e)}}addNode(t){this.add(t.textContent,t.meaning())}toString(){const t=[];for(const e in this.map){const n=Array(e.length+3).join(" "),r=this.map[e],i=[];for(let t,e=0;t=r[e];e++)i.push("{type: "+t.type+", role: "+t.role+", font: "+t.font+"}");t.push(e+": "+i.join("\n"+n))}return t.join("\n")}reduce(){for(const t in this.map)1!==this.map[t].length&&(this.map[t]=(0,i.reduce)(this.map[t]))}default(){const t=new o;for(const e in this.map)1===this.map[e].length&&(t.map[e]=this.map[e][0]);return t}newDefault(){const t=this.default();this.reduce();const e=this.default();return t.size()!==e.size()?e:null}}e.SemanticMeaningCollator=l},7535:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticMultiHeuristic=e.SemanticTreeHeuristic=e.SemanticAbstractHeuristic=void 0;class n{constructor(t,e,n=(t=>!1)){this.name=t,this.apply=e,this.applicable=n}}e.SemanticAbstractHeuristic=n,e.SemanticTreeHeuristic=class extends n{},e.SemanticMultiHeuristic=class extends n{}},9156:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.lookup=e.run=e.add=e.blacklist=e.flags=e.updateFactory=e.factory=void 0,e.factory=null,e.updateFactory=function(t){e.factory=t};const n=new Map;function r(t){return n.get(t)}e.flags={combine_juxtaposition:!0,convert_juxtaposition:!0,multioperator:!0},e.blacklist={},e.add=function(t){const r=t.name;n.set(r,t),e.flags[r]||(e.flags[r]=!1)},e.run=function(t,n,i){const o=r(t);return o&&!e.blacklist[t]&&(e.flags[t]||o.applicable(n))?o.apply(n):i?i(n):n},e.lookup=r},5044:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(5605),i=n(3684),o=n(218),a=n(9156),s=n(7535),l=n(5741),T=n(3342),Q=n(8478);function c(t,e,n){let r=null;if(!t.length)return r;const i=n[n.length-1],o=i&&i.length,a=e&&e.length,s=T.default.getInstance();if(o&&a){if("infixop"===e[0].type&&"implicit"===e[0].role)return r=t.pop(),i.push(s.postfixNode_(i.pop(),t)),r;r=t.shift();const n=s.prefixNode_(e.shift(),t);return e.unshift(n),r}return o?(i.push(s.postfixNode_(i.pop(),t)),r):(a&&e.unshift(s.prefixNode_(e.shift(),t)),r)}function u(t,e,n){if(!e.length)return t;const i=t.pop(),o=e.shift(),s=n.shift();if(l.isImplicitOp(o)){r.Debugger.getInstance().output("Juxta Heuristic Case 2");const a=(i?[i,o]:[o]).concat(s);return u(t.concat(a),e,n)}if(!i)return r.Debugger.getInstance().output("Juxta Heuristic Case 3"),u([o].concat(s),e,n);const T=s.shift();if(!T){r.Debugger.getInstance().output("Juxta Heuristic Case 9");const s=a.factory.makeBranchNode("infixop",[i,e.shift()],[o],o.textContent);return s.role="implicit",a.run("combine_juxtaposition",s),e.unshift(s),u(t,e,n)}if(l.isOperator(i)||l.isOperator(T))return r.Debugger.getInstance().output("Juxta Heuristic Case 4"),u(t.concat([i,o,T]).concat(s),e,n);let Q=null;return l.isImplicitOp(i)&&l.isImplicitOp(T)?(r.Debugger.getInstance().output("Juxta Heuristic Case 5"),i.contentNodes.push(o),i.contentNodes=i.contentNodes.concat(T.contentNodes),i.childNodes.push(T),i.childNodes=i.childNodes.concat(T.childNodes),T.childNodes.forEach((t=>t.parent=i)),o.parent=i,i.addMathmlNodes(o.mathml),i.addMathmlNodes(T.mathml),Q=i):l.isImplicitOp(i)?(r.Debugger.getInstance().output("Juxta Heuristic Case 6"),i.contentNodes.push(o),i.childNodes.push(T),T.parent=i,o.parent=i,i.addMathmlNodes(o.mathml),i.addMathmlNodes(T.mathml),Q=i):l.isImplicitOp(T)?(r.Debugger.getInstance().output("Juxta Heuristic Case 7"),T.contentNodes.unshift(o),T.childNodes.unshift(i),i.parent=T,o.parent=T,T.addMathmlNodes(o.mathml),T.addMathmlNodes(i.mathml),Q=T):(r.Debugger.getInstance().output("Juxta Heuristic Case 8"),Q=a.factory.makeBranchNode("infixop",[i,T],[o],o.textContent),Q.role="implicit"),t.push(Q),u(t.concat(s),e,n)}a.add(new s.SemanticTreeHeuristic("combine_juxtaposition",(function(t){for(let e,n=t.childNodes.length-1;e=t.childNodes[n];n--)l.isImplicitOp(e)&&!e.nobreaking&&(t.childNodes.splice(n,1,...e.childNodes),t.contentNodes.splice(n,0,...e.contentNodes),e.childNodes.concat(e.contentNodes).forEach((function(e){e.parent=t})),t.addMathmlNodes(e.mathml));return t}))),a.add(new s.SemanticTreeHeuristic("propagateSimpleFunction",(t=>("infixop"!==t.type&&"fraction"!==t.type||!t.childNodes.every(l.isSimpleFunction)||(t.role="composed function"),t)),(t=>"clearspeak"===i.default.getInstance().domain))),a.add(new s.SemanticTreeHeuristic("simpleNamedFunction",(t=>("unit"!==t.role&&-1!==["f","g","h","F","G","H"].indexOf(t.textContent)&&(t.role="simple function"),t)),(t=>"clearspeak"===i.default.getInstance().domain))),a.add(new s.SemanticTreeHeuristic("propagateComposedFunction",(t=>("fenced"===t.type&&"composed function"===t.childNodes[0].role&&(t.role="composed function"),t)),(t=>"clearspeak"===i.default.getInstance().domain))),a.add(new s.SemanticTreeHeuristic("multioperator",(t=>{if("unknown"!==t.role||t.textContent.length<=1)return;const e=[...t.textContent].map(o.lookupMeaning).reduce((function(t,e){return t&&e.role&&"unknown"!==e.role&&e.role!==t?"unknown"===t?e.role:null:t}),"unknown");e&&(t.role=e)}))),a.add(new s.SemanticMultiHeuristic("convert_juxtaposition",(t=>{let e=Q.partitionNodes(t,(function(t){return t.textContent===o.invisibleTimes()&&"operator"===t.type}));e=e.rel.length?function(t){const e=[],n=[];let r=t.comp.shift(),i=null,o=[];for(;t.comp.length;)if(o=[],r.length)i&&e.push(i),n.push(r),i=t.rel.shift(),r=t.comp.shift();else{for(i&&o.push(i);!r.length&&t.comp.length;)r=t.comp.shift(),o.push(t.rel.shift());i=c(o,r,n)}return o.length||r.length?(e.push(i),n.push(r)):(o.push(i),c(o,r,n)),{rel:e,comp:n}}(e):e,t=e.comp[0];for(let n,r,i=1;n=e.comp[i],r=e.rel[i-1];i++)t.push(r),t=t.concat(n);return e=Q.partitionNodes(t,(function(t){return t.textContent===o.invisibleTimes()&&("operator"===t.type||"infixop"===t.type)})),e.rel.length?u(e.comp.shift(),e.rel,e.comp):t}))),a.add(new s.SemanticTreeHeuristic("simple2prefix",(t=>(t.textContent.length>1&&!t.textContent[0].match(/[A-Z]/)&&(t.role="prefix function"),t)),(t=>"braille"===i.default.getInstance().modality&&"identifier"===t.type))),a.add(new s.SemanticTreeHeuristic("detect_cycle",(t=>{t.type="matrix",t.role="cycle";const e=t.childNodes[0];return e.type="row",e.role="cycle",e.textContent="",e.contentNodes=[],t}),(t=>"fenced"===t.type&&"infixop"===t.childNodes[0].type&&"implicit"===t.childNodes[0].role&&t.childNodes[0].childNodes.every((function(t){return"number"===t.type}))&&t.childNodes[0].contentNodes.every((function(t){return"space"===t.role})))))},7670:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticMathml=void 0;const r=n(7041),i=n(8456),o=n(5741),a=n(3342),s=n(8478);class l extends i.SemanticAbstractParser{constructor(){super("MathML"),this.parseMap_={SEMANTICS:this.semantics_.bind(this),MATH:this.rows_.bind(this),MROW:this.rows_.bind(this),MPADDED:this.rows_.bind(this),MSTYLE:this.rows_.bind(this),MFRAC:this.fraction_.bind(this),MSUB:this.limits_.bind(this),MSUP:this.limits_.bind(this),MSUBSUP:this.limits_.bind(this),MOVER:this.limits_.bind(this),MUNDER:this.limits_.bind(this),MUNDEROVER:this.limits_.bind(this),MROOT:this.root_.bind(this),MSQRT:this.sqrt_.bind(this),MTABLE:this.table_.bind(this),MLABELEDTR:this.tableLabeledRow_.bind(this),MTR:this.tableRow_.bind(this),MTD:this.tableCell_.bind(this),MS:this.text_.bind(this),MTEXT:this.text_.bind(this),MSPACE:this.space_.bind(this),"ANNOTATION-XML":this.text_.bind(this),MI:this.identifier_.bind(this),MN:this.number_.bind(this),MO:this.operator_.bind(this),MFENCED:this.fenced_.bind(this),MENCLOSE:this.enclosed_.bind(this),MMULTISCRIPTS:this.multiscripts_.bind(this),ANNOTATION:this.empty_.bind(this),NONE:this.empty_.bind(this),MACTION:this.action_.bind(this)};const t={type:"identifier",role:"numbersetletter",font:"double-struck"};["C","H","N","P","Q","R","Z","ℂ","ℍ","ℕ","ℙ","ℚ","ℝ","ℤ"].forEach((e=>this.getFactory().defaultMap.add(e,t)).bind(this))}static getAttribute_(t,e,n){if(!t.hasAttribute(e))return n;const r=t.getAttribute(e);return r.match(/^\s*$/)?null:r}parse(t){a.default.getInstance().setNodeFactory(this.getFactory());const e=r.toArray(t.childNodes),n=r.tagName(t),i=(this.parseMap_[n]||this.dummy_.bind(this))(t,e);return s.addAttributes(i,t),-1!==["MATH","MROW","MPADDED","MSTYLE","SEMANTICS"].indexOf(n)||(i.mathml.unshift(t),i.mathmlTree=t),i}semantics_(t,e){return e.length?this.parse(e[0]):this.getFactory().makeEmptyNode()}rows_(t,e){const n=t.getAttribute("semantics");if(n&&n.match("bspr_"))return a.default.proof(t,n,this.parseList.bind(this));let r;return 1===(e=s.purgeNodes(e)).length?(r=this.parse(e[0]),"empty"!==r.type||r.mathmlTree||(r.mathmlTree=t)):r=a.default.getInstance().row(this.parseList(e)),r.mathml.unshift(t),r}fraction_(t,e){if(!e.length)return this.getFactory().makeEmptyNode();const n=this.parse(e[0]),r=e[1]?this.parse(e[1]):this.getFactory().makeEmptyNode();return a.default.getInstance().fractionLikeNode(n,r,t.getAttribute("linethickness"),"true"===t.getAttribute("bevelled"))}limits_(t,e){return a.default.getInstance().limitNode(r.tagName(t),this.parseList(e))}root_(t,e){return e[1]?this.getFactory().makeBranchNode("root",[this.parse(e[1]),this.parse(e[0])],[]):this.sqrt_(t,e)}sqrt_(t,e){const n=this.parseList(s.purgeNodes(e));return this.getFactory().makeBranchNode("sqrt",[a.default.getInstance().row(n)],[])}table_(t,e){const n=t.getAttribute("semantics");if(n&&n.match("bspr_"))return a.default.proof(t,n,this.parseList.bind(this));const r=this.getFactory().makeBranchNode("table",this.parseList(e),[]);return r.mathmlTree=t,a.default.tableToMultiline(r),r}tableRow_(t,e){const n=this.getFactory().makeBranchNode("row",this.parseList(e),[]);return n.role="table",n}tableLabeledRow_(t,e){if(!e.length)return this.tableRow_(t,e);const n=this.parse(e[0]);n.role="label";const r=this.getFactory().makeBranchNode("row",this.parseList(e.slice(1)),[n]);return r.role="table",r}tableCell_(t,e){const n=this.parseList(s.purgeNodes(e));let r;r=n.length?1===n.length&&o.isType(n[0],"empty")?n:[a.default.getInstance().row(n)]:[];const i=this.getFactory().makeBranchNode("cell",r,[]);return i.role="table",i}space_(t,e){const n=t.getAttribute("width"),i=n&&n.match(/[a-z]*$/);if(!i)return this.empty_(t,e);const o=i[0],s=parseFloat(n.slice(0,i.index)),l={cm:.4,pc:.5,em:.5,ex:1,in:.15,pt:5,mm:5}[o];if(!l||isNaN(s)||s<l)return this.empty_(t,e);const T=this.getFactory().makeUnprocessed(t);return a.default.getInstance().text(T,r.tagName(t))}text_(t,e){const n=this.leaf_(t,e);return t.textContent?(n.updateContent(t.textContent,!0),a.default.getInstance().text(n,r.tagName(t))):n}identifier_(t,e){const n=this.leaf_(t,e);return a.default.getInstance().identifierNode(n,a.default.getInstance().font(t.getAttribute("mathvariant")),t.getAttribute("class"))}number_(t,e){const n=this.leaf_(t,e);return a.default.number(n),n}operator_(t,e){const n=this.leaf_(t,e);return a.default.getInstance().operatorNode(n),n}fenced_(t,e){const n=this.parseList(s.purgeNodes(e)),r=l.getAttribute_(t,"separators",","),i=l.getAttribute_(t,"open","("),o=l.getAttribute_(t,"close",")"),T=a.default.getInstance().mfenced(i,o,r,n);return a.default.getInstance().tablesInRow([T])[0]}enclosed_(t,e){const n=this.parseList(s.purgeNodes(e)),r=this.getFactory().makeBranchNode("enclose",[a.default.getInstance().row(n)],[]);return r.role=t.getAttribute("notation")||"unknown",r}multiscripts_(t,e){if(!e.length)return this.getFactory().makeEmptyNode();const n=this.parse(e.shift());if(!e.length)return n;const i=[],o=[],l=[],T=[];let Q=!1,c=0;for(let t,n=0;t=e[n];n++)"MPRESCRIPTS"!==r.tagName(t)?(Q?1&c?i.push(t):o.push(t):1&c?l.push(t):T.push(t),c++):(Q=!0,c=0);return s.purgeNodes(i).length||s.purgeNodes(o).length?a.default.getInstance().tensor(n,this.parseList(o),this.parseList(i),this.parseList(T),this.parseList(l)):a.default.getInstance().pseudoTensor(n,this.parseList(T),this.parseList(l))}empty_(t,e){return this.getFactory().makeEmptyNode()}action_(t,e){return e.length>1?this.parse(e[1]):this.getFactory().makeUnprocessed(t)}dummy_(t,e){const n=this.getFactory().makeUnprocessed(t);return n.role=t.tagName,n.textContent=t.textContent,n}leaf_(t,e){if(1===e.length&&e[0].nodeType!==r.NodeType.TEXT_NODE){const n=this.getFactory().makeUnprocessed(t);return n.role=e[0].tagName,s.addAttributes(n,e[0]),n}return this.getFactory().makeLeafNode(t.textContent,a.default.getInstance().font(t.getAttribute("mathvariant")))}}e.SemanticMathml=l},7603:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticNode=void 0;const r=n(7041),i=n(218),o=n(8478);class a{constructor(t){this.id=t,this.mathml=[],this.parent=null,this.type="unknown",this.role="unknown",this.font="unknown",this.embellished=null,this.fencePointer="",this.childNodes=[],this.textContent="",this.mathmlTree=null,this.contentNodes=[],this.annotation={},this.attributes={},this.nobreaking=!1}static fromXml(t){const e=parseInt(t.getAttribute("id"),10),n=new a(e);return n.type=t.tagName,a.setAttribute(n,t,"role"),a.setAttribute(n,t,"font"),a.setAttribute(n,t,"embellished"),a.setAttribute(n,t,"fencepointer","fencePointer"),t.getAttribute("annotation")&&n.parseAnnotation(t.getAttribute("annotation")),o.addAttributes(n,t),a.processChildren(n,t),n}static setAttribute(t,e,n,r){r=r||n;const i=e.getAttribute(n);i&&(t[r]=i)}static processChildren(t,e){for(const n of r.toArray(e.childNodes)){if(n.nodeType===r.NodeType.TEXT_NODE){t.textContent=n.textContent;continue}const e=r.toArray(n.childNodes).map(a.fromXml);e.forEach((e=>e.parent=t)),"CONTENT"===r.tagName(n)?t.contentNodes=e:t.childNodes=e}}querySelectorAll(t){let e=[];for(let n,r=0;n=this.childNodes[r];r++)e=e.concat(n.querySelectorAll(t));for(let n,r=0;n=this.contentNodes[r];r++)e=e.concat(n.querySelectorAll(t));return t(this)&&e.unshift(this),e}xml(t,e){const n=function(n,r){const i=r.map((function(n){return n.xml(t,e)})),o=t.createElementNS("",n);for(let t,e=0;t=i[e];e++)o.appendChild(t);return o},r=t.createElementNS("",this.type);return e||this.xmlAttributes(r),r.textContent=this.textContent,this.contentNodes.length>0&&r.appendChild(n("content",this.contentNodes)),this.childNodes.length>0&&r.appendChild(n("children",this.childNodes)),r}toString(t=!1){const e=r.parseInput("<snode/>");return r.serializeXml(this.xml(e.ownerDocument,t))}allAttributes(){const t=[];return t.push(["role",this.role]),"unknown"!==this.font&&t.push(["font",this.font]),Object.keys(this.annotation).length&&t.push(["annotation",this.annotationXml()]),this.embellished&&t.push(["embellished",this.embellished]),this.fencePointer&&t.push(["fencepointer",this.fencePointer]),t.push(["id",this.id.toString()]),t}annotationXml(){const t=[];for(const e in this.annotation)this.annotation[e].forEach((function(n){t.push(e+":"+n)}));return t.join(";")}attributesXml(){const t=[];for(const[e,n]of Object.entries(this.attributes))t.push(e+":"+n);return t.join(";")}toJson(){const t={};t.type=this.type;const e=this.allAttributes();for(let n,r=0;n=e[r];r++)t[n[0]]=n[1].toString();return this.textContent&&(t.$t=this.textContent),this.childNodes.length&&(t.children=this.childNodes.map((function(t){return t.toJson()}))),this.contentNodes.length&&(t.content=this.contentNodes.map((function(t){return t.toJson()}))),t}updateContent(t,e){const n=e?t.replace(/^[ \f\n\r\t\v\u200b]*/,"").replace(/[ \f\n\r\t\v\u200b]*$/,""):t.trim();if(t=t&&!n?t:n,this.textContent===t)return;const r=(0,i.lookupMeaning)(t);this.textContent=t,this.role=r.role,this.type=r.type,this.font=r.font}addMathmlNodes(t){for(let e,n=0;e=t[n];n++)-1===this.mathml.indexOf(e)&&this.mathml.push(e)}appendChild(t){this.childNodes.push(t),this.addMathmlNodes(t.mathml),t.parent=this}replaceChild(t,e){const n=this.childNodes.indexOf(t);if(-1===n)return;t.parent=null,e.parent=this,this.childNodes[n]=e;const r=t.mathml.filter((function(t){return-1===e.mathml.indexOf(t)})),i=e.mathml.filter((function(e){return-1===t.mathml.indexOf(e)}));this.removeMathmlNodes(r),this.addMathmlNodes(i)}appendContentNode(t){t&&(this.contentNodes.push(t),this.addMathmlNodes(t.mathml),t.parent=this)}removeContentNode(t){if(t){const e=this.contentNodes.indexOf(t);-1!==e&&this.contentNodes.slice(e,1)}}equals(t){if(!t)return!1;if(this.type!==t.type||this.role!==t.role||this.textContent!==t.textContent||this.childNodes.length!==t.childNodes.length||this.contentNodes.length!==t.contentNodes.length)return!1;for(let e,n,r=0;e=this.childNodes[r],n=t.childNodes[r];r++)if(!e.equals(n))return!1;for(let e,n,r=0;e=this.contentNodes[r],n=t.contentNodes[r];r++)if(!e.equals(n))return!1;return!0}displayTree(){console.info(this.displayTree_(0))}addAnnotation(t,e){e&&this.addAnnotation_(t,e)}getAnnotation(t){return this.annotation[t]||[]}hasAnnotation(t,e){const n=this.annotation[t];return!!n&&-1!==n.indexOf(e)}parseAnnotation(t){const e=t.split(";");for(let t=0,n=e.length;t<n;t++){const n=e[t].split(":");this.addAnnotation(n[0],n[1])}}meaning(){return{type:this.type,role:this.role,font:this.font}}xmlAttributes(t){const e=this.allAttributes();for(let n,r=0;n=e[r];r++)t.setAttribute(n[0],n[1]);this.addExternalAttributes(t)}addExternalAttributes(t){for(const e in this.attributes)t.setAttribute(e,this.attributes[e])}parseAttributes(t){if(!t)return;const e=t.split(";");for(let t=0,n=e.length;t<n;t++){const[n,r]=e[t].split(":");n&&(this.attributes[n]=r)}}removeMathmlNodes(t){const e=this.mathml;for(let n,r=0;n=t[r];r++){const t=e.indexOf(n);-1!==t&&e.splice(t,1)}this.mathml=e}displayTree_(t){t++;const e=Array(t).join(" ");let n="";n+="\n"+e+this.toString(),n+="\n"+e+"MathmlTree:",n+="\n"+e+this.mathmlTreeString(),n+="\n"+e+"MathML:";for(let t,r=0;t=this.mathml[r];r++)n+="\n"+e+t.toString();return n+="\n"+e+"Begin Content",this.contentNodes.forEach((function(e){n+=e.displayTree_(t)})),n+="\n"+e+"End Content",n+="\n"+e+"Begin Children",this.childNodes.forEach((function(e){n+=e.displayTree_(t)})),n+="\n"+e+"End Children",n}mathmlTreeString(){return this.mathmlTree?this.mathmlTree.toString():"EMPTY"}addAnnotation_(t,e){const n=this.annotation[t];n?n.push(e):this.annotation[t]=[e]}}e.SemanticNode=a},5349:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticNodeFactory=void 0;const r=n(2083),i=n(2083),o=n(7603);e.SemanticNodeFactory=class{constructor(){this.leafMap=new i.SemanticNodeCollator,this.defaultMap=new r.SemanticDefault,this.idCounter_=-1}makeNode(t){return this.createNode_(t)}makeUnprocessed(t){const e=this.createNode_();return e.mathml=[t],e.mathmlTree=t,e}makeEmptyNode(){const t=this.createNode_();return t.type="empty",t}makeContentNode(t){const e=this.createNode_();return e.updateContent(t),e}makeMultipleContentNodes(t,e){const n=[];for(let r=0;r<t;r++)n.push(this.makeContentNode(e));return n}makeLeafNode(t,e){if(!t)return this.makeEmptyNode();const n=this.makeContentNode(t);n.font=e||n.font;const r=this.defaultMap.retrieveNode(n);return r&&(n.type=r.type,n.role=r.role,n.font=r.font),this.leafMap.addNode(n),n}makeBranchNode(t,e,n,r){const i=this.createNode_();return r&&i.updateContent(r),i.type=t,i.childNodes=e,i.contentNodes=n,e.concat(n).forEach((function(t){t.parent=i,i.addMathmlNodes(t.mathml)})),i}createNode_(t){return void 0!==t?this.idCounter_=Math.max(this.idCounter_,t):t=++this.idCounter_,new o.SemanticNode(t)}}},9157:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticComparator=e.reduce=e.sort=e.apply=e.add=void 0;const n=[];function r(t){n.push(t)}function i(t,e){for(let r,i=0;r=n[i];i++){const n=r.compare(t,e);if(0!==n)return n}return 0}function o(t){t.sort(i)}e.add=r,e.apply=i,e.sort=o,e.reduce=function(t){if(t.length<=1)return t;const e=t.slice();o(e);const n=[];let r;do{r=e.pop(),n.push(r)}while(r&&e.length&&0===i(e[e.length-1],r));return n};class a{constructor(t,e=null){this.comparator=t,this.type=e,r(this)}compare(t,e){return this.type&&this.type===t.type&&this.type===e.type?this.comparator(t,e):0}}e.SemanticComparator=a,new a((function(t,e){return"simple function"===t.role?1:"simple function"===e.role?-1:0}),"identifier")},8456:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticAbstractParser=void 0;const r=n(5349);e.SemanticAbstractParser=class{constructor(t){this.type=t,this.factory_=new r.SemanticNodeFactory}getFactory(){return this.factory_}setFactory(t){this.factory_=t}getType(){return this.type}parseList(t){const e=[];for(let n,r=0;n=t[r];r++)e.push(this.parse(n));return e}}},5741:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isMembership=e.elligibleRightNeutral=e.elligibleLeftNeutral=e.compareNeutralFences=e.isNeutralFence=e.isImplicitOp=e.isImplicit=e.isPureUnit=e.isUnitCounter=e.isNumber=e.isSingletonSetContent=e.scriptedElement_=e.illegalSingleton_=e.isSetNode=e.isRightBrace=e.isLeftBrace=e.isSimpleFunction=e.singlePunctAtPosition=e.isSimpleFunctionHead=e.isLimitBase=e.isBinomial=e.lineIsLabelled=e.tableIsMultiline=e.tableIsCases=e.isFencedElement=e.tableIsMatrixOrVector=e.isTableOrMultiline=e.isElligibleEmbellishedFence=e.isFence=e.isPunctuation=e.isRelation=e.isOperator=e.isEmbellished=e.isGeneralFunctionBoundary=e.isIntegralDxBoundarySingle=e.isIntegralDxBoundary=e.isBigOpBoundary=e.isPrefixFunctionBoundary=e.isSimpleFunctionScope=e.isAccent=e.isRole=e.embellishedType=e.isType=void 0;const r=n(218),i=n(8478);function o(t,e){return t.type===e}function a(t,e){return t.embellished===e}function s(t,e){return t.role===e}function l(t){return Q(t)||c(t)}function T(t){return o(t,"operator")||a(t,"operator")}function Q(t){return o(t,"relation")||a(t,"relation")}function c(t){return o(t,"punctuation")||a(t,"punctuation")}function u(t){return o(t,"fence")||a(t,"fence")}function d(t){return!t.embellished||!function(t){return o(t,"tensor")&&(!o(t.childNodes[1],"empty")||!o(t.childNodes[2],"empty"))&&(!o(t.childNodes[3],"empty")||!o(t.childNodes[4],"empty"))}(t)&&(!s(t,"close")||!o(t,"tensor"))&&(!s(t,"open")||!o(t,"subscript")&&!o(t,"superscript"))&&d(t.childNodes[0])}function h(t){return!!t&&(o(t,"table")||o(t,"multiline"))}function p(t){return!!t&&o(t,"fenced")&&(s(t,"leftright")||g(t))&&1===t.childNodes.length}function m(t){return!!t&&-1!==["{","﹛","{"].indexOf(t.textContent)}function f(t){return!!t&&-1!==["}","﹜","}"].indexOf(t.textContent)}function y(t){return"number"===t.type&&("integer"===t.role||"float"===t.role)}function g(t){return"neutral"===t.role||"metric"===t.role}e.isType=o,e.embellishedType=a,e.isRole=s,e.isAccent=function(t){const e=new RegExp("∞|᪲");return o(t,"fence")||o(t,"punctuation")||o(t,"operator")&&!t.textContent.match(e)||o(t,"relation")||o(t,"identifier")&&s(t,"unknown")&&!t.textContent.match(r.allLettersRegExp)&&!t.textContent.match(e)},e.isSimpleFunctionScope=function(t){const e=t.childNodes;if(0===e.length)return!0;if(e.length>1)return!1;const n=e[0];if("infixop"===n.type){if("implicit"!==n.role)return!1;if(n.childNodes.some((t=>o(t,"infixop"))))return!1}return!0},e.isPrefixFunctionBoundary=function(t){return T(t)&&!s(t,"division")||o(t,"appl")||l(t)},e.isBigOpBoundary=function(t){return T(t)||l(t)},e.isIntegralDxBoundary=function(t,e){return!!e&&o(e,"identifier")&&r.lookupSecondary("d",t.textContent)},e.isIntegralDxBoundarySingle=function(t){if(o(t,"identifier")){const e=t.textContent[0];return e&&t.textContent[1]&&r.lookupSecondary("d",e)}return!1},e.isGeneralFunctionBoundary=l,e.isEmbellished=function(t){return t.embellished?t.embellished:r.isEmbellishedType(t.type)?t.type:null},e.isOperator=T,e.isRelation=Q,e.isPunctuation=c,e.isFence=u,e.isElligibleEmbellishedFence=function(t){return!(!t||!u(t))&&(!t.embellished||d(t))},e.isTableOrMultiline=h,e.tableIsMatrixOrVector=function(t){return!!t&&p(t)&&h(t.childNodes[0])},e.isFencedElement=p,e.tableIsCases=function(t,e){return e.length>0&&s(e[e.length-1],"openfence")},e.tableIsMultiline=function(t){return t.childNodes.every((function(t){return t.childNodes.length<=1}))},e.lineIsLabelled=function(t){return o(t,"line")&&t.contentNodes.length&&s(t.contentNodes[0],"label")},e.isBinomial=function(t){return 2===t.childNodes.length},e.isLimitBase=function t(e){return o(e,"largeop")||o(e,"limboth")||o(e,"limlower")||o(e,"limupper")||o(e,"function")&&s(e,"limit function")||(o(e,"overscore")||o(e,"underscore"))&&t(e.childNodes[0])},e.isSimpleFunctionHead=function(t){return"identifier"===t.type||"latinletter"===t.role||"greekletter"===t.role||"otherletter"===t.role},e.singlePunctAtPosition=function(t,e,n){return 1===e.length&&("punctuation"===t[n].type||"punctuation"===t[n].embellished)&&t[n]===e[0]},e.isSimpleFunction=function(t){return o(t,"identifier")&&s(t,"simple function")},e.isLeftBrace=m,e.isRightBrace=f,e.isSetNode=function(t){return m(t.contentNodes[0])&&f(t.contentNodes[1])},e.illegalSingleton_=["punctuation","punctuated","relseq","multirel","table","multiline","cases","inference"],e.scriptedElement_=["limupper","limlower","limboth","subscript","superscript","underscore","overscore","tensor"],e.isSingletonSetContent=function t(n){const r=n.type;return-1===e.illegalSingleton_.indexOf(r)&&("infixop"!==r||"implicit"===n.role)&&("fenced"===r?"leftright"!==n.role||t(n.childNodes[0]):-1===e.scriptedElement_.indexOf(r)||t(n.childNodes[0]))},e.isNumber=y,e.isUnitCounter=function(t){return y(t)||"vulgar"===t.role||"mixed"===t.role},e.isPureUnit=function(t){const e=t.childNodes;return"unit"===t.role&&(!e.length||"unit"===e[0].role)},e.isImplicit=function(t){return"implicit"===t.role||"unit"===t.role&&!!t.contentNodes.length&&t.contentNodes[0].textContent===r.invisibleTimes()},e.isImplicitOp=function(t){return"infixop"===t.type&&"implicit"===t.role},e.isNeutralFence=g,e.compareNeutralFences=function(t,e){return g(t)&&g(e)&&(0,i.getEmbellishedInner)(t).textContent===(0,i.getEmbellishedInner)(e).textContent},e.elligibleLeftNeutral=function(t){return!!g(t)&&(!t.embellished||"superscript"!==t.type&&"subscript"!==t.type&&("tensor"!==t.type||"empty"===t.childNodes[3].type&&"empty"===t.childNodes[4].type))},e.elligibleRightNeutral=function(t){return!!g(t)&&(!t.embellished||"tensor"!==t.type||"empty"===t.childNodes[1].type&&"empty"===t.childNodes[2].type)},e.isMembership=function(t){return["element","nonelement","reelement","renonelement"].includes(t.role)}},3342:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const r=n(7041),i=n(218),o=n(9156),a=n(5349),s=n(5741),l=n(8478);class T{constructor(){this.funcAppls={},this.factory_=new a.SemanticNodeFactory,o.updateFactory(this.factory_)}static getInstance(){return T.instance=T.instance||new T,T.instance}static tableToMultiline(t){if(s.tableIsMultiline(t)){t.type="multiline";for(let e,n=0;e=t.childNodes[n];n++)T.rowToLine_(e,"multiline");1===t.childNodes.length&&!s.lineIsLabelled(t.childNodes[0])&&s.isFencedElement(t.childNodes[0].childNodes[0])&&T.tableToMatrixOrVector_(T.rewriteFencedLine_(t)),T.binomialForm_(t),T.classifyMultiline(t)}else T.classifyTable(t)}static number(t){"unknown"!==t.type&&"identifier"!==t.type||(t.type="number"),T.numberRole_(t),T.exprFont_(t)}static classifyMultiline(t){let e=0;const n=t.childNodes.length;let r;for(;e<n&&(!(r=t.childNodes[e])||!r.childNodes.length);)e++;if(e>=n)return;const i=r.childNodes[0].role;"unknown"!==i&&t.childNodes.every((function(t){const e=t.childNodes[0];return!e||e.role===i&&(s.isType(e,"relation")||s.isType(e,"relseq"))}))&&(t.role=i)}static classifyTable(t){const e=T.computeColumns_(t);T.classifyByColumns_(t,e,"equality")||T.classifyByColumns_(t,e,"inequality",["equality"])||T.classifyByColumns_(t,e,"arrow")||T.detectCaleyTable(t)}static detectCaleyTable(t){if(!t.mathmlTree)return!1;const e=t.mathmlTree,n=e.getAttribute("columnlines"),r=e.getAttribute("rowlines");return!(!n||!r||!T.cayleySpacing(n)||!T.cayleySpacing(r)||(t.role="cayley",0))}static cayleySpacing(t){const e=t.split(" ");return("solid"===e[0]||"dashed"===e[0])&&e.slice(1).every((t=>"none"===t))}static proof(t,e,n){const r=T.separateSemantics(e);return T.getInstance().proof(t,r,n)}static findSemantics(t,e,n){const r=null==n?null:n,i=T.getSemantics(t);return!(!i||!i[e]||null!=r&&i[e]!==r)}static getSemantics(t){const e=t.getAttribute("semantics");return e?T.separateSemantics(e):null}static removePrefix(t){const[,...e]=t.split("_");return e.join("_")}static separateSemantics(t){const e={};return t.split(";").forEach((function(t){const[n,r]=t.split(":");e[T.removePrefix(n)]=r})),e}static matchSpaces_(t,e){for(let n,r=0;n=e[r];r++){const e=t[r].mathmlTree,i=t[r+1].mathmlTree;if(!e||!i)continue;const o=e.nextSibling;if(!o||o===i)continue;const a=T.getSpacer_(o);a&&(n.mathml.push(a),n.mathmlTree=a,n.role="space")}}static getSpacer_(t){if("MSPACE"===r.tagName(t))return t;for(;l.hasEmptyTag(t)&&1===t.childNodes.length;)if(t=t.childNodes[0],"MSPACE"===r.tagName(t))return t;return null}static fenceToPunct_(t){const e=T.FENCE_TO_PUNCT_[t.role];if(e){for(;t.embellished;)t.embellished="punctuation",s.isRole(t,"subsup")||s.isRole(t,"underover")||(t.role=e),t=t.childNodes[0];t.type="punctuation",t.role=e}}static classifyFunction_(t,e){if("appl"===t.type||"bigop"===t.type||"integral"===t.type)return"";if(e[0]&&e[0].textContent===i.functionApplication()){T.getInstance().funcAppls[t.id]=e.shift();let n="simple function";return o.run("simple2prefix",t),"prefix function"!==t.role&&"limit function"!==t.role||(n=t.role),T.propagateFunctionRole_(t,n),"prefix"}return T.CLASSIFY_FUNCTION_[t.role]||(s.isSimpleFunctionHead(t)?"simple":"")}static propagateFunctionRole_(t,e){if(t){if("infixop"===t.type)return;s.isRole(t,"subsup")||s.isRole(t,"underover")||(t.role=e),T.propagateFunctionRole_(t.childNodes[0],e)}}static getFunctionOp_(t,e){if(e(t))return t;for(let n,r=0;n=t.childNodes[r];r++){const t=T.getFunctionOp_(n,e);if(t)return t}return null}static tableToMatrixOrVector_(t){const e=t.childNodes[0];s.isType(e,"multiline")?T.tableToVector_(t):T.tableToMatrix_(t),t.contentNodes.forEach(e.appendContentNode.bind(e));for(let t,n=0;t=e.childNodes[n];n++)T.assignRoleToRow_(t,T.getComponentRoles_(e));return e.parent=null,e}static tableToVector_(t){const e=t.childNodes[0];e.type="vector",1!==e.childNodes.length?T.binomialForm_(e):T.tableToSquare_(t)}static binomialForm_(t){s.isBinomial(t)&&(t.role="binomial",t.childNodes[0].role="binomial",t.childNodes[1].role="binomial")}static tableToMatrix_(t){const e=t.childNodes[0];e.type="matrix",e.childNodes&&e.childNodes.length>0&&e.childNodes[0].childNodes&&e.childNodes.length===e.childNodes[0].childNodes.length?T.tableToSquare_(t):e.childNodes&&1===e.childNodes.length&&(e.role="rowvector")}static tableToSquare_(t){const e=t.childNodes[0];s.isNeutralFence(t)?e.role="determinant":e.role="squarematrix"}static getComponentRoles_(t){const e=t.role;return e&&"unknown"!==e?e:t.type.toLowerCase()||"unknown"}static tableToCases_(t,e){for(let e,n=0;e=t.childNodes[n];n++)T.assignRoleToRow_(e,"cases");return t.type="cases",t.appendContentNode(e),s.tableIsMultiline(t)&&T.binomialForm_(t),t}static rewriteFencedLine_(t){const e=t.childNodes[0],n=t.childNodes[0].childNodes[0],r=t.childNodes[0].childNodes[0].childNodes[0];return n.parent=t.parent,t.parent=n,r.parent=e,n.childNodes=[t],e.childNodes=[r],n}static rowToLine_(t,e){const n=e||"unknown";s.isType(t,"row")&&(t.type="line",t.role=n,1===t.childNodes.length&&s.isType(t.childNodes[0],"cell")&&(t.childNodes=t.childNodes[0].childNodes,t.childNodes.forEach((function(e){e.parent=t}))))}static assignRoleToRow_(t,e){s.isType(t,"line")?t.role=e:s.isType(t,"row")&&(t.role=e,t.childNodes.forEach((function(t){s.isType(t,"cell")&&(t.role=e)})))}static nextSeparatorFunction_(t){let e;if(t){if(t.match(/^\s+$/))return null;e=t.replace(/\s/g,"").split("").filter((function(t){return t}))}else e=[","];return function(){return e.length>1?e.shift():e[0]}}static numberRole_(t){if("unknown"!==t.role)return;const e=[...t.textContent].filter((t=>t.match(/[^\s]/))),n=e.map(i.lookupMeaning);if(n.every((function(t){return"number"===t.type&&"integer"===t.role||"punctuation"===t.type&&"comma"===t.role})))return t.role="integer",void("0"===e[0]&&t.addAnnotation("general","basenumber"));n.every((function(t){return"number"===t.type&&"integer"===t.role||"punctuation"===t.type}))?t.role="float":t.role="othernumber"}static exprFont_(t){if("unknown"!==t.font)return;const e=[...t.textContent].map(i.lookupMeaning).reduce((function(t,e){return t&&e.font&&"unknown"!==e.font&&e.font!==t?"unknown"===t?e.font:null:t}),"unknown");e&&(t.font=e)}static purgeFences_(t){const e=t.rel,n=t.comp,r=[],i=[];for(;e.length>0;){const t=e.shift();let o=n.shift();s.isElligibleEmbellishedFence(t)?(r.push(t),i.push(o)):(T.fenceToPunct_(t),o.push(t),o=o.concat(n.shift()),n.unshift(o))}return i.push(n.shift()),{rel:r,comp:i}}static rewriteFencedNode_(t){const e=t.contentNodes[0],n=t.contentNodes[1];let r=T.rewriteFence_(t,e);return t.contentNodes[0]=r.fence,r=T.rewriteFence_(r.node,n),t.contentNodes[1]=r.fence,t.contentNodes[0].parent=t,t.contentNodes[1].parent=t,r.node.parent=null,r.node}static rewriteFence_(t,e){if(!e.embellished)return{node:t,fence:e};const n=e.childNodes[0],r=T.rewriteFence_(t,n);return s.isType(e,"superscript")||s.isType(e,"subscript")||s.isType(e,"tensor")?(s.isRole(e,"subsup")||(e.role=t.role),n!==r.node&&(e.replaceChild(n,r.node),n.parent=t),T.propagateFencePointer_(e,n),{node:e,fence:r.fence}):(e.replaceChild(n,r.fence),e.mathmlTree&&-1===e.mathml.indexOf(e.mathmlTree)&&e.mathml.push(e.mathmlTree),{node:r.node,fence:e})}static propagateFencePointer_(t,e){t.fencePointer=e.fencePointer||e.id.toString(),t.embellished=null}static classifyByColumns_(t,e,n,r){return!!(3===e.length&&T.testColumns_(e,1,(t=>T.isPureRelation_(t,n)))||2===e.length&&(T.testColumns_(e,1,(t=>T.isEndRelation_(t,n)||T.isPureRelation_(t,n)))||T.testColumns_(e,0,(t=>T.isEndRelation_(t,n,!0)||T.isPureRelation_(t,n)))))&&(t.role=n,!0)}static isEndRelation_(t,e,n){const r=n?t.childNodes.length-1:0;return s.isType(t,"relseq")&&s.isRole(t,e)&&s.isType(t.childNodes[r],"empty")}static isPureRelation_(t,e){return s.isType(t,"relation")&&s.isRole(t,e)}static computeColumns_(t){const e=[];for(let n,r=0;n=t.childNodes[r];r++)for(let t,r=0;t=n.childNodes[r];r++)e[r]?e[r].push(t):e[r]=[t];return e}static testColumns_(t,e,n){const r=t[e];return!!r&&r.some((function(t){return t.childNodes.length&&n(t.childNodes[0])}))&&r.every((function(t){return!t.childNodes.length||n(t.childNodes[0])}))}setNodeFactory(t){T.getInstance().factory_=t,o.updateFactory(T.getInstance().factory_)}getNodeFactory(){return T.getInstance().factory_}identifierNode(t,e,n){if("MathML-Unit"===n)t.type="identifier",t.role="unit";else if(!e&&1===t.textContent.length&&("integer"===t.role||"latinletter"===t.role||"greekletter"===t.role)&&"normal"===t.font)return t.font="italic",o.run("simpleNamedFunction",t);return"unknown"===t.type&&(t.type="identifier"),T.exprFont_(t),o.run("simpleNamedFunction",t)}implicitNode(t){if(t=T.getInstance().getMixedNumbers_(t),1===(t=T.getInstance().combineUnits_(t)).length)return t[0];const e=T.getInstance().implicitNode_(t);return o.run("combine_juxtaposition",e)}text(t,e){return T.exprFont_(t),t.type="text","MS"===e?(t.role="string",t):"MSPACE"===e||t.textContent.match(/^\s*$/)?(t.role="space",t):t}row(t){return 0===(t=t.filter((function(t){return!s.isType(t,"empty")}))).length?T.getInstance().factory_.makeEmptyNode():(t=T.getInstance().getFencesInRow_(t),t=T.getInstance().tablesInRow(t),t=T.getInstance().getPunctuationInRow_(t),t=T.getInstance().getTextInRow_(t),t=T.getInstance().getFunctionsInRow_(t),T.getInstance().relationsInRow_(t))}limitNode(t,e){if(!e.length)return T.getInstance().factory_.makeEmptyNode();let n,r=e[0],i="unknown";if(!e[1])return r;if(s.isLimitBase(r)){n=T.MML_TO_LIMIT_[t];const o=n.length;if(i=n.type,e=e.slice(0,n.length+1),1===o&&s.isAccent(e[1])||2===o&&s.isAccent(e[1])&&s.isAccent(e[2]))return n=T.MML_TO_BOUNDS_[t],T.getInstance().accentNode_(r,e,n.type,n.length,n.accent);if(2===o){if(s.isAccent(e[1]))return r=T.getInstance().accentNode_(r,[r,e[1]],{MSUBSUP:"subscript",MUNDEROVER:"underscore"}[t],1,!0),e[2]?T.getInstance().makeLimitNode_(r,[r,e[2]],null,"limupper"):r;if(e[2]&&s.isAccent(e[2]))return r=T.getInstance().accentNode_(r,[r,e[2]],{MSUBSUP:"superscript",MUNDEROVER:"overscore"}[t],1,!0),T.getInstance().makeLimitNode_(r,[r,e[1]],null,"limlower");e[o]||(i="limlower")}return T.getInstance().makeLimitNode_(r,e,null,i)}return n=T.MML_TO_BOUNDS_[t],T.getInstance().accentNode_(r,e,n.type,n.length,n.accent)}tablesInRow(t){let e=l.partitionNodes(t,s.tableIsMatrixOrVector),n=[];for(let t,r=0;t=e.rel[r];r++)n=n.concat(e.comp.shift()),n.push(T.tableToMatrixOrVector_(t));n=n.concat(e.comp.shift()),e=l.partitionNodes(n,s.isTableOrMultiline),n=[];for(let t,r=0;t=e.rel[r];r++){const r=e.comp.shift();s.tableIsCases(t,r)&&T.tableToCases_(t,r.pop()),n=n.concat(r),n.push(t)}return n.concat(e.comp.shift())}mfenced(t,e,n,r){if(n&&r.length>0){const t=T.nextSeparatorFunction_(n),e=[r.shift()];r.forEach((n=>{e.push(T.getInstance().factory_.makeContentNode(t())),e.push(n)})),r=e}return t&&e?T.getInstance().horizontalFencedNode_(T.getInstance().factory_.makeContentNode(t),T.getInstance().factory_.makeContentNode(e),r):(t&&r.unshift(T.getInstance().factory_.makeContentNode(t)),e&&r.push(T.getInstance().factory_.makeContentNode(e)),T.getInstance().row(r))}fractionLikeNode(t,e,n,r){let i;if(!r&&l.isZeroLength(n)){const n=T.getInstance().factory_.makeBranchNode("line",[t],[]),r=T.getInstance().factory_.makeBranchNode("line",[e],[]);return i=T.getInstance().factory_.makeBranchNode("multiline",[n,r],[]),T.binomialForm_(i),T.classifyMultiline(i),i}return i=T.getInstance().fractionNode_(t,e),r&&i.addAnnotation("general","bevelled"),i}tensor(t,e,n,r,i){const o=T.getInstance().factory_.makeBranchNode("tensor",[t,T.getInstance().scriptNode_(e,"leftsub"),T.getInstance().scriptNode_(n,"leftsuper"),T.getInstance().scriptNode_(r,"rightsub"),T.getInstance().scriptNode_(i,"rightsuper")],[]);return o.role=t.role,o.embellished=s.isEmbellished(t),o}pseudoTensor(t,e,n){const r=t=>!s.isType(t,"empty"),i=e.filter(r).length,o=n.filter(r).length;if(!i&&!o)return t;const a=i?o?"MSUBSUP":"MSUB":"MSUP",l=[t];return i&&l.push(T.getInstance().scriptNode_(e,"rightsub",!0)),o&&l.push(T.getInstance().scriptNode_(n,"rightsuper",!0)),T.getInstance().limitNode(a,l)}font(t){return T.MATHJAX_FONTS[t]||t}proof(t,e,n){if(e.inference||e.axiom||console.log("Noise"),e.axiom){const e=T.getInstance().cleanInference(t.childNodes),r=e.length?T.getInstance().factory_.makeBranchNode("inference",n(e),[]):T.getInstance().factory_.makeEmptyNode();return r.role="axiom",r.mathmlTree=t,r}const r=T.getInstance().inference(t,e,n);return e.proof&&(r.role="proof",r.childNodes[0].role="final"),r}inference(t,e,n){if(e.inferenceRule){const e=T.getInstance().getFormulas(t,[],n);return T.getInstance().factory_.makeBranchNode("inference",[e.conclusion,e.premises],[])}const i=e.labelledRule,o=r.toArray(t.childNodes),a=[];"left"!==i&&"both"!==i||a.push(T.getInstance().getLabel(t,o,n,"left")),"right"!==i&&"both"!==i||a.push(T.getInstance().getLabel(t,o,n,"right"));const s=T.getInstance().getFormulas(t,o,n),l=T.getInstance().factory_.makeBranchNode("inference",[s.conclusion,s.premises],a);return l.mathmlTree=t,l}getLabel(t,e,n,i){const o=T.getInstance().findNestedRow(e,"prooflabel",i),a=T.getInstance().factory_.makeBranchNode("rulelabel",n(r.toArray(o.childNodes)),[]);return a.role=i,a.mathmlTree=o,a}getFormulas(t,e,n){const i=e.length?T.getInstance().findNestedRow(e,"inferenceRule"):t,o="up"===T.getSemantics(i).inferenceRule,a=o?i.childNodes[1]:i.childNodes[0],s=o?i.childNodes[0]:i.childNodes[1],l=a.childNodes[0].childNodes[0],Q=r.toArray(l.childNodes[0].childNodes),c=[];let u=1;for(const t of Q)u%2&&c.push(t.childNodes[0]),u++;const d=n(c),h=n(r.toArray(s.childNodes[0].childNodes))[0],p=T.getInstance().factory_.makeBranchNode("premises",d,[]);p.mathmlTree=l;const m=T.getInstance().factory_.makeBranchNode("conclusion",[h],[]);return m.mathmlTree=s.childNodes[0].childNodes[0],{conclusion:m,premises:p}}findNestedRow(t,e,n){return T.getInstance().findNestedRow_(t,e,0,n)}cleanInference(t){return r.toArray(t).filter((function(t){return"MSPACE"!==r.tagName(t)}))}operatorNode(t){return"unknown"===t.type&&(t.type="operator"),o.run("multioperator",t)}implicitNode_(t){const e=T.getInstance().factory_.makeMultipleContentNodes(t.length-1,i.invisibleTimes());T.matchSpaces_(t,e);const n=T.getInstance().infixNode_(t,e[0]);return n.role="implicit",e.forEach((function(t){t.parent=n})),n.contentNodes=e,n}infixNode_(t,e){const n=T.getInstance().factory_.makeBranchNode("infixop",t,[e],l.getEmbellishedInner(e).textContent);return n.role=e.role,o.run("propagateSimpleFunction",n)}explicitMixed_(t){const e=l.partitionNodes(t,(function(t){return t.textContent===i.invisiblePlus()}));if(!e.rel.length)return t;let n=[];for(let t,r=0;t=e.rel[r];r++){const i=e.comp[r],o=e.comp[r+1],a=i.length-1;if(i[a]&&o[0]&&s.isType(i[a],"number")&&!s.isRole(i[a],"mixed")&&s.isType(o[0],"fraction")){const t=T.getInstance().factory_.makeBranchNode("number",[i[a],o[0]],[]);t.role="mixed",n=n.concat(i.slice(0,a)),n.push(t),o.shift()}else n=n.concat(i),n.push(t)}return n.concat(e.comp[e.comp.length-1])}concatNode_(t,e,n){if(0===e.length)return t;const r=e.map((function(t){return l.getEmbellishedInner(t).textContent})).join(" "),i=T.getInstance().factory_.makeBranchNode(n,[t],e,r);return e.length>1&&(i.role="multiop"),i}prefixNode_(t,e){const n=l.partitionNodes(e,(t=>s.isRole(t,"subtraction")));let r=T.getInstance().concatNode_(t,n.comp.pop(),"prefixop");for(1===r.contentNodes.length&&"addition"===r.contentNodes[0].role&&"+"===r.contentNodes[0].textContent&&(r.role="positive");n.rel.length>0;)r=T.getInstance().concatNode_(r,[n.rel.pop()],"prefixop"),r.role="negative",r=T.getInstance().concatNode_(r,n.comp.pop(),"prefixop");return r}postfixNode_(t,e){return e.length?T.getInstance().concatNode_(t,e,"postfixop"):t}combineUnits_(t){const e=l.partitionNodes(t,(function(t){return!s.isRole(t,"unit")}));if(t.length===e.rel.length)return e.rel;const n=[];let r,i;do{const t=e.comp.shift();r=e.rel.shift();let o=null;i=n.pop(),i&&(t.length&&s.isUnitCounter(i)?t.unshift(i):n.push(i)),1===t.length&&(o=t.pop()),t.length>1&&(o=T.getInstance().implicitNode_(t),o.role="unit"),o&&n.push(o),r&&n.push(r)}while(r);return n}getMixedNumbers_(t){const e=l.partitionNodes(t,(function(t){return s.isType(t,"fraction")&&s.isRole(t,"vulgar")}));if(!e.rel.length)return t;let n=[];for(let t,r=0;t=e.rel[r];r++){const i=e.comp[r],o=i.length-1;if(i[o]&&s.isType(i[o],"number")&&(s.isRole(i[o],"integer")||s.isRole(i[o],"float"))){const e=T.getInstance().factory_.makeBranchNode("number",[i[o],t],[]);e.role="mixed",n=n.concat(i.slice(0,o)),n.push(e)}else n=n.concat(i),n.push(t)}return n.concat(e.comp[e.comp.length-1])}getTextInRow_(t){if(t.length<=1)return t;const e=l.partitionNodes(t,(t=>s.isType(t,"text")));if(0===e.rel.length)return t;const n=[];let r=e.comp[0];r.length>0&&n.push(T.getInstance().row(r));for(let t,i=0;t=e.rel[i];i++)n.push(t),r=e.comp[i+1],r.length>0&&n.push(T.getInstance().row(r));return[T.getInstance().dummyNode_(n)]}relationsInRow_(t){const e=l.partitionNodes(t,s.isRelation),n=e.rel[0];if(!n)return T.getInstance().operationsInRow_(t);if(1===t.length)return t[0];const r=e.comp.map(T.getInstance().operationsInRow_);let i;return e.rel.some((function(t){return!t.equals(n)}))?(i=T.getInstance().factory_.makeBranchNode("multirel",r,e.rel),e.rel.every((function(t){return t.role===n.role}))&&(i.role=n.role),i):(i=T.getInstance().factory_.makeBranchNode("relseq",r,e.rel,l.getEmbellishedInner(n).textContent),i.role=n.role,i)}operationsInRow_(t){if(0===t.length)return T.getInstance().factory_.makeEmptyNode();if(1===(t=T.getInstance().explicitMixed_(t)).length)return t[0];const e=[];for(;t.length>0&&s.isOperator(t[0]);)e.push(t.shift());if(0===t.length)return T.getInstance().prefixNode_(e.pop(),e);if(1===t.length)return T.getInstance().prefixNode_(t[0],e);t=o.run("convert_juxtaposition",t);const n=l.sliceNodes(t,s.isOperator),r=T.getInstance().prefixNode_(T.getInstance().implicitNode(n.head),e);return n.div?T.getInstance().operationsTree_(n.tail,r,n.div):r}operationsTree_(t,e,n,r){const i=r||[];if(0===t.length){if(i.unshift(n),"infixop"===e.type){const t=T.getInstance().postfixNode_(e.childNodes.pop(),i);return e.appendChild(t),e}return T.getInstance().postfixNode_(e,i)}const o=l.sliceNodes(t,s.isOperator);if(0===o.head.length)return i.push(o.div),T.getInstance().operationsTree_(o.tail,e,n,i);const a=T.getInstance().prefixNode_(T.getInstance().implicitNode(o.head),i),Q=T.getInstance().appendOperand_(e,n,a);return o.div?T.getInstance().operationsTree_(o.tail,Q,o.div,[]):Q}appendOperand_(t,e,n){return"infixop"!==t.type?T.getInstance().infixNode_([t,n],e):T.getInstance().appendDivisionOp_(t,e,n)||(T.getInstance().appendExistingOperator_(t,e,n)?t:"multiplication"===e.role?T.getInstance().appendMultiplicativeOp_(t,e,n):T.getInstance().appendAdditiveOp_(t,e,n))}appendDivisionOp_(t,e,n){return"division"===e.role?s.isImplicit(t)?T.getInstance().infixNode_([t,n],e):T.getInstance().appendLastOperand_(t,e,n):"division"===t.role?T.getInstance().infixNode_([t,n],e):null}appendLastOperand_(t,e,n){let r=t,i=t.childNodes[t.childNodes.length-1];for(;i&&"infixop"===i.type&&!s.isImplicit(i);)r=i,i=r.childNodes[t.childNodes.length-1];const o=T.getInstance().infixNode_([r.childNodes.pop(),n],e);return r.appendChild(o),t}appendMultiplicativeOp_(t,e,n){if(s.isImplicit(t))return T.getInstance().infixNode_([t,n],e);let r=t,i=t.childNodes[t.childNodes.length-1];for(;i&&"infixop"===i.type&&!s.isImplicit(i);)r=i,i=r.childNodes[t.childNodes.length-1];const o=T.getInstance().infixNode_([r.childNodes.pop(),n],e);return r.appendChild(o),t}appendAdditiveOp_(t,e,n){return T.getInstance().infixNode_([t,n],e)}appendExistingOperator_(t,e,n){return!(!t||"infixop"!==t.type||s.isImplicit(t))&&(t.contentNodes[0].equals(e)?(t.appendContentNode(e),t.appendChild(n),!0):T.getInstance().appendExistingOperator_(t.childNodes[t.childNodes.length-1],e,n))}getFencesInRow_(t){let e=l.partitionNodes(t,s.isFence);e=T.purgeFences_(e);const n=e.comp.shift();return T.getInstance().fences_(e.rel,e.comp,[],[n])}fences_(t,e,n,r){if(0===t.length&&0===n.length)return r[0];const i=t=>s.isRole(t,"open");if(0===t.length){const t=r.shift();for(;n.length>0;){if(i(n[0])){const e=n.shift();T.fenceToPunct_(e),t.push(e)}else{const e=l.sliceNodes(n,i),o=e.head.length-1,a=T.getInstance().neutralFences_(e.head,r.slice(0,o));r=r.slice(o),t.push(...a),e.div&&e.tail.unshift(e.div),n=e.tail}t.push(...r.shift())}return t}const o=n[n.length-1],a=t[0].role;if("open"===a||s.isNeutralFence(t[0])&&(!o||!s.compareNeutralFences(t[0],o))){n.push(t.shift());const i=e.shift();return i&&r.push(i),T.getInstance().fences_(t,e,n,r)}if(o&&"close"===a&&"open"===o.role){const i=T.getInstance().horizontalFencedNode_(n.pop(),t.shift(),r.pop());return r.push(r.pop().concat([i],e.shift())),T.getInstance().fences_(t,e,n,r)}if(o&&s.compareNeutralFences(t[0],o)){if(!s.elligibleLeftNeutral(o)||!s.elligibleRightNeutral(t[0])){n.push(t.shift());const i=e.shift();return i&&r.push(i),T.getInstance().fences_(t,e,n,r)}const i=T.getInstance().horizontalFencedNode_(n.pop(),t.shift(),r.pop());return r.push(r.pop().concat([i],e.shift())),T.getInstance().fences_(t,e,n,r)}if(o&&"close"===a&&s.isNeutralFence(o)&&n.some(i)){const o=l.sliceNodes(n,i,!0),a=r.pop(),s=r.length-o.tail.length+1,Q=T.getInstance().neutralFences_(o.tail,r.slice(s));r=r.slice(0,s);const c=T.getInstance().horizontalFencedNode_(o.div,t.shift(),r.pop().concat(Q,a));return r.push(r.pop().concat([c],e.shift())),T.getInstance().fences_(t,e,o.head,r)}const Q=t.shift();return T.fenceToPunct_(Q),r.push(r.pop().concat([Q],e.shift())),T.getInstance().fences_(t,e,n,r)}neutralFences_(t,e){if(0===t.length)return t;if(1===t.length)return T.fenceToPunct_(t[0]),t;const n=t.shift();if(!s.elligibleLeftNeutral(n)){T.fenceToPunct_(n);const r=e.shift();return r.unshift(n),r.concat(T.getInstance().neutralFences_(t,e))}const r=l.sliceNodes(t,(function(t){return s.compareNeutralFences(t,n)}));if(!r.div){T.fenceToPunct_(n);const r=e.shift();return r.unshift(n),r.concat(T.getInstance().neutralFences_(t,e))}if(!s.elligibleRightNeutral(r.div))return T.fenceToPunct_(r.div),t.unshift(n),T.getInstance().neutralFences_(t,e);const i=T.getInstance().combineFencedContent_(n,r.div,r.head,e);if(r.tail.length>0){const t=i.shift(),e=T.getInstance().neutralFences_(r.tail,i);return t.concat(e)}return i[0]}combineFencedContent_(t,e,n,r){if(0===n.length){const n=T.getInstance().horizontalFencedNode_(t,e,r.shift());return r.length>0?r[0].unshift(n):r=[[n]],r}const i=r.shift(),o=n.length-1,a=r.slice(0,o),s=(r=r.slice(o)).shift(),l=T.getInstance().neutralFences_(n,a);i.push(...l),i.push(...s);const Q=T.getInstance().horizontalFencedNode_(t,e,i);return r.length>0?r[0].unshift(Q):r=[[Q]],r}horizontalFencedNode_(t,e,n){const r=T.getInstance().row(n);let i=T.getInstance().factory_.makeBranchNode("fenced",[r],[t,e]);return"open"===t.role?(T.getInstance().classifyHorizontalFence_(i),i=o.run("propagateComposedFunction",i)):i.role=t.role,i=o.run("detect_cycle",i),T.rewriteFencedNode_(i)}classifyHorizontalFence_(t){t.role="leftright";const e=t.childNodes;if(!s.isSetNode(t)||e.length>1)return;if(0===e.length||"empty"===e[0].type)return void(t.role="set empty");const n=e[0].type;if(1===e.length&&s.isSingletonSetContent(e[0]))return void(t.role="set singleton");const r=e[0].role;if("punctuated"===n&&"sequence"===r){if("comma"!==e[0].contentNodes[0].role)return 1!==e[0].contentNodes.length||"vbar"!==e[0].contentNodes[0].role&&"colon"!==e[0].contentNodes[0].role?void 0:(t.role="set extended",void T.getInstance().setExtension_(t));t.role="set collection"}}setExtension_(t){const e=t.childNodes[0].childNodes[0];e&&"infixop"===e.type&&1===e.contentNodes.length&&s.isMembership(e.contentNodes[0])&&(e.addAnnotation("set","intensional"),e.contentNodes[0].addAnnotation("set","intensional"))}getPunctuationInRow_(t){if(t.length<=1)return t;const e=t=>{const e=t.type;return"punctuation"===e||"text"===e||"operator"===e||"relation"===e},n=l.partitionNodes(t,(function(n){if(!s.isPunctuation(n))return!1;if(s.isPunctuation(n)&&!s.isRole(n,"ellipsis"))return!0;const r=t.indexOf(n);if(0===r)return!t[1]||!e(t[1]);const i=t[r-1];if(r===t.length-1)return!e(i);const o=t[r+1];return!e(i)||!e(o)}));if(0===n.rel.length)return t;const r=[];let i=n.comp.shift();i.length>0&&r.push(T.getInstance().row(i));let o=0;for(;n.comp.length>0;)r.push(n.rel[o++]),i=n.comp.shift(),i.length>0&&r.push(T.getInstance().row(i));return[T.getInstance().punctuatedNode_(r,n.rel)]}punctuatedNode_(t,e){const n=T.getInstance().factory_.makeBranchNode("punctuated",t,e);if(e.length===t.length){const t=e[0].role;if("unknown"!==t&&e.every((function(e){return e.role===t})))return n.role=t,n}return s.singlePunctAtPosition(t,e,0)?n.role="startpunct":s.singlePunctAtPosition(t,e,t.length-1)?n.role="endpunct":e.every((t=>s.isRole(t,"dummy")))?n.role="text":e.every((t=>s.isRole(t,"space")))?n.role="space":n.role="sequence",n}dummyNode_(t){const e=T.getInstance().factory_.makeMultipleContentNodes(t.length-1,i.invisibleComma());return e.forEach((function(t){t.role="dummy"})),T.getInstance().punctuatedNode_(t,e)}accentRole_(t,e){if(!s.isAccent(t))return!1;const n=t.textContent,r=i.lookupSecondary("bar",n)||i.lookupSecondary("tilde",n)||t.role;return t.role="underscore"===e?"underaccent":"overaccent",t.addAnnotation("accent",r),!0}accentNode_(t,e,n,r,i){const o=(e=e.slice(0,r+1))[1],a=e[2];let s;if(!i&&a&&(s=T.getInstance().factory_.makeBranchNode("subscript",[t,o],[]),s.role="subsup",e=[s,a],n="superscript"),i){const r=T.getInstance().accentRole_(o,n);a&&(T.getInstance().accentRole_(a,"overscore")&&!r?(s=T.getInstance().factory_.makeBranchNode("overscore",[t,a],[]),e=[s,o],n="underscore"):(s=T.getInstance().factory_.makeBranchNode("underscore",[t,o],[]),e=[s,a],n="overscore"),s.role="underover")}return T.getInstance().makeLimitNode_(t,e,s,n)}makeLimitNode_(t,e,n,r){if("limupper"===r&&"limlower"===t.type)return t.childNodes.push(e[1]),e[1].parent=t,t.type="limboth",t;if("limlower"===r&&"limupper"===t.type)return t.childNodes.splice(1,-1,e[1]),e[1].parent=t,t.type="limboth",t;const i=T.getInstance().factory_.makeBranchNode(r,e,[]),o=s.isEmbellished(t);return n&&(n.embellished=o),i.embellished=o,i.role=t.role,i}getFunctionsInRow_(t,e){const n=e||[];if(0===t.length)return n;const r=t.shift(),i=T.classifyFunction_(r,t);if(!i)return n.push(r),T.getInstance().getFunctionsInRow_(t,n);const o=T.getInstance().getFunctionsInRow_(t,[]),a=T.getInstance().getFunctionArgs_(r,o,i);return n.concat(a)}getFunctionArgs_(t,e,n){let r,i,o;switch(n){case"integral":{const n=T.getInstance().getIntegralArgs_(e);if(!n.intvar&&!n.integrand.length)return n.rest.unshift(t),n.rest;const r=T.getInstance().row(n.integrand);return o=T.getInstance().integralNode_(t,r,n.intvar),n.rest.unshift(o),n.rest}case"prefix":if(e[0]&&"fenced"===e[0].type){const n=e.shift();return s.isNeutralFence(n)||(n.role="leftright"),o=T.getInstance().functionNode_(t,n),e.unshift(o),e}if(r=l.sliceNodes(e,s.isPrefixFunctionBoundary),r.head.length)i=T.getInstance().row(r.head),r.div&&r.tail.unshift(r.div);else{if(!r.div||!s.isType(r.div,"appl"))return e.unshift(t),e;i=r.div}return o=T.getInstance().functionNode_(t,i),r.tail.unshift(o),r.tail;case"bigop":return r=l.sliceNodes(e,s.isBigOpBoundary),r.head.length?(i=T.getInstance().row(r.head),o=T.getInstance().bigOpNode_(t,i),r.div&&r.tail.unshift(r.div),r.tail.unshift(o),r.tail):(e.unshift(t),e);default:{if(0===e.length)return[t];const n=e[0];return"fenced"===n.type&&!s.isNeutralFence(n)&&s.isSimpleFunctionScope(n)?(n.role="leftright",T.propagateFunctionRole_(t,"simple function"),o=T.getInstance().functionNode_(t,e.shift()),e.unshift(o),e):(e.unshift(t),e)}}}getIntegralArgs_(t,e=[]){if(0===t.length)return{integrand:e,intvar:null,rest:t};const n=t[0];if(s.isGeneralFunctionBoundary(n))return{integrand:e,intvar:null,rest:t};if(s.isIntegralDxBoundarySingle(n))return n.role="integral",{integrand:e,intvar:n,rest:t.slice(1)};if(t[1]&&s.isIntegralDxBoundary(n,t[1])){const r=T.getInstance().prefixNode_(t[1],[n]);return r.role="integral",{integrand:e,intvar:r,rest:t.slice(2)}}return e.push(t.shift()),T.getInstance().getIntegralArgs_(t,e)}functionNode_(t,e){const n=T.getInstance().factory_.makeContentNode(i.functionApplication()),r=T.getInstance().funcAppls[t.id];r&&(n.mathmlTree=r.mathmlTree,n.mathml=r.mathml,n.annotation=r.annotation,n.attributes=r.attributes,delete T.getInstance().funcAppls[t.id]),n.type="punctuation",n.role="application";const o=T.getFunctionOp_(t,(function(t){return s.isType(t,"function")||s.isType(t,"identifier")&&s.isRole(t,"simple function")}));return T.getInstance().functionalNode_("appl",[t,e],o,[n])}bigOpNode_(t,e){const n=T.getFunctionOp_(t,(t=>s.isType(t,"largeop")));return T.getInstance().functionalNode_("bigop",[t,e],n,[])}integralNode_(t,e,n){e=e||T.getInstance().factory_.makeEmptyNode(),n=n||T.getInstance().factory_.makeEmptyNode();const r=T.getFunctionOp_(t,(t=>s.isType(t,"largeop")));return T.getInstance().functionalNode_("integral",[t,e,n],r,[])}functionalNode_(t,e,n,r){const i=e[0];let o;n&&(o=n.parent,r.push(n));const a=T.getInstance().factory_.makeBranchNode(t,e,r);return a.role=i.role,o&&(n.parent=o),a}fractionNode_(t,e){const n=T.getInstance().factory_.makeBranchNode("fraction",[t,e],[]);return n.role=n.childNodes.every((function(t){return s.isType(t,"number")&&s.isRole(t,"integer")}))?"vulgar":n.childNodes.every(s.isPureUnit)?"unit":"division",o.run("propagateSimpleFunction",n)}scriptNode_(t,e,n){let r;switch(t.length){case 0:r=T.getInstance().factory_.makeEmptyNode();break;case 1:if(r=t[0],n)return r;break;default:r=T.getInstance().dummyNode_(t)}return r.role=e,r}findNestedRow_(t,e,n,i){if(n>3)return null;for(let o,a=0;o=t[a];a++){const t=r.tagName(o);if("MSPACE"!==t){if("MROW"===t)return T.getInstance().findNestedRow_(r.toArray(o.childNodes),e,n+1,i);if(T.findSemantics(o,e,i))return o}}return null}}e.default=T,T.FENCE_TO_PUNCT_={metric:"metric",neutral:"vbar",open:"openfence",close:"closefence"},T.MML_TO_LIMIT_={MSUB:{type:"limlower",length:1},MUNDER:{type:"limlower",length:1},MSUP:{type:"limupper",length:1},MOVER:{type:"limupper",length:1},MSUBSUP:{type:"limboth",length:2},MUNDEROVER:{type:"limboth",length:2}},T.MML_TO_BOUNDS_={MSUB:{type:"subscript",length:1,accent:!1},MSUP:{type:"superscript",length:1,accent:!1},MSUBSUP:{type:"subscript",length:2,accent:!1},MUNDER:{type:"underscore",length:1,accent:!0},MOVER:{type:"overscore",length:1,accent:!0},MUNDEROVER:{type:"underscore",length:2,accent:!0}},T.CLASSIFY_FUNCTION_={integral:"integral",sum:"bigop","prefix function":"prefix","limit function":"prefix","simple function":"prefix","composed function":"prefix"},T.MATHJAX_FONTS={"-tex-caligraphic":"caligraphic","-tex-caligraphic-bold":"caligraphic-bold","-tex-calligraphic":"caligraphic","-tex-calligraphic-bold":"caligraphic-bold","-tex-oldstyle":"oldstyle","-tex-oldstyle-bold":"oldstyle-bold","-tex-mathit":"italic"}},5594:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticSkeleton=void 0;const r=n(4422),i=n(1746),o=n(7206);class a{constructor(t){this.parents=null,this.levelsMap=null,t=0===t?t:t||[],this.array=t}static fromTree(t){return a.fromNode(t.root)}static fromNode(t){return new a(a.fromNode_(t))}static fromString(t){return new a(a.fromString_(t))}static simpleCollapseStructure(t){return"number"==typeof t}static contentCollapseStructure(t){return!!t&&!a.simpleCollapseStructure(t)&&"c"===t[0]}static interleaveIds(t,e){return r.interleaveLists(a.collapsedLeafs(t),a.collapsedLeafs(e))}static collapsedLeafs(...t){return t.reduce(((t,e)=>{return t.concat((n=e,a.simpleCollapseStructure(n)?[n]:a.contentCollapseStructure(n[1])?n.slice(2):n.slice(1)));var n}),[])}static fromStructure(t,e){return new a(a.tree_(t,e.root))}static combineContentChildren(t,e,n){switch(t.type){case"relseq":case"infixop":case"multirel":return r.interleaveLists(n,e);case"prefixop":return e.concat(n);case"postfixop":return n.concat(e);case"fenced":return n.unshift(e[0]),n.push(e[1]),n;case"appl":return[n[0],e[0],n[1]];case"root":return[n[1],n[0]];case"row":case"line":return e.length&&n.unshift(e[0]),n;default:return n}}static makeSexp_(t){return a.simpleCollapseStructure(t)?t.toString():a.contentCollapseStructure(t)?"(c "+t.slice(1).map(a.makeSexp_).join(" ")+")":"("+t.map(a.makeSexp_).join(" ")+")"}static fromString_(t){let e=t.replace(/\(/g,"[");return e=e.replace(/\)/g,"]"),e=e.replace(/ /g,","),e=e.replace(/c/g,'"c"'),JSON.parse(e)}static fromNode_(t){if(!t)return[];const e=t.contentNodes;let n;e.length&&(n=e.map(a.fromNode_),n.unshift("c"));const r=t.childNodes;if(!r.length)return e.length?[t.id,n]:t.id;const i=r.map(a.fromNode_);return e.length&&i.unshift(n),i.unshift(t.id),i}static tree_(t,e){if(!e)return[];if(!e.childNodes.length)return e.id;const n=e.id,r=[n],s=i.evalXPath(`.//self::*[@${o.Attribute.ID}=${n}]`,t)[0],l=a.combineContentChildren(e,e.contentNodes.map((function(t){return t})),e.childNodes.map((function(t){return t})));s&&a.addOwns_(s,l);for(let e,n=0;e=l[n];n++)r.push(a.tree_(t,e));return r}static addOwns_(t,e){const n=t.getAttribute(o.Attribute.COLLAPSED),r=n?a.realLeafs_(a.fromString(n).array):e.map((t=>t.id));t.setAttribute(o.Attribute.OWNS,r.join(" "))}static realLeafs_(t){if(a.simpleCollapseStructure(t))return[t];if(a.contentCollapseStructure(t))return[];let e=[];for(let n=1;n<t.length;n++)e=e.concat(a.realLeafs_(t[n]));return e}populate(){this.parents&&this.levelsMap||(this.parents={},this.levelsMap={},this.populate_(this.array,this.array,[]))}toString(){return a.makeSexp_(this.array)}populate_(t,e,n){if(a.simpleCollapseStructure(t))return this.levelsMap[t]=e,void(this.parents[t]=t===n[0]?n.slice(1):n);const r=a.contentCollapseStructure(t)?t.slice(1):t,i=[r[0]].concat(n);for(let e=0,n=r.length;e<n;e++){const n=r[e];this.populate_(n,t,i)}}isRoot(t){return t===this.levelsMap[t][0]}directChildren(t){return this.isRoot(t)?this.levelsMap[t].slice(1).map((t=>a.simpleCollapseStructure(t)?t:a.contentCollapseStructure(t)?t[1]:t[0])):[]}subtreeNodes(t){if(!this.isRoot(t))return[];const e=(t,n)=>{a.simpleCollapseStructure(t)?n.push(t):(a.contentCollapseStructure(t)&&(t=t.slice(1)),t.forEach((t=>e(t,n))))},n=this.levelsMap[t],r=[];return e(n.slice(1),r),r}}e.SemanticSkeleton=a},1250:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticTree=void 0;const r=n(7041),i=n(8770),o=n(5707),a=n(7670),s=n(7603),l=n(5741);n(5044);class T{constructor(t){this.mathml=t,this.parser=new a.SemanticMathml,this.root=this.parser.parse(t),this.collator=this.parser.getFactory().leafMap.collateMeaning();const e=this.collator.newDefault();e&&(this.parser=new a.SemanticMathml,this.parser.getFactory().defaultMap=e,this.root=this.parser.parse(t)),Q.visit(this.root,{}),(0,i.annotate)(this.root)}static empty(){const t=r.parseInput("<math/>"),e=new T(t);return e.mathml=t,e}static fromNode(t,e){const n=T.empty();return n.root=t,e&&(n.mathml=e),n}static fromRoot(t,e){let n=t;for(;n.parent;)n=n.parent;const r=T.fromNode(n);return e&&(r.mathml=e),r}static fromXml(t){const e=T.empty();return t.childNodes[0]&&(e.root=s.SemanticNode.fromXml(t.childNodes[0])),e}xml(t){const e=r.parseInput("<stree></stree>"),n=this.root.xml(e.ownerDocument,t);return e.appendChild(n),e}toString(t){return r.serializeXml(this.xml(t))}formatXml(t){const e=this.toString(t);return r.formatXml(e)}displayTree(){this.root.displayTree()}replaceNode(t,e){const n=t.parent;n?n.replaceChild(t,e):this.root=e}toJson(){const t={};return t.stree=this.root.toJson(),t}}e.SemanticTree=T;const Q=new o.SemanticVisitor("general","unit",((t,e)=>{if("infixop"===t.type&&("multiplication"===t.role||"implicit"===t.role)){const e=t.childNodes;e.length&&(l.isPureUnit(e[0])||l.isUnitCounter(e[0]))&&t.childNodes.slice(1).every(l.isPureUnit)&&(t.role="unit")}return!1}))},8478:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.partitionNodes=e.sliceNodes=e.getEmbellishedInner=e.addAttributes=e.isZeroLength=e.purgeNodes=e.isOrphanedGlyph=e.hasDisplayTag=e.hasEmptyTag=e.hasIgnoreTag=e.hasLeafTag=e.hasMathTag=e.directSpeechKeys=e.DISPLAYTAGS=e.EMPTYTAGS=e.IGNORETAGS=e.LEAFTAGS=void 0;const r=n(7041);function i(t){return!!t&&-1!==e.LEAFTAGS.indexOf(r.tagName(t))}function o(t,e,n){n&&t.reverse();const r=[];for(let i,o=0;i=t[o];o++){if(e(i))return n?{head:t.slice(o+1).reverse(),div:i,tail:r.reverse()}:{head:r,div:i,tail:t.slice(o+1)};r.push(i)}return n?{head:[],div:null,tail:r.reverse()}:{head:r,div:null,tail:[]}}e.LEAFTAGS=["MO","MI","MN","MTEXT","MS","MSPACE"],e.IGNORETAGS=["MERROR","MPHANTOM","MALIGNGROUP","MALIGNMARK","MPRESCRIPTS","ANNOTATION","ANNOTATION-XML"],e.EMPTYTAGS=["MATH","MROW","MPADDED","MACTION","NONE","MSTYLE","SEMANTICS"],e.DISPLAYTAGS=["MROOT","MSQRT"],e.directSpeechKeys=["aria-label","exact-speech","alt"],e.hasMathTag=function(t){return!!t&&"MATH"===r.tagName(t)},e.hasLeafTag=i,e.hasIgnoreTag=function(t){return!!t&&-1!==e.IGNORETAGS.indexOf(r.tagName(t))},e.hasEmptyTag=function(t){return!!t&&-1!==e.EMPTYTAGS.indexOf(r.tagName(t))},e.hasDisplayTag=function(t){return!!t&&-1!==e.DISPLAYTAGS.indexOf(r.tagName(t))},e.isOrphanedGlyph=function(t){return!!t&&"MGLYPH"===r.tagName(t)&&!i(t.parentNode)},e.purgeNodes=function(t){const n=[];for(let i,o=0;i=t[o];o++){if(i.nodeType!==r.NodeType.ELEMENT_NODE)continue;const t=r.tagName(i);-1===e.IGNORETAGS.indexOf(t)&&(-1!==e.EMPTYTAGS.indexOf(t)&&0===i.childNodes.length||n.push(i))}return n},e.isZeroLength=function(t){if(!t)return!1;if(-1!==["negativeveryverythinmathspace","negativeverythinmathspace","negativethinmathspace","negativemediummathspace","negativethickmathspace","negativeverythickmathspace","negativeveryverythickmathspace"].indexOf(t))return!0;const e=t.match(/[0-9.]+/);return!!e&&0===parseFloat(e[0])},e.addAttributes=function(t,n){if(n.hasAttributes()){const r=n.attributes;for(let n=r.length-1;n>=0;n--){const i=r[n].name;i.match(/^ext/)&&(t.attributes[i]=r[n].value,t.nobreaking=!0),-1!==e.directSpeechKeys.indexOf(i)&&(t.attributes["ext-speech"]=r[n].value,t.nobreaking=!0),i.match(/texclass$/)&&(t.attributes.texclass=r[n].value),"href"===i&&(t.attributes.href=r[n].value,t.nobreaking=!0)}}},e.getEmbellishedInner=function t(e){return e&&e.embellished&&e.childNodes.length>0?t(e.childNodes[0]):e},e.sliceNodes=o,e.partitionNodes=function(t,e){let n=t;const r=[],i=[];let a=null;do{a=o(n,e),i.push(a.head),r.push(a.div),n=a.tail}while(a.div);return r.pop(),{rel:r,comp:i}}},4921:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractSpeechGenerator=void 0;const r=n(317),i=n(7206),o=n(154),a=n(2421);e.AbstractSpeechGenerator=class{constructor(){this.modality=i.addPrefix("speech"),this.rebuilt_=null,this.options_={}}getRebuilt(){return this.rebuilt_}setRebuilt(t){this.rebuilt_=t}setOptions(t){this.options_=t||{},this.modality=i.addPrefix(this.options_.modality||"speech")}getOptions(){return this.options_}start(){}end(){}generateSpeech(t,e){return this.rebuilt_||(this.rebuilt_=new o.RebuildStree(e)),(0,r.setup)(this.options_),a.computeMarkup(this.getRebuilt().xml)}}},6405:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AdhocSpeechGenerator=void 0;const r=n(4921);class i extends r.AbstractSpeechGenerator{getSpeech(t,e){const n=this.generateSpeech(t,e);return t.setAttribute(this.modality,n),n}}e.AdhocSpeechGenerator=i},9603:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ColorGenerator=void 0;const r=n(7206),i=n(4881),o=n(154),a=n(3294),s=n(4921);class l extends s.AbstractSpeechGenerator{constructor(){super(...arguments),this.modality=(0,r.addPrefix)("foreground"),this.contrast=new i.ContrastPicker}static visitStree_(t,e,n){if(t.childNodes.length){if(t.contentNodes.length&&("punctuated"===t.type&&t.contentNodes.forEach((t=>n[t.id]=!0)),"implicit"!==t.role&&e.push(t.contentNodes.map((t=>t.id)))),t.childNodes.length){if("implicit"===t.role){const r=[];let i=[];for(const e of t.childNodes){const t=[];l.visitStree_(e,t,n),t.length<=2&&r.push(t.shift()),i=i.concat(t)}return e.push(r),void i.forEach((t=>e.push(t)))}t.childNodes.forEach((t=>l.visitStree_(t,e,n)))}}else n[t.id]||e.push(t.id)}getSpeech(t,e){return a.getAttribute(t,this.modality)}generateSpeech(t,e){return this.getRebuilt()||this.setRebuilt(new o.RebuildStree(t)),this.colorLeaves_(t),a.getAttribute(t,this.modality)}colorLeaves_(t){const e=[];l.visitStree_(this.getRebuilt().streeRoot,e,{});for(const n of e){const e=this.contrast.generate();let r=!1;r=Array.isArray(n)?n.map((n=>this.colorLeave_(t,n,e))).reduce(((t,e)=>t||e),!1):this.colorLeave_(t,n.toString(),e),r&&this.contrast.increment()}}colorLeave_(t,e,n){const r=a.getBySemanticId(t,e);return!!r&&(r.setAttribute(this.modality,n),!0)}}e.ColorGenerator=l},4489:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DirectSpeechGenerator=void 0;const r=n(3294),i=n(4921);class o extends i.AbstractSpeechGenerator{getSpeech(t,e){return r.getAttribute(t,this.modality)}}e.DirectSpeechGenerator=o},8712:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DummySpeechGenerator=void 0;const r=n(4921);class i extends r.AbstractSpeechGenerator{getSpeech(t,e){return""}}e.DummySpeechGenerator=i},7072:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.NodeSpeechGenerator=void 0;const r=n(3294),i=n(8691);class o extends i.TreeSpeechGenerator{getSpeech(t,e){return super.getSpeech(t,e),r.getAttribute(t,this.modality)}}e.NodeSpeechGenerator=o},4493:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.generatorMapping_=e.generator=void 0;const r=n(6405),i=n(9603),o=n(4489),a=n(8712),s=n(7072),l=n(7282),T=n(8691);e.generator=function(t){return(e.generatorMapping_[t]||e.generatorMapping_.Direct)()},e.generatorMapping_={Adhoc:()=>new r.AdhocSpeechGenerator,Color:()=>new i.ColorGenerator,Direct:()=>new o.DirectSpeechGenerator,Dummy:()=>new a.DummySpeechGenerator,Node:()=>new s.NodeSpeechGenerator,Summary:()=>new l.SummarySpeechGenerator,Tree:()=>new T.TreeSpeechGenerator}},2421:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.computeSummary_=e.retrieveSummary=e.connectAllMactions=e.connectMactions=e.nodeAtPosition_=e.computePrefix_=e.retrievePrefix=e.addPrefix=e.addModality=e.addSpeech=e.recomputeMarkup=e.computeMarkup=e.recomputeSpeech=e.computeSpeech=void 0;const r=n(840),i=n(7041),o=n(1746),a=n(7206),s=n(5124),l=n(1250),T=n(3294);function Q(t){return s.SpeechRuleEngine.getInstance().evaluateNode(t)}function c(t){return Q(l.SemanticTree.fromNode(t).xml())}function u(t){const e=c(t);return r.markup(e)}function d(t){const e=h(t);return r.markup(e)}function h(t){const e=l.SemanticTree.fromRoot(t),n=o.evalXPath('.//*[@id="'+t.id+'"]',e.xml());let r=n[0];return n.length>1&&(r=p(t,n)||r),r?s.SpeechRuleEngine.getInstance().runInSetting({modality:"prefix",domain:"default",style:"default",strict:!0,speech:!0},(function(){return s.SpeechRuleEngine.getInstance().evaluateNode(r)})):[]}function p(t,e){const n=e[0];if(!t.parent)return n;const r=[];for(;t;)r.push(t.id),t=t.parent;const i=function(t,e){for(;e.length&&e.shift().toString()===t.getAttribute("id")&&t.parentNode&&t.parentNode.parentNode;)t=t.parentNode.parentNode;return!e.length};for(let t,n=0;t=e[n];n++)if(i(t,r.slice()))return t;return n}function m(t){return t?s.SpeechRuleEngine.getInstance().runInSetting({modality:"summary",strict:!1,speech:!0},(function(){return s.SpeechRuleEngine.getInstance().evaluateNode(t)})):[]}e.computeSpeech=Q,e.recomputeSpeech=c,e.computeMarkup=function(t){const e=Q(t);return r.markup(e)},e.recomputeMarkup=u,e.addSpeech=function(t,e,n){const o=i.querySelectorAllByAttrValue(n,"id",e.id.toString())[0],s=o?r.markup(Q(o)):u(e);t.setAttribute(a.Attribute.SPEECH,s)},e.addModality=function(t,e,n){const r=u(e);t.setAttribute(n,r)},e.addPrefix=function(t,e){const n=d(e);n&&t.setAttribute(a.Attribute.PREFIX,n)},e.retrievePrefix=d,e.computePrefix_=h,e.nodeAtPosition_=p,e.connectMactions=function(t,e,n){const r=i.querySelectorAll(e,"maction");for(let e,o=0;e=r[o];o++){const r=e.getAttribute("id"),o=i.querySelectorAllByAttrValue(t,"id",r)[0];if(!o)continue;const s=e.childNodes[1],l=s.getAttribute(a.Attribute.ID);let Q=T.getBySemanticId(t,l);if(Q&&"dummy"!==Q.getAttribute(a.Attribute.TYPE))continue;if(Q=o.childNodes[0],Q.getAttribute("sre-highlighter-added"))continue;const c=s.getAttribute(a.Attribute.PARENT);c&&Q.setAttribute(a.Attribute.PARENT,c),Q.setAttribute(a.Attribute.TYPE,"dummy"),Q.setAttribute(a.Attribute.ID,l),i.querySelectorAllByAttrValue(n,"id",l)[0].setAttribute("alternative",l)}},e.connectAllMactions=function(t,e){const n=i.querySelectorAll(t,"maction");for(let t,r=0;t=n[r];r++){const n=t.childNodes[1].getAttribute(a.Attribute.ID);i.querySelectorAllByAttrValue(e,"id",n)[0].setAttribute("alternative",n)}},e.retrieveSummary=function(t){const e=m(t);return r.markup(e)},e.computeSummary_=m},7282:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SummarySpeechGenerator=void 0;const r=n(4921),i=n(2421);class o extends r.AbstractSpeechGenerator{getSpeech(t,e){return i.connectAllMactions(e,this.getRebuilt().xml),this.generateSpeech(t,e)}}e.SummarySpeechGenerator=o},8691:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TreeSpeechGenerator=void 0;const r=n(7206),i=n(3294),o=n(4921),a=n(2421);class s extends o.AbstractSpeechGenerator{getSpeech(t,e){const n=this.generateSpeech(t,e),o=this.getRebuilt().nodeDict;for(const n in o){const s=o[n],l=i.getBySemanticId(e,n),T=i.getBySemanticId(t,n);l&&T&&(this.modality&&this.modality!==r.Attribute.SPEECH?a.addModality(T,s,this.modality):a.addSpeech(T,s,this.getRebuilt().xml),this.modality===r.Attribute.SPEECH&&a.addPrefix(T,s))}return n}}e.TreeSpeechGenerator=s},7792:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.INTERVALS=e.makeLetter=e.numberRules=e.alphabetRules=e.getFont=e.makeInterval=e.generate=e.makeDomains_=e.Domains_=e.Base=e.Embellish=e.Font=void 0;const r=n(3684),i=n(2420),o=n(3826),a=n(5681),s=n(8844);var l,T,Q;function c(){const t=o.LOCALE.ALPHABETS,n=(t,e)=>{const n={};return Object.keys(t).forEach((t=>n[t]=!0)),Object.keys(e).forEach((t=>n[t]=!0)),Object.keys(n)};e.Domains_.small=n(t.smallPrefix,t.letterTrans),e.Domains_.capital=n(t.capPrefix,t.letterTrans),e.Domains_.digit=n(t.digitPrefix,t.digitTrans)}function u(t){const e=t.toString(16).toUpperCase();return e.length>3?e:("000"+e).slice(-4)}function d([t,e],n){const r=parseInt(t,16),i=parseInt(e,16),o=[];for(let t=r;t<=i;t++){let e=u(t);!1!==n[e]&&(e=n[e]||e,o.push(e))}return o}function h(t){const e="normal"===t||"fullwidth"===t?"":o.LOCALE.MESSAGES.font[t]||o.LOCALE.MESSAGES.embellish[t]||"";return(0,a.localeFontCombiner)(e)}function p(t,n,r,i,a,s){const l=h(i);for(let i,T,Q,c=0;i=t[c],T=n[c],Q=r[c];c++){const t=s?o.LOCALE.ALPHABETS.capPrefix:o.LOCALE.ALPHABETS.smallPrefix,n=s?e.Domains_.capital:e.Domains_.small;f(l.combiner,i,T,Q,l.font,t,a,o.LOCALE.ALPHABETS.letterTrans,n)}}function m(t,n,r,i,a){const s=h(r);for(let r,l,T=0;r=t[T],l=n[T];T++){const t=o.LOCALE.ALPHABETS.digitPrefix,n=T+a;f(s.combiner,r,l,n,s.font,t,i,o.LOCALE.ALPHABETS.digitTrans,e.Domains_.digit)}}function f(t,e,n,r,i,o,a,l,T){for(let Q,c=0;Q=T[c];c++){const T=Q in l?l[Q]:l.default,c=Q in o?o[Q]:o.default;s.defineRule(e.toString(),Q,"default",a,n,t(T(r),i,c))}}!function(t){t.BOLD="bold",t.BOLDFRAKTUR="bold-fraktur",t.BOLDITALIC="bold-italic",t.BOLDSCRIPT="bold-script",t.DOUBLESTRUCK="double-struck",t.FULLWIDTH="fullwidth",t.FRAKTUR="fraktur",t.ITALIC="italic",t.MONOSPACE="monospace",t.NORMAL="normal",t.SCRIPT="script",t.SANSSERIF="sans-serif",t.SANSSERIFITALIC="sans-serif-italic",t.SANSSERIFBOLD="sans-serif-bold",t.SANSSERIFBOLDITALIC="sans-serif-bold-italic"}(l=e.Font||(e.Font={})),function(t){t.SUPER="super",t.SUB="sub",t.CIRCLED="circled",t.PARENTHESIZED="parenthesized",t.PERIOD="period",t.NEGATIVECIRCLED="negative-circled",t.DOUBLECIRCLED="double-circled",t.CIRCLEDSANSSERIF="circled-sans-serif",t.NEGATIVECIRCLEDSANSSERIF="negative-circled-sans-serif",t.COMMA="comma",t.SQUARED="squared",t.NEGATIVESQUARED="negative-squared"}(T=e.Embellish||(e.Embellish={})),function(t){t.LATINCAP="latinCap",t.LATINSMALL="latinSmall",t.GREEKCAP="greekCap",t.GREEKSMALL="greekSmall",t.DIGIT="digit"}(Q=e.Base||(e.Base={})),e.Domains_={small:["default"],capital:["default"],digit:["default"]},e.makeDomains_=c,e.generate=function(t){const n=r.default.getInstance().locale;r.default.getInstance().locale=t,i.setLocale(),s.addSymbolRules({locale:t}),c();const a=e.INTERVALS;for(let t,e=0;t=a[e];e++){const e=d(t.interval,t.subst),n=e.map((function(t){return String.fromCodePoint(parseInt(t,16))}));"offset"in t?m(e,n,t.font,t.category,t.offset||0):p(e,n,o.LOCALE.ALPHABETS[t.base],t.font,t.category,!!t.capital)}r.default.getInstance().locale=n,i.setLocale()},e.makeInterval=d,e.getFont=h,e.alphabetRules=p,e.numberRules=m,e.makeLetter=f,e.INTERVALS=[{interval:["1D400","1D419"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLD},{interval:["1D41A","1D433"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLD},{interval:["1D56C","1D585"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDFRAKTUR},{interval:["1D586","1D59F"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDFRAKTUR},{interval:["1D468","1D481"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDITALIC},{interval:["1D482","1D49B"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDITALIC},{interval:["1D4D0","1D4E9"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDSCRIPT},{interval:["1D4EA","1D503"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDSCRIPT},{interval:["1D538","1D551"],base:Q.LATINCAP,subst:{"1D53A":"2102","1D53F":"210D","1D545":"2115","1D547":"2119","1D548":"211A","1D549":"211D","1D551":"2124"},capital:!0,category:"Lu",font:l.DOUBLESTRUCK},{interval:["1D552","1D56B"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.DOUBLESTRUCK},{interval:["1D504","1D51D"],base:Q.LATINCAP,subst:{"1D506":"212D","1D50B":"210C","1D50C":"2111","1D515":"211C","1D51D":"2128"},capital:!0,category:"Lu",font:l.FRAKTUR},{interval:["1D51E","1D537"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.FRAKTUR},{interval:["FF21","FF3A"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.FULLWIDTH},{interval:["FF41","FF5A"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.FULLWIDTH},{interval:["1D434","1D44D"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.ITALIC},{interval:["1D44E","1D467"],base:Q.LATINSMALL,subst:{"1D455":"210E"},capital:!1,category:"Ll",font:l.ITALIC},{interval:["1D670","1D689"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.MONOSPACE},{interval:["1D68A","1D6A3"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.MONOSPACE},{interval:["0041","005A"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.NORMAL},{interval:["0061","007A"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.NORMAL},{interval:["1D49C","1D4B5"],base:Q.LATINCAP,subst:{"1D49D":"212C","1D4A0":"2130","1D4A1":"2131","1D4A3":"210B","1D4A4":"2110","1D4A7":"2112","1D4A8":"2133","1D4AD":"211B"},capital:!0,category:"Lu",font:l.SCRIPT},{interval:["1D4B6","1D4CF"],base:Q.LATINSMALL,subst:{"1D4BA":"212F","1D4BC":"210A","1D4C4":"2134"},capital:!1,category:"Ll",font:l.SCRIPT},{interval:["1D5A0","1D5B9"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIF},{interval:["1D5BA","1D5D3"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIF},{interval:["1D608","1D621"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFITALIC},{interval:["1D622","1D63B"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFITALIC},{interval:["1D5D4","1D5ED"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLD},{interval:["1D5EE","1D607"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLD},{interval:["1D63C","1D655"],base:Q.LATINCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLDITALIC},{interval:["1D656","1D66F"],base:Q.LATINSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLDITALIC},{interval:["0391","03A9"],base:Q.GREEKCAP,subst:{"03A2":"03F4"},capital:!0,category:"Lu",font:l.NORMAL},{interval:["03B0","03D0"],base:Q.GREEKSMALL,subst:{"03B0":"2207","03CA":"2202","03CB":"03F5","03CC":"03D1","03CD":"03F0","03CE":"03D5","03CF":"03F1","03D0":"03D6"},capital:!1,category:"Ll",font:l.NORMAL},{interval:["1D6A8","1D6C0"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.BOLD},{interval:["1D6C1","1D6E1"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLD},{interval:["1D6E2","1D6FA"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.ITALIC},{interval:["1D6FB","1D71B"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.ITALIC},{interval:["1D71C","1D734"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.BOLDITALIC},{interval:["1D735","1D755"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.BOLDITALIC},{interval:["1D756","1D76E"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLD},{interval:["1D76F","1D78F"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLD},{interval:["1D790","1D7A8"],base:Q.GREEKCAP,subst:{},capital:!0,category:"Lu",font:l.SANSSERIFBOLDITALIC},{interval:["1D7A9","1D7C9"],base:Q.GREEKSMALL,subst:{},capital:!1,category:"Ll",font:l.SANSSERIFBOLDITALIC},{interval:["0030","0039"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.NORMAL},{interval:["2070","2079"],base:Q.DIGIT,subst:{2071:"00B9",2072:"00B2",2073:"00B3"},offset:0,category:"No",font:T.SUPER},{interval:["2080","2089"],base:Q.DIGIT,subst:{},offset:0,category:"No",font:T.SUB},{interval:["245F","2473"],base:Q.DIGIT,subst:{"245F":"24EA"},offset:0,category:"No",font:T.CIRCLED},{interval:["3251","325F"],base:Q.DIGIT,subst:{},offset:21,category:"No",font:T.CIRCLED},{interval:["32B1","32BF"],base:Q.DIGIT,subst:{},offset:36,category:"No",font:T.CIRCLED},{interval:["2474","2487"],base:Q.DIGIT,subst:{},offset:1,category:"No",font:T.PARENTHESIZED},{interval:["2487","249B"],base:Q.DIGIT,subst:{2487:"1F100"},offset:0,category:"No",font:T.PERIOD},{interval:["2775","277F"],base:Q.DIGIT,subst:{2775:"24FF"},offset:0,category:"No",font:T.NEGATIVECIRCLED},{interval:["24EB","24F4"],base:Q.DIGIT,subst:{},offset:11,category:"No",font:T.NEGATIVECIRCLED},{interval:["24F5","24FE"],base:Q.DIGIT,subst:{},offset:1,category:"No",font:T.DOUBLECIRCLED},{interval:["277F","2789"],base:Q.DIGIT,subst:{"277F":"1F10B"},offset:0,category:"No",font:T.CIRCLEDSANSSERIF},{interval:["2789","2793"],base:Q.DIGIT,subst:{2789:"1F10C"},offset:0,category:"No",font:T.NEGATIVECIRCLEDSANSSERIF},{interval:["FF10","FF19"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.FULLWIDTH},{interval:["1D7CE","1D7D7"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.BOLD},{interval:["1D7D8","1D7E1"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.DOUBLESTRUCK},{interval:["1D7E2","1D7EB"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.SANSSERIF},{interval:["1D7EC","1D7F5"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.SANSSERIFBOLD},{interval:["1D7F6","1D7FF"],base:Q.DIGIT,subst:{},offset:0,category:"Nd",font:l.MONOSPACE},{interval:["1F101","1F10A"],base:Q.DIGIT,subst:{},offset:0,category:"No",font:T.COMMA},{interval:["24B6","24CF"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.CIRCLED},{interval:["24D0","24E9"],base:Q.LATINSMALL,subst:{},capital:!1,category:"So",font:T.CIRCLED},{interval:["1F110","1F129"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.PARENTHESIZED},{interval:["249C","24B5"],base:Q.LATINSMALL,subst:{},capital:!1,category:"So",font:T.PARENTHESIZED},{interval:["1F130","1F149"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.SQUARED},{interval:["1F170","1F189"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.NEGATIVESQUARED},{interval:["1F150","1F169"],base:Q.LATINCAP,subst:{},capital:!0,category:"So",font:T.NEGATIVECIRCLED}]},9050:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Parser=e.Comparator=e.ClearspeakPreferences=void 0;const r=n(3684),i=n(9686),o=n(3113),a=n(3113),s=n(8844),l=n(5124);class T extends o.DynamicCstr{constructor(t,e){super(t),this.preference=e}static comparator(){return new c(r.default.getInstance().dynamicCstr,a.DynamicProperties.createProp([o.DynamicCstr.DEFAULT_VALUES[a.Axis.LOCALE]],[o.DynamicCstr.DEFAULT_VALUES[a.Axis.MODALITY]],[o.DynamicCstr.DEFAULT_VALUES[a.Axis.DOMAIN]],[o.DynamicCstr.DEFAULT_VALUES[a.Axis.STYLE]]))}static fromPreference(t){const e=t.split(":"),n={},r=Q.getProperties(),i=Object.keys(r);for(let t,o=0;t=e[o];o++){const e=t.split("_");if(-1===i.indexOf(e[0]))continue;const o=e[1];o&&o!==T.AUTO&&-1!==r[e[0]].indexOf(o)&&(n[e[0]]=e[1])}return n}static toPreference(t){const e=Object.keys(t),n=[];for(let r=0;r<e.length;r++)n.push(e[r]+"_"+t[e[r]]);return n.length?n.join(":"):o.DynamicCstr.DEFAULT_VALUE}static getLocalePreferences(t){const e=t||s.enumerate(l.SpeechRuleEngine.getInstance().enumerate());return T.getLocalePreferences_(e)}static smartPreferences(t,e){const n=T.getLocalePreferences()[e];if(!n)return[];const r=t.explorers.speech,o=T.relevantPreferences(r.walker.getFocus().getSemanticPrimary()),a=i.DOMAIN_TO_STYLES.clearspeak;return[{type:"radio",content:"No Preferences",id:"clearspeak-default",variable:"speechRules"},{type:"radio",content:"Current Preferences",id:"clearspeak-"+a,variable:"speechRules"},{type:"rule"},{type:"label",content:"Preferences for "+o},{type:"rule"}].concat(n[o].map((function(t){const e=t.split("_");return{type:"radio",content:e[1],id:"clearspeak-"+T.addPreference(a,e[0],e[1]),variable:"speechRules"}})))}static relevantPreferences(t){const e=h[t.type];return e&&(e[t.role]||e[""])||"ImpliedTimes"}static findPreference(t,e){return"default"===t?T.AUTO:T.fromPreference(t)[e]||T.AUTO}static addPreference(t,e,n){if("default"===t)return e+"_"+n;const r=T.fromPreference(t);return r[e]=n,T.toPreference(r)}static getLocalePreferences_(t){const e={};for(const n in t){if(!t[n].speech||!t[n].speech.clearspeak)continue;const r=Object.keys(t[n].speech.clearspeak),i=e[n]={};for(const t in Q.getProperties()){const e=Q.getProperties()[t],n=[t+"_Auto"];if(e)for(const i of e)-1!==r.indexOf(t+"_"+i)&&n.push(t+"_"+i);i[t]=n}}return e}equal(t){if(!super.equal(t))return!1;const e=Object.keys(this.preference),n=t.preference;if(e.length!==Object.keys(n).length)return!1;for(let t,r=0;t=e[r];r++)if(this.preference[t]!==n[t])return!1;return!0}}e.ClearspeakPreferences=T,T.AUTO="Auto";const Q=new a.DynamicProperties({AbsoluteValue:["Auto","AbsEnd","Cardinality","Determinant"],Bar:["Auto","Conjugate"],Caps:["Auto","SayCaps"],CombinationPermutation:["Auto","ChoosePermute"],Currency:["Auto","Position","Prefix"],Ellipses:["Auto","AndSoOn"],Enclosed:["Auto","EndEnclose"],Exponent:["Auto","AfterPower","Ordinal","OrdinalPower","Exponent"],Fraction:["Auto","EndFrac","FracOver","General","GeneralEndFrac","Ordinal","Over","OverEndFrac","Per"],Functions:["Auto","None","Reciprocal"],ImpliedTimes:["Auto","MoreImpliedTimes","None"],Log:["Auto","LnAsNaturalLog"],Matrix:["Auto","Combinatoric","EndMatrix","EndVector","SilentColNum","SpeakColNum","Vector"],MultiLineLabel:["Auto","Case","Constraint","Equation","Line","None","Row","Step"],MultiLineOverview:["Auto","None"],MultiLinePausesBetweenColumns:["Auto","Long","Short"],MultsymbolDot:["Auto","Dot"],MultsymbolX:["Auto","By","Cross"],Paren:["Auto","CoordPoint","Interval","Silent","Speak","SpeakNestingLevel"],Prime:["Auto","Angle","Length"],Roots:["Auto","PosNegSqRoot","PosNegSqRootEnd","RootEnd"],SetMemberSymbol:["Auto","Belongs","Element","Member","In"],Sets:["Auto","SilentBracket","woAll"],TriangleSymbol:["Auto","Delta"],Trig:["Auto","ArcTrig","TrigInverse","Reciprocal"],VerticalLine:["Auto","Divides","Given","SuchThat"]});class c extends a.DefaultComparator{constructor(t,e){super(t,e),this.preference=t instanceof T?t.preference:{}}match(t){if(!(t instanceof T))return super.match(t);if("default"===t.getComponents()[a.Axis.STYLE])return!0;const e=Object.keys(t.preference);for(let n,r=0;n=e[r];r++)if(this.preference[n]!==t.preference[n])return!1;return!0}compare(t,e){const n=super.compare(t,e);if(0!==n)return n;const r=t instanceof T,i=e instanceof T;if(!r&&i)return 1;if(r&&!i)return-1;if(!r&&!i)return 0;const o=Object.keys(t.preference).length,a=Object.keys(e.preference).length;return o>a?-1:o<a?1:0}}e.Comparator=c;class u extends a.DynamicCstrParser{constructor(){super([a.Axis.LOCALE,a.Axis.MODALITY,a.Axis.DOMAIN,a.Axis.STYLE])}parse(t){const e=super.parse(t);let n=e.getValue(a.Axis.STYLE);const r=e.getValue(a.Axis.LOCALE),i=e.getValue(a.Axis.MODALITY);let s={};return n!==o.DynamicCstr.DEFAULT_VALUE&&(s=this.fromPreference(n),n=this.toPreference(s)),new T({locale:r,modality:i,domain:"clearspeak",style:n},s)}fromPreference(t){return T.fromPreference(t)}toPreference(t){return T.toPreference(t)}}e.Parser=u;const d=[["AbsoluteValue","fenced","neutral","metric"],["Bar","overscore","overaccent"],["Caps","identifier","latinletter"],["CombinationPermutation","appl","unknown"],["Ellipses","punctuation","ellipsis"],["Exponent","superscript",""],["Fraction","fraction",""],["Functions","appl","simple function"],["ImpliedTimes","operator","implicit"],["Log","appl","prefix function"],["Matrix","matrix",""],["Matrix","vector",""],["MultiLineLabel","multiline","label"],["MultiLineOverview","multiline","table"],["MultiLinePausesBetweenColumns","multiline","table"],["MultiLineLabel","table","label"],["MultiLineOverview","table","table"],["MultiLinePausesBetweenColumns","table","table"],["MultiLineLabel","cases","label"],["MultiLineOverview","cases","table"],["MultiLinePausesBetweenColumns","cases","table"],["MultsymbolDot","operator","multiplication"],["MultsymbolX","operator","multiplication"],["Paren","fenced","leftright"],["Prime","superscript","prime"],["Roots","root",""],["Roots","sqrt",""],["SetMemberSymbol","relation","element"],["Sets","fenced","set extended"],["TriangleSymbol","identifier","greekletter"],["Trig","appl","prefix function"],["VerticalLine","punctuated","vbar"]],h=function(){const t={};for(let e,n=0;e=d[n];n++){const n=e[0];let r=t[e[1]];r||(r={},t[e[1]]=r),r[e[2]]=n}return t}();r.default.getInstance().comparators.clearspeak=T.comparator,r.default.getInstance().parsers.clearspeak=new u},3126:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ClearspeakRules=void 0;const r=n(3113),i=n(8159),o=n(1293),a=n(1849),s=n(9035),l=n(3445);e.ClearspeakRules=function(){l.addStore(r.DynamicCstr.BASE_LOCALE+".speech.clearspeak","",{CTFpauseSeparator:i.pauseSeparator,CTFnodeCounter:o.nodeCounter,CTFcontentIterator:i.contentIterator,CSFvulgarFraction:s.vulgarFraction,CQFvulgarFractionSmall:o.isSmallVulgarFraction,CQFcellsSimple:o.allCellsSimple,CSFordinalExponent:o.ordinalExponent,CSFwordOrdinal:o.wordOrdinal,CQFmatchingFences:o.matchingFences,CSFnestingDepth:o.nestingDepth,CQFfencedArguments:o.fencedArguments,CQFsimpleArguments:o.simpleArguments,CQFspaceoutNumber:a.spaceoutNumber})}},1293:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.wordOrdinal=e.layoutFactor_=e.fencedFactor_=e.simpleFactor_=e.simpleArguments=e.fencedArguments=e.insertNesting=e.matchingFences=e.nestingDepth=e.NESTING_DEPTH=e.ordinalExponent=e.allTextLastContent_=e.isUnitExpression=e.isSmallVulgarFraction=e.allCellsSimple=e.allIndices_=e.isInteger_=e.simpleCell_=e.simpleNode=e.hasPreference=e.isSimpleFraction_=e.isSimpleNumber_=e.isNumber_=e.isLetter_=e.isSimple_=e.isSimpleLetters_=e.isSimpleDegree_=e.isSimpleNegative_=e.isSimpleFunction_=e.isSimpleExpression=e.nodeCounter=void 0;const r=n(7041),i=n(3684),o=n(1746),a=n(3826),s=n(1404),l=n(7534),T=n(8159),Q=n(8770),c=n(5707),u=n(218);function d(t){return b(t)||f(t)||m(t)||p(t)||h(t)}function h(t){return"appl"===t.type&&("prefix function"===t.childNodes[0].role||"simple function"===t.childNodes[0].role)&&(y(t.childNodes[1])||"fenced"===t.childNodes[1].type&&y(t.childNodes[1].childNodes[0]))}function p(t){return"prefixop"===t.type&&"negative"===t.role&&y(t.childNodes[0])&&"prefixop"!==t.childNodes[0].type&&"appl"!==t.childNodes[0].type&&"punctuated"!==t.childNodes[0].type}function m(t){return"punctuated"===t.type&&"endpunct"===t.role&&2===t.childNodes.length&&"degree"===t.childNodes[1].role&&(g(t.childNodes[0])||L(t.childNodes[0])||"prefixop"===t.childNodes[0].type&&"negative"===t.childNodes[0].role&&(g(t.childNodes[0].childNodes[0])||L(t.childNodes[0].childNodes[0])))}function f(t){return g(t)||"infixop"===t.type&&"implicit"===t.role&&(2===t.childNodes.length&&(g(t.childNodes[0])||b(t.childNodes[0]))&&g(t.childNodes[1])||3===t.childNodes.length&&b(t.childNodes[0])&&g(t.childNodes[1])&&g(t.childNodes[2]))}function y(t){return t.hasAnnotation("clearspeak","simple")}function g(t){return"identifier"===t.type&&("latinletter"===t.role||"greekletter"===t.role||"otherletter"===t.role||"simple function"===t.role)}function L(t){return"number"===t.type&&("integer"===t.role||"float"===t.role)}function b(t){return L(t)||v(t)}function v(t){if(x("Fraction_Over")||x("Fraction_FracOver"))return!1;if("fraction"!==t.type||"vulgar"!==t.role)return!1;if(x("Fraction_Ordinal"))return!0;const e=parseInt(t.childNodes[0].textContent,10),n=parseInt(t.childNodes[1].textContent,10);return e>0&&e<20&&n>0&&n<11}function x(t){return i.default.getInstance().style===t}function _(t){if(!t.hasAttribute("annotation"))return!1;const e=t.getAttribute("annotation");return!!/clearspeak:simple$|clearspeak:simple;/.exec(e)}function H(t){if(_(t))return!0;if("subscript"!==t.tagName)return!1;const e=t.childNodes[0].childNodes,n=e[1];return"identifier"===e[0].tagName&&(w(n)||"infixop"===n.tagName&&n.hasAttribute("role")&&"implicit"===n.getAttribute("role")&&O(n))}function w(t){return"number"===t.tagName&&t.hasAttribute("role")&&"integer"===t.getAttribute("role")}function O(t){return o.evalXPath("children/*",t).every((t=>w(t)||"identifier"===t.tagName))}function M(t){return"text"===t.type||"punctuated"===t.type&&"text"===t.role&&L(t.childNodes[0])&&S(t.childNodes.slice(1))||"identifier"===t.type&&"unit"===t.role||"infixop"===t.type&&("implicit"===t.role||"unit"===t.role)}function S(t){for(let e=0;e<t.length-1;e++)if("text"!==t[e].type||""!==t[e].textContent)return!1;return"text"===t[t.length-1].type}function E(t,e){if(!e||!t)return t;const n=t.match(/^(open|close) /);return n?n[0]+e+" "+t.substring(n[0].length):e+" "+t}function A(t){return!!t&&("number"===t.tagName||"identifier"===t.tagName||"function"===t.tagName||"appl"===t.tagName||"fraction"===t.tagName)}function C(t){return t&&("fenced"===t.tagName||t.hasAttribute("role")&&"leftright"===t.getAttribute("role")||V(t))}function V(t){return!!t&&("matrix"===t.tagName||"vector"===t.tagName)}e.nodeCounter=function(t,e){const n=e.split("-"),r=T.nodeCounter(t,n[0]||""),i=n[1]||"",o=n[2]||"";let a=!0;return function(){const t=r();return a?(a=!1,o+t+i):t+i}},e.isSimpleExpression=d,e.isSimpleFunction_=h,e.isSimpleNegative_=p,e.isSimpleDegree_=m,e.isSimpleLetters_=f,e.isSimple_=y,e.isLetter_=g,e.isNumber_=L,e.isSimpleNumber_=b,e.isSimpleFraction_=v,e.hasPreference=x,(0,Q.register)(new c.SemanticAnnotator("clearspeak","simple",(function(t){return d(t)?"simple":""}))),e.simpleNode=_,e.simpleCell_=H,e.isInteger_=w,e.allIndices_=O,e.allCellsSimple=function(t){const e="matrix"===t.tagName?"children/row/children/cell/children/*":"children/line/children/*";return o.evalXPath(e,t).every(H)?[t]:[]},e.isSmallVulgarFraction=function(t){return(0,s.vulgarFractionSmall)(t,20,11)?[t]:[]},e.isUnitExpression=M,e.allTextLastContent_=S,(0,Q.register)(new c.SemanticAnnotator("clearspeak","unit",(function(t){return M(t)?"unit":""}))),e.ordinalExponent=function(t){const e=parseInt(t.textContent,10);return isNaN(e)?t.textContent:e>10?a.LOCALE.NUMBERS.numericOrdinal(e):a.LOCALE.NUMBERS.wordOrdinal(e)},e.NESTING_DEPTH=null,e.nestingDepth=function(t){let n=0;const r=t.textContent,i="open"===t.getAttribute("role")?0:1;let o=t.parentNode;for(;o;)"fenced"===o.tagName&&o.childNodes[0].childNodes[i].textContent===r&&n++,o=o.parentNode;return e.NESTING_DEPTH=n>1?a.LOCALE.NUMBERS.wordOrdinal(n):"",e.NESTING_DEPTH},e.matchingFences=function(t){const e=t.previousSibling;let n,r;return e?(n=e,r=t):(n=t,r=t.nextSibling),r&&(0,u.isMatchingFence)(n.textContent,r.textContent)?[t]:[]},e.insertNesting=E,l.Grammar.getInstance().setCorrection("insertNesting",E),e.fencedArguments=function(t){const e=r.toArray(t.parentNode.childNodes),n=o.evalXPath("../../children/*",t),i=e.indexOf(t);return C(n[i])||C(n[i+1])?[t]:[]},e.simpleArguments=function(t){const e=r.toArray(t.parentNode.childNodes),n=o.evalXPath("../../children/*",t),i=e.indexOf(t);return A(n[i])&&n[i+1]&&(A(n[i+1])||"root"===n[i+1].tagName||"sqrt"===n[i+1].tagName||"superscript"===n[i+1].tagName&&n[i+1].childNodes[0].childNodes[0]&&("number"===n[i+1].childNodes[0].childNodes[0].tagName||"identifier"===n[i+1].childNodes[0].childNodes[0].tagName)&&("2"===n[i+1].childNodes[0].childNodes[1].textContent||"3"===n[i+1].childNodes[0].childNodes[1].textContent))?[t]:[]},e.simpleFactor_=A,e.fencedFactor_=C,e.layoutFactor_=V,e.wordOrdinal=function(t){return a.LOCALE.NUMBERS.wordOrdinal(parseInt(t.textContent,10))}},2741:function(t,e,n){var r=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))};Object.defineProperty(e,"__esModule",{value:!0}),e.loadAjax=e.loadFileSync=e.loadFile=e.parseMaps=e.retrieveFiles=e.standardLoader=e.loadLocale=e.store=void 0;const i=n(4698),o=n(3684),a=n(9686),s=n(3633),l=n(495),T=n(3113),Q=n(8844),c=n(5124),u=n(2420),d=n(7792);e.store=Q;const h={functions:Q.addFunctionRules,symbols:Q.addSymbolRules,units:Q.addUnitRules,si:Q.setSiPrefixes};let p=!1;function m(t=o.default.getInstance().locale){o.EnginePromise.loaded[t]||(o.EnginePromise.loaded[t]=[!1,!1],function(t){o.default.getInstance().isIE&&o.default.getInstance().mode===a.Mode.HTTP?b(t):y(t)}(t))}function f(){switch(o.default.getInstance().mode){case a.Mode.ASYNC:return v;case a.Mode.HTTP:return _;case a.Mode.SYNC:default:return x}}function y(t){const e=o.default.getInstance().customLoader?o.default.getInstance().customLoader:f(),n=new Promise((n=>{e(t).then((e=>{g(e),o.EnginePromise.loaded[t]=[!0,!0],n(t)}),(e=>{o.EnginePromise.loaded[t]=[!0,!1],console.error(`Unable to load locale: ${t}`),o.default.getInstance().locale=o.default.getInstance().defaultLocale,n(t)}))}));o.EnginePromise.promises[t]=n}function g(t){L(JSON.parse(t))}function L(t,e){let n=!0;for(let r,i=0;r=Object.keys(t)[i];i++){const i=r.split("/");e&&e!==i[0]||("rules"===i[1]?c.SpeechRuleEngine.getInstance().addStore(t[r]):"messages"===i[1]?(0,u.completeLocale)(t[r]):(n&&(d.generate(i[0]),n=!1),t[r].forEach(h[i[1]])))}}function b(t,e){let n=e||1;i.mapsForIE?L(i.mapsForIE,t):n<=5&&setTimeout((()=>b(t,n++)).bind(this),300)}function v(t){const e=s.localePath(t);return new Promise(((t,n)=>{l.default.fs.readFile(e,"utf8",((e,r)=>{if(e)return n(e);t(r)}))}))}function x(t){const e=s.localePath(t);return new Promise(((t,n)=>{let r="{}";try{r=l.default.fs.readFileSync(e,"utf8")}catch(t){return n(t)}t(r)}))}function _(t){const e=s.localePath(t),n=new XMLHttpRequest;return new Promise(((t,r)=>{n.onreadystatechange=function(){if(4===n.readyState){const e=n.status;0===e||e>=200&&e<400?t(n.responseText):r(e)}},n.open("GET",e,!0),n.send()}))}e.loadLocale=function(t=o.default.getInstance().locale){return r(this,void 0,void 0,(function*(){return p||(m(T.DynamicCstr.BASE_LOCALE),p=!0),o.EnginePromise.promises[T.DynamicCstr.BASE_LOCALE].then((()=>r(this,void 0,void 0,(function*(){const e=o.default.getInstance().defaultLocale;return e?(m(e),o.EnginePromise.promises[e].then((()=>r(this,void 0,void 0,(function*(){return m(t),o.EnginePromise.promises[t]}))))):(m(t),o.EnginePromise.promises[t])}))))}))},e.standardLoader=f,e.retrieveFiles=y,e.parseMaps=g,e.loadFile=v,e.loadFileSync=x,e.loadAjax=_},6223:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.leftSubscriptBrief=e.leftSuperscriptBrief=e.leftSubscriptVerbose=e.leftSuperscriptVerbose=e.baselineBrief=e.baselineVerbose=void 0;const r=n(1849);e.baselineVerbose=function(t){return r.baselineVerbose(t).replace(/-$/,"")},e.baselineBrief=function(t){return r.baselineBrief(t).replace(/-$/,"")},e.leftSuperscriptVerbose=function(t){return r.superscriptVerbose(t).replace(/^exposant/,"exposant gauche")},e.leftSubscriptVerbose=function(t){return r.subscriptVerbose(t).replace(/^indice/,"indice gauche")},e.leftSuperscriptBrief=function(t){return r.superscriptBrief(t).replace(/^sup/,"sup gauche")},e.leftSubscriptBrief=function(t){return r.subscriptBrief(t).replace(/^sub/,"sub gauche")}},4510:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.MathspeakRules=void 0;const r=n(3113),i=n(8159),o=n(6223),a=n(1849),s=n(9035),l=n(3445),T=n(3672);e.MathspeakRules=function(){l.addStore(r.DynamicCstr.BASE_LOCALE+".speech.mathspeak","",{CQFspaceoutNumber:a.spaceoutNumber,CQFspaceoutIdentifier:a.spaceoutIdentifier,CSFspaceoutText:a.spaceoutText,CSFopenFracVerbose:a.openingFractionVerbose,CSFcloseFracVerbose:a.closingFractionVerbose,CSFoverFracVerbose:a.overFractionVerbose,CSFopenFracBrief:a.openingFractionBrief,CSFcloseFracBrief:a.closingFractionBrief,CSFopenFracSbrief:a.openingFractionSbrief,CSFcloseFracSbrief:a.closingFractionSbrief,CSFoverFracSbrief:a.overFractionSbrief,CSFvulgarFraction:s.vulgarFraction,CQFvulgarFractionSmall:a.isSmallVulgarFraction,CSFopenRadicalVerbose:a.openingRadicalVerbose,CSFcloseRadicalVerbose:a.closingRadicalVerbose,CSFindexRadicalVerbose:a.indexRadicalVerbose,CSFopenRadicalBrief:a.openingRadicalBrief,CSFcloseRadicalBrief:a.closingRadicalBrief,CSFindexRadicalBrief:a.indexRadicalBrief,CSFopenRadicalSbrief:a.openingRadicalSbrief,CSFindexRadicalSbrief:a.indexRadicalSbrief,CQFisSmallRoot:a.smallRoot,CSFsuperscriptVerbose:a.superscriptVerbose,CSFsuperscriptBrief:a.superscriptBrief,CSFsubscriptVerbose:a.subscriptVerbose,CSFsubscriptBrief:a.subscriptBrief,CSFbaselineVerbose:a.baselineVerbose,CSFbaselineBrief:a.baselineBrief,CSFleftsuperscriptVerbose:a.superscriptVerbose,CSFleftsubscriptVerbose:a.subscriptVerbose,CSFrightsuperscriptVerbose:a.superscriptVerbose,CSFrightsubscriptVerbose:a.subscriptVerbose,CSFleftsuperscriptBrief:a.superscriptBrief,CSFleftsubscriptBrief:a.subscriptBrief,CSFrightsuperscriptBrief:a.superscriptBrief,CSFrightsubscriptBrief:a.subscriptBrief,CSFunderscript:a.nestedUnderscript,CSFoverscript:a.nestedOverscript,CSFendscripts:a.endscripts,CTFordinalCounter:s.ordinalCounter,CTFwordCounter:s.wordCounter,CTFcontentIterator:i.contentIterator,CQFdetIsSimple:a.determinantIsSimple,CSFRemoveParens:a.removeParens,CQFresetNesting:a.resetNestingDepth,CGFbaselineConstraint:a.generateBaselineConstraint,CGFtensorRules:a.generateTensorRules}),l.addStore("es.speech.mathspeak",r.DynamicCstr.BASE_LOCALE+".speech.mathspeak",{CTFunitMultipliers:T.unitMultipliers,CQFoneLeft:T.oneLeft}),l.addStore("fr.speech.mathspeak",r.DynamicCstr.BASE_LOCALE+".speech.mathspeak",{CSFbaselineVerbose:o.baselineVerbose,CSFbaselineBrief:o.baselineBrief,CSFleftsuperscriptVerbose:o.leftSuperscriptVerbose,CSFleftsubscriptVerbose:o.leftSubscriptVerbose,CSFleftsuperscriptBrief:o.leftSuperscriptBrief,CSFleftsubscriptBrief:o.leftSubscriptBrief})}},1849:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.smallRoot=e.generateTensorRules=e.removeParens=e.generateBaselineConstraint=e.determinantIsSimple=e.nestedOverscript=e.endscripts=e.overscoreNestingDepth=e.nestedUnderscript=e.underscoreNestingDepth=e.indexRadicalSbrief=e.openingRadicalSbrief=e.indexRadicalBrief=e.closingRadicalBrief=e.openingRadicalBrief=e.indexRadicalVerbose=e.closingRadicalVerbose=e.openingRadicalVerbose=e.getRootIndex=e.nestedRadical=e.radicalNestingDepth=e.baselineBrief=e.baselineVerbose=e.superscriptBrief=e.superscriptVerbose=e.subscriptBrief=e.subscriptVerbose=e.nestedSubSuper=e.isSmallVulgarFraction=e.overFractionSbrief=e.closingFractionSbrief=e.openingFractionSbrief=e.closingFractionBrief=e.openingFractionBrief=e.overFractionVerbose=e.closingFractionVerbose=e.openingFractionVerbose=e.nestedFraction=e.fractionNestingDepth=e.computeNestingDepth_=e.containsAttr=e.getNestingDepth=e.resetNestingDepth=e.nestingBarriers=e.spaceoutIdentifier=e.spaceoutNumber=e.spaceoutNodes=e.spaceoutText=void 0;const r=n(4422),i=n(7041),o=n(1746),a=n(3826),s=n(3342);let l={};function T(t,e){const n=Array.from(t.textContent),r=[],i=s.default.getInstance(),o=t.ownerDocument;for(let t,a=0;t=n[a];a++){const n=i.getNodeFactory().makeLeafNode(t,"unknown"),a=i.identifierNode(n,"unknown","");e(a),r.push(a.xml(o))}return r}function Q(t,n,o,a,s,T){a=a||e.nestingBarriers,s=s||{},T=T||function(t){return!1};const Q=i.serializeXml(n);if(l[t]||(l[t]={}),l[t][Q])return l[t][Q];if(T(n)||o.indexOf(n.tagName)<0)return 0;const c=u(n,o,r.setdifference(a,o),s,T,0);return l[t][Q]=c,c}function c(t,e){if(!t.attributes)return!1;const n=i.toArray(t.attributes);for(let t,r=0;t=n[r];r++)if(e[t.nodeName]===t.nodeValue)return!0;return!1}function u(t,e,n,r,o,a){if(o(t)||n.indexOf(t.tagName)>-1||c(t,r))return a;if(e.indexOf(t.tagName)>-1&&a++,!t.childNodes||0===t.childNodes.length)return a;const s=i.toArray(t.childNodes);return Math.max.apply(null,s.map((function(t){return u(t,e,n,r,o,a)})))}function d(t){return Q("fraction",t,["fraction"],e.nestingBarriers,{},a.LOCALE.FUNCTIONS.fracNestDepth)}function h(t,e,n){const r=d(t),i=Array(r).fill(e);return n&&i.push(n),i.join(a.LOCALE.MESSAGES.regexp.JOINER_FRAC)}function p(t,e,n){for(;t.parentNode;){const r=t.parentNode,i=r.parentNode;if(!i)break;const o=t.getAttribute&&t.getAttribute("role");("subscript"===i.tagName&&t===r.childNodes[1]||"tensor"===i.tagName&&o&&("leftsub"===o||"rightsub"===o))&&(e=n.sub+a.LOCALE.MESSAGES.regexp.JOINER_SUBSUPER+e),("superscript"===i.tagName&&t===r.childNodes[1]||"tensor"===i.tagName&&o&&("leftsuper"===o||"rightsuper"===o))&&(e=n.sup+a.LOCALE.MESSAGES.regexp.JOINER_SUBSUPER+e),t=i}return e.trim()}function m(t){return Q("radical",t,["sqrt","root"],e.nestingBarriers,{})}function f(t,e,n){const r=m(t),i=y(t);return n=i?a.LOCALE.FUNCTIONS.combineRootIndex(n,i):n,1===r?n:a.LOCALE.FUNCTIONS.combineNestedRadical(e,a.LOCALE.FUNCTIONS.radicalNestDepth(r-1),n)}function y(t){const e="sqrt"===t.tagName?"2":o.evalXPath("children/*[1]",t)[0].textContent.trim();return a.LOCALE.MESSAGES.MSroots[e]||""}function g(t){return Q("underscore",t,["underscore"],e.nestingBarriers,{},(function(t){return t.tagName&&"underscore"===t.tagName&&"underaccent"===t.childNodes[0].childNodes[1].getAttribute("role")}))}function L(t){return Q("overscore",t,["overscore"],e.nestingBarriers,{},(function(t){return t.tagName&&"overscore"===t.tagName&&"overaccent"===t.childNodes[0].childNodes[1].getAttribute("role")}))}e.spaceoutText=function(t){return Array.from(t.textContent).join(" ")},e.spaceoutNodes=T,e.spaceoutNumber=function(t){return T(t,(function(t){t.textContent.match(/\W/)||(t.type="number")}))},e.spaceoutIdentifier=function(t){return T(t,(function(t){t.font="unknown",t.type="identifier"}))},e.nestingBarriers=["cases","cell","integral","line","matrix","multiline","overscore","root","row","sqrt","subscript","superscript","table","underscore","vector"],e.resetNestingDepth=function(t){return l={},[t]},e.getNestingDepth=Q,e.containsAttr=c,e.computeNestingDepth_=u,e.fractionNestingDepth=d,e.nestedFraction=h,e.openingFractionVerbose=function(t){return h(t,a.LOCALE.MESSAGES.MS.START,a.LOCALE.MESSAGES.MS.FRAC_V)},e.closingFractionVerbose=function(t){return h(t,a.LOCALE.MESSAGES.MS.END,a.LOCALE.MESSAGES.MS.FRAC_V)},e.overFractionVerbose=function(t){return h(t,a.LOCALE.MESSAGES.MS.FRAC_OVER)},e.openingFractionBrief=function(t){return h(t,a.LOCALE.MESSAGES.MS.START,a.LOCALE.MESSAGES.MS.FRAC_B)},e.closingFractionBrief=function(t){return h(t,a.LOCALE.MESSAGES.MS.END,a.LOCALE.MESSAGES.MS.FRAC_B)},e.openingFractionSbrief=function(t){const e=d(t);return 1===e?a.LOCALE.MESSAGES.MS.FRAC_S:a.LOCALE.FUNCTIONS.combineNestedFraction(a.LOCALE.MESSAGES.MS.NEST_FRAC,a.LOCALE.FUNCTIONS.radicalNestDepth(e-1),a.LOCALE.MESSAGES.MS.FRAC_S)},e.closingFractionSbrief=function(t){const e=d(t);return 1===e?a.LOCALE.MESSAGES.MS.ENDFRAC:a.LOCALE.FUNCTIONS.combineNestedFraction(a.LOCALE.MESSAGES.MS.NEST_FRAC,a.LOCALE.FUNCTIONS.radicalNestDepth(e-1),a.LOCALE.MESSAGES.MS.ENDFRAC)},e.overFractionSbrief=function(t){const e=d(t);return 1===e?a.LOCALE.MESSAGES.MS.FRAC_OVER:a.LOCALE.FUNCTIONS.combineNestedFraction(a.LOCALE.MESSAGES.MS.NEST_FRAC,a.LOCALE.FUNCTIONS.radicalNestDepth(e-1),a.LOCALE.MESSAGES.MS.FRAC_OVER)},e.isSmallVulgarFraction=function(t){return a.LOCALE.FUNCTIONS.fracNestDepth(t)?[t]:[]},e.nestedSubSuper=p,e.subscriptVerbose=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUBSCRIPT,{sup:a.LOCALE.MESSAGES.MS.SUPER,sub:a.LOCALE.MESSAGES.MS.SUB})},e.subscriptBrief=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUB,{sup:a.LOCALE.MESSAGES.MS.SUP,sub:a.LOCALE.MESSAGES.MS.SUB})},e.superscriptVerbose=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUPERSCRIPT,{sup:a.LOCALE.MESSAGES.MS.SUPER,sub:a.LOCALE.MESSAGES.MS.SUB})},e.superscriptBrief=function(t){return p(t,a.LOCALE.MESSAGES.MS.SUP,{sup:a.LOCALE.MESSAGES.MS.SUP,sub:a.LOCALE.MESSAGES.MS.SUB})},e.baselineVerbose=function(t){const e=p(t,"",{sup:a.LOCALE.MESSAGES.MS.SUPER,sub:a.LOCALE.MESSAGES.MS.SUB});return e?e.replace(new RegExp(a.LOCALE.MESSAGES.MS.SUB+"$"),a.LOCALE.MESSAGES.MS.SUBSCRIPT).replace(new RegExp(a.LOCALE.MESSAGES.MS.SUPER+"$"),a.LOCALE.MESSAGES.MS.SUPERSCRIPT):a.LOCALE.MESSAGES.MS.BASELINE},e.baselineBrief=function(t){return p(t,"",{sup:a.LOCALE.MESSAGES.MS.SUP,sub:a.LOCALE.MESSAGES.MS.SUB})||a.LOCALE.MESSAGES.MS.BASE},e.radicalNestingDepth=m,e.nestedRadical=f,e.getRootIndex=y,e.openingRadicalVerbose=function(t){return f(t,a.LOCALE.MESSAGES.MS.NESTED,a.LOCALE.MESSAGES.MS.STARTROOT)},e.closingRadicalVerbose=function(t){return f(t,a.LOCALE.MESSAGES.MS.NESTED,a.LOCALE.MESSAGES.MS.ENDROOT)},e.indexRadicalVerbose=function(t){return f(t,a.LOCALE.MESSAGES.MS.NESTED,a.LOCALE.MESSAGES.MS.ROOTINDEX)},e.openingRadicalBrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.STARTROOT)},e.closingRadicalBrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.ENDROOT)},e.indexRadicalBrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.ROOTINDEX)},e.openingRadicalSbrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.ROOT)},e.indexRadicalSbrief=function(t){return f(t,a.LOCALE.MESSAGES.MS.NEST_ROOT,a.LOCALE.MESSAGES.MS.INDEX)},e.underscoreNestingDepth=g,e.nestedUnderscript=function(t){const e=g(t);return Array(e).join(a.LOCALE.MESSAGES.MS.UNDER)+a.LOCALE.MESSAGES.MS.UNDERSCRIPT},e.overscoreNestingDepth=L,e.endscripts=function(t){return a.LOCALE.MESSAGES.MS.ENDSCRIPTS},e.nestedOverscript=function(t){const e=L(t);return Array(e).join(a.LOCALE.MESSAGES.MS.OVER)+a.LOCALE.MESSAGES.MS.OVERSCRIPT},e.determinantIsSimple=function(t){if("matrix"!==t.tagName||"determinant"!==t.getAttribute("role"))return[];const e=o.evalXPath("children/row/children/cell/children/*",t);for(let t,n=0;t=e[n];n++)if("number"!==t.tagName){if("identifier"===t.tagName){const e=t.getAttribute("role");if("latinletter"===e||"greekletter"===e||"otherletter"===e)continue}return[]}return[t]},e.generateBaselineConstraint=function(){const t=t=>t.map((t=>"ancestor::"+t)),e=t=>"not("+t+")",n=e(t(["subscript","superscript","tensor"]).join(" or ")),r=t(["relseq","multrel"]),i=t(["fraction","punctuation","fenced","sqrt","root"]);let o=[];for(let t,e=0;t=i[e];e++)o=o.concat(r.map((function(e){return t+"/"+e})));return[["ancestor::*/following-sibling::*",n,e(o.join(" | "))].join(" and ")]},e.removeParens=function(t){if(!t.childNodes.length||!t.childNodes[0].childNodes.length||!t.childNodes[0].childNodes[0].childNodes.length)return"";const e=t.childNodes[0].childNodes[0].childNodes[0].textContent;return e.match(/^\(.+\)$/)?e.slice(1,-1):e};const b=new Map([[3,"CSFleftsuperscript"],[4,"CSFleftsubscript"],[2,"CSFbaseline"],[1,"CSFrightsubscript"],[0,"CSFrightsuperscript"]]),v=new Map([[4,2],[3,3],[2,1],[1,4],[0,5]]);function x(t){const e=[];let n="",r="",i=parseInt(t,2);for(let t=0;t<5;t++){const o="children/*["+v.get(t)+"]";if(1&i){const e=b.get(t%5);n="[t] "+e+"Verbose; [n] "+o+";"+n,r="[t] "+e+"Brief; [n] "+o+";"+r}else e.unshift("name("+o+')="empty"');i>>=1}return[e,n,r]}e.generateTensorRules=function(t,e=!0){const n=["11111","11110","11101","11100","10111","10110","10101","10100","01111","01110","01101","01100"];for(let r,i=0;r=n[i];i++){let n="tensor"+r,[i,o,a]=x(r);t.defineRule(n,"default",o,"self::tensor",...i),e&&(t.defineRule(n,"brief",a,"self::tensor",...i),t.defineRule(n,"sbrief",a,"self::tensor",...i));const s=b.get(2);o+="; [t]"+s+"Verbose",a+="; [t]"+s+"Brief",n+="-baseline";const l="((.//*[not(*)])[last()]/@id)!=(((.//ancestor::fraction|ancestor::root|ancestor::sqrt|ancestor::cell|ancestor::line|ancestor::stree)[1]//*[not(*)])[last()]/@id)";t.defineRule(n,"default",o,"self::tensor",l,...i),e&&(t.defineRule(n,"brief",a,"self::tensor",l,...i),t.defineRule(n,"sbrief",a,"self::tensor",l,...i))}},e.smallRoot=function(t){let e=Object.keys(a.LOCALE.MESSAGES.MSroots).length;if(!e)return[];if(e++,!t.childNodes||0===t.childNodes.length||!t.childNodes[0].childNodes)return[];const n=t.childNodes[0].childNodes[0].textContent;if(!/^\d+$/.test(n))return[];const r=parseInt(n,10);return r>1&&r<=e?[t]:[]}},3026:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.implicitIterator=e.relationIterator=e.propagateNumber=e.checkParent_=e.NUMBER_INHIBITORS_=e.NUMBER_PROPAGATORS_=e.enlargeFence=e.indexRadical=e.closingRadical=e.openingRadical=e.radicalNestingDepth=e.nestedRadical=e.hyperFractionBoundary=e.overBevelledFraction=e.overFraction=e.closingFraction=e.openingFraction=void 0;const r=n(2975),i=n(7041),o=n(1746),a=n(7534),s=n(3684),l=n(8770),T=n(5707),Q=n(3826),c=n(1849);function u(t,e){const n=d(t);return 1===n?e:new Array(n).join(Q.LOCALE.MESSAGES.MS.NESTED)+e}function d(t,e){const n=e||0;return t.parentNode?d(t.parentNode,"root"===t.tagName||"sqrt"===t.tagName?n+1:n):n}function h(t){const e="⠠";if(1===t.length)return e+t;const n=t.split("");return n.every((function(t){return"⠳"===t}))?e+n.join(e):t.slice(0,-1)+e+t.slice(-1)}function p(t,n){const r=t.parent;if(!r)return!1;const i=r.type;return-1!==e.NUMBER_PROPAGATORS_.indexOf(i)||"prefixop"===i&&"negative"===r.role&&!n.script||"prefixop"===i&&"geometry"===r.role||!("punctuated"!==i||n.enclosed&&"text"!==r.role)}function m(t,n){return t.childNodes.length?(-1!==e.NUMBER_INHIBITORS_.indexOf(t.type)&&(n.script=!0),"fenced"===t.type?(n.number=!1,n.enclosed=!0,["",n]):(p(t,n)&&(n.number=!0,n.enclosed=!1),["",n])):(p(t,n)&&(n.number=!0,n.script=!1,n.enclosed=!1),[n.number?"number":"",{number:!1,enclosed:n.enclosed,script:n.script}])}e.openingFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+Q.LOCALE.MESSAGES.MS.FRACTION_START},e.closingFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+Q.LOCALE.MESSAGES.MS.FRACTION_END},e.overFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+Q.LOCALE.MESSAGES.MS.FRACTION_OVER},e.overBevelledFraction=function(t){const e=c.fractionNestingDepth(t);return new Array(e).join(Q.LOCALE.MESSAGES.MS.FRACTION_REPEAT)+"⠸"+Q.LOCALE.MESSAGES.MS.FRACTION_OVER},e.hyperFractionBoundary=function(t){return Q.LOCALE.MESSAGES.regexp.HYPER===c.fractionNestingDepth(t).toString()?[t]:[]},e.nestedRadical=u,e.radicalNestingDepth=d,e.openingRadical=function(t){return u(t,Q.LOCALE.MESSAGES.MS.STARTROOT)},e.closingRadical=function(t){return u(t,Q.LOCALE.MESSAGES.MS.ENDROOT)},e.indexRadical=function(t){return u(t,Q.LOCALE.MESSAGES.MS.ROOTINDEX)},e.enlargeFence=h,a.Grammar.getInstance().setCorrection("enlargeFence",h),e.NUMBER_PROPAGATORS_=["multirel","relseq","appl","row","line"],e.NUMBER_INHIBITORS_=["subscript","superscript","overscore","underscore"],e.checkParent_=p,e.propagateNumber=m,(0,l.register)(new T.SemanticVisitor("nemeth","number",m,{number:!0})),e.relationIterator=function(t,e){const n=t.slice(0);let a,l=!0;return a=t.length>0?o.evalXPath("../../content/*",t[0]):[],function(){const t=a.shift(),o=n.shift(),T=n[0],u=e?[r.AuditoryDescription.create({text:e},{translate:!0})]:[];if(!t)return u;const d=o?c.nestedSubSuper(o,"",{sup:Q.LOCALE.MESSAGES.MS.SUPER,sub:Q.LOCALE.MESSAGES.MS.SUB}):"",h=o&&"EMPTY"!==i.tagName(o)||l&&t.parentNode.parentNode&&t.parentNode.parentNode.previousSibling?[r.AuditoryDescription.create({text:Q.LOCALE.MESSAGES.regexp.SPACE+d},{})]:[],p=T&&"EMPTY"!==i.tagName(T)||!a.length&&t.parentNode.parentNode&&t.parentNode.parentNode.nextSibling?[r.AuditoryDescription.create({text:Q.LOCALE.MESSAGES.regexp.SPACE},{})]:[],m=s.default.evaluateNode(t);return l=!1,u.concat(h,m,p)}},e.implicitIterator=function(t,e){const n=t.slice(0);let a;return a=t.length>0?o.evalXPath("../../content/*",t[0]):[],function(){const t=n.shift(),o=n[0],s=a.shift(),l=e?[r.AuditoryDescription.create({text:e},{translate:!0})]:[];if(!s)return l;const T=t&&"NUMBER"===i.tagName(t),c=o&&"NUMBER"===i.tagName(o);return l.concat(T&&c&&"space"===s.getAttribute("role")?[r.AuditoryDescription.create({text:Q.LOCALE.MESSAGES.regexp.SPACE},{})]:[])}}},9035:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ordinalPosition=e.vulgarFraction=e.wordCounter=e.ordinalCounter=void 0;const r=n(4752),i=n(7041),o=n(3826),a=n(1404);e.ordinalCounter=function(t,e){let n=0;return function(){return o.LOCALE.NUMBERS.numericOrdinal(++n)+" "+e}},e.wordCounter=function(t,e){let n=0;return function(){return o.LOCALE.NUMBERS.numberToOrdinal(++n,!1)+" "+e}},e.vulgarFraction=function(t){const e=(0,a.convertVulgarFraction)(t,o.LOCALE.MESSAGES.MS.FRAC_OVER);return e.convertible&&e.enumerator&&e.denominator?[new r.Span(o.LOCALE.NUMBERS.numberToWords(e.enumerator),{extid:t.childNodes[0].childNodes[0].getAttribute("extid"),separator:""}),new r.Span(o.LOCALE.NUMBERS.vulgarSep,{separator:""}),new r.Span(o.LOCALE.NUMBERS.numberToOrdinal(e.denominator,1!==e.enumerator),{extid:t.childNodes[0].childNodes[1].getAttribute("extid")})]:[new r.Span(e.content||"",{extid:t.getAttribute("extid")})]},e.ordinalPosition=function(t){const e=i.toArray(t.parentNode.childNodes);return o.LOCALE.NUMBERS.numericOrdinal(e.indexOf(t)+1).toString()}},8998:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.BrailleRules=e.OtherRules=e.PrefixRules=void 0;const r=n(3113),i=n(8159),o=n(1849),a=n(3026),s=n(9035),l=n(3445);e.PrefixRules=function(){l.addStore("en.prefix.default","",{CSFordinalPosition:s.ordinalPosition})},e.OtherRules=function(){l.addStore("en.speech.chromevox","",{CTFnodeCounter:i.nodeCounter,CTFcontentIterator:i.contentIterator}),l.addStore("en.speech.emacspeak","en.speech.chromevox",{CQFvulgarFractionSmall:o.isSmallVulgarFraction,CSFvulgarFraction:s.vulgarFraction})},e.BrailleRules=function(){l.addStore("nemeth.braille.default",r.DynamicCstr.BASE_LOCALE+".speech.mathspeak",{CSFopenFraction:a.openingFraction,CSFcloseFraction:a.closingFraction,CSFoverFraction:a.overFraction,CSFoverBevFraction:a.overBevelledFraction,CQFhyperFraction:a.hyperFractionBoundary,CSFopenRadical:a.openingRadical,CSFcloseRadical:a.closingRadical,CSFindexRadical:a.indexRadical,CSFsubscript:o.subscriptVerbose,CSFsuperscript:o.superscriptVerbose,CSFbaseline:o.baselineVerbose,CGFtensorRules:t=>o.generateTensorRules(t,!1),CTFrelationIterator:a.relationIterator,CTFimplicitIterator:a.implicitIterator})}},7044:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.init=e.INIT_=void 0;const r=n(3126),i=n(4510),o=n(8998);e.INIT_=!1,e.init=function(){e.INIT_||((0,i.MathspeakRules)(),(0,r.ClearspeakRules)(),(0,o.PrefixRules)(),(0,o.OtherRules)(),(0,o.BrailleRules)(),e.INIT_=!0)}},3445:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getStore=e.addStore=e.funcStore=void 0;const r=n(3113);e.funcStore=new Map,e.addStore=function(t,n,r){const i={};if(n){const t=e.funcStore.get(n)||{};Object.assign(i,t)}e.funcStore.set(t,Object.assign(i,r))},e.getStore=function(t,n,i){return e.funcStore.get([t,n,i].join("."))||e.funcStore.get([r.DynamicCstr.DEFAULT_VALUES[r.Axis.LOCALE],n,i].join("."))||e.funcStore.get([r.DynamicCstr.BASE_LOCALE,n,i].join("."))||{}}},3672:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.oneLeft=e.leftMostUnit=e.rightMostUnit=e.unitMultipliers=void 0;const r=n(2975),i=n(1746),o=n(3826);e.unitMultipliers=function(t,e){const n=t;let i=0;return function(){const t=r.AuditoryDescription.create({text:s(n[i])&&l(n[i+1])?o.LOCALE.MESSAGES.unitTimes:""},{});return i++,[t]}};const a=["superscript","subscript","overscore","underscore"];function s(t){for(;t;){if("unit"===t.getAttribute("role"))return!0;const e=t.tagName,n=i.evalXPath("children/*",t);t=-1!==a.indexOf(e)?n[0]:n[n.length-1]}return!1}function l(t){for(;t;){if("unit"===t.getAttribute("role"))return!0;t=i.evalXPath("children/*",t)[0]}return!1}e.rightMostUnit=s,e.leftMostUnit=l,e.oneLeft=function(t){for(;t;){if("number"===t.tagName&&"1"===t.textContent)return[t];if("infixop"!==t.tagName||"multiplication"!==t.getAttribute("role")&&"implicit"!==t.getAttribute("role"))return[];t=i.evalXPath("children/*",t)[0]}return[]}},2780:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractWalker=void 0;const r=n(2975),i=n(840),o=n(7041),a=n(9686),s=n(317),l=n(5390),T=n(7206),Q=n(3826),c=n(7534),u=n(5594),d=n(4493),h=n(2421),p=n(9050),m=n(712),f=n(154),y=n(9947),g=n(3294),L=n(1746);class b{constructor(t,e,n,r){this.node=t,this.generator=e,this.highlighter=n,this.modifier=!1,this.keyMapping=new Map([[l.KeyCode.UP,this.up.bind(this)],[l.KeyCode.DOWN,this.down.bind(this)],[l.KeyCode.RIGHT,this.right.bind(this)],[l.KeyCode.LEFT,this.left.bind(this)],[l.KeyCode.TAB,this.repeat.bind(this)],[l.KeyCode.DASH,this.expand.bind(this)],[l.KeyCode.SPACE,this.depth.bind(this)],[l.KeyCode.HOME,this.home.bind(this)],[l.KeyCode.X,this.summary.bind(this)],[l.KeyCode.Z,this.detail.bind(this)],[l.KeyCode.V,this.virtualize.bind(this)],[l.KeyCode.P,this.previous.bind(this)],[l.KeyCode.U,this.undo.bind(this)],[l.KeyCode.LESS,this.previousRules.bind(this)],[l.KeyCode.GREATER,this.nextRules.bind(this)]]),this.cursors=[],this.xml_=null,this.rebuilt_=null,this.focus_=null,this.active_=!1,this.node.id?this.id=this.node.id:this.node.hasAttribute(b.SRE_ID_ATTR)?this.id=this.node.getAttribute(b.SRE_ID_ATTR):(this.node.setAttribute(b.SRE_ID_ATTR,b.ID_COUNTER.toString()),this.id=b.ID_COUNTER++),this.rootNode=g.getSemanticRoot(t),this.rootId=this.rootNode.getAttribute(T.Attribute.ID),this.xmlString_=r,this.moved=y.WalkerMoves.ENTER}getXml(){return this.xml_||(this.xml_=o.parseInput(this.xmlString_)),this.xml_}getRebuilt(){return this.rebuilt_||this.rebuildStree(),this.rebuilt_}isActive(){return this.active_}activate(){this.isActive()||(this.generator.start(),this.toggleActive_())}deactivate(){this.isActive()&&(y.WalkerState.setState(this.id,this.primaryId()),this.generator.end(),this.toggleActive_())}getFocus(t=!1){return this.focus_||(this.focus_=this.singletonFocus(this.rootId)),t&&this.updateFocus(),this.focus_}setFocus(t){this.focus_=t}getDepth(){return this.levels.depth()-1}isSpeech(){return this.generator.modality===T.Attribute.SPEECH}focusDomNodes(){return this.getFocus().getDomNodes()}focusSemanticNodes(){return this.getFocus().getSemanticNodes()}speech(){const t=this.focusDomNodes();if(!t.length)return"";const e=this.specialMove();if(null!==e)return e;switch(this.moved){case y.WalkerMoves.DEPTH:return this.depth_();case y.WalkerMoves.SUMMARY:return this.summary_();case y.WalkerMoves.DETAIL:return this.detail_();default:{const e=[],n=this.focusSemanticNodes();for(let r=0,i=t.length;r<i;r++){const i=t[r],o=n[r];e.push(i?this.generator.getSpeech(i,this.getXml()):h.recomputeMarkup(o))}return this.mergePrefix_(e)}}}move(t){const e=this.keyMapping.get(t);if(!e)return null;const n=e();return!(!n||n===this.getFocus()||(this.setFocus(n),this.moved===y.WalkerMoves.HOME&&(this.levels=this.initLevels()),0))}up(){return this.moved=y.WalkerMoves.UP,this.getFocus()}down(){return this.moved=y.WalkerMoves.DOWN,this.getFocus()}left(){return this.moved=y.WalkerMoves.LEFT,this.getFocus()}right(){return this.moved=y.WalkerMoves.RIGHT,this.getFocus()}repeat(){return this.moved=y.WalkerMoves.REPEAT,this.getFocus().clone()}depth(){return this.moved=this.isSpeech()?y.WalkerMoves.DEPTH:y.WalkerMoves.REPEAT,this.getFocus().clone()}home(){return this.moved=y.WalkerMoves.HOME,this.singletonFocus(this.rootId)}getBySemanticId(t){return g.getBySemanticId(this.node,t)}primaryId(){return this.getFocus().getSemanticPrimary().id.toString()}expand(){const t=this.getFocus().getDomPrimary(),e=this.actionable_(t);return e?(this.moved=y.WalkerMoves.EXPAND,e.dispatchEvent(new Event("click")),this.getFocus().clone()):this.getFocus()}expandable(t){return!!this.actionable_(t)&&0===t.childNodes.length}collapsible(t){return!!this.actionable_(t)&&t.childNodes.length>0}restoreState(){if(!this.highlighter)return;const t=y.WalkerState.getState(this.id);if(!t)return;let e=this.getRebuilt().nodeDict[t];const n=[];for(;e;)n.push(e.id),e=e.parent;for(n.pop();n.length>0;){this.down();const t=n.pop(),e=this.findFocusOnLevel(t);if(!e)break;this.setFocus(e)}this.moved=y.WalkerMoves.ENTER}updateFocus(){this.setFocus(m.Focus.factory(this.getFocus().getSemanticPrimary().id.toString(),this.getFocus().getSemanticNodes().map((t=>t.id.toString())),this.getRebuilt(),this.node))}rebuildStree(){this.rebuilt_=new f.RebuildStree(this.getXml()),this.rootId=this.rebuilt_.stree.root.id.toString(),this.generator.setRebuilt(this.rebuilt_),this.skeleton=u.SemanticSkeleton.fromTree(this.rebuilt_.stree),this.skeleton.populate(),this.focus_=this.singletonFocus(this.rootId),this.levels=this.initLevels(),h.connectMactions(this.node,this.getXml(),this.rebuilt_.xml)}previousLevel(){const t=this.getFocus().getDomPrimary();return t?g.getAttribute(t,T.Attribute.PARENT):this.getFocus().getSemanticPrimary().parent.id.toString()}nextLevel(){const t=this.getFocus().getDomPrimary();let e,n;if(t){e=g.splitAttribute(g.getAttribute(t,T.Attribute.CHILDREN)),n=g.splitAttribute(g.getAttribute(t,T.Attribute.CONTENT));const r=g.getAttribute(t,T.Attribute.TYPE),i=g.getAttribute(t,T.Attribute.ROLE);return this.combineContentChildren(r,i,n,e)}const r=t=>t.id.toString(),i=this.getRebuilt().nodeDict[this.primaryId()];return e=i.childNodes.map(r),n=i.contentNodes.map(r),0===e.length?[]:this.combineContentChildren(i.type,i.role,n,e)}singletonFocus(t){this.getRebuilt();const e=this.retrieveVisuals(t);return this.focusFromId(t,e)}retrieveVisuals(t){if(!this.skeleton)return[t];const e=parseInt(t,10),n=this.skeleton.subtreeNodes(e);if(!n.length)return[t];n.unshift(e);const r={},i=[];L.updateEvaluator(this.getXml());for(const t of n)r[t]||(i.push(t.toString()),r[t]=!0,this.subtreeIds(t,r));return i}subtreeIds(t,e){const n=L.evalXPath(`//*[@data-semantic-id="${t}"]`,this.getXml());L.evalXPath("*//@data-semantic-id",n[0]).forEach((t=>e[parseInt(t.textContent,10)]=!0))}focusFromId(t,e){return m.Focus.factory(t,e,this.getRebuilt(),this.node)}summary(){return this.moved=this.isSpeech()?y.WalkerMoves.SUMMARY:y.WalkerMoves.REPEAT,this.getFocus().clone()}detail(){return this.moved=this.isSpeech()?y.WalkerMoves.DETAIL:y.WalkerMoves.REPEAT,this.getFocus().clone()}specialMove(){return null}virtualize(t){return this.cursors.push({focus:this.getFocus(),levels:this.levels,undo:t||!this.cursors.length}),this.levels=this.levels.clone(),this.getFocus().clone()}previous(){const t=this.cursors.pop();return t?(this.levels=t.levels,t.focus):this.getFocus()}undo(){let t;do{t=this.cursors.pop()}while(t&&!t.undo);return t?(this.levels=t.levels,t.focus):this.getFocus()}update(t){this.generator.setOptions(t),(0,s.setup)(t).then((()=>d.generator("Tree").getSpeech(this.node,this.getXml())))}nextRules(){const t=this.generator.getOptions();return"speech"!==t.modality?this.getFocus():(a.DOMAIN_TO_STYLES[t.domain]=t.style,t.domain="mathspeak"===t.domain?"clearspeak":"mathspeak",t.style=a.DOMAIN_TO_STYLES[t.domain],this.update(t),this.moved=y.WalkerMoves.REPEAT,this.getFocus().clone())}nextStyle(t,e){if("mathspeak"===t){const t=["default","brief","sbrief"],n=t.indexOf(e);return-1===n?e:n>=t.length-1?t[0]:t[n+1]}if("clearspeak"===t){const t=p.ClearspeakPreferences.getLocalePreferences().en;if(!t)return"default";const n=p.ClearspeakPreferences.relevantPreferences(this.getFocus().getSemanticPrimary()),r=p.ClearspeakPreferences.findPreference(e,n),i=t[n].map((function(t){return t.split("_")[1]})),o=i.indexOf(r);if(-1===o)return e;const a=o>=i.length-1?i[0]:i[o+1];return p.ClearspeakPreferences.addPreference(e,n,a)}return e}previousRules(){const t=this.generator.getOptions();return"speech"!==t.modality?this.getFocus():(t.style=this.nextStyle(t.domain,t.style),this.update(t),this.moved=y.WalkerMoves.REPEAT,this.getFocus().clone())}refocus(){let t,e=this.getFocus();for(;!e.getNodes().length;){t=this.levels.peek();const n=this.up();if(!n)break;this.setFocus(n),e=this.getFocus(!0)}this.levels.push(t),this.setFocus(e)}toggleActive_(){this.active_=!this.active_}mergePrefix_(t,e=[]){const n=this.isSpeech()?this.prefix_():"";n&&t.unshift(n);const r=this.isSpeech()?this.postfix_():"";return r&&t.push(r),i.finalize(i.merge(e.concat(t)))}prefix_(){const t=this.getFocus().getDomNodes(),e=this.getFocus().getSemanticNodes();return t[0]?g.getAttribute(t[0],T.Attribute.PREFIX):h.retrievePrefix(e[0])}postfix_(){const t=this.getFocus().getDomNodes();return t[0]?g.getAttribute(t[0],T.Attribute.POSTFIX):""}depth_(){const t=c.Grammar.getInstance().getParameter("depth");c.Grammar.getInstance().setParameter("depth",!0);const e=this.getFocus().getDomPrimary(),n=this.expandable(e)?Q.LOCALE.MESSAGES.navigate.EXPANDABLE:this.collapsible(e)?Q.LOCALE.MESSAGES.navigate.COLLAPSIBLE:"",o=Q.LOCALE.MESSAGES.navigate.LEVEL+" "+this.getDepth(),a=this.getFocus().getSemanticNodes(),s=h.retrievePrefix(a[0]),l=[new r.AuditoryDescription({text:o,personality:{}}),new r.AuditoryDescription({text:s,personality:{}}),new r.AuditoryDescription({text:n,personality:{}})];return c.Grammar.getInstance().setParameter("depth",t),i.finalize(i.markup(l))}actionable_(t){const e=null==t?void 0:t.parentNode;return e&&this.highlighter.isMactionNode(e)?e:null}summary_(){const t=this.getFocus().getSemanticPrimary().id.toString(),e=this.getRebuilt().xml.getAttribute("id")===t?this.getRebuilt().xml:o.querySelectorAllByAttrValue(this.getRebuilt().xml,"id",t)[0],n=h.retrieveSummary(e);return this.mergePrefix_([n])}detail_(){const t=this.getFocus().getSemanticPrimary().id.toString(),e=this.getRebuilt().xml.getAttribute("id")===t?this.getRebuilt().xml:o.querySelectorAllByAttrValue(this.getRebuilt().xml,"id",t)[0],n=e.getAttribute("alternative");e.removeAttribute("alternative");const r=h.computeMarkup(e),i=this.mergePrefix_([r]);return e.setAttribute("alternative",n),i}}e.AbstractWalker=b,b.ID_COUNTER=0,b.SRE_ID_ATTR="sre-explorer-id"},659:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.DummyWalker=void 0;const r=n(2780);class i extends r.AbstractWalker{up(){return null}down(){return null}left(){return null}right(){return null}repeat(){return null}depth(){return null}home(){return null}getDepth(){return 0}initLevels(){return null}combineContentChildren(t,e,n,r){return[]}findFocusOnLevel(t){return null}}e.DummyWalker=i},712:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Focus=void 0;const r=n(3294);class i{constructor(t,e){this.nodes=t,this.primary=e,this.domNodes=[],this.domPrimary_=null,this.allNodes=[]}static factory(t,e,n,o){const a=t=>r.getBySemanticId(o,t),s=n.nodeDict,l=a(t),T=e.map(a),Q=e.map((function(t){return s[t]})),c=new i(Q,s[t]);return c.domNodes=T,c.domPrimary_=l,c.allNodes=i.generateAllVisibleNodes_(e,T,s,o),c}static generateAllVisibleNodes_(t,e,n,o){const a=t=>r.getBySemanticId(o,t);let s=[];for(let r=0,l=t.length;r<l;r++){if(e[r]){s.push(e[r]);continue}const l=n[t[r]];if(!l)continue;const T=l.childNodes.map((function(t){return t.id.toString()})),Q=T.map(a);s=s.concat(i.generateAllVisibleNodes_(T,Q,n,o))}return s}getSemanticPrimary(){return this.primary}getSemanticNodes(){return this.nodes}getNodes(){return this.allNodes}getDomNodes(){return this.domNodes}getDomPrimary(){return this.domPrimary_}toString(){return"Primary:"+this.domPrimary_+" Nodes:"+this.domNodes}clone(){const t=new i(this.nodes,this.primary);return t.domNodes=this.domNodes,t.domPrimary_=this.domPrimary_,t.allNodes=this.allNodes,t}}e.Focus=i},2604:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.Levels=void 0;class n{constructor(){this.level_=[]}push(t){this.level_.push(t)}pop(){return this.level_.pop()}peek(){return this.level_[this.level_.length-1]||null}indexOf(t){const e=this.peek();return e?e.indexOf(t):null}find(t){const e=this.peek();if(!e)return null;for(let n=0,r=e.length;n<r;n++)if(t(e[n]))return e[n];return null}get(t){const e=this.peek();return!e||t<0||t>=e.length?null:e[t]}depth(){return this.level_.length}clone(){const t=new n;return t.level_=this.level_.slice(0),t}toString(){let t="";for(let e,n=0;e=this.level_[n];n++)t+="\n"+e.map((function(t){return t.toString()}));return t}}e.Levels=n},154:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.RebuildStree=void 0;const r=n(7206),i=n(218),o=n(5349),a=n(3342),s=n(5594),l=n(1250),T=n(3294);class Q{constructor(t){this.mathml=t,this.factory=new o.SemanticNodeFactory,this.nodeDict={},this.mmlRoot=T.getSemanticRoot(t),this.streeRoot=this.assembleTree(this.mmlRoot),this.stree=l.SemanticTree.fromNode(this.streeRoot,this.mathml),this.xml=this.stree.xml(),a.default.getInstance().setNodeFactory(this.factory)}static textContent(t,e,n){if(!n&&e.textContent)return void(t.textContent=e.textContent);const i=T.splitAttribute(T.getAttribute(e,r.Attribute.OPERATOR));i.length>1&&(t.textContent=i[1])}static isPunctuated(t){return!s.SemanticSkeleton.simpleCollapseStructure(t)&&t[1]&&s.SemanticSkeleton.contentCollapseStructure(t[1])}getTree(){return this.stree}assembleTree(t){const e=this.makeNode(t),n=T.splitAttribute(T.getAttribute(t,r.Attribute.CHILDREN)),i=T.splitAttribute(T.getAttribute(t,r.Attribute.CONTENT));if(0===i.length&&0===n.length)return Q.textContent(e,t),e;if(i.length>0){const t=T.getBySemanticId(this.mathml,i[0]);t&&Q.textContent(e,t,!0)}e.contentNodes=i.map((t=>this.setParent(t,e))),e.childNodes=n.map((t=>this.setParent(t,e)));const o=T.getAttribute(t,r.Attribute.COLLAPSED);return o?this.postProcess(e,o):e}makeNode(t){const e=T.getAttribute(t,r.Attribute.TYPE),n=T.getAttribute(t,r.Attribute.ROLE),i=T.getAttribute(t,r.Attribute.FONT),o=T.getAttribute(t,r.Attribute.ANNOTATION)||"",a=T.getAttribute(t,r.Attribute.ATTRIBUTES)||"",s=T.getAttribute(t,r.Attribute.ID),l=T.getAttribute(t,r.Attribute.EMBELLISHED),Q=T.getAttribute(t,r.Attribute.FENCEPOINTER),c=this.createNode(parseInt(s,10));return c.type=e,c.role=n,c.font=i||"unknown",c.parseAnnotation(o),c.parseAttributes(a),Q&&(c.fencePointer=Q),l&&(c.embellished=l),c}makePunctuation(t){const e=this.createNode(t);return e.updateContent((0,i.invisibleComma)()),e.role="dummy",e}makePunctuated(t,e,n){const r=this.createNode(e[0]);r.type="punctuated",r.embellished=t.embellished,r.fencePointer=t.fencePointer,r.role=n;const i=e.splice(1,1)[0].slice(1);r.contentNodes=i.map(this.makePunctuation.bind(this)),this.collapsedChildren_(e)}makeEmpty(t,e,n){const r=this.createNode(e);r.type="empty",r.embellished=t.embellished,r.fencePointer=t.fencePointer,r.role=n}makeIndex(t,e,n){if(Q.isPunctuated(e))return this.makePunctuated(t,e,n),void(e=e[0]);s.SemanticSkeleton.simpleCollapseStructure(e)&&!this.nodeDict[e.toString()]&&this.makeEmpty(t,e,n)}postProcess(t,e){const n=s.SemanticSkeleton.fromString(e).array;if("subsup"===t.type){const e=this.createNode(n[1][0]);return e.type="subscript",e.role="subsup",t.type="superscript",e.embellished=t.embellished,e.fencePointer=t.fencePointer,this.makeIndex(t,n[1][2],"rightsub"),this.makeIndex(t,n[2],"rightsuper"),this.collapsedChildren_(n),t}if("subscript"===t.type)return this.makeIndex(t,n[2],"rightsub"),this.collapsedChildren_(n),t;if("superscript"===t.type)return this.makeIndex(t,n[2],"rightsuper"),this.collapsedChildren_(n),t;if("tensor"===t.type)return this.makeIndex(t,n[2],"leftsub"),this.makeIndex(t,n[3],"leftsuper"),this.makeIndex(t,n[4],"rightsub"),this.makeIndex(t,n[5],"rightsuper"),this.collapsedChildren_(n),t;if("punctuated"===t.type){if(Q.isPunctuated(n)){const e=n.splice(1,1)[0].slice(1);t.contentNodes=e.map(this.makePunctuation.bind(this))}return t}if("underover"===t.type){const e=this.createNode(n[1][0]);return"overaccent"===t.childNodes[1].role?(e.type="overscore",t.type="underscore"):(e.type="underscore",t.type="overscore"),e.role="underover",e.embellished=t.embellished,e.fencePointer=t.fencePointer,this.collapsedChildren_(n),t}return t}createNode(t){const e=this.factory.makeNode(t);return this.nodeDict[t.toString()]=e,e}collapsedChildren_(t){const e=t=>{const n=this.nodeDict[t[0]];n.childNodes=[];for(let r=1,i=t.length;r<i;r++){const i=t[r];n.childNodes.push(s.SemanticSkeleton.simpleCollapseStructure(i)?this.nodeDict[i]:e(i))}return n};e(t)}setParent(t,e){const n=T.getBySemanticId(this.mathml,t),r=this.assembleTree(n);return r.parent=e,r}}e.RebuildStree=Q},5871:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SemanticWalker=void 0;const r=n(2780),i=n(2604);class o extends r.AbstractWalker{constructor(t,e,n,r){super(t,e,n,r),this.node=t,this.generator=e,this.highlighter=n,this.levels=null,this.restoreState()}initLevels(){const t=new i.Levels;return t.push([this.getFocus()]),t}up(){super.up();const t=this.previousLevel();return t?(this.levels.pop(),this.levels.find((function(e){return e.getSemanticNodes().some((function(e){return e.id.toString()===t}))}))):null}down(){super.down();const t=this.nextLevel();return 0===t.length?null:(this.levels.push(t),t[0])}combineContentChildren(t,e,n,r){switch(t){case"relseq":case"infixop":case"multirel":return this.makePairList(r,n);case"prefixop":return[this.focusFromId(r[0],n.concat(r))];case"postfixop":return[this.focusFromId(r[0],r.concat(n))];case"matrix":case"vector":case"fenced":return[this.focusFromId(r[0],[n[0],r[0],n[1]])];case"cases":return[this.focusFromId(r[0],[n[0],r[0]])];case"punctuated":return"text"===e?r.map(this.singletonFocus.bind(this)):r.length===n.length?n.map(this.singletonFocus.bind(this)):this.combinePunctuations(r,n,[],[]);case"appl":return[this.focusFromId(r[0],[r[0],n[0]]),this.singletonFocus(r[1])];case"root":return[this.singletonFocus(r[1]),this.singletonFocus(r[0])];default:return r.map(this.singletonFocus.bind(this))}}combinePunctuations(t,e,n,r){if(0===t.length)return r;const i=t.shift(),o=e.shift();return i===o?(n.push(o),this.combinePunctuations(t,e,n,r)):(e.unshift(o),n.push(i),t.length===e.length?(r.push(this.focusFromId(i,n.concat(e))),r):(r.push(this.focusFromId(i,n)),this.combinePunctuations(t,e,[],r)))}makePairList(t,e){if(0===t.length)return[];if(1===t.length)return[this.singletonFocus(t[0])];const n=[this.singletonFocus(t.shift())];for(let r=0,i=t.length;r<i;r++)n.push(this.focusFromId(t[r],[e[r],t[r]]));return n}left(){super.left();const t=this.levels.indexOf(this.getFocus());return null===t?null:this.levels.get(t-1)||null}right(){super.right();const t=this.levels.indexOf(this.getFocus());return null===t?null:this.levels.get(t+1)||null}findFocusOnLevel(t){return this.levels.find((e=>e.getSemanticPrimary().id===t))}}e.SemanticWalker=o},5744:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SyntaxWalker=void 0;const r=n(4422),i=n(2780),o=n(2604);class a extends i.AbstractWalker{constructor(t,e,n,r){super(t,e,n,r),this.node=t,this.generator=e,this.highlighter=n,this.levels=null,this.restoreState()}initLevels(){const t=new o.Levels;return t.push([this.primaryId()]),t}up(){super.up();const t=this.previousLevel();return t?(this.levels.pop(),this.singletonFocus(t)):null}down(){super.down();const t=this.nextLevel();if(0===t.length)return null;const e=this.singletonFocus(t[0]);return e&&this.levels.push(t),e}combineContentChildren(t,e,n,i){switch(t){case"relseq":case"infixop":case"multirel":return(0,r.interleaveLists)(i,n);case"prefixop":return n.concat(i);case"postfixop":return i.concat(n);case"matrix":case"vector":case"fenced":return i.unshift(n[0]),i.push(n[1]),i;case"cases":return i.unshift(n[0]),i;case"punctuated":return"text"===e?(0,r.interleaveLists)(i,n):i;case"appl":return[i[0],n[0],i[1]];case"root":return[i[1],i[0]];default:return i}}left(){super.left();const t=this.levels.indexOf(this.primaryId());if(null===t)return null;const e=this.levels.get(t-1);return e?this.singletonFocus(e):null}right(){super.right();const t=this.levels.indexOf(this.primaryId());if(null===t)return null;const e=this.levels.get(t+1);return e?this.singletonFocus(e):null}findFocusOnLevel(t){return this.singletonFocus(t.toString())}focusDomNodes(){return[this.getFocus().getDomPrimary()]}focusSemanticNodes(){return[this.getFocus().getSemanticPrimary()]}}e.SyntaxWalker=a},1309:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.TableWalker=void 0;const r=n(7041),i=n(5390),o=n(5744),a=n(9947);class s extends o.SyntaxWalker{constructor(t,e,n,r){super(t,e,n,r),this.node=t,this.generator=e,this.highlighter=n,this.firstJump=null,this.key_=null,this.row_=0,this.currentTable_=null,this.keyMapping.set(i.KeyCode.ZERO,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.ONE,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.TWO,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.THREE,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.FOUR,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.FIVE,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.SIX,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.SEVEN,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.EIGHT,this.jumpCell.bind(this)),this.keyMapping.set(i.KeyCode.NINE,this.jumpCell.bind(this))}move(t){this.key_=t;const e=super.move(t);return this.modifier=!1,e}up(){return this.moved=a.WalkerMoves.UP,this.eligibleCell_()?this.verticalMove_(!1):super.up()}down(){return this.moved=a.WalkerMoves.DOWN,this.eligibleCell_()?this.verticalMove_(!0):super.down()}jumpCell(){if(!this.isInTable_()||null===this.key_)return this.getFocus();if(this.moved===a.WalkerMoves.ROW){this.moved=a.WalkerMoves.CELL;const t=this.key_-i.KeyCode.ZERO;return this.isLegalJump_(this.row_,t)?this.jumpCell_(this.row_,t):this.getFocus()}const t=this.key_-i.KeyCode.ZERO;return t>this.currentTable_.childNodes.length?this.getFocus():(this.row_=t,this.moved=a.WalkerMoves.ROW,this.getFocus().clone())}undo(){const t=super.undo();return t===this.firstJump&&(this.firstJump=null),t}eligibleCell_(){const t=this.getFocus().getSemanticPrimary();return this.modifier&&"cell"===t.type&&-1!==s.ELIGIBLE_CELL_ROLES.indexOf(t.role)}verticalMove_(t){const e=this.previousLevel();if(!e)return null;const n=this.getFocus(),r=this.levels.indexOf(this.primaryId()),i=this.levels.pop(),o=this.levels.indexOf(e),a=this.levels.get(t?o+1:o-1);if(!a)return this.levels.push(i),null;this.setFocus(this.singletonFocus(a));const s=this.nextLevel();return s[r]?(this.levels.push(s),this.singletonFocus(s[r])):(this.setFocus(n),this.levels.push(i),null)}jumpCell_(t,e){this.firstJump?this.virtualize(!1):(this.firstJump=this.getFocus(),this.virtualize(!0));const n=this.currentTable_.id.toString();let r;do{r=this.levels.pop()}while(-1===r.indexOf(n));this.levels.push(r),this.setFocus(this.singletonFocus(n)),this.levels.push(this.nextLevel());const i=this.currentTable_.childNodes[t-1];return this.setFocus(this.singletonFocus(i.id.toString())),this.levels.push(this.nextLevel()),this.singletonFocus(i.childNodes[e-1].id.toString())}isLegalJump_(t,e){const n=r.querySelectorAllByAttrValue(this.getRebuilt().xml,"id",this.currentTable_.id.toString())[0];if(!n||n.hasAttribute("alternative"))return!1;const i=this.currentTable_.childNodes[t-1];if(!i)return!1;const o=r.querySelectorAllByAttrValue(n,"id",i.id.toString())[0];return!(!o||o.hasAttribute("alternative")||!i||!i.childNodes[e-1])}isInTable_(){let t=this.getFocus().getSemanticPrimary();for(;t;){if(-1!==s.ELIGIBLE_TABLE_TYPES.indexOf(t.type))return this.currentTable_=t,!0;t=t.parent}return!1}}e.TableWalker=s,s.ELIGIBLE_CELL_ROLES=["determinant","rowvector","binomial","squarematrix","multiline","matrix","vector","cases","table"],s.ELIGIBLE_TABLE_TYPES=["multiline","matrix","vector","cases","table"]},9947:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.WalkerState=e.WalkerMoves=void 0,function(t){t.UP="up",t.DOWN="down",t.LEFT="left",t.RIGHT="right",t.REPEAT="repeat",t.DEPTH="depth",t.ENTER="enter",t.EXPAND="expand",t.HOME="home",t.SUMMARY="summary",t.DETAIL="detail",t.ROW="row",t.CELL="cell"}(e.WalkerMoves||(e.WalkerMoves={}));class n{static resetState(t){delete n.STATE[t]}static setState(t,e){n.STATE[t]=e}static getState(t){return n.STATE[t]}}e.WalkerState=n,n.STATE={}},2338:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.walkerMapping_=e.walker=void 0;const r=n(659),i=n(5871),o=n(5744),a=n(1309);e.walker=function(t,n,r,i,o){return(e.walkerMapping_[t.toLowerCase()]||e.walkerMapping_.dummy)(n,r,i,o)},e.walkerMapping_={dummy:(t,e,n,i)=>new r.DummyWalker(t,e,n,i),semantic:(t,e,n,r)=>new i.SemanticWalker(t,e,n,r),syntax:(t,e,n,r)=>new o.SyntaxWalker(t,e,n,r),table:(t,e,n,r)=>new a.TableWalker(t,e,n,r)}},3294:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.getBySemanticId=e.getSemanticRoot=e.getAttribute=e.splitAttribute=void 0;const r=n(7041),i=n(7206);e.splitAttribute=function(t){return t?t.split(/,/):[]},e.getAttribute=function(t,e){return t.getAttribute(e)},e.getSemanticRoot=function(t){if(t.hasAttribute(i.Attribute.TYPE)&&!t.hasAttribute(i.Attribute.PARENT))return t;const e=r.querySelectorAllByAttr(t,i.Attribute.TYPE);for(let t,n=0;t=e[n];n++)if(!t.hasAttribute(i.Attribute.PARENT))return t;return t},e.getBySemanticId=function(t,e){return t.getAttribute(i.Attribute.ID)===e?t:r.querySelectorAllByAttrValue(t,i.Attribute.ID,e)[0]}}},__webpack_module_cache__={};function __nested_webpack_require_335610__(t){var e=__webpack_module_cache__[t];if(void 0!==e)return e.exports;var n=__webpack_module_cache__[t]={exports:{}};return __webpack_modules__[t].call(n.exports,n,n.exports,__nested_webpack_require_335610__),n.exports}__nested_webpack_require_335610__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}();var __nested_webpack_exports__=__nested_webpack_require_335610__(8729);return __nested_webpack_exports__})(),module.exports=t()},7493:(t,e,n)=>{"use strict";e.M=void 0;var r=n(1635),i=n(5810),o=n(4666),a=n(8210),s=/^\$\$[\s\S]*\$\$$/,l=/^\\\[[\s\S]*\\\]$/,T=/^\\\([\s\S]*\\\)$/,Q=/^\$[\s\S]*\$$/,c=/^\\begin\{[^}]+\}[\s\S]*\\end\{[^}]+\}$/,u={accessibility:{assistive_mml:!0,include_speech:!1},outMath:{output_format:"svg",include_svg:!0},width:1200},d=function(t){var e;if(function(t){var e=Array.from(t.childNodes).filter((function(t){var e;return!(t.nodeType===Node.TEXT_NODE&&!(null!==(e=t.textContent)&&void 0!==e?e:"").trim())}));return 1===e.length&&e[0].nodeType===Node.ELEMENT_NODE&&"math"===e[0].tagName.toLowerCase()}(t)){var n=function(t){var e=t.querySelector("math"),n="block"===(null==e?void 0:e.getAttribute("display"))||t.classList.contains("math-block");return{mathml:e.outerHTML,display:n}}(t);return{kind:"mathml",mathml:n.mathml,display:n.display}}if(function(t){if(t.hasAttribute("data-mathpix-typeset"))return!0;var e=["mjx-container","mjx-container[jax]","mjx-assistive-mml","[data-mjx-container]",".mjx-container",".MathJax"].join(",");return null!==t.querySelector(e)}(t))return null;if(Array.from(t.childNodes).some((function(t){return t.nodeType===Node.ELEMENT_NODE&&"br"!==t.tagName.toLowerCase()})))return null;var r=function(t){var e=(null!=t?t:"").trim();return e?s.test(e)||l.test(e)?{tex:e.slice(2,-2).trim(),display:!0}:T.test(e)?{tex:e.slice(2,-2).trim(),display:!1}:!Q.test(e)||e.startsWith("$$")&&e.endsWith("$$")?c.test(e)?{tex:e,display:!0}:null:{tex:e.slice(1,-1).trim(),display:!1}:null}(null!==(e=t.textContent)&&void 0!==e?e:"");return r?{kind:"tex",tex:r.tex,display:r.display}:null};e.M=function(t,e){return r.__awaiter(void 0,void 0,void 0,(function(){var n,a,s,l,T,Q,c,h,p,m,f,y,g,L,b,v,x;return r.__generator(this,(function(_){switch(_.label){case 0:return n=r.__assign(r.__assign(r.__assign({},u),e),{accessibility:r.__assign(r.__assign({},u.accessibility),null==e?void 0:e.accessibility),outMath:r.__assign(r.__assign({},u.outMath),null==e?void 0:e.outMath)}),a=n.outMath,s=n.width&&n.width>0?n.width:1200,l=Array.from(t.querySelectorAll(".math-inline, .math-block")),[4,(O=n.accessibility,r.__awaiter(void 0,void 0,void 0,(function(){var t,e,n,i,a;return r.__generator(this,(function(r){switch(r.label){case 0:return t=function(t){var e=t&&"object"==typeof t?t:null;return e?{assistiveMml:!0===e.assistive_mml,includeSpeech:!0===e.include_speech}:{assistiveMml:!1,includeSpeech:!1}}(O),e=t.assistiveMml,n=t.includeSpeech,e||n?(i={},e&&(i.assistiveMml=!0),n?[4,(0,o.loadSreAsync)()]:[3,2]):[2,void 0];case 1:(a=r.sent())&&(i.sre=a),r.label=2;case 2:return[2,i]}}))})))];case 1:T=_.sent(),i.MathJax.beginRender(null==n?void 0:n.previewUuid),i.MathJax.Reset();try{for(Q=r.__values(l),c=Q.next();!c.done;c=Q.next())if(h=c.value,p=d(h))try{m={cwidth:s},f="mathml"===p.kind?i.MathJax.TypesetMathML(p.mathml,{display:p.display,metric:m,outMath:a,accessibility:T}):i.MathJax.Typeset(p.tex,{display:p.display,metric:m,outMath:a,accessibility:T}),H=h,w=f.html,H.innerHTML=w,(null==f?void 0:f.data)&&(y=h.classList.contains("math-inline"),g=h.classList.contains("math-block"),L=f.data.width,b=f.data.widthEx,g&&"full"===L&&h.setAttribute("data-width","full"),y&&"number"==typeof b&&b<2&&h.setAttribute("data-overflow","visible")),h.setAttribute("data-mathpix-typeset","true")}catch(t){console.error("[renderMathInElement] Failed to typeset node:",t,h)}}catch(t){v={error:t}}finally{try{c&&!c.done&&(x=Q.return)&&x.call(Q)}finally{if(v)throw v.error}}return[2]}var H,w,O}))}))};var h=function(){var t=window.MathpixRenderConfig||u;(0,e.M)(document.body,t).catch((function(t){console.error("[MathpixRender] autoRender failed:",t)}))};(0,a.isBrowser)()&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",h,{once:!0}):h(),window.MathpixRender={renderMathInElement:e.M})},8210:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isBrowser=void 0;e.isBrowser=function(){return"undefined"!=typeof window&&"undefined"!=typeof document}},9196:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.envArraysShouldBeFlattenInTSV=void 0,e.envArraysShouldBeFlattenInTSV=["array","gathered","aligned"]},9745:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.cssColors=void 0,e.cssColors=["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"]},5050:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.emojiIcons=void 0,e.emojiIcons=[{symbol:"💯",name:"100",width:"+0.6ex",textOnly:!1},{symbol:"🔢",name:"1234",width:"+0.6ex",textOnly:!1},{symbol:"😀",name:"grinning",width:"+0.6ex",textOnly:!1},{symbol:"😃",name:"smiley",width:"+0.6ex",textOnly:!1},{symbol:"😄",name:"smile",width:"+0.6ex",textOnly:!1},{symbol:"😁",name:"grin",width:"+0.6ex",textOnly:!1},{symbol:"😆",name:"laughing",width:"+0.6ex",textOnly:!1},{symbol:"😆",name:"satisfied",width:"+0.6ex",textOnly:!1},{symbol:"😅",name:"sweat_smile",width:"+0.6ex",textOnly:!1},{symbol:"😂",name:"joy",width:"+0.6ex",textOnly:!1},{symbol:"🤣",name:"rofl",width:"+0.6ex",textOnly:!1},{symbol:"☺️",name:"relaxed",width:"+0.6ex",textOnly:!1},{symbol:"😊",name:"blush",width:"+0.6ex",textOnly:!1},{symbol:"😇",name:"innocent",width:"+0.6ex",textOnly:!1},{symbol:"🙂",name:"slightly_smiling_face",width:"+0.6ex",textOnly:!1},{symbol:"🙃",name:"upside_down_face",width:"+0.6ex",textOnly:!1},{symbol:"😉",name:"wink",width:"+0.6ex",textOnly:!1},{symbol:"😌",name:"relieved",width:"+0.6ex",textOnly:!1},{symbol:"😍",name:"heart_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😘",name:"kissing_heart",width:"+0.6ex",textOnly:!1},{symbol:"😗",name:"kissing",width:"+0.6ex",textOnly:!1},{symbol:"😙",name:"kissing_smiling_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😚",name:"kissing_closed_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😋",name:"yum",width:"+0.6ex",textOnly:!1},{symbol:"😜",name:"stuck_out_tongue_winking_eye",width:"+0.6ex",textOnly:!1},{symbol:"😝",name:"stuck_out_tongue_closed_eyes",width:"+0.6ex",textOnly:!1},{symbol:"😛",name:"stuck_out_tongue",width:"+0.6ex",textOnly:!1},{symbol:"🤑",name:"money_mouth_face",width:"+0.6ex",textOnly:!1},{symbol:"🤗",name:"hugs",width:"+0.6ex",textOnly:!1},{symbol:"🤓",name:"nerd_face",width:"+0.6ex",textOnly:!1},{symbol:"😎",name:"sunglasses",width:"+0.6ex",textOnly:!1},{symbol:"🤡",name:"clown_face",width:"+0.6ex",textOnly:!1},{symbol:"🤠",name:"cowboy_hat_face",width:"+0.6ex",textOnly:!1},{symbol:"😏",name:"smirk",width:"+0.6ex",textOnly:!1},{symbol:"😒",name:"unamused",width:"+0.6ex",textOnly:!1},{symbol:"😞",name:"disappointed",width:"+0.6ex",textOnly:!1},{symbol:"😔",name:"pensive",width:"+0.6ex",textOnly:!1},{symbol:"😟",name:"worried",width:"+0.6ex",textOnly:!1},{symbol:"😕",name:"confused",width:"+0.6ex",textOnly:!1},{symbol:"🙁",name:"slightly_frowning_face",width:"+0.6ex",textOnly:!1},{symbol:"☹️",name:"frowning_face",width:"+0.6ex",textOnly:!1},{symbol:"😣",name:"persevere",width:"+0.6ex",textOnly:!1},{symbol:"😖",name:"confounded",width:"+0.6ex",textOnly:!1},{symbol:"😫",name:"tired_face",width:"+0.6ex",textOnly:!1},{symbol:"😩",name:"weary",width:"+0.6ex",textOnly:!1},{symbol:"😤",name:"triumph",width:"+0.6ex",textOnly:!1},{symbol:"😠",name:"angry",width:"+0.6ex",textOnly:!1},{symbol:"😡",name:"rage",width:"+0.6ex",textOnly:!1},{symbol:"😡",name:"pout",width:"+0.6ex",textOnly:!1},{symbol:"😶",name:"no_mouth",width:"+0.6ex",textOnly:!1},{symbol:"😐",name:"neutral_face",width:"+0.6ex",textOnly:!1},{symbol:"😑",name:"expressionless",width:"+0.6ex",textOnly:!1},{symbol:"😯",name:"hushed",width:"+0.6ex",textOnly:!1},{symbol:"😦",name:"frowning",width:"+0.6ex",textOnly:!1},{symbol:"😧",name:"anguished",width:"+0.6ex",textOnly:!1},{symbol:"😮",name:"open_mouth",width:"+0.6ex",textOnly:!1},{symbol:"😲",name:"astonished",width:"+0.6ex",textOnly:!1},{symbol:"😵",name:"dizzy_face",width:"+0.6ex",textOnly:!1},{symbol:"😳",name:"flushed",width:"+0.6ex",textOnly:!1},{symbol:"😱",name:"scream",width:"+0.6ex",textOnly:!1},{symbol:"😨",name:"fearful",width:"+0.6ex",textOnly:!1},{symbol:"😰",name:"cold_sweat",width:"+0.6ex",textOnly:!1},{symbol:"😢",name:"cry",width:"+0.6ex",textOnly:!1},{symbol:"😥",name:"disappointed_relieved",width:"+0.6ex",textOnly:!1},{symbol:"🤤",name:"drooling_face",width:"+0.6ex",textOnly:!1},{symbol:"😭",name:"sob",width:"+0.6ex",textOnly:!1},{symbol:"😓",name:"sweat",width:"+0.6ex",textOnly:!1},{symbol:"😪",name:"sleepy",width:"+0.6ex",textOnly:!1},{symbol:"😴",name:"sleeping",width:"+0.6ex",textOnly:!1},{symbol:"🙄",name:"roll_eyes",width:"+0.6ex",textOnly:!1},{symbol:"🤔",name:"thinking",width:"+0.6ex",textOnly:!1},{symbol:"🤥",name:"lying_face",width:"+0.6ex",textOnly:!1},{symbol:"😬",name:"grimacing",width:"+0.6ex",textOnly:!1},{symbol:"🤐",name:"zipper_mouth_face",width:"+0.6ex",textOnly:!1},{symbol:"🤢",name:"nauseated_face",width:"+0.6ex",textOnly:!1},{symbol:"🤧",name:"sneezing_face",width:"+0.6ex",textOnly:!1},{symbol:"😷",name:"mask",width:"+0.6ex",textOnly:!1},{symbol:"🤒",name:"face_with_thermometer",width:"+0.6ex",textOnly:!1},{symbol:"🤕",name:"face_with_head_bandage",width:"+0.6ex",textOnly:!1},{symbol:"😈",name:"smiling_imp",width:"+0.6ex",textOnly:!1},{symbol:"👿",name:"imp",width:"+0.6ex",textOnly:!1},{symbol:"👹",name:"japanese_ogre",width:"+0.6ex",textOnly:!1},{symbol:"👺",name:"japanese_goblin",width:"+0.6ex",textOnly:!1},{symbol:"💩",name:"hankey",width:"+0.6ex",textOnly:!1},{symbol:"💩",name:"poop",width:"+0.6ex",textOnly:!1},{symbol:"💩",name:"shit",width:"+0.6ex",textOnly:!1},{symbol:"👻",name:"ghost",width:"+0.6ex",textOnly:!1},{symbol:"💀",name:"skull",width:"+0.6ex",textOnly:!1},{symbol:"☠️",name:"skull_and_crossbones",width:"+0.6ex",textOnly:!1},{symbol:"👽",name:"alien",width:"+0.6ex",textOnly:!1},{symbol:"👾",name:"space_invader",width:"+0.6ex",textOnly:!1},{symbol:"🤖",name:"robot",width:"+0.6ex",textOnly:!1},{symbol:"🎃",name:"jack_o_lantern",width:"+0.6ex",textOnly:!1},{symbol:"😺",name:"smiley_cat",width:"+0.6ex",textOnly:!1},{symbol:"😸",name:"smile_cat",width:"+0.6ex",textOnly:!1},{symbol:"😹",name:"joy_cat",width:"+0.6ex",textOnly:!1},{symbol:"😻",name:"heart_eyes_cat",width:"+0.6ex",textOnly:!1},{symbol:"😼",name:"smirk_cat",width:"+0.6ex",textOnly:!1},{symbol:"😽",name:"kissing_cat",width:"+0.6ex",textOnly:!1},{symbol:"🙀",name:"scream_cat",width:"+0.6ex",textOnly:!1},{symbol:"😿",name:"crying_cat_face",width:"+0.6ex",textOnly:!1},{symbol:"😾",name:"pouting_cat",width:"+0.6ex",textOnly:!1},{symbol:"👐",name:"open_hands",width:"+0.6ex",textOnly:!1},{symbol:"🙌",name:"raised_hands",width:"+0.6ex",textOnly:!1},{symbol:"👏",name:"clap",width:"+0.6ex",textOnly:!1},{symbol:"🙏",name:"pray",width:"+0.6ex",textOnly:!1},{symbol:"🤝",name:"handshake",width:"+0.6ex",textOnly:!1},{symbol:"👍",name:"+1",width:"+0.6ex",textOnly:!1},{symbol:"👍",name:"thumbsup",width:"+0.6ex",textOnly:!1},{symbol:"👎",name:"-1",width:"+0.6ex",textOnly:!1},{symbol:"👎",name:"thumbsdown",width:"+0.6ex",textOnly:!1},{symbol:"👊",name:"fist_oncoming",width:"+0.6ex",textOnly:!1},{symbol:"👊",name:"facepunch",width:"+0.6ex",textOnly:!1},{symbol:"👊",name:"punch",width:"+0.6ex",textOnly:!1},{symbol:"✊",name:"fist_raised",width:"+0.6ex",textOnly:!1},{symbol:"✊",name:"fist",width:"+0.6ex",textOnly:!1},{symbol:"🤛",name:"fist_left",width:"+0.6ex",textOnly:!1},{symbol:"🤜",name:"fist_right",width:"+0.6ex",textOnly:!1},{symbol:"🤞",name:"crossed_fingers",width:"+0.6ex",textOnly:!1},{symbol:"✌️",name:"v",width:"+0.6ex",textOnly:!1},{symbol:"🤘",name:"metal",width:"+0.6ex",textOnly:!1},{symbol:"👌",name:"ok_hand",width:"+0.6ex",textOnly:!1},{symbol:"👈",name:"point_left",width:"+0.6ex",textOnly:!1},{symbol:"👉",name:"point_right",width:"+0.6ex",textOnly:!1},{symbol:"👆",name:"point_up_2",width:"+0.6ex",textOnly:!1},{symbol:"👇",name:"point_down",width:"+0.6ex",textOnly:!1},{symbol:"☝️",name:"point_up",width:"+0.6ex",textOnly:!1},{symbol:"✋",name:"hand",width:"+0.6ex",textOnly:!1},{symbol:"✋",name:"raised_hand",width:"+0.6ex",textOnly:!1},{symbol:"🤚",name:"raised_back_of_hand",width:"+0.6ex",textOnly:!1},{symbol:"🖐",name:"raised_hand_with_fingers_splayed",width:"+0.6ex",textOnly:!1},{symbol:"🖖",name:"vulcan_salute",width:"+0.6ex",textOnly:!1},{symbol:"👋",name:"wave",width:"+0.6ex",textOnly:!1},{symbol:"🤙",name:"call_me_hand",width:"+0.6ex",textOnly:!1},{symbol:"💪",name:"muscle",width:"+0.6ex",textOnly:!1},{symbol:"🖕",name:"middle_finger",width:"+0.6ex",textOnly:!1},{symbol:"🖕",name:"fu",width:"+0.6ex",textOnly:!1},{symbol:"✍️",name:"writing_hand",width:"+0.6ex",textOnly:!1},{symbol:"🤳",name:"selfie",width:"+0.6ex",textOnly:!1},{symbol:"💅",name:"nail_care",width:"+0.6ex",textOnly:!1},{symbol:"💍",name:"ring",width:"+0.6ex",textOnly:!1},{symbol:"💄",name:"lipstick",width:"+0.6ex",textOnly:!1},{symbol:"💋",name:"kiss",width:"+0.6ex",textOnly:!1},{symbol:"👄",name:"lips",width:"+0.6ex",textOnly:!1},{symbol:"👅",name:"tongue",width:"+0.6ex",textOnly:!1},{symbol:"👂",name:"ear",width:"+0.6ex",textOnly:!1},{symbol:"👃",name:"nose",width:"+0.6ex",textOnly:!1},{symbol:"👣",name:"footprints",width:"+0.6ex",textOnly:!1},{symbol:"👁",name:"eye",width:"+0.6ex",textOnly:!1},{symbol:"👀",name:"eyes",width:"+0.6ex",textOnly:!1},{symbol:"🗣",name:"speaking_head",width:"+0.6ex",textOnly:!1},{symbol:"👤",name:"bust_in_silhouette",width:"+0.6ex",textOnly:!1},{symbol:"👥",name:"busts_in_silhouette",width:"+0.6ex",textOnly:!1},{symbol:"👶",name:"baby",width:"+0.6ex",textOnly:!1},{symbol:"👦",name:"boy",width:"+0.6ex",textOnly:!1},{symbol:"👧",name:"girl",width:"+0.6ex",textOnly:!1},{symbol:"👨",name:"man",width:"+0.6ex",textOnly:!1},{symbol:"👩",name:"woman",width:"+0.6ex",textOnly:!1},{symbol:"👱‍♀",name:"blonde_woman",width:"+0.6ex",textOnly:!0},{symbol:"👱",name:"blonde_man",width:"+0.6ex",textOnly:!1},{symbol:"👱",name:"person_with_blond_hair",width:"+0.6ex",textOnly:!1},{symbol:"👴",name:"older_man",width:"+0.6ex",textOnly:!1},{symbol:"👵",name:"older_woman",width:"+0.6ex",textOnly:!1},{symbol:"👲",name:"man_with_gua_pi_mao",width:"+0.6ex",textOnly:!1},{symbol:"👳‍♀",name:"woman_with_turban",width:"+0.6ex",textOnly:!0},{symbol:"👳",name:"man_with_turban",width:"+0.6ex",textOnly:!1},{symbol:"👮‍♀",name:"policewoman",width:"+0.6ex",textOnly:!0},{symbol:"👮",name:"policeman",width:"+0.6ex",textOnly:!1},{symbol:"👮",name:"cop",width:"+0.6ex",textOnly:!1},{symbol:"👷‍♀",name:"construction_worker_woman",width:"+0.6ex",textOnly:!0},{symbol:"👷",name:"construction_worker_man",width:"+0.6ex",textOnly:!1},{symbol:"👷",name:"construction_worker",width:"+0.6ex",textOnly:!1},{symbol:"💂‍♀",name:"guardswoman",width:"+0.6ex",textOnly:!0},{symbol:"💂",name:"guardsman",width:"+0.6ex",textOnly:!1},{symbol:"🕵️‍♀️",name:"female_detective",width:"+0.6ex",textOnly:!0},{symbol:"🕵",name:"male_detective",width:"+0.6ex",textOnly:!1},{symbol:"🕵",name:"detective",width:"+0.6ex",textOnly:!1},{symbol:"👩‍⚕",name:"woman_health_worker",width:"+0.6ex",textOnly:!0},{symbol:"👨‍⚕",name:"man_health_worker",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🌾",name:"woman_farmer",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🌾",name:"man_farmer",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🍳",name:"woman_cook",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🍳",name:"man_cook",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🎓",name:"woman_student",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🎓",name:"man_student",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🎤",name:"woman_singer",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🎤",name:"man_singer",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🏫",name:"woman_teacher",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🏫",name:"man_teacher",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🏭",name:"woman_factory_worker",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🏭",name:"man_factory_worker",width:"+0.6ex",textOnly:!0},{symbol:"👩‍💻",name:"woman_technologist",width:"+0.6ex",textOnly:!0},{symbol:"👨‍💻",name:"man_technologist",width:"+0.6ex",textOnly:!0},{symbol:"👩‍💼",name:"woman_office_worker",width:"+0.6ex",textOnly:!0},{symbol:"👨‍💼",name:"man_office_worker",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🔧",name:"woman_mechanic",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🔧",name:"man_mechanic",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🔬",name:"woman_scientist",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🔬",name:"man_scientist",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🎨",name:"woman_artist",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🎨",name:"man_artist",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🚒",name:"woman_firefighter",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🚒",name:"man_firefighter",width:"+0.6ex",textOnly:!0},{symbol:"👩‍✈",name:"woman_pilot",width:"+0.6ex",textOnly:!0},{symbol:"👨‍✈",name:"man_pilot",width:"+0.6ex",textOnly:!0},{symbol:"👩‍🚀",name:"woman_astronaut",width:"+0.6ex",textOnly:!0},{symbol:"👨‍🚀",name:"man_astronaut",width:"+0.6ex",textOnly:!0},{symbol:"👩‍⚖",name:"woman_judge",width:"+0.6ex",textOnly:!0},{symbol:"👨‍⚖",name:"man_judge",width:"+0.6ex",textOnly:!0},{symbol:"🤶",name:"mrs_claus",width:"+0.6ex",textOnly:!1},{symbol:"🎅",name:"santa",width:"+0.6ex",textOnly:!1},{symbol:"👸",name:"princess",width:"+0.6ex",textOnly:!1},{symbol:"🤴",name:"prince",width:"+0.6ex",textOnly:!1},{symbol:"👰",name:"bride_with_veil",width:"+0.6ex",textOnly:!1},{symbol:"🤵",name:"man_in_tuxedo",width:"+0.6ex",textOnly:!1},{symbol:"👼",name:"angel",width:"+0.6ex",textOnly:!1},{symbol:"🤰",name:"pregnant_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙇‍♀",name:"bowing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🙇",name:"bowing_man",width:"+0.6ex",textOnly:!1},{symbol:"🙇",name:"bow",width:"+0.6ex",textOnly:!1},{symbol:"💁",name:"tipping_hand_woman",width:"+0.6ex",textOnly:!1},{symbol:"💁",name:"information_desk_person",width:"+0.6ex",textOnly:!1},{symbol:"💁",name:"sassy_woman",width:"+0.6ex",textOnly:!1},{symbol:"💁‍♂",name:"tipping_hand_man",width:"+0.6ex",textOnly:!0},{symbol:"💁‍♂",name:"sassy_man",width:"+0.6ex",textOnly:!0},{symbol:"🙅",name:"no_good_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙅",name:"no_good",width:"+0.6ex",textOnly:!1},{symbol:"🙅",name:"ng_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙅‍♂",name:"no_good_man",width:"+0.6ex",textOnly:!0},{symbol:"🙅‍♂",name:"ng_man",width:"+0.6ex",textOnly:!0},{symbol:"🙆",name:"ok_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙆‍♂",name:"ok_man",width:"+0.6ex",textOnly:!0},{symbol:"🙋",name:"raising_hand_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙋",name:"raising_hand",width:"+0.6ex",textOnly:!1},{symbol:"🙋‍♂",name:"raising_hand_man",width:"+0.6ex",textOnly:!0},{symbol:"🤦‍♀",name:"woman_facepalming",width:"+0.6ex",textOnly:!0},{symbol:"🤦‍♂",name:"man_facepalming",width:"+0.6ex",textOnly:!0},{symbol:"🤷‍♀",name:"woman_shrugging",width:"+0.6ex",textOnly:!0},{symbol:"🤷‍♂",name:"man_shrugging",width:"+0.6ex",textOnly:!0},{symbol:"🙎",name:"pouting_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙎",name:"person_with_pouting_face",width:"+0.6ex",textOnly:!1},{symbol:"🙎‍♂",name:"pouting_man",width:"+0.6ex",textOnly:!0},{symbol:"🙍",name:"frowning_woman",width:"+0.6ex",textOnly:!1},{symbol:"🙍",name:"person_frowning",width:"+0.6ex",textOnly:!1},{symbol:"🙍‍♂",name:"frowning_man",width:"+0.6ex",textOnly:!0},{symbol:"💇",name:"haircut_woman",width:"+0.6ex",textOnly:!1},{symbol:"💇",name:"haircut",width:"+0.6ex",textOnly:!1},{symbol:"💇‍♂",name:"haircut_man",width:"+0.6ex",textOnly:!0},{symbol:"💆",name:"massage_woman",width:"+0.6ex",textOnly:!1},{symbol:"💆",name:"massage",width:"+0.6ex",textOnly:!1},{symbol:"💆‍♂",name:"massage_man",width:"+0.6ex",textOnly:!0},{symbol:"🕴",name:"business_suit_levitating",width:"+0.6ex",textOnly:!1},{symbol:"💃",name:"dancer",width:"+0.6ex",textOnly:!1},{symbol:"🕺",name:"man_dancing",width:"+0.6ex",textOnly:!1},{symbol:"👯",name:"dancing_women",width:"+0.6ex",textOnly:!1},{symbol:"👯",name:"dancers",width:"+0.6ex",textOnly:!1},{symbol:"👯‍♂",name:"dancing_men",width:"+0.6ex",textOnly:!0},{symbol:"🚶‍♀",name:"walking_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚶",name:"walking_man",width:"+0.6ex",textOnly:!1},{symbol:"🚶",name:"walking",width:"+0.6ex",textOnly:!1},{symbol:"🏃‍♀",name:"running_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏃",name:"running_man",width:"+0.6ex",textOnly:!1},{symbol:"🏃",name:"runner",width:"+0.6ex",textOnly:!1},{symbol:"🏃",name:"running",width:"+0.6ex",textOnly:!1},{symbol:"👫",name:"couple",width:"+0.6ex",textOnly:!1},{symbol:"👭",name:"two_women_holding_hands",width:"+0.6ex",textOnly:!1},{symbol:"👬",name:"two_men_holding_hands",width:"+0.6ex",textOnly:!1},{symbol:"💑",name:"couple_with_heart_woman_man",width:"+0.6ex",textOnly:!1},{symbol:"💑",name:"couple_with_heart",width:"+0.6ex",textOnly:!1},{symbol:"👩‍❤️‍👩",name:"couple_with_heart_woman_woman",width:"+0.6ex",textOnly:!0},{symbol:"👨‍❤️‍👨",name:"couple_with_heart_man_man",width:"+0.6ex",textOnly:!0},{symbol:"💏",name:"couplekiss_man_woman",width:"+0.6ex",textOnly:!1},{symbol:"👩‍❤️‍💋‍👩",name:"couplekiss_woman_woman",width:"+0.6ex",textOnly:!0},{symbol:"👨‍❤️‍💋‍👨",name:"couplekiss_man_man",width:"+0.6ex",textOnly:!0},{symbol:"👪",name:"family_man_woman_boy",width:"+0.6ex",textOnly:!1},{symbol:"👪",name:"family",width:"+0.6ex",textOnly:!1},{symbol:"👨‍👩‍👧",name:"family_man_woman_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👩‍👧‍👦",name:"family_man_woman_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👩‍👦‍👦",name:"family_man_woman_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👩‍👧‍👧",name:"family_man_woman_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👦",name:"family_woman_woman_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👧",name:"family_woman_woman_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👧‍👦",name:"family_woman_woman_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👦‍👦",name:"family_woman_woman_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👩‍👧‍👧",name:"family_woman_woman_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👦",name:"family_man_man_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👧",name:"family_man_man_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👧‍👦",name:"family_man_man_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👦‍👦",name:"family_man_man_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👨‍👧‍👧",name:"family_man_man_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👦",name:"family_woman_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👧",name:"family_woman_girl",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👧‍👦",name:"family_woman_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👦‍👦",name:"family_woman_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👩‍👧‍👧",name:"family_woman_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👦",name:"family_man_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👧",name:"family_man_girl",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👧‍👦",name:"family_man_girl_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👦‍👦",name:"family_man_boy_boy",width:"+0.6ex",textOnly:!0},{symbol:"👨‍👧‍👧",name:"family_man_girl_girl",width:"+0.6ex",textOnly:!0},{symbol:"👚",name:"womans_clothes",width:"+0.6ex",textOnly:!1},{symbol:"👕",name:"shirt",width:"+0.6ex",textOnly:!1},{symbol:"👕",name:"tshirt",width:"+0.6ex",textOnly:!1},{symbol:"👖",name:"jeans",width:"+0.6ex",textOnly:!1},{symbol:"👔",name:"necktie",width:"+0.6ex",textOnly:!1},{symbol:"👗",name:"dress",width:"+0.6ex",textOnly:!1},{symbol:"👙",name:"bikini",width:"+0.6ex",textOnly:!1},{symbol:"👘",name:"kimono",width:"+0.6ex",textOnly:!1},{symbol:"👠",name:"high_heel",width:"+0.6ex",textOnly:!1},{symbol:"👡",name:"sandal",width:"+0.6ex",textOnly:!1},{symbol:"👢",name:"boot",width:"+0.6ex",textOnly:!1},{symbol:"👞",name:"mans_shoe",width:"+0.6ex",textOnly:!1},{symbol:"👞",name:"shoe",width:"+0.6ex",textOnly:!1},{symbol:"👟",name:"athletic_shoe",width:"+0.6ex",textOnly:!1},{symbol:"👒",name:"womans_hat",width:"+0.6ex",textOnly:!1},{symbol:"🎩",name:"tophat",width:"+0.6ex",textOnly:!1},{symbol:"🎓",name:"mortar_board",width:"+0.6ex",textOnly:!1},{symbol:"👑",name:"crown",width:"+0.6ex",textOnly:!1},{symbol:"⛑",name:"rescue_worker_helmet",width:"+0.6ex",textOnly:!1},{symbol:"🎒",name:"school_satchel",width:"+0.6ex",textOnly:!1},{symbol:"👝",name:"pouch",width:"+0.6ex",textOnly:!1},{symbol:"👛",name:"purse",width:"+0.6ex",textOnly:!1},{symbol:"👜",name:"handbag",width:"+0.6ex",textOnly:!1},{symbol:"💼",name:"briefcase",width:"+0.6ex",textOnly:!1},{symbol:"👓",name:"eyeglasses",width:"+0.6ex",textOnly:!1},{symbol:"🕶",name:"dark_sunglasses",width:"+0.6ex",textOnly:!1},{symbol:"🌂",name:"closed_umbrella",width:"+0.6ex",textOnly:!1},{symbol:"☂️",name:"open_umbrella",width:"+0.6ex",textOnly:!1},{symbol:"🐶",name:"dog",width:"+0.6ex",textOnly:!1},{symbol:"🐱",name:"cat",width:"+0.6ex",textOnly:!1},{symbol:"🐭",name:"mouse",width:"+0.6ex",textOnly:!1},{symbol:"🐹",name:"hamster",width:"+0.6ex",textOnly:!1},{symbol:"🐰",name:"rabbit",width:"+0.6ex",textOnly:!1},{symbol:"🦊",name:"fox_face",width:"+0.6ex",textOnly:!1},{symbol:"🐻",name:"bear",width:"+0.6ex",textOnly:!1},{symbol:"🐼",name:"panda_face",width:"+0.6ex",textOnly:!1},{symbol:"🐨",name:"koala",width:"+0.6ex",textOnly:!1},{symbol:"🐯",name:"tiger",width:"+0.6ex",textOnly:!1},{symbol:"🦁",name:"lion",width:"+0.6ex",textOnly:!1},{symbol:"🐮",name:"cow",width:"+0.6ex",textOnly:!1},{symbol:"🐷",name:"pig",width:"+0.6ex",textOnly:!1},{symbol:"🐽",name:"pig_nose",width:"+0.6ex",textOnly:!1},{symbol:"🐸",name:"frog",width:"+0.6ex",textOnly:!1},{symbol:"🐵",name:"monkey_face",width:"+0.6ex",textOnly:!1},{symbol:"🙈",name:"see_no_evil",width:"+0.6ex",textOnly:!1},{symbol:"🙉",name:"hear_no_evil",width:"+0.6ex",textOnly:!1},{symbol:"🙊",name:"speak_no_evil",width:"+0.6ex",textOnly:!1},{symbol:"🐒",name:"monkey",width:"+0.6ex",textOnly:!1},{symbol:"🐔",name:"chicken",width:"+0.6ex",textOnly:!1},{symbol:"🐧",name:"penguin",width:"+0.6ex",textOnly:!1},{symbol:"🐦",name:"bird",width:"+0.6ex",textOnly:!1},{symbol:"🐤",name:"baby_chick",width:"+0.6ex",textOnly:!1},{symbol:"🐣",name:"hatching_chick",width:"+0.6ex",textOnly:!1},{symbol:"🐥",name:"hatched_chick",width:"+0.6ex",textOnly:!1},{symbol:"🦆",name:"duck",width:"+0.6ex",textOnly:!1},{symbol:"🦅",name:"eagle",width:"+0.6ex",textOnly:!1},{symbol:"🦉",name:"owl",width:"+0.6ex",textOnly:!1},{symbol:"🦇",name:"bat",width:"+0.6ex",textOnly:!1},{symbol:"🐺",name:"wolf",width:"+0.6ex",textOnly:!1},{symbol:"🐗",name:"boar",width:"+0.6ex",textOnly:!1},{symbol:"🐴",name:"horse",width:"+0.6ex",textOnly:!1},{symbol:"🦄",name:"unicorn",width:"+0.6ex",textOnly:!1},{symbol:"🐝",name:"bee",width:"+0.6ex",textOnly:!1},{symbol:"🐝",name:"honeybee",width:"+0.6ex",textOnly:!1},{symbol:"🐛",name:"bug",width:"+0.6ex",textOnly:!1},{symbol:"🦋",name:"butterfly",width:"+0.6ex",textOnly:!1},{symbol:"🐌",name:"snail",width:"+0.6ex",textOnly:!1},{symbol:"🐚",name:"shell",width:"+0.6ex",textOnly:!1},{symbol:"🐞",name:"beetle",width:"+0.6ex",textOnly:!1},{symbol:"🐜",name:"ant",width:"+0.6ex",textOnly:!1},{symbol:"🕷",name:"spider",width:"+0.6ex",textOnly:!1},{symbol:"🕸",name:"spider_web",width:"+0.6ex",textOnly:!1},{symbol:"🐢",name:"turtle",width:"+0.6ex",textOnly:!1},{symbol:"🐍",name:"snake",width:"+0.6ex",textOnly:!1},{symbol:"🦎",name:"lizard",width:"+0.6ex",textOnly:!1},{symbol:"🦂",name:"scorpion",width:"+0.6ex",textOnly:!1},{symbol:"🦀",name:"crab",width:"+0.6ex",textOnly:!1},{symbol:"🦑",name:"squid",width:"+0.6ex",textOnly:!1},{symbol:"🐙",name:"octopus",width:"+0.6ex",textOnly:!1},{symbol:"🦐",name:"shrimp",width:"+0.6ex",textOnly:!1},{symbol:"🐠",name:"tropical_fish",width:"+0.6ex",textOnly:!1},{symbol:"🐟",name:"fish",width:"+0.6ex",textOnly:!1},{symbol:"🐡",name:"blowfish",width:"+0.6ex",textOnly:!1},{symbol:"🐬",name:"dolphin",width:"+0.6ex",textOnly:!1},{symbol:"🐬",name:"flipper",width:"+0.6ex",textOnly:!1},{symbol:"🦈",name:"shark",width:"+0.6ex",textOnly:!1},{symbol:"🐳",name:"whale",width:"+0.6ex",textOnly:!1},{symbol:"🐋",name:"whale2",width:"+0.6ex",textOnly:!1},{symbol:"🐊",name:"crocodile",width:"+0.6ex",textOnly:!1},{symbol:"🐆",name:"leopard",width:"+0.6ex",textOnly:!1},{symbol:"🐅",name:"tiger2",width:"+0.6ex",textOnly:!1},{symbol:"🐃",name:"water_buffalo",width:"+0.6ex",textOnly:!1},{symbol:"🐂",name:"ox",width:"+0.6ex",textOnly:!1},{symbol:"🐄",name:"cow2",width:"+0.6ex",textOnly:!1},{symbol:"🦌",name:"deer",width:"+0.6ex",textOnly:!1},{symbol:"🐪",name:"dromedary_camel",width:"+0.6ex",textOnly:!1},{symbol:"🐫",name:"camel",width:"+0.6ex",textOnly:!1},{symbol:"🐘",name:"elephant",width:"+0.6ex",textOnly:!1},{symbol:"🦏",name:"rhinoceros",width:"+0.6ex",textOnly:!1},{symbol:"🦍",name:"gorilla",width:"+0.6ex",textOnly:!1},{symbol:"🐎",name:"racehorse",width:"+0.6ex",textOnly:!1},{symbol:"🐖",name:"pig2",width:"+0.6ex",textOnly:!1},{symbol:"🐐",name:"goat",width:"+0.6ex",textOnly:!1},{symbol:"🐏",name:"ram",width:"+0.6ex",textOnly:!1},{symbol:"🐑",name:"sheep",width:"+0.6ex",textOnly:!1},{symbol:"🐕",name:"dog2",width:"+0.6ex",textOnly:!1},{symbol:"🐩",name:"poodle",width:"+0.6ex",textOnly:!1},{symbol:"🐈",name:"cat2",width:"+0.6ex",textOnly:!1},{symbol:"🐓",name:"rooster",width:"+0.6ex",textOnly:!1},{symbol:"🦃",name:"turkey",width:"+0.6ex",textOnly:!1},{symbol:"🕊",name:"dove",width:"+0.6ex",textOnly:!1},{symbol:"🐇",name:"rabbit2",width:"+0.6ex",textOnly:!1},{symbol:"🐁",name:"mouse2",width:"+0.6ex",textOnly:!1},{symbol:"🐀",name:"rat",width:"+0.6ex",textOnly:!1},{symbol:"🐿",name:"chipmunk",width:"+0.6ex",textOnly:!1},{symbol:"🐾",name:"feet",width:"+0.6ex",textOnly:!1},{symbol:"🐾",name:"paw_prints",width:"+0.6ex",textOnly:!1},{symbol:"🐉",name:"dragon",width:"+0.6ex",textOnly:!1},{symbol:"🐲",name:"dragon_face",width:"+0.6ex",textOnly:!1},{symbol:"🌵",name:"cactus",width:"+0.6ex",textOnly:!1},{symbol:"🎄",name:"christmas_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌲",name:"evergreen_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌳",name:"deciduous_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌴",name:"palm_tree",width:"+0.6ex",textOnly:!1},{symbol:"🌱",name:"seedling",width:"+0.6ex",textOnly:!1},{symbol:"🌿",name:"herb",width:"+0.6ex",textOnly:!1},{symbol:"☘️",name:"shamrock",width:"+0.6ex",textOnly:!1},{symbol:"🍀",name:"four_leaf_clover",width:"+0.6ex",textOnly:!1},{symbol:"🎍",name:"bamboo",width:"+0.6ex",textOnly:!1},{symbol:"🎋",name:"tanabata_tree",width:"+0.6ex",textOnly:!1},{symbol:"🍃",name:"leaves",width:"+0.6ex",textOnly:!1},{symbol:"🍂",name:"fallen_leaf",width:"+0.6ex",textOnly:!1},{symbol:"🍁",name:"maple_leaf",width:"+0.6ex",textOnly:!1},{symbol:"🍄",name:"mushroom",width:"+0.6ex",textOnly:!1},{symbol:"🌾",name:"ear_of_rice",width:"+0.6ex",textOnly:!1},{symbol:"💐",name:"bouquet",width:"+0.6ex",textOnly:!1},{symbol:"🌷",name:"tulip",width:"+0.6ex",textOnly:!1},{symbol:"🌹",name:"rose",width:"+0.6ex",textOnly:!1},{symbol:"🥀",name:"wilted_flower",width:"+0.6ex",textOnly:!1},{symbol:"🌻",name:"sunflower",width:"+0.6ex",textOnly:!1},{symbol:"🌼",name:"blossom",width:"+0.6ex",textOnly:!1},{symbol:"🌸",name:"cherry_blossom",width:"+0.6ex",textOnly:!1},{symbol:"🌺",name:"hibiscus",width:"+0.6ex",textOnly:!1},{symbol:"🌎",name:"earth_americas",width:"+0.6ex",textOnly:!1},{symbol:"🌍",name:"earth_africa",width:"+0.6ex",textOnly:!1},{symbol:"🌏",name:"earth_asia",width:"+0.6ex",textOnly:!1},{symbol:"🌕",name:"full_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌖",name:"waning_gibbous_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌗",name:"last_quarter_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌘",name:"waning_crescent_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌑",name:"new_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌒",name:"waxing_crescent_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌓",name:"first_quarter_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌔",name:"moon",width:"+0.6ex",textOnly:!1},{symbol:"🌔",name:"waxing_gibbous_moon",width:"+0.6ex",textOnly:!1},{symbol:"🌚",name:"new_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌝",name:"full_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌞",name:"sun_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌛",name:"first_quarter_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌜",name:"last_quarter_moon_with_face",width:"+0.6ex",textOnly:!1},{symbol:"🌙",name:"crescent_moon",width:"+0.6ex",textOnly:!1},{symbol:"💫",name:"dizzy",width:"+0.6ex",textOnly:!1},{symbol:"⭐️",name:"star",width:"+0.6ex",textOnly:!1},{symbol:"🌟",name:"star2",width:"+0.6ex",textOnly:!1},{symbol:"✨",name:"sparkles",width:"+0.6ex",textOnly:!1},{symbol:"⚡️",name:"zap",width:"+0.6ex",textOnly:!1},{symbol:"🔥",name:"fire",width:"+0.6ex",textOnly:!1},{symbol:"💥",name:"boom",width:"+0.6ex",textOnly:!1},{symbol:"💥",name:"collision",width:"+0.6ex",textOnly:!1},{symbol:"☄",name:"comet",width:"+0.6ex",textOnly:!1},{symbol:"☀️",name:"sunny",width:"+0.6ex",textOnly:!1},{symbol:"🌤",name:"sun_behind_small_cloud",width:"+0.6ex",textOnly:!1},{symbol:"⛅️",name:"partly_sunny",width:"+0.6ex",textOnly:!1},{symbol:"🌥",name:"sun_behind_large_cloud",width:"+0.6ex",textOnly:!1},{symbol:"🌦",name:"sun_behind_rain_cloud",width:"+0.6ex",textOnly:!1},{symbol:"🌈",name:"rainbow",width:"+0.6ex",textOnly:!1},{symbol:"☁️",name:"cloud",width:"+0.6ex",textOnly:!1},{symbol:"🌧",name:"cloud_with_rain",width:"+0.6ex",textOnly:!1},{symbol:"⛈",name:"cloud_with_lightning_and_rain",width:"+0.6ex",textOnly:!1},{symbol:"🌩",name:"cloud_with_lightning",width:"+0.6ex",textOnly:!1},{symbol:"🌨",name:"cloud_with_snow",width:"+0.6ex",textOnly:!1},{symbol:"☃️",name:"snowman_with_snow",width:"+0.6ex",textOnly:!1},{symbol:"⛄️",name:"snowman",width:"+0.6ex",textOnly:!1},{symbol:"❄️",name:"snowflake",width:"+0.6ex",textOnly:!1},{symbol:"🌬",name:"wind_face",width:"+0.6ex",textOnly:!1},{symbol:"💨",name:"dash",width:"+0.6ex",textOnly:!1},{symbol:"🌪",name:"tornado",width:"+0.6ex",textOnly:!1},{symbol:"🌫",name:"fog",width:"+0.6ex",textOnly:!1},{symbol:"🌊",name:"ocean",width:"+0.6ex",textOnly:!1},{symbol:"💧",name:"droplet",width:"+0.6ex",textOnly:!1},{symbol:"💦",name:"sweat_drops",width:"+0.6ex",textOnly:!1},{symbol:"☔️",name:"umbrella",width:"+0.6ex",textOnly:!1},{symbol:"🍏",name:"green_apple",width:"+0.6ex",textOnly:!1},{symbol:"🍎",name:"apple",width:"+0.6ex",textOnly:!1},{symbol:"🍐",name:"pear",width:"+0.6ex",textOnly:!1},{symbol:"🍊",name:"tangerine",width:"+0.6ex",textOnly:!1},{symbol:"🍊",name:"orange",width:"+0.6ex",textOnly:!1},{symbol:"🍊",name:"mandarin",width:"+0.6ex",textOnly:!1},{symbol:"🍋",name:"lemon",width:"+0.6ex",textOnly:!1},{symbol:"🍌",name:"banana",width:"+0.6ex",textOnly:!1},{symbol:"🍉",name:"watermelon",width:"+0.6ex",textOnly:!1},{symbol:"🍇",name:"grapes",width:"+0.6ex",textOnly:!1},{symbol:"🍓",name:"strawberry",width:"+0.6ex",textOnly:!1},{symbol:"🍈",name:"melon",width:"+0.6ex",textOnly:!1},{symbol:"🍒",name:"cherries",width:"+0.6ex",textOnly:!1},{symbol:"🍑",name:"peach",width:"+0.6ex",textOnly:!1},{symbol:"🍍",name:"pineapple",width:"+0.6ex",textOnly:!1},{symbol:"🥝",name:"kiwi_fruit",width:"+0.6ex",textOnly:!1},{symbol:"🥑",name:"avocado",width:"+0.6ex",textOnly:!1},{symbol:"🍅",name:"tomato",width:"+0.6ex",textOnly:!1},{symbol:"🍆",name:"eggplant",width:"+0.6ex",textOnly:!1},{symbol:"🥒",name:"cucumber",width:"+0.6ex",textOnly:!1},{symbol:"🥕",name:"carrot",width:"+0.6ex",textOnly:!1},{symbol:"🌽",name:"corn",width:"+0.6ex",textOnly:!1},{symbol:"🌶",name:"hot_pepper",width:"+0.6ex",textOnly:!1},{symbol:"🥔",name:"potato",width:"+0.6ex",textOnly:!1},{symbol:"🍠",name:"sweet_potato",width:"+0.6ex",textOnly:!1},{symbol:"🌰",name:"chestnut",width:"+0.6ex",textOnly:!1},{symbol:"🥜",name:"peanuts",width:"+0.6ex",textOnly:!1},{symbol:"🍯",name:"honey_pot",width:"+0.6ex",textOnly:!1},{symbol:"🥐",name:"croissant",width:"+0.6ex",textOnly:!1},{symbol:"🍞",name:"bread",width:"+0.6ex",textOnly:!1},{symbol:"🥖",name:"baguette_bread",width:"+0.6ex",textOnly:!1},{symbol:"🧀",name:"cheese",width:"+0.6ex",textOnly:!1},{symbol:"🥚",name:"egg",width:"+0.6ex",textOnly:!1},{symbol:"🍳",name:"fried_egg",width:"+0.6ex",textOnly:!1},{symbol:"🥓",name:"bacon",width:"+0.6ex",textOnly:!1},{symbol:"🥞",name:"pancakes",width:"+0.6ex",textOnly:!1},{symbol:"🍤",name:"fried_shrimp",width:"+0.6ex",textOnly:!1},{symbol:"🍗",name:"poultry_leg",width:"+0.6ex",textOnly:!1},{symbol:"🍖",name:"meat_on_bone",width:"+0.6ex",textOnly:!1},{symbol:"🍕",name:"pizza",width:"+0.6ex",textOnly:!1},{symbol:"🌭",name:"hotdog",width:"+0.6ex",textOnly:!1},{symbol:"🍔",name:"hamburger",width:"+0.6ex",textOnly:!1},{symbol:"🍟",name:"fries",width:"+0.6ex",textOnly:!1},{symbol:"🥙",name:"stuffed_flatbread",width:"+0.6ex",textOnly:!1},{symbol:"🌮",name:"taco",width:"+0.6ex",textOnly:!1},{symbol:"🌯",name:"burrito",width:"+0.6ex",textOnly:!1},{symbol:"🥗",name:"green_salad",width:"+0.6ex",textOnly:!1},{symbol:"🥘",name:"shallow_pan_of_food",width:"+0.6ex",textOnly:!1},{symbol:"🍝",name:"spaghetti",width:"+0.6ex",textOnly:!1},{symbol:"🍜",name:"ramen",width:"+0.6ex",textOnly:!1},{symbol:"🍲",name:"stew",width:"+0.6ex",textOnly:!1},{symbol:"🍥",name:"fish_cake",width:"+0.6ex",textOnly:!1},{symbol:"🍣",name:"sushi",width:"+0.6ex",textOnly:!1},{symbol:"🍱",name:"bento",width:"+0.6ex",textOnly:!1},{symbol:"🍛",name:"curry",width:"+0.6ex",textOnly:!1},{symbol:"🍚",name:"rice",width:"+0.6ex",textOnly:!1},{symbol:"🍙",name:"rice_ball",width:"+0.6ex",textOnly:!1},{symbol:"🍘",name:"rice_cracker",width:"+0.6ex",textOnly:!1},{symbol:"🍢",name:"oden",width:"+0.6ex",textOnly:!1},{symbol:"🍡",name:"dango",width:"+0.6ex",textOnly:!1},{symbol:"🍧",name:"shaved_ice",width:"+0.6ex",textOnly:!1},{symbol:"🍨",name:"ice_cream",width:"+0.6ex",textOnly:!1},{symbol:"🍦",name:"icecream",width:"+0.6ex",textOnly:!1},{symbol:"🍰",name:"cake",width:"+0.6ex",textOnly:!1},{symbol:"🎂",name:"birthday",width:"+0.6ex",textOnly:!1},{symbol:"🍮",name:"custard",width:"+0.6ex",textOnly:!1},{symbol:"🍭",name:"lollipop",width:"+0.6ex",textOnly:!1},{symbol:"🍬",name:"candy",width:"+0.6ex",textOnly:!1},{symbol:"🍫",name:"chocolate_bar",width:"+0.6ex",textOnly:!1},{symbol:"🍿",name:"popcorn",width:"+0.6ex",textOnly:!1},{symbol:"🍩",name:"doughnut",width:"+0.6ex",textOnly:!1},{symbol:"🍪",name:"cookie",width:"+0.6ex",textOnly:!1},{symbol:"🥛",name:"milk_glass",width:"+0.6ex",textOnly:!1},{symbol:"🍼",name:"baby_bottle",width:"+0.6ex",textOnly:!1},{symbol:"☕️",name:"coffee",width:"+0.6ex",textOnly:!1},{symbol:"🍵",name:"tea",width:"+0.6ex",textOnly:!1},{symbol:"🍶",name:"sake",width:"+0.6ex",textOnly:!1},{symbol:"🍺",name:"beer",width:"+0.6ex",textOnly:!1},{symbol:"🍻",name:"beers",width:"+0.6ex",textOnly:!1},{symbol:"🥂",name:"clinking_glasses",width:"+0.6ex",textOnly:!1},{symbol:"🍷",name:"wine_glass",width:"+0.6ex",textOnly:!1},{symbol:"🥃",name:"tumbler_glass",width:"+0.6ex",textOnly:!1},{symbol:"🍸",name:"cocktail",width:"+0.6ex",textOnly:!1},{symbol:"🍹",name:"tropical_drink",width:"+0.6ex",textOnly:!1},{symbol:"🍾",name:"champagne",width:"+0.6ex",textOnly:!1},{symbol:"🥄",name:"spoon",width:"+0.6ex",textOnly:!1},{symbol:"🍴",name:"fork_and_knife",width:"+0.6ex",textOnly:!1},{symbol:"🍽",name:"plate_with_cutlery",width:"+0.6ex",textOnly:!1},{symbol:"⚽️",name:"soccer",width:"+0.6ex",textOnly:!1},{symbol:"🏀",name:"basketball",width:"+0.6ex",textOnly:!1},{symbol:"🏈",name:"football",width:"+0.6ex",textOnly:!1},{symbol:"⚾️",name:"baseball",width:"+0.6ex",textOnly:!1},{symbol:"🎾",name:"tennis",width:"+0.6ex",textOnly:!1},{symbol:"🏐",name:"volleyball",width:"+0.6ex",textOnly:!1},{symbol:"🏉",name:"rugby_football",width:"+0.6ex",textOnly:!1},{symbol:"🎱",name:"8ball",width:"+0.6ex",textOnly:!1},{symbol:"🏓",name:"ping_pong",width:"+0.6ex",textOnly:!1},{symbol:"🏸",name:"badminton",width:"+0.6ex",textOnly:!1},{symbol:"🥅",name:"goal_net",width:"+0.6ex",textOnly:!1},{symbol:"🏒",name:"ice_hockey",width:"+0.6ex",textOnly:!1},{symbol:"🏑",name:"field_hockey",width:"+0.6ex",textOnly:!1},{symbol:"🏏",name:"cricket",width:"+0.6ex",textOnly:!1},{symbol:"⛳️",name:"golf",width:"+0.6ex",textOnly:!1},{symbol:"🏹",name:"bow_and_arrow",width:"+0.6ex",textOnly:!1},{symbol:"🎣",name:"fishing_pole_and_fish",width:"+0.6ex",textOnly:!1},{symbol:"🥊",name:"boxing_glove",width:"+0.6ex",textOnly:!1},{symbol:"🥋",name:"martial_arts_uniform",width:"+0.6ex",textOnly:!1},{symbol:"⛸",name:"ice_skate",width:"+0.6ex",textOnly:!1},{symbol:"🎿",name:"ski",width:"+0.6ex",textOnly:!1},{symbol:"⛷",name:"skier",width:"+0.6ex",textOnly:!1},{symbol:"🏂",name:"snowboarder",width:"+0.6ex",textOnly:!1},{symbol:"🏋️‍♀️",name:"weight_lifting_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏋",name:"weight_lifting_man",width:"+0.6ex",textOnly:!1},{symbol:"🤺",name:"person_fencing",width:"+0.6ex",textOnly:!1},{symbol:"🤼‍♀",name:"women_wrestling",width:"+0.6ex",textOnly:!0},{symbol:"🤼‍♂",name:"men_wrestling",width:"+0.6ex",textOnly:!0},{symbol:"🤸‍♀",name:"woman_cartwheeling",width:"+0.6ex",textOnly:!0},{symbol:"🤸‍♂",name:"man_cartwheeling",width:"+0.6ex",textOnly:!0},{symbol:"⛹️‍♀️",name:"basketball_woman",width:"+0.6ex",textOnly:!0},{symbol:"⛹",name:"basketball_man",width:"+0.6ex",textOnly:!1},{symbol:"🤾‍♀",name:"woman_playing_handball",width:"+0.6ex",textOnly:!0},{symbol:"🤾‍♂",name:"man_playing_handball",width:"+0.6ex",textOnly:!0},{symbol:"🏌️‍♀️",name:"golfing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏌",name:"golfing_man",width:"+0.6ex",textOnly:!1},{symbol:"🏄‍♀",name:"surfing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏄",name:"surfing_man",width:"+0.6ex",textOnly:!1},{symbol:"🏄",name:"surfer",width:"+0.6ex",textOnly:!1},{symbol:"🏊‍♀",name:"swimming_woman",width:"+0.6ex",textOnly:!0},{symbol:"🏊",name:"swimming_man",width:"+0.6ex",textOnly:!1},{symbol:"🏊",name:"swimmer",width:"+0.6ex",textOnly:!1},{symbol:"🤽‍♀",name:"woman_playing_water_polo",width:"+0.6ex",textOnly:!0},{symbol:"🤽‍♂",name:"man_playing_water_polo",width:"+0.6ex",textOnly:!0},{symbol:"🚣‍♀",name:"rowing_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚣",name:"rowing_man",width:"+0.6ex",textOnly:!1},{symbol:"🚣",name:"rowboat",width:"+0.6ex",textOnly:!1},{symbol:"🏇",name:"horse_racing",width:"+0.6ex",textOnly:!1},{symbol:"🚴‍♀",name:"biking_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚴",name:"biking_man",width:"+0.6ex",textOnly:!1},{symbol:"🚴",name:"bicyclist",width:"+0.6ex",textOnly:!1},{symbol:"🚵‍♀",name:"mountain_biking_woman",width:"+0.6ex",textOnly:!0},{symbol:"🚵",name:"mountain_biking_man",width:"+0.6ex",textOnly:!1},{symbol:"🚵",name:"mountain_bicyclist",width:"+0.6ex",textOnly:!1},{symbol:"🎽",name:"running_shirt_with_sash",width:"+0.6ex",textOnly:!1},{symbol:"🏅",name:"medal_sports",width:"+0.6ex",textOnly:!1},{symbol:"🎖",name:"medal_military",width:"+0.6ex",textOnly:!1},{symbol:"🥇",name:"1st_place_medal",width:"+0.6ex",textOnly:!1},{symbol:"🥈",name:"2nd_place_medal",width:"+0.6ex",textOnly:!1},{symbol:"🥉",name:"3rd_place_medal",width:"+0.6ex",textOnly:!1},{symbol:"🏆",name:"trophy",width:"+0.6ex",textOnly:!1},{symbol:"🏵",name:"rosette",width:"+0.6ex",textOnly:!1},{symbol:"🎗",name:"reminder_ribbon",width:"+0.6ex",textOnly:!1},{symbol:"🎫",name:"ticket",width:"+0.6ex",textOnly:!1},{symbol:"🎟",name:"tickets",width:"+0.6ex",textOnly:!1},{symbol:"🎪",name:"circus_tent",width:"+0.6ex",textOnly:!1},{symbol:"🤹‍♀",name:"woman_juggling",width:"+0.6ex",textOnly:!0},{symbol:"🤹‍♂",name:"man_juggling",width:"+0.6ex",textOnly:!0},{symbol:"🎭",name:"performing_arts",width:"+0.6ex",textOnly:!1},{symbol:"🎨",name:"art",width:"+0.6ex",textOnly:!1},{symbol:"🎬",name:"clapper",width:"+0.6ex",textOnly:!1},{symbol:"🎤",name:"microphone",width:"+0.6ex",textOnly:!1},{symbol:"🎧",name:"headphones",width:"+0.6ex",textOnly:!1},{symbol:"🎼",name:"musical_score",width:"+0.6ex",textOnly:!1},{symbol:"🎹",name:"musical_keyboard",width:"+0.6ex",textOnly:!1},{symbol:"🥁",name:"drum",width:"+0.6ex",textOnly:!1},{symbol:"🎷",name:"saxophone",width:"+0.6ex",textOnly:!1},{symbol:"🎺",name:"trumpet",width:"+0.6ex",textOnly:!1},{symbol:"🎸",name:"guitar",width:"+0.6ex",textOnly:!1},{symbol:"🎻",name:"violin",width:"+0.6ex",textOnly:!1},{symbol:"🎲",name:"game_die",width:"+0.6ex",textOnly:!1},{symbol:"🎯",name:"dart",width:"+0.6ex",textOnly:!1},{symbol:"🎳",name:"bowling",width:"+0.6ex",textOnly:!1},{symbol:"🎮",name:"video_game",width:"+0.6ex",textOnly:!1},{symbol:"🎰",name:"slot_machine",width:"+0.6ex",textOnly:!1},{symbol:"🚗",name:"car",width:"+0.6ex",textOnly:!1},{symbol:"🚗",name:"red_car",width:"+0.6ex",textOnly:!1},{symbol:"🚕",name:"taxi",width:"+0.6ex",textOnly:!1},{symbol:"🚙",name:"blue_car",width:"+0.6ex",textOnly:!1},{symbol:"🚌",name:"bus",width:"+0.6ex",textOnly:!1},{symbol:"🚎",name:"trolleybus",width:"+0.6ex",textOnly:!1},{symbol:"🏎",name:"racing_car",width:"+0.6ex",textOnly:!1},{symbol:"🚓",name:"police_car",width:"+0.6ex",textOnly:!1},{symbol:"🚑",name:"ambulance",width:"+0.6ex",textOnly:!1},{symbol:"🚒",name:"fire_engine",width:"+0.6ex",textOnly:!1},{symbol:"🚐",name:"minibus",width:"+0.6ex",textOnly:!1},{symbol:"🚚",name:"truck",width:"+0.6ex",textOnly:!1},{symbol:"🚛",name:"articulated_lorry",width:"+0.6ex",textOnly:!1},{symbol:"🚜",name:"tractor",width:"+0.6ex",textOnly:!1},{symbol:"🛴",name:"kick_scooter",width:"+0.6ex",textOnly:!1},{symbol:"🚲",name:"bike",width:"+0.6ex",textOnly:!1},{symbol:"🛵",name:"motor_scooter",width:"+0.6ex",textOnly:!1},{symbol:"🏍",name:"motorcycle",width:"+0.6ex",textOnly:!1},{symbol:"🚨",name:"rotating_light",width:"+0.6ex",textOnly:!1},{symbol:"🚔",name:"oncoming_police_car",width:"+0.6ex",textOnly:!1},{symbol:"🚍",name:"oncoming_bus",width:"+0.6ex",textOnly:!1},{symbol:"🚘",name:"oncoming_automobile",width:"+0.6ex",textOnly:!1},{symbol:"🚖",name:"oncoming_taxi",width:"+0.6ex",textOnly:!1},{symbol:"🚡",name:"aerial_tramway",width:"+0.6ex",textOnly:!1},{symbol:"🚠",name:"mountain_cableway",width:"+0.6ex",textOnly:!1},{symbol:"🚟",name:"suspension_railway",width:"+0.6ex",textOnly:!1},{symbol:"🚃",name:"railway_car",width:"+0.6ex",textOnly:!1},{symbol:"🚋",name:"train",width:"+0.6ex",textOnly:!1},{symbol:"🚞",name:"mountain_railway",width:"+0.6ex",textOnly:!1},{symbol:"🚝",name:"monorail",width:"+0.6ex",textOnly:!1},{symbol:"🚄",name:"bullettrain_side",width:"+0.6ex",textOnly:!1},{symbol:"🚅",name:"bullettrain_front",width:"+0.6ex",textOnly:!1},{symbol:"🚈",name:"light_rail",width:"+0.6ex",textOnly:!1},{symbol:"🚂",name:"steam_locomotive",width:"+0.6ex",textOnly:!1},{symbol:"🚆",name:"train2",width:"+0.6ex",textOnly:!1},{symbol:"🚇",name:"metro",width:"+0.6ex",textOnly:!1},{symbol:"🚊",name:"tram",width:"+0.6ex",textOnly:!1},{symbol:"🚉",name:"station",width:"+0.6ex",textOnly:!1},{symbol:"🚁",name:"helicopter",width:"+0.6ex",textOnly:!1},{symbol:"🛩",name:"small_airplane",width:"+0.6ex",textOnly:!1},{symbol:"✈️",name:"airplane",width:"+0.6ex",textOnly:!1},{symbol:"🛫",name:"flight_departure",width:"+0.6ex",textOnly:!1},{symbol:"🛬",name:"flight_arrival",width:"+0.6ex",textOnly:!1},{symbol:"🚀",name:"rocket",width:"+0.6ex",textOnly:!1},{symbol:"🛰",name:"artificial_satellite",width:"+0.6ex",textOnly:!1},{symbol:"💺",name:"seat",width:"+0.6ex",textOnly:!1},{symbol:"🛶",name:"canoe",width:"+0.6ex",textOnly:!1},{symbol:"⛵️",name:"boat",width:"+0.6ex",textOnly:!1},{symbol:"⛵️",name:"sailboat",width:"+0.6ex",textOnly:!1},{symbol:"🛥",name:"motor_boat",width:"+0.6ex",textOnly:!1},{symbol:"🚤",name:"speedboat",width:"+0.6ex",textOnly:!1},{symbol:"🛳",name:"passenger_ship",width:"+0.6ex",textOnly:!1},{symbol:"⛴",name:"ferry",width:"+0.6ex",textOnly:!1},{symbol:"🚢",name:"ship",width:"+0.6ex",textOnly:!1},{symbol:"⚓️",name:"anchor",width:"+0.6ex",textOnly:!1},{symbol:"🚧",name:"construction",width:"+0.6ex",textOnly:!1},{symbol:"⛽️",name:"fuelpump",width:"+0.6ex",textOnly:!1},{symbol:"🚏",name:"busstop",width:"+0.6ex",textOnly:!1},{symbol:"🚦",name:"vertical_traffic_light",width:"+0.6ex",textOnly:!1},{symbol:"🚥",name:"traffic_light",width:"+0.6ex",textOnly:!1},{symbol:"🗺",name:"world_map",width:"+0.6ex",textOnly:!1},{symbol:"🗿",name:"moyai",width:"+0.6ex",textOnly:!1},{symbol:"🗽",name:"statue_of_liberty",width:"+0.6ex",textOnly:!1},{symbol:"⛲️",name:"fountain",width:"+0.6ex",textOnly:!1},{symbol:"🗼",name:"tokyo_tower",width:"+0.6ex",textOnly:!1},{symbol:"🏰",name:"european_castle",width:"+0.6ex",textOnly:!1},{symbol:"🏯",name:"japanese_castle",width:"+0.6ex",textOnly:!1},{symbol:"🏟",name:"stadium",width:"+0.6ex",textOnly:!1},{symbol:"🎡",name:"ferris_wheel",width:"+0.6ex",textOnly:!1},{symbol:"🎢",name:"roller_coaster",width:"+0.6ex",textOnly:!1},{symbol:"🎠",name:"carousel_horse",width:"+0.6ex",textOnly:!1},{symbol:"⛱",name:"parasol_on_ground",width:"+0.6ex",textOnly:!1},{symbol:"🏖",name:"beach_umbrella",width:"+0.6ex",textOnly:!1},{symbol:"🏝",name:"desert_island",width:"+0.6ex",textOnly:!1},{symbol:"⛰",name:"mountain",width:"+0.6ex",textOnly:!1},{symbol:"🏔",name:"mountain_snow",width:"+0.6ex",textOnly:!1},{symbol:"🗻",name:"mount_fuji",width:"+0.6ex",textOnly:!1},{symbol:"🌋",name:"volcano",width:"+0.6ex",textOnly:!1},{symbol:"🏜",name:"desert",width:"+0.6ex",textOnly:!1},{symbol:"🏕",name:"camping",width:"+0.6ex",textOnly:!1},{symbol:"⛺️",name:"tent",width:"+0.6ex",textOnly:!1},{symbol:"🛤",name:"railway_track",width:"+0.6ex",textOnly:!1},{symbol:"🛣",name:"motorway",width:"+0.6ex",textOnly:!1},{symbol:"🏗",name:"building_construction",width:"+0.6ex",textOnly:!1},{symbol:"🏭",name:"factory",width:"+0.6ex",textOnly:!1},{symbol:"🏠",name:"house",width:"+0.6ex",textOnly:!1},{symbol:"🏡",name:"house_with_garden",width:"+0.6ex",textOnly:!1},{symbol:"🏘",name:"houses",width:"+0.6ex",textOnly:!1},{symbol:"🏚",name:"derelict_house",width:"+0.6ex",textOnly:!1},{symbol:"🏢",name:"office",width:"+0.6ex",textOnly:!1},{symbol:"🏬",name:"department_store",width:"+0.6ex",textOnly:!1},{symbol:"🏣",name:"post_office",width:"+0.6ex",textOnly:!1},{symbol:"🏤",name:"european_post_office",width:"+0.6ex",textOnly:!1},{symbol:"🏥",name:"hospital",width:"+0.6ex",textOnly:!1},{symbol:"🏦",name:"bank",width:"+0.6ex",textOnly:!1},{symbol:"🏨",name:"hotel",width:"+0.6ex",textOnly:!1},{symbol:"🏪",name:"convenience_store",width:"+0.6ex",textOnly:!1},{symbol:"🏫",name:"school",width:"+0.6ex",textOnly:!1},{symbol:"🏩",name:"love_hotel",width:"+0.6ex",textOnly:!1},{symbol:"💒",name:"wedding",width:"+0.6ex",textOnly:!1},{symbol:"🏛",name:"classical_building",width:"+0.6ex",textOnly:!1},{symbol:"⛪️",name:"church",width:"+0.6ex",textOnly:!1},{symbol:"🕌",name:"mosque",width:"+0.6ex",textOnly:!1},{symbol:"🕍",name:"synagogue",width:"+0.6ex",textOnly:!1},{symbol:"🕋",name:"kaaba",width:"+0.6ex",textOnly:!1},{symbol:"⛩",name:"shinto_shrine",width:"+0.6ex",textOnly:!1},{symbol:"🗾",name:"japan",width:"+0.6ex",textOnly:!1},{symbol:"🎑",name:"rice_scene",width:"+0.6ex",textOnly:!1},{symbol:"🏞",name:"national_park",width:"+0.6ex",textOnly:!1},{symbol:"🌅",name:"sunrise",width:"+0.6ex",textOnly:!1},{symbol:"🌄",name:"sunrise_over_mountains",width:"+0.6ex",textOnly:!1},{symbol:"🌠",name:"stars",width:"+0.6ex",textOnly:!1},{symbol:"🎇",name:"sparkler",width:"+0.6ex",textOnly:!1},{symbol:"🎆",name:"fireworks",width:"+0.6ex",textOnly:!1},{symbol:"🌇",name:"city_sunrise",width:"+0.6ex",textOnly:!1},{symbol:"🌆",name:"city_sunset",width:"+0.6ex",textOnly:!1},{symbol:"🏙",name:"cityscape",width:"+0.6ex",textOnly:!1},{symbol:"🌃",name:"night_with_stars",width:"+0.6ex",textOnly:!1},{symbol:"🌌",name:"milky_way",width:"+0.6ex",textOnly:!1},{symbol:"🌉",name:"bridge_at_night",width:"+0.6ex",textOnly:!1},{symbol:"🌁",name:"foggy",width:"+0.6ex",textOnly:!1},{symbol:"⌚️",name:"watch",width:"+0.6ex",textOnly:!1},{symbol:"📱",name:"iphone",width:"+0.6ex",textOnly:!1},{symbol:"📲",name:"calling",width:"+0.6ex",textOnly:!1},{symbol:"💻",name:"computer",width:"+0.6ex",textOnly:!1},{symbol:"⌨️",name:"keyboard",width:"+0.6ex",textOnly:!1},{symbol:"🖥",name:"desktop_computer",width:"+0.6ex",textOnly:!1},{symbol:"🖨",name:"printer",width:"+0.6ex",textOnly:!1},{symbol:"🖱",name:"computer_mouse",width:"+0.6ex",textOnly:!1},{symbol:"🖲",name:"trackball",width:"+0.6ex",textOnly:!1},{symbol:"🕹",name:"joystick",width:"+0.6ex",textOnly:!1},{symbol:"🗜",name:"clamp",width:"+0.6ex",textOnly:!1},{symbol:"💽",name:"minidisc",width:"+0.6ex",textOnly:!1},{symbol:"💾",name:"floppy_disk",width:"+0.6ex",textOnly:!1},{symbol:"💿",name:"cd",width:"+0.6ex",textOnly:!1},{symbol:"📀",name:"dvd",width:"+0.6ex",textOnly:!1},{symbol:"📼",name:"vhs",width:"+0.6ex",textOnly:!1},{symbol:"📷",name:"camera",width:"+0.6ex",textOnly:!1},{symbol:"📸",name:"camera_flash",width:"+0.6ex",textOnly:!1},{symbol:"📹",name:"video_camera",width:"+0.6ex",textOnly:!1},{symbol:"🎥",name:"movie_camera",width:"+0.6ex",textOnly:!1},{symbol:"📽",name:"film_projector",width:"+0.6ex",textOnly:!1},{symbol:"🎞",name:"film_strip",width:"+0.6ex",textOnly:!1},{symbol:"📞",name:"telephone_receiver",width:"+0.6ex",textOnly:!1},{symbol:"☎️",name:"phone",width:"+0.6ex",textOnly:!1},{symbol:"☎️",name:"telephone",width:"+0.6ex",textOnly:!1},{symbol:"📟",name:"pager",width:"+0.6ex",textOnly:!1},{symbol:"📠",name:"fax",width:"+0.6ex",textOnly:!1},{symbol:"📺",name:"tv",width:"+0.6ex",textOnly:!1},{symbol:"📻",name:"radio",width:"+0.6ex",textOnly:!1},{symbol:"🎙",name:"studio_microphone",width:"+0.6ex",textOnly:!1},{symbol:"🎚",name:"level_slider",width:"+0.6ex",textOnly:!1},{symbol:"🎛",name:"control_knobs",width:"+0.6ex",textOnly:!1},{symbol:"⏱",name:"stopwatch",width:"+0.6ex",textOnly:!1},{symbol:"⏲",name:"timer_clock",width:"+0.6ex",textOnly:!1},{symbol:"⏰",name:"alarm_clock",width:"+0.6ex",textOnly:!1},{symbol:"🕰",name:"mantelpiece_clock",width:"+0.6ex",textOnly:!1},{symbol:"⌛️",name:"hourglass",width:"+0.6ex",textOnly:!1},{symbol:"⏳",name:"hourglass_flowing_sand",width:"+0.6ex",textOnly:!1},{symbol:"📡",name:"satellite",width:"+0.6ex",textOnly:!1},{symbol:"🔋",name:"battery",width:"+0.6ex",textOnly:!1},{symbol:"🔌",name:"electric_plug",width:"+0.6ex",textOnly:!1},{symbol:"💡",name:"bulb",width:"+0.6ex",textOnly:!1},{symbol:"🔦",name:"flashlight",width:"+0.6ex",textOnly:!1},{symbol:"🕯",name:"candle",width:"+0.6ex",textOnly:!1},{symbol:"🗑",name:"wastebasket",width:"+0.6ex",textOnly:!1},{symbol:"🛢",name:"oil_drum",width:"+0.6ex",textOnly:!1},{symbol:"💸",name:"money_with_wings",width:"+0.6ex",textOnly:!1},{symbol:"💵",name:"dollar",width:"+0.6ex",textOnly:!1},{symbol:"💴",name:"yen",width:"+0.6ex",textOnly:!1},{symbol:"💶",name:"euro",width:"+0.6ex",textOnly:!1},{symbol:"💷",name:"pound",width:"+0.6ex",textOnly:!1},{symbol:"💰",name:"moneybag",width:"+0.6ex",textOnly:!1},{symbol:"💳",name:"credit_card",width:"+0.6ex",textOnly:!1},{symbol:"💎",name:"gem",width:"+0.6ex",textOnly:!1},{symbol:"⚖️",name:"balance_scale",width:"+0.6ex",textOnly:!1},{symbol:"🔧",name:"wrench",width:"+0.6ex",textOnly:!1},{symbol:"🔨",name:"hammer",width:"+0.6ex",textOnly:!1},{symbol:"⚒",name:"hammer_and_pick",width:"+0.6ex",textOnly:!1},{symbol:"🛠",name:"hammer_and_wrench",width:"+0.6ex",textOnly:!1},{symbol:"⛏",name:"pick",width:"+0.6ex",textOnly:!1},{symbol:"🔩",name:"nut_and_bolt",width:"+0.6ex",textOnly:!1},{symbol:"⚙️",name:"gear",width:"+0.6ex",textOnly:!1},{symbol:"⛓",name:"chains",width:"+0.6ex",textOnly:!1},{symbol:"🔫",name:"gun",width:"+0.6ex",textOnly:!1},{symbol:"💣",name:"bomb",width:"+0.6ex",textOnly:!1},{symbol:"🔪",name:"hocho",width:"+0.6ex",textOnly:!1},{symbol:"🔪",name:"knife",width:"+0.6ex",textOnly:!1},{symbol:"🗡",name:"dagger",width:"+0.6ex",textOnly:!1},{symbol:"⚔️",name:"crossed_swords",width:"+0.6ex",textOnly:!1},{symbol:"🛡",name:"shield",width:"+0.6ex",textOnly:!1},{symbol:"🚬",name:"smoking",width:"+0.6ex",textOnly:!1},{symbol:"⚰️",name:"coffin",width:"+0.6ex",textOnly:!1},{symbol:"⚱️",name:"funeral_urn",width:"+0.6ex",textOnly:!1},{symbol:"🏺",name:"amphora",width:"+0.6ex",textOnly:!1},{symbol:"🔮",name:"crystal_ball",width:"+0.6ex",textOnly:!1},{symbol:"📿",name:"prayer_beads",width:"+0.6ex",textOnly:!1},{symbol:"💈",name:"barber",width:"+0.6ex",textOnly:!1},{symbol:"⚗️",name:"alembic",width:"+0.6ex",textOnly:!1},{symbol:"🔭",name:"telescope",width:"+0.6ex",textOnly:!1},{symbol:"🔬",name:"microscope",width:"+0.6ex",textOnly:!1},{symbol:"🕳",name:"hole",width:"+0.6ex",textOnly:!1},{symbol:"💊",name:"pill",width:"+0.6ex",textOnly:!1},{symbol:"💉",name:"syringe",width:"+0.6ex",textOnly:!1},{symbol:"🌡",name:"thermometer",width:"+0.6ex",textOnly:!1},{symbol:"🚽",name:"toilet",width:"+0.6ex",textOnly:!1},{symbol:"🚰",name:"potable_water",width:"+0.6ex",textOnly:!1},{symbol:"🚿",name:"shower",width:"+0.6ex",textOnly:!1},{symbol:"🛁",name:"bathtub",width:"+0.6ex",textOnly:!1},{symbol:"🛀",name:"bath",width:"+0.6ex",textOnly:!1},{symbol:"🛎",name:"bellhop_bell",width:"+0.6ex",textOnly:!1},{symbol:"🔑",name:"key",width:"+0.6ex",textOnly:!1},{symbol:"🗝",name:"old_key",width:"+0.6ex",textOnly:!1},{symbol:"🚪",name:"door",width:"+0.6ex",textOnly:!1},{symbol:"🛋",name:"couch_and_lamp",width:"+0.6ex",textOnly:!1},{symbol:"🛏",name:"bed",width:"+0.6ex",textOnly:!1},{symbol:"🛌",name:"sleeping_bed",width:"+0.6ex",textOnly:!1},{symbol:"🖼",name:"framed_picture",width:"+0.6ex",textOnly:!1},{symbol:"🛍",name:"shopping",width:"+0.6ex",textOnly:!1},{symbol:"🛒",name:"shopping_cart",width:"+0.6ex",textOnly:!1},{symbol:"🎁",name:"gift",width:"+0.6ex",textOnly:!1},{symbol:"🎈",name:"balloon",width:"+0.6ex",textOnly:!1},{symbol:"🎏",name:"flags",width:"+0.6ex",textOnly:!1},{symbol:"🎀",name:"ribbon",width:"+0.6ex",textOnly:!1},{symbol:"🎊",name:"confetti_ball",width:"+0.6ex",textOnly:!1},{symbol:"🎉",name:"tada",width:"+0.6ex",textOnly:!1},{symbol:"🎎",name:"dolls",width:"+0.6ex",textOnly:!1},{symbol:"🏮",name:"izakaya_lantern",width:"+0.6ex",textOnly:!1},{symbol:"🏮",name:"lantern",width:"+0.6ex",textOnly:!1},{symbol:"🎐",name:"wind_chime",width:"+0.6ex",textOnly:!1},{symbol:"✉️",name:"email",width:"+0.6ex",textOnly:!1},{symbol:"✉️",name:"envelope",width:"+0.6ex",textOnly:!1},{symbol:"📩",name:"envelope_with_arrow",width:"+0.6ex",textOnly:!1},{symbol:"📨",name:"incoming_envelope",width:"+0.6ex",textOnly:!1},{symbol:"📧",name:"e-mail",width:"+0.6ex",textOnly:!1},{symbol:"💌",name:"love_letter",width:"+0.6ex",textOnly:!1},{symbol:"📥",name:"inbox_tray",width:"+0.6ex",textOnly:!1},{symbol:"📤",name:"outbox_tray",width:"+0.6ex",textOnly:!1},{symbol:"📦",name:"package",width:"+0.6ex",textOnly:!1},{symbol:"🏷",name:"label",width:"+0.6ex",textOnly:!1},{symbol:"📪",name:"mailbox_closed",width:"+0.6ex",textOnly:!1},{symbol:"📫",name:"mailbox",width:"+0.6ex",textOnly:!1},{symbol:"📬",name:"mailbox_with_mail",width:"+0.6ex",textOnly:!1},{symbol:"📭",name:"mailbox_with_no_mail",width:"+0.6ex",textOnly:!1},{symbol:"📮",name:"postbox",width:"+0.6ex",textOnly:!1},{symbol:"📯",name:"postal_horn",width:"+0.6ex",textOnly:!1},{symbol:"📜",name:"scroll",width:"+0.6ex",textOnly:!1},{symbol:"📃",name:"page_with_curl",width:"+0.6ex",textOnly:!1},{symbol:"📄",name:"page_facing_up",width:"+0.6ex",textOnly:!1},{symbol:"📑",name:"bookmark_tabs",width:"+0.6ex",textOnly:!1},{symbol:"📊",name:"bar_chart",width:"+0.6ex",textOnly:!1},{symbol:"📈",name:"chart_with_upwards_trend",width:"+0.6ex",textOnly:!1},{symbol:"📉",name:"chart_with_downwards_trend",width:"+0.6ex",textOnly:!1},{symbol:"🗒",name:"spiral_notepad",width:"+0.6ex",textOnly:!1},{symbol:"🗓",name:"spiral_calendar",width:"+0.6ex",textOnly:!1},{symbol:"📆",name:"calendar",width:"+0.6ex",textOnly:!1},{symbol:"📅",name:"date",width:"+0.6ex",textOnly:!1},{symbol:"📇",name:"card_index",width:"+0.6ex",textOnly:!1},{symbol:"🗃",name:"card_file_box",width:"+0.6ex",textOnly:!1},{symbol:"🗳",name:"ballot_box",width:"+0.6ex",textOnly:!1},{symbol:"🗄",name:"file_cabinet",width:"+0.6ex",textOnly:!1},{symbol:"📋",name:"clipboard",width:"+0.6ex",textOnly:!1},{symbol:"📁",name:"file_folder",width:"+0.6ex",textOnly:!1},{symbol:"📂",name:"open_file_folder",width:"+0.6ex",textOnly:!1},{symbol:"🗂",name:"card_index_dividers",width:"+0.6ex",textOnly:!1},{symbol:"🗞",name:"newspaper_roll",width:"+0.6ex",textOnly:!1},{symbol:"📰",name:"newspaper",width:"+0.6ex",textOnly:!1},{symbol:"📓",name:"notebook",width:"+0.6ex",textOnly:!1},{symbol:"📔",name:"notebook_with_decorative_cover",width:"+0.6ex",textOnly:!1},{symbol:"📒",name:"ledger",width:"+0.6ex",textOnly:!1},{symbol:"📕",name:"closed_book",width:"+0.6ex",textOnly:!1},{symbol:"📗",name:"green_book",width:"+0.6ex",textOnly:!1},{symbol:"📘",name:"blue_book",width:"+0.6ex",textOnly:!1},{symbol:"📙",name:"orange_book",width:"+0.6ex",textOnly:!1},{symbol:"📚",name:"books",width:"+0.6ex",textOnly:!1},{symbol:"📖",name:"book",width:"+0.6ex",textOnly:!1},{symbol:"📖",name:"open_book",width:"+0.6ex",textOnly:!1},{symbol:"🔖",name:"bookmark",width:"+0.6ex",textOnly:!1},{symbol:"🔗",name:"link",width:"+0.6ex",textOnly:!1},{symbol:"📎",name:"paperclip",width:"+0.6ex",textOnly:!1},{symbol:"🖇",name:"paperclips",width:"+0.6ex",textOnly:!1},{symbol:"📐",name:"triangular_ruler",width:"+0.6ex",textOnly:!1},{symbol:"📏",name:"straight_ruler",width:"+0.6ex",textOnly:!1},{symbol:"📌",name:"pushpin",width:"+0.6ex",textOnly:!1},{symbol:"📍",name:"round_pushpin",width:"+0.6ex",textOnly:!1},{symbol:"✂️",name:"scissors",width:"+0.6ex",textOnly:!1},{symbol:"🖊",name:"pen",width:"+0.6ex",textOnly:!1},{symbol:"🖋",name:"fountain_pen",width:"+0.6ex",textOnly:!1},{symbol:"✒️",name:"black_nib",width:"+0.6ex",textOnly:!1},{symbol:"🖌",name:"paintbrush",width:"+0.6ex",textOnly:!1},{symbol:"🖍",name:"crayon",width:"+0.6ex",textOnly:!1},{symbol:"📝",name:"memo",width:"+0.6ex",textOnly:!1},{symbol:"📝",name:"pencil",width:"+0.6ex",textOnly:!1},{symbol:"✏️",name:"pencil2",width:"+0.6ex",textOnly:!1},{symbol:"🔍",name:"mag",width:"+0.6ex",textOnly:!1},{symbol:"🔎",name:"mag_right",width:"+0.6ex",textOnly:!1},{symbol:"🔏",name:"lock_with_ink_pen",width:"+0.6ex",textOnly:!1},{symbol:"🔐",name:"closed_lock_with_key",width:"+0.6ex",textOnly:!1},{symbol:"🔒",name:"lock",width:"+0.6ex",textOnly:!1},{symbol:"🔓",name:"unlock",width:"+0.6ex",textOnly:!1},{symbol:"❤️",name:"heart",width:"+0.6ex",textOnly:!1},{symbol:"💛",name:"yellow_heart",width:"+0.6ex",textOnly:!1},{symbol:"💚",name:"green_heart",width:"+0.6ex",textOnly:!1},{symbol:"💙",name:"blue_heart",width:"+0.6ex",textOnly:!1},{symbol:"💜",name:"purple_heart",width:"+0.6ex",textOnly:!1},{symbol:"🖤",name:"black_heart",width:"+0.6ex",textOnly:!1},{symbol:"💔",name:"broken_heart",width:"+0.6ex",textOnly:!1},{symbol:"❣️",name:"heavy_heart_exclamation",width:"+0.6ex",textOnly:!1},{symbol:"💕",name:"two_hearts",width:"+0.6ex",textOnly:!1},{symbol:"💞",name:"revolving_hearts",width:"+0.6ex",textOnly:!1},{symbol:"💓",name:"heartbeat",width:"+0.6ex",textOnly:!1},{symbol:"💗",name:"heartpulse",width:"+0.6ex",textOnly:!1},{symbol:"💖",name:"sparkling_heart",width:"+0.6ex",textOnly:!1},{symbol:"💘",name:"cupid",width:"+0.6ex",textOnly:!1},{symbol:"💝",name:"gift_heart",width:"+0.6ex",textOnly:!1},{symbol:"💟",name:"heart_decoration",width:"+0.6ex",textOnly:!1},{symbol:"☮️",name:"peace_symbol",width:"+0.6ex",textOnly:!1},{symbol:"✝️",name:"latin_cross",width:"+0.6ex",textOnly:!1},{symbol:"☪️",name:"star_and_crescent",width:"+0.6ex",textOnly:!1},{symbol:"🕉",name:"om",width:"+0.6ex",textOnly:!1},{symbol:"☸️",name:"wheel_of_dharma",width:"+0.6ex",textOnly:!1},{symbol:"✡️",name:"star_of_david",width:"+0.6ex",textOnly:!1},{symbol:"🔯",name:"six_pointed_star",width:"+0.6ex",textOnly:!1},{symbol:"🕎",name:"menorah",width:"+0.6ex",textOnly:!1},{symbol:"☯️",name:"yin_yang",width:"+0.6ex",textOnly:!1},{symbol:"☦️",name:"orthodox_cross",width:"+0.6ex",textOnly:!1},{symbol:"🛐",name:"place_of_worship",width:"+0.6ex",textOnly:!1},{symbol:"⛎",name:"ophiuchus",width:"+0.6ex",textOnly:!1},{symbol:"♈️",name:"aries",width:"+0.6ex",textOnly:!1},{symbol:"♉️",name:"taurus",width:"+0.6ex",textOnly:!1},{symbol:"♊️",name:"gemini",width:"+0.6ex",textOnly:!1},{symbol:"♋️",name:"cancer",width:"+0.6ex",textOnly:!1},{symbol:"♌️",name:"leo",width:"+0.6ex",textOnly:!1},{symbol:"♍️",name:"virgo",width:"+0.6ex",textOnly:!1},{symbol:"♎️",name:"libra",width:"+0.6ex",textOnly:!1},{symbol:"♏️",name:"scorpius",width:"+0.6ex",textOnly:!1},{symbol:"♐️",name:"sagittarius",width:"+0.6ex",textOnly:!1},{symbol:"♑️",name:"capricorn",width:"+0.6ex",textOnly:!1},{symbol:"♒️",name:"aquarius",width:"+0.6ex",textOnly:!1},{symbol:"♓️",name:"pisces",width:"+0.6ex",textOnly:!1},{symbol:"🆔",name:"id",width:"+0.6ex",textOnly:!1},{symbol:"⚛️",name:"atom_symbol",width:"+0.6ex",textOnly:!1},{symbol:"🉑",name:"accept",width:"+0.6ex",textOnly:!1},{symbol:"☢️",name:"radioactive",width:"+0.6ex",textOnly:!1},{symbol:"☣️",name:"biohazard",width:"+0.6ex",textOnly:!1},{symbol:"📴",name:"mobile_phone_off",width:"+0.6ex",textOnly:!1},{symbol:"📳",name:"vibration_mode",width:"+0.6ex",textOnly:!1},{symbol:"✴️",name:"eight_pointed_black_star",width:"+0.6ex",textOnly:!1},{symbol:"🆚",name:"vs",width:"+0.6ex",textOnly:!1},{symbol:"💮",name:"white_flower",width:"+0.6ex",textOnly:!1},{symbol:"🉐",name:"ideograph_advantage",width:"+0.6ex",textOnly:!1},{symbol:"㊙️",name:"secret",width:"+0.6ex",textOnly:!1},{symbol:"㊗️",name:"congratulations",width:"+0.6ex",textOnly:!1},{symbol:"🈵",name:"u6e80",width:"+0.6ex",textOnly:!1},{symbol:"🅰️",name:"a",width:"+0.6ex",textOnly:!0},{symbol:"🅱️",name:"b",width:"+0.6ex",textOnly:!0},{symbol:"🆎",name:"ab",width:"+0.6ex",textOnly:!1},{symbol:"🆑",name:"cl",width:"+0.6ex",textOnly:!1},{symbol:"🅾️",name:"o2",width:"+0.6ex",textOnly:!0},{symbol:"🆘",name:"sos",width:"+0.6ex",textOnly:!1},{symbol:"❌",name:"x",width:"+0.6ex",textOnly:!1},{symbol:"⭕️",name:"o",width:"+0.6ex",textOnly:!1},{symbol:"🛑",name:"stop_sign",width:"+0.6ex",textOnly:!1},{symbol:"⛔️",name:"no_entry",width:"+0.6ex",textOnly:!1},{symbol:"📛",name:"name_badge",width:"+0.6ex",textOnly:!1},{symbol:"🚫",name:"no_entry_sign",width:"+0.6ex",textOnly:!1},{symbol:"💢",name:"anger",width:"+0.6ex",textOnly:!1},{symbol:"♨️",name:"hotsprings",width:"+0.6ex",textOnly:!1},{symbol:"🚷",name:"no_pedestrians",width:"+0.6ex",textOnly:!1},{symbol:"🚯",name:"do_not_litter",width:"+0.6ex",textOnly:!1},{symbol:"🚳",name:"no_bicycles",width:"+0.6ex",textOnly:!1},{symbol:"🚱",name:"non-potable_water",width:"+0.6ex",textOnly:!1},{symbol:"🔞",name:"underage",width:"+0.6ex",textOnly:!1},{symbol:"📵",name:"no_mobile_phones",width:"+0.6ex",textOnly:!1},{symbol:"🚭",name:"no_smoking",width:"+0.6ex",textOnly:!1},{symbol:"❗️",name:"exclamation",width:"+0.6ex",textOnly:!1},{symbol:"❗️",name:"heavy_exclamation_mark",width:"+0.6ex",textOnly:!1},{symbol:"❕",name:"grey_exclamation",width:"+0.6ex",textOnly:!1},{symbol:"❓",name:"question",width:"+0.6ex",textOnly:!1},{symbol:"❔",name:"grey_question",width:"+0.6ex",textOnly:!1},{symbol:"‼️",name:"bangbang",width:"+0.6ex",textOnly:!1},{symbol:"⁉️",name:"interrobang",width:"+0.6ex",textOnly:!1},{symbol:"🔅",name:"low_brightness",width:"+0.6ex",textOnly:!1},{symbol:"🔆",name:"high_brightness",width:"+0.6ex",textOnly:!1},{symbol:"〽️",name:"part_alternation_mark",width:"+0.6ex",textOnly:!1},{symbol:"⚠️",name:"warning",width:"+0.6ex",textOnly:!1},{symbol:"🚸",name:"children_crossing",width:"+0.6ex",textOnly:!1},{symbol:"🔱",name:"trident",width:"+0.6ex",textOnly:!1},{symbol:"⚜️",name:"fleur_de_lis",width:"+0.6ex",textOnly:!1},{symbol:"🔰",name:"beginner",width:"+0.6ex",textOnly:!1},{symbol:"♻️",name:"recycle",width:"+0.6ex",textOnly:!1},{symbol:"✅",name:"white_check_mark",width:"+0.6ex",textOnly:!1},{symbol:"💹",name:"chart",width:"+0.6ex",textOnly:!1},{symbol:"❇️",name:"sparkle",width:"+0.6ex",textOnly:!1},{symbol:"✳️",name:"eight_spoked_asterisk",width:"+0.6ex",textOnly:!1},{symbol:"❎",name:"negative_squared_cross_mark",width:"+0.6ex",textOnly:!1},{symbol:"🌐",name:"globe_with_meridians",width:"+0.6ex",textOnly:!1},{symbol:"💠",name:"diamond_shape_with_a_dot_inside",width:"+0.6ex",textOnly:!1},{symbol:"Ⓜ️",name:"m",width:"+0.6ex",textOnly:!1},{symbol:"🌀",name:"cyclone",width:"+0.6ex",textOnly:!1},{symbol:"💤",name:"zzz",width:"+0.6ex",textOnly:!1},{symbol:"🏧",name:"atm",width:"+0.6ex",textOnly:!1},{symbol:"🚾",name:"wc",width:"+0.6ex",textOnly:!1},{symbol:"♿️",name:"wheelchair",width:"+0.6ex",textOnly:!1},{symbol:"🅿️",name:"parking",width:"+0.6ex",textOnly:!0},{symbol:"🈂️",name:"sa",width:"+0.6ex",textOnly:!0},{symbol:"🛂",name:"passport_control",width:"+0.6ex",textOnly:!1},{symbol:"🛃",name:"customs",width:"+0.6ex",textOnly:!1},{symbol:"🛄",name:"baggage_claim",width:"+0.6ex",textOnly:!1},{symbol:"🛅",name:"left_luggage",width:"+0.6ex",textOnly:!1},{symbol:"🚹",name:"mens",width:"+0.6ex",textOnly:!1},{symbol:"🚺",name:"womens",width:"+0.6ex",textOnly:!1},{symbol:"🚼",name:"baby_symbol",width:"+0.6ex",textOnly:!1},{symbol:"🚻",name:"restroom",width:"+0.6ex",textOnly:!1},{symbol:"🚮",name:"put_litter_in_its_place",width:"+0.6ex",textOnly:!1},{symbol:"🎦",name:"cinema",width:"+0.6ex",textOnly:!1},{symbol:"📶",name:"signal_strength",width:"+0.6ex",textOnly:!1},{symbol:"🈁",name:"koko",width:"+0.6ex",textOnly:!1},{symbol:"🔣",name:"symbols",width:"+0.6ex",textOnly:!1},{symbol:"ℹ️",name:"information_source",width:"+0.6ex",textOnly:!1},{symbol:"🔤",name:"abc",width:"+0.6ex",textOnly:!1},{symbol:"🔡",name:"abcd",width:"+0.6ex",textOnly:!1},{symbol:"🔠",name:"capital_abcd",width:"+0.6ex",textOnly:!1},{symbol:"🆖",name:"ng",width:"+0.6ex",textOnly:!1},{symbol:"🆗",name:"ok",width:"+0.6ex",textOnly:!1},{symbol:"🆙",name:"up",width:"+0.6ex",textOnly:!1},{symbol:"🆒",name:"cool",width:"+0.6ex",textOnly:!1},{symbol:"🆕",name:"new",width:"+0.6ex",textOnly:!1},{symbol:"🆓",name:"free",width:"+0.6ex",textOnly:!1},{symbol:"0️⃣",name:"zero",width:"+0.6ex",textOnly:!0},{symbol:"1️⃣",name:"one",width:"+0.6ex",textOnly:!0},{symbol:"2️⃣",name:"two",width:"+0.6ex",textOnly:!0},{symbol:"3️⃣",name:"three",width:"+0.6ex",textOnly:!0},{symbol:"4️⃣",name:"four",width:"+0.6ex",textOnly:!0},{symbol:"5️⃣",name:"five",width:"+0.6ex",textOnly:!0},{symbol:"6️⃣",name:"six",width:"+0.6ex",textOnly:!0},{symbol:"7️⃣",name:"seven",width:"+0.6ex",textOnly:!0},{symbol:"8️⃣",name:"eight",width:"+0.6ex",textOnly:!0},{symbol:"9️⃣",name:"nine",width:"+0.6ex",textOnly:!0},{symbol:"🔟",name:"keycap_ten",width:"+0.6ex",textOnly:!1},{symbol:"#️⃣",name:"hash",width:"+0.6ex",textOnly:!0},{symbol:"*️⃣",name:"asterisk",width:"+0.6ex",textOnly:!0},{symbol:"▶️",name:"arrow_forward",width:"+0.6ex",textOnly:!1},{symbol:"⏸",name:"pause_button",width:"+0.6ex",textOnly:!1},{symbol:"⏯",name:"play_or_pause_button",width:"+0.6ex",textOnly:!1},{symbol:"⏹",name:"stop_button",width:"+0.6ex",textOnly:!1},{symbol:"⏺",name:"record_button",width:"+0.6ex",textOnly:!1},{symbol:"⏭",name:"next_track_button",width:"+0.6ex",textOnly:!1},{symbol:"⏮",name:"previous_track_button",width:"+0.6ex",textOnly:!1},{symbol:"⏩",name:"fast_forward",width:"+0.6ex",textOnly:!1},{symbol:"⏪",name:"rewind",width:"+0.6ex",textOnly:!1},{symbol:"⏫",name:"arrow_double_up",width:"+0.6ex",textOnly:!1},{symbol:"⏬",name:"arrow_double_down",width:"+0.6ex",textOnly:!1},{symbol:"◀️",name:"arrow_backward",width:"+0.6ex",textOnly:!1},{symbol:"🔼",name:"arrow_up_small",width:"+0.6ex",textOnly:!1},{symbol:"🔽",name:"arrow_down_small",width:"+0.6ex",textOnly:!1},{symbol:"➡️",name:"arrow_right",width:"+0.6ex",textOnly:!1},{symbol:"⬅️",name:"arrow_left",width:"+0.6ex",textOnly:!1},{symbol:"⬆️",name:"arrow_up",width:"+0.6ex",textOnly:!1},{symbol:"⬇️",name:"arrow_down",width:"+0.6ex",textOnly:!1},{symbol:"↗️",name:"arrow_upper_right",width:"+0.6ex",textOnly:!1},{symbol:"↘️",name:"arrow_lower_right",width:"+0.6ex",textOnly:!1},{symbol:"↙️",name:"arrow_lower_left",width:"+0.6ex",textOnly:!1},{symbol:"↖️",name:"arrow_upper_left",width:"+0.6ex",textOnly:!1},{symbol:"↕️",name:"arrow_up_down",width:"+0.6ex",textOnly:!1},{symbol:"↔️",name:"left_right_arrow",width:"+0.6ex",textOnly:!1},{symbol:"↪️",name:"arrow_right_hook",width:"+0.6ex",textOnly:!1},{symbol:"↩️",name:"leftwards_arrow_with_hook",width:"+0.6ex",textOnly:!1},{symbol:"⤴️",name:"arrow_heading_up",width:"+0.6ex",textOnly:!1},{symbol:"⤵️",name:"arrow_heading_down",width:"+0.6ex",textOnly:!1},{symbol:"🔀",name:"twisted_rightwards_arrows",width:"+0.6ex",textOnly:!1},{symbol:"🔁",name:"repeat",width:"+0.6ex",textOnly:!1},{symbol:"🔂",name:"repeat_one",width:"+0.6ex",textOnly:!1},{symbol:"🔄",name:"arrows_counterclockwise",width:"+0.6ex",textOnly:!1},{symbol:"🔃",name:"arrows_clockwise",width:"+0.6ex",textOnly:!1},{symbol:"🎵",name:"musical_note",width:"+0.6ex",textOnly:!1},{symbol:"🎶",name:"notes",width:"+0.6ex",textOnly:!1},{symbol:"➕",name:"heavy_plus_sign",width:"+0.6ex",textOnly:!1},{symbol:"➖",name:"heavy_minus_sign",width:"+0.6ex",textOnly:!1},{symbol:"➗",name:"heavy_division_sign",width:"+0.6ex",textOnly:!1},{symbol:"✖️",name:"heavy_multiplication_x",width:"+0.6ex",textOnly:!1},{symbol:"💲",name:"heavy_dollar_sign",width:"+0.6ex",textOnly:!1},{symbol:"💱",name:"currency_exchange",width:"+0.6ex",textOnly:!1},{symbol:"™️",name:"tm",width:"+0.6ex",textOnly:!1},{symbol:"©️",name:"copyright",width:"+0.6ex",textOnly:!1},{symbol:"®️",name:"registered",width:"+0.6ex",textOnly:!1},{symbol:"〰️",name:"wavy_dash",width:"+0.6ex",textOnly:!1},{symbol:"➰",name:"curly_loop",width:"+0.6ex",textOnly:!1},{symbol:"➿",name:"loop",width:"+0.6ex",textOnly:!1},{symbol:"🔚",name:"end",width:"+0.6ex",textOnly:!1},{symbol:"🔙",name:"back",width:"+0.6ex",textOnly:!1},{symbol:"🔛",name:"on",width:"+0.6ex",textOnly:!1},{symbol:"🔝",name:"top",width:"+0.6ex",textOnly:!1},{symbol:"🔜",name:"soon",width:"+0.6ex",textOnly:!1},{symbol:"✔️",name:"heavy_check_mark",width:"+0.6ex",textOnly:!1},{symbol:"☑️",name:"ballot_box_with_check",width:"+0.6ex",textOnly:!1},{symbol:"🔘",name:"radio_button",width:"+0.6ex",textOnly:!1},{symbol:"⚪️",name:"white_circle",width:"+0.6ex",textOnly:!1},{symbol:"⚫️",name:"black_circle",width:"+0.6ex",textOnly:!1},{symbol:"🔴",name:"red_circle",width:"+0.6ex",textOnly:!1},{symbol:"🔵",name:"large_blue_circle",width:"+0.6ex",textOnly:!1},{symbol:"🔺",name:"small_red_triangle",width:"+0.6ex",textOnly:!1},{symbol:"🔻",name:"small_red_triangle_down",width:"+0.6ex",textOnly:!1},{symbol:"🔸",name:"small_orange_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔹",name:"small_blue_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔶",name:"large_orange_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔷",name:"large_blue_diamond",width:"+0.6ex",textOnly:!1},{symbol:"🔳",name:"white_square_button",width:"+0.6ex",textOnly:!1},{symbol:"🔲",name:"black_square_button",width:"+0.6ex",textOnly:!1},{symbol:"▪️",name:"black_small_square",width:"+0.6ex",textOnly:!1},{symbol:"▫️",name:"white_small_square",width:"+0.6ex",textOnly:!1},{symbol:"◾️",name:"black_medium_small_square",width:"+0.6ex",textOnly:!1},{symbol:"◽️",name:"white_medium_small_square",width:"+0.6ex",textOnly:!1},{symbol:"◼️",name:"black_medium_square",width:"+0.6ex",textOnly:!1},{symbol:"◻️",name:"white_medium_square",width:"+0.6ex",textOnly:!1},{symbol:"⬛️",name:"black_large_square",width:"+0.6ex",textOnly:!1},{symbol:"⬜️",name:"white_large_square",width:"+0.6ex",textOnly:!1},{symbol:"🔈",name:"speaker",width:"+0.6ex",textOnly:!1},{symbol:"🔇",name:"mute",width:"+0.6ex",textOnly:!1},{symbol:"🔉",name:"sound",width:"+0.6ex",textOnly:!1},{symbol:"🔊",name:"loud_sound",width:"+0.6ex",textOnly:!1},{symbol:"🔔",name:"bell",width:"+0.6ex",textOnly:!1},{symbol:"🔕",name:"no_bell",width:"+0.6ex",textOnly:!1},{symbol:"📣",name:"mega",width:"+0.6ex",textOnly:!1},{symbol:"📢",name:"loudspeaker",width:"+0.6ex",textOnly:!1},{symbol:"👁‍🗨",name:"eye_speech_bubble",width:"+0.6ex",textOnly:!0},{symbol:"💬",name:"speech_balloon",width:"+0.6ex",textOnly:!1},{symbol:"💭",name:"thought_balloon",width:"+0.6ex",textOnly:!1},{symbol:"🗯",name:"right_anger_bubble",width:"+0.6ex",textOnly:!1},{symbol:"♠️",name:"spades",width:"+0.6ex",textOnly:!1},{symbol:"♣️",name:"clubs",width:"+0.6ex",textOnly:!1},{symbol:"♥️",name:"hearts",width:"+0.6ex",textOnly:!1},{symbol:"♦️",name:"diamonds",width:"+0.6ex",textOnly:!1},{symbol:"🃏",name:"black_joker",width:"+0.6ex",textOnly:!1},{symbol:"🎴",name:"flower_playing_cards",width:"+0.6ex",textOnly:!1},{symbol:"🀄️",name:"mahjong",width:"+0.6ex",textOnly:!0},{symbol:"🕐",name:"clock1",width:"+0.6ex",textOnly:!1},{symbol:"🕑",name:"clock2",width:"+0.6ex",textOnly:!1},{symbol:"🕒",name:"clock3",width:"+0.6ex",textOnly:!1},{symbol:"🕓",name:"clock4",width:"+0.6ex",textOnly:!1},{symbol:"🕔",name:"clock5",width:"+0.6ex",textOnly:!1},{symbol:"🕕",name:"clock6",width:"+0.6ex",textOnly:!1},{symbol:"🕖",name:"clock7",width:"+0.6ex",textOnly:!1},{symbol:"🕗",name:"clock8",width:"+0.6ex",textOnly:!1},{symbol:"🕘",name:"clock9",width:"+0.6ex",textOnly:!1},{symbol:"🕙",name:"clock10",width:"+0.6ex",textOnly:!1},{symbol:"🕚",name:"clock11",width:"+0.6ex",textOnly:!1},{symbol:"🕛",name:"clock12",width:"+0.6ex",textOnly:!1},{symbol:"🕜",name:"clock130",width:"+0.6ex",textOnly:!1},{symbol:"🕝",name:"clock230",width:"+0.6ex",textOnly:!1},{symbol:"🕞",name:"clock330",width:"+0.6ex",textOnly:!1},{symbol:"🕟",name:"clock430",width:"+0.6ex",textOnly:!1},{symbol:"🕠",name:"clock530",width:"+0.6ex",textOnly:!1},{symbol:"🕡",name:"clock630",width:"+0.6ex",textOnly:!1},{symbol:"🕢",name:"clock730",width:"+0.6ex",textOnly:!1},{symbol:"🕣",name:"clock830",width:"+0.6ex",textOnly:!1},{symbol:"🕤",name:"clock930",width:"+0.6ex",textOnly:!1},{symbol:"🕥",name:"clock1030",width:"+0.6ex",textOnly:!1},{symbol:"🕦",name:"clock1130",width:"+0.6ex",textOnly:!1},{symbol:"🕧",name:"clock1230",width:"+0.6ex",textOnly:!1},{symbol:"🏳️",name:"white_flag",width:"+0.6ex",textOnly:!0},{symbol:"🏴",name:"black_flag",width:"+0.6ex",textOnly:!1},{symbol:"🏁",name:"checkered_flag",width:"+0.6ex",textOnly:!1},{symbol:"🚩",name:"triangular_flag_on_post",width:"+0.6ex",textOnly:!1},{symbol:"🏳️‍🌈",name:"rainbow_flag",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇫",name:"afghanistan",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇽",name:"aland_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇱",name:"albania",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇿",name:"algeria",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇸",name:"american_samoa",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇩",name:"andorra",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇴",name:"angola",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇮",name:"anguilla",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇶",name:"antarctica",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇬",name:"antigua_barbuda",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇷",name:"argentina",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇲",name:"armenia",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇼",name:"aruba",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇺",name:"australia",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇹",name:"austria",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇿",name:"azerbaijan",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇸",name:"bahamas",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇭",name:"bahrain",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇩",name:"bangladesh",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇧",name:"barbados",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇾",name:"belarus",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇪",name:"belgium",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇿",name:"belize",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇯",name:"benin",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇲",name:"bermuda",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇹",name:"bhutan",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇴",name:"bolivia",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇶",name:"caribbean_netherlands",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇦",name:"bosnia_herzegovina",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇼",name:"botswana",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇷",name:"brazil",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇴",name:"british_indian_ocean_territory",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇬",name:"british_virgin_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇳",name:"brunei",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇬",name:"bulgaria",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇫",name:"burkina_faso",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇮",name:"burundi",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇻",name:"cape_verde",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇭",name:"cambodia",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇲",name:"cameroon",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇦",name:"canada",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇨",name:"canary_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇾",name:"cayman_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇫",name:"central_african_republic",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇩",name:"chad",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇱",name:"chile",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇳",name:"cn",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇽",name:"christmas_island",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇨",name:"cocos_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇴",name:"colombia",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇲",name:"comoros",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇬",name:"congo_brazzaville",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇩",name:"congo_kinshasa",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇰",name:"cook_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇷",name:"costa_rica",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇮",name:"cote_divoire",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇷",name:"croatia",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇺",name:"cuba",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇼",name:"curacao",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇾",name:"cyprus",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇿",name:"czech_republic",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇰",name:"denmark",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇯",name:"djibouti",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇲",name:"dominica",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇴",name:"dominican_republic",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇨",name:"ecuador",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇬",name:"egypt",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇻",name:"el_salvador",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇶",name:"equatorial_guinea",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇷",name:"eritrea",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇪",name:"estonia",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇹",name:"ethiopia",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇺",name:"eu",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇺",name:"european_union",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇰",name:"falkland_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇴",name:"faroe_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇯",name:"fiji",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇮",name:"finland",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇷",name:"fr",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇫",name:"french_guiana",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇫",name:"french_polynesia",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇫",name:"french_southern_territories",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇦",name:"gabon",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇲",name:"gambia",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇪",name:"georgia",width:"+0.6ex",textOnly:!0},{symbol:"🇩🇪",name:"de",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇭",name:"ghana",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇮",name:"gibraltar",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇷",name:"greece",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇱",name:"greenland",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇩",name:"grenada",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇵",name:"guadeloupe",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇺",name:"guam",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇹",name:"guatemala",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇬",name:"guernsey",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇳",name:"guinea",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇼",name:"guinea_bissau",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇾",name:"guyana",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇹",name:"haiti",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇳",name:"honduras",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇰",name:"hong_kong",width:"+0.6ex",textOnly:!0},{symbol:"🇭🇺",name:"hungary",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇸",name:"iceland",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇳",name:"india",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇩",name:"indonesia",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇷",name:"iran",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇶",name:"iraq",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇪",name:"ireland",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇲",name:"isle_of_man",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇱",name:"israel",width:"+0.6ex",textOnly:!0},{symbol:"🇮🇹",name:"it",width:"+0.6ex",textOnly:!0},{symbol:"🇯🇲",name:"jamaica",width:"+0.6ex",textOnly:!0},{symbol:"🇯🇵",name:"jp",width:"+0.6ex",textOnly:!0},{symbol:"🎌",name:"crossed_flags",width:"+0.6ex",textOnly:!1},{symbol:"🇯🇪",name:"jersey",width:"+0.6ex",textOnly:!0},{symbol:"🇯🇴",name:"jordan",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇿",name:"kazakhstan",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇪",name:"kenya",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇮",name:"kiribati",width:"+0.6ex",textOnly:!0},{symbol:"🇽🇰",name:"kosovo",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇼",name:"kuwait",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇬",name:"kyrgyzstan",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇦",name:"laos",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇻",name:"latvia",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇧",name:"lebanon",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇸",name:"lesotho",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇷",name:"liberia",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇾",name:"libya",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇮",name:"liechtenstein",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇹",name:"lithuania",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇺",name:"luxembourg",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇴",name:"macau",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇰",name:"macedonia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇬",name:"madagascar",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇼",name:"malawi",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇾",name:"malaysia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇻",name:"maldives",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇱",name:"mali",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇹",name:"malta",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇭",name:"marshall_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇶",name:"martinique",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇷",name:"mauritania",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇺",name:"mauritius",width:"+0.6ex",textOnly:!0},{symbol:"🇾🇹",name:"mayotte",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇽",name:"mexico",width:"+0.6ex",textOnly:!0},{symbol:"🇫🇲",name:"micronesia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇩",name:"moldova",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇨",name:"monaco",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇳",name:"mongolia",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇪",name:"montenegro",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇸",name:"montserrat",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇦",name:"morocco",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇿",name:"mozambique",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇲",name:"myanmar",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇦",name:"namibia",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇷",name:"nauru",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇵",name:"nepal",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇱",name:"netherlands",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇨",name:"new_caledonia",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇿",name:"new_zealand",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇮",name:"nicaragua",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇪",name:"niger",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇬",name:"nigeria",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇺",name:"niue",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇫",name:"norfolk_island",width:"+0.6ex",textOnly:!0},{symbol:"🇲🇵",name:"northern_mariana_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇵",name:"north_korea",width:"+0.6ex",textOnly:!0},{symbol:"🇳🇴",name:"norway",width:"+0.6ex",textOnly:!0},{symbol:"🇴🇲",name:"oman",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇰",name:"pakistan",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇼",name:"palau",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇸",name:"palestinian_territories",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇦",name:"panama",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇬",name:"papua_new_guinea",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇾",name:"paraguay",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇪",name:"peru",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇭",name:"philippines",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇳",name:"pitcairn_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇱",name:"poland",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇹",name:"portugal",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇷",name:"puerto_rico",width:"+0.6ex",textOnly:!0},{symbol:"🇶🇦",name:"qatar",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇪",name:"reunion",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇴",name:"romania",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇺",name:"ru",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇼",name:"rwanda",width:"+0.6ex",textOnly:!0},{symbol:"🇧🇱",name:"st_barthelemy",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇭",name:"st_helena",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇳",name:"st_kitts_nevis",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇨",name:"st_lucia",width:"+0.6ex",textOnly:!0},{symbol:"🇵🇲",name:"st_pierre_miquelon",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇨",name:"st_vincent_grenadines",width:"+0.6ex",textOnly:!0},{symbol:"🇼🇸",name:"samoa",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇲",name:"san_marino",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇹",name:"sao_tome_principe",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇦",name:"saudi_arabia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇳",name:"senegal",width:"+0.6ex",textOnly:!0},{symbol:"🇷🇸",name:"serbia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇨",name:"seychelles",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇱",name:"sierra_leone",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇬",name:"singapore",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇽",name:"sint_maarten",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇰",name:"slovakia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇮",name:"slovenia",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇧",name:"solomon_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇴",name:"somalia",width:"+0.6ex",textOnly:!0},{symbol:"🇿🇦",name:"south_africa",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇸",name:"south_georgia_south_sandwich_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇰🇷",name:"kr",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇸",name:"south_sudan",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇸",name:"es",width:"+0.6ex",textOnly:!0},{symbol:"🇱🇰",name:"sri_lanka",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇩",name:"sudan",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇷",name:"suriname",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇿",name:"swaziland",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇪",name:"sweden",width:"+0.6ex",textOnly:!0},{symbol:"🇨🇭",name:"switzerland",width:"+0.6ex",textOnly:!0},{symbol:"🇸🇾",name:"syria",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇼",name:"taiwan",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇯",name:"tajikistan",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇿",name:"tanzania",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇭",name:"thailand",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇱",name:"timor_leste",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇬",name:"togo",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇰",name:"tokelau",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇴",name:"tonga",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇹",name:"trinidad_tobago",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇳",name:"tunisia",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇷",name:"tr",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇲",name:"turkmenistan",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇨",name:"turks_caicos_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇹🇻",name:"tuvalu",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇬",name:"uganda",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇦",name:"ukraine",width:"+0.6ex",textOnly:!0},{symbol:"🇦🇪",name:"united_arab_emirates",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇧",name:"gb",width:"+0.6ex",textOnly:!0},{symbol:"🇬🇧",name:"uk",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇸",name:"us",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇮",name:"us_virgin_islands",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇾",name:"uruguay",width:"+0.6ex",textOnly:!0},{symbol:"🇺🇿",name:"uzbekistan",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇺",name:"vanuatu",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇦",name:"vatican_city",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇪",name:"venezuela",width:"+0.6ex",textOnly:!0},{symbol:"🇻🇳",name:"vietnam",width:"+0.6ex",textOnly:!0},{symbol:"🇼🇫",name:"wallis_futuna",width:"+0.6ex",textOnly:!0},{symbol:"🇪🇭",name:"western_sahara",width:"+0.6ex",textOnly:!0},{symbol:"🇾🇪",name:"yemen",width:"+0.6ex",textOnly:!0},{symbol:"🇿🇲",name:"zambia",width:"+0.6ex",textOnly:!0},{symbol:"🇿🇼",name:"zimbabwe",width:"+0.6ex",textOnly:!0}]},7337:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.faIcons=void 0,e.faIcons=[{alias:"js",name:"fa_js",tags:["color_js"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" fill="currentColor"/></svg>'},{alias:"jsfiddle",name:"fa_jsfiddle",tags:["color_jsfiddle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M510.6 237.5c-4.7-2.6-5.7-5.7-6.4-10.8-2.4-16.5-3.5-33.6-9.1-49.1-35.9-100-154-143.4-246.8-91.6-27.4 15.3-49 36.4-65.5 63.9-3.2-1.5-5.5-2.7-7.8-3.7-30.1-12.4-59-10.1-85.3 9.2-25.5 18.7-36.4 44.5-32.7 76.4 .4 3-2 7.6-4.5 9.5-39.7 30-56 78.1-41.9 124.6 13.8 45.6 57.5 79.8 105.6 81.4 30.3 1 60.6 .5 91 .5 84 0 168.1 .5 252.1-.5 52.7-.6 96.1-36.9 108.2-87.3 11.5-48.1-11.1-97.3-56.8-122.6zm21.1 156.9c-18.2 22.4-42.3 35.3-71.3 35.7-56.9 .8-113.8 .2-170.7 .2 0 .7-163 .2-163.7 .2-43.9-.3-76.7-19.8-95.2-60-18.9-41.2-4-90.8 34.2-116.1 9.2-6.1 12.5-11.6 10.1-23.1-5.5-26.4 4.5-48 26.4-63 23-15.7 47.4-16.1 72-3.1 10.3 5.5 14.6 11.6 22.2-2.5 14.2-26.4 34.6-46.7 60.7-61.3 97.5-54.4 228.4 7.6 230.2 132.7 .1 8.2 2.4 12.4 9.8 15.9 57.6 26.8 74.5 96.1 35.1 144.5zm-87.8-80.5c-5.8 31.2-34.6 55.1-66.7 55.1-17 0-32.1-6.5-44.1-17.7-27.7-25.7-71.1-75-95.9-93.4-20.1-14.9-42-12.3-60.3 3.8-50 44.1 15.9 121.8 67.1 77.2 4.5-4 7.8-9.5 12.7-12.8 8.2-5.5 20.8-.9 13.2 10.6-17.4 26.3-49.3 38.2-78.9 29.3-28.9-8.7-48.8-36-48.6-70.2 1.2-22.5 12.4-43.1 35.4-56 22.6-12.6 46.4-13.1 67 2.5C295.7 280.7 320.5 324 352.2 343.5c24.6 15.1 54.3 7.4 68.8-17.5 28.8-49.2-34.6-105-78.9-63.5-4 3.7-6.9 8.9-11.4 11.7-11 6.8-17.3-4.1-12.8-10.4 20.7-28.6 50.5-40.4 83.3-28.2 31.4 11.7 49.1 44.4 42.8 78.2z" fill="currentColor"/></svg>'},{alias:"squared_js",name:"fa_square_js",tags:["color_squared_js"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96zM180.9 444.9c-33.7 0-53.2-17.4-63.2-38.5L152 385.7c6.6 11.7 12.6 21.6 27.1 21.6c13.8 0 22.6-5.4 22.6-26.5V237.7h42.1V381.4c0 43.6-25.6 63.5-62.9 63.5zm85.8-43L301 382.1c9 14.7 20.8 25.6 41.5 25.6c17.4 0 28.6-8.7 28.6-20.8c0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5c0-31.6 24.1-55.6 61.6-55.6c26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18c-12.3 0-20.1 7.8-20.1 18c0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2c0 37.8-29.8 58.6-69.7 58.6c-39.1 0-64.4-18.6-76.7-43z" fill="currentColor"/></svg>'},{alias:"node_js",name:"fa_node_js",tags:["color_node_js"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6 .4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2 .7 376.3 .7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8 .5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" fill="currentColor"/></svg>'},{alias:"node",name:"fa_node",tags:["color_node"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4 .1l14.8 8.8c.5 .3 1.3 .3 1.8 0L375 408c.5-.3 .9-.9 .9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6 .3-.9 1-.9 1.6v66.7c0 .6 .4 1.2 .9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9 .7-1.7 1.7-1.7h7.3c.9 0 1.7 .7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6 .2 .8 .8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5 .3-.4 .5-.8 .4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7 .7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7 .1 1.8 1.2 2.1 2.8 .1 1 .3 2.7 .6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3 .4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3 .7 2.5 1.8 3.2 1.1 .7 2.5 .7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6 .3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1 .7 2.6 .7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6 .3-.9 .9-.9 1.6v24.3c0 .7 .4 1.3 .9 1.6l21 12.1c.6 .3 1.3 .3 1.8 0l21-12.1c.6-.3 .9-.9 .9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3 .7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1 .7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4 .3-.7 .7-.7 1.2v13.6c0 .5 .3 1 .7 1.2l11.8 6.8c.4 .3 1 .3 1.4 0L584 235c.4-.3 .7-.7 .7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7 .1-.5 .2-1.1 .2-1.7zm-74.3-124.9l-.8 .5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" fill="currentColor"/></svg>'},{alias:"vuejs",name:"fa_vuejs",tags:["color_vuejs"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" fill="currentColor"/></svg>'},{alias:"code_branch",name:"fa_code_branch",tags:["color_code_branch"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3l0 87.8c18.8-10.9 40.7-17.1 64-17.1l96 0c35.3 0 64-28.7 64-64l0-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 6.7c0 70.7-57.3 128-128 128l-96 0c-35.3 0-64 28.7-64 64l0 6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3l0-6.7 0-198.7C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" fill="currentColor"/></svg>'},{alias:"code",name:"fa_code",tags:["color_code"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z" fill="currentColor"/></svg>'},{alias:"bug",name:"fa_bug",tags:["color_bug"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 0c53 0 96 43 96 96l0 3.6c0 15.7-12.7 28.4-28.4 28.4l-135.1 0c-15.7 0-28.4-12.7-28.4-28.4l0-3.6c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4l112 0c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5l64.3 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6L272 240c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 239.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.3 0c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" fill="currentColor"/></svg>'},{alias:"network_wired",name:"fa_network_wired",tags:["color_network_wired"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M256 64l128 0 0 64-128 0 0-64zM240 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l48 0 0 32L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0 0 32-48 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l160 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0-32 256 0 0 32-48 0c-26.5 0-48 21.5-48 48l0 96c0 26.5 21.5 48 48 48l160 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0-32 96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-256 0 0-32 48 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48L240 0zM96 448l0-64 128 0 0 64L96 448zm320-64l128 0 0 64-128 0 0-64z" fill="currentColor"/></svg>'},{alias:"terminal",name:"fa_terminal",tags:["color_terminal"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6zM256 416l288 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-288 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z" fill="currentColor"/></svg>'},{alias:"laptop_code",name:"fa_laptop_code",tags:["color_laptop_code"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M64 96c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 256-64 0 0-256L128 96l0 256-64 0L64 96zM0 403.2C0 392.6 8.6 384 19.2 384l601.6 0c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8L76.8 480C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" fill="currentColor"/></svg>'},{alias:"github",name:"fa_github",tags:["color_github"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" fill="currentColor"/></svg>'},{alias:"wordpress",name:"fa_wordpress",tags:["color_wordpress"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8 .9 0 1.8 .1 2.8 .2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7 .3 13.7 .3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" fill="currentColor"/></svg>'},{alias:"apple",name:"fa_apple",tags:["color_apple"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" fill="currentColor"/></svg>'},{alias:"android",name:"fa_android",tags:["color_android"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M420.6 301.9a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m-265.1 0a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m273.7-144.5 47.9-83a10 10 0 1 0 -17.3-10h0l-48.5 84.1a301.3 301.3 0 0 0 -246.6 0L116.2 64.5a10 10 0 1 0 -17.3 10h0l47.9 83C64.5 202.2 8.2 285.6 0 384H576c-8.2-98.5-64.5-181.8-146.9-226.6" fill="currentColor"/></svg>'},{alias:"html5",name:"fa_html5",tags:["color_html5"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" fill="currentColor"/></svg>'},{alias:"react",name:"fa_react",tags:["color_react"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1 .9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2 .6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6 .4 19.5 .6 29.5 .6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8 .9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" fill="currentColor"/></svg>'},{alias:"java",name:"fa_java",tags:["color_java"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M277.7 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.8 0 242.8 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.2 12.2 0 0 1 -2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.3 17.3 0 0 0 -8.2 6.3 70.5 70.5 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6 .7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.8 509.4 401 461.3 348 437.4zM124.4 396c-78.7 22 47.9 67.4 148.1 24.5a185.9 185.9 0 0 1 -28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.6 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.4 60.4 0 0 1 -21.1-12.8z" fill="currentColor"/></svg>'},{alias:"python",name:"fa_python",tags:["color_python"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4 .1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8 .1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3 .1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" fill="currentColor"/></svg>'},{alias:"linux",name:"fa_linux",tags:["color_linux"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5 .2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4 .2-.8 .7-.6 1.1 .3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6 .2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5 .1-1.3 .6-3.4 1.5-3.2 2.9 .1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7 .1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9 .6 7.9 1.2 11.8 1.2 8.1 2.5 15.7 .8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1 .6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3 .4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4 .7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6 .6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7 .8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4 .6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1 .8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7 .4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6 .8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1 .3-.2 .7-.3 1-.5 .8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" fill="currentColor"/></svg>'},{alias:"microsoft",name:"fa_microsoft",tags:["color_microsoft"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" fill="currentColor"/></svg>'},{alias:"yarn",name:"fa_yarn",tags:["color_yarn"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4 .1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3 .8-10.8-5.7 .8-19.2 .8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3 .8 1.4 13.7 .8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2 .9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4 .2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" fill="currentColor"/></svg>'},{alias:"ubuntu",name:"fa_ubuntu",tags:["color_ubuntu"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M469.2 75A75.6 75.6 0 1 0 317.9 75a75.6 75.6 0 1 0 151.2 0zM154.2 240.7A75.6 75.6 0 1 0 3 240.7a75.6 75.6 0 1 0 151.2 0zM57 346C75.6 392.9 108 433 150 461.1s91.5 42.6 142 41.7c-14.7-18.6-22.9-41.5-23.2-65.2c-6.8-.9-13.3-2.1-19.5-3.4c-26.8-5.7-51.9-17.3-73.6-34s-39.3-38.1-51.7-62.5c-20.9 9.9-44.5 12.8-67.1 8.2zm395.1 89.8a75.6 75.6 0 1 0 -151.2 0 75.6 75.6 0 1 0 151.2 0zM444 351.6c18.5 14.8 31.6 35.2 37.2 58.2c33.3-41.3 52.6-92.2 54.8-145.2s-12.5-105.4-42.2-149.4c-8.6 21.5-24 39.6-43.8 51.6c15.4 28.6 22.9 60.8 21.9 93.2s-10.7 64-28 91.6zM101.1 135.4c12.4 2.7 24.3 7.5 35.1 14.3c16.6-24.2 38.9-44.1 64.8-58S255.8 70.4 285.2 70c.2-5.9 .9-11.9 2-17.7c3.6-16.7 11.1-32.3 21.8-45.5c-47.7-3.8-95.4 6-137.6 28.5S94.3 91.7 70.8 133.4c2.7-.2 5.3-.3 8-.3c7.5 0 15 .8 22.4 2.3z" fill="currentColor"/></svg>'},{alias:"swift",name:"fa_swift",tags:["color_swift"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M448 156.1c0-4.5-.1-9-.2-13.5a196.3 196.3 0 0 0 -2.6-29.4 99.6 99.6 0 0 0 -9.2-28A94.1 94.1 0 0 0 394.8 44a99.2 99.2 0 0 0 -28-9.2 195 195 0 0 0 -29.4-2.6c-4.5-.1-9-.2-13.5-.2H124.1c-4.5 0-9 .1-13.5 .2-2.5 .1-4.9 .2-7.4 .3a171.7 171.7 0 0 0 -22.1 2.3 103.1 103.1 0 0 0 -21.2 6.1q-3.5 1.5-6.8 3.1a94.7 94.7 0 0 0 -18.4 12.3c-1.9 1.6-3.7 3.3-5.4 5A93.9 93.9 0 0 0 12 85.2a99.5 99.5 0 0 0 -9.2 28 196.3 196.3 0 0 0 -2.5 29.4c-.1 4.5-.2 9-.2 13.5v199.8c0 4.5 .1 9 .2 13.5a196.1 196.1 0 0 0 2.6 29.4 99.3 99.3 0 0 0 9.2 28A94.3 94.3 0 0 0 53.2 468a99.5 99.5 0 0 0 28 9.2 195 195 0 0 0 29.4 2.6c4.5 .1 9 .2 13.5 .2H323.9c4.5 0 9-.1 13.5-.2a196.6 196.6 0 0 0 29.4-2.6 99.6 99.6 0 0 0 28-9.2A94.2 94.2 0 0 0 436 426.8a99.3 99.3 0 0 0 9.2-28 194.8 194.8 0 0 0 2.6-29.4c.1-4.5 .2-9 .2-13.5V172.1c0-5.4 0-10.7 0-16.1zm-69.9 241c-20-38.9-57.2-29.3-76.3-19.5-1.7 1-3.5 2-5.3 3l-.4 .3c-39.5 21-92.5 22.5-145.9-.4A234.6 234.6 0 0 1 45 290.1a230.6 230.6 0 0 0 39.2 23.4c56.4 26.4 113 24.5 153 0-57-43.9-104.6-101-141.1-147.2a197.1 197.1 0 0 1 -18.8-25.9c43.7 40 112.7 90.2 137.5 104.1-52.6-55.5-98.9-123.9-96.7-121.7 82.8 83.4 159.2 130.6 159.2 130.6 2.9 1.6 5 2.9 6.7 4a127.4 127.4 0 0 0 4.2-12.5c13.2-48.3-1.7-103.6-35.3-149.2C329.6 141.8 375 229.3 356.4 303.4c-.4 1.7-1 3.4-1.4 5.1 38.5 47.4 28 98.2 23.1 88.6z" fill="currentColor"/></svg>'},{alias:"safari",name:"fa_safari",tags:["color_safari"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M274.7 274.7l-37.4-37.4L166 346zM256 8C119 8 8 119 8 256S119 504 256 504 504 393 504 256 393 8 256 8zM411.9 182.8l14.8-6.1A8 8 0 0 1 437.1 181h0a8 8 0 0 1 -4.3 10.5L418 197.6a8 8 0 0 1 -10.5-4.3h0A8 8 0 0 1 411.9 182.8zM314.4 94l6.1-14.8A8 8 0 0 1 331 74.9h0a8 8 0 0 1 4.3 10.5l-6.1 14.8a8 8 0 0 1 -10.5 4.3h0A8 8 0 0 1 314.4 94zM256 60h0a8 8 0 0 1 8 8V84a8 8 0 0 1 -8 8h0a8 8 0 0 1 -8-8V68A8 8 0 0 1 256 60zM181 74.9a8 8 0 0 1 10.5 4.3L197.6 94a8 8 0 1 1 -14.8 6.1l-6.1-14.8A8 8 0 0 1 181 74.9zm-63.6 42.5h0a8 8 0 0 1 11.3 0L140 128.7A8 8 0 0 1 140 140h0a8 8 0 0 1 -11.3 0l-11.3-11.3A8 8 0 0 1 117.4 117.4zM60 256h0a8 8 0 0 1 8-8H84a8 8 0 0 1 8 8h0a8 8 0 0 1 -8 8H68A8 8 0 0 1 60 256zm40.2 73.2-14.8 6.1A8 8 0 0 1 74.9 331h0a8 8 0 0 1 4.3-10.5L94 314.4a8 8 0 0 1 10.5 4.3h0A8 8 0 0 1 100.2 329.2zm4.3-136h0A8 8 0 0 1 94 197.6l-14.8-6.1A8 8 0 0 1 74.9 181h0a8 8 0 0 1 10.5-4.3l14.8 6.1A8 8 0 0 1 104.5 193.2zM197.6 418l-6.1 14.8a8 8 0 0 1 -14.8-6.1l6.1-14.8A8 8 0 1 1 197.6 418zM264 444a8 8 0 0 1 -8 8h0a8 8 0 0 1 -8-8V428a8 8 0 0 1 8-8h0a8 8 0 0 1 8 8zm67-6.9h0a8 8 0 0 1 -10.5-4.3L314.4 418a8 8 0 0 1 4.3-10.5h0a8 8 0 0 1 10.5 4.3l6.1 14.8A8 8 0 0 1 331 437.1zm63.6-42.5h0a8 8 0 0 1 -11.3 0L372 383.3A8 8 0 0 1 372 372h0a8 8 0 0 1 11.3 0l11.3 11.3A8 8 0 0 1 394.6 394.6zM286.3 286.3 110.3 401.7 225.8 225.8 401.7 110.3zM437.1 331h0a8 8 0 0 1 -10.5 4.3l-14.8-6.1a8 8 0 0 1 -4.3-10.5h0A8 8 0 0 1 418 314.4l14.8 6.1A8 8 0 0 1 437.1 331zM444 264H428a8 8 0 0 1 -8-8h0a8 8 0 0 1 8-8h16a8 8 0 0 1 8 8h0A8 8 0 0 1 444 264z" fill="currentColor"/></svg>'},{alias:"sass",name:"fa_sass",tags:["color_sass"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M301.8 378.9c-.3 .6-.6 1.1 0 0zm249.1-87a131.2 131.2 0 0 0 -58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.3 5.9a122.8 122.8 0 0 0 -5.3 19.1c-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.9 77.3-42.1 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4 .8-.7 1.3-.9 1.7 .3-.5 .5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4 .3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.8-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8 61.8-23.8 109.9-90.1 95.8-145.6C386.5 18.3 293-.2 204.6 31.2c-52.7 18.7-109.7 48.1-150.7 86.4-48.7 45.6-56.5 85.3-53.3 101.9 11.4 58.9 92.6 97.3 125.1 125.7-1.6 .9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4 .7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5a201.2 201.2 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.3 .3 0 0 0 .1 .2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.2-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.7 450.1 270 450.1 270a201.2 201.2 0 0 0 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.5 79.5 0 0 0 21.6-11.1c12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zm-429.2 144.7c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9 .8-.5 1.2-.7 1.2-.7 .9-.6 1.9-1.1 2.9-1.7 8.3 30.4 .3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5 .1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5a36.2 36.2 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.9 34.4z" fill="currentColor"/></svg>'},{alias:"php",name:"fa_php",tags:["color_php"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" fill="currentColor"/></svg>'},{alias:"opera",name:"fa_opera",tags:["color_opera"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1 .3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" fill="currentColor"/></svg>'},{alias:"npm",name:"fa_npm",tags:["color_npm"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" fill="currentColor"/></svg>'},{alias:"joomla",name:"fa_joomla",tags:["color_joomla"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1 .6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6 .6 120.7 .6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" fill="currentColor"/></svg>'},{alias:"gulp",name:"fa_gulp",tags:["color_gulp"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512" height="1em"><path d="M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7 .9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3 .2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5 .9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9 .1-1.8 .3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6 .8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5 .6 .2 1.1 .4 1.6 .7 2.6 1.8 1.6 4.5 .3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3 .5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4 .5 3.2 1.5 1.7 2.2 1.3 4.5 .4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9 .9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2 .4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3 .5-.4 .9-.6 .6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3 .8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7 .2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3 .9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3 .2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8 .1 26.3 .4l12.6-48.7L228.1 .6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1 .1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2 .8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2 .1-.3l.2-.7c-1.8 .6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7 .1 13.9-1.6 13.9-3.7z" fill="currentColor"/></svg>'},{alias:"google_drive",name:"fa_google_drive",tags:["color_google_drive"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" fill="currentColor"/></svg>'},{alias:"gitkraken",name:"fa_gitkraken",tags:["color_gitkraken"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 592 512" height="1em"><path d="M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8 .4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" fill="currentColor"/></svg>'},{alias:"git",name:"fa_git",tags:["color_git"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M216.3 158.4H137C97 147.9 6.5 150.6 6.5 233.2c0 30.1 15 51.2 35 61-25.1 23-37 33.9-37 49.2 0 11 4.5 21.1 17.9 26.8C8.1 383.6 0 393.4 0 411.7c0 32.1 28.1 50.8 101.6 50.8 70.8 0 111.8-26.4 111.8-73.2 0-58.7-45.2-56.5-151.6-63l13.4-21.6c27.3 7.6 118.7 10 118.7-67.9 0-18.7-7.7-31.7-15-41.1l37.4-2.8zm-63.4 241.9c0 32.1-104.9 32.1-104.9 2.4 0-8.1 5.3-15 10.6-21.5 77.7 5.3 94.3 3.4 94.3 19.1zm-50.8-134.6c-52.8 0-50.5-71.2 1.2-71.2 49.5 0 50.8 71.2-1.2 71.2zm133.3 100.5v-32.1c26.8-3.7 27.2-2 27.2-11V203.6c0-8.5-2.1-7.4-27.2-16.3l4.5-32.9H324v168.7c0 6.5 .4 7.3 6.5 8.1l20.7 2.8v32.1zm52.5-244.3c-23.2 0-36.6-13.4-36.6-36.6s13.4-35.8 36.6-35.8c23.6 0 37 12.6 37 35.8s-13.4 36.6-37 36.6zM512 350.5c-17.5 8.5-43.1 16.3-66.3 16.3-48.4 0-66.7-19.5-66.7-65.5V194.8c0-5.4 1.1-4.1-31.7-4.1V154.5c35.8-4.1 50-22 54.5-66.3h38.6c0 65.8-1.3 61.8 3.3 61.8H501v40.7h-60.6v97.2c0 6.9-4.9 51.4 60.6 26.8z" fill="currentColor"/></svg>'},{alias:"git_alt",name:"fa_git_alt",tags:["color_git_alt"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M439.6 236.1L244 40.5a28.9 28.9 0 0 0 -40.8 0l-40.7 40.6 51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.2 199v121.9c25.3 12.5 22.3 41.9 9.1 55a34.3 34.3 0 0 1 -48.6 0c-17.6-17.6-11.1-46.9 11.3-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1a28.9 28.9 0 0 0 0 40.8l195.6 195.6a28.9 28.9 0 0 0 40.8 0l194.7-194.7a28.9 28.9 0 0 0 0-40.8z" fill="currentColor"/></svg>'},{alias:"firefox",name:"fa_firefox",tags:["color_firefox"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M503.5 241.5c-.1-1.6-.2-3.1-.2-4.7v-.1l-.4-4.7v-.1a245.9 245.9 0 0 0 -7.3-41.2c0-.1 0-.1-.1-.2l-1.1-4c-.1-.2-.1-.5-.2-.6-.4-1.2-.7-2.5-1.1-3.7-.1-.2-.1-.6-.2-.8-.4-1.2-.7-2.4-1.1-3.5-.1-.4-.2-.6-.4-1-.4-1.2-.7-2.3-1.2-3.5l-.4-1.1c-.4-1.1-.8-2.3-1.2-3.4a8.3 8.3 0 0 0 -.4-1c-.5-1.1-.8-2.3-1.3-3.4-.1-.2-.2-.6-.4-.8-.5-1.2-1-2.3-1.4-3.5 0-.1-.1-.2-.1-.4-1.6-3.8-3.2-7.7-5-11.4l-.4-.7c-.5-1-.8-1.8-1.3-2.6-.2-.5-.5-1.1-.7-1.6-.4-.8-.8-1.6-1.2-2.4-.4-.6-.6-1.2-1-1.8s-.8-1.4-1.2-2.3c-.4-.6-.7-1.3-1.1-1.9s-.8-1.4-1.2-2.2a18.1 18.1 0 0 0 -1.2-2c-.4-.7-.8-1.3-1.2-2s-.8-1.3-1.2-2-.8-1.3-1.2-1.9-.8-1.4-1.3-2.2a15.6 15.6 0 0 0 -1.2-1.8L463.2 119a15.6 15.6 0 0 0 -1.2-1.8c-.5-.7-1.1-1.6-1.6-2.3-.4-.5-.7-1.1-1.1-1.6l-1.8-2.5c-.4-.5-.6-.8-1-1.3-1-1.3-1.8-2.5-2.8-3.7a248.8 248.8 0 0 0 -23.5-26.6A186.8 186.8 0 0 0 412 62.5c-4-3.5-8.2-6.7-12.5-9.8a162.5 162.5 0 0 0 -24.6-15.1c-2.4-1.3-4.8-2.5-7.2-3.7a254 254 0 0 0 -55.4-19.6c-1.9-.4-3.8-.8-5.6-1.2h-.1c-1-.1-1.8-.4-2.8-.5a236.4 236.4 0 0 0 -38-4H255.1a234.6 234.6 0 0 0 -45.5 5c-33.6 7.1-63.2 21.2-82.9 39-1.1 1-1.9 1.7-2.4 2.2l-.5 .5H124l-.1 .1 .1-.1a.1 .1 0 0 0 .1-.1l-.1 .1a.4 .4 0 0 1 .2-.1c14.6-8.8 34.9-16 49.4-19.6l5.9-1.4c.4-.1 .8-.1 1.2-.2 1.7-.4 3.4-.7 5.2-1.1 .2 0 .6-.1 .8-.1C250.9 20.9 319.3 40.1 367 85.6a171.5 171.5 0 0 1 26.9 32.8c30.4 49.2 27.5 111.1 3.8 147.6-34.4 53-111.4 71.3-159 24.8a84.2 84.2 0 0 1 -25.6-59 74.1 74.1 0 0 1 6.2-31c1.7-3.8 13.1-25.7 18.2-24.6-13.1-2.8-37.6 2.6-54.7 28.2-15.4 22.9-14.5 58.2-5 83.3a132.9 132.9 0 0 1 -12.1-39.2c-12.2-82.6 43.3-153 94.3-170.5-27.5-24-96.5-22.3-147.7 15.4-29.9 22-51.2 53.2-62.5 90.4 1.7-20.9 9.6-52.1 25.8-83.9-17.2 8.9-39 37-49.8 62.9-15.6 37.4-21 82.2-16.1 124.8 .4 3.2 .7 6.4 1.1 9.6 19.9 117.1 122 206.4 244.8 206.4C392.8 503.4 504 392.2 504 255 503.9 250.5 503.8 245.9 503.5 241.5z" fill="currentColor"/></svg>'},{alias:"edge",name:"fa_edge",tags:["color_edge"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M120.1 37.4C161.1 12.2 207.7-.8 255 0C423 0 512 123.8 512 219.5C511.9 252.2 499 283.4 476.1 306.7C453.2 329.9 422.1 343.2 389.4 343.7C314.2 343.7 297.9 320.6 297.9 311.7C297.9 307.9 299.1 305.5 302.7 302.3L303.7 301.1L304.1 299.5C314.6 288 320 273.3 320 257.9C320 179.2 237.8 115.2 136 115.2C98.5 114.9 61.5 124.1 28.5 142.1C55.5 84.6 111.2 44.5 119.8 38.3C120.6 37.7 120.1 37.4 120.1 37.4V37.4zM135.7 355.5C134.3 385.5 140.3 415.5 152.1 442.7C165.7 469.1 184.8 493.7 208.6 512C149.1 500.5 97.1 468.1 59.2 422.7C21.1 376.3 0 318.4 0 257.9C0 206.7 62.4 163.5 136 163.5C172.6 162.9 208.4 174.4 237.8 196.2L234.2 197.4C182.7 215 135.7 288.1 135.7 355.5V355.5zM469.8 400L469.1 400.1C457.3 418.9 443.2 435.2 426.9 449.6C396.1 477.6 358.8 495.1 318.1 499.5C299.5 499.8 281.3 496.3 264.3 488.1C238.7 477.8 217.2 458.1 202.7 435.1C188.3 411.2 181.6 383.4 183.7 355.5C183.1 335.4 189.1 315.2 198.7 297.3C212.6 330.4 236.2 358.6 266.3 378.1C296.4 397.6 331.8 407.6 367.7 406.7C398.7 407 429.8 400 457.9 386.2L459.8 385.3C463.7 383 467.5 381.4 471.4 385.3C475.9 390.2 473.2 394.5 470.2 399.3C470 399.5 469.9 399.8 469.8 400V400z" fill="currentColor"/></svg>'},{alias:"dev",name:"fa_dev",tags:["color_dev"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M120.1 208.3c-3.9-2.9-7.8-4.4-11.7-4.4H91v104.5h17.5c3.9 0 7.8-1.5 11.7-4.4 3.9-2.9 5.8-7.3 5.8-13.1v-69.7c0-5.8-2-10.2-5.8-13.1zM404.1 32H43.9C19.7 32 .1 51.6 0 75.8v360.4C.1 460.4 19.7 480 43.9 480h360.2c24.2 0 43.8-19.6 43.9-43.8V75.8c-.1-24.2-19.7-43.8-43.9-43.8zM154.2 291.2c0 18.8-11.6 47.3-48.4 47.3h-46.4V173h47.4c35.4 0 47.4 28.5 47.4 47.3l0 70.9zm100.7-88.7H201.6v38.4h32.6v29.6H201.6v38.4h53.3v29.6h-62.2c-11.2 .3-20.4-8.5-20.7-19.7V193.7c-.3-11.2 8.6-20.4 19.7-20.7h63.2l0 29.5zm103.6 115.3c-13.2 30.8-36.9 24.6-47.4 0l-38.5-144.8h32.6l29.7 113.7 29.6-113.7h32.6l-38.5 144.8z" fill="currentColor"/></svg>'},{alias:"css3",name:"fa_css3",tags:["color_css3"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" fill="currentColor"/></svg>'},{alias:"chrome",name:"fa_chrome",tags:["color_chrome"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M0 256C0 209.4 12.5 165.6 34.3 127.1L144.1 318.3C166 357.5 207.9 384 256 384C270.3 384 283.1 381.7 296.8 377.4L220.5 509.6C95.9 492.3 0 385.3 0 256zM365.1 321.6C377.4 302.4 384 279.1 384 256C384 217.8 367.2 183.5 340.7 160H493.4C505.4 189.6 512 222.1 512 256C512 397.4 397.4 511.1 256 512L365.1 321.6zM477.8 128H256C193.1 128 142.3 172.1 130.5 230.7L54.2 98.5C101 38.5 174 0 256 0C350.8 0 433.5 51.5 477.8 128V128zM168 256C168 207.4 207.4 168 256 168C304.6 168 344 207.4 344 256C344 304.6 304.6 344 256 344C207.4 344 168 304.6 168 256z" fill="currentColor"/></svg>'},{alias:"internet_explorer",name:"fa_internet_explorer",tags:["color_internet_explorer"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M483 159.7c10.9-24.6 21.4-60.4 21.4-87.9 0-72.7-79.6-98.4-209.7-38.6-107.6-7.2-211.2 73.7-237.1 186.5 30.9-34.9 78.3-82.3 122-101.2C125.4 166.9 79.1 228 44 291.7 23.2 329.7 0 390.9 0 436.7c0 98.6 92.9 86.5 180.3 42 31.4 15.4 66.6 15.6 101.7 15.6 97.1 0 184.2-54.3 216.8-146H377.9c-52.5 88.6-196.8 53-196.8-47.4H509.9c6.4-43.6-1.7-95.7-26.9-141.2zM64.6 346.9c17.7 51.2 53.7 95.9 100.3 123.3-88.7 48.9-173.3 29.1-100.3-123.3zm116-108.9c2-55.2 50.3-94.9 104-94.9 53.4 0 102 39.7 104 94.9H180.5zm184.5-187.6c21.4-10.3 48.6-22 72.6-22 31.4 0 54.3 21.7 54.3 53.7 0 20-7.4 49-14.6 67.9-26.3-42.3-66-81.6-112.3-99.6z" fill="currentColor"/></svg>'},{alias:"gitlab",name:"fa_gitlab",tags:["color_gitlab"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M503.5 204.6L502.8 202.8L433.1 21C431.7 17.5 429.2 14.4 425.9 12.4C423.5 10.8 420.8 9.9 417.9 9.6C415 9.3 412.2 9.7 409.5 10.7C406.8 11.7 404.4 13.3 402.4 15.5C400.5 17.6 399.1 20.1 398.3 22.9L351.3 166.9H160.8L113.7 22.9C112.9 20.1 111.5 17.6 109.6 15.5C107.6 13.4 105.2 11.7 102.5 10.7C99.9 9.7 97 9.3 94.1 9.6C91.3 9.9 88.5 10.8 86.1 12.4C82.8 14.4 80.3 17.5 78.9 21L9.3 202.8L8.5 204.6C-1.5 230.8-2.7 259.6 5 286.6C12.8 313.5 29.1 337.3 51.5 354.2L51.7 354.4L52.3 354.8L158.3 434.3L210.9 474L242.9 498.2C246.6 500.1 251.2 502.5 255.9 502.5C260.6 502.5 265.2 500.1 268.9 498.2L300.9 474L353.5 434.3L460.2 354.4L460.5 354.1C482.9 337.2 499.2 313.5 506.1 286.6C514.7 259.6 513.5 230.8 503.5 204.6z" fill="currentColor"/></svg>'},{alias:"google",name:"fa_google",tags:["color_google"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 488 512" height="1em"><path d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" fill="currentColor"/></svg>'},{alias:"clone",name:"fa_clone",tags:["color_clone"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M64 464l224 0c8.8 0 16-7.2 16-16l0-64 48 0 0 64c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64l64 0 0 48-64 0c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16zM224 304l224 0c8.8 0 16-7.2 16-16l0-224c0-8.8-7.2-16-16-16L224 48c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16zm-64-16l0-224c0-35.3 28.7-64 64-64L448 0c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64l-224 0c-35.3 0-64-28.7-64-64z" fill="currentColor"/></svg>'},{alias:"check_circle",name:"fa_check_circle",tags:["color_check_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" fill="currentColor"/></svg>'},{alias:"check_circle_o",name:"fa_check_circle-o",tags:["color_check_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L369 209z" fill="currentColor"/></svg>'},{alias:"camera",name:"fa_camera",tags:["color_camera"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M149.1 64.8L138.7 96 64 96C28.7 96 0 124.7 0 160L0 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64l-74.7 0L362.9 64.8C356.4 45.2 338.1 32 317.4 32L194.6 32c-20.7 0-39 13.2-45.5 32.8zM256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" fill="currentColor"/></svg>'},{alias:"bars",name:"fa_bars",tags:["color_bars"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z" fill="currentColor"/></svg>'},{alias:"bluetooth",name:"fa_bluetooth",tags:["color_bluetooth"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" height="1em"><path d="M196.5 260l92.6-103.3L143.1 0v206.3l-86.1-86.1-31.4 31.4 108.1 108.4L25.6 368.4l31.4 31.4 86.1-86.1L145.8 512l148.6-148.6-97.9-103.3zm40.9-103l-50 50-.3-100.3 50.3 50.3zM187.4 313l50 50-50.3 50.3 .3-100.3z" fill="currentColor"/></svg>'},{alias:"bell_slash_o",name:"fa_bell_slash_o",tags:["color_bell_slash_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6C495.5 322.9 480 278.8 480 233.4l0-33.4c0-75.8-55.5-138.6-128-150.1L352 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 17.9c-43.9 7-81.5 32.7-104.4 68.7L38.8 5.1zM221.7 148.4C239.6 117.1 273.3 96 312 96l8 0 8 0c57.4 0 104 46.6 104 104l0 33.4c0 32.7 6.4 64.8 18.7 94.5L221.7 148.4zM406.2 416l-60.9-48-176.9 0c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1l0 11.4c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6l286.2 0zM384 448l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" fill="currentColor"/></svg>'},{alias:"bell_slash",name:"fa_bell_slash",tags:["color_bell_slash"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-90.2-70.7c.2-.4 .4-.9 .6-1.3c5.2-11.5 3.1-25-5.3-34.4l-7.4-8.3C497.3 319.2 480 273.9 480 226.8l0-18.8c0-77.4-55-142-128-156.8L352 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 19.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM406.2 416L160 222.1l0 4.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S115.4 416 128 416l278.2 0zm-40.9 77.3c12-12 18.7-28.3 18.7-45.3l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" fill="currentColor"/></svg>'},{alias:"bell_o",name:"fa_bell_o",tags:["color_bell_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416l400 0c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4l0-25.4c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm0 96c61.9 0 112 50.1 112 112l0 25.4c0 47.9 13.9 94.6 39.7 134.6L72.3 368C98.1 328 112 281.3 112 233.4l0-25.4c0-61.9 50.1-112 112-112zm64 352l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" fill="currentColor"/></svg>'},{alias:"bell",name:"fa_bell",tags:["color_bell"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416l384 0c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8l0-18.8c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" fill="currentColor"/></svg>'},{alias:"battery_quarter",name:"fa_battery_quarter",tags:["color_battery_quarter"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm112 96l-96 0 0 128 96 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_three_quarters",name:"fa_battery_three_quarters",tags:["color_battery_three_quarters"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm272 96L96 192l0 128 256 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_full",name:"fa_battery_full",tags:["color_battery_full"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm368 96L96 192l0 128 352 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_half",name:"fa_battery_half",tags:["color_battery_half"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M464 160c8.8 0 16 7.2 16 16l0 160c0 8.8-7.2 16-16 16L80 352c-8.8 0-16-7.2-16-16l0-160c0-8.8 7.2-16 16-16l384 0zM80 96C35.8 96 0 131.8 0 176L0 336c0 44.2 35.8 80 80 80l384 0c44.2 0 80-35.8 80-80l0-16c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l0-16c0-44.2-35.8-80-80-80L80 96zm208 96L96 192l0 128 192 0 0-128z" fill="currentColor"/></svg>'},{alias:"battery_empty",name:"fa_battery_empty",tags:["color_battery_empty"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M80 160c-8.8 0-16 7.2-16 16l0 160c0 8.8 7.2 16 16 16l384 0c8.8 0 16-7.2 16-16l0-160c0-8.8-7.2-16-16-16L80 160zM0 176c0-44.2 35.8-80 80-80l384 0c44.2 0 80 35.8 80 80l0 16c17.7 0 32 14.3 32 32l0 64c0 17.7-14.3 32-32 32l0 16c0 44.2-35.8 80-80 80L80 416c-44.2 0-80-35.8-80-80L0 176z" fill="currentColor"/></svg>'},{alias:"cc",name:"fa_cc",tags:["color_cc"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M512 80c8.8 0 16 7.2 16 16l0 320c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16L48 96c0-8.8 7.2-16 16-16l448 0zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" fill="currentColor"/></svg>'},{alias:"creative_commons",name:"fa_creative_commons",tags:["color_creative_commons"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M245.8 214.9l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.7 0 52.7 12 66 35.9zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.5-21.3l31 15.5c-2.1 3.8-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.7 0 52.6 12 65.6 35.9zM247.6 8.1C104.7 8.1 0 123.1 0 256.1c0 138.5 113.6 248 247.6 248 129.9 0 248.4-100.9 248.4-248 0-137.9-106.6-248-248.4-248zm.9 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.4-203.3 203.7-203.3 112.5 0 202.8 89.5 202.8 203.3 0 121.7-99.7 202.8-202.8 202.8z" fill="currentColor"/></svg>'},{alias:"envelope",name:"fa_envelope",tags:["color_envelope"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48L48 64zM0 176L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-208L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" fill="currentColor"/></svg>'},{alias:"envelope_o",name:"fa_envelope_o",tags:["color_envelope_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M64 112c-8.8 0-16 7.2-16 16l0 22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1l0-22.1c0-8.8-7.2-16-16-16L64 112zM48 212.2L48 384c0 8.8 7.2 16 16 16l384 0c8.8 0 16-7.2 16-16l0-171.8L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64l384 0c35.3 0 64 28.7 64 64l0 256c0 35.3-28.7 64-64 64L64 448c-35.3 0-64-28.7-64-64L0 128z" fill="currentColor"/></svg>'},{alias:"envelope_open",name:"fa_envelope_open",tags:["color_envelope_open"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M64 208.1L256 65.9 448 208.1l0 47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5l0-47.4zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1L0 448c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-239.9c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z" fill="currentColor"/></svg>'},{alias:"envelope_open_o",name:"fa_envelope_open_o",tags:["color_envelope_open_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5l0 13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1l0-13.6c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2 464 456c0 4.4-3.6 8-8 8L56 464c-4.4 0-8-3.6-8-8l0-179.8zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5L0 456c0 30.9 25.1 56 56 56l400 0c30.9 0 56-25.1 56-56l0-255.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z" fill="currentColor"/></svg>'},{alias:"frown",name:"fa_frown",tags:["color_frown"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"frown_o",name:"fa_frown_o",tags:["color_frown_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"industry",name:"fa_industry",tags:["color_industry"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M64 32C46.3 32 32 46.3 32 64l0 240 0 48 0 80c0 26.5 21.5 48 48 48l416 0c26.5 0 48-21.5 48-48l0-128 0-151.8c0-18.2-19.4-29.7-35.4-21.1L352 215.4l0-63.2c0-18.2-19.4-29.7-35.4-21.1L160 215.4 160 64c0-17.7-14.3-32-32-32L64 32z" fill="currentColor"/></svg>'},{alias:"meh",name:"fa_meh",tags:["color_meh"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM160 336l192 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-192 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z" fill="currentColor"/></svg>'},{alias:"meh_o",name:"fa_meh_o",tags:["color_meh_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z" fill="currentColor"/></svg>'},{alias:"phone_square",name:"fa_phone_square",tags:["color_phone_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z" fill="currentColor"/></svg>'},{alias:"phone_square_flip",name:"fa_phone_square_flip",tags:["color_phone_square_flip"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M384 32c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z" fill="currentColor"/></svg>'},{alias:"plus_circle",name:"fa_plus_circle",tags:["color_plus_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 344l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" fill="currentColor"/></svg>'},{alias:"minus_square",name:"fa_minus_square",tags:["color_minus_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm88 200l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z" fill="currentColor"/></svg>'},{alias:"minus_square_o",name:"fa_minus_square_o",tags:["color_minus_square_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM152 232l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z" fill="currentColor"/></svg>'},{alias:"minus_circle",name:"fa_minus_circle",tags:["color_minus_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM184 232l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z" fill="currentColor"/></svg>'},{alias:"question_circle",name:"fa_question_circle",tags:["color_question_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" fill="currentColor"/></svg>'},{alias:"question_circle_o",name:"fa_question_circle_o",tags:["color_question_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" fill="currentColor"/></svg>'},{alias:"question_square",name:"fa_question_square",tags:["color_question_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" height="1em"><path fill-rule="evenodd" clip-rule="evenodd" d="M4 4h16v16H4zm1.5 1.5v13h13v-13z" fill="currentColor"/><path d="M11.05 15h1.5v1.5h-1.5zm.055-1q0-.888.21-1.416.211-.528.832-1.156.627-.634.793-.901.255-.408.256-.882 0-.628-.3-.955-.295-.334-.87-.334-.55 0-.89.327-.332.321-.332.875H9.25q.013-1.182.767-1.87Q10.778 7 12.026 7q1.286 0 2.001.681.723.682.723 1.904 0 1.088-.972 2.144l-.787.808q-.422.501-.435 1.463z" fill="currentColor"/></svg>'},{alias:"print",name:"fa_print",tags:["color_print"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M128 0C92.7 0 64 28.7 64 64l0 96 64 0 0-96 226.7 0L384 93.3l0 66.7 64 0 0-66.7c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0L128 0zM384 352l0 32 0 64-256 0 0-64 0-16 0-16 256 0zm64 32l32 0c17.7 0 32-14.3 32-32l0-96c0-35.3-28.7-64-64-64L64 192c-35.3 0-64 28.7-64 64l0 96c0 17.7 14.3 32 32 32l32 0 0 64c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-64zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" fill="currentColor"/></svg>'},{alias:"paper_plane",name:"fa_paper_plane",tags:["color_paper_plane"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480l0-83.6c0-4 1.5-7.8 4.2-10.8L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" fill="currentColor"/></svg>'},{alias:"paper_plane_o",name:"fa_paper_plane_o",tags:["color_paper_plane_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376l0 103.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z" fill="currentColor"/></svg>'},{alias:"share_alt",name:"fa_share_alt",tags:["color_share_alt"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z" fill="currentColor"/></svg>'},{alias:"share_alt_square",name:"fa_share_alt_square",tags:["color_share_alt_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z" fill="currentColor"/></svg>'},{alias:"signal_strong",name:"fa_signal_strong",tags:["color_signal_strong"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M576 0c17.7 0 32 14.3 32 32l0 448c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-448c0-17.7 14.3-32 32-32zM448 96c17.7 0 32 14.3 32 32l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352c0-17.7 14.3-32 32-32zM352 224l0 256c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32s32 14.3 32 32zM192 288c17.7 0 32 14.3 32 32l0 160c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-160c0-17.7 14.3-32 32-32zM96 416l0 64c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32s32 14.3 32 32z" fill="currentColor"/></svg>'},{alias:"signal_good",name:"fa_signal_good",tags:["color_signal_good"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><g fill="currentColor"><path d="m 9 4 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0"/><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill-opacity="0.34902"/></g></svg>'},{alias:"signal_fair",name:"fa_signal_fair",tags:["color_signal_fair"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><g fill="currentColor"><path d="m 5 7 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0"/><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill-opacity="0.34902"/></g></svg>'},{alias:"signal_weak",name:"fa_signal_weak",tags:["color_signal_weak"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><g fill="currentColor"><path d="m 1 10 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0"/><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill-opacity="0.34902"/></g></svg>'},{alias:"signal_none",name:"fa_signal_none",tags:["color_signal_none"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="1em"><path d="m 13 1 c -0.554688 0 -1 0.445312 -1 1 v 12 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -12 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 9 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -9 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 3 c -0.554688 0 -1 0.445312 -1 1 v 3 c 0 0.554688 0.445312 1 1 1 h 1 c 0.554688 0 1 -0.445312 1 -1 v -3 c 0 -0.554688 -0.445312 -1 -1 -1 z m 0 0" fill="currentColor" fill-opacity="0.34902"/></svg>'},{alias:"signal_4g",name:"fa_signal_4g",tags:["color_signal_4g"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em"><path d="M3.75 18a.75.75 0 0 1 .743.648l.007.102v1.5a.75.75 0 0 1-1.493.102L3 20.25v-1.5a.75.75 0 0 1 .75-.75m4-2.999a.75.75 0 0 1 .743.649l.007.101v4.499a.75.75 0 0 1-1.493.102L7 20.25v-4.499a.75.75 0 0 1 .75-.75m4-3.001a.75.75 0 0 1 .743.648l.007.102v7.5a.75.75 0 0 1-1.493.102L11 20.25v-7.5a.75.75 0 0 1 .75-.75m4-3a.75.75 0 0 1 .743.648l.007.102v10.5a.75.75 0 0 1-1.493.102L15 20.25V9.75a.75.75 0 0 1 .75-.75m3.96-3a.73.73 0 0 1 .722.642l.008.101.056 13.5a.737.737 0 0 1-.715.757.73.73 0 0 1-.722-.641l-.007-.102-.056-13.5A.737.737 0 0 1 19.71 6m-9.028-3q1.038 0 1.624.495T13 4.937h-1.171q-.08-.501-.355-.734t-.756-.232q-.614 0-.935.46-.32.462-.324 1.372v.373q0 .919.348 1.388.35.47 1.023.47.678 0 .967-.29V6.739h-1.095v-.886H13v2.33q-.326.39-.918.603A3.9 3.9 0 0 1 10.766 9q-.757 0-1.33-.33a2.2 2.2 0 0 1-.882-.961q-.31-.63-.319-1.48v-.397q0-.875.295-1.514a2.2 2.2 0 0 1 .85-.98Q9.935 3 10.682 3m-4.076.08v3.642h.661v.934h-.661V8.92h-1.16V7.656H3.053L3 6.926 5.434 3.08zm-1.16 1.58-.076.133-1.215 1.929h1.292z" fill="currentColor"/></svg>'},{alias:"signal_3g",name:"fa_signal_3g",tags:["color_signal_3g"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em"><path d="M11.75 12a.75.75 0 0 1 .743.648l.007.102v7.5a.75.75 0 0 1-1.493.102L11 20.25v-7.5a.75.75 0 0 1 .75-.75m4-3a.75.75 0 0 1 .743.648l.007.102v10.5a.75.75 0 0 1-1.493.102L15 20.25V9.75a.75.75 0 0 1 .75-.75m-12 9a.75.75 0 0 1 .743.648l.007.102v1.5a.75.75 0 0 1-1.493.102L3 20.25v-1.5a.75.75 0 0 1 .75-.75M19.743 6a.75.75 0 0 1 .75.64l.007.102v13.501a.75.75 0 0 1-1.492.116L19 20.258V6.757A.75.75 0 0 1 19.743 6M7.75 15a.75.75 0 0 1 .743.648l.007.102v4.499a.75.75 0 0 1-1.493.101L7 20.25v-4.5a.75.75 0 0 1 .75-.75M4.985 3q.927 0 1.452.443.525.444.526 1.221 0 .402-.245.738a1.6 1.6 0 0 1-.642.518q.494.176.736.53.243.352.243.833 0 .78-.568 1.248Q5.92 9 4.985 9q-.875 0-1.43-.461Q3 8.077 3 7.319h1.16q0 .33.246.538a.9.9 0 0 0 .607.209q.414 0 .648-.22a.76.76 0 0 0 .235-.579q0-.874-.963-.874H4.32v-.906h.617q.441 0 .654-.221.213-.22.212-.586 0-.352-.21-.549t-.58-.197a.86.86 0 0 0-.557.183.58.58 0 0 0-.225.475H3.072q0-.457.247-.82.246-.363.69-.567Q4.45 3 4.985 3m5.697 0q1.038 0 1.624.495T13 4.937h-1.171q-.08-.501-.355-.734t-.756-.232q-.614 0-.935.46-.32.462-.324 1.372v.373q0 .919.348 1.388.35.47 1.023.47.678 0 .967-.29V6.739h-1.095v-.886H13v2.33q-.326.39-.918.603A3.9 3.9 0 0 1 10.766 9q-.757 0-1.33-.33a2.2 2.2 0 0 1-.882-.961q-.31-.63-.319-1.48v-.397q0-.875.295-1.514a2.2 2.2 0 0 1 .85-.98Q9.935 3 10.682 3" fill="currentColor"/></svg>'},{alias:"sliders",name:"fa_sliders",tags:["color_sliders"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M0 416c0 17.7 14.3 32 32 32l54.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-246.7 0c-12.3-28.3-40.5-48-73.3-48s-61 19.7-73.3 48L32 384c-17.7 0-32 14.3-32 32zm128 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32-80c-32.8 0-61 19.7-73.3 48L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l246.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48l54.7 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-54.7 0c-12.3-28.3-40.5-48-73.3-48zM192 128a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm73.3-64C253 35.7 224.8 16 192 16s-61 19.7-73.3 48L32 64C14.3 64 0 78.3 0 96s14.3 32 32 32l86.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 128c17.7 0 32-14.3 32-32s-14.3-32-32-32L265.3 64z" fill="currentColor"/></svg>'},{alias:"smile",name:"fa_smile",tags:["color_smile"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"smile_o",name:"fa_smile_o",tags:["color_smile_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" fill="currentColor"/></svg>'},{alias:"times_circle",name:"fa_times_circle",tags:["color_times_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" fill="currentColor"/></svg>'},{alias:"times_circle_o",name:"fa_times_circle_o",tags:["color_times_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0z" fill="currentColor"/></svg>'},{alias:"toggle_on",name:"fa_toggle_on",tags:["color_toggle_on"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192s-86-192-192-192L192 64zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" fill="currentColor"/></svg>'},{alias:"toggle_off",name:"fa_toggle_off",tags:["color_toggle_off"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" height="1em"><path d="M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128l-192 0c-70.7 0-128-57.3-128-128s57.3-128 128-128l192 0zM576 256c0-106-86-192-192-192L192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" fill="currentColor"/></svg>'},{alias:"wifi",name:"fa_wifi",tags:["color_wifi"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" fill="currentColor"/></svg>'},{alias:"exclamation_triangle",name:"fa_exclamation_triangle",tags:["color_exclamation_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480L40 480c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24l0 112c0 13.3 10.7 24 24 24s24-10.7 24-24l0-112c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" fill="currentColor"/></svg>'},{alias:"user",name:"fa_user",tags:["color_user"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0z" fill="currentColor"/></svg>'},{alias:"user_o",name:"fa_user_o",tags:["color_user_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464l349.5 0c-8.9-63.3-63.3-112-129-112l-91.4 0c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3z" fill="currentColor"/></svg>'},{alias:"user_circle",name:"fa_user_circle",tags:["color_user_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M399 384.2C376.9 345.8 335.4 320 288 320l-64 0c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z" fill="currentColor"/></svg>'},{alias:"user_circle_o",name:"fa_user_circle_o",tags:["color_user_circle_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M406.5 399.6C387.4 352.9 341.5 320 288 320l-64 0c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3l64 0c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" fill="currentColor"/></svg>'},{alias:"universal_access",name:"fa_universal_access",tags:["color_universal_access"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm161.5-86.1c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3l0 50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6l0-50.1c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" fill="currentColor"/></svg>'},{alias:"file_text",name:"fa_file_text",tags:["color_file_text"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM112 256l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z" fill="currentColor"/></svg>'},{alias:"file_text_o",name:"fa_file_text_o",tags:["color_file_text_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M64 464c-8.8 0-16-7.2-16-16L48 64c0-8.8 7.2-16 16-16l160 0 0 80c0 17.7 14.3 32 32 32l80 0 0 288c0 8.8-7.2 16-16 16L64 464zM64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-293.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0L64 0zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z" fill="currentColor"/></svg>'},{alias:"refresh",name:"fa_refresh",tags:["color_refresh"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M105.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L386.3 160 352 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l111.5 0c0 0 0 0 0 0l.4 0c17.7 0 32-14.3 32-32l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 35.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C73.2 122 55.6 150.7 44.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM39 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1L16 432c0 17.7 14.3 32 32 32s32-14.3 32-32l0-35.1 17.6 17.5c0 0 0 0 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.8c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L125.6 352l34.4 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L48.4 288c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z" fill="currentColor"/></svg>'},{alias:"facebook",name:"fa_facebook",tags:["color_facebook"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" height="1em"><path d="M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z" fill="currentColor"/></svg>'},{alias:"facebook_circle",name:"fa_facebook_circle",tags:["color_facebook_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z" fill="currentColor"/></svg>'},{alias:"facebook_square",name:"fa_facebook_square",tags:["color_facebook_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64h98.2V334.2H109.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H255V480H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" fill="currentColor"/></svg>'},{alias:"linkedin",name:"fa_linkedin",tags:["color_linkedin"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z" fill="currentColor"/></svg>'},{alias:"linkedin_square",name:"fa_linkedin_square",tags:["color_linkedin_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" fill="currentColor"/></svg>'},{alias:"pinterest",name:"fa_pinterest",tags:["color_pinterest"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" height="1em"><path d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3 .8-3.4 5-20.3 6.9-28.1 .6-2.5 .3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" fill="currentColor"/></svg>'},{alias:"pinterest_square",name:"fa_pinterest_square",tags:["color_pinterest_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M384 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64h72.6l-2.2-.8c-5.4-48.1-3.1-57.5 15.7-134.7c3.9-16 8.5-35 13.9-57.9c0 0-7.3-14.8-7.3-36.5c0-70.7 75.5-78 75.5-25c0 13.5-5.4 31.1-11.2 49.8c-3.3 10.6-6.6 21.5-9.1 32c-5.7 24.5 12.3 44.4 36.4 44.4c43.7 0 77.2-46 77.2-112.4c0-58.8-42.3-99.9-102.6-99.9C153 139 112 191.4 112 245.6c0 21.1 8.2 43.7 18.3 56c2 2.4 2.3 4.5 1.7 7c-1.1 4.7-3.1 12.9-4.7 19.2c-1 4-1.8 7.3-2.1 8.6c-1.1 4.5-3.5 5.5-8.2 3.3c-30.6-14.3-49.8-59.1-49.8-95.1C67.2 167.1 123.4 96 229.4 96c85.2 0 151.4 60.7 151.4 141.8c0 84.6-53.3 152.7-127.4 152.7c-24.9 0-48.3-12.9-56.3-28.2c0 0-12.3 46.9-15.3 58.4c-5 19.3-17.6 42.9-27.4 59.3H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z" fill="currentColor"/></svg>'},{alias:"instagram",name:"fa_instagram",tags:["color_instagram"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="currentColor"/></svg>'},{alias:"instagram_square",name:"fa_instagram_square",tags:["color_instagram_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M194.4 211.7a53.3 53.3 0 1 0 59.3 88.7 53.3 53.3 0 1 0 -59.3-88.7zm142.3-68.4c-5.2-5.2-11.5-9.3-18.4-12c-18.1-7.1-57.6-6.8-83.1-6.5c-4.1 0-7.9 .1-11.2 .1c-3.3 0-7.2 0-11.4-.1c-25.5-.3-64.8-.7-82.9 6.5c-6.9 2.7-13.1 6.8-18.4 12s-9.3 11.5-12 18.4c-7.1 18.1-6.7 57.7-6.5 83.2c0 4.1 .1 7.9 .1 11.1s0 7-.1 11.1c-.2 25.5-.6 65.1 6.5 83.2c2.7 6.9 6.8 13.1 12 18.4s11.5 9.3 18.4 12c18.1 7.1 57.6 6.8 83.1 6.5c4.1 0 7.9-.1 11.2-.1c3.3 0 7.2 0 11.4 .1c25.5 .3 64.8 .7 82.9-6.5c6.9-2.7 13.1-6.8 18.4-12s9.3-11.5 12-18.4c7.2-18 6.8-57.4 6.5-83c0-4.2-.1-8.1-.1-11.4s0-7.1 .1-11.4c.3-25.5 .7-64.9-6.5-83l0 0c-2.7-6.9-6.8-13.1-12-18.4zm-67.1 44.5A82 82 0 1 1 178.4 324.2a82 82 0 1 1 91.1-136.4zm29.2-1.3c-3.1-2.1-5.6-5.1-7.1-8.6s-1.8-7.3-1.1-11.1s2.6-7.1 5.2-9.8s6.1-4.5 9.8-5.2s7.6-.4 11.1 1.1s6.5 3.9 8.6 7s3.2 6.8 3.2 10.6c0 2.5-.5 5-1.4 7.3s-2.4 4.4-4.1 6.2s-3.9 3.2-6.2 4.2s-4.8 1.5-7.3 1.5l0 0c-3.8 0-7.5-1.1-10.6-3.2zM448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96zM357 389c-18.7 18.7-41.4 24.6-67 25.9c-26.4 1.5-105.6 1.5-132 0c-25.6-1.3-48.3-7.2-67-25.9s-24.6-41.4-25.8-67c-1.5-26.4-1.5-105.6 0-132c1.3-25.6 7.1-48.3 25.8-67s41.5-24.6 67-25.8c26.4-1.5 105.6-1.5 132 0c25.6 1.3 48.3 7.1 67 25.8s24.6 41.4 25.8 67c1.5 26.3 1.5 105.4 0 131.9c-1.3 25.6-7.1 48.3-25.8 67z" fill="currentColor"/></svg>'},{alias:"tumblr",name:"fa_tumblr",tags:["color_tumblr"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" height="1em"><path d="M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1 .8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5 .9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" fill="currentColor"/></svg>'},{alias:"tumblr_square",name:"fa_tumblr_square",tags:["color_tumblr_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96zM256.8 416c-75.5 0-91.9-55.5-91.9-87.9v-90H135.2c-3.4 0-6.2-2.8-6.2-6.2V189.4c0-4.5 2.8-8.5 7.1-10c38.8-13.7 50.9-47.5 52.7-73.2c.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2H249.1V321c0 21.4 14.8 33.5 42.5 22.4c3-1.2 5.6-2 8-1.4c2.2 .5 3.6 2.1 4.6 4.9L318 387.1c1 3.2 2 6.7-.3 9.1c-8.5 9.1-31.2 19.8-60.9 19.8z" fill="currentColor"/></svg>'},{alias:"twitter",name:"fa_twitter",tags:["color_twitter"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M459.4 151.7c.3 4.5 .3 9.1 .3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53 51.7 63.7 129.3 105.3 216.4 109.8-1.6-7.8-2.6-15.9-2.6-24 0-57.8 46.8-104.9 104.9-104.9 30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8 21.1-2.3 41.6-8.1 60.4-16.2-14.3 20.8-32.2 39.3-52.6 54.3z" fill="currentColor"/></svg>'},{alias:"twitter_square",name:"fa_twitter_square",tags:["color_twitter_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM351.3 199.3v0c0 86.7-66 186.6-186.6 186.6c-37.2 0-71.7-10.8-100.7-29.4c5.3 .6 10.4 .8 15.8 .8c30.7 0 58.9-10.4 81.4-28c-28.8-.6-53-19.5-61.3-45.5c10.1 1.5 19.2 1.5 29.6-1.2c-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3c-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1c32.3 39.8 80.8 65.8 135.2 68.6c-9.3-44.5 24-80.6 64-80.6c18.9 0 35.9 7.9 47.9 20.7c14.8-2.8 29-8.3 41.6-15.8c-4.9 15.2-15.2 28-28.8 36.1c13.2-1.4 26-5.1 37.8-10.2c-8.9 13.1-20.1 24.7-32.9 34c.2 2.8 .2 5.7 .2 8.5z" fill="currentColor"/></svg>'},{alias:"x_twitter",name:"fa_x_twitter",tags:["color_x_twitter"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" fill="currentColor"/></svg>'},{alias:"x_twitter_square",name:"fa_x_twitter_square",tags:["color_x_twitter_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="1em"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm297.1 84L257.3 234.6 379.4 396H283.8L209 298.1 123.3 396H75.8l111-126.9L69.7 116h98l67.7 89.5L313.6 116h47.5zM323.3 367.6L153.4 142.9H125.1L296.9 367.6h26.3z" fill="currentColor"/></svg>'},{alias:"globe",name:"fa_globe",tags:["color_globe"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M352 256c0 22.2-1.2 43.6-3.3 64l-185.3 0c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64l185.3 0c2.2 20.4 3.3 41.8 3.3 64zm28.8-64l123.1 0c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64l-123.1 0c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32l-116.7 0c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0l-176.6 0c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0L18.6 160C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192l123.1 0c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64L8.1 320C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6l176.6 0c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352l116.7 0zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6l116.7 0z" fill="currentColor"/></svg>'},{alias:"search",name:"fa_search",tags:["color_search"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" fill="currentColor"/></svg>'},{alias:"computer",name:"fa_computer",tags:["color_computer"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 202.901 202.9" height="1em" xml:space="preserve"><path d="m129.481 157.402-3.84-19.062h69.93V0H7.325v138.334h67.662l-3.834 19.063H7.274V202.9h188.353v-45.498zm-69.617 19.515H18.603v-7.693h41.261zm-33.789-62.084V19.436h150.742v95.403H26.075zm158.968 67.431h-59.438v-13.045h59.448v13.045z" fill="currentColor"/></svg>'},{alias:"alarm_clock",name:"fa_alarm_clock",tags:["color_alarm_clock"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em" fill="none"><path d="M3 5.5L5 3.5M21 5.5L19 3.5M12 8.5V12.5L14 14.5M20 12.5C20 16.9183 16.4183 20.5 12 20.5C7.58172 20.5 4 16.9183 4 12.5C4 8.08172 7.58172 4.5 12 4.5C16.4183 4.5 20 8.08172 20 12.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>'},{alias:"cloud",name:"fa_cloud",tags:["color_cloud"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em" fill="none"><path d="M16.286 20C19.442 20 22 17.472 22 14.353c0-2.472-1.607-4.573-3.845-5.338C17.837 6.194 15.415 4 12.476 4 9.32 4 6.762 6.528 6.762 9.647c0 .69.125 1.35.354 1.962a4.4 4.4 0 0 0-.83-.08C3.919 11.53 2 13.426 2 15.765S3.919 20 6.286 20z" fill="currentColor"/></svg>'},{alias:"cloud_o",name:"fa_cloud_o",tags:["color_cloud_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="1em" fill="none"><path d="M14.381 9.027a5.8 5.8 0 0 1 1.905-.321c.654 0 1.283.109 1.87.309m-11.04 2.594a4.4 4.4 0 0 0-.83-.08C3.919 11.53 2 13.426 2 15.765S3.919 20 6.286 20h10C19.442 20 22 17.472 22 14.353c0-2.472-1.607-4.573-3.845-5.338M7.116 11.609a5.6 5.6 0 0 1-.354-1.962C6.762 6.528 9.32 4 12.476 4c2.94 0 5.361 2.194 5.68 5.015m-11.04 2.594a4.3 4.3 0 0 1 1.55.634" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></svg>'},{alias:"comment",name:"fa_comment",tags:["color_comment"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c0 0 0 0 0 0s0 0 0 0s0 0 0 0c0 0 0 0 0 0l.3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z" fill="currentColor"/></svg>'},{alias:"comment_o",name:"fa_comment_o",tags:["color_comment_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4c26.5 9.6 56.2 15.1 87.8 15.1c124.7 0 208-80.5 208-160s-83.3-160-208-160S48 160.5 48 240c0 32 12.4 62.8 35.7 89.2c8.6 9.7 12.8 22.5 11.8 35.5c-1.4 18.1-5.7 34.7-11.3 49.4c17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9c1.8-2.7 3.5-5.4 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208s-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6c-15.1 6.6-32.3 12.6-50.1 16.1c-.8 .2-1.6 .3-2.4 .5c-4.4 .8-8.7 1.5-13.2 1.9c-.2 0-.5 .1-.7 .1c-5.1 .5-10.2 .8-15.3 .8c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c4.1-4.2 7.8-8.7 11.3-13.5c1.7-2.3 3.3-4.6 4.8-6.9l.3-.5z" fill="currentColor"/></svg>'},{alias:"comments",name:"fa_comments",tags:["color_comments"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2s0 0 0 0s0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.2-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9c0 0 0 0 0 0s0 0 0 0l-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z" fill="currentColor"/></svg>'},{alias:"comments_o",name:"fa_comments_o",tags:["color_comments_o"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" height="1em"><path d="M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.8 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z" fill="currentColor"/></svg>'},{alias:"explosive_materials",name:"fa_explosive_materials",tags:["color_explosive_materials"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em"><path d="M16.504 12.025v151.26l54.93 177.096c-.248.088-.49.187-.737.276l90.278 47.748-32.21 40.035 28.817 38.04 89.61 27.946H361.08l-196.783-37.424a78.5 78.5 0 0 0 6.326-12.22l325.95 18.11V413.25l-321.627 17.313a79.6 79.6 0 0 0 1.563-14.627l320.062-60.504v-50.81l-320.8 99.216a78.6 78.6 0 0 0-3.463-14.578l324.263-170.49v-65.41L167.35 377.767a78.6 78.6 0 0 0-7.88-12.032L496.567 62.836v-50.81l-.002.005H456.27L148.533 354.456a78.7 78.7 0 0 0-12.068-8.38L364.578 12.032H298l-172.725 328.83a79 79 0 0 0-10.318-3.037l101.28-325.793H168.35l-60.963 324.473a81 81 0 0 0-9.282-.584l17.1-323.89h-44.97l17.812 324.466a79 79 0 0 0-9.926 1.85zm22.642 349.84c-12.633 13.97-20.314 32.506-20.314 52.897 0 43.655 35.188 78.843 78.844 78.843 19.185 0 36.72-6.81 50.36-18.136l-54.415-39.784 29.425-32.424-83.9-41.397z" fill="currentColor"/></svg>'},{alias:"toxic_material_triangle",name:"fa_toxic_material_triangle",tags:["color_toxic_material_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 458.09 458.089" height="1em" xml:space="preserve"><path d="M436.912 430.19c-.03.006-.077 0-.118 0H21.184a21.185 21.185 0 0 1-18.347-31.777L210.642 38.489a21.19 21.19 0 0 1 18.348-10.592 21.18 21.18 0 0 1 18.341 10.592l206.776 358.139a21.1 21.1 0 0 1 3.983 12.377c.006 11.698-9.481 21.185-21.178 21.185M57.878 387.822H400.1L228.989 91.456zm244.434-33.414c-1.785 3.818-5.13 6.206-8.913 7.093 1.762 3.464 2.181 7.565.449 11.378-2.997 6.609-10.805 9.511-17.372 6.508-6.644-3.014-9.552-10.805-6.514-17.4.095-.296.367-.432.503-.71l-43.072-19.357-43.621 18.146c.142.278.384.42.479.704 2.837 6.679-.266 14.404-6.992 17.241-6.679 2.784-14.375-.337-17.188-7.027-1.631-3.89-1.082-7.956.774-11.361-3.742-.992-7.052-3.511-8.701-7.353-2.784-6.69.308-14.416 7.022-17.2 6.679-2.825 14.375.289 17.2 6.975.101.296.071.573.171.846l27.538-11.449-27.207-12.224c-.118.266-.071.567-.213.839-2.997 6.597-10.805 9.511-17.401 6.514-6.579-3.014-9.469-10.805-6.472-17.413 1.744-3.812 5.125-6.183 8.896-7.116-1.785-3.44-2.21-7.555-.467-11.36 3.009-6.608 10.805-9.499 17.413-6.514 6.608 3.015 9.511 10.805 6.466 17.413-.094.277-.366.438-.461.674l43.066 19.398 43.592-18.134c-.136-.296-.378-.438-.508-.733-2.809-6.727.307-14.41 7.021-17.224 6.649-2.825 14.346.284 17.171 7.011 1.638 3.854 1.081 7.955-.804 11.36 3.771 1.005 7.087 3.464 8.736 7.376 2.783 6.668-.313 14.34-7.022 17.165-6.685 2.831-14.375-.296-17.2-6.957-.13-.277-.071-.591-.172-.856l-27.526 11.432 27.189 12.234c.112-.26.083-.555.207-.839 3.038-6.597 10.805-9.517 17.39-6.502a13.126 13.126 0 0 1 6.543 17.422m-30.594-113.735c3.404 3.114 5.556 7.436 5.556 12.229 0 7.938-5.881 14.334-13.701 16.297v5.957c0 10.279-8.417 18.714-18.713 18.714h-34.685c-10.297 0-18.708-8.435-18.708-18.714v-5.934c-7.861-1.963-13.772-8.358-13.772-16.326 0-4.822 2.163-9.144 5.609-12.247-5.361-7.737-8.535-16.913-8.535-26.811 0-27.216 23.613-49.316 52.741-49.316 29.117 0 52.76 22.1 52.76 49.316.018 9.91-3.179 19.085-8.552 26.835m-52.884-23.25c0-7.791-6.543-14.097-14.588-14.097-8.015 0-14.594 6.307-14.594 14.097 0 7.796 6.579 14.1 14.594 14.1 8.045-.012 14.588-6.304 14.588-14.1m23.927 41.491-14.15-23.944-14.682 24.405 14.541-7.058zm22.614-41.491c0-7.791-6.555-14.097-14.569-14.097-8.051 0-14.576 6.307-14.576 14.097 0 7.796 6.525 14.1 14.576 14.1 8.032-.012 14.569-6.304 14.569-14.1" fill="currentColor"/></svg>'},{alias:"biohazard_circle",name:"fa_biohazard_circle",tags:["color_biohazard_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 185 181" height="1em"><path fill="none" d="M-.5-.5h185v181H-.5z"/><path fill="currentColor" d="M80.5.5q74.508-3.662 99.5 66 12.613 65.21-42.5 101.5Q75.937 198.183 27 150.5q-39.898-49.398-11-106 22.761-36 64.5-44"/><path fill="white" d="M79.5 14.5q65.459-5.42 87.5 56 9.243 48.782-28.5 80.5-33.532 22.442-72 10Q10.798 134.86 19 73.5q13.48-46.836 60.5-59"/><path fill="currentColor" d="M86.5 26.5h4v4q-24.824 5.626-21.5 31 5.096 16.85 22.5 19-5.547 6.093-8 14-16.083-18.634-37-5.5-12.685 11.742-7 28-.798 3.03-4 2.5-8.733-37.033 28-47-10.104-33.792 23-46"/><path fill="currentColor" d="M96.5 27.5q23.145 2.382 29.5 25 1.553 10.362-2.5 20 31.01 7.256 29.5 39a24 24 0 0 1-3.5 8q-1.83-.58-2-2.5 5.822-24.66-18-33-16.632-3.29-26.5 10.5-3.093-3.888-4-9-4.005-1.086-4.5-5 28.167-5.838 22.5-34-5.904-13.575-20.5-16z"/><path fill="currentColor" d="M87.5 55.5q14.269-.96 26 7a18.9 18.9 0 0 1-3 5q-17.301-11.963-34.5 0-3.096-2.614-1.5-6a84.5 84.5 0 0 1 13-6"/><path fill="currentColor" d="M58.5 87.5h6q-1.267 10.34 4.5 19 5.18 7.197 12.5 12-1.068 2.319-3.5 3-20.162-10.801-19.5-34"/><path fill="currentColor" d="M122.5 87.5h5q1.147 23.715-19.5 35a36 36 0 0 0-3.5-4.5q18.033-9.801 18-30.5"/><path fill="currentColor" d="M85.5 96.5q4.095-.04 7.5 2a22.2 22.2 0 0 0 6-2q1.588.195 2.5 1.5-8.406 25.689 17 35 15.28 2.073 25.5-9.5 4.455 1.635 1 5-27.49 23.364-52-3-12.914 15.815-33.5 13.5-12.338-3.41-20-13.5a7.3 7.3 0 0 1 3-2q16.08 17.123 36 4.5 13.675-13.419 7-31.5"/></svg>'},{alias:"risk_of_fire_triangle",name:"fa_risk_of_fire_triangle",tags:["color_risk_of_fire_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 117.828 103.684" height="1em"><path fill="none" d="M610.34 321.44a6.26 6.26 0 0 0-4.479 3.047l-52.634 91.188a6.25 6.25 0 0 0 0 6.231 6.31 6.31 0 0 0 5.448 3.142h105.27c2.25 0 4.33-1.211 5.449-3.142a6.25 6.25 0 0 0 0-6.231l-52.636-91.188c-1.3-2.25-3.86-3.45-6.42-3.05z" transform="translate(-552.522 -321.48)"/><path fill="currentColor" d="M610.83 324.02a3.32 3.32 0 0 0-2.375 1.625l-53 91.812a3.37 3.37 0 0 0 0 3.312c.592 1.021 1.685 1.689 2.875 1.688h106c1.189.003 2.283-.665 2.875-1.688a3.37 3.37 0 0 0 0-3.312l-53-91.812c-.7-1.18-2.02-1.84-3.39-1.62zm.5 10.56 45 79.25h-90.062l45.06-79.25z" transform="translate(-552.522 -321.48)"/><path stroke="currentColor" stroke-width="4" fill="none" d="M901.4-47.336h54.089" transform="translate(-325.56 108.17)scale(.41428)"/><path stroke="currentColor" stroke-width="2" fill="currentColor" d="M939.29-49.286c29.395 4.191 36.33-14.608 35.142-41.731-3.479 4.135-6.959 12.213-10.433 6.862 7.647-12.461 12.588-25.789 0-44.753-1.146 10.74-2.918 18.467-7.689 11.803-.038-12.251-.212-24.483-10.985-34.591 0 0-7.937 15.683-6.313 13.453 3.248-4.441-17.366-40.748-19.491-39.534.054 10.931 5.834 25.197-1.92 31.571l-7.415-9.608c-1.076 11.242-2.513 22.894-3.569 34.871l-9.884-12.081c2.387 13.121 6.439 28.422-.276 29.65-7.574 6.987-7.431-3.663-10.433-7.138 1.231 66.539 15.89 55.189 27.455 61.78-6.169-9.797-13.922-19.584-10.98-29.381l4.667.825c-2.916-4.394-3.922-8.783-.276-13.177 7.374 4.436 9.059 15.511 12.353 24.709.886-11.697 1.55-23.04 7.415-42.558l4.117 23.337c3.178 3.178 5.266-26.373 5.214-26.906-.283-3.05 9.759 22.87 4.667 23.889 0 0 9.886-7.963 9.886-4.394s-1.919 12.352-1.919 12.352l8.232-.547c-1.08 13.622-7.17 23.9-17.57 31.304z" transform="translate(-325.56 108.17)scale(.41428)"/></svg>'},{alias:"oxidizing_substance",name:"fa_oxidizing_substance",tags:["color_oxidizing_substance"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 324.995 324.995" height="1em" xml:space="preserve"><path fill="currentColor" d="M59.074 206.255c2.225 7.093 8.006 13.402 15.267 18.868a90 90 0 0 1 5.33-16.692c-5.662-21.642-5.194-38.797-3.878-36.018 2.274 4.797 5.037 8.235 8.148 10.807 2.469 2.045 5.178 3.519 8.033 4.688 3.127-3.954 6.587-7.609 10.312-10.992a91.3 91.3 0 0 1 21.74-14.685c-.082-5.814-.979-11.727-3.372-17.922-.609-1.572 10.971 5.488 17.258 12.515.457-.136.93-.234 1.392-.359 5.57-40.124 24.949-67.02 24.949-67.02s-12.575 31.334 1.692 63.751c14.8.375 28.756 4.204 41.016 10.835 6.978-15.224 9.828-26.499 9.828-26.499 7.936 10.541 9.747 24.753 8.398 39.585a92 92 0 0 1 4.868 4.77c10.546-3.737 20.978-5.243 25.362-18.623 1.071-3.258 5.009 25.77-5.096 52.449a92 92 0 0 1 2.513 9.056c11.047-12.173 19.526-27.059 19.526-44.116 0-35.833-14.071-28.724-5.243-51.584.767-1.98-10.682 9.143-17.71 19.537-6.962-21.468-19.809-58.106-43.072-78.622 0 0 12.689 32.292-12.037 66.085 0 0 8.681-20.804-5.542-64.763S207.375 0 207.375 0s-78.736 45.356-98.289 130.842c-8.224-11.83-19.798-22.703-18.982-20.587 6.342 16.431.109 33.162-3.807 50.219-18.341-16.268-35.588-24.182-33.488-21.599 18.089 22.236-2.101 40.712 6.265 67.38"/><path fill="currentColor" d="M223.225 190.46c-1.12-1.24-2.246-2.469-3.443-3.639-5.238-5.102-11.139-9.518-17.612-13.054a80 80 0 0 0-30.323-9.399 82 82 0 0 0-8.218-.413c-14.794 0-28.615 4.058-40.532 11.025a80.6 80.6 0 0 0-14.234 10.584 80.9 80.9 0 0 0-14.789 18.477 80 80 0 0 0-8.703 21.762 78 78 0 0 0-1.142 5.809c-.674 4.199-1.12 8.474-1.12 12.863 0 44.47 36.05 80.52 80.52 80.52s80.52-36.05 80.52-80.52c0-3.541-.305-7.005-.751-10.427a84 84 0 0 0-.538-3.535c-2.666-15.278-9.638-29.039-19.635-40.053m-59.591 111.631c-25.215 0-46.569-16.442-53.994-39.178a56.7 56.7 0 0 1-2.828-17.644c0-.99.098-1.958.147-2.937.37-7.245 2.072-14.125 4.906-20.407a57 57 0 0 1 6.766-11.259 57 57 0 0 1 9.883-10.014c9.671-7.62 21.849-12.205 35.115-12.205 6.908 0 13.5 1.294 19.619 3.552a57 57 0 0 1 6.01 2.605 57 57 0 0 1 19.129 15.741 57 57 0 0 1 6.222 9.948c3.704 7.549 5.842 16.002 5.842 24.976 0 1.882-.103 3.737-.283 5.57q-.015.156-.022.321c-2.937 28.615-27.114 50.931-56.512 50.931"/></svg>'},{alias:"compressed_gas_diamond",name:"fa_compressed_gas_diamond",tags:["color_compressed_gas_diamond"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 579 579" height="1em" ><path d="M25.301 289.672 289.33 553.7l264.073-264.072c-88.053-87.952-175.931-176.079-264.03-263.985z" fill ="none" stroke="none"/><path d="M147.66 148.012 6 289.672 147.669 431.34 289.329 573l141.687-141.688 141.688-141.688-141.64-141.64C353.165 70.086 289.403 6.344 289.375 6.344c-.029 0-63.8 63.752-141.717 141.668m260.962 22.413 119.199 119.2L408.575 408.87 289.319 528.127 170.129 408.87 50.95 289.606l119.19-119.19c65.557-65.557 119.208-119.19 119.237-119.19s53.689 53.642 119.246 119.2" fill="currentColor" stroke="none"/><path d="M437.625 288c-.969-.003-1.948.044-2.562.156-1.193.225-231.267 61.994-232.094 62.313-6.52 2.563-10.896 9.67-12.219 19.875-.272 2.067-.4 5.84-.281 8.25.189 3.91.7 7.239 1.656 11.125 3.898 15.827 13.746 28.263 24.281 30.625 1.229.271 4.116.35 5.344.125 1.04-.177 229.029-61.311 231.344-62.031 4.405-1.37 7.723-4.446 10.156-9.407 1.358-2.752 2.178-5.415 2.875-9.312.555-3.071 1.033-4.391 2.344-6.375 1.594-2.422 4.357-4.486 7.156-5.313.46-.13 11.84-3.179 25.281-6.781 13.441-3.614 24.728-6.71 25.094-6.875 5.433-2.492 7.411-10.428 4.281-17.125-1.724-3.673-4.849-6.385-8.156-7.094-1.122-.236-2.835-.209-3.969.063-.52.13-11.713 3.124-24.906 6.656-13.181 3.543-24.27 6.511-24.625 6.594-.425.106-1.36.156-2.719.156-2.268-.012-3.138-.162-4.969-.906-2.29-.945-3.735-2.096-6.062-4.813-3.484-4.063-6.629-6.627-10.125-8.281-1.5-.697-3.114-1.22-4.531-1.469-.65-.112-1.625-.153-2.594-.156" transform="scale(.8)" fill="currentColor" stroke="none"/></svg>'},{alias:"hand_gesture_stop",name:"fa_hand_gesture_stop",tags:["color_hand_gesture_stop"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="1em" xml:space="preserve"><path d="M256 0C114.842 0 0 114.84 0 256s114.842 256 256 256 256-114.84 256-256S397.158 0 256 0m112.393 310.583h-.003a101.513 101.513 0 0 1-101.514 101.514c-47.676 0-91.834-25.09-116.238-66.047l-37.395-62.757c-6.846-10.176-4.123-24.104 6.054-30.95a22.13 22.13 0 0 1 12.394-3.778c7.188 0 14.264 3.45 18.556 9.83l17.985 26.733c6.555 9.742 21.761 5.101 21.761-6.638V152.525c0-11.291 8.153-21.238 19.35-22.697a23 23 0 0 1 2.95-.192c7.606 0 14.356 3.861 18.386 9.72 1.078 1.566 3.513 1.059 3.914-.8v-16.354c0-12.264 10.035-22.299 22.299-22.299q1.395-.001 2.823.176c11.253 1.402 19.477 11.374 19.477 22.713v15.763l.511.864a1.948 1.948 0 0 0 3.293.096l.019-.026c4.019-5.934 10.812-9.854 18.477-9.854q1.394-.001 2.825.176c11.252 1.402 19.476 11.374 19.476 22.713v52c.842 1.947 3.442 2.259 4.752.591 4.09-5.215 10.446-8.582 17.549-8.582q1.388-.001 2.812.175c11.257 1.396 19.487 11.37 19.487 22.714z" fill="currentColor"/></svg>'},{alias:"dangerously_reactive_circle",name:"fa_dangerously_reactive_circle",tags:["color_dangerously_reactive_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 920 800" height="1em"><path d="M423.8 48c-70.4 5.2-135.1 30.5-189.3 74.1-94.3 75.7-141.1 195-123.5 314.6 8.7 59.7 33.3 116 71.6 163.8 11.3 14.2 36.8 39.7 50.9 50.9 52.3 41.6 111.8 66.2 178.5 73.7 14.6 1.7 55.1 1.7 69.5.1 55-6.2 104.5-23.6 149-52.1 35.4-22.7 69.7-55.5 94.1-90.1 33.7-47.7 53.7-100.9 60.6-161.5 1.6-14.3 1.6-54.8-.1-69.5-7.4-66.6-32.1-126.3-73.7-178.5-11.3-14.1-36.8-39.6-50.9-50.9-51.5-41-110.4-65.7-174.8-73.1-16.4-1.9-46.8-2.6-61.9-1.5m62.8 72.9c57.7 8.7 108.9 34.6 150 75.6 15.6 15.6 22.9 24.4 35.2 42.8 24.3 36.5 39 78.6 43.3 124.2 1.4 15.4.7 46.4-1.5 61.3-8.8 59.3-34.8 110.7-77 152.7-30.8 30.7-64.4 51.4-105 65-25.5 8.4-47.6 12.3-76.2 13.2-56.6 1.8-110.2-13.3-156.1-43.9-18.4-12.3-27.2-19.6-42.8-35.2-41.1-41.1-66.6-91.8-75.7-150.1-2.9-18.8-3.2-57.7-.5-76 8.9-59.6 34.9-111.8 76.6-153.6 17.7-17.7 35.2-31.1 57.3-43.8 29.2-16.8 67.2-29.4 99.8-33 5.2-.6 11.1-1.3 13-1.5 9.2-1.1 47.1.4 59.6 2.3" fill="currentColor"/><path d="m430.5 136.5-2.5 2.4v109.2l2.5 2.4c3 3 6.4 3.2 9.9.4l2.6-2V138.1l-2.6-2c-3.5-2.8-6.9-2.6-9.9.4m-47.3 8.1c-1.3.9-2.7 2.6-3.2 3.9-.6 1.6 2.3 15.9 11 52.9 6.6 27.8 12.4 51.5 13 52.6 2.3 4.3 10.2 3.6 12.9-1.1 1.4-2.5.7-6.1-10.3-53-6.6-27.7-12.3-51.4-12.8-52.5-1-2.1-4.7-4.4-7.1-4.4-.7 0-2.3.7-3.5 1.6m97.1-.4c-1.2.6-2.6 2.2-3.2 3.7-.5 1.4-6.3 25.1-12.7 52.6-10.7 45.7-11.5 50.1-10.3 52.5 2.7 4.7 10.6 5.3 13 .8.6-1.2 6.5-24.9 13.1-52.7 12.8-54.6 12.8-54.4 7.2-57-3-1.3-4.2-1.3-7.1.1m-140.9 24.3c-3.2 1.3-4.4 3.2-4.4 6.9 0 2.7 44.3 84.5 46.7 86.3s6.7 1.6 9.2-.5c5-4.1 4.7-4.8-19.8-49.7-25-45.8-25-45.8-31.7-43m186.4-.3c-2.1.7-6.4 7.8-23.9 40.1-28 51.4-25.5 46.1-23.6 50.3 1.1 2.1 2.6 3.6 4.3 4 6.4 1.6 6.5 1.5 30.6-42.6 14.9-27.2 22.7-42.5 22.7-44.5.2-5.9-4.4-9.2-10.1-7.3m-101 94.1c-.8.7-4.2 4.6-7.6 8.8-8.1 10.1-8.3 11.8-1.9 15 2.3 1.2 4.4 2.3 4.6 2.6.3.2-1.2 1.7-3.2 3.4-5.2 4.2-4.9 7 .9 10.9 3.3 2.4 4.4 3.6 3.9 4.8-1.6 4-1.7 8.8-.2 10.1 2.9 2.4 5.4.4 7.6-6.1 2.8-8.3 2.7-9.4-1.4-12-1.9-1.3-3.5-2.5-3.5-2.8s1.6-1.6 3.5-3c3.5-2.5 5.3-6 4-8-.3-.6-2.9-2.2-5.6-3.6l-5-2.5 5.1-6.4c3.4-4.2 5-7.2 4.8-8.6-.4-2.7-4-4.2-6-2.6m28.5 10.3c-4.6 5.2-8.3 10.3-8.3 11.3 0 .9 1.4 3 3 4.6 1.7 1.6 3 3.3 3 3.8s-2 3.3-4.5 6.1c-5.6 6.6-6 10.1-1.2 11.4 3 .8 3.2 1.1 3.2 5.6 0 5.1 1.8 7.5 4.7 6.3 1.6-.6 5.8-11.5 5.8-14.9 0-1.1-1.1-2.3-2.6-2.8-2.9-1.1-3-.9 2.8-7.8 3.6-4.2 3.5-5.4-.7-9.4l-3.5-3.3 6.5-7.5c4.9-5.6 6.5-8.1 6.3-10-.2-2-.9-2.6-3.3-2.7-2.7-.3-3.9.8-11.2 9.3M323 289.3v23.4l3.7 2.4c2 1.3 4.6 4 5.8 5.9 2 3.5 2 4.9 2.3 106 .2 56.4 0 105.3-.3 108.8-.5 5-1.3 7-3.6 9.7-1.6 1.8-4 3.6-5.4 3.9l-2.5.6v47h104v-46.8l-4.9-1.7c-9.9-3.2-18-10.8-22.9-21.2l-2.7-5.8-.3-78.3-.2-78.2-5-7.6c-6.8-10.4-8.3-16.3-6-24.4 1.8-6.5 11.1-13 18.6-13 1.3 0 2.4-.2 2.4-.4 0-.5-9.7-47.8-10.5-51.4l-.5-2.2h-72zm156.1 3.2c-5 14.6-9.1 26.9-9.1 27.4s1.1 1.2 2.4 1.5c3.7.9 8.7 5.6 10.7 10.1 3.6 7.8 2.2 14.7-5.1 25.9l-5 7.6-.2 78.2-.3 78.3-2.3 5.2-2.4 5.2 11.4 32.5 11.3 32.6H576v-46.8l-3.1-1.2c-4.9-2.1-10.9-12.2-35.2-59l-22.5-43.3 7.8-7.4c27.5-25.8 41.8-65.8 35.5-99-5.5-29.2-23.6-56.8-44.4-67.7-7.5-3.9-16.5-6.6-22.2-6.6h-3.6zm-58.7 60.7 3.1 6.2.3 78.1c.1 58.8.5 78.6 1.4 80.3 3.5 6.7 15.1 6.7 18.6 0 .9-1.7 1.3-21.5 1.4-80.3l.3-78 2.8-5.9c1.5-3.2 2.7-6 2.7-6.2s-7.6-.4-16.8-.4h-16.9z" fill="currentColor"/></svg>'},{alias:"corrosive_materials",name:"fa_corrosive_materials",tags:["color_corrosive_materials"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 226 228" height="1em"><path d="M54.5 24.7c-7.2 6.9-20.3 19.8-29.2 28.6L9 69.3v82.8l5.2 5.3c2.9 2.9 16.3 16.4 29.7 29.9L68.3 212h83.2l11.5-11.8c6.3-6.5 19-19.5 28.3-28.9 9.2-9.5 17.2-18.4 17.7-19.8 1.3-3.3 1.3-78.5.1-81.7-.8-2-53-54.8-56.3-56.9-.7-.5-20.2-.9-43.3-.9h-42zm87.7 8.1c.9.4 11.6 10.5 23.7 22.5L188 77v67.5l-22.7 23.3-22.8 23.2h-66l-22.3-22.7C42 155.7 31.5 144.5 31 143.2c-1.5-3.4-1.3-62.8.1-65.5.7-1.2 4.6-5.5 8.8-9.6 4.2-4 13.5-13.1 20.6-20.1 7.2-7.1 14.4-13.6 16-14.4 2.5-1.3 7.7-1.6 33.5-1.5 16.8 0 31.3.3 32.2.7" fill="currentColor"/><path d="M93.6 58.2c-1.1 1.6-1.6 4.7-1.6 10.6 0 13.5-2.8 17.6-11.8 17l-4.7-.3-.2-6.5c-.2-3.6-.5-8-.8-9.8-.5-2.9-.9-3.2-4.1-3.2-2.6 0-3.3.3-2.7 1.2.4.7 1 20.2 1.3 43.4l.5 42.1 2.8 3.7c5.6 7.3 4.7 7.1 37.9 7.1h29.7l3.5-3.4c6.7-6.5 6.6-5.7 6.6-49.4 0-23.3.4-40.6 1-42.1.9-2.5.8-2.6-2.5-2.6H145v8.4c0 10.1-1.1 11.9-7.3 11.4-3.5-.3-4.5-.9-7.4-4.8-4.8-6.5-7.3-12.5-7.3-17.5 0-7.7.4-7.5-14.6-7.5-12.6 0-13.4.1-14.8 2.2m33.6 30.5c1 .9 1.8 2.1 1.8 2.6 0 .6 1.1 2.5 2.5 4.3 2.9 3.8 3.2 6.2.9 7.1-2.5.9-4.7-.9-5.7-4.8-1.1-4.1-2.4-5.9-4.4-5.9-1.2 0-1.4 1.3-1 6.7.3 3.8.9 8.5 1.2 10.5 1.1 5.8-3.7 9.7-5.1 4.2l-.7-2.7-1.3 2.5c-1.8 3.4-4.3 4.2-6.5 2.2-1.5-1.4-1.9-3.2-1.9-9.5 0-4.3-.4-8-.9-8.4-1.6-.9-3.1 3-3.1 7.8 0 5.5-2.2 7.9-4.8 5.4-1.5-1.6-1.5-2.1.1-8.2 1.7-6.2 1.6-8.5-.2-8.5-1 0-4.1 6.7-4.1 9 0 2.4-1.5 3.3-4 2.5-2.8-.9-2.5-3.1 1.5-11.3l3.6-7.2h15.1c12.7 0 15.4.3 17 1.7m8.8 22.5c0 3.1-4.2 1.9-5.4-1.5-.8-2.2-.7-3 .4-3.8 1.8-1.1 5 2.3 5 5.3m-45.4.3c.7 1.7-2.1 6.5-3.6 6.5-1.4 0-1.2-5.4.2-6.8 1.6-1.6 2.7-1.5 3.4.3m9.9 6.9c-2.6 9.4-5.4 13-6.9 9-.9-2.2.3-8.3 2.2-11.6 1.5-2.6 1.7-2.6 3.4-1.1 1.2 1 1.6 2.4 1.3 3.7m11.5 1.1c.9 1.1 1 2.9.4 6.8-.8 4.6-1.2 5.2-3.4 5.2-2.3 0-2.5-.4-2.8-4.7-.5-7.3 2.6-11.2 5.8-7.3m11.4 4.8c.8 4.7.7 6.1-.5 7.3-2.3 2.3-4.8-.3-5.5-5.8-.8-6-.1-8 2.8-7.6 2 .3 2.4 1.2 3.2 6.1m-26.8 12.2c-.5 1.8-1.2 2.5-2.4 2.3-2.1-.4-2.8-4.4-1.1-6.4 1.9-2.3 4.4.6 3.5 4.1m13.2 2.6c.3 2.9-2 6.5-3.6 5.5s-1.5-7.3.1-7.9c2.1-.9 3.2-.1 3.5 2.4m12.6-1.2c.9 1.4-.4 4.1-1.9 4.1-1.8 0-2.8-1.7-2.1-3.5.6-1.7 3.2-2 4-.6" fill="currentColor"/><path d="M113 101.2c0 3.2.4 5.8 1 5.8 1.3 0 1.3-8 0-10-.7-1.1-1 .2-1 4.2" fill="currentColor"/></svg>'},{alias:"road_three_way",name:"fa_road_three_way",tags:["color_road_three_way"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" height="1em"><path d="M481 1.1C305.5 11.7 146.4 113.5 61.6 269.6 29.3 329.1 10 392.3 2.4 463.5c-2.4 22.3-2.4 74.7 0 97 9.8 92 40.2 173.6 91.6 246 107.1 150.7 284.4 232.4 466.5 215 148.1-14.2 282.3-92.3 369.4-214.9 112.1-157.8 124.8-367.2 32.5-537C866.8 93.7 679.2-11 481 1.1m37.2 103.8c1.3.5 34 29.1 72.8 63.5 50.5 44.9 71.1 63.8 72.8 66.8 2.8 5.2 2.8 9.6-.1 13.9-4.6 7-3.9 6.9-54.9 6.9H563v127.5c0 70.1.3 127.5.8 127.5.4 0 3-1.6 5.7-3.6 37.5-26.9 96.1-46.3 139.8-46.4h7.7v-46.3c0-44.3.1-46.3 2-49.5 2.4-3.9 7.5-7.2 11.3-7.2 5.2 0 9.3 2.7 17.9 12.1 22.2 24.3 117.3 131.7 118.9 134.4 2.3 3.6 2.5 10.5.5 14.3-1.9 3.5-125.2 141.9-128.7 144.5-6.4 4.7-15.6 2.6-19.9-4.5-1.9-3.2-2-5.2-2-49.6v-46.4l-8.7.7c-20.5 1.5-36.9 5.3-53.9 12.4-38.8 16.3-69.3 49.4-82.8 90.1-8.3 25.2-8.6 29.7-8.6 143.3 0 104.7.3 99.2-6 105.5-6.8 6.9-5.7 6.7-45 6.7h-35.5l-4.6-2.7c-2.5-1.5-5.9-4.6-7.5-6.9l-2.9-4.2-.6-104.1c-.6-113.3-.4-110.4-6.4-131.1-14.7-50.7-52.3-88.3-103-103-10-2.9-22.7-5-35.7-6l-8.8-.7v46.4c0 44.4-.1 46.4-2 49.6-4.3 7.1-13.5 9.2-19.9 4.5-3.5-2.6-126.8-141-128.7-144.5-.8-1.5-1.4-4.5-1.4-6.8s.6-5.3 1.4-6.8c1.9-3.5 125.2-141.9 128.7-144.5 6.4-4.7 15.6-2.6 19.9 4.5 1.9 3.2 2 5.2 2 49.5V461h7.8c4.2 0 13.5.7 20.5 1.5 40.9 4.8 83.2 20.4 115.8 42.6 4.7 3.3 8.9 5.9 9.2 5.9.4 0 .7-57.4.7-127.5V256h-45.7c-51.1 0-50.4.1-55-6.9-2.9-4.3-2.9-8.7 0-13.9 1.5-2.9 22.8-22.4 72.7-66.7 38.8-34.5 71.4-63.1 72.5-63.5 2.7-1.2 9.8-1.2 12.7-.1" fill="currentColor"/></svg>'},{alias:"lower_left_shadow_square",name:"fa_lower_left_shadow_square",tags:["color_lower_left_shadow_square"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 116 104" height="1em"><path d="M37 20.5V26H26l.2 29.2.3 29.3 29.3.3L85 85V74h11V15H37zm56 24V71H40V18h53z" fill="currentColor"/></svg>'},{alias:"pinterest_p",name:"fa_pinterest_p",tags:["color_pinterest_p"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" fill="currentColor"/></svg>'},{alias:"man_in_circle",name:"fa_man_in_circle",tags:["color_man_in_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240" height="1em"><path d="M106.5.6c-9.2 1.4-19.8 3.9-26 6.1C40.6 21.1 11.4 54.5 2.4 96c-2.6 11.8-2.6 36.2 0 48 10.4 48.1 47.5 84.5 96.1 94.1 10.3 2.1 34.9 1.8 45.5-.5 42.4-9.1 76.8-39.9 89.9-80.4 4.4-13.6 5.6-21.5 5.6-37.2 0-15.8-1.2-23.5-5.6-37.3C221 42.9 187.3 12.3 146 2.9 137.7 1 113.3-.4 106.5.6m39 23.4c16.9 4.6 32.1 13.4 44.6 25.9 12.6 12.6 21.3 27.7 26.1 45.1 2 7.3 2.3 10.8 2.3 25s-.3 17.7-2.3 25c-4.8 17.4-13.5 32.5-26.1 45.1-8.9 8.9-17.2 14.7-28.7 20.1-14.5 6.7-21.5 8.2-40.9 8.2-14.8.1-18.1-.2-25.5-2.2-17.3-4.7-32.2-13.4-45.1-26.1-12.5-12.5-21.3-27.7-26.1-45.1-2-7.3-2.3-10.8-2.3-25s.3-17.7 2.3-25C33.7 58.7 62 31.4 98.4 22.9c11.4-2.6 35.6-2.1 47.1 1.1" fill="currentColor"/><path d="M114.7 43.5c-8.1 2.8-12.1 8.9-11.5 17.5.5 6.9 3.5 11.5 9.2 14.1 11.9 5.4 24.5-2.5 24.6-15.4 0-8-5-14.5-12.8-16.7-4.6-1.2-4.8-1.2-9.5.5M96.4 83c-5.2 2.1-5.4 3.5-5.4 31.2V140h11v58h36v-58h11.1l-.3-26.5c-.3-26-.3-26.5-2.6-28.7-2.2-2.2-2.8-2.3-25-2.5-12.5-.1-23.7.2-24.8.7" fill="currentColor"/></svg>'},{alias:"nice_face",name:"fa_nice_face",tags:["color_nice_face"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 582 234" height="1em"><path d="M157 21.9c-10.5 2.1-20.2 5.1-25.2 7.9-1.8 1.1-5.9 3.4-9 5.1-6.5 3.7-21.8 19.3-21.8 22.2 0 1.6.8 1.9 4.6 1.9 4.1 0 5.2-.5 11.2-5.8 13.7-12 14.2-12 14.2-.1 0 10.6 1.4 14.3 7.5 20.4 10.7 10.7 26.9 11.4 37.7 1.6 11.4-10.2 13.3-26.6 4.3-37.3-3.8-4.5-2.5-5.2 8.3-4.4 27.7 2.1 43.8 8.3 58.2 22.7 2.3 2.4 3.7 2.9 7.4 2.9 3.9 0 4.6-.3 4.6-2 0-2-6.7-10.2-12.8-15.8-8.9-7.9-23.6-15-38.1-18.3-12.8-3-38.4-3.5-51.1-1m10.4 18.2c5.1 3 7.6 7.6 7.6 14 0 6.6-2.3 10.8-7.9 14.4-4.4 2.7-11.5 3.4-15.4 1.4-12.3-6.3-14.3-20.3-4.1-28.7 3.4-2.8 4.6-3.2 10.1-3.2 4.5 0 7.2.6 9.7 2.1m296.1-18.5c-16.3 3-26.7 7-38.7 14.7-7.8 5.1-20.6 19.6-19.2 21.9.3.5 2.6.8 5.1.8 3.6 0 5-.5 7.1-2.8 4.7-4.9 14.2-12.2 16-12.2 1.5 0 1.7 1.2 1.7 9.7 0 9.1.2 10.1 2.9 14.3 7.6 11.8 21.1 16.8 34 12.4 7-2.4 15-10.5 17-17.4 2.8-9.4 1.7-17.4-3.5-24.4-1.9-2.6-2.6-4.3-1.9-5 2.1-2.1 37.6 2.9 40.7 5.8s9.8 16.9 13.8 28.9c7.6 23 8.9 30.9 8.9 56.2.1 25.6-1.2 33.9-9 56.6-4.3 12.7-14.8 35.4-18.1 39.1-2.2 2.5-.7 3.8 4.5 3.8 4.4 0 9.2-2 9.2-3.9 0-.5 2-3.7 4.3-7.3 9.6-14.3 20.4-38.4 24.3-54.3 2.3-9.5 4.3-24.3 4.4-32.6 0-18.9-5.9-45.6-13.6-61-1.3-2.6-2.4-5.2-2.4-5.8 0-.7 2.2-.8 6.5-.4 8.4.8 8.5-.4.6-9.4C551 41 549 39.3 542 35c-3-1.8-6.5-4.2-7.7-5.3s-3.9-2.3-6-2.8c-2.1-.4-7.1-1.7-11.2-2.8-14.9-4.2-39-5.3-53.6-2.5m8.6 18.7c10.5 7.1 10.6 20.7.3 27.9-4.5 3.1-12.6 3.8-17.2 1.4-6.7-3.5-10.7-11.1-9.6-18.1.7-4.9 2.8-8 7.3-11.1 4.9-3.3 14.3-3.4 19.2-.1M37.8 28.2c-3.1 2.4-14.6 20.7-20.1 32C4.9 86.3-.1 113 2.9 139.8c1.1 9.9 4.2 25.4 6.1 29.7.4 1.1 2.3 5.6 4 10 6.8 17 21.6 42.4 25.6 43.9 3 1.1 9.4.6 10-.8.3-.7-.8-3.6-2.5-6.2-3.8-6.2-12.6-25.7-15.7-34.9-6.7-19.6-9.7-36.5-9.7-56C20.6 97.2 25.9 74.8 39 48c2.6-5.2 5.8-11.4 7.3-13.7 3.9-6.2 3.6-7.3-2.1-7.3-2.7 0-5.5.6-6.4 1.2m258.9 1.4c-.4.4-.7 13.5-.7 29.1V87h8.5c15.7 0 24.6 5.8 29.6 19.2 2 5.4 2.3 8.1 2.3 18.8 0 14.6-1.9 21.1-8 28.6-8.1 9.8-24.1 13.2-35.4 7.4-4.4-2.3-10.5-9.3-11.5-13.2-1.1-4.2-3-5.4-6.9-4-1.8.7-4.3 1.2-5.5 1.2-3.1 0-6.1 1.8-6.1 3.6 0 3.2 7 16.6 11 20.8 20.8 22.1 64 13.7 75.4-14.8 5.9-15 6.9-33.8 2.6-50.3-5.3-20.3-16.8-32-35.2-35.8L314 68l-.2-19.3-.3-19.2-8-.3c-4.5-.1-8.4 0-8.8.4" fill="currentColor"/><path d="M242.6 185.8c-.7 1.2 9.6 13.1 16 18.4 19.1 15.7 50.8 22.9 81.1 18.4 18.7-2.8 31.8-7.8 43.9-17 7.1-5.3 18.8-18.2 17.8-19.7-.3-.5-2.9-.9-5.9-.9-4.8 0-5.6.3-7.7 3-7.3 9.3-25 17.9-42.8 20.7-12.2 1.9-43.3 1.2-53-1.1-14.1-3.5-26.1-9.8-33.7-17.6-4.5-4.7-5.1-5-10-5-2.8 0-5.4.3-5.7.8" fill="currentColor"/></svg>'},{alias:"explosive_materials_triangle",name:"fa_explosive_materials_triangle",tags:["color_explosive_materials_triangle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 517 504" height="1em"><path d="M55.5 27.5q202-.25 404 .5 30.177 6.684 34.5 37.5 1.63 11.445-3 22a51737 51737 0 0 1-208 380q-21.953 14.037-47 6-5.722-1.858-10-6a106079 106079 0 0 1-202-383q-9.21-42.6 31.5-57" fill="currentColor"/><path fill="white" d="M68.5 44.5q59.859-.495 119.5 1a5983 5983 0 0 1 5.5 155.5l2 3a42.4 42.4 0 0 1 8.5 1.5q1.238 6.28-2.5 11.5l2 3q5.816 1.093 11.5-.5 3.748.474 4.5 4a138 138 0 0 1-7 24.5 455 455 0 0 0-15-2 28.4 28.4 0 0 1-4.5-7.5 18.4 18.4 0 0 0-7-4q-29.847 20.701-21 56 17.603 38.673 58.5 26.5a121 121 0 0 0 13-7q1.873-3.314-.5-6.5a30 30 0 0 0-7-6q.944-11.643-9.5-16-3.545 1.771-7 0a59 59 0 0 0-6.5-8q-3.756-7.719 2.5-13.5 4.644-1.39 7 3l3 .5q8.526-4.13 17 .5a9.8 9.8 0 0 1 1 4 108 108 0 0 0-3 10q.328 9.826 10 11 4.35 6.351 10.5 10.5 2.916-1.409 5-4 5.205-12.702 17.5-18.5 2.153-3.4-1-6a30.1 30.1 0 0 0-12-3q-3.415-2.938-7.5-4.5a75 75 0 0 0-7.5 3.5q-12.11 3.735-6.5-8.5a42.4 42.4 0 0 1 8.5-1.5q3.038-1.791 1-4.5a156 156 0 0 1-19-3.5q-6.74-6.097-5.5-15.5a16.7 16.7 0 0 0-4-4l-.5-5a9319 9319 0 0 1 43.5-176 6.98 6.98 0 0 1 2.5-3.5q37.5-1 75 0 1.526 1.574.5 3.5-38.02 63.05-76 126-1.574 1.526-3.5.5a23.1 23.1 0 0 0-6-7q-5.442-.322-6 5.5 2.046 7.536 10 6-3.125 11.507-10 21.5l1 1.5A42653 42653 0 0 0 372.5 46a418 418 0 0 1 57-1q1.526 1.574.5 3.5a18280 18280 0 0 0-113.5 114l1 1L454.5 50q2.798-1.952 6-1 16.925 10.31 12 29l-172 128q-1.926 1.026-3.5-.5a51.7 51.7 0 0 0-1.5-9.5q-7.827-2.344-16-1a87 87 0 0 0-6 9 226 226 0 0 0 11.5 8.5q1.561 4.704-2.5 7.5-5.265 3.273-10.5 6.5a3.94 3.94 0 0 1-2-1l-1-7q-4.966-2.989-10.5-3.5-10.555 8.639 3 12.5a6.2 6.2 0 0 1 2 3.5 21.4 21.4 0 0 1-5 6q2.042 2.376 2 5.5a8.4 8.4 0 0 0 4-.5 39.2 39.2 0 0 1 8-9 27100 27100 0 0 1 174-105.5q1.671 1.834.5 4a6123 6123 0 0 0-36.5 65.5 5240 5240 0 0 0-87 40 1376 1376 0 0 0 70-20 18.5 18.5 0 0 1 6-.5 721 721 0 0 1-29 55 9497 9497 0 0 1-47.5 2q-9.332-2.041-16.5-8.5-3-1-6 0a63 63 0 0 1-7 8 4.93 4.93 0 0 1-3 .5 8.4 8.4 0 0 0 .5 4 34.8 34.8 0 0 1 6 6 42.8 42.8 0 0 0 1.5 9 11.3 11.3 0 0 0 3.5 1 53.6 53.6 0 0 1 11.5-3.5l8-11a717 717 0 0 1 42 1q1.58 2.082.5 4.5a357 357 0 0 1-15.5 26.5 525 525 0 0 1-35.5-6.5l-2.5 1a300 300 0 0 0 29 10.5q3.082 1.03 5 3.5a12178 12178 0 0 1-70.5 130q-13.39 11.28-30.5 6.5a34.7 34.7 0 0 1-7.5-6.5 90924 90924 0 0 1-188-361q-6.225-14.364-1-29 7.305-12.573 21.5-15"/><path fill="white" d="M207.5 44.5q19.007-.25 38 .5 1.611 1.108 2 3a6455 6455 0 0 0-14 91q-.313 2.807-3 3.5-4.883-4.992-11-2.5-4.221 3.619.5 6.5 5.202-.674 10.5 1.5a6.3 6.3 0 0 1 1 3 1649 1649 0 0 1-7.5 51.5 7.25 7.25 0 0 1-2.5 2l-13-7.5q-5.485.162-11 0a17.1 17.1 0 0 1-1-5.5 9769 9769 0 0 0 8.5-129 82.3 82.3 0 0 1 2.5-18"/><path d="M222.5 88.5q2.628-.124 3 2.5-3.183 5.781-1 12-.25 2.25-2.5 2.5a95 95 0 0 0-8.5-8q3.067-6.067 9-9m143 93q16.966 3.867 1 10-6.078-.31-4.5-6a19.6 19.6 0 0 0 3.5-4m-121 7q5.74-.09 2 3.5-6.08.702-2-3.5m64 37q7.242-.172 4 6.5-10.318 1-4-6.5m-14 7q2.466-.32 4.5 1a170 170 0 0 1 4.5 11.5 11.2 11.2 0 0 0-1 4.5q-7.983-.612-12.5-7-.498-6.262 4.5-10m47 7q6.09-.022 12 1.5 3.874 4.338-.5 8.5-2.082 1.58-4.5.5l-6-4q-3.276-2.846-1-6.5m-47 68q6.645.636 9 7-.324 7.679-4.5 14-13.042 2.41-17.5-10 4.35-8.375 13-11" fill="currentColor"/></svg>'},{alias:"household_hazardous_waste",name:"fa_household_hazardous_waste",tags:["color_household_hazardous_waste"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 180" height="1em" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd"><path fill="none" d="M-.5-.5h49l-49 50z"/><path fill="currentColor" d="M48.5-.5h81a1300 1300 0 0 0 50 47v86a1624 1624 0 0 0-49 47h-82a865 865 0 0 0-49-50v-80z"/><path fill="none" d="M129.5-.5h50v47a1300 1300 0 0 1-50-47"/><path fill="white" d="M59.5 19.5q31.004-.25 62 .5L161 59.5q1 30 0 60a1072 1072 0 0 0-39.5 38.5q-30 1-60 0L20 118.5a841 841 0 0 1 0-58 760 760 0 0 0 39.5-41"/><path fill="none" d="m90.5 49.5-2-2q-.013-2.712 1.5-5 .745 3.465.5 7"/><path fill="currentColor" d="M69.5 47.5q2.178 5.962 7.5 10 2.244 2.925.5 6-6.76-3.618-10-10.5a53 53 0 0 1 2-5.5"/><path fill="currentColor" d="M130.5 63.5q1.438.68 2.5 2a12.5 12.5 0 0 1 0 7 38.2 38.2 0 0 0-6 10q-5.625-8.202 3-14 .74-2.45.5-5"/><path fill="currentColor" d="m88.5 47.5 2 2q.034 3.64 1.5 7a140 140 0 0 1 10 20 16.24 16.24 0 0 1 0 8q-3.41 5.481-3.5 12 6.093-.336 8.5-6a42.5 42.5 0 0 0 0-13 48 48 0 0 1-4.5-11.5q2.633-8.485 9.5-14.5l1-4q2.897 4.67 2 10a62.7 62.7 0 0 1-8 7q-1.952 2.797-1 6 7 9 16 16 7.478 8.34 2 18a149 149 0 0 1-11.5 9q9.432 2.917 15.5-5 .968-12.122 2-24a43 43 0 0 0 7 16q2.104 16.19-10.5 26.5a54 54 0 0 1-15 8 42.5 42.5 0 0 1-13 0q-3.701-2.382-.5-5.5a331 331 0 0 0 9.5-2.5q1.255-1.517 1-3.5a353 353 0 0 1-16 0 191 191 0 0 0 15-10q6.032-7.75 2.5-17-3.263 12.015-15.5 14a4.93 4.93 0 0 1-2.5-1 104 104 0 0 0 1-20 114 114 0 0 0-4.5-14 3.65 3.65 0 0 0-1.5 1q-2.584 12.52.5 25 .532 14.727-12.5 8a36.2 36.2 0 0 0-4-7q-3.414 11.324 6.5 18.5 11.039 4.794-3 3.5h-6q-.356 1.936 1 3 6.383 3.644 14 3.5 2.27 3.681-2 5-27.02 2.371-37.5-22.5a49.3 49.3 0 0 1 0-14 222 222 0 0 0 5-16q3.57 2.89 3.5 7.5a54.6 54.6 0 0 1-5 13q4.641 15.635 21 15A64.8 64.8 0 0 1 55 105.5Q53.525 92.671 63.5 84q-3.132-6.636-9.5-10.5-1.236-5.073.5-10 2.95 5.7 8.5 9 2.8 3.462 3 8 6.288-7.544 4-17 7.874 8.64 2 19a30.5 30.5 0 0 0 0 11q1.94 8.52 9 4l.5-3a61.6 61.6 0 0 0-3.5-10 42.5 42.5 0 0 1 0-13 154 154 0 0 0 10.5-24"/><path fill="none" d="M74.5 124.5q-3.047.708-5 3-1.356-1.064-1-3zm-75 5a865 865 0 0 1 49 50h-49zm180 3v47h-49a1624 1624 0 0 1 49-47"/></svg>'},{alias:"poison_sign",name:"fa_poison_sign",tags:["color_poison_sign"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 294" height="1em"><path fill="none" d="M-.5-.5h86a5100 5100 0 0 1-86 84z"/><path fill="currentColor" d="M85.5-.5h128a5090 5090 0 0 0 86 84v126a5111 5111 0 0 0-86 84h-128a5112 5112 0 0 0-86-84v-126a5100 5100 0 0 0 86-84"/><path fill="none" d="M213.5-.5h86v84a5090 5090 0 0 1-86-84"/><path fill="#fff" d="M263.5 98.5q1.478 47.435 1 95a6072 6072 0 0 1-66 64.5 2400 2400 0 0 1-98 0Q67.33 225.832 34 193.5a2209 2209 0 0 1 0-94Q67.29 67.209 100.5 35a2401 2401 0 0 1 98 0 5847 5847 0 0 1 65 63.5"/><path fill="currentColor" d="M162.5 74.5q8.004-.374 15 3.5a68 68 0 0 0 12 7 54.5 54.5 0 0 1 6 6.5 21.1 21.1 0 0 0 1 9q.91-.186 1-1 2.676 1.61 3.5 5 3.142 17.59-1 35a16.6 16.6 0 0 1-2.5 4h-3q.18-12.975 3.5-25-1.077-1.426-2.5-.5-3.506 8.496-11 3.5-1.82.37-2 2-1.987-2.179-2.5 1-.893-5.373-4-1-.539-4.567-2-1-4.5-4-9 0a7.25 7.25 0 0 0-2.5-2q-.94 2.847-1 7-1.88 22.882 21 17 4.107.803 5.5-3l2.5 2.5q-1.846 1.774 0 3.5 2.616-.795 4.5 0 1.107 4.068-2 7a4.46 4.46 0 0 0-1.5-2q-.859 2.367-1 4.5l-5 1q1.374.417 2 1.5a163 163 0 0 1-18-.5 65 65 0 0 0-7-6.5q-1.648 4.289 1.5 8l11 8q.3 6.38 1.5 12.5 2.8 1.067 4.5-1.5 1.434-5.763 2.5-11.5 2.244-.76 3.5 1.5 1.457 11.139-4 21a92.7 92.7 0 0 1-22.5 15.5q-12 1-24 0-12.968-6.618-21.5-18.5a46.3 46.3 0 0 1-1-17q1.43-3.138 4-1l1 10q2.356 3.634 6.5 4a61.6 61.6 0 0 1-.5-16 172 172 0 0 1 13-8q2.018-3.495.5-7-2.349 4.087-7 5.5a93.7 93.7 0 0 1-26-1q-3.498-5.322-1-11.5a19.2 19.2 0 0 1-3-5 2155 2155 0 0 0-3-14q-.25-10.013.5-20a20.6 20.6 0 0 1 2-6q1.67-1.816 3.5 0l1-1.5q-1.526-4.18-.5-8.5 10.183-9.966 23.5-15a334 334 0 0 1 34-1"/><path fill="#fff" d="m108.5 142.5-2-6q-.87-5.463-1.5-11-3.669-4.017-1.5-9 2.088 3.588 6 5a28.7 28.7 0 0 1 7-2 4.93 4.93 0 0 1-.5 3q-3.5 1.5-5 5-.018 7.821-2.5 15m89 1-2 2a25 25 0 0 1-4.5-4 74 74 0 0 0 0-12 72.5 72.5 0 0 0-8.5-6q.18-1.63 2-2 7.494 4.996 11-3.5 1.423-.926 2.5.5-3.32 12.025-3.5 25z"/><path fill="currentColor" d="M182.5 123.5a72.5 72.5 0 0 1 8.5 6 74 74 0 0 1 0 12 25 25 0 0 0 4.5 4q5.45 12.086-8 14-.626-1.083-2-1.5l5-1q.141-2.133 1-4.5a4.46 4.46 0 0 1 1.5 2q3.107-2.932 2-7-1.884-.795-4.5 0-1.846-1.726 0-3.5l-2.5-2.5q-1.393 3.803-5.5 3 5.368-6.096 4-14-10.49-6.913-23-5.5-.85 1.492-2 2.5.06-4.153 1-7a7.25 7.25 0 0 1 2.5 2q4.5-4 9 0 1.461-3.567 2 1 3.107-4.373 4 1 .513-3.179 2.5-1"/><path fill="#fff" d="M182.5 144.5q-22.88 5.882-21-17 1.15-1.008 2-2.5 12.51-1.412 23 5.5 1.368 7.904-4 14m-51-20q14.25-.495 9.5 13-2.38 4.884-7.5 6.5-7.5 1-15 0a49 49 0 0 1-5-11.5 10.3 10.3 0 0 1 1.5-4q8.079-3.313 16.5-4"/><path fill="currentColor" d="M73.5 125.5q13.47-1.966 16.5 11 4.18 5.082 10 8 1.016 5.498-2.5 10-2.362 1.697-5 .5a22.6 22.6 0 0 0-8-4l-16-1q-10.222-7.63.5-14.5a61 61 0 0 1 4.5-10m145 2q12.717-2.56 12.5 10 7.664 8.69-2.5 14.5l-17 1q-13.407 10.818-11.5-6.5a100 100 0 0 0 18.5-19"/><path fill="#bababa" d="M98.5 126.5q1.487 6.825 3 14-3.684-6.356-3-14"/><path fill="#fff" d="M153.5 146.5q5.59 5.826 3.5 14-20.014 6.357-11.5-12a346 346 0 0 0 8-2m-17 26q18.777-1.07 37 3 .483 3.334-2 5.5-19.743 12.276-40 1-1.426-1.077-.5-2.5 19.164 9.59 38.5.5 1.255-1.517 1-3.5-2.34.028-4.5 1l-5-2q-6.155.906-12.5 0-9.097.41-18 2-1.817-1.16 0-2.5a219 219 0 0 0 6-2.5"/><path fill="#fff" d="M136.5 178.5q2.405-.282 4 1.5-2.944 1.266-4-1.5m9 0h3q-1.119 5.715-3 0"/><path fill="#d8d8d8" d="M156.5 178.5q2.217-.393 4 1l-2 1q-1.82-.37-2-2"/><path fill="#fff" d="M151.5 179.5q2.755.209 1 2-1.197-.686-1-2m-13 12q.353-.895 1.5-1a67 67 0 0 0 5.5 1.5q9.141.44 18 .5-4.833 4.275-11.5 4-7.881.292-13.5-5"/><path fill="currentColor" d="M108.5 191.5q11.098.858 9.5 12-14.1 7.099-22.5 20.5-5.875 2.536-12 .5-2.74-7.475-8.5-13-1.937-7.593 5.5-10.5 16.633 2.407 28-9.5m109 33q-3.993 2.652-9 2-3.604.16-5.5-3a44.7 44.7 0 0 0-5.5-9.5 154 154 0 0 1-17.5-10.5q-1-2 0-4l5.5-5.5q2.5-1 5 0a216 216 0 0 0 17 10q8.385-.142 16 3 1.653 3.601.5 7.5-5.532 3.733-6.5 10"/><path fill="none" d="M-.5 209.5a5112 5112 0 0 1 86 84h-86zm300 0v84h-86a5111 5111 0 0 1 86-84"/></svg>'},{alias:"risk_of_fire_circle",name:"fa_risk_of_fire_circle",tags:["color_risk_of_fire_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" height="1em" ><path fill="none" d="M-.5-.5h300v300H-.5z"/><path fill="currentColor" d="M287.5 104.5q4.65 11.944 6.5 25a361 361 0 0 1 0 38q-.43 8.481-3.5 16a270 270 0 0 0 3-25.5q-.75-16.265-2-32.5a32.5 32.5 0 0 1-2.5 6 49.6 49.6 0 0 1-1-14q.21 3.815 2 7l.5-4.5a84 84 0 0 1-3-15.5"/><path fill="currentColor" d="M287.5 104.5a84 84 0 0 0 3 15.5l-.5 4.5q-1.79-3.185-2-7a49.6 49.6 0 0 0 1 14 32.5 32.5 0 0 0 2.5-6q1.25 16.235 2 32.5a270 270 0 0 1-3 25.5q-17.707 70.976-85 100.5a132.5 132.5 0 0 1-38 9.5q-17.507.25-35-.5a1317 1317 0 0 1-28-5.5q-71.866-25.12-94.5-98Q-11.75 97.26 59.5 36q64.335-47.952 141-22 64.622 24.873 87 90.5"/><path fill="white" d="M162.5 24.5q58.746 6.98 92.5 55 34.907 57.158 11 120-32.138 67.36-106.5 76-21.895 1.335-43-4-67.314-20.564-88.5-88Q9.724 101.914 73.5 49q14.25-10.117 30-17a116 116 0 0 1 27-6.5 385 385 0 0 1 32-1"/><path fill="currentColor" d="M175.5 115.5q.975-.456 2-1a62.7 62.7 0 0 0 1.5-11 14.7 14.7 0 0 0 3.5 3q4.962 5.11 5 12.5a163 163 0 0 1-4.5 21.5 16.24 16.24 0 0 0 0 8q1.774 1.846 3.5 0a230 230 0 0 1 12.5-13q4.194-4.891 6-11 4.724 8.884 3 19-3.99 10.985-8 22-2.258 13.065 7 4a234 234 0 0 1 7-16q6.9 35.415-20.5 58.5-15.406 10.852-34 8.5 13.89-9.776 19-26 1.469-4.687 1-10h-3a182 182 0 0 1-5-10q1.283-1.19 2.5 1 1.026-1.926-.5-3.5-4.014.051-8 1.5l-2-1a136 136 0 0 1-3-17 83 83 0 0 0-6-13q-1.237-1.329-3-1 .25 10.512-.5 21-1.01 4.962-5.5 5.5-1.993-6-6.5-10.5-1.892.389-3 2a64.2 64.2 0 0 0 0 16q3.686 8.787 2.5 18a12.4 12.4 0 0 1-4.5-5 150 150 0 0 1-6-16q-.784-2.584-3-4-1.418.608-2 2a145 145 0 0 0-.5 17q-13.205-3.07-3.5 6a134.3 134.3 0 0 1 9 20q3.19 2.421 4.5 6-1.423.978-3.5 1a175 175 0 0 0-10.5-2q-13.805-5.551-20.5-19l-4-10a309 309 0 0 0-8.5-41q1.297-1.624 3-.5 6.255 3.125 10 9 3.301 1.237 5.5-1.5a174 174 0 0 0 2.5-22.5q.115-5-2-9.5 3.034-.811 6 1.5a57.7 57.7 0 0 1 8.5 9.5q10.609-23.808.5-48l1-2q12.25 7 19 19.5 3.301 1.238 5.5-1.5 1-4.5 0-9-8.2-20.944-1-42 1.665-2.305 4.5-2-.286 8.9 3.5 17a270 270 0 0 1 14 29 555 555 0 0 1 2.5 28q5.587-2.093 7-8"/><path fill="currentColor" d="M160.5 155.5a136 136 0 0 0 3 17l2 1q3.986-1.449 8-1.5 1.526 1.574.5 3.5-1.217-2.19-2.5-1a182 182 0 0 0 5 10v1q-4.682 3.828-10 6a38 38 0 0 1 2.5-8q.747-4.473.5-9-5.205 1.182-8 6-1.783 1.393-4 1 3.856-12.655 3-26"/><path fill="currentColor" d="M204.5 239.5h-109v-8h109z"/></svg>'},{alias:"oxidizing_substance_circle",name:"fa_oxidizing_substance_circle",tags:["color_oxidizing_substance_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 184 181" height="1em"><path fill="none" d="M-.5-.5h184v181H-.5z"/><path fill="currentColor" d="M78.5.5q60.445-4.405 91.5 47 24.14 50.83-8 97-38.48 45.159-96.5 31.5-61.437-22.094-64-87.5Q5.034 27.718 61.5 5a312 312 0 0 0 17-4.5"/><path fill="white" d="M78.5 14.5q55.634-4.818 81.5 44 19.56 53.32-22.5 91.5-40.22 27.212-84 6Q2.603 121.827 20 62.5q17.377-38.64 58.5-48"/><path fill="currentColor" d="M90.5 25.5q2.315 8.67 6.5 17 1.44 8.46 2.5 17 7.495-4.146 7.5-13l5 10q.27 6.636.5 13 4.454-1.706 6.5-6l2 4a169 169 0 0 0-2 16 20.6 20.6 0 0 0 7-5q7.782 18.99-2 37a71.7 71.7 0 0 0-9 17q-5.572 7.572-14.5 10.5 10.989.75 22 .5v9h-60v-9q9.513.25 19-.5-16.47-7.486-19.5-25.5-6.615-7.734-7-18-1-12 0-24a57 57 0 0 0 7.5 5q.005-10.358.5-21a41 41 0 0 1 5 7 18 18 0 0 0 3.5 2q.63-6.422.5-13 .53-4.557 3.5-8-1.238-1.427-.5-3a205 205 0 0 1 9 14 20.5 20.5 0 0 0 3-8 379 379 0 0 1 3.5-25"/><path fill="white" d="M88.5 66.5q3.504 2.256 5.5 6l3.5 14h-13q-.924-6.825 3.5-12 .746-3.97.5-8"/><path fill="white" d="M75.5 74.5a194 194 0 0 1 5 12.5q-2.67 3.335-7 3.5z"/><path fill="white" d="M105.5 78.5q1.79.705 2 3a54 54 0 0 0 2 9l-1 1a432 432 0 0 1-8-5q2.54-4.025 5-8"/><path fill="white" d="M63.5 88.5q3.211 3.701 8 5a55.5 55.5 0 0 0-5.5 7 27.4 27.4 0 0 1-2.5-12"/><path fill="white" d="M118.5 92.5q1.469 4.687 1 10a4.93 4.93 0 0 1-.5 3 44.8 44.8 0 0 0-5.5-9.5q2.02-2.504 5-3.5"/><path fill="white" d="M84.5 94.5q32.064-1.197 25.5 30-8.797 14.407-25.5 10.5-18.144-8.906-12.5-28.5 4.527-7.872 12.5-12"/><path fill="white" d="M118.5 92.5q.09-.814 1-1 1.962 5.722 0 11 .469-5.313-1-10"/></svg>'},{alias:"toxic_material_circle",name:"fa_toxic_material_circle",tags:["color_toxic_material_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 171 162" height="1em"><path fill="none" d="M-.5-.5h79Q11.528 12.73 6.5 81q2.41 54.826 53 76a146 146 0 0 0 16 4.5h-76z"/><path fill="none" d="M92.5-.5h78v162h-74q67.563-13.075 71-82-3.046-57.81-58-76.5a4905 4905 0 0 1-17-3.5"/><path fill="currentColor" d="M78.5-.5h14q8.298 1.725 17 3.5 54.954 18.69 58 76.5-3.437 68.925-71 82h-21a146 146 0 0 1-16-4.5q-50.59-21.174-53-76 5.028-68.27 72-81.5"/><path fill="white" d="M76.5 12.5q63.435-3.273 78.5 58 4.618 51.317-41.5 73.5-53.64 18.04-85.5-28.5Q1.564 58.996 51.5 22q11.958-6.728 25-9.5"/><path fill="currentColor" d="M78.5 37.5q9.14-.54 18 1.5A103.6 103.6 0 0 1 116 55.5q1.055 7.84-4 14l-1 12-2.5 2.5q9.387-1.35 14-10 4.354-4.476 9-.5.777 3.6 3.5 6 1.534 5.726-1.5 10.5l-12-2-17 9.5a138 138 0 0 0 14 7.5q4.968.807 9.5-1.5 15.512 4.005 2 12-.266 9.758-9.5 6.5a49.7 49.7 0 0 0-7-10l-15-6.5q-5.453 3.484-12 4-6.92-1.07-13-3.5l-14 7q-2.977 3.201-4 7.5-3.55 2.843-8 1.5a36.7 36.7 0 0 1-4-7.5q-9.942-5.404 0-10.5l12 1A88 88 0 0 0 69 98.5q1.032-1.248-.5-2-9.27-6.397-20-8.5-11.961 6.063-9.5-7.5 2.83-2.289 3-6 3.498-4.935 8.5-1.5 3.875 6.624 11 9.5l1-1a89 89 0 0 1-1.5-12q-4.737-5.71-4-13 8.738-12 21.5-19"/><path fill="white" d="M79.5 40.5q10.574-1.173 20 3.5A126 126 0 0 1 113 56.5q1 2.5 0 5a19.35 19.35 0 0 0-4.5-7q-1.5.5-2 2 2.499 2.238 3 5.5a251 251 0 0 0-1.5 18.5 124 124 0 0 1-12 9q.432 5.463-4.5 7.5-6.187 1.28-12-1a82 82 0 0 0-2.5-7.5l-11-7a11.5 11.5 0 0 1-1.5-5.5q2-7 0-14 .114-4.108 3-7l-1-1.5q-5.472 3.44-5.5 10-2.06-3.293-1-7 8.325-10.107 19.5-16"/><path fill="currentColor" d="M68.5 70.5a72.4 72.4 0 0 1 12 .5q2.09 4.64-2 8-11.67 3.58-10-8.5"/><path fill="currentColor" d="M92.5 70.5a72.4 72.4 0 0 1 12 .5q1.433 7.36-6 9.5-7.686-2.596-6-10"/><path fill="white" d="M45.5 74.5a4.93 4.93 0 0 1 3 .5q6.8 10.413 19 13.5 2 2 0 4a138 138 0 0 0-17.5-8 30.6 30.6 0 0 1-8.5 3v-4h3q-.354-4.663 1-9"/><path fill="white" d="M126.5 74.5q2.435-.21 3.5 2 .745 3.465.5 7h3q.255 1.983-1 3.5-6.268-1.84-13-1a297 297 0 0 0-14.5 7.5q-1.08-2.418.5-4.5 13.276-3.606 21-14.5"/><path fill="currentColor" d="M85.5 81.5q2.835-.306 4.5 2a31.4 31.4 0 0 0 3.5 7 3.65 3.65 0 0 1-1 1.5 87 87 0 0 0-10.5-.5q.813-5.208 3.5-10"/><path fill="white" d="M71.5 89.5a5.6 5.6 0 0 1 3 1q1.132 10.594 12 10 11.547-.075 14-11 3.012 12.8-10 16.5-18.712 2.025-19-16.5"/><path fill="white" d="M68.5 101.5q2.405-.282 4 1.5a68.7 68.7 0 0 1-14 7 80 80 0 0 1-8 10.5 7.25 7.25 0 0 1-2.5-2q.006-5.538-3-10a7.3 7.3 0 0 0-2 3q-3.04-4.712 3-5 5.017 2.462 10.5 1.5a102 102 0 0 0 12-6.5"/><path fill="white" d="M101.5 100.5q8.468 3.732 17 7.5 5.166.703 10-1.5 3.245.368 5 3-2.531 3.915-4-1a3.65 3.65 0 0 0-1.5 1 79 79 0 0 0-2 10q-2.907 2.04-5-1a17.3 17.3 0 0 0-3.5-7 161 161 0 0 0-15-8q-1.329-1.238-1-3"/></svg>'},{alias:"compressed_gas_circle",name:"fa_compressed_gas_circle",tags:["color_compressed_gas_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 223 224" height="1em"><path fill="none" d="M-.5-.5h223v224H-.5z"/><path fill="currentColor" d="M96.5 3.5Q183.359.196 215 80.5q16.989 68.52-34.5 116.5-57.797 43.212-123 12Q-3.792 171.674 1 99.5q16.03-79.777 95.5-96"/><path fill="white" d="M96.5 20.5q68.884-4.2 99.5 57 21.112 62.803-27.5 107.5-55.496 39.132-113 3Q10.755 151.79 19 94.5q16.623-60.377 77.5-74"/><path fill="currentColor" d="M178.5 75.5q10.465-1.042 8 9a354 354 0 0 1-24 10.5l-2.5 2.5a28.4 28.4 0 0 1-3 11A9811 9811 0 0 1 53.5 152q-3.707 1.06-7-1-12.157-9.969-9.5-25.5a11.5 11.5 0 0 1 3.5-4.5l100-41a12.5 12.5 0 0 1 7 0 57.4 57.4 0 0 0 9 4.5 161 161 0 0 0 22-9"/></svg>'},{alias:"corrosive_circle",name:"fa_corrosive_circle",tags:["color_corrosive_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 205 193" height="1em"><path fill="none" d="M-.5-.5h205v193H-.5z"/><path fill="currentColor" d="M84.5.5q72.725-6.03 104.5 59 19.013 51.892-14 96-46.398 50.538-111.5 28.5Q1.322 153.93 5 84.5 17.362 16.393 84.5.5"/><path fill="white" d="M91.5 14.5q59.738-2.022 84.5 52 16.461 50.505-20.5 88.5-45.105 36.928-97 10Q9.748 131.704 22 73.5q17.463-50.075 69.5-59"/><path fill="currentColor" d="M111.5 53.5a297 297 0 0 1 39.5 6q3.051.22 5-2a137 137 0 0 1-1.5 12.5q.289 3.756 2 7a9.8 9.8 0 0 1-2 5q2.782 5.118 1 10.5-2.259 1.87-4.5 0-1.042-5.245 1.5-10-2.879-5.13-2-10.5a2136 2136 0 0 1-37-6q-8.714-5.03-2-12.5"/><path fill="currentColor" d="M90.5 54.5q6.7-.55 13 1.5 3.839 4.387 0 9a544 544 0 0 1-39 7.5 29.5 29.5 0 0 0 1 6.5 15.1 15.1 0 0 1-3 6q2.208 5.724 1 11.5-4.874 2.047-5-3.5a2160 2160 0 0 0 3-22.5 85 85 0 0 1-1.5-13q2.21 2.26 5.5 2a229 229 0 0 0 25-5"/><path fill="white" d="M113.5 55.5a1243 1243 0 0 0 40 6q.483 4.548-4 5a1386 1386 0 0 1-37-3.5q-1.611-1.108-2-3a21 21 0 0 1 3-4.5"/><path fill="white" d="M89.5 57.5a72.4 72.4 0 0 1 12 .5q2.46 4.164-2 6a1444 1444 0 0 0-36 3.5v-5a263 263 0 0 0 26-5"/><path fill="currentColor" d="M170.5 72.5q1.184.424 2 1.5-2.28 3.895-2.5 8.5-4.141 1.5-4 6l-3 3a103 103 0 0 0 2-9 196 196 0 0 1 5.5-10"/><path fill="currentColor" d="M133.5 75.5q1.983-.255 3.5 1a96 96 0 0 0 6.5 15.5l-1 1.5a37 37 0 0 1-6.5-9q-.301-4.88-2.5-9"/><path fill="currentColor" d="M161.5 74.5h3q-.075 6.291-2.5 12a8.9 8.9 0 0 1-3 4 4.46 4.46 0 0 1-1.5-2 44.3 44.3 0 0 1 5-10 6.85 6.85 0 0 1-1-4"/><path fill="currentColor" d="M140.5 76.5q4.48-.117 2 3.5.763 1.752 2.5 2.5.068 4.251 2.5 7.5a4.45 4.45 0 0 1-2 1.5 48.3 48.3 0 0 0-4.5-9 18.5 18.5 0 0 1-.5-6"/><path fill="currentColor" d="M74.5 85.5q1.762-.329 3 1-2.415 4.08-2.5 9l-3 2q-.465 7.742-7.5 5 1.095-7.562 5-14 2.653 2.937 2 6a42.4 42.4 0 0 1 3-9"/><path fill="currentColor" d="M45.5 85.5q4.593 3.185 4.5 9a12.4 12.4 0 0 1 2.5-4q.882 3.615 3.5 6 .51 3.804 1.5 7.5l-1 1.5q-5.77-2.013-6.5-8l-3-2q-.144-4.427-2.5-8 .544-1.025 1-2m127 15q-3.203 2.804-8 2a27.6 27.6 0 0 1-6-3.5q-2.36-1.048-4 1l2 1q-3.762.172-6 3 2.28 4.159 7 5.5-9.027 2.475-10-7a82 82 0 0 0-18 1 43.1 43.1 0 0 0 13 1v3q-38 1 0 2v3a43.1 43.1 0 0 0-13 1q8.228 1 16 2l-11 2q.166.925 1 1.5 10.5 1 21 0a140 140 0 0 1 16-3.5v3a37.9 37.9 0 0 0-14 3.5q-11.5 1-23 0-4.072-1.312-4-5.5-5.174 1.115-5-4-6.852.625-4.5-6a18.84 18.84 0 0 0 6.5-5.5 25 25 0 0 1 7-.5q-1.014-5.985 5-5 4.802.777 9.5 2 3.569.025 6.5-2a47 47 0 0 1 8 4.5q3.97.746 8 .5"/><path fill="white" d="M138.5 99.5q4.017-2.115 8 .5-4.141 1.083-8-.5"/><path fill="currentColor" d="M172.5 100.5q1.356 1.064 1 3-4.82.465-9-1 4.797.804 8-2"/><path fill="currentColor" d="M69.5 105.5h25v11h-68v-12q13.509-.25 27 .5 7.75 6.65 16 .5"/></svg>'},{alias:"chronic_toxicity_circle",name:"fa_chronic_toxicity_circle",tags:["color_chronic_toxicity_circle"],symbol:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" height="1em"><circle cx="200" cy="200" r="160.821" stroke="currentColor" stroke-width="28.358" fill="none"/><path d="M129 112v30h49.5L200 246.2 221.5 142H271v-30z" fill="currentColor"/><circle cx="200" cy="304.776" r="17.5" fill="currentColor"/></svg>'}]},2287:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.findIcon=e.findFaIconsByTag=e.findFaIconsByName=e.findSquaredIconByTag=e.findSquaredIconByName=e.findSquaredIcon=void 0;var r=n(1635),i=n(7337),o=n(6319),a=n(1665),s=n(5050),l=n(9745),T=function(t,e){return void 0===e&&(e=!1),s.emojiIcons.find((function(n){return!(n.name!==t||e&&n.textOnly)}))};e.findSquaredIcon=function(t){return a.squaredIcons.find((function(e){return e.alias===t||e.name===t}))};e.findSquaredIconByName=function(t){return a.squaredIcons.find((function(e){return e.alias===t||e.name===t}))};e.findSquaredIconByTag=function(t){return a.squaredIcons.find((function(e){var n;return null===(n=e.tags)||void 0===n?void 0:n.includes(t)}))};e.findFaIconsByName=function(t){return i.faIcons.find((function(e){return e.alias===t||e.name===t}))};e.findFaIconsByTag=function(t){return i.faIcons.find((function(e){var n;return null===(n=e.tags)||void 0===n?void 0:n.includes(t)}))};e.findIcon=function(t,n){var i;if(void 0===n&&(n=!1),t.includes("emoji")){var a=null===(i=t.replace(/emoji/g,""))||void 0===i?void 0:i.trim();return{icon:a?T(a,n):null,name:a,color:"",isSquared:!1}}var s=function(t){var e=t.match(/\bcolor\s*=\s*(#[0-9a-fA-F]{3,8}|\w+\([^)]*\)|[a-zA-Z]+)/);if(e)return{parsedName:t.slice(0,e.index).trim(),parsedColor:e[1]||""};var n=t.split(/\s+/);return{parsedName:n[0],parsedColor:n.length>1?n.slice(1).join(" ").trim():""}}(t),Q=s.parsedName||t,c=s.parsedColor||"";if(!Q)return{icon:null,name:"",color:"",isSquared:!1};var u=function(t,n){void 0===n&&(n=!1);var r=o.unicodeIcons.find((function(e){return e.alias===t||e.name===t}));return r||(r=n?null:(0,e.findFaIconsByName)(t))||(r=T(t,n)),r}(Q,n);if(u)return{icon:u,name:Q,color:c,isSquared:!1};if(u=(0,e.findSquaredIconByName)(Q))return{icon:u,name:Q,color:c,isSquared:!0};if(Q.includes("_")){var d=r.__read(Q.split("_")),h=d[0],p=d.slice(1),m="color_".concat(p.join("_"));if(l.cssColors.includes(h)&&p.length>0){if(u=function(t,n){void 0===n&&(n=!1);var r=o.unicodeIcons.find((function(e){return e.tags.includes(t)}));return r||(r=n?null:(0,e.findFaIconsByTag)(t)),r}(m,n),u)return{icon:u,name:Q,color:h,isSquared:!1};if(u=(0,e.findSquaredIconByTag)(m))return{icon:u,name:Q,color:h,isSquared:!0}}}return{icon:null,name:Q,color:"",isSquared:!1}}},1665:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.squaredIcons=void 0,e.squaredIcons=[{symbol:"1",alias:"squared_one",name:"squared_digit_one",tags:["color_squared_one"]},{symbol:"2",alias:"squared_two",name:"squared_digit_two",tags:["color_squared_two"]},{symbol:"3",alias:"squared_three",name:"squared_digit_three",tags:["color_squared_three"]},{symbol:"4",alias:"squared_four",name:"squared_digit_four",tags:["color_squared_four"]},{symbol:"5",alias:"squared_five",name:"squared_digit_five",tags:["color_squared_five"]},{symbol:"6",alias:"squared_six",name:"squared_digit_six",tags:["color_squared_six"]},{symbol:"7",alias:"squared_seven",name:"squared_digit_seven",tags:["color_squared_seven"]},{symbol:"8",alias:"squared_eight",name:"squared_digit_eight",tags:["color_squared_eight"]},{symbol:"9",alias:"squared_nine",name:"squared_digit_nine",tags:["color_squared_nine"]},{symbol:"0",alias:"squared_zero",name:"squared_digit_zero",tags:["color_squared_zero"]}]},6319:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.unicodeIcons=void 0,e.unicodeIcons=[{symbol:"�",unicodeHex:"FFFD",code:65533,alias:"unknown",name:"unknown",tags:["color_unknown"],nameUnicode:"REPLACEMENT CHARACTER",width:"+0.5ex"},{symbol:"×",unicodeHex:"D7",code:215,alias:"times",name:"multiplication_sign",tags:["color_times"],nameUnicode:"MULTIPLICATION SIGN",width:"+0.5ex"},{symbol:"•",unicodeHex:"2022",code:8226,alias:"",name:"bullet",tags:["color_bullet"],nameUnicode:"BULLET",width:"+0.5ex"},{symbol:"※",unicodeHex:"203B",code:8251,alias:"",name:"reference_mark",tags:["color_reference_mark"],nameUnicode:"REFERENCE MARK",width:"+0.5ex"},{symbol:"←",unicodeHex:"2190",code:8592,alias:"left_arrow",name:"leftwards_arrow",tags:["color_left_arrow"],nameUnicode:"LEFTWARDS ARROW",width:"+0.5ex"},{symbol:"↑",unicodeHex:"2191",code:8593,alias:"up_arrow",name:"upwards_arrow",tags:["color_up_arrow"],nameUnicode:"UPWARDS ARROW",width:"+0.5ex"},{symbol:"→",unicodeHex:"2192",code:8594,alias:"right_arrow",name:"rightwards_arrow",tags:["color_right_arrow"],nameUnicode:"RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"↓",unicodeHex:"2193",code:8595,alias:"down_arrow",name:"downwards_arrow",tags:["color_down_arrow"],nameUnicode:"DOWNWARDS ARROW",width:"+0.5ex"},{symbol:"①",unicodeHex:"2460",code:9312,alias:"circled_one",name:"circled_digit_one",tags:["color_circled_one"],nameUnicode:"CIRCLED DIGIT ONE",width:"+0.6ex"},{symbol:"②",unicodeHex:"2461",code:9313,alias:"circled_two",name:"circled_digit_two",tags:["color_circled_two"],nameUnicode:"CIRCLED DIGIT TWO",width:"+0.6ex"},{symbol:"③",unicodeHex:"2462",code:9314,alias:"circled_three",name:"circled_digit_three",tags:["color_circled_three"],nameUnicode:"CIRCLED DIGIT THREE",width:"+0.6ex"},{symbol:"④",unicodeHex:"2463",code:9315,alias:"circled_four",name:"circled_digit_four",tags:["color_circled_four"],nameUnicode:"CIRCLED DIGIT FOUR",width:"+0.6ex"},{symbol:"⑤",unicodeHex:"2464",code:9316,alias:"circled_five",name:"circled_digit_five",tags:["color_circled_five"],nameUnicode:"CIRCLED DIGIT FIVE",width:"+0.6ex"},{symbol:"⑥",unicodeHex:"2465",code:9317,alias:"circled_six",name:"circled_digit_six",tags:["color_circled_six"],nameUnicode:"CIRCLED DIGIT SIX",width:"+0.6ex"},{symbol:"⑦",unicodeHex:"2466",code:9318,alias:"circled_seven",name:"circled_digit_seven",tags:["color_circled_seven"],nameUnicode:"CIRCLED DIGIT SEVEN",width:"+0.6ex"},{symbol:"⑧",unicodeHex:"2467",code:9319,alias:"circled_eight",name:"circled_digit_eight",tags:["color_circled_eight"],nameUnicode:"CIRCLED DIGIT EIGHT",width:"+0.6ex"},{symbol:"⑨",unicodeHex:"2468",code:9320,alias:"circled_nine",name:"circled_digit_nine",tags:["color_circled_nine"],nameUnicode:"CIRCLED DIGIT NINE",width:"+0.6ex"},{symbol:"⓪",unicodeHex:"24EA",code:9450,alias:"circled_zero",name:"circled_digit_zero",tags:["color_circled_zero"],nameUnicode:"CIRCLED DIGIT ZERO",width:"+0.6ex"},{symbol:"■",unicodeHex:"25A0",code:9632,alias:"",name:"black_square",tags:["color_square"],nameUnicode:"BLACK SQUARE",width:"+0.5ex"},{symbol:"▲",unicodeHex:"25B2",code:9650,alias:"black_triangle",name:"black_up_pointing_triangle",tags:["color_triangle"],nameUnicode:"BLACK UP-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▼",unicodeHex:"25BC",code:9660,alias:"black_triangle_down",name:"black_down_pointing_triangle",tags:["color_triangle_down"],nameUnicode:"BLACK DOWN-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▶",unicodeHex:"25B6",code:9654,alias:"black_triangle_right",name:"black_right_pointing_triangle",tags:["color_triangle_right"],nameUnicode:"BLACK RIGHT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"◀",unicodeHex:"25C0",code:9664,alias:"black_triangle_left",name:"black_left_pointing_triangle",tags:["color_triangle_left"],nameUnicode:"BLACK LEFT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"△",unicodeHex:"25B3",code:9651,alias:"triangle",name:"white_up_pointing_triangle",tags:[],nameUnicode:"WHITE UP-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▽",unicodeHex:"25BD",code:9661,alias:"triangle_down",name:"white_down_pointing_triangle",tags:[],nameUnicode:"WHITE DOWN-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"▷",unicodeHex:"25B7",code:9655,alias:"triangle_right",name:"white_right_pointing_triangle",tags:[],nameUnicode:"WHITE RIGHT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"◁",unicodeHex:"25C1",code:9665,alias:"triangle_left",name:"white_left_pointing_triangle",tags:[],nameUnicode:"WHITE LEFT-POINTING TRIANGLE",width:"+0.5ex"},{symbol:"○",unicodeHex:"25CB",code:9675,alias:"circle",name:"white_circle",nameUnicode:"WHITE CIRCLE",tags:[],width:"+0.5ex"},{symbol:"●",unicodeHex:"25CF",code:9679,alias:"",name:"black_circle",tags:["color_circle"],nameUnicode:"BLACK CIRCLE",width:"+0.5ex"},{symbol:"◎",unicodeHex:"25CE",code:9678,alias:"",name:"bullseye",tags:["color_bullseye"],nameUnicode:"BULLSEYE",width:"+0.5ex"},{symbol:"★",unicodeHex:"2605",code:9733,alias:"",name:"black_star",tags:["color_star"],nameUnicode:"BLACK STAR",width:"+0.5ex"},{symbol:"☆",unicodeHex:"2606",code:9734,alias:"star",name:"white_star",tags:[],nameUnicode:"WHITE STAR",width:"+0.5ex"},{symbol:"☹",unicodeHex:"2639",code:9785,alias:"sad_face",name:"white_frowning_face",tags:["color_sad_face"],nameUnicode:"WHITE FROWNING FACE",width:"+0.5ex"},{symbol:"☺",unicodeHex:"263A",code:9786,alias:"smiley",name:"white_smiling_face",tags:[],nameUnicode:"WHITE SMILING FACE",width:"+0.5ex"},{symbol:"☻",unicodeHex:"263B",code:9787,alias:"black_smiley",name:"black_smiling_face",tags:["color_smiley"],nameUnicode:"BLACK SMILING FACE",width:"+0.5ex"},{symbol:"♡",unicodeHex:"2661",code:9825,alias:"heart",name:"white_heart_suit",tags:[],nameUnicode:"WHITE HEART SUIT",width:"+0.5ex"},{symbol:"♥",unicodeHex:"2665",code:9829,alias:"black_heart",name:"black_heart_suit",tags:["color_heart"],nameUnicode:"BLACK HEART SUIT",width:"+0.5ex"},{symbol:"♨",unicodeHex:"2668",code:9832,alias:"",name:"hot_springs",tags:["color_hot_springs"],nameUnicode:"HOT SPRINGS",width:"+0.6ex"},{symbol:"⦾",unicodeHex:"29BE",code:10686,alias:"",name:"circled_white_bullet",tags:["color_circled_white_bullet"],nameUnicode:"CIRCLED WHITE BULLET",width:"+0.5ex"},{symbol:"⦿",unicodeHex:"29BF",code:10687,alias:"",name:"circled_bullet",tags:["color_circled_bullet"],nameUnicode:"CIRCLED BULLET",width:"+0.5ex"},{symbol:"〈",unicodeHex:"3008",code:12296,alias:"left_angle",name:"left_angle_bracket",tags:["color_left_angle"],nameUnicode:"LEFT ANGLE BRACKET",width:"+0.5ex"},{symbol:"〉",unicodeHex:"3009",code:12297,alias:"right_angle",name:"right_angle_bracket",tags:["color_right_angle"],nameUnicode:"RIGHT ANGLE BRACKET",width:"+0.5ex"},{symbol:"・",unicodeHex:"30FB",code:12539,alias:"middle_dot",name:"katakana_middle_dot",tags:["color_middle_dot"],nameUnicode:"KATAKANA MIDDLE DOT",width:"+0.5ex"},{symbol:"☀",unicodeHex:"2600",code:9728,alias:"black_sun",name:"black_sun_with_rays",tags:["color_sun"],nameUnicode:"BLACK SUN WITH RAYS",width:"+0.5ex"},{symbol:"☼",unicodeHex:"263C",code:9788,alias:"sun",name:"white_sun_with_rays",tags:[],nameUnicode:"WHITE SUN WITH RAYS",width:"+0.5ex"},{symbol:"☁",unicodeHex:"2601",code:9729,alias:"",name:"cloud",tags:["color_cloud"],nameUnicode:"CLOUD",width:"+0.5ex"},{symbol:"☂",unicodeHex:"2602",code:9730,alias:"",name:"umbrella",tags:["color_umbrella"],nameUnicode:"UMBRELLA",width:"+0.5ex"},{symbol:"☃",unicodeHex:"2603",code:9731,alias:"",name:"snowman",tags:[],nameUnicode:"SNOWMAN",width:"+0.5ex"},{symbol:"☉",unicodeHex:"2609",code:9737,alias:"astro_sun",name:"sun",tags:["color_astro_sun"],nameUnicode:"SUN",width:"+0.5ex"},{symbol:"☽",unicodeHex:"263D",code:9789,alias:"right_moon",name:"first_quarter_moon",tags:["color_right_moon"],nameUnicode:"FIRST QUARTER MOON",width:"+0.5ex"},{symbol:"☾",unicodeHex:"263E",code:9790,alias:"left_moon",name:"last_quarter_moon",tags:["color_left_moon"],nameUnicode:"LAST QUARTER MOON",width:"+0.5ex"},{symbol:"☎",unicodeHex:"260E",code:9742,alias:"",name:"black_telephone",tags:["color_telephone"],nameUnicode:"BLACK TELEPHONE",width:"+0.6ex"},{symbol:"☏",unicodeHex:"260F",code:9743,alias:"telephone",name:"white_telephone",tags:[],nameUnicode:"WHITE TELEPHONE",width:"+0.6ex"},{symbol:"☖",unicodeHex:"2616",code:9750,alias:"shogi",name:"white_shogi_piece",tags:[],nameUnicode:"WHITE SHOGI PIECE",width:"+0.5ex"},{symbol:"☗",unicodeHex:"2617",code:9751,alias:"black_shogi",name:"black_shogi_piece",tags:["color_shogi"],nameUnicode:"BLACK SHOGI PIECE",width:"+0.5ex"},{symbol:"☘",unicodeHex:"2618",code:9752,alias:"",name:"shamrock",tags:["color_shamrock"],nameUnicode:"SHAMROCK",width:"+0.5ex"},{symbol:"☚",unicodeHex:"261A",code:9754,alias:"black_point_left",name:"black_left_pointing_index",tags:["color_point_left"],nameUnicode:"BLACK LEFT POINTING INDEX",width:"+0.5ex"},{symbol:"☜",unicodeHex:"261C",code:9756,alias:"point_left",name:"white_left_pointing_index",tags:[],nameUnicode:"WHITE LEFT POINTING INDEX",width:"+0.5ex"},{symbol:"☛",unicodeHex:"261B",code:9755,alias:"black_point_right",name:"black_right_pointing_index",tags:["color_point_right"],nameUnicode:"BLACK RIGHT POINTING INDEX",width:"+0.5ex"},{symbol:"☞",unicodeHex:"261E",code:9758,alias:"point_right",name:"white_right_pointing_index",tags:[],nameUnicode:"WHITE RIGHT POINTING INDEX",width:"+0.5ex"},{symbol:"☝",unicodeHex:"261D",code:9757,alias:"point_up",name:"white_up_pointing_index",tags:["color_point_up"],nameUnicode:"WHITE UP POINTING INDEX",width:"+0.5ex"},{symbol:"☟",unicodeHex:"261F",code:9759,alias:"point_down",name:"white_down_pointing_index",tags:["color_point_down"],nameUnicode:"WHITE DOWN POINTING INDEX",width:"+0.5ex"},{symbol:"☠",unicodeHex:"2620",code:9760,alias:"skull",name:"skull_and_crossbones",tags:["color_skull"],nameUnicode:"SKULL AND CROSSBONES",width:"+0.5ex"},{symbol:"☡",unicodeHex:"2621",code:9761,alias:"caution",name:"caution_sign",tags:["color_caution"],nameUnicode:"CAUTION SIGN",width:"+0.5ex"},{symbol:"☢",unicodeHex:"2622",code:9762,alias:"radiation",name:"radioactive_sign",tags:["color_radiation"],nameUnicode:"RADIOACTIVE SIGN",width:"+0.5ex"},{symbol:"☣",unicodeHex:"2623",code:9763,alias:"biohazard",name:"biohazard_sign",tags:["color_biohazard"],nameUnicode:"BIOHAZARD SIGN",width:"+0.5ex"},{symbol:"☯",unicodeHex:"262F",code:9775,alias:"",name:"yin_yang",tags:["color_yin_yang"],nameUnicode:"YIN YANG",width:"+0.5ex"},{symbol:"♀",unicodeHex:"2640",code:9792,alias:"female",name:"female_sign",tags:["color_female"],nameUnicode:"FEMALE SIGN",width:"+0.5ex"},{symbol:"♂",unicodeHex:"2642",code:9794,alias:"male",name:"male_sign",tags:["color_male"],nameUnicode:"MALE SIGN",width:"+0.5ex"},{symbol:"⚢",unicodeHex:"26A2",code:9890,alias:"female_female",name:"doubled_female_sign",tags:["color_female_female"],nameUnicode:"DOUBLED FEMALE SIGN",width:"+0.5ex"},{symbol:"⚣",unicodeHex:"26A3",code:9891,alias:"male_male",name:"doubled_male_sign",tags:["color_male_male"],nameUnicode:"DOUBLED MALE SIGN",width:"+0.5ex"},{symbol:"⚤",unicodeHex:"26A4",code:9892,alias:"female_male",name:"interlocked_female_and_male_sign",tags:["color_female_male"],nameUnicode:"INTERLOCKED FEMALE AND MALE SIGN",width:"+0.5ex"},{symbol:"⚥",unicodeHex:"26A5",code:9893,alias:"hermaphrodite",name:"male_and_female_sign",tags:["color_hermaphrodite"],nameUnicode:"MALE AND FEMALE SIGN",width:"+0.5ex"},{symbol:"⚦",unicodeHex:"26A6",code:9894,alias:"male_stroke",name:"male_with_stroke_sign",tags:["color_male_stroke"],nameUnicode:"MALE WITH STROKE SIGN",width:"+0.5ex"},{symbol:"⚧",unicodeHex:"26A7",code:9895,alias:"transgender",name:"male_with_stroke_and_male_and_female_sign",tags:["color_transgender"],nameUnicode:"MALE WITH STROKE AND MALE AND FEMALE SIGN",width:"+0.5ex"},{symbol:"⚨",unicodeHex:"26A8",code:9896,alias:"male_stroke_v",name:"vertical_male_with_stroke_sign",tags:["color_male_stroke_v"],nameUnicode:"VERTICAL MALE WITH STROKE SIGN",width:"+0.5ex"},{symbol:"⚩",unicodeHex:"26A9",code:9897,alias:"male_stroke_h",name:"horizontal_male_with_stroke_sign",tags:["color_male_stroke_h"],nameUnicode:"HORIZONTAL MALE WITH STROKE SIGN",width:"+0.5ex"},{symbol:"☿",unicodeHex:"263F",code:9791,alias:"",name:"mercury",tags:["color_mercury"],nameUnicode:"MERCURY",width:"+0.5ex"},{symbol:"♀",unicodeHex:"2640",code:9792,alias:"venus",name:"venus",tags:["color_venus"],nameUnicode:"FEMALE SIGN",width:"+0.5ex"},{symbol:"♂",unicodeHex:"2642",code:9794,alias:"mars",name:"mars",tags:["color_mars"],nameUnicode:"MALE SIGN",width:"+0.5ex"},{symbol:"♁",unicodeHex:"2641",code:9793,alias:"",name:"earth",tags:["color_earth"],nameUnicode:"EARTH",width:"+0.5ex"},{symbol:"♃",unicodeHex:"2643",code:9795,alias:"",name:"jupiter",tags:["color_jupiter"],nameUnicode:"JUPITER",width:"+0.5ex"},{symbol:"♄",unicodeHex:"2644",code:9796,alias:"",name:"saturn",tags:["color_saturn"],nameUnicode:"SATURN",width:"+0.5ex"},{symbol:"♅",unicodeHex:"2645",code:9797,alias:"",name:"uranus",tags:["color_uranus"],nameUnicode:"URANUS",width:"+0.5ex"},{symbol:"♆",unicodeHex:"2646",code:9798,alias:"",name:"neptune",tags:["color_neptune"],nameUnicode:"NEPTUNE",width:"+0.5ex"},{symbol:"♇",unicodeHex:"2647",code:9799,alias:"",name:"pluto",tags:["color_pluto"],nameUnicode:"PLUTO",width:"+0.5ex"},{symbol:"♔",unicodeHex:"2654",code:9812,alias:"chess_king",name:"white_chess_king",tags:[],nameUnicode:"WHITE CHESS KING",width:"+0.5ex"},{symbol:"♕",unicodeHex:"2655",code:9813,alias:"chess_queen",name:"white_chess_queen",tags:[],nameUnicode:"WHITE CHESS QUEEN",width:"+0.5ex"},{symbol:"♖",unicodeHex:"2656",code:9814,alias:"chess_rook",name:"white_chess_rook",tags:[],nameUnicode:"WHITE CHESS ROOK",width:"+0.5ex"},{symbol:"♗",unicodeHex:"2657",code:9815,alias:"chess_bishop",name:"white_chess_bishop",tags:[],nameUnicode:"WHITE CHESS BISHOP",width:"+0.5ex"},{symbol:"♘",unicodeHex:"2658",code:9816,alias:"chess_knight",name:"white_chess_knight",tags:[],nameUnicode:"WHITE CHESS KNIGHT",width:"+0.5ex"},{symbol:"♙",unicodeHex:"2659",code:9817,alias:"chess_pawn",name:"white_chess_pawn",tags:[],nameUnicode:"WHITE CHESS PAWN",width:"+0.5ex"},{symbol:"♚",unicodeHex:"265A",code:9818,alias:"",name:"black_chess_king",tags:["color_chess_king"],nameUnicode:"BLACK CHESS KING",width:"+0.5ex"},{symbol:"♛",unicodeHex:"265B",code:9819,alias:"",name:"black_chess_queen",tags:["color_chess_queen"],nameUnicode:"BLACK CHESS QUEEN",width:"+0.5ex"},{symbol:"♜",unicodeHex:"265C",code:9820,alias:"",name:"black_chess_rook",tags:["color_chess_rook"],nameUnicode:"BLACK CHESS ROOK",width:"+0.5ex"},{symbol:"♝",unicodeHex:"265D",code:9821,alias:"",name:"black_chess_bishop",tags:["color_chess_bishop"],nameUnicode:"BLACK CHESS BISHOP",width:"+0.5ex"},{symbol:"♞",unicodeHex:"265E",code:9822,alias:"",name:"black_chess_knight",tags:["color_chess_knight"],nameUnicode:"BLACK CHESS KNIGHT",width:"+0.5ex"},{symbol:"♟",unicodeHex:"265F",code:9823,alias:"",name:"black_chess_pawn",tags:["color_chess_pawn"],nameUnicode:"BLACK CHESS PAWN",width:"+0.5ex"},{symbol:"♠",unicodeHex:"2660",code:9824,alias:"black_spades",name:"black_spade_suit",tags:["color_spades"],nameUnicode:"BLACK SPADE SUIT",width:"+0.5ex"},{symbol:"♤",unicodeHex:"2664",code:9828,alias:"spades",name:"white_spade_suit",tags:[],nameUnicode:"WHITE SPADE SUIT",width:"+0.5ex"},{symbol:"♦",unicodeHex:"2666",code:9830,alias:"black_diamonds",name:"black_diamond_suit",tags:["color_diamonds"],nameUnicode:"BLACK DIAMOND SUIT",width:"+0.5ex"},{symbol:"♢",unicodeHex:"2662",code:9826,alias:"diamonds",name:"white_diamond_suit",tags:[],nameUnicode:"WHITE DIAMOND SUIT",width:"+0.5ex"},{symbol:"♣",unicodeHex:"2663",code:9827,alias:"black_clubs",name:"black_club_suit",tags:["color_clubs"],nameUnicode:"BLACK CLUB SUIT",width:"+0.5ex"},{symbol:"♧",unicodeHex:"2667",code:9831,alias:"clubs",name:"white_club_suit",tags:[],nameUnicode:"WHITE CLUB SUIT",width:"+0.5ex"},{symbol:"♩",unicodeHex:"2669",code:9833,alias:"",name:"quarter_note",tags:["color_quarter_note"],nameUnicode:"QUARTER NOTE",width:"+0.5ex"},{symbol:"♪",unicodeHex:"266A",code:9834,alias:"",name:"eighth_note",tags:["color_eighth_note"],nameUnicode:"EIGHTH NOTE",width:"+0.5ex"},{symbol:"♫",unicodeHex:"266B",code:9835,alias:"two_notes",name:"beamed_eighth_notes",tags:["color_two_notes"],nameUnicode:"BEAMED EIGHTH NOTES",width:"+0.5ex"},{symbol:"♬",unicodeHex:"266C",code:9836,alias:"sixteenth_notes",name:"beamed_sixteenth_notes",tags:["color_sixteenth_notes"],nameUnicode:"BEAMED SIXTEENTH NOTES",width:"+0.5ex"},{symbol:"♭",unicodeHex:"266D",code:9837,alias:"flat",name:"music_flat_sign",tags:["color_flat"],nameUnicode:"MUSIC FLAT SIGN",width:"+0.5ex"},{symbol:"♮",unicodeHex:"266E",code:9838,alias:"natural",name:"music_natural_sign",tags:["color_natural"],nameUnicode:"MUSIC NATURAL SIGN",width:"+0.5ex"},{symbol:"♯",unicodeHex:"266F",code:9839,alias:"sharp",name:"music_sharp_sign",tags:["color_sharp"],nameUnicode:"MUSIC SHARP SIGN",width:"+0.5ex"},{symbol:"♰",unicodeHex:"2670",code:9840,alias:"west_cross",name:"west_syriac_cross",tags:["color_west_cross"],nameUnicode:"WEST SYRIAC CROSS",width:"+0.5ex"},{symbol:"♱",unicodeHex:"2671",code:9841,alias:"east_cross",name:"east_syriac_cross",tags:["color_east_cross"],nameUnicode:"EAST SYRIAC CROSS",width:"+0.5ex"},{symbol:"♲",unicodeHex:"2672",code:9842,alias:"recycle",name:"universal_recycling_symbol",tags:[],nameUnicode:"UNIVERSAL RECYCLING SYMBOL",width:"+0.6ex"},{symbol:"♳",unicodeHex:"2673",code:9843,alias:"recycle_plastics_1",name:"recycling_symbol_for_type_1_plastics",tags:["color_recycle_plastics_1"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-1 PLASTICS",width:"+0.6ex"},{symbol:"♴",unicodeHex:"2674",code:9844,alias:"recycle_plastics_2",name:"recycling_symbol_for_type_2_plastics",tags:["color_recycle_plastics_2"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-2 PLASTICS",width:"+0.6ex"},{symbol:"♵",unicodeHex:"2675",code:9845,alias:"recycle_plastics_3",name:"recycling_symbol_for_type_3_plastics",tags:["color_recycle_plastics_3"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-3 PLASTICS",width:"+0.6ex"},{symbol:"♶",unicodeHex:"2676",code:9846,alias:"recycle_plastics_4",name:"recycling_symbol_for_type_4_plastics",tags:["color_recycle_plastics_4"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-4 PLASTICS",width:"+0.6ex"},{symbol:"♷",unicodeHex:"2677",code:9847,alias:"recycle_plastics_5",name:"recycling_symbol_for_type_5_plastics",tags:["color_recycle_plastics_5"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-5 PLASTICS",width:"+0.6ex"},{symbol:"♸",unicodeHex:"2678",code:9848,alias:"recycle_plastics_6",name:"recycling_symbol_for_type_6_plastics",tags:["color_recycle_plastics_6"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-6 PLASTICS",width:"+0.6ex"},{symbol:"♹",unicodeHex:"2679",code:9849,alias:"recycle_plastics_7",name:"recycling_symbol_for_type_7_plastics",tags:["color_recycle_plastics_7"],nameUnicode:"RECYCLING SYMBOL FOR TYPE-7 PLASTICS",width:"+0.6ex"},{symbol:"♺",unicodeHex:"267A",code:9850,alias:"recycle_generic_materials",name:"recycling_symbol_for_generic_materials",tags:["color_recycle_generic_materials"],nameUnicode:"RECYCLING SYMBOL FOR GENERIC MATERIALS",width:"+0.6ex"},{symbol:"♻",unicodeHex:"267B",code:9851,alias:"black_recycle",name:"black_universal_recycling_symbol",tags:["color_recycle"],nameUnicode:"BLACK UNIVERSAL RECYCLING SYMBOL",width:"+0.6ex"},{symbol:"♼",unicodeHex:"267C",code:9852,alias:"recycled_paper",name:"recycled_paper_symbol",tags:["color_recycled_paper"],nameUnicode:"RECYCLED PAPER SYMBOL",width:"+0.6ex"},{symbol:"♽",unicodeHex:"267D",code:9853,alias:"partially_recycled_paper",name:"partially_recycled_paper_symbol",tags:["color_partially_recycled_paper"],nameUnicode:"PARTIALLY-RECYCLED PAPER SYMBOL",width:"+0.6ex"},{symbol:"♾",unicodeHex:"267E",code:9854,alias:"acid_free",name:"permanent_paper_sign",tags:["color_acid_free"],nameUnicode:"PERMANENT PAPER SIGN",width:"+0.5ex"},{symbol:"♿",unicodeHex:"267F",code:9855,alias:"wheelchair",name:"wheelchair_symbol",tags:["color_wheelchair"],nameUnicode:"WHEELCHAIR SYMBOL",width:"+0.5ex"},{symbol:"⚀",unicodeHex:"2680",code:9856,alias:"dice_1",name:"die_face_1",tags:["color_dice_1"],nameUnicode:"DIE FACE-1",width:"+0.5ex"},{symbol:"⚁",unicodeHex:"2681",code:9857,alias:"dice_2",name:"die_face_2",tags:["color_dice_2"],nameUnicode:"DIE FACE-2",width:"+0.5ex"},{symbol:"⚂",unicodeHex:"2682",code:9858,alias:"dice_3",name:"die_face_3",tags:["color_dice_3"],nameUnicode:"DIE FACE-3",width:"+0.5ex"},{symbol:"⚃",unicodeHex:"2683",code:9859,alias:"dice_4",name:"die_face_4",tags:["color_dice_4"],nameUnicode:"DIE FACE-4",width:"+0.5ex"},{symbol:"⚄",unicodeHex:"2684",code:9860,alias:"dice_5",name:"die_face_5",tags:["color_dice_5"],nameUnicode:"DIE FACE-5",width:"+0.5ex"},{symbol:"⚅",unicodeHex:"2685",code:9861,alias:"dice_6",name:"die_face_6",tags:["color_dice_6"],nameUnicode:"DIE FACE-6",width:"+0.5ex"},{symbol:"⚆",unicodeHex:"2686",code:9862,alias:"circled_right_dot",name:"white_circle_with_dot_right",tags:[],nameUnicode:"WHITE CIRCLE WITH DOT RIGHT",width:"+0.5ex"},{symbol:"⚇",unicodeHex:"2687",code:9863,alias:"circled_two_dots",name:"white_circle_with_two_dots",tags:[],nameUnicode:"WHITE CIRCLE WITH TWO DOTS",width:"+0.5ex"},{symbol:"⚈",unicodeHex:"2688",code:9864,alias:"black_circled_right_dot",name:"black_circle_with_white_dot_right",tags:["color_circled_right_dot"],nameUnicode:"BLACK CIRCLE WITH WHITE DOT RIGHT",width:"+0.5ex"},{symbol:"⚉",unicodeHex:"2689",code:9865,alias:"black_circled_two_dots",name:"black_circle_with_two_white_dots",tags:["color_circled_two_dots"],nameUnicode:"BLACK CIRCLE WITH TWO WHITE DOTS",width:"+0.5ex"},{symbol:"⚐",unicodeHex:"2690",code:9872,alias:"flag",name:"white_flag",tags:[],nameUnicode:"WHITE FLAG",width:"+0.5ex"},{symbol:"⚑",unicodeHex:"2691",code:9873,alias:"",name:"black_flag",tags:["color_flag"],nameUnicode:"BLACK FLAG",width:"+0.5ex"},{symbol:"⚔",unicodeHex:"2694",code:9876,alias:"swords",name:"crossed_swords",tags:["color_swords"],nameUnicode:"CROSSED SWORDS",width:"+0.5ex"},{symbol:"⚘",unicodeHex:"2698",code:9880,alias:"",name:"flower",tags:["color_flower"],nameUnicode:"FLOWER",width:"+0.5ex"},{symbol:"⚙",unicodeHex:"2699",code:9881,alias:"",name:"gear",tags:["color_gear"],nameUnicode:"GEAR",width:"+0.5ex"},{symbol:"⚚",unicodeHex:"269A",code:9882,alias:"hermes",name:"staff_of_hermes",tags:["color_hermes"],nameUnicode:"STAFF OF HERMES",width:"+0.5ex"},{symbol:"⚛",unicodeHex:"269B",code:9883,alias:"atom",name:"atom_symbol",tags:["color_atom"],nameUnicode:"ATOM SYMBOL",width:"+0.5ex"},{symbol:"⚝",unicodeHex:"269D",code:9885,alias:"outlined_star",name:"outlined_white_star",tags:["color_outlined_star"],nameUnicode:"OUTLINED WHITE STAR",width:"+0.5ex"},{symbol:"⚠",unicodeHex:"26A0",code:9888,alias:"warning",name:"warning_sign",tags:["color_warning"],nameUnicode:"WARNING SIGN",width:"+0.5ex"},{symbol:"⚬",unicodeHex:"26AC",code:9900,alias:"medium_small_circle",name:"medium_small_white_circle",tags:["color_medium_small_circle"],nameUnicode:"MEDIUM SMALL WHITE CIRCLE",width:"+0.5ex"},{symbol:"⚭",unicodeHex:"26AD",code:9901,alias:"marriage",name:"marriage_symbol",tags:["color_marriage"],nameUnicode:"MARRIAGE SYMBOL",width:"+0.5ex"},{symbol:"⚮",unicodeHex:"26AE",code:9902,alias:"divorce",name:"divorce_symbol",tags:["color_divorce"],nameUnicode:"DIVORCE SYMBOL",width:"+0.8ex"},{symbol:"⚯",unicodeHex:"26AF",code:9903,alias:"unmarried_partnership",name:"unmarried_partnership_symbol",tags:["color_unmarried_partnership"],nameUnicode:"UNMARRIED PARTNERSHIP SYMBOL",width:"+1ex"},{symbol:"⚲",unicodeHex:"26B2",code:9906,alias:"",name:"neuter",tags:["color_neuter"],nameUnicode:"NEUTER",width:"+0.5ex"},{symbol:"⚳",unicodeHex:"26B3",code:9907,alias:"",name:"ceres",tags:["color_ceres"],nameUnicode:"CERES",width:"+0.5ex"},{symbol:"⚴",unicodeHex:"26B4",code:9908,alias:"",name:"pallas",tags:["color_pallas"],nameUnicode:"PALLAS",width:"+0.5ex"},{symbol:"⚵",unicodeHex:"26B5",code:9909,alias:"",name:"juno",tags:["color_juno"],nameUnicode:"JUNO",width:"+0.5ex"},{symbol:"⚶",unicodeHex:"26B6",code:9910,alias:"",name:"vesta",tags:["color_vesta"],nameUnicode:"VESTA",width:"+0.5ex"},{symbol:"⚷",unicodeHex:"26B7",code:9911,alias:"",name:"chiron",tags:["color_chiron"],nameUnicode:"CHIRON",width:"+0.5ex"},{symbol:"⚹",unicodeHex:"26B9",code:9913,alias:"",name:"sextile",tags:["color_sextile"],nameUnicode:"SEXTILE",width:"+0.5ex"},{symbol:"⚿",unicodeHex:"26BF",code:9919,alias:"",name:"squared_key",tags:["color_squared_key"],nameUnicode:"SQUARED KEY",width:"+0.5ex"},{symbol:"⛀",unicodeHex:"26C0",code:9920,alias:"draughts_man",name:"white_draughts_man",tags:[],nameUnicode:"WHITE DRAUGHTS MAN",width:"+0.5ex"},{symbol:"⛁",unicodeHex:"26C1",code:9921,alias:"draughts_king",name:"white_draughts_king",tags:[],nameUnicode:"WHITE DRAUGHTS KING",width:"+0.5ex"},{symbol:"⛂",unicodeHex:"26C2",code:9922,alias:"",name:"black_draughts_man",tags:["color_draughts_man"],nameUnicode:"BLACK DRAUGHTS MAN",width:"+0.5ex"},{symbol:"⛃",unicodeHex:"26C3",code:9923,alias:"",name:"black_draughts_king",tags:["color_draughts_king"],nameUnicode:"BLACK DRAUGHTS KING",width:"+0.5ex"},{symbol:"⛆",unicodeHex:"26C6",code:9926,alias:"",name:"rain",tags:["color_rain"],nameUnicode:"RAIN",width:"+0.5ex"},{symbol:"⛇",unicodeHex:"26C7",code:9927,alias:"",name:"black_snowman",tags:["color_snowman"],nameUnicode:"BLACK SNOWMAN",width:"+0.5ex"},{symbol:"⛉",unicodeHex:"26C9",code:9929,alias:"turned_shogi_piece",name:"turned_white_shogi_piece",tags:[],nameUnicode:"TURNED WHITE SHOGI PIECE",width:"+0.5ex"},{symbol:"⛊",unicodeHex:"26CA",code:9930,alias:"black_turned_shogi_piece",name:"turned_black_shogi_piece",tags:["color_turned_shogi_piece"],nameUnicode:"TURNED BLACK SHOGI PIECE",width:"+0.5ex"},{symbol:"⛋",unicodeHex:"26CB",code:9931,alias:"squared_diamond",name:"white_diamond_in_square",tags:["color_squared_diamond"],nameUnicode:"WHITE DIAMOND IN SQUARE",width:"+0.5ex"},{symbol:"⛌",unicodeHex:"26CC",code:9932,alias:"",name:"crossing_lanes",tags:["color_crossing_lanes"],nameUnicode:"CROSSING LANES",width:"+0.5ex"},{symbol:"⛍",unicodeHex:"26CD",code:9933,alias:"",name:"disabled_car",tags:["color_disabled_car"],nameUnicode:"DISABLED CAR",width:"+0.5ex"},{symbol:"⛐",unicodeHex:"26D0",code:9936,alias:"sliding_car",name:"car_sliding",tags:["color_sliding_car"],nameUnicode:"CAR SLIDING",width:"+0.5ex"},{symbol:"⛒",unicodeHex:"26D2",code:9938,alias:"",name:"circled_crossing_lanes",tags:["color_circled_crossing_lanes"],nameUnicode:"CIRCLED CROSSING LANES",width:"+0.5ex"},{symbol:"⛟",unicodeHex:"26DF",code:9951,alias:"",name:"black_truck",tags:["color_truck"],nameUnicode:"BLACK TRUCK",width:"+0.5ex"},{symbol:"⛤",unicodeHex:"26E4",code:9956,alias:"",name:"pentagram",tags:["color_pentagram"],nameUnicode:"PENTAGRAM",width:"+0.5ex"},{symbol:"⛧",unicodeHex:"26E7",code:9959,alias:"",name:"inverted_pentagram",tags:["color_inverted_pentagram"],nameUnicode:"INVERTED PENTAGRAM",width:"+0.5ex"},{symbol:"⛩",unicodeHex:"26E9",code:9961,alias:"",name:"shinto_shrine",tags:["color_shinto_shrine"],nameUnicode:"SHINTO SHRINE",width:"+0.5ex"},{symbol:"⛫",unicodeHex:"26EB",code:9963,alias:"",name:"castle",tags:["color_castle"],nameUnicode:"CASTLE",width:"+0.5ex"},{symbol:"⛬",unicodeHex:"26EC",code:9964,alias:"",name:"historic_site",tags:["color_historic_site"],nameUnicode:"HISTORIC SITE",width:"+0.5ex"},{symbol:"⛭",unicodeHex:"26ED",code:9965,alias:"",name:"gear_without_hub",tags:["color_gear_without_hub"],nameUnicode:"GEAR WITHOUT HUB",width:"+0.5ex"},{symbol:"⛮",unicodeHex:"26EE",code:9966,alias:"",name:"gear_with_handles",tags:["color_gear_with_handles"],nameUnicode:"GEAR WITH HANDLES",width:"+0.5ex"},{symbol:"⛯",unicodeHex:"26EF",code:9967,alias:"map_lighthouse",name:"map_symbol_for_lighthouse",tags:["color_map_lighthouse"],nameUnicode:"MAP SYMBOL FOR LIGHTHOUSE",width:"+0.5ex"},{symbol:"⛱",unicodeHex:"26F1",code:9969,alias:"",name:"umbrella_on_ground",tags:["color_umbrella_on_ground"],nameUnicode:"UMBRELLA ON GROUND",width:"+0.5ex"},{symbol:"⛶",unicodeHex:"26F6",code:9974,alias:"",name:"square_four_corners",tags:["color_square_four_corners"],nameUnicode:"SQUARE FOUR CORNERS",width:"+0.5ex"},{symbol:"⛸",unicodeHex:"26F8",code:9976,alias:"",name:"ice_skate",tags:["color_ice_skate"],nameUnicode:"ICE SKATE",width:"+0.5ex"},{symbol:"⛻",unicodeHex:"26FB",code:9979,alias:"japanese_bank",name:"japanese_bank_symbol",tags:["color_japanese_bank"],nameUnicode:"JAPANESE BANK SYMBOL",width:"+0.5ex"},{symbol:"⛾",unicodeHex:"26FE",code:9982,alias:"black_squared_cup",name:"cup_on_black_square",tags:["color_squared_cup"],nameUnicode:"CUP ON BLACK SQUARE",width:"+0.5ex"},{symbol:"☺",unicodeHex:"263A",code:9786,alias:"relaxed",name:"relaxed",tags:["color_relaxed"],nameUnicode:"relaxed",width:"+0.5ex"},{symbol:"☹",unicodeHex:"2639",code:9785,alias:"frowning_face",name:"frowning_face",tags:["color_frowning_face"],nameUnicode:"frowning_face",width:"+0.5ex"},{symbol:"♨",unicodeHex:"2668",code:9832,alias:"hotsprings",name:"hotsprings",tags:["color_hotsprings"],nameUnicode:"hotsprings",width:"+0.5ex"},{symbol:"©",unicodeHex:"A9",code:169,alias:"copyright",name:"copyright",tags:["color_copyright"],nameUnicode:"Copyright Sign",width:"+0.5ex"},{symbol:"™",unicodeHex:"2122",code:8482,alias:"tm",name:"tm",tags:["color_tm"],nameUnicode:"Trade Mark Sign",width:"+0.5ex"},{symbol:"®",unicodeHex:"AE",code:174,alias:"registered",name:"registered",tags:["color_registered"],nameUnicode:"Registered Sign",width:"+0.5ex"},{symbol:"〰",unicodeHex:"3030",code:12336,alias:"wavy_dash",name:"wavy_dash",tags:["color_wavy_dash"],nameUnicode:"Wavy Das",width:"+0.5ex"},{symbol:"✔",unicodeHex:"2714",code:10004,alias:"heavy_check_mark",name:"heavy_check_mark",tags:["color_heavy_check_mark"],nameUnicode:"Heavy Check Mark",width:"+0.5ex"},{symbol:"☑",unicodeHex:"2611",code:9745,alias:"ballot_box_with_check",name:"ballot_box_with_check",tags:["color_ballot_box_with_check"],nameUnicode:"Ballot Box with Check",width:"+0.5ex"},{symbol:"❇",unicodeHex:"2747",code:10055,alias:"sparkle",name:"sparkle",tags:["color_sparkle"],nameUnicode:"sparkle",width:"+0.5ex"},{symbol:"✳",unicodeHex:"2733",code:10035,alias:"eight_spoked_asterisk",name:"eight_spoked_asterisk",tags:["color_eight_spoked_asterisk"],nameUnicode:"eight spoked asterisk",width:"+0.5ex"},{symbol:"Ⓜ",unicodeHex:"24C2",code:9410,alias:"m",name:"m",tags:["color_m"],nameUnicode:"Circled Latin Capital Letter M",width:"+0.5ex"},{symbol:"◦",unicodeHex:"25E6",code:8729,alias:"bullet_o",name:"white_bullet",tags:["color_bullet_o"],nameUnicode:"WHITE BULLET",width:"+0.5ex"},{symbol:"⁃",unicodeHex:"2043",code:8259,alias:"hyphen_bullet",name:"hyphen_bullet",tags:["color_hyphen_bullet"],nameUnicode:"HYPHEN BULLET",width:"+0.5ex"},{symbol:"↔",unicodeHex:"2194",code:8596,alias:"left_right_arrow",name:"left_right_arrow",tags:["color_left_right_arrow"],nameUnicode:"LEFT RIGHT ARROW",width:"+0.5ex"},{symbol:"↕",unicodeHex:"2195",code:8597,alias:"up_down_arrow",name:"up_down_arrow",tags:["color_up_down_arrow"],nameUnicode:"UP DOWN ARROW",width:"+0.5ex"},{symbol:"↖",unicodeHex:"2196",code:8598,alias:"nw_arrow",name:"north_west_arrow",tags:["color_nw_arrow"],nameUnicode:"NORTH WEST ARROW",width:"+0.5ex"},{symbol:"↗",unicodeHex:"2197",code:8599,alias:"ne_arrow",name:"north_east_arrow",tags:["color_ne_arrow"],nameUnicode:"NORTH EAST ARROW",width:"+0.5ex"},{symbol:"↘",unicodeHex:"2198",code:8600,alias:"se_arrow",name:"south_east_arrow",tags:["color_se_arrow"],nameUnicode:"SOUTH EAST ARROW",width:"+0.5ex"},{symbol:"↙",unicodeHex:"2199",code:8601,alias:"sw_arrow",name:"south_west_arrow",tags:["color_sw_arrow"],nameUnicode:"SOUTH WEST ARROW",width:"+0.5ex"},{symbol:"⤡",unicodeHex:"2921",code:10529,alias:"nw_se_arrow",name:"north_west_and_south_east_arrow",tags:["color_nw_se_arrow"],nameUnicode:"NORTH WEST AND SOUTH EAST ARROW",width:"+0.5ex"},{symbol:"⤢",unicodeHex:"2922",code:10530,alias:"ne_sw_arrow",name:"north_east_and_south_west_arrow",tags:["color_ne_sw_arrow"],nameUnicode:"NORTH EAST AND SOUTH WEST ARROW",width:"+0.5ex"},{symbol:"⇦",unicodeHex:"21E6",code:8678,alias:"left_fill_arrow_o",name:"leftwards_white_arrow",tags:["color_left_fill_arrow_o"],nameUnicode:"LEFTWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⇧",unicodeHex:"21E7",code:8679,alias:"up_fill_arrow_o",name:"upwards_white_arrow",tags:["color_up_fill_arrow_o"],nameUnicode:"UPWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⇨",unicodeHex:"21E8",code:8680,alias:"right_fill_arrow_o",name:"rightwards_white_arrow",tags:["color_right_fill_arrow_o"],nameUnicode:"RIGHTWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⇩",unicodeHex:"21E9",code:8681,alias:"down_fill_arrow_o",name:"downwards_white_arrow",tags:["color_down_fill_arrow_o"],nameUnicode:"DOWNWARDS WHITE ARROW",width:"+0.5ex"},{symbol:"⬄",unicodeHex:"2B04",code:11012,alias:"left_right_fill_arrow_o",name:"left_right_white_arrow",tags:["color_left_right_fill_arrow_o"],nameUnicode:"LEFT RIGHT WHITE ARROW",width:"+0.5ex"},{symbol:"⇳",unicodeHex:"21F3",code:8691,alias:"up_down_fill_arrow_o",name:"up_down_white_arrow",tags:["color_up_down_fill_arrow_o"],nameUnicode:"UP DOWN WHITE ARROW",width:"+0.5ex"},{symbol:"⬅",unicodeHex:"2B05",code:11077,alias:"left_fill_arrow",name:"leftwards_black_arrow",tags:["color_left_fill_arrow"],nameUnicode:"LEFTWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"⬆",unicodeHex:"2191",code:8593,alias:"up_fill_arrow",name:"upwards_black_arrow",tags:["color_up_fill_arrow"],nameUnicode:"UPWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"➡",unicodeHex:"27A1",code:10145,alias:"right_fill_arrow",name:"rightwards_black_arrow",tags:["color_right_fill_arrow"],nameUnicode:"RIGHTWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"⬇",unicodeHex:"2193",code:8595,alias:"down_fill_arrow",name:"downwards_black_arrow",tags:["color_down_fill_arrow"],nameUnicode:"DOWNWARDS BLACK ARROW",width:"+0.5ex"},{symbol:"⬌",unicodeHex:"2B8C",code:11148,alias:"left_right_fill_arrow",name:"left_right_black_arrow",tags:["color_left_right_fill_arrow"],nameUnicode:"LEFT RIGHT BLACK ARROW",width:"+0.5ex"},{symbol:"⬍",unicodeHex:"2B8D",code:11149,alias:"up_down_fill_arrow",name:"up_down_black_arrow",tags:["color_up_down_fill_arrow"],nameUnicode:"UP DOWN BLACK ARROW",width:"+0.5ex"},{symbol:"⬀",unicodeHex:"2B80",code:11136,alias:"ne_fill_arrow_o",name:"north_east_white_arrow",tags:["color_ne_fill_arrow_o"],nameUnicode:"NORTH EAST WHITE ARROW",width:"+0.5ex"},{symbol:"⬁",unicodeHex:"2B81",code:11137,alias:"nw_fill_arrow_o",name:"north_west_white_arrow",tags:["color_nw_fill_arrow_o"],nameUnicode:"NORTH WEST WHITE ARROW",width:"+0.5ex"},{symbol:"⬂",unicodeHex:"2B82",code:11138,alias:"se_fill_arrow_o",name:"south_east_white_arrow",tags:["color_se_fill_arrow_o"],nameUnicode:"SOUTH EAST WHITE ARROW",width:"+0.5ex"},{symbol:"⬃",unicodeHex:"2B83",code:11139,alias:"sw_fill_arrow_o",name:"south_west_white_arrow",tags:["color_sw_fill_arrow_o"],nameUnicode:"SOUTH WEST WHITE ARROW",width:"+0.5ex"},{symbol:"⬈",unicodeHex:"2B88",code:11144,alias:"ne_fill_arrow",name:"north_east_black_arrow",tags:["color_ne_fill_arrow"],nameUnicode:"NORTH EAST BLACK ARROW",width:"+0.5ex"},{symbol:"⬉",unicodeHex:"2B89",code:11145,alias:"nw_fill_arrow",name:"north_west_black_arrow",tags:["color_nw_fill_arrow"],nameUnicode:"NORTH WEST BLACK ARROW",width:"+0.5ex"},{symbol:"⬊",unicodeHex:"2B8A",code:11146,alias:"se_fill_arrow",name:"south_east_black_arrow",tags:["color_se_fill_arrow"],nameUnicode:"SOUTH EAST BLACK ARROW",width:"+0.5ex"},{symbol:"⬋",unicodeHex:"2B8B",code:11147,alias:"sw_fill_arrow",name:"south_west_black_arrow",tags:["color_sw_fill_arrow"],nameUnicode:"SOUTH WEST BLACK ARROW",width:"+0.5ex"},{symbol:"↵",unicodeHex:"21B5",code:8629,alias:"down_left_arrow",name:"downwards_left_corner_arrow",tags:["color_down_left_arrow"],nameUnicode:"DOWNWARDS ARROW WITH CORNER LEFTWARDS",width:"+0.5ex"},{symbol:"↳",unicodeHex:"21B3",code:8627,alias:"down_right_arrow",name:"downwards_right_corner_arrow",tags:["color_down_right_arrow"],nameUnicode:"DOWNWARDS ARROW WITH TIP RIGHTWARDS",width:"+0.5ex"},{symbol:"➮",unicodeHex:"27AE",code:10142,alias:"upper_shadow_right_arrow",name:"heavy_upper_right_shadowed_white_rightwards_arrow",tags:["color_upper_shadow_right_arrow"],nameUnicode:"HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➭",unicodeHex:"279D",code:10141,alias:"lower_shadow_right_arrow",name:"heavy_lower_right_shadowed_white_rightwards_arrow",tags:["color_lower_shadow_right_arrow"],nameUnicode:"HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➯",unicodeHex:"279F",code:10143,alias:"notched_lower_shadow_right_arrow",name:"notched_lower_right_shadowed_white_rightwards_arrow",tags:["color_notched_lower_shadow_right_arrow"],nameUnicode:"NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➱",unicodeHex:"27B1",code:10145,alias:"notched_upper_shadow_right_arrow",name:"notched_upper_right_shadowed_white_rightwards_arrow",tags:["color_notched_upper_shadow_right_arrow"],nameUnicode:"NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"➲",unicodeHex:"27B2",code:10162,alias:"circled_heavy_right_arrow",name:"circled_heavy_white_rightwards_arrow",tags:["color_circled_heavy_right_arrow"],nameUnicode:"CIRCLED HEAVY WHITE RIGHTWARDS ARROW",width:"+0.5ex"},{symbol:"❍",unicodeHex:"274D",code:10061,alias:"shadowed_circle",name:"shadowed_white_circle",tags:["color_shadowed_circle"],nameUnicode:"SHADOWED WHITE CIRCLE",width:"+0.5ex"},{symbol:"❏",unicodeHex:"274F",code:10063,alias:"lower_right_shadow_square",name:"lower_right_drop_shadowed_white_square",tags:["color_lower_right_shadow_square"],nameUnicode:"LOWER RIGHT DROP-SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"❐",unicodeHex:"2750",code:10064,alias:"upper_right_shadow_square",name:"upper_right_drop_shadowed_white_square",tags:["color_upper_right_shadow_square"],nameUnicode:"UPPER RIGHT DROP-SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"❑",unicodeHex:"2751",code:10065,alias:"lower_right_shadow_square",name:"lower_right_shadowed_white_square",tags:["color_lower_right_shadow_square"],nameUnicode:"LOWER RIGHT SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"❒",unicodeHex:"2752",code:10066,alias:"upper_right_shadow_square",name:"upper_right_shadowed_white_square",tags:["color_upper_right_shadow_square"],nameUnicode:"UPPER RIGHT SHADOWED WHITE SQUARE",width:"+0.5ex"},{symbol:"➤",unicodeHex:"27A4",code:10148,alias:"black_right_arrowhead",name:"black_rightwards_arrowhead",tags:["color_right_arrowhead"],nameUnicode:"BLACK RIGHTWARDS ARROWHEAD",width:"+0.5ex"},{symbol:"➢",unicodeHex:"27A2",code:10146,alias:"top_lighted_right_arrowhead",name:"3d_top_lighted_right_arrowhead",tags:["color_top_lighted_right_arrowhead"],nameUnicode:"THREE-D TOP-LIGHTED RIGHTWARDS ARROWHEAD",width:"+0.5ex"},{symbol:"➣",unicodeHex:"27A3",code:10147,alias:"bottom_lighted_right_arrowhead",name:"3d_bottom_lighted_right_arrowhead",tags:["color_bottom_lighted_right_arrowhead"],nameUnicode:"THREE-D BOTTOM-LIGHTED RIGHTWARDS ARROWHEAD",width:"+0.5ex"},{symbol:"□",unicodeHex:"25A1",code:9633,alias:"square",name:"white_square",tags:[],nameUnicode:"WHITE SQUARE",width:"+0.5ex"},{symbol:"▪",unicodeHex:"25AA",code:9642,alias:"black_small_square",name:"black_small_square",tags:["color_small_square"],nameUnicode:"BLACK SMALL SQUARE",width:"+0.5ex"},{symbol:"▫",unicodeHex:"25AB",code:9643,alias:"small_square",name:"white_small_square",tags:[],nameUnicode:"WHITE SMALL SQUARE",width:"+0.5ex"},{symbol:"◻",unicodeHex:"25FB",code:9611,alias:"medium_square",name:"white_medium_square",tags:[],nameUnicode:"WHITE MEDIUM SQUARE",width:"+0.5ex"},{symbol:"◼",unicodeHex:"25FC",code:9612,alias:"black_medium_square",name:"black_medium_square",tags:["color_medium_square"],nameUnicode:"BLACK MEDIUM SQUARE",width:"+0.5ex"},{symbol:"⬒",unicodeHex:"2B12",code:11026,alias:"square_top_fill",name:"square_with_top_half_black",tags:["color_square_top_fill"],nameUnicode:"SQUARE WITH TOP HALF BLACK",width:"+0.5ex"},{symbol:"⬓",unicodeHex:"2B13",code:11027,alias:"square_bottom_fill",name:"square_with_bottom_half_black",tags:["color_square_bottom_fill"],nameUnicode:"SQUARE WITH BOTTOM HALF BLACK",width:"+0.5ex"},{symbol:"⬔",unicodeHex:"2B14",code:11028,alias:"square_right_fill",name:"square_with_upper_right_diagonal_half_black",tags:["color_square_right_fill"],nameUnicode:"SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK",width:"+0.5ex"},{symbol:"⬕",unicodeHex:"2B15",code:11029,alias:"square_left_fill",name:"square_with_lower_left_diagonal_half_black",tags:["color_square_left_fill"],nameUnicode:"SQUARE WITH LOWER LEFT DIAGONAL HALF BLACK",width:"+0.5ex"},{symbol:"◢",unicodeHex:"25E2",code:9698,alias:"black_triangle_lower_right",name:"black_lower_right_triangle",tags:["color_triangle_lower_right"],nameUnicode:"BLACK LOWER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"◣",unicodeHex:"25E3",code:9699,alias:"black_triangle_lower_left",name:"black_lower_left_triangle",tags:["color_triangle_lower_left"],nameUnicode:"BLACK LOWER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◤",unicodeHex:"25E4",code:9700,alias:"black_triangle_upper_left",name:"black_upper_left_triangle",tags:["color_triangle_upper_left"],nameUnicode:"BLACK UPPER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◥",unicodeHex:"25E5",code:9701,alias:"black_triangle_upper_right",name:"black_upper_right_triangle",tags:["color_triangle_upper_right"],nameUnicode:"BLACK UPPER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"◿",unicodeHex:"25FF",code:9727,alias:"triangle_lower_right",name:"lower_right_triangle",tags:[],nameUnicode:"LOWER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"◺",unicodeHex:"25FA",code:9722,alias:"triangle_lower_left",name:"lower_left_triangle",tags:[],nameUnicode:"LOWER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◸",unicodeHex:"25F8",code:9720,alias:"triangle_upper_left",name:"upper_left_triangle",tags:[],nameUnicode:"UPPER LEFT TRIANGLE",width:"+0.5ex"},{symbol:"◹",unicodeHex:"25F9",code:9721,alias:"triangle_upper_right",name:"upper_right_triangle",tags:[],nameUnicode:"UPPER RIGHT TRIANGLE",width:"+0.5ex"},{symbol:"▴",unicodeHex:"25B4",code:9652,alias:"black_small_triangle",name:"black_up_pointing_small_triangle",tags:["color_small_triangle"],nameUnicode:"BLACK UP-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▵",unicodeHex:"25B5",code:9653,alias:"small_triangle",name:"white_up_pointing_small_triangle",tags:[],nameUnicode:"WHITE UP-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▸",unicodeHex:"25B8",code:9656,alias:"black_small_triangle_right",name:"black_right_pointing_small_triangle",tags:["color_small_triangle_right"],nameUnicode:"BLACK RIGHT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▹",unicodeHex:"25B9",code:9657,alias:"small_triangle_right",name:"white_right_pointing_small_triangle",tags:[],nameUnicode:"WHITE RIGHT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▾",unicodeHex:"25BE",code:9662,alias:"black_small_triangle_down",name:"black_down_pointing_small_triangle",tags:["color_small_triangle_down"],nameUnicode:"BLACK DOWN-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"▿",unicodeHex:"25BF",code:9663,alias:"small_triangle_down",name:"white_down_pointing_small_triangle",tags:[],nameUnicode:"WHITE DOWN-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"◂",unicodeHex:"25C2",code:9666,alias:"black_small_triangle_left",name:"black_left_pointing_small_triangle",tags:["color_small_triangle_left"],nameUnicode:"BLACK LEFT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"◃",unicodeHex:"25C3",code:9667,alias:"small_triangle_left",name:"white_left_pointing_small_triangle",tags:[],nameUnicode:"WHITE LEFT-POINTING SMALL TRIANGLE",width:"+0.5ex"},{symbol:"►",unicodeHex:"25BA",code:9658,alias:"black_right_pointer",name:"black_right_pointing_pointer",tags:["color_right_pointer"],nameUnicode:"BLACK RIGHT-POINTING POINTER",width:"+0.5ex"},{symbol:"▻",unicodeHex:"25BB",code:9659,alias:"right_pointer",name:"white_right_pointing_pointer",tags:[],nameUnicode:"WHITE RIGHT-POINTING POINTER",width:"+0.5ex"},{symbol:"◄",unicodeHex:"25C4",code:9668,alias:"black_left_pointer",name:"black_left_pointing_pointer",tags:["color_left_pointer"],nameUnicode:"BLACK LEFT-POINTING POINTER",width:"+0.5ex"},{symbol:"◅",unicodeHex:"25C5",code:9669,alias:"left_pointer",name:"white_left_pointing_pointer",tags:[],nameUnicode:"WHITE LEFT-POINTING POINTER",width:"+0.5ex"},{symbol:"◯",unicodeHex:"25EF",code:9711,alias:"large_circle",name:"large_circle",tags:[],nameUnicode:"LARGE CIRCLE",width:"+0.5ex"},{symbol:"⬤",unicodeHex:"2B24",code:11036,alias:"black_large_circle",name:"black_large_circle",tags:["color_large_circle"],nameUnicode:"BLACK LARGE CIRCLE",width:"+0.5ex"},{symbol:"◆",unicodeHex:"25C6",code:9670,alias:"black_diamond",name:"black_diamond",tags:["color_diamond"],nameUnicode:"BLACK DIAMOND",width:"+0.5ex"},{symbol:"◇",unicodeHex:"25C7",code:9671,alias:"diamond",name:"white_diamond",tags:[],nameUnicode:"WHITE DIAMOND",width:"+0.5ex"},{symbol:"⬥",unicodeHex:"2B25",code:11045,alias:"black_medium_diamond",name:"black_medium_diamond",tags:["color_medium_diamond"],nameUnicode:"BLACK MEDIUM DIAMOND",width:"+0.5ex"},{symbol:"⬦",unicodeHex:"2B26",code:11046,alias:"medium_diamond",name:"white_medium_diamond",tags:[],nameUnicode:"WHITE MEDIUM DIAMOND",width:"+0.5ex"},{symbol:"⬩",unicodeHex:"2B29",code:11049,alias:"black_small_diamond",name:"black_small_diamond",tags:["color_small_diamond"],nameUnicode:"BLACK SMALL DIAMOND",width:"+0.5ex"},{symbol:"⬖",unicodeHex:"2B16",code:11030,alias:"diamond_left_fill",name:"diamond_with_left_half_black",tags:["color_diamond_left_fill"],nameUnicode:"DIAMOND WITH LEFT HALF BLACK",width:"+0.5ex"},{symbol:"⬗",unicodeHex:"2B17",code:11031,alias:"diamond_right_fill",name:"diamond_with_right_half_black",tags:["color_diamond_right_fill"],nameUnicode:"DIAMOND WITH RIGHT HALF BLACK",width:"+0.5ex"},{symbol:"⬘",unicodeHex:"2B18",code:11032,alias:"diamond_top_fill",name:"diamond_with_top_half_black",tags:["color_diamond_top_fill"],nameUnicode:"DIAMOND WITH TOP HALF BLACK",width:"+0.5ex"},{symbol:"⬙",unicodeHex:"2B19",code:11033,alias:"diamond_bottom_fill",name:"diamond_with_bottom_half_black",tags:["color_diamond_bottom_fill"],nameUnicode:"DIAMOND WITH BOTTOM HALF BLACK",width:"+0.5ex"},{symbol:"⬪",unicodeHex:"2B2A",code:11050,alias:"black_small_lozenge",name:"black_small_lozenge",tags:["color_small_lozenge"],nameUnicode:"BLACK SMALL LOZENGE",width:"+0.5ex"},{symbol:"⬫",unicodeHex:"2B2B",code:11051,alias:"small_lozenge",name:"white_small_lozenge",tags:[],nameUnicode:"WHITE SMALL LOZENGE",width:"+0.5ex"},{symbol:"◈",unicodeHex:"25C8",code:9672,alias:"diamond_fill_small",name:"white_diamond_containing_black_small_diamond",tags:["color_diamond_fill_small"],nameUnicode:"WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND",width:"+0.5ex"},{symbol:"❖",unicodeHex:"2756",code:10070,alias:"black_diamond_white_x",name:"black_diamond_minus_white_x",tags:["color_diamond_white_x"],nameUnicode:"BLACK DIAMOND MINUS WHITE X",width:"+0.5ex"},{symbol:"⟐",unicodeHex:"27D0",code:10192,alias:"diamond_dot",name:"white_diamond_with_centred_dot",tags:["color_diamond_dot"],nameUnicode:"WHITE DIAMOND WITH CENTRED DOT",width:"+0.5ex"},{symbol:"✠",unicodeHex:"2720",code:10016,alias:"maltese_cross",name:"maltese_cross",tags:["color_maltese_cross"],nameUnicode:"MALTESE CROSS",width:"+0.5ex"},{symbol:"⊞",unicodeHex:"229E",code:8862,alias:"squared_plus",name:"squared_plus",tags:["color_squared_plus"],nameUnicode:"SQUARED PLUS",width:"+0.5ex"},{symbol:"⊟",unicodeHex:"229F",code:8863,alias:"squared_minus",name:"squared_minus",tags:["color_squared_minus"],nameUnicode:"SQUARED MINUS",width:"+0.5ex"},{symbol:"⊠",unicodeHex:"22A0",code:8864,alias:"squared_times",name:"squared_times",tags:["color_squared_times"],nameUnicode:"SQUARED TIMES",width:"+0.5ex"},{symbol:"⊡",unicodeHex:"22A1",code:8865,alias:"squared_dot",name:"squared_dot_operator",tags:["color_squared_dot"],nameUnicode:"SQUARED DOT OPERATOR",width:"+0.5ex"},{symbol:"⛝",unicodeHex:"26DD",code:9949,alias:"squared_saltire",name:"squared_saltire",tags:["color_squared_saltire"],nameUnicode:"SQUARED SALTIRE",width:"+0.5ex"},{symbol:"⧇",unicodeHex:"29C7",code:10695,alias:"squared_circle",name:"squared_small_circle",tags:["color_squared_circle"],nameUnicode:"SQUARED SMALL CIRCLE",width:"+0.5ex"},{symbol:"⧈",unicodeHex:"29C8",code:10696,alias:"squared_square",name:"squared_square",tags:["color_squared_square"],nameUnicode:"SQUARED SQUARE",width:"+0.5ex"},{symbol:"⧆",unicodeHex:"29C6",code:10694,alias:"squared_asterisk",name:"squared_asterisk",tags:["color_squared_asterisk"],nameUnicode:"SQUARED ASTERISK",width:"+0.5ex"},{symbol:"⧄",unicodeHex:"29C4",code:10692,alias:"squared_slash",name:"squared_rising_diagonal_slash",tags:["color_squared_slash"],nameUnicode:"SQUARED RISING DIAGONAL SLASH",width:"+0.5ex"},{symbol:"⃠",unicodeHex:"20E0",code:8416,alias:"circle_backslash",name:"combining_enclosing_circle_backslash",tags:["color_circle_backslash"],nameUnicode:"COMBINING ENCLOSING CIRCLE BACKSLASH",width:"+0.5ex"},{symbol:"⊕",unicodeHex:"2295",code:8853,alias:"circled_plus",name:"circled_plus",tags:["color_circled_plus"],nameUnicode:"CIRCLED PLUS",width:"+0.5ex"},{symbol:"⊖",unicodeHex:"2296",code:8854,alias:"circled_minus",name:"circled_minus",tags:["color_circled_minus"],nameUnicode:"CIRCLED MINUS",width:"+0.5ex"},{symbol:"⊗",unicodeHex:"2297",code:8855,alias:"circled_times",name:"circled_times",tags:["color_circled_times"],nameUnicode:"CIRCLED TIMES",width:"+0.5ex"},{symbol:"⊘",unicodeHex:"2298",code:8856,alias:"circled_division",name:"circled_division_slash",tags:["color_circled_division"],nameUnicode:"CIRCLED DIVISION SLASH",width:"+0.5ex"},{symbol:"⊙",unicodeHex:"2299",code:8857,alias:"circled_dot",name:"circled_dot_operator",tags:["color_circled_dot"],nameUnicode:"CIRCLED DOT OPERATOR",width:"+0.5ex"},{symbol:"⊚",unicodeHex:"229A",code:8858,alias:"circled_ring",name:"circled_ring_operator",tags:["color_circled_ring"],nameUnicode:"CIRCLED RING OPERATOR",width:"+0.5ex"},{symbol:"⊛",unicodeHex:"229B",code:8859,alias:"circled_asterisk",name:"circled_asterisk_operator",tags:["color_circled_asterisk"],nameUnicode:"CIRCLED ASTERISK OPERATOR",width:"+0.5ex"},{symbol:"⊜",unicodeHex:"229C",code:8860,alias:"circled_equals",name:"circled_equals",tags:["color_circled_equals"],nameUnicode:"CIRCLED EQUALS",width:"+0.5ex"},{symbol:"⊝",unicodeHex:"229D",code:8861,alias:"circled_dash",name:"circled_dash",tags:["color_circled_dash"],nameUnicode:"CIRCLED DASH",width:"+0.5ex"},{symbol:"⎊",unicodeHex:"238A",code:9098,alias:"circled_triangle_down",name:"circled_triangle_down",tags:["color_circled_triangle_down"],nameUnicode:"CIRCLED TRIANGLE DOWN",width:"+0.5ex"},{symbol:"⏣",unicodeHex:"23E3",code:9187,alias:"benzene_ring",name:"benzene_ring_with_circle",tags:["color_benzene_ring"],nameUnicode:"BENZENE RING WITH CIRCLE",width:"+0.5ex"},{symbol:"✓",unicodeHex:"2713",code:10003,alias:"check_mark",name:"check_mark",tags:["color_check_mark"],nameUnicode:"CHECK MARK",width:"+0.5ex"},{symbol:"‘",unicodeHex:"2018",code:8216,alias:"single_quote_left",name:"left_single_quotation_mark",tags:["color_single_quote_left"],nameUnicode:"LEFT SINGLE QUOTATION MARK",width:"+0.3ex"},{symbol:"’",unicodeHex:"2019",code:8217,alias:"single_quote_right",name:"right_single_quotation_mark",tags:["color_single_quote_right"],nameUnicode:"RIGHT SINGLE QUOTATION MARK",width:"+0.3ex"},{symbol:"‚",unicodeHex:"201A",code:8218,alias:"single_quote_low",name:"single_low_9_quotation_mark",tags:["color_single_quote_low"],nameUnicode:"SINGLE LOW-9 QUOTATION MARK",width:"+0.3ex"},{symbol:"‛",unicodeHex:"201B",code:8219,alias:"single_quote_reversed",name:"single_high_reversed_9_quotation_mark",tags:["color_single_quote_reversed"],nameUnicode:"SINGLE HIGH-REVERSED-9 QUOTATION MARK",width:"+0.3ex"},{symbol:"“",unicodeHex:"201C",code:8220,alias:"double_quote_left",name:"left_double_quotation_mark",tags:["color_double_quote_left"],nameUnicode:"LEFT DOUBLE QUOTATION MARK",width:"+0.3ex"},{symbol:"”",unicodeHex:"201D",code:8221,alias:"double_quote_right",name:"right_double_quotation_mark",tags:["color_double_quote_right"],nameUnicode:"RIGHT DOUBLE QUOTATION MARK",width:"+0.3ex"},{symbol:"„",unicodeHex:"201E",code:8222,alias:"double_quote_low",name:"double_low_9_quotation_mark",tags:["color_double_quote_low"],nameUnicode:"DOUBLE LOW-9 QUOTATION MARK",width:"+0.3ex"},{symbol:"❛",unicodeHex:"275B",code:10075,alias:"heavy_single_quote_turned",name:"heavy_single_turned_comma_quotation_mark_ornament",tags:["color_heavy_single_quote_turned"],nameUnicode:"HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"❜",unicodeHex:"275C",code:10076,alias:"heavy_single_quote",name:"heavy_single_comma_quotation_mark_ornament",tags:["color_heavy_single_quote"],nameUnicode:"HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"❝",unicodeHex:"275D",code:10077,alias:"heavy_double_quote_turned",name:"heavy_double_turned_comma_quotation_mark_ornament",tags:["color_heavy_double_quote_turned"],nameUnicode:"HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"❞",unicodeHex:"275E",code:10078,alias:"heavy_double_quote",name:"heavy_double_comma_quotation_mark_ornament",tags:["color_heavy_double_quote"],nameUnicode:"HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT",width:"+0.3ex"},{symbol:"Ⓐ",unicodeHex:"24B6",code:9398,alias:"circled_capital_a",name:"circled_latin_capital_a",tags:["color_circled_capital_a"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER A",width:"+0.6ex"},{symbol:"Ⓑ",unicodeHex:"24B7",code:9399,alias:"circled_capital_b",name:"circled_latin_capital_b",tags:["color_circled_capital_b"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER B",width:"+0.6ex"},{symbol:"Ⓒ",unicodeHex:"24B8",code:9400,alias:"circled_capital_c",name:"circled_latin_capital_c",tags:["color_circled_capital_c"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER C",width:"+0.6ex"},{symbol:"Ⓓ",unicodeHex:"24B9",code:9401,alias:"circled_capital_d",name:"circled_latin_capital_d",tags:["color_circled_capital_d"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER D",width:"+0.6ex"},{symbol:"Ⓔ",unicodeHex:"24BA",code:9402,alias:"circled_capital_e",name:"circled_latin_capital_e",tags:["color_circled_capital_e"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER E",width:"+0.6ex"},{symbol:"Ⓕ",unicodeHex:"24BB",code:9403,alias:"circled_capital_f",name:"circled_latin_capital_f",tags:["color_circled_capital_f"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER F",width:"+0.6ex"},{symbol:"Ⓖ",unicodeHex:"24BC",code:9404,alias:"circled_capital_g",name:"circled_latin_capital_g",tags:["color_circled_capital_g"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER G",width:"+0.6ex"},{symbol:"Ⓗ",unicodeHex:"24BD",code:9405,alias:"circled_capital_h",name:"circled_latin_capital_h",tags:["color_circled_capital_h"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER H",width:"+0.6ex"},{symbol:"Ⓘ",unicodeHex:"24BE",code:9406,alias:"circled_capital_i",name:"circled_latin_capital_i",tags:["color_circled_capital_i"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER I",width:"+0.6ex"},{symbol:"Ⓙ",unicodeHex:"24BF",code:9407,alias:"circled_capital_j",name:"circled_latin_capital_j",tags:["color_circled_capital_j"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER J",width:"+0.6ex"},{symbol:"Ⓚ",unicodeHex:"24C0",code:9408,alias:"circled_capital_k",name:"circled_latin_capital_k",tags:["color_circled_capital_k"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER K",width:"+0.6ex"},{symbol:"Ⓛ",unicodeHex:"24C1",code:9409,alias:"circled_capital_l",name:"circled_latin_capital_l",tags:["color_circled_capital_l"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER L",width:"+0.6ex"},{symbol:"Ⓜ",unicodeHex:"24C2",code:9410,alias:"circled_capital_m",name:"circled_latin_capital_m",tags:["color_circled_capital_m"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER M",width:"+0.6ex"},{symbol:"Ⓝ",unicodeHex:"24C3",code:9411,alias:"circled_capital_n",name:"circled_latin_capital_n",tags:["color_circled_capital_n"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER N",width:"+0.6ex"},{symbol:"Ⓞ",unicodeHex:"24C4",code:9412,alias:"circled_capital_o",name:"circled_latin_capital_o",tags:["color_circled_capital_o"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER O",width:"+0.6ex"},{symbol:"Ⓟ",unicodeHex:"24C5",code:9413,alias:"circled_capital_p",name:"circled_latin_capital_p",tags:["color_circled_capital_p"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER P",width:"+0.6ex"},{symbol:"Ⓠ",unicodeHex:"24C6",code:9414,alias:"circled_capital_q",name:"circled_latin_capital_q",tags:["color_circled_capital_q"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER Q",width:"+0.6ex"},{symbol:"Ⓡ",unicodeHex:"24C7",code:9415,alias:"circled_capital_r",name:"circled_latin_capital_r",tags:["color_circled_capital_r"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER R",width:"+0.6ex"},{symbol:"Ⓢ",unicodeHex:"24C8",code:9416,alias:"circled_capital_s",name:"circled_latin_capital_s",tags:["color_circled_capital_s"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER S",width:"+0.6ex"},{symbol:"Ⓣ",unicodeHex:"24C9",code:9417,alias:"circled_capital_t",name:"circled_latin_capital_t",tags:["color_circled_capital_t"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER T",width:"+0.6ex"},{symbol:"Ⓤ",unicodeHex:"24CA",code:9418,alias:"circled_capital_u",name:"circled_latin_capital_u",tags:["color_circled_capital_u"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER U",width:"+0.6ex"},{symbol:"Ⓥ",unicodeHex:"24CB",code:9419,alias:"circled_capital_v",name:"circled_latin_capital_v",tags:["color_circled_capital_v"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER V",width:"+0.6ex"},{symbol:"Ⓦ",unicodeHex:"24CC",code:9420,alias:"circled_capital_w",name:"circled_latin_capital_w",tags:["color_circled_capital_w"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER W",width:"+0.6ex"},{symbol:"Ⓧ",unicodeHex:"24CD",code:9421,alias:"circled_capital_x",name:"circled_latin_capital_x",tags:["color_circled_capital_x"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER X",width:"+0.6ex"},{symbol:"Ⓨ",unicodeHex:"24CE",code:9422,alias:"circled_capital_y",name:"circled_latin_capital_y",tags:["color_circled_capital_y"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER Y",width:"+0.6ex"},{symbol:"Ⓩ",unicodeHex:"24CF",code:9423,alias:"circled_capital_z",name:"circled_latin_capital_z",tags:["color_circled_capital_z"],nameUnicode:"CIRCLED LATIN CAPITAL LETTER Z",width:"+0.6ex"},{symbol:"ⓐ",unicodeHex:"24D0",code:9424,alias:"circled_a",name:"circled_latin_small_a",tags:["color_circled_a"],nameUnicode:"CIRCLED LATIN SMALL LETTER A",width:"+0.6ex"},{symbol:"ⓑ",unicodeHex:"24D1",code:9425,alias:"circled_b",name:"circled_latin_small_b",tags:["color_circled_b"],nameUnicode:"CIRCLED LATIN SMALL LETTER B",width:"+0.6ex"},{symbol:"ⓒ",unicodeHex:"24D2",code:9426,alias:"circled_c",name:"circled_latin_small_c",tags:["color_circled_c"],nameUnicode:"CIRCLED LATIN SMALL LETTER C",width:"+0.6ex"},{symbol:"ⓓ",unicodeHex:"24D3",code:9427,alias:"circled_d",name:"circled_latin_small_d",tags:["color_circled_d"],nameUnicode:"CIRCLED LATIN SMALL LETTER D",width:"+0.6ex"},{symbol:"ⓔ",unicodeHex:"24D4",code:9428,alias:"circled_e",name:"circled_latin_small_e",tags:["color_circled_e"],nameUnicode:"CIRCLED LATIN SMALL LETTER E",width:"+0.6ex"},{symbol:"ⓕ",unicodeHex:"24D5",code:9429,alias:"circled_f",name:"circled_latin_small_f",tags:["color_circled_f"],nameUnicode:"CIRCLED LATIN SMALL LETTER F",width:"+0.6ex"},{symbol:"ⓖ",unicodeHex:"24D6",code:9430,alias:"circled_g",name:"circled_latin_small_g",tags:["color_circled_g"],nameUnicode:"CIRCLED LATIN SMALL LETTER G",width:"+0.6ex"},{symbol:"ⓗ",unicodeHex:"24D7",code:9431,alias:"circled_h",name:"circled_latin_small_h",tags:["color_circled_h"],nameUnicode:"CIRCLED LATIN SMALL LETTER H",width:"+0.6ex"},{symbol:"ⓘ",unicodeHex:"24D8",code:9432,alias:"circled_i",name:"circled_latin_small_i",tags:["color_circled_i"],nameUnicode:"CIRCLED LATIN SMALL LETTER I",width:"+0.6ex"},{symbol:"ⓙ",unicodeHex:"24D9",code:9433,alias:"circled_j",name:"circled_latin_small_j",tags:["color_circled_j"],nameUnicode:"CIRCLED LATIN SMALL LETTER J",width:"+0.6ex"},{symbol:"ⓚ",unicodeHex:"24DA",code:9434,alias:"circled_k",name:"circled_latin_small_k",tags:["color_circled_k"],nameUnicode:"CIRCLED LATIN SMALL LETTER K",width:"+0.6ex"},{symbol:"ⓛ",unicodeHex:"24DB",code:9435,alias:"circled_l",name:"circled_latin_small_l",tags:["color_circled_l"],nameUnicode:"CIRCLED LATIN SMALL LETTER L",width:"+0.6ex"},{symbol:"ⓜ",unicodeHex:"24DC",code:9436,alias:"circled_m",name:"circled_latin_small_m",tags:["color_circled_m"],nameUnicode:"CIRCLED LATIN SMALL LETTER M",width:"+0.6ex"},{symbol:"ⓝ",unicodeHex:"24DD",code:9437,alias:"circled_n",name:"circled_latin_small_n",tags:["color_circled_n"],nameUnicode:"CIRCLED LATIN SMALL LETTER N",width:"+0.6ex"},{symbol:"ⓞ",unicodeHex:"24DE",code:9438,alias:"circled_o",name:"circled_latin_small_o",tags:["color_circled_o"],nameUnicode:"CIRCLED LATIN SMALL LETTER O",width:"+0.6ex"},{symbol:"ⓟ",unicodeHex:"24DF",code:9439,alias:"circled_p",name:"circled_latin_small_p",tags:["color_circled_p"],nameUnicode:"CIRCLED LATIN SMALL LETTER P",width:"+0.6ex"},{symbol:"ⓠ",unicodeHex:"24E0",code:9440,alias:"circled_q",name:"circled_latin_small_q",tags:["color_circled_q"],nameUnicode:"CIRCLED LATIN SMALL LETTER Q",width:"+0.6ex"},{symbol:"ⓡ",unicodeHex:"24E1",code:9441,alias:"circled_r",name:"circled_latin_small_r",tags:["color_circled_r"],nameUnicode:"CIRCLED LATIN SMALL LETTER R",width:"+0.6ex"},{symbol:"ⓢ",unicodeHex:"24E2",code:9442,alias:"circled_s",name:"circled_latin_small_s",tags:["color_circled_s"],nameUnicode:"CIRCLED LATIN SMALL LETTER S",width:"+0.6ex"},{symbol:"ⓣ",unicodeHex:"24E3",code:9443,alias:"circled_t",name:"circled_latin_small_t",tags:["color_circled_t"],nameUnicode:"CIRCLED LATIN SMALL LETTER T",width:"+0.6ex"},{symbol:"ⓤ",unicodeHex:"24E4",code:9444,alias:"circled_u",name:"circled_latin_small_u",tags:["color_circled_u"],nameUnicode:"CIRCLED LATIN SMALL LETTER U",width:"+0.6ex"},{symbol:"ⓥ",unicodeHex:"24E5",code:9445,alias:"circled_v",name:"circled_latin_small_v",tags:["color_circled_v"],nameUnicode:"CIRCLED LATIN SMALL LETTER V",width:"+0.6ex"},{symbol:"ⓦ",unicodeHex:"24E6",code:9446,alias:"circled_w",name:"circled_latin_small_w",tags:["color_circled_w"],nameUnicode:"CIRCLED LATIN SMALL LETTER W",width:"+0.6ex"},{symbol:"ⓧ",unicodeHex:"24E7",code:9447,alias:"circled_x",name:"circled_latin_small_x",tags:["color_circled_x"],nameUnicode:"CIRCLED LATIN SMALL LETTER X",width:"+0.6ex"},{symbol:"ⓨ",unicodeHex:"24E8",code:9448,alias:"circled_y",name:"circled_latin_small_y",tags:["color_circled_y"],nameUnicode:"CIRCLED LATIN SMALL LETTER Y",width:"+0.6ex"},{symbol:"ⓩ",unicodeHex:"24E9",code:9449,alias:"circled_z",name:"circled_latin_small_z",tags:["color_circled_z"],nameUnicode:"CIRCLED LATIN SMALL LETTER Z",width:"+0.6ex"},{symbol:"⍰",unicodeHex:"2370",code:9072,alias:"squared_question",name:"apl_functional_symbol_quad_question",tags:["color_squared_question"],nameUnicode:"APL FUNCTIONAL SYMBOL QUAD QUESTION",width:"+0.6ex"},{symbol:"⌦",unicodeHex:"2326",code:8998,alias:"erase_right",name:"erase_to_the_right",tags:["color_erase_right"],nameUnicode:"ERASE TO THE RIGHT",width:"+0.6ex"},{symbol:"⌫",unicodeHex:"232B",code:9003,alias:"erase_left",name:"erase_to_the_left",tags:["color_erase_left"],nameUnicode:"ERASE TO THE LEFT",width:"+0.6ex"},{symbol:"✆",unicodeHex:"2706",code:9990,alias:"telephone_location",name:"telephone_location_sign",tags:["color_telephone_location"],nameUnicode:"TELEPHONE LOCATION SIGN",width:"+0.6ex"}]},283:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.parseMarkdownByElement=e.parseMmdElement=e.formatSourceMML=e.formatSource=e.formatSourceHtmlWord=e.formatSourceHtml=void 0;var r=n(1635);e.formatSourceHtml=function(t,e){return void 0===e&&(e=!1),(t=e?t:t.trim()).replace(/&amp;/g,"&").replace(/&nbsp;/g," ").replace(/&lt;/g,"<").replace(/&gt;/g,">")};e.formatSourceHtmlWord=function(t,e){return void 0===e&&(e=!1),(t=e?t:t.trim()).replace(/<maligngroup><\/maligngroup>/g,"<maligngroup/>").replace(/<malignmark><\/malignmark>/g,"<malignmark/>").replace(/&nbsp;/g,"&#xA0;")};e.formatSource=function(t,e){return void 0===e&&(e=!1),(t=e?t:t.trim()).replace(/\u2062/g,"").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")};e.formatSourceMML=function(t){return t.trim().replace(/&#xA0;/g," ").replace(/\u00A0/g," ").replace(/&nbsp;/g," ")};e.parseMmdElement=function(t,n){var r,i;if(void 0===n&&(n=[]),!t)return n;if(["MOLECULE","CHARTDATA"].includes(null===(r=t.tagName)||void 0===r?void 0:r.toUpperCase())){if(null===(i=t.children)||void 0===i?void 0:i.length)for(var o=0;o<t.children.length;o++)n.push({type:t.children[o].tagName.toLowerCase(),value:(0,e.formatSourceHtml)(t.children[o].innerHTML)});return n}if(!t.children||!t.children.length)return n;for(var a=0;a<t.children.length;a++){var s=t.children[a];["smiles","smiles-inline"].includes(t.className)&&"SVG"===s.tagName.toUpperCase()?n.push({type:"svg",value:s.outerHTML}):-1!==["MATHML","MATHMLWORD","ASCIIMATH","LATEX","MJX-CONTAINER","LINEARMATH","TABLE","TSV","CSV","SMILES","TABLE-MARKDOWN","ERROR"].indexOf(s.tagName)&&("MJX-CONTAINER"===s.tagName||"TABLE"===s.tagName?"TABLE"===s.tagName?n.push({type:"html",value:s.outerHTML}):n.push({type:"svg",value:s.innerHTML}):n.push({type:s.tagName.toLowerCase(),value:["LATEX","ASCIIMATH","LINEARMATH","ERROR","TSV","CSV","TABLE-MARKDOWN","SMILES"].includes(s.tagName)?(0,e.formatSourceHtml)(s.innerHTML,"TSV"===s.tagName||"CSV"===s.tagName||"TABLE-MARKDOWN"===s.tagName):"MATHMLWORD"===s.tagName?(0,e.formatSourceHtmlWord)(s.innerHTML):s.innerHTML}))}return n};e.parseMarkdownByElement=function(t,n){var i,o;if(void 0===n&&(n=!0),!t)return null;var a=n?".math-inline, .math-block, .table_tabular, .inline-tabular, .smiles, .smiles-inline":"div:not(.cell-item) > .math-inline, div:not(.cell-item) > .math-block, .table_tabular, div:not(.cell-item) > .inline-tabular, div:not(.cell-item) > .smiles, div:not(.cell-item) > .smiles-inline",s=Array.from(t.querySelectorAll("".concat(a,", ").concat("pre > mol, svg > metadata > molecule",", ").concat("svg > metadata > chartdata"))).filter((function(t){var e,n;return!(null===(e=t.classList)||void 0===e?void 0:e.contains("table_tabular"))||!(null===(n=t.parentElement)||void 0===n?void 0:n.closest(".table_tabular"))})),l=[];try{for(var T=r.__values(s),Q=T.next();!Q.done;Q=T.next()){var c=Q.value;l=(0,e.parseMmdElement)(c,l)}}catch(t){i={error:t}}finally{try{Q&&!Q.done&&(o=T.return)&&o.call(T)}finally{if(i)throw i.error}}return l}},2599:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.formatMathJaxError=void 0;e.formatMathJaxError=function(t,e,n){void 0===n&&(n="MathJax");try{var r="string"==typeof e?e:"Invalid LaTeX data";if("object"==typeof t&&null!==t){var i={message:t.message||"Unknown error",latex:r};console.log("[".concat(n,"] ERROR=>"),JSON.stringify(i,null,2))}else"string"==typeof t?console.log("[".concat(n,"] ERROR=> ").concat(t),"\nLaTeX: ".concat(r)):console.log("[".concat(n,"] ERROR=> Unexpected error type"),t,"\nLaTeX: ".concat(r))}catch(r){console.log("[".concat(n,"] ERROR (formatting error)=>"),r),console.log("[".concat(n,"] Original Error=>"),t),console.log("[".concat(n,"] LaTeX=> ").concat(e))}}},7726:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.reFootNoteMark=e.reOpenTagFootnotetextNumbered=e.reFootnotetextToken=e.reOpenTagFootnotetextG=e.reOpenTagFootnotetext=e.reOpenTagFootnoteNumbered=e.reFootnoteToken=e.reOpenTagFootnoteG=e.reOpenTagFootnote=e.reFootNote=e.closeTagTabular=e.openTagTabular=e.reMultiRow=e.reMultiRowWithVPos=e.reAddContentsLineG=e.reAddContentsLine=e.reSetCounterG=e.reSetCounter=e.defQED=e.reNewCommandQedSymbolG=e.reNewCommandQedSymbol=e.defTheoremStyle=e.reTheoremStyleG=e.reTheoremStyle=e.reNewTheoremUnNumbered=e.reNewTheoremNumbered2=e.reNewTheoremNumbered=e.reNewTheorem=e.reNewTheoremUnNumberedInit=e.reNewTheoremInit=e.reNewTheoremG=e.openTagProof=e.openTagDescription=e.openTag=e.labelTagG=e.labelTag=e.closeTagSpan=e.reSeparatingSpanG=e.reSeparatingSpan=e.reSpanG=e.reSpan=e.markerCloseTagSpan=e.markerBeginTagSpan=e.reOpenTagSmiles=e.open_tag_smiles=e.mathMLInlineRegex=e.closeTagMML=e.openTagMML=e.attribute=e.attr_value=void 0,e.END_LIST_ENV_INLINE_RE=e.BEGIN_LIST_ENV_INLINE_RE=e.BEGIN_LIST_ENV_RE=e.BEGIN_LST_WITH_TRAIL_WS_NL_RE=e.END_TABULAR_INLINE_RE=e.END_LST_INLINE_RE=e.BEGIN_TABULAR_BRACKET_RE_G=e.BEGIN_TABULAR_BRACKET_RE=e.BEGIN_TABULAR_INLINE_RE=e.BEGIN_LST_INLINE_RE=e.BEGIN_LST_RE=e.END_LST_RE=e.BEGIN_LST_FAST_RE=e.LATEX_BLOCK_ENV=e.RE_INCLUDEGRAPHICS_WITH_ALIGNMENT_GLOBAL=e.RE_ALIGN_CENTERING_GLOBAL=e.RE_CAPTION_TAG_BEGIN=e.RE_CAPTION_TAG_GLOBAL=e.RE_CAPTION_TAG=e.RE_BEGIN_TABLE_OR_FIGURE_WITH_PLACEMENT=e.RE_BEGIN_FIGURE_OR_TABLE_ENV=e.RE_ALIGN_ENV_BLOCK=e.RE_BEGIN_ALIGN_ENV=e.RE_CAPTION_SETUP=e.RE_CAPTION_SETUP_TAG_BEGIN=e.lineSpaceTag=e.RE_DIMENSIONAL_UNIT_TAG=e.RE_CLINE=e.RE_HDASHLINE=e.RE_HHLINE=e.RE_HLINE=e.RE_TAG_WITH_CLINE=e.RE_TAG_WITH_HDASHLINE=e.RE_TAG_WITH_HHLINE=e.RE_TAG_WITH_HLINE=e.attrsSharedMarker=e.ANGLE_BRACKETS_RE=e.preserveNewlineUnlessDoubleAngleUuidRegex=e.singleCurlyBracketPattern=e.doubleCurlyBracketUuidPattern=e.singleAngleBracketPattern=e.doubleAngleBracketUuidPattern=e.uuidPatternNoCapture=e.uuidPattern=e.svgInlineRegex=e.svgRegex=e.reNumber=e.reDiagbox=e.reDiagboxG=e.reFootNoteText=void 0,e.INLINE_ELEMENT_TOKENS=e.CLOSING_STYLE_TOKENS=e.OPENING_STYLE_TOKENS=e.renderOptionsDef=e.codeHighlightDef=e.mathTokenTypes=e.terminatedRules=e.mdSeparatorsDef=e.csvSeparatorsDef=e.tsvSeparatorsDef=e.mathEnvironments=e.latexEnvironments=e.RE_EMPTY_TEXT=e.SIMPLE_MATH_DELIM_RE=e.TEXTWIDTH_RE=e.HIGHLIGHT_TEXT_COLOR=e.HIGHLIGHT_COLOR=e.LST_HLJS_LANGUAGES=e.ENUM_STYLES=e.ITEM_LEVEL_COMMANDS=e.ENUM_LEVEL_COMMANDS=e.LATEX_ENUM_STYLE_KEY_RE=e.LATEX_ENUM_STYLE_RE=e.BLOCK_LATEX_RE=e.LATEX_BLOCK_ENV_OPEN_RE=e.LATEX_LIST_BOUNDARY_INLINE_RE=e.LATEX_ITEM_COMMAND_INLINE_RE=e.LATEX_ITEM_COMMAND_RE=e.END_LIST_ENV_RE=void 0;var r=n(1635);e.attr_value="(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\")",e.attribute="(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*"+e.attr_value+")?)";var i="^<(math)"+e.attribute+"*\\s*\\/?>";e.openTagMML=new RegExp("(?:"+i+")"),e.closeTagMML=new RegExp("(?:^<\\/math*\\s*>)"),e.mathMLInlineRegex=/^<(math\b[^>]*)>[\s\S]*<\/math>/,e.open_tag_smiles="^<(smiles)"+e.attribute+"*\\s*\\/?>",e.reOpenTagSmiles=new RegExp("(?:"+e.open_tag_smiles+")"),e.markerBeginTagSpan=/^<\/?(span)(?=(\s|>|$))/i,e.markerCloseTagSpan=/<\/span\s*>/i,e.reSpan=/^<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(.*)<\/span\>/,e.reSpanG=/<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(.*)<\/span\>/,e.reSeparatingSpan=/^<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(\s*)<\/span\>/,e.reSeparatingSpanG=/<(span\s*(?:class="(?<className>[^>]*)")\s*([^>]*))>(\s*)<\/span\>/;e.closeTagSpan=new RegExp("(?:<\\/span*\\s*>)"),e.labelTag=/\\label\s{0,}\{([^}]*)\}/,e.labelTagG=/\\label\s{0,}\{([^}]*)\}/g,e.openTag=/\\begin\s{0,}\{(?<name>[^}]*)\}/,e.openTagDescription=/\\begin\s{0,}\{(?<name>[^}]*)\}\s{0,}\[(?<description>[^\]]*)\]/,e.openTagProof=/\\begin\s{0,}\{([proof\s]+)\}/,e.reNewTheoremG=/\\newtheorem([^}]*)\s{0,}\{(?<name>[^}]*)\}/,e.reNewTheoremInit=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}/,e.reNewTheoremUnNumberedInit=/^\\newtheorem\*\s{0,}\{(?<name>[^}]*)\}/,e.reNewTheorem=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<print>[^}]*)\}/,e.reNewTheoremNumbered=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<print>[^}]*)\}\s{0,}\[(?<numbered>[^\]]*)\]/,e.reNewTheoremNumbered2=/^\\newtheorem\s{0,}\{(?<name>[^}]*)\}\s{0,}\[(?<numbered>[^\]]*)\]\s{0,}\{(?<print>[^}]*)\}/,e.reNewTheoremUnNumbered=/^\\newtheorem\*\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<print>[^}]*)\}/,e.reTheoremStyle=/^\\theoremstyle\s{0,}\{(definition|plain|remark)\}/,e.reTheoremStyleG=/\\theoremstyle\s{0,}\{(definition|plain|remark)\}/,e.defTheoremStyle="plain",e.reNewCommandQedSymbol=/^\\renewcommand\s{0,}\\qedsymbol\s{0,}\{(?<qed>[^}]*)\}/,e.reNewCommandQedSymbolG=/\\renewcommand\s{0,}\\qedsymbol\s{0,}\{(?<qed>[^}]*)\}/,e.defQED="$\\square$",e.reSetCounter=/^\\setcounter\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<number>[^}]*)\}/,e.reSetCounterG=/\\setcounter\s{0,}\{(?<name>[^}]*)\}\s{0,}\{(?<number>[^}]*)\}/,e.reAddContentsLine=/^\\addcontentsline\s{0,}\{(?<exp>[^}]*)\}\s{0,}\{(?<unit>[^}]*)\}/,e.reAddContentsLineG=/^\\addcontentsline\s{0,}\{(?<exp>[^}]*)\}\s{0,}\{(?<unit>[^}]*)\}/,e.reMultiRowWithVPos=/(?:\\multirow\s{0,}\[(?<vpos>[^\]]*)\]\s{0,}\{(?<nrows>[^}]*)\}\s{0,}\{(?<width>[^}]*)\})/,e.reMultiRow=/(?:\\multirow\s{0,}\{(?<nrows>[^}]*)\}\s{0,}\{(?<width>[^}]*)\})/,e.openTagTabular=/^\\begin\s{0,}{tabular}\s{0,}(?:\[[^\]]*\])?\s{0,}\{([^}]*)\}/,e.closeTagTabular=/^\\end\s{0,}{tabular}/,e.reFootNote=/^\\footnote/,e.reOpenTagFootnote=/^\\footnote\s{0,}\[\s{0,}\]\s{0,}{|^\\footnote\s{0,}\[-?\d+\]\s{0,}{|^\\footnote\s{0,}{/,e.reOpenTagFootnoteG=/\\footnote\s{0,}\[\s{0,}\]\s{0,}{|\\footnote\s{0,}\[-?\d+\]\s{0,}{|\\footnote\s{0,}{/,e.reFootnoteToken=/\\footnote(?![a-zA-Z])/,e.reOpenTagFootnoteNumbered=/\\footnote\s{0,}\[(?<number>-?\d+)\]\s{0,}{/,e.reOpenTagFootnotetext=/^\\footnotetext\s{0,}\[\s{0,}\]\s{0,}{|^\\footnotetext\s{0,}\[-?\d+\]\s{0,}{|^\\footnotetext\s{0,}{|^\\blfootnotetext\s{0,}{/,e.reOpenTagFootnotetextG=/\\footnotetext\s{0,}\[\s{0,}\]\s{0,}{|\\footnotetext\s{0,}\[-?\d+\]\s{0,}{|\\footnotetext\s{0,}{|\\blfootnotetext\s{0,}{/,e.reFootnotetextToken=/\\(?:bl)?footnotetext(?![a-zA-Z])/,e.reOpenTagFootnotetextNumbered=/\\footnotetext\s{0,}\[(?<number>-?\d+)\]\s{0,}{/,e.reFootNoteMark=/^\\footnotemark/,e.reFootNoteText=/^\\footnotetext|\\blfootnotetext/,e.reDiagboxG=/\\(diagbox|backslashbox|slashbox)(\[[^\]]*\])?/g,e.reDiagbox=/\\(diagbox|backslashbox|slashbox)(?:\[(.*?)\])?/,e.reNumber=/^-?\d+$/,e.svgRegex=/^<svg\b[^>]*>[\s\S]*<\/svg>$/,e.svgInlineRegex=/^<svg\b[^>]*>[\s\S]*<\/svg>/,e.uuidPattern="(f[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})",e.uuidPatternNoCapture="f[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}",e.doubleAngleBracketUuidPattern=new RegExp("<<(?:".concat(e.uuidPattern,")>>"),"g"),e.singleAngleBracketPattern=new RegExp("<(?:".concat(e.uuidPattern,")>"),"g"),e.doubleCurlyBracketUuidPattern=new RegExp("\\{\\{(?:".concat(e.uuidPattern,")\\}\\}"),"g"),e.singleCurlyBracketPattern=new RegExp("\\{(?:".concat(e.uuidPattern,")\\}"),"g"),e.preserveNewlineUnlessDoubleAngleUuidRegex=new RegExp(String.raw(o||(o=r.__makeTemplateObject(["\r?\n(?!s*<<(?:",")>>)"],["\\r?\\n(?!\\s*<<(?:",")>>)"])),e.uuidPatternNoCapture),"g"),e.ANGLE_BRACKETS_RE=/[<>]/g,e.attrsSharedMarker=Symbol.for("mathpix.tabular.attrsShared"),e.RE_TAG_WITH_HLINE=/\[(.*?)\]\s{0,}\\hline/,e.RE_TAG_WITH_HHLINE=/\[(.*?)\]\s{0,}\\hhline/,e.RE_TAG_WITH_HDASHLINE=/\[(.*?)\]\s{0,}\\hdashline/,e.RE_TAG_WITH_CLINE=/\[(.*?)\]\s{0,}\\cline\s{0,}\{([^}]*)\}/,e.RE_HLINE=/\\hline/,e.RE_HHLINE=/\\hhline/,e.RE_HDASHLINE=/\\hdashline/,e.RE_CLINE=/\\cline\s{0,}\{([^}]*)\}/,e.RE_DIMENSIONAL_UNIT_TAG=/\[(\d+(?:\.\d+)?(?:ex|pt|em|px|cm|mm|in))\]?/,e.lineSpaceTag=new RegExp([e.RE_TAG_WITH_HLINE.source,e.RE_TAG_WITH_HHLINE.source,e.RE_TAG_WITH_HDASHLINE.source,e.RE_TAG_WITH_CLINE.source,e.RE_HLINE.source,e.RE_HHLINE.source,e.RE_HDASHLINE.source,e.RE_CLINE.source,e.RE_DIMENSIONAL_UNIT_TAG.source].join("|"),"g"),e.RE_CAPTION_SETUP_TAG_BEGIN=/\\captionsetup\s{0,}\{/,e.RE_CAPTION_SETUP=/^\\captionsetup\s{0,}\{([^}]*)\}/,e.RE_BEGIN_ALIGN_ENV=/\\begin\s{0,}\{(center|left|right)\}/,e.RE_ALIGN_ENV_BLOCK=/\\begin\s{0,}\{(center|left|right)\}\s{0,}([\s\S]*?)\s{0,}\\end\s{0,}\{(center|left|right)\}/,e.RE_BEGIN_FIGURE_OR_TABLE_ENV=/\\begin\s{0,}\{(table|figure)\}/,e.RE_BEGIN_TABLE_OR_FIGURE_WITH_PLACEMENT=/\\begin\s{0,}\{(table|figure)\}\s{0,}\[(H|\!H|H\!|h|\!h|h\!|t|\!t|b|\!b|p|\!p)\]/,e.RE_CAPTION_TAG=/\\caption\s{0,}\{([^}]*)\}/,e.RE_CAPTION_TAG_GLOBAL=/\s{0,}\\caption\s{0,}\{([^}]*)\}\s{0,}/g,e.RE_CAPTION_TAG_BEGIN=/\\caption\s{0,}\{/,e.RE_ALIGN_CENTERING_GLOBAL=/\\centering/g,e.RE_INCLUDEGRAPHICS_WITH_ALIGNMENT_GLOBAL=/\\includegraphics\[((.*)(center|left|right))\]\s{0,}\{([^{}]*)\}/g,e.LATEX_BLOCK_ENV=new Set(["lstlisting","itemize","enumerate"]),e.BEGIN_LST_FAST_RE=/^\\begin\{lstlisting\}/,e.END_LST_RE=/^\\end\{lstlisting\}\s*$/,e.BEGIN_LST_RE=/^\\begin\{lstlisting\}(?:\[(.*?)\])?\s*$/,e.BEGIN_LST_INLINE_RE=/\\begin\{lstlisting\}(?:\[(.*?)\])?/,e.BEGIN_TABULAR_INLINE_RE=/\\begin\s{0,}{tabular}\s{0,}(?:\[[^\]]*\])?\s{0,}\{([^}]*)\}/,e.BEGIN_TABULAR_BRACKET_RE=/\\begin\s{0,}{tabular}\s{0,}(?:\[([^\]]*)\])?\s{0,}\{([^}]*)\}/,e.BEGIN_TABULAR_BRACKET_RE_G=/\\begin\s{0,}{tabular}\s{0,}(?:\[([^\]]*)\])?\s{0,}\{([^}]*)\}/g,e.END_LST_INLINE_RE=/\\end\{lstlisting\}/,e.END_TABULAR_INLINE_RE=/\\end\{tabular\}/;var o,a,s,l=String.raw(a||(a=r.__makeTemplateObject(["(?:[^S\r\n]*\r?\n)?"],["(?:[^\\S\\r\\n]*\\r?\\n)?"])));e.BEGIN_LST_WITH_TRAIL_WS_NL_RE=new RegExp(String.raw(s||(s=r.__makeTemplateObject(["^\\begin{lstlisting}(?:[(.*?)])?"],["^\\\\begin\\{lstlisting\\}(?:\\[(.*?)\\])?"])))+l),e.BEGIN_LIST_ENV_RE=/^\\begin\s*\{(itemize|enumerate)\}/,e.BEGIN_LIST_ENV_INLINE_RE=/\\begin\s*\{(itemize|enumerate)\}/,e.END_LIST_ENV_INLINE_RE=/\\end\s*\{(itemize|enumerate)\}/,e.END_LIST_ENV_RE=/^\\end\s*\{(itemize|enumerate)\}/,e.LATEX_ITEM_COMMAND_RE=/^(?:\\item\s*\[([^\]]*)\]|\\item)/,e.LATEX_ITEM_COMMAND_INLINE_RE=/(?:item\s*\[([^\]]*)\]|item)/,e.LATEX_LIST_BOUNDARY_INLINE_RE=/\\begin\s*\{(itemize|enumerate)\}|\\end\s*\{(itemize|enumerate)\}|\\item/,e.LATEX_BLOCK_ENV_OPEN_RE=/\\begin{(center|left|right|table|figure|tabular|lstlisting)}/,e.BLOCK_LATEX_RE=/\\begin\{(tabular|itemize|enumerate|lstlisting)\}/,e.LATEX_ENUM_STYLE_RE=/(?:\\alph|\\Alph|\\arabic|\\roman|\\Roman)\s*\{(enumi|enumii|enumiii|enumiv)\}/,e.LATEX_ENUM_STYLE_KEY_RE=/^(?:alph|Alph|arabic|roman|Roman)/,e.ENUM_LEVEL_COMMANDS=["labelenumi","labelenumii","labelenumiii","labelenumiv"],e.ITEM_LEVEL_COMMANDS=["labelitemi","labelitemii","labelitemiii","labelitemiv"],e.ENUM_STYLES={alph:"lower-alpha",Alph:"upper-alpha",arabic:"decimal",roman:"lower-roman",Roman:"upper-roman"},e.LST_HLJS_LANGUAGES={"c++":"cpp",assembler:"x86asm",caml:"ocaml",csh:"shell",inform:"inform7",ksh:"shell",sh:"shell"},e.HIGHLIGHT_COLOR="rgba(0, 147, 255, 0.25)",e.HIGHLIGHT_TEXT_COLOR="#1e2029",e.TEXTWIDTH_RE=/^\s*(\d*\.?\d+)?\s*\\(?:textwidth|linewidth)\b/,e.SIMPLE_MATH_DELIM_RE=/(^|[^\\])\$\$(?!\$)/g,e.RE_EMPTY_TEXT=/^[\s\u00a0]*$/,e.latexEnvironments=["figure","table","tabular","enumerate","itemize","proof","center","left","right","abstract","lstlisting"],e.mathEnvironments=["align","align*","alignat","alignat*","aligned","alignedat","array","Bmatrix","bmatrix","cases","numcases","subnumcases","eqnarray","eqnarray*","equation","equation*","gather","gather*","gathered","matrix","multline","multline*","pmatrix","smallmatrix","split","subarray","Vmatrix","vmatrix"],e.tsvSeparatorsDef={column:"\t",row:"\n"},e.csvSeparatorsDef={column:",",row:"\n",toQuoteAllFields:!1},e.mdSeparatorsDef={column:" ",row:" <br> "},e.terminatedRules={smilesDrawerBlock:{terminated:["paragraph","reference","blockquote","list"]},BeginTable:{terminated:["newTheoremBlock"]},BeginAlign:{terminated:["newTheoremBlock"]},BeginTabular:{terminated:["paragraph","newTheoremBlock"]},BeginProof:{terminated:["newTheoremBlock"]},BeginTheorem:{terminated:["newTheoremBlock"]},newTheoremBlock:{terminated:["pageBreaksBlock"]},ReNewCommand:{terminated:[]},Lists:{terminated:["paragraph"]},separatingSpan:{terminated:[]},headingSection:{terminated:["newTheoremBlock","mathMLBlock"]},addContentsLineBlock:{terminated:["newTheoremBlock"]},mathMLBlock:{terminated:["paragraph","newTheoremBlock"]},abstractBlock:{terminated:["paragraph"]},pageBreaksBlock:{terminated:["paragraph"]},paragraphDiv:{terminated:[]},svg_block:{terminated:["paragraph"]},image_with_size_block:{terminated:["paragraph"]},fence:{terminated:["paragraph","reference","blockquote","list"]}},e.mathTokenTypes=["display_math","inline_math","equation_math_not_number","equation_math"],e.codeHighlightDef={auto:!1,code:!0},e.renderOptionsDef={enable_markdown:!0,enable_latex:!0,enable_markdown_mmd_extensions:!0},e.OPENING_STYLE_TOKENS=["strong_open","em_open","s_open","mark_open","underline_open","out_open","text_latex_open","textbf_open","texttt_open","textit_open"],e.CLOSING_STYLE_TOKENS=["strong_close","em_close","s_close","mark_close","underline_close","out_close","text_latex_close","textbf_close","texttt_close","textit_close"],e.INLINE_ELEMENT_TOKENS=["text","inline_math","inline_mathML","code_inline","smiles_inline","link_open","label","dotfill","textbf","texttt","textit","text_latex","url"]},9921:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.skipBackticks=e.findFirstTagContentWithNesting=e.isEscapedAt=e.applyAttrToInlineMath=e.applyAttrToMathml=e.isMathInText=e.addAttributesToParentToken=e.addAttributesToParentTokenByType=e.getSpacesFromLeft=e.canonicalMathPositions=e.canonicalMath=e.findOpenCloseTagsMathEnvironment=e.findOpenCloseTags=e.findBackTick=e.attrSetToBegin=e.uid=e.arrayResortFromElement=e.arrayDelElement=e.arraysCompare=e.includesMultiMathTag=e.includesMultiMathBeginTag=e.hasOddSimpleMathTag=e.includesSimpleMathTag=e.isNotBackticked=e.getLatexTextWidth=e.getWidthFromDocument=e.beginTag=e.endTag=void 0;var r=n(1635),i=n(7726);e.endTag=function(t,e){void 0===e&&(e=!1);try{return-1!==t.indexOf("*")&&(t=t.replace(/\*/,"\\*")),e?new RegExp("^\\\\ends{0,}{("+t+")}"):new RegExp("\\\\ends{0,}{("+t+")}")}catch(t){return null}};e.beginTag=function(t,e){void 0===e&&(e=!1);try{return-1!==t.indexOf("*")&&(t=t.replace(/\*/,"\\*")),e?new RegExp("^\\\\begins{0,}{("+t+")}"):new RegExp("\\\\begins{0,}{("+t+")}")}catch(t){return null}};e.getWidthFromDocument=function(t){void 0===t&&(t=1200);try{var e=document.getElementById("container-ruller");return e?e.offsetWidth:1200}catch(e){return t}};e.getLatexTextWidth=function(t,n){void 0===n&&(n=1200);var r="";try{var i=t.match(/\\textwidth/);if(!i)return r;n=(0,e.getWidthFromDocument)(n);var o=t.slice(0,i.index);o=o?o.trim():"";var a=parseFloat(o);return r="width: ".concat((a=a||1)*n,"px; ")}catch(t){return r}};e.isNotBackticked=function(t,e){var n,r=0,i=t.length,o=0,a=!1,s=0;n=t.charCodeAt(r);for(var l="",T="",Q=!1;r<i;)96===n?a?(a=!1,s=r,l.includes(e)&&(Q=!0,l="")):o%2==0&&(a=!0,s=r):a?l+=t[r]:T+=t[r],92===n&&r+1<i&&96===t.charCodeAt(r+1)?o++:o=0,++r===i&&a&&(a=!1,r=s+1),n=t.charCodeAt(r);return!Q||T.includes(e)};e.includesSimpleMathTag=function(t,n){return void 0===n&&(n="$$"),t.includes(n)&&(0,e.isNotBackticked)(t,n)};e.hasOddSimpleMathTag=function(t,n){if(void 0===n&&(n="$$"),!(0,e.includesSimpleMathTag)(t,n))return!1;for(var r=new RegExp(i.SIMPLE_MATH_DELIM_RE),o=0;null!==r.exec(t);)o++;return o%2==1};e.includesMultiMathBeginTag=function(t,n){var r=null;try{if(!n.test(t))return r;for(var o=void 0,a=0;a<t.length;a++){r=null;var s=a<t.length?t.slice(a):"";if(!(o=s?s.match(n):null))break;if((0,e.isNotBackticked)(t,o[0])){if(r=null,"\\["===o[0]||"["===o[0])r=/\\\]/;else if("\\("===o[0]||"("===o[0])r=/\\\)/;else if(o[1]){if(i.latexEnvironments.includes(o[1]))return null;r=(0,e.endTag)(o[1])}break}a+=o.index+o[0].length-1}return r}catch(t){return null}};e.includesMultiMathTag=function(t,n){var r,i=!1;if(!n.test(t))return i;for(var o=0;o<t.length;o++){i=!1;var a=o<t.length?t.slice(o):"";if(!(r=a?a.match(n):null))break;if((0,e.isNotBackticked)(t,r[0])){i=!0;break}o+=r.index+r[0].length}return i};e.arraysCompare=function(t,e){return!(t.length<2||e.length<2)&&(t.length==e.length?t.every((function(t,n){return t===e[n]})):t.length<e.length?0===t.filter((function(t){return-1===e.indexOf(t)})).length:0===e.filter((function(e){return-1===t.indexOf(e)})).length)};e.arrayDelElement=function(t,e){var n=t.indexOf(e);return-1===n?t:t.splice(n,1)};e.arrayResortFromElement=function(t,e,n,i){void 0===n&&(n=!1),void 0===i&&(i=-1);var o=t.indexOf(e),a=r.__spreadArray([],r.__read(t),!1),s=r.__spreadArray([],r.__read(t),!1);if(o<a.length-1){if(n){var l=a.splice(0,o),T=s.splice(o+1);if(-1!==i){if(-1!==l.indexOf(i))return[e].concat(l.reverse(),T.reverse());if(-1!==T.indexOf(i))return[e].concat(T,l)}return[e].concat(l.reverse(),T.reverse())}l=a.splice(0,o),T=s.splice(o+1);return[e].concat(l.reverse(),T.reverse())}l=a.splice(0,o);return[e].concat(n?l:l.reverse())};e.uid=function(){return Date.now().toString(36)+Math.random().toString(36).substr(2)};e.attrSetToBegin=function(t,e,n){var r=(null==t?void 0:t.length)?t.findIndex((function(t){return t[0]===e})):-1;r<0?t.unshift([e,n]):t[r]=[e,n]};e.findBackTick=function(t,e,n){void 0===n&&(n="");var r,i,o=t,a=e.length;if(96!==e.charCodeAt(o))return null;var s=o;for(o++;o<a&&96===e.charCodeAt(o);)o++;var l=e.slice(s,o);if(n===l)return{marker:l,posEnd:o};for(r=i=o;-1!==(r=e.indexOf("`",i));){for(i=r+1;i<a&&96===e.charCodeAt(i);)i++;if(i-r===l.length)return{marker:l,content:e.slice(o,r).replace(/\n/g," ").replace(/^ (.+) $/,"$1"),posEnd:i}}return{marker:l,posEnd:t+l.length,pending:l}};e.findOpenCloseTags=function(t,n,r,i,o){void 0===i&&(i=""),void 0===o&&(o=!1);var a=t.length,s=[],l=[],T="",Q=0;if(i){var c=t.indexOf(i);if(-1===c)return{arrOpen:s,arrClose:l,pending:i};Q=c+i.length,i=""}for(var u=Q;u<a;u++){if(96===t.charCodeAt(u)){var d=(0,e.findBackTick)(u,t,i);if(d){if(d.pending&&(T=d.pending,!o))break;u=o?d.posEnd-1:d.posEnd;continue}}if(92===t.charCodeAt(u)){var h=t.slice(u).match(n);if(h){var p=u+h[0].length;s.push({posStart:u+h.index,content:h[0],posEnd:p}),u=p}else{if(!r)continue;if(h=t.slice(u).match(r)){p=u+h[0].length;l.push({posStart:u+h.index,content:h[0],posEnd:p}),u=p<a?p-1:p}}}}return{arrOpen:s,arrClose:l,pending:T}};e.findOpenCloseTagsMathEnvironment=function(t,e,n,r){void 0===r&&(r=!0);for(var i=t.length,o=[],a=[],s=0;s<i;s++)if(92===t.charCodeAt(s)){var l=t.slice(s).match(e);if(l){var T=s+l[0].length;o.push({posStart:s+l.index,content:l[0],posEnd:T}),s=T-1}else if(l=t.slice(s).match(n)){T=s+l[0].length;if(a.push({posStart:s+l.index,content:l[0],posEnd:T}),r&&a.length===(null==o?void 0:o.length))break;s=T-1}}return{arrOpen:o,arrClose:a}};var o=function(t,e){var n=t.slice(e).match(/^([a-z]+|.) ?/i);return n?(e+=n[1].length,{cs:n[1],next:e}):{cs:" ",next:++e}},a=function(t,e){var n=t.slice(e).match(/^([0-9.,]+|) ?/i);return n?(e+=n[1].length,{cs:n[1],next:e}):{cs:"",next:++e}},s=function(t,e){var n=t.slice(e).match(/^([a-z]+|) ?/i);return n?(e+=n[1].length,{cs:n[1],next:e}):{cs:"",next:++e}},l=function(t,e){return t.charAt(e).match(/\s/)};e.canonicalMath=function(t){if(!t||!t.trim())return[];for(var e,n,r=[],i=0;i<t.length;)if(l(t,i)&&i++,(n=(e=t.charAt(i++)).charCodeAt(0))>=55296&&n<56320&&(e+=t.charAt(i++)),/^\\/.test(e)){var T=o(t,i),Q=T.cs;i=T.next,r.push(e+Q)}else if(/[0-9.,]/.test(e)){var c=a(t,i);Q=c.cs;i=c.next,r.push(e+Q)}else if(/[a-z]/i.test(e)){var u=s(t,i);Q=u.cs;i=u.next,r.push(e+Q)}else r.push(e);return r};e.canonicalMathPositions=function(t){if(!t||!t.trim())return[];for(var e,n,r=[],i=0,T=0,Q=!1,c=0,u=null,d=0,h=0,p="",m=0;i<t.length;)if(l(t,i)&&i++,T=i,(n=(e=t.charAt(i++)).charCodeAt(0))>=55296&&n<56320&&(e+=t.charAt(i++)),/^\\/.test(e)){d===m&&(p="");var f=o(t,i),y=f.cs,g=f.next,L=e+y;Q&&0===c&&(Q=!1),Q||r.push({content:L,contentSlice:t.slice(T,g),type:"command",positions:{start:T,end:g},fontControl:u,parentCommand:p}),i=g,d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null),["\\text","\\textsf","\\textit","\\textbf","\\textrm","\\texttt"].includes(L)&&(Q=!0),["\\mit","\\rm","\\oldstyle","\\cal","\\it","\\bf","\\bbFont","\\scr","\\frak","\\sf","\\tt","\\Bbb","\\emph"].includes(L)&&(u={command:L,includeIntoBraces:["\\Bbb"].includes(L)},h=d),m=d,p=L}else if(/[0-9.,]/.test(e)){d===m&&(p="");var b=a(t,i);y=b.cs,g=b.next;Q&&0===c&&(Q=!1),Q||r.push({content:e+y,contentSlice:t.slice(T,g),type:"numbers",positions:{start:T,end:g},fontControl:u,parentCommand:p}),i=g,d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null)}else if(/[a-z]/i.test(e)){d===m&&(p="");var v=s(t,i);y=v.cs,g=v.next;Q&&0===c&&(Q=!1),Q||r.push({content:e+y,contentSlice:t.slice(T,g),type:"letters",positions:{start:T,end:g},fontControl:u,parentCommand:p}),i=g,d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null)}else if("{"!==e&&"}"!==e&&(d===m&&(p=""),d===h&&"\\Bbb"===(null==u?void 0:u.command)&&(u=null)),"{"===e&&d++,"}"===e&&(d===h&&(u=null),--d===m&&(p=""),d--),Q){if("{"===e&&c++,"}"===e&&c--,0===c){var x=r[r.length-1];x.positions.end=i,x.content=t.slice(x.positions.start,x.positions.end),x.contentSlice=t.slice(x.positions.start,x.positions.end),Q=!1}}else r.push({content:e,contentSlice:t.slice(T,T+e.length),type:"other",positions:{start:T,end:i},fontControl:u,parentCommand:p});return r};e.getSpacesFromLeft=function(t){var e=t?t.trimLeft():"";return t?t.length-e.length:0};e.addAttributesToParentTokenByType=function(t,e,n,r,o){var a;void 0===o&&(o=null);try{if(!e.content||!(null==e?void 0:e.children.length))return;if(o&&!o.test(e.content))return;e.children.find((function(t){return t.type===n}))&&((null===(a=t.attrs)||void 0===a?void 0:a.length)?(t.attrs[i.attrsSharedMarker]&&(t.attrs=t.attrs.map((function(t){return[t[0],t[1]]}))),t.attrs.push(r)):t.attrs=[r])}catch(t){console.log("[MMD]=>[addAttributesToParentTokenByType]=>ERROR=>",t)}};e.addAttributesToParentToken=function(t,n){try{if(!n.content||!(null==n?void 0:n.children.length))return;(0,e.addAttributesToParentTokenByType)(t,n,"dotfill",["data-has-dotfill","true"],/\\dotfill/)}catch(t){console.log("[MMD]=>[addAttributesToParentToken]=>ERROR=>",t)}};e.isMathInText=function(t,e,n){try{if(!n.forDocx||e<0||e>=t.length)return!1;var r=t[e];if(!["inline_math","inline_mathML"].includes(r.type))return!1;if(r.attrGet("data-math-in-text"))return!0;var o=e>0?t[e-1]:null;if((null==o?void 0:o.type)&&i.INLINE_ELEMENT_TOKENS.includes(o.type))return!0;for(var a=e+1;a<t.length;a++){var s=t[a];if(!i.CLOSING_STYLE_TOKENS.includes(s.type)){if(i.OPENING_STYLE_TOKENS.includes(s.type)||i.INLINE_ELEMENT_TOKENS.includes(s.type))return!0;break}}return!1}catch(t){return console.log("[MMD][isMathInText]=>[ERROR]=>",t),!1}};e.applyAttrToMathml=function(t,e,n){try{return n.forDocx&&e?t.replace(/<mathmlword(\s|>)/g,"<mathmlword ".concat(e,"$1")).replace(/<mathml(\s|>)/g,"<mathml ".concat(e,"$1")):t}catch(e){return t}};e.applyAttrToInlineMath=function(t,e,n){t.forEach((function(t){["inline_math","inline_mathML"].includes(t.type)&&t.attrSet(e,n)}))};e.isEscapedAt=function(t,e){for(var n=0,r=e-1;r>=0&&92===t.charCodeAt(r);r--)n++;return n%2==1};e.findFirstTagContentWithNesting=function(t,n,r,i,o){void 0===i&&(i=""),void 0===o&&(o=!1);var a=t.length,s=[],l="",T=0;if(i){var Q=t.indexOf(i);if(-1===Q)return{block:null,pending:i};T=Q+i.length,i=""}for(var c=T;c<a;c++){var u=t.charCodeAt(c);if(96===u){var d=(0,e.findBackTick)(c,t,i);if(d){if(d.pending&&(l=d.pending,!o))break;c=o?d.posEnd-1:d.posEnd;continue}}if(92===u){var h=t.slice(c).match(n);if(h&&0===h.index){var p={posStart:c,posEnd:c+(f=h[0]).length,content:f};s.push({open:p,level:s.length}),c=p.posEnd-1}else{var m=r?t.slice(c).match(r):null;if(m&&0===m.index){var f,y={posStart:c,posEnd:c+(f=m[0]).length,content:f},g=s.pop();if(g){var L=g.open.posEnd,b=y.posStart,v={open:g.open,close:y,content:t.slice(L,b),contentPosStart:L,contentPosEnd:b,level:g.level};if(0===g.level)return{block:v,pending:""}}c=y.posEnd-1}}}}return{block:null,pending:l}};e.skipBackticks=function(t,n){if(96!==t.charCodeAt(n))return n;if((0,e.isEscapedAt)(t,n))return n;for(var r=0;n+r<t.length&&96===t.charCodeAt(n+r);)r++;var i="`".repeat(r),o=n+r,a=t.indexOf(i,o);return-1===a?t.length:a+r}},5083:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Other=void 0;var r=n(8437),i=n(2691),o=n(6893);new(n(209).CharacterMap)("remap",null,{"-":"−","*":"∗","`":"‘"}),e.Other=function(t,e){var n=t.stack.env.font?{mathvariant:t.stack.env.font}:{},a=r.MapHandler.getMap("remap").lookup(e),s=(0,o.getRange)(e),l=(null==s?void 0:s[3])||"mo",T=t.create("token",l,n,a?a.char:e);(null==s?void 0:s[4])&&T.attributes.set("mathvariant",s[4]),"mo"===l&&(i.default.setProperty(T,"fixStretchy",!0),t.configuration.addNode("fixStretchy",T)),t.Push(T)}},7569:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ArrayConfiguration=void 0;var r=n(6441);n(5100),e.ArrayConfiguration=r.Configuration.create("array",{handler:{environment:["array-environment"]}})},5100:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(209),i=n(2960),o=n(6980),a=n(8117);new r.EnvironmentMap("array-environment",i.default.environment,{array:["AlignedArray"],gathered:["AmsEqnArray",null,null,null,"c",null,".5em","D"],aligned:["AmsEqnArray",null,null,null,"rlrlrlrlrlrl",function(t){for(var e=[],n=0,r=t.length;n<r;n++)e[n]=o.default.Em(t[n]);return e.join(" ")}([0,2,0,2,0,2,0,2,0,2,0]),".5em","D"]},a.default)},8117:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(8364),i=n(6980),o=r.default;o.AlignedArray=function(t,e){var n=e.getName(),o=t.GetBrackets("\\begin{"+n+"}"),a=r.default.Array(t,e);return a.hasOwnProperty("arraydef")?a.arraydef.name=n:a.arraydef={name:n},i.default.setArrayAlign(a,o)},o.AmsEqnArray=function(t,e,n,o,a,s,l){var T=e.getName(),Q=t.GetBrackets("\\begin{"+T+"}"),c=r.default.EqnArray(t,e,n,o,a,s,l);return c.hasOwnProperty("arraydef")?c.arraydef.name=T:c.arraydef={name:T},i.default.setArrayAlign(c,Q)},e.default=o},4977:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.IconConfiguration=e.IconMethods=void 0;var r=n(6441),i=n(209),o=n(8770),a=n(2287);e.IconMethods={},e.IconMethods.Icon=function(t,e){var n=t.GetArgument(e);if(n=n?n.trim():""){var r=(0,a.findIcon)(n,!0),i=r.icon,s=void 0===i?null:i,l=r.name,T=void 0===l?"":l,Q=r.color,c=void 0===Q?"":Q,u=r.isSquared,d=void 0!==u&&u;if(T){if(!s)throw new o.default("MultipleIconProperty",'The icon name "%1" can\'t be found.',n);if(d){var h=t.create("text",s.symbol),p=(m=t.create("node","mtext",[],{},h),{height:"+0.1em",depth:"+0.1em",lspace:"+0.1em",width:"+0.3em",style:c?"border: 1px solid ".concat(c,";"):"border: 1px solid;"});c&&(p.color=c),m=t.create("node","mpadded",[m],p),t.Push(m)}else{h=t.create("text",s.symbol),m=t.create("node","mtext",[],{},h),p={width:s.width?s.width:"+0.5ex"};c&&(p.color=c),m=t.create("node","mpadded",[m],p),t.Push(m)}}else{var m=t.create("node","mtext",[],{},"");t.Push(m)}}else{var m=t.create("node","mtext",[],{},"");t.Push(m)}},new i.CommandMap("icon",{icon:"Icon"},e.IconMethods),e.IconConfiguration=r.Configuration.create("icon",{handler:{macro:["icon"]}})},5810:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.MathJax=e.OuterHTML=void 0;var r=n(1635),i=n(4863),o=n(4347),a=n(5450),s=n(8155),l=n(4128),T=n(5707),Q=n(283),c=n(2599),u=n(8871),d=n(9921),h=new i.MathJaxConfigure,p=function(t){return(new o.SerializedMmlVisitor).visitTree(t)},m=function(t,e){return e=Object.assign(e,{aligned:!0}),new l.MathMLVisitorWord(e).visitTree(t)},f=function(t,e){var n=new s.SerializedAsciiVisitor(e).visitTree(t);return{ascii:(null==n?void 0:n.ascii)?n.ascii.trim():n.ascii,linear:n.linear,ascii_tsv:(null==n?void 0:n.ascii_tsv)?n.ascii_tsv.trim():n.ascii_tsv,ascii_csv:(null==n?void 0:n.ascii_csv)?n.ascii_csv.trim():n.ascii_csv,ascii_md:(null==n?void 0:n.ascii_md)?n.ascii_md.trim():n.ascii_md}},y=function(t,n,r,i){if(void 0===i&&(i=!1),!(null==r?void 0:r.sre)&&!(null==r?void 0:r.assistiveMml))return{};if(function(t,e){t.setAttribute(e,"role","math"),t.setAttribute(e,"tabindex","0");var n=t.firstChild(e);n&&t.setAttribute(n,"aria-hidden","true")}(t,n),r.sre){var o=function(t,e,n){var r=t.lastChild(e),i=t.innerHTML(r),o=(0,T.getSpeech)(n,i);return t.setAttribute(e,"aria-label",o),t.removeAttribute(r,"aria-hidden"),o}(t,n,r.sre);return i&&o?{speech:o}:{}}return r.assistiveMml&&function(t,n){var r=t.lastChild(n),i=t.getAttribute(r,"id");i||(i=e.MathJax.nextAssistiveId(),t.setAttribute(r,"id",i)),t.setAttribute(n,"aria-labelledby",i),t.removeAttribute(r,"aria-hidden")}(t,n),{}},g=function(t,e,n,r,i){var o=i.include_latex,a=void 0!==o&&o,s=i.include_svg,l=void 0===s||s,T={};return r&&(T.error=r.message),a&&(T.latex=n),l&&e&&(T.svg=t.outerHTML(e)),T};e.OuterHTML=function(t,e,n){void 0===n&&(n=!1);var r=e.include_mathml,i=void 0!==r&&r,o=e.include_mathml_word,a=void 0!==o&&o,s=e.include_asciimath,l=void 0!==s&&s,T=e.include_linearmath,c=void 0!==T&&T,u=e.include_latex,d=void 0!==u&&u,h=e.include_svg,p=void 0===h||h,m=e.include_error,f=void 0!==m&&m,y=e.include_speech,g=void 0!==y&&y,L="";return i&&t.mathml&&(L+=n?"<mathml>"+(0,Q.formatSourceMML)(t.mathml)+"</mathml>":'<mathml style="display: none;">'+(0,Q.formatSourceMML)(t.mathml)+"</mathml>"),a&&t.mathml_word&&(L+='<mathmlword style="display: none;">'+t.mathml_word+"</mathmlword>"),l&&t.asciimath&&(L||(L+="\n"),L+='<asciimath style="display: none;">'+(0,Q.formatSource)(t.asciimath)+"</asciimath>"),c&&t.linearmath&&(L||(L+="\n"),L+='<linearmath style="display: none;">'+(0,Q.formatSource)(t.linearmath)+"</linearmath>"),d&&t.latex&&(L||(L+="\n"),L+='<latex style="display: none;">'+(0,Q.formatSource)(t.latex)+"</latex>"),g&&t.speech&&(L||(L+="\n"),L+='<speech style="display: none;">'+(0,Q.formatSource)(t.speech)+"</speech>"),f&&t.error&&(L||(L+="\n"),L+='<error style="display: none;">'+(0,Q.formatSource)(t.error)+"</error>"),p&&t.svg&&(L||(L+="\n"),L+=t.svg),L};var L=function(t,n,r){switch(void 0===r&&(r=!1),null==n?void 0:n.output_format){case"latex":return"";case"mathml":return t.mathml?(0,Q.formatSourceMML)(t.mathml):"";default:return(0,e.OuterHTML)(t,n,r)}};e.MathJax={assistiveMml:!0,nonumbers:!1,_a11y:{renderKey:(0,d.uid)(),counter:0},beginRender:function(t){this._a11y.renderKey=t||(0,d.uid)(),this._a11y.counter=0},nextAssistiveId:function(t){return void 0===t&&(t="mjx-mml-"),this._a11y.counter+=1,"".concat(t).concat(this._a11y.renderKey,"-").concat(this._a11y.counter)},checkAccessibility:function(t,e){return void 0===t&&(t=null),void 0===e&&(e=!1),this.assistiveMml||null===t?this.assistiveMml&&null===t?(this.assistiveMml=!1,this.nonumbers=e,void h.changeHandler(!1,e)):void(this.nonumbers!==e&&(this.nonumbers=e,h.changeHandler(this.assistiveMml,e))):(this.assistiveMml=!0,this.nonumbers=e,void h.changeHandler(!0,e))},Stylesheet:function(){return i.svg.styleSheet(h.mDocTeX)},TexConvert:function(t,e,n){var i,o,s,l,T,Q;void 0===e&&(e={}),void 0===n&&(n=!1);var d=e.display,L=void 0===d||d,b=e.metric,v=void 0===b?{}:b,x=e.outMath,_=void 0===x?{}:x,H=e.mathJax,w=void 0===H?{}:H,O=e.forDocx,M=void 0===O?{}:O,S=e.accessibility,E=void 0===S?null:S,A=e.nonumbers,C=void 0!==A&&A,V=v.em,N=void 0===V?16:V,I=v.ex,P=void 0===I?8:I,R=v.cwidth,k=void 0===R?1200:R,D=v.lwidth,B=void 0===D?1e5:D,j=v.scale,F=void 0===j?1:j,G=w.mtextInheritFont,q=void 0!==G&&G;this.checkAccessibility(E,C),h.mDocTeX.outputJax.options.mtextInheritFont=q;try{var U=(null===(o=null===(i=null==e?void 0:e.outMath)||void 0===i?void 0:i.optionAscii)||void 0===o?void 0:o.tableToTsv)||(null===(l=null===(s=null==e?void 0:e.outMath)||void 0===s?void 0:s.optionAscii)||void 0===l?void 0:l.tableToCsv)||(null===(Q=null===(T=null==e?void 0:e.outMath)||void 0===T?void 0:T.optionAscii)||void 0===Q?void 0:Q.tableToMd)?h.docTeXTSV.convert(t,{display:L,em:N,ex:P,containerWidth:k,lineWidth:B,scale:F}):h.mDocTeX.convert(t,{display:L,em:N,ex:P,containerWidth:k,lineWidth:B,scale:F}),Z=h.mDocTeX.outputJax;return function(t,e,n,i,o,s){var l,T;void 0===o&&(o=!1);var Q=i.include_mathml,c=void 0!==Q&&Q,d=i.include_mathml_word,h=void 0!==d&&d,g=i.include_asciimath,L=void 0!==g&&g,b=i.include_latex,v=void 0!==b&&b,x=i.include_linearmath,_=void 0!==x&&x,H=i.include_svg,w=void 0===H||H,O=i.include_speech,M=void 0!==O&&O,S=i.optionAscii,E=void 0===S?{showStyle:!1,extraBrackets:!0}:S,A=i.output_format,C=void 0===A?"svg":A,V={},N=y(t,e,s,M);if(N.speech&&(V.speech=N.speech),(c||"mathml"===C)&&(V.mathml=p(n.root)),h&&(V.mathml_word=m(n.root,{forDocx:o})),L||(null==E?void 0:E.tableToCsv)||(null==E?void 0:E.tableToTsv)||(null==E?void 0:E.tableToMd)||_){var I=f(n.root,E);(L||(null==E?void 0:E.tableToCsv)||(null==E?void 0:E.tableToTsv)||(null==E?void 0:E.tableToMd))&&(V.asciimath=I.ascii,V.asciimath_tsv=I.ascii_tsv,V.asciimath_csv=I.ascii_csv,V.asciimath_md=I.ascii_md),_&&(V.linearmath=I.linear)}if(v&&(V.latex=n.math?n.math:n.inputJax.processStrings?"":n.start.node.outerHTML),w&&(V.svg=t.outerHTML(e),e)){var P=e instanceof a.LiteElement||e instanceof HTMLElement?(0,u.getMathDimensions)(e):null;P&&(V.width=P.containerWidth,V.widthEx=P.widthEx,V.heightEx=P.heightEx,V.height=P.viewBoxHeight,V.heightAndDepth=P.viewBoxHeightAndDepth)}var R=null===(T=null===(l=n.inputJax.parseOptions)||void 0===l?void 0:l.tags)||void 0===T?void 0:T.labels;return V.labels=R&&Object.keys(R).length>0?r.__assign({},R):null,V}(h.adaptor,U,Z.math,_,M,E)}catch(e){if(n)throw e;if((0,c.formatMathJaxError)(e,t,"TexConvert"),_&&_.include_svg){U=h.docTeX.convert(t,{display:L,em:N,ex:P,containerWidth:k,lineWidth:B,scale:F});return g(h.adaptor,U,t,e,_)}return g(h.adaptor,null,t,e,_)}},TexConvertToAscii:function(t,e){void 0===e&&(e={});var n=e.display,r=void 0===n||n,i=e.metric,o=void 0===i?{}:i,a=e.outMath,s=void 0===a?{}:a,l=e.accessibility,T=void 0===l?null:l,Q=o.em,c=void 0===Q?16:Q,u=o.ex,d=void 0===u?8:u,p=o.cwidth,m=void 0===p?1200:p,y=o.lwidth,g=void 0===y?1e5:y,L=o.scale,b=void 0===L?1:L;this.checkAccessibility(T),h.docTeX.convert(t,{display:r,em:c,ex:d,containerWidth:m,lineWidth:g,scale:b});var v=h.docTeX.outputJax,x=s.optionAscii,_=void 0===x?{showStyle:!1,extraBrackets:!0}:x;return f(v.math.root,_).ascii},Typeset:function(t,e,n){void 0===e&&(e={}),void 0===n&&(n=!1);var i=this.TexConvert(t,e,n);return{html:L(i,e.outMath,e.forPptx),labels:i.labels,ascii:i.asciimath,linear:i.linearmath,ascii_tsv:null==i?void 0:i.asciimath_tsv,ascii_csv:null==i?void 0:i.asciimath_csv,ascii_md:null==i?void 0:i.asciimath_md,data:r.__assign({},i)}},TypesetSvgAndAscii:function(t,e){void 0===e&&(e={});var n=e.outMath,i=void 0===n?{}:n,o=i.include_asciimath,a=void 0!==o&&o;e.outMath.include_asciimath=!0;var s=this.TexConvert(t,e);return e.outMath.include_asciimath=a,{html:L(s,i),ascii:s.asciimath,linear:s.linearmath,labels:s.labels,ascii_tsv:null==s?void 0:s.asciimath_tsv,ascii_csv:null==s?void 0:s.asciimath_csv,ascii_md:null==s?void 0:s.asciimath_md,data:r.__assign({},s)}},TypesetMathML:function(t,n){void 0===n&&(n={});var i=n.display,o=void 0===i||i,s=n.metric,l=void 0===s?{}:s,T=n.outMath,c=void 0===T?{}:T,d=n.forDocx,g=void 0===d?{}:d,L=n.accessibility,b=void 0===L?null:L,v=l.em,x=void 0===v?16:v,_=l.ex,H=void 0===_?8:_,w=l.cwidth,O=void 0===w?1200:w,M=l.lwidth,S=void 0===M?1e5:M,E=l.scale,A=void 0===E?1:E;this.checkAccessibility(b);var C=h.docMathML.convert(t,{display:o,em:x,ex:H,containerWidth:O,lineWidth:S,scale:A}),V=h.docMathML.outputJax,N=function(t,e,n,r,i,o){void 0===i&&(i=!1);var s=r.include_mathml,l=void 0!==s&&s,T=r.include_mathml_word,Q=void 0!==T&&T,c=r.include_asciimath,d=void 0!==c&&c,h=r.include_svg,g=void 0===h||h,L=r.include_speech,b=void 0!==L&&L,v=r.include_linearmath,x=void 0!==v&&v,_=r.optionAscii,H=void 0===_?{showStyle:!1,extraBrackets:!0}:_,w=r.output_format,O=void 0===w?"svg":w,M={},S=y(t,e,o,b);if(S.speech&&(M.speech=S.speech),(l||"mathml"===O)&&(M.mathml=p(n.root)),Q&&(M.mathml_word=m(n.root,{forDocx:i})),d||x){var E=f(n.root,H);d&&(M.asciimath=E.ascii),x&&(M.linearmath=E.linear)}if(g&&(M.svg=t.outerHTML(e),e)){var A=e instanceof a.LiteElement||e instanceof HTMLElement?(0,u.getMathDimensions)(e):null;A&&(M.width=A.containerWidth,M.widthEx=A.widthEx,M.heightEx=A.heightEx,M.height=A.viewBoxHeight,M.heightAndDepth=A.viewBoxHeightAndDepth)}return M}(h.adaptor,C,V.math,c,g,b);return{html:"mathml"===(null==c?void 0:c.output_format)?(0,Q.formatSourceMML)(N.mathml):(0,e.OuterHTML)(N,n.outMath),data:r.__assign({},N)}},AsciiMathToSvg:function(t,n){void 0===n&&(n={});var r=n.display,i=void 0===r||r,o=n.metric,a=void 0===o?{}:o,s=n.outMath,l=void 0===s?{}:s,T=n.forDocx,c=void 0===T?{}:T,u=n.accessibility,d=void 0===u?null:u,f=a.em,g=void 0===f?16:f,L=a.ex,b=void 0===L?8:L,v=a.cwidth,x=void 0===v?1200:v,_=a.lwidth,H=void 0===_?1e5:_,w=a.scale,O=void 0===w?1:w;this.checkAccessibility(d);var M=h.docAsciiMath.convert(t,{display:i,em:g,ex:b,containerWidth:x,lineWidth:H,scale:O}),S=h.docAsciiMath.outputJax,E=function(t,e,n,r,i,o){void 0===i&&(i=!1);var a=r.include_mathml,s=void 0!==a&&a,l=r.include_mathml_word,T=void 0!==l&&l,Q=r.include_asciimath,c=void 0!==Q&&Q,u=r.include_svg,d=void 0===u||u,h=r.include_speech,f=void 0!==h&&h,g=r.output_format,L=void 0===g?"svg":g,b={},v=y(t,e,o,f);return v.speech&&(b.speech=v.speech),(s||"mathml"===L)&&(b.mathml=p(n.root)),T&&(b.mathml_word=m(n.root,{forDocx:i})),c&&(b.asciimath=n.math?n.math:n.inputJax.processStrings?"":n.start.node.outerHTML),d&&(b.svg=t.outerHTML(e)),b}(h.adaptor,M,S.math,l,c,d);return"mathml"===(null==l?void 0:l.output_format)?(0,Q.formatSourceMML)(E.mathml):(0,e.OuterHTML)(E,n.outMath)},Reset:function(t){void 0===t&&(t=0),t?t--:t=0,h.mTex.parseOptions.tags.reset(t)},GetLastEquationNumber:function(){return h.mTex.parseOptions.tags.counter}}},2897:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default={TeX:{packages:["base","ams","boldsymbol","html","newcommand","unicode","color","mhchem","enclose","extpfeil","empheq","cases","cancel","fix-unicode","icon"],tagSide:"right",tagIndent:"0.8em",multlineWidth:"100%",useLabelIds:!0,tags:"ams",inlineMath:[["$","$"],["\\(","\\)"]],displayMath:[["$$","$$"],["\\[","\\]"]],processEscapes:!0,processEnvironments:!0,processRefs:!0,maxMacros:1e4,maxBuffer:15360},asciimath:{delimiters:[["<ascii>","</ascii>"],["`","`"]]},MathML:{parseAs:"html",forceReparse:!0},HTML:{scale:1,mathmlSpacing:!1,exFactor:.5},SVG:{fontCache:"none"},CHTML:null}},4863:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.MathJaxConfigure=e.asciimath=e.svg=e.mml=void 0;var r=n(1635),i=n(1039),o=n(4928),a=n(7782),s=n(3710),l=n(4016),T=n(8244),Q=n(353),c=n(9400),u=n(984);n(1909),n(7569),n(4977);var d=n(4855),h=n(6441),p=n(5083);h.Configuration.create("fix-unicode",{fallback:{character:p.Other}});var m=n(2897);n(2985);var f=n(1252);f.BaseConfiguration.handler.macro.push("wasysym-mathchar0mo"),f.BaseConfiguration.handler.macro.push("wasysym-macros");var y=a.AbstractTags.prototype.startEquation;a.AbstractTags.prototype.startEquation=function(t){this.history=[],this.stack=[],this.clearTag(),this.currentTag=new a.TagInfo("",void 0,void 0),y.call(this,t)};var g=Object.assign({},m.default.TeX||{}),L=Object.assign({},g,{packages:[].concat(g.packages,["array"])}),b=Object.assign({},m.default.MathML||{}),v=Object.assign({},m.default.SVG||{}),x=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r.__extends(e,t),e.prototype.formatError=function(t){throw Error("TeX error: "+t.message)},e}(o.TeX);e.mml=new s.MathML(b),e.svg=new l.SVG(v),e.asciimath=new T.AsciiMath({});var _=function(){var t=this;this.chooseAdaptor=function(){try{document,document.getElementsByTagName("div").length>0?(t.adaptor=(0,c.browserAdaptor)(),t.domNode=document):(t.adaptor=(0,u.liteAdaptor)(),t.domNode="<html></html>")}catch(e){t.adaptor=(0,u.liteAdaptor)(),t.domNode="<html></html>"}},this.initTex=function(e){void 0===e&&(e=!1),e?(t.mTex=new x(Object.assign({},g,{tags:"none"})),t.tex=new o.TeX(Object.assign({},g,{tags:"none"})),t.texTSV=new o.TeX(Object.assign({},L,{tags:"none"}))):(t.mTex=new x(g),t.tex=new o.TeX(g),t.texTSV=new o.TeX(L))},this.setHandler=function(n,r){void 0===n&&(n=!1),void 0===r&&(r=!1),t.initTex(r),t.handler=(0,Q.RegisterHTMLHandler)(t.adaptor),n&&(0,d.AssistiveMmlHandler)(t.handler),t.docTeX=i.mathjax.document(t.domNode,{InputJax:t.tex,OutputJax:e.svg}),t.docTeXTSV=i.mathjax.document(t.domNode,{InputJax:t.texTSV,OutputJax:e.svg}),t.mDocTeX=i.mathjax.document(t.domNode,{InputJax:t.mTex,OutputJax:e.svg}),t.docMathML=i.mathjax.document(t.domNode,{InputJax:e.mml,OutputJax:e.svg}),t.docAsciiMath=i.mathjax.document(t.domNode,{InputJax:e.asciimath,OutputJax:e.svg})},this.changeHandler=function(e,n){void 0===e&&(e=!1),void 0===n&&(n=!1),t.handler&&i.mathjax.handlers.unregister(t.handler),t.setHandler(e,n)},this.initTex(),this.chooseAdaptor(),this.setHandler(!0)};e.MathJaxConfigure=_},4128:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.MathMLVisitorWord=void 0;var r=n(1635),i=function(t){function e(e){var n=t.call(this)||this;return n.options=null,n.isSubTable=function(t){for(var e=!1;t.Parent;){if("mtable"===t.Parent.kind){e=!0;break}t=t.Parent}return e},n.needToAddRow=function(t){if(t.parent&&t.parent.childNodes.length>0){var e=t.parent.childNodes.findIndex((function(e){return e===t}));if(e<t.parent.childNodes.length){var n=t.parent.childNodes[e+1];n&&n.kind&&(n.needRow=!0)}}},n.needConvertToFenced=function(t){var e=t.kind,n=t.properties;return"mrow"===e&&n&&7===n.texClass},n.pasteNodeToNewRow=function(t,e){var i=r.__read(t.isToken||0===t.childNodes.length?["\n",""]:["\n",e],2),o=i[0],a=i[1];return t.needRow=!1,e+"<mrow>"+a+o+n.visitNode(t,e+" ")+a+o+e+"</mrow>"+a},n.convertToFenced=function(t,e){var i=r.__read(t.isToken||0===t.childNodes.length?["\n",""]:["\n",e],2),o=i[0],a=i[1];if(t.needRow)return n.pasteNodeToNewRow(t,e);var s=t.kind,l=t.properties,T=e+"<mfenced";n.options.forDocx?(T+=l.open?' open="'.concat(l.open,'" branch_open="').concat(l.open,'"'):' open="" branch_open=""',T+=l.close?' close="'.concat(l.close,'" branch_close="').concat(l.close,'"'):' close="" branch_close=""'):(T+=l.open?' open="'.concat(l.open,'"'):' open=""',T+=l.close?' close="'.concat(l.close,'"'):' close=""'),T+=' separators="|"',T+=">",T+=o+e+" <"+s+">";for(var Q=0;Q<t.childNodes.length;Q++){if(0!==Q||"mo"!==t.childNodes[Q].kind||4!==t.childNodes[Q].texClass)if(Q!==t.childNodes.length-1||"mo"!==t.childNodes[Q].kind||5!==t.childNodes[Q].texClass)T+=o+n.visitNode(t.childNodes[Q],e+" ")+a}return T+=o+e+" </"+s+">"+a,T+=o+e+"</mfenced>"},n.options=e,n}return r.__extends(e,t),e.prototype.visitTextNode=function(t,e){var n=this.options.unicodeConvert,r=void 0!==n&&n;return this.quoteHTML(t.getText(),r)},e.prototype.restructureMtrForAligned=function(t,e){var n=r.__read(t.isToken||0===t.childNodes.length?["\n",""]:["\n",e],1)[0],i="",o=(t.Parent&&t.Parent.attributes?t.Parent.attributes.getAllAttributes():{}).columnalign,a=void 0===o?"":o;if(!a)return i;if(a.indexOf("center")>=0)return i;var s=e+" ",l=s+" ",T=l+" ",Q=T+" ";if(a.includes("right left")){if(i+=e+"<mtr>",t.childNodes.length>1){i+=n+s+"<mtd>",i+=n+l+"<mrow>";for(var c=0;c<t.childNodes.length;c++){i+=n+T+"<mrow>",i+=n+Q+"<maligngroup/>",i+=(u=this.childNodeMml(t.childNodes[c],Q,n)).trim()?n+u:n,i+=T+"</mrow>"}i+=n+l+"</mrow>",i+=n+s+"</mtd>"}else i+=n+s+"<mtd>",i+=n+l+"<mrow>",i+=n+Q+"<maligngroup/>",i+=n+this.childNodeMml(t.childNodes[0],Q,n),i+=l+"</mrow>",i+=n+s+"</mtd>";return i+=n+e+"</mtr>"}if(1===t.childNodes.length)return i=e+"<mtr>",i+=n+s+"<mtd>",i+=n+l+"<mrow>",i+=n+Q+"<maligngroup/>",i+=n+Q+"<malignmark/>",i+=n+this.childNodeMml(t.childNodes[0],Q,n),i+=l+"</mrow>",i+=n+s+"</mtd>",i+=n+e+"</mtr>";i=e+"<mtr>",i+=n+s+"<mtd>",i+=n+l+"<mrow>";for(c=0;c<t.childNodes.length;c++){var u;i+=n+T+"<maligngroup/>",i+=n+T+"<malignmark/>",i+=n+T+"<mrow>",i+=(u=this.childNodeMml(t.childNodes[c],Q,n)).trim()?n+u:n,c<t.childNodes.length-1&&(i+=Q+"<mo>"+String.fromCharCode(8197)+String.fromCharCode(8197)+String.fromCharCode(8197)+String.fromCharCode(8197)+"</mo>"+n),i+=T+"</mrow>"}return i+=n+l+"</mrow>",i+=n+s+"</mtd>",i+=n+e+"</mtr>"},e.prototype.visitDefault=function(e,n){var r,i,o,a;if(e.needRow)return this.pasteNodeToNewRow(e,n);if("msubsup"===e.kind||"msub"===e.kind||"sup"===e.kind)return this.visitMunderoverNode(e,n);if(!this.options.forDocx&&"mtr"===e.kind&&this.options.aligned&&e.Parent&&"mtable"===e.Parent.kind&&(e.Parent.Parent&&"math"===e.Parent.Parent.kind||!this.isSubTable(e.Parent))){var s=this.restructureMtrForAligned(e,n);if(s)return s}if(this.needConvertToFenced(e))return this.convertToFenced(e,n);if("mo"===e.kind&&"mover"===(null===(r=e.Parent)||void 0===r?void 0:r.kind)&&(null===(o=null===(i=e.attributes)||void 0===i?void 0:i.attributes)||void 0===o?void 0:o.stretchy)){var l="text"===(null===(a=e.childNodes[0])||void 0===a?void 0:a.kind)&&e.childNodes[0].text;if("―"===l)return n+"<mo>"+(l="¯")+"</mo>"}return this.options.forDocx&&"mo"===e.kind&&e.properties&&e.properties.hasOwnProperty("movablelimits")&&!0===e.properties.movesupsub&&!0===e.properties.texprimestyle&&1===e.properties.texClass&&!1===e.properties.movablelimits&&(e.attributes.attributes?e.attributes.attributes.movablelimits=!1:e.attributes.attributes={movablelimits:!1}),t.prototype.visitDefault.call(this,e,n)},e.prototype.visitMunderoverNode=function(e,n){var i,o,a;if("munder"===e.kind||"mover"===e.kind){var s=!0,l=e.over<=(null===(i=e.childNodes)||void 0===i?void 0:i.length)?e.childNodes[e.over]:null;if("mo"===(null==l?void 0:l.kind)){var T=l.childNodes[0];!(null===(a=null===(o=l.attributes)||void 0===o?void 0:o.attributes)||void 0===a?void 0:a.stretchy)||"―"!==T.text&&"¯"!==T.text||(s=!1)}s&&(e.attributes.attributes.accent=!0),e.attributes.attributes.accentunder=!1}var Q=e.childNodes[e.base];"msup"!==e.kind&&"msub"!==e.kind&&Q&&"TeXAtom"!==Q.kind&&("mrow"!==Q.kind||this.needConvertToFenced(Q))&&(Q.needRow=!0);var c=r.__read(e.isToken||0===e.childNodes.length?["\n",""]:["\n",n],1)[0],u=n+" ",d=t.prototype.visitDefault.call(this,e,n);return"mo"===Q.kind&&1===Q.properties.texClass&&(d+=c+n+"<mrow>",d+=c+u+"<mo>"+String.fromCharCode(8202)+"</mo>",d+=c+n+"</mrow>"),d},e.prototype.visitMunderNode=function(t,e){var n,r=t.childNodes[1]?t.childNodes[1]:null;if(r&&"mo"===r.kind&&1===(null===(n=r.childNodes)||void 0===n?void 0:n.length)&&"text"===r.childNodes[0].kind){var i=r.childNodes[0];"―"===i.text&&(i.text="_")}return this.visitMunderoverNode(t,e)},e.prototype.visitMoverNode=function(t,e){return this.visitMunderoverNode(t,e)},e.prototype.quoteHTML=function(t,e){void 0===e&&(e=!1);var n=t.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\"/g,"&quot;");return e&&(n=n.replace(/([\uD800-\uDBFF].)/g,(function(t,e){return"&#x"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536).toString(16).toUpperCase()+";"})).replace(/([\u0080-\uD7FF\uE000-\uFFFF])/g,(function(t,e){return"&#x"+e.charCodeAt(0).toString(16).toUpperCase()+";"}))),n},e}(n(4347).SerializedMmlVisitor);e.MathMLVisitorWord=i},2985:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});var r=n(209),i=n(2960),o=n(8364);new r.CharacterMap("wasysym-mathchar0mo",i.default.mathchar0mo,{varangle:"∢",Perp:"⫫"}),new r.CommandMap("wasysym-macros",{Vmathcal:["Macro","{\\cal #1}",1],Varangle:["Macro","{\\mathop{{<\\!\\!\\!\\!\\!\\small)}\\:}\\nolimits}"],longdiv:["Macro","\\enclose{longdiv}{#1}",1],lcm:["Macro","\\enclose{bottom}{\\smash{)}{#1}\\:}",1],oint:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x222E}\\,}{\\unicode{x222E}}{\\unicode{x222E}}{\\unicode{x222E}}}\\,}\\nolimits}"],oiint:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x222F}\\,}{\\unicode{x222F}}{\\unicode{x222F}}{\\unicode{x222F}}}\\,}\\nolimits}"],oiiint:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x2230}\\,}{\\unicode{x2230}}{\\unicode{x2230}}{\\unicode{x2230}}}\\,}\\nolimits}"],ointclockwise:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x2232}\\,}{\\unicode{x2232}}{\\unicode{x2232}}{\\unicode{x2232}}}\\,}\\nolimits}"],ointctrclockwise:["Macro","{\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{x2233}\\,}{\\unicode{x2233}}{\\unicode{x2233}}{\\unicode{x2233}}}\\,}\\nolimits}"],llbracket:["Macro","{[\\![}"],rrbracket:["Macro","{]\\!]}"],hhline:["Macro","\\hline \\hline"],AA:["Macro","{\\unicode{x212B}}"],pounds:["Macro","{\\it\\unicode{xA3}}"],highlight:["Macro","\\mathchoice%{\\colorbox{#1}{$\\displaystyle{#2}$}}%{\\colorbox{#1}{$\\textstyle{#2}$}}%{\\colorbox{#1}{$\\scriptstyle{#2}$}}%{\\colorbox{#1}{$\\scriptscriptstyle{#2}$}}",2]},o.default)},3702:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.hasOnlyOneMoNode=e.getFunctionNameFromAscii=e.AddToAsciiData=e.initAsciiData=void 0;e.initAsciiData=function(){return{ascii:"",linear:"",ascii_tsv:"",ascii_csv:"",ascii_md:""}};e.AddToAsciiData=function(t,e){return t.ascii+=e.ascii,t.linear+=e.hasOwnProperty("linear")?e.linear:e.ascii,t.ascii_tsv+=e.hasOwnProperty("ascii_tsv")?e.ascii_tsv:e.ascii,t.ascii_csv+=e.hasOwnProperty("ascii_csv")?e.ascii_csv:e.ascii,t.ascii_md+=e.hasOwnProperty("ascii_md")?e.ascii_md:e.ascii,t};e.getFunctionNameFromAscii=function(t,e){var n;if(!(null==t?void 0:t.trim()))return"";t=t.trim();var r="";switch(e.kind){case"mi":r=t;break;case"msub":case"msubsup":r=t.match(/^.*?(?=_)/)[0].trim();break;case"msup":r=(null===(n=t.trim())||void 0===n?void 0:n.match(/^.*?(?=\^)/))[0].trim()}return r};e.hasOnlyOneMoNode=function(t){var n,r,i;return"mo"===(null==t?void 0:t.kind)?1===(null===(n=t.childNodes)||void 0===n?void 0:n.length):("inferredMrow"===t.kind&&1===(null===(r=null==t?void 0:t.childNodes)||void 0===r?void 0:r.length)||"TeXAtom"===t.kind&&1===(null===(i=null==t?void 0:t.childNodes)||void 0===i?void 0:i.length))&&(0,e.hasOnlyOneMoNode)(t.childNodes[0])}},8446:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.handle=e.getAttributes=e.FindSymbolToAM=e.FindSymbolReplace=e.SymbolToAM=e.getSymbolType=e.needFirstSpace=e.needLastSpaceAfterTeXAtom=e.needFirstSpaceBeforeTeXAtom=void 0;var r=n(1635),i=n(747),o=n(3768),a=n(9196),s=n(3702),l=n(18),T=n(8311),Q=/^\w/;e.needFirstSpaceBeforeTeXAtom=function(t){var e;if((0,T.isFirstChild)(t))return!1;if("TeXAtom"===t.kind&&(null===(e=t.properties)||void 0===e?void 0:e.texClass)===i.TEXCLASS.OP){var n=t.parent.childNodes.findIndex((function(e){return e===t}));return"mi"===t.parent.childNodes[n-1].kind}return!1};e.needLastSpaceAfterTeXAtom=function(t){var e;if((0,T.isLastChild)(t))return!1;if("TeXAtom"===t.kind&&(null===(e=t.properties)||void 0===e?void 0:e.texClass)===i.TEXCLASS.OP){var n=t.parent.childNodes.findIndex((function(e){return e===t})),r=t.parent.childNodes[n+1];return"mi"===r.kind||"msub"===r.kind}return!1};e.needFirstSpace=function(t,e){void 0===e&&(e=!1);try{if((0,T.isFirstChild)(t))return!1;var n=t.parent.childNodes.findIndex((function(e){return e===t})),r=t.parent.childNodes[n-1];if(r.attributes.get("hasLastSpace"))return!1;if("mi"===r.kind||"mo"===r.kind&&!e){var i=r.childNodes[0]?r.childNodes[0].text:"";return Q.test(i[0])}return!1}catch(t){return!1}};var c=function(t,n,r){var o;void 0===n&&(n=!1),void 0===r&&(r=!1);var a=!1;try{if("msubsup"===t.parent.kind)return!1;if((0,T.isLastChild)(t))return!1;var s=t.parent.childNodes.findIndex((function(e){return e===t})),l=t.parent.childNodes[s+1];if("text"!==l.childNodes[0].kind||"⁡"!==l.childNodes[0].text||(0,T.isLastChild)(l)||(l=t.parent.childNodes[s+2],a=!0),"TeXAtom"===l.kind&&(null===(o=l.properties)||void 0===o?void 0:o.texClass)===i.TEXCLASS.OP)return!0;if(n&&"mfrac"===l.kind)return!1;if("mi"===l.kind||"mo"===l.kind){var c=l.childNodes[0]?l.childNodes[0].text:"";if(l.childNodes[0]&&"text"===l.childNodes[0].kind&&"⁡"===l.childNodes[0].text)return!0;var u=(0,e.SymbolToAM)(l.kind,c);return r?Q.test(u.linear):Q.test(u.ascii)}return"mrow"!==l.kind&&a}catch(t){return a}};e.getSymbolType=function(t,e){var n=o.AMsymbols.find((function(n){return n.tag===t&&n.output===e}));return n?n.symbolType:""};e.SymbolToAM=function(t,e,n,i){var a,s;void 0===n&&(n=null),void 0===i&&(i=!1);var l=null,T=n?Object.getOwnPropertyNames(n):[];if(e="mtext"!==t?e.split(" ").join(""):e,i&&n&&T.length>0){var Q=function(t,e){if(l=o.AMsymbols.find((function(n){return"mstyle"===n.tag&&n.atname===t&&n.atval===e})))return"break"};try{for(var c=r.__values(Object.entries(n)),u=c.next();!u.done;u=c.next()){var d=r.__read(u.value,2);if("break"===Q(d[0],d[1]))break}}catch(t){a={error:t}}finally{try{u&&!u.done&&(s=c.return)&&s.call(c)}finally{if(a)throw a.error}}if(l&&l.input)return{ascii:l.input+"("+e+")",linear:l.output+"("+e+")"}}if(l||(l=(0,o.findAmSymbolByTag)(t,e)),!l&&n&&T.length>0&&Object.getOwnPropertyNames(n)&&!1===n.stretchy){for(var h=e.split(""),p="",m="",f=0;f<h.length;f++){var y=(0,o.findAmSymbolByTag)(t,h[f]);p+=f>0?" ":"",m+=f>0?" ":"",p+=y&&y.input?y.input:h[f],m+=y&&y.output?y.output_linear?y.output_linear:y.output:h[f]}return{ascii:p,linear:m?m.split(" ").join(""):""}}return{ascii:l?l.input:e,linear:l?l.output_linear?l.output_linear:l.output:e}};e.FindSymbolReplace=function(t){return t.replace(/\u00A0/g," ")};e.FindSymbolToAM=function(t,e,n){void 0===n&&(n=null),e=e.split(" ").join("");var r=null;return n&&n.stretchy&&(r=(0,o.findAmSymbolByTagStretchy)(t,e)),r||(r=(0,o.findAmSymbolByTag)(t,e)),{ascii:r?r.input:"",linear:r?r.output_linear?r.output_linear:r.output:e}};var u=function(t){var e="";try{return t.childNodes.forEach((function(t){e+=t.text})),e}catch(t){return e}},d=function(t,e){return f.handleAll(t,e)};e.getAttributes=function(t){return t.attributes.getAllAttributes()};var h=function(t){return 1===t.childNodes.length&&(t.childNodes[0].isKind("inferredMrow")||t.childNodes[0].isKind("TeXAtom"))&&(t=h(t.childNodes[0])),t},p=function(t,n,r){for(var i,a=h(n),s={collChildrenCanBeVerticalMath:!0,startedFromMathOperation:!1,mmlCollVerticalMath:"",mmlCollVerticalMath_linear:"",mathOperation:""},T=!1,Q=0;Q<a.childNodes.length;Q++){T&&(s.mmlCollVerticalMath_linear+=")",T=!1);var c=a.childNodes[Q];if(c.isKind("inferredMrow")||c.isKind("TeXAtom")){var d=p(t,c,r);d.collChildrenCanBeVerticalMath||(s.collChildrenCanBeVerticalMath=!1),d.startedFromMathOperation&&(s.startedFromMathOperation=!0),d.mathOperation&&(s.mathOperation=d.mathOperation),s.mmlCollVerticalMath+=d.mmlCollVerticalMath,s.mmlCollVerticalMath_linear+=d.mmlCollVerticalMath_linear}else{var m=t.visitNode(c,""),f=u(c);if("mfrac"===(null==c?void 0:c.kind)&&((null===(i=s.mmlCollVerticalMath_linear)||void 0===i?void 0:i.trim())&&(0,l.needsParensForFollowingDivision)(s.mmlCollVerticalMath_linear)||(0,l.needBrackets)(t,c))&&(s.mmlCollVerticalMath_linear+="(",T=!0),"mo"===c.kind){var y=(0,e.getSymbolType)("mo",f);y!==o.eSymbolType.logical&&y!==o.eSymbolType.relation&&y!==o.eSymbolType.arrow||(s.collChildrenCanBeVerticalMath=!1)}if(!c.isKind("mstyle")){if(0===Q&&"mo"===c.kind&&r>0){var g=u(c);"+"!==g&&"-"!==g&&"−"!==g&&"×"!==g&&"÷"!==g||(s.mathOperation=m.ascii,s.startedFromMathOperation=!0)}s.mmlCollVerticalMath+='","'===m.ascii?",":m.ascii,s.mmlCollVerticalMath_linear+='","'===m.linear?",":m.linear}}}return T&&(s.mmlCollVerticalMath_linear+=")"),s},m=function(){return function(t,n){var r=(0,s.initAsciiData)();try{var i=u(t);if(t.attributes.get("flattenSup")&&"∧"===i)return t.Parent.attributes.setInherited("ignoreBrackets",!0),r;if("⁡"===i)return r;var o=(0,e.getAttributes)(t),a=(0,e.SymbolToAM)(t.kind,i,o,n.options.showStyle);if(a.ascii&&a.ascii.length>1){r=(0,s.AddToAsciiData)(r,{ascii:Q.test(a.ascii[0])&&(0,e.needFirstSpace)(t)?" ":"",linear:Q.test(a.linear[0])&&(0,e.needFirstSpace)(t)?" ":""}),r=(0,s.AddToAsciiData)(r,{ascii:a.ascii,linear:a.linear||a.ascii});var l=c(t),T=Q.test(a.ascii[a.ascii.length-1])&&l,d=Q.test(a.linear[a.linear.length-1])&&l;t.attributes.setInherited("hasLastSpace",T),r=(0,s.AddToAsciiData)(r,{ascii:T?" ":"",linear:d?" ":""})}else"―"===a.ascii&&"munder"===t.Parent.kind&&(a.ascii="_"),r=","===a.ascii&&("mtd"===t.Parent.kind||"TeXAtom"===t.Parent.kind&&"mtd"===t.Parent.Parent.kind)?(0,s.AddToAsciiData)(r,{ascii:'"'+a.ascii+'"',linear:a.linear,ascii_tsv:"".concat(n.options.tableToTsv?a.ascii:'"'+a.ascii+'"'),ascii_csv:a.ascii,ascii_md:a.ascii}):(0,s.AddToAsciiData)(r,{ascii:a.ascii,linear:a.linear,ascii_tsv:'"'===a.ascii?"":a.ascii,ascii_csv:'"'===a.ascii?"":a.ascii,ascii_md:a.ascii});if(t.Parent&&"mpadded"===t.Parent.kind&&t.Parent.Parent&&"menclose"===t.Parent.Parent.kind){var h=(0,e.getAttributes)(t.Parent.Parent);if(h.notation&&-1!==h.notation.toString().indexOf("bottom"))return t.Parent.Parent.attributes.attributes.lcm=!0,(0,s.initAsciiData)()}return r}catch(t){return console.error("mml => mo =>",t),r}}};e.handle=function(t,e){var n=(y[t.kind]||d)(t,e);return t.currentData=n,n};var f={handle:e.handle,handleAll:function(t,e){var n,i,o=(0,s.initAsciiData)();try{try{for(var a=r.__values(t.childNodes),l=a.next();!l.done;l=a.next()){var T=l.value,Q=e.visitNode(T,"");o=(0,s.AddToAsciiData)(o,Q),T.currentData=o}}catch(t){n={error:t}}finally{try{l&&!l.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}return t.currentData=o,o}catch(t){return console.error("mml => handleAll =>",t),o}}},y={mi:function(t,n){var r=(0,s.initAsciiData)();try{if(!t.childNodes||0===t.childNodes.length)return r;var i=t.childNodes[0].text,a=n.options.showStyle?(0,e.getAttributes)(t):null,l=(0,e.SymbolToAM)(t.kind,i,a);if(l.ascii&&l.ascii.length>1&&Q.test(l.ascii[0])){var T=o.regExpIsFunction.test(l.ascii.trim());T&&t.Parent.attributes.setInherited("isFunction",T),r=(0,s.AddToAsciiData)(r,{ascii:(0,e.needFirstSpace)(t)?" ":"",linear:(0,e.needFirstSpace)(t,!0)?" ":""}),r=(0,s.AddToAsciiData)(r,{ascii:l.ascii,linear:l.linear||l.ascii});var u=c(t,T),d=c(t,T,!0);t.attributes.setInherited("hasLastSpace",u),r=(0,s.AddToAsciiData)(r,{ascii:u?" ":"",linear:d?" ":""})}else r=(0,s.AddToAsciiData)(r,{ascii:l.ascii,linear:l.linear||l.ascii});return r}catch(t){return console.error("mml => mi =>",t),r}},mo:m(),mn:m(),mfrac:function(t,e){var n,r,i,o,a=(0,s.initAsciiData)();try{var l=t.childNodes[0]?t.childNodes[0]:null,T=t.childNodes[1]?t.childNodes[1]:null,Q=l?e.visitNode(l,""):null,c=T?e.visitNode(T,""):null;return l&&"mrow"===l.kind&&l.childNodes.length>1||e.options.extraBrackets?(a=(0,s.AddToAsciiData)(a,{ascii:"(",linear:(null===(n=Q.linear)||void 0===n?void 0:n.length)>1?"(":""}),a=(0,s.AddToAsciiData)(a,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),a=(0,s.AddToAsciiData)(a,{ascii:")",linear:(null===(r=Q.linear)||void 0===r?void 0:r.length)>1?")":""})):a=(0,s.AddToAsciiData)(a,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),a=(0,s.AddToAsciiData)(a,{ascii:"/",linear:"/"}),T&&"mrow"===T.kind&&T.childNodes.length>1||e.options.extraBrackets?(a=(0,s.AddToAsciiData)(a,{ascii:"(",linear:(null===(i=c.linear)||void 0===i?void 0:i.length)>1?"(":""}),a=(0,s.AddToAsciiData)(a,{ascii:c?c.ascii:"",linear:c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),a=(0,s.AddToAsciiData)(a,{ascii:")",linear:(null===(o=c.linear)||void 0===o?void 0:o.length)>1?")":""})):a=(0,s.AddToAsciiData)(a,{ascii:c?c.ascii:"",linear:c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),a}catch(t){return console.error("mml => mfrac =>",t),a}},msup:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=(0,s.hasOnlyOneMoNode)(a);a.attributes.setInherited("flattenSup",T);var Q=o?e.visitNode(o,""):null,c=a?e.visitNode(a,""):null;i=(0,s.AddToAsciiData)(i,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""});var u=1===(null===(n=null==c?void 0:c.linear)||void 0===n?void 0:n.length)?(0,l.findAmSymbolsToLinear)(c.linear,"msup"):null,d=u?u.output:"";if(t.attributes.get("ignoreBrackets")&&!c.ascii)return i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:d||"^"});d||(d=(0,l.replaceScripts)(null==c?void 0:c.linear));var h=!d&&(null===(r=null==c?void 0:c.linear)||void 0===r?void 0:r.length)>1&&!(0,l.isWrappedWithParens)(c.linear);return i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:d||"^"}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?"(":"",linear:h?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:c?c.ascii:"",linear:!d&&c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?")":"",linear:h?")":""})}catch(t){return console.error("mml => msup =>",t),i}},msub:function(t,e){var n,r=(0,s.initAsciiData)();try{var i=t.childNodes[0]?t.childNodes[0]:null,o=t.childNodes[1]?t.childNodes[1]:null,a=i?e.visitNode(i,""):null,T=o?e.visitNode(o,""):null;r=(0,s.AddToAsciiData)(r,{ascii:a?a.ascii:"",linear:a?a.linear:"",ascii_tsv:a?a.ascii_tsv:"",ascii_csv:a?a.ascii_csv:"",ascii_md:a?a.ascii_md:""});var Q=(0,l.replaceScripts)(null==T?void 0:T.linear,"sub");r=(0,s.AddToAsciiData)(r,{ascii:"_",linear:Q||"_"});var c=!Q&&(null===(n=null==T?void 0:T.linear)||void 0===n?void 0:n.length)>1&&!(0,l.isWrappedWithParens)(T.linear);return r=(0,s.AddToAsciiData)(r,{ascii:e.options.extraBrackets?"(":"",linear:c?"(":""}),r=(0,s.AddToAsciiData)(r,{ascii:T?T.ascii:"",linear:!Q&&T?T.linear:"",ascii_tsv:T?T.ascii_tsv:"",ascii_csv:T?T.ascii_csv:"",ascii_md:T?T.ascii_md:""}),r=(0,s.AddToAsciiData)(r,{ascii:e.options.extraBrackets?")":"",linear:c?")":""})}catch(t){return console.error("mml => msub =>",t),r}},msubsup:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=t.childNodes[2]?t.childNodes[2]:null,Q=o?e.visitNode(o,""):null,c=a?e.visitNode(a,""):null,u=T?e.visitNode(T,""):null,d=(null==Q?void 0:Q.linear)&&(0,l.hasAnyWhitespace)(Q.linear);i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:Q?Q.ascii:"",linear:(null==Q?void 0:Q.linear)?(0,l.replaceUnicodeWhitespace)(Q.linear):"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?")":""});var h=(0,l.replaceScripts)(null==c?void 0:c.linear,"sub");return i=(0,s.AddToAsciiData)(i,{ascii:"_",linear:h||"_"}),d=!h&&(null===(n=null==c?void 0:c.linear)||void 0===n?void 0:n.length)>1&&!(0,l.isWrappedWithParens)(c.linear),i=(0,s.AddToAsciiData)(i,{ascii:"(",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:c?c.ascii:"",linear:!h&&c?c.linear:"",ascii_tsv:c?c.ascii_tsv:"",ascii_csv:c?c.ascii_csv:"",ascii_md:c?c.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:")",linear:d?")":""}),h=(0,l.replaceScripts)(null==u?void 0:u.linear),i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:h||"^"}),d=!h&&(null===(r=null==u?void 0:u.linear)||void 0===r?void 0:r.length)>1&&!(0,l.isWrappedWithParens)(u.linear),i=(0,s.AddToAsciiData)(i,{ascii:"(",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:u?u.ascii:"",linear:!h&&u?u.linear:"",ascii_tsv:u?u.ascii_tsv:"",ascii_csv:u?u.ascii_csv:"",ascii_md:u?u.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:")",linear:d?")":""})}catch(t){return console.error("mml => msubsup =>",t),i}},msqrt:function(t,e){var n=(0,s.initAsciiData)();try{var r=t.childNodes[0]?t.childNodes[0]:null,i=r?e.visitNode(r,""):null;return n=(0,s.AddToAsciiData)(n,{ascii:"sqrt",linear:"√"}),n=(0,s.AddToAsciiData)(n,{ascii:i?i.ascii:"",linear:i?i.linear:"",ascii_tsv:i?i.ascii_tsv:"",ascii_csv:i?i.ascii_csv:"",ascii_md:i?i.ascii_md:""})}catch(t){return console.error("mml => msqrt =>",t),n}},mover:function(t){return function(n,i){var o,a,T,Q,c,u,d,h,p,m,f=(0,s.initAsciiData)();try{var y=n.childNodes[0]?n.childNodes[0]:"",g=n.childNodes[1]?n.childNodes[1]:"",L=y?i.visitNode(y,""):null,b=g?i.visitNode(g,""):null;if(g&&"mo"===g.kind){var v=b.ascii;if((_=(0,e.FindSymbolToAM)("mover",v,(0,e.getAttributes)(g))).ascii){var x=(0,l.formatLinearFromAscii)(_.ascii,null==L?void 0:L.linear);f=(0,s.AddToAsciiData)(f,{ascii:" ",linear:""}),f=(0,s.AddToAsciiData)(f,{ascii:_.ascii,linear:x?"":_.linear}),f=(0,s.AddToAsciiData)(f,{ascii:"(",linear:!x&&(null===(a=null===(o=null==L?void 0:L.linear)||void 0===o?void 0:o.trim())||void 0===a?void 0:a.length)>1?"(":""}),f=(0,s.AddToAsciiData)(f,{ascii:L?L.ascii?L.ascii.trim():L.ascii:"",linear:x||(L?L.linear?L.linear.trim():L.linear:""),ascii_tsv:L?L.ascii_tsv?L.ascii_tsv.trim():L.ascii_tsv:"",ascii_csv:L?L.ascii_csv?L.ascii_csv.trim():L.ascii_csv:"",ascii_md:L?L.ascii_md?L.ascii_md.trim():L.ascii_md:""}),f=(0,s.AddToAsciiData)(f,{ascii:")",linear:!x&&(null===(Q=null===(T=null==L?void 0:L.linear)||void 0===T?void 0:T.trim())||void 0===Q?void 0:Q.length)>1?")":""})}else{x=(0,l.formatLinearFromAscii)(_.linear,null==L?void 0:L.linear,"mover");f=(0,s.AddToAsciiData)(f,{ascii:L?L.ascii:"",linear:!x&&L?L.linear:"",ascii_tsv:L?L.ascii_tsv:"",ascii_csv:L?L.ascii_csv:"",ascii_md:L?L.ascii_md:""}),f=(0,s.AddToAsciiData)(f,{ascii:"^",linear:x||"^"}),f=(0,s.AddToAsciiData)(f,{ascii:i.options.extraBrackets?"(":"",linear:!x&&(null===(c=null==b?void 0:b.linear)||void 0===c?void 0:c.length)?"(":""}),f=(0,s.AddToAsciiData)(f,{ascii:b?b.ascii:"",linear:!x&&b?b.linear:"",ascii_tsv:b?b.ascii_tsv:"",ascii_csv:b?b.ascii_csv:"",ascii_md:b?b.ascii_md:""}),f=(0,s.AddToAsciiData)(f,{ascii:i.options.extraBrackets?")":"",linear:!x&&(null===(u=null==b?void 0:b.linear)||void 0===u?void 0:u.length)?")":""})}}else{var _=t.handleAll(n,i);x="";if((null===(d=null==L?void 0:L.linear)||void 0===d?void 0:d.length)&&(null===(h=b.linear)||void 0===h?void 0:h.length)){x+=(null===(p=L.linear)||void 0===p?void 0:p.length)>1?"(".concat(L.linear,")"):L.linear;var H=1===b.linear.length?(0,l.findAmSymbolsToLinear)(b.linear):null;H?x+=L.linear.length>1?H.outputComplex:H.output:(x+="^",x+=(null===(m=b.linear)||void 0===m?void 0:m.length)>1?"(".concat(b.linear,")"):b.linear)}f=x?(0,s.AddToAsciiData)(f,r.__assign(r.__assign({},_),{linear:x})):(0,s.AddToAsciiData)(f,_)}return f}catch(t){return console.error("mml => mover =>",t),f}}}(f),munder:function(t){return function(n,i){var o,a,T=(0,s.initAsciiData)();try{var Q=n.childNodes[0]?n.childNodes[0]:null,c=n.childNodes[1]?n.childNodes[1]:null,u=Q?i.visitNode(Q,""):null,d=c?i.visitNode(c,""):null;if(c&&"mo"===c.kind){var h=d.ascii,p=(0,e.FindSymbolToAM)(n.kind,h);if(p.ascii){var m=(0,l.formatLinearFromAscii)(p.ascii,null==u?void 0:u.linear);T=(0,s.AddToAsciiData)(T,{ascii:p.ascii+"(",linear:m||p.linear+"("}),T=(0,s.AddToAsciiData)(T,{ascii:u?u.ascii:"",linear:!m&&u?u.linear:"",ascii_tsv:u?u.ascii_tsv:"",ascii_csv:u?u.ascii_csv:"",ascii_md:u?u.ascii_md:""}),T=(0,s.AddToAsciiData)(T,{ascii:")",linear:m?"":")"})}else{var f=t.handleAll(n,i);m="";(null===(o=null==u?void 0:u.linear)||void 0===o?void 0:o.length)&&(null===(a=d.linear)||void 0===a?void 0:a.length)&&(m=(0,l.formatLinearFromAscii)(d.linear,u.linear)),T=m?(0,s.AddToAsciiData)(T,r.__assign(r.__assign({},f),{linear:m})):(0,s.AddToAsciiData)(T,f)}}else T=(0,s.AddToAsciiData)(T,{ascii:u?u.ascii:"",linear:u?u.linear:"",ascii_tsv:u?u.ascii_tsv:"",ascii_csv:u?u.ascii_csv:"",ascii_md:u?u.ascii_md:""}),T=(0,s.AddToAsciiData)(T,{ascii:"_",linear:"_"}),T=(0,s.AddToAsciiData)(T,{ascii:i.options.extraBrackets?"(":"",linear:i.options.extraBrackets?"(":""}),T=(0,s.AddToAsciiData)(T,{ascii:d?d.ascii:"",linear:d?d.linear:"",ascii_tsv:d?d.ascii_tsv:"",ascii_csv:d?d.ascii_csv:"",ascii_md:d?d.ascii_md:""}),T=(0,s.AddToAsciiData)(T,{ascii:i.options.extraBrackets?")":"",linear:i.options.extraBrackets?")":""});return T}catch(t){return console.error("mml => munder =>",t),T}}}(f),munderover:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=t.childNodes[2]?t.childNodes[2]:null,Q=o?e.visitNode(o,""):null,c=a?e.visitNode(a,""):null,u=T?e.visitNode(T,""):null,d=(null==Q?void 0:Q.linear)&&(0,l.hasAnyWhitespace)(Q.linear);return i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:Q.ascii?Q.ascii:"",linear:Q.linear?(0,l.replaceUnicodeWhitespace)(Q.linear):"",ascii_tsv:Q.ascii_tsv?Q.ascii_tsv:"",ascii_csv:Q.ascii_csv?Q.ascii_csv:"",ascii_md:Q.ascii_md?Q.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:"",linear:d?")":""}),i=(0,s.AddToAsciiData)(i,{ascii:"_",linear:"_"}),d=(null===(n=null==c?void 0:c.linear)||void 0===n?void 0:n.length)>1&&!(0,l.isWrappedWithParens)(c.linear),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?"(":"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:c.ascii?c.ascii:"",linear:c.linear?c.linear:"",ascii_tsv:c.ascii_tsv?c.ascii_tsv:"",ascii_csv:c.ascii_csv?c.ascii_csv:"",ascii_md:c.ascii_md?c.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?")":"",linear:d?")":""}),i=(0,s.AddToAsciiData)(i,{ascii:"^",linear:"^"}),d=(null===(r=null==u?void 0:u.linear)||void 0===r?void 0:r.length)>1&&!(0,l.isWrappedWithParens)(u.linear),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?"(":"",linear:d?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:u.ascii?u.ascii:"",linear:u.linear?u.linear:"",ascii_tsv:u.ascii_tsv?u.ascii_tsv:"",ascii_csv:u.ascii_csv?u.ascii_csv:"",ascii_md:u.ascii_md?u.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:e.options.extraBrackets?")":"",linear:d?")":""})}catch(t){return console.error("mml => munderover =>",t),i}},mspace:function(t){return function(n,r){var i,o,a=(0,s.initAsciiData)();try{var l=(0,e.getAttributes)(n);if(l&&"2em"===l.width){if(a=(0,s.AddToAsciiData)(a,{ascii:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":"",linear:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":""}),a=(0,s.AddToAsciiData)(a,{ascii:"qquad",linear:" "}),null===(i=n.parent)||void 0===i?void 0:i.parent){var T=c(n.parent.parent);n.parent.parent.attributes.setInherited("hasLastSpace",T),a=(0,s.AddToAsciiData)(a,{ascii:T?" ":"",linear:T?" ":""})}return a}if(l&&"1em"===l.width){if(a=(0,s.AddToAsciiData)(a,{ascii:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":"",linear:n.parent.parent&&(0,e.needFirstSpace)(n.parent.parent)?" ":""}),a=(0,s.AddToAsciiData)(a,{ascii:"quad",linear:" "}),null===(o=n.parent)||void 0===o?void 0:o.parent){T=c(n.parent.parent);n.parent.parent.attributes.setInherited("hasLastSpace",T),a=(0,s.AddToAsciiData)(a,{ascii:T?" ":"",linear:T?" ":""})}return a}var Q=t.handleAll(n,r);return a=(0,s.AddToAsciiData)(a,Q)}catch(t){return console.error("mml => mspace =>",t),a}}}(f),mtext:function(t,n){var r=(0,s.initAsciiData)();try{if(!t.childNodes||0===t.childNodes.length)return r;var i=t.childNodes[0],o=(0,e.FindSymbolReplace)(i.text),a=(0,e.FindSymbolToAM)(t.kind,o);if(a.ascii)return r=(0,s.AddToAsciiData)(r,{ascii:a.ascii,linear:a.linear});var l=t.attributes.get("toTsv"),T=t.attributes.get("toCsv"),Q=t.attributes.get("toMd");return r="("===o[0]||l||T||Q?(0,s.AddToAsciiData)(r,{ascii:"("===o[0]?o.replace(/"/g,""):o,linear:"("===o[0]?o.replace(/"/g,""):o,ascii_tsv:l?o.replace(/"/g,""):o,ascii_csv:T?o.replace(/"/g,""):o,ascii_md:o}):!o||o&&!o.trim()?(0,s.AddToAsciiData)(r,{ascii:"",linear:""}):(0,s.AddToAsciiData)(r,{ascii:'"'+o+'"',linear:o,ascii_tsv:n.options.tableToTsv?o.replace(/"/g,""):'"'+o+'"',ascii_csv:n.options.tableToCsv?o.replace(/"/g,""):o,ascii_md:o})}catch(t){return console.error("mml => mtext =>",t),r}},mtable:function(t,e){var n,r,o,s,l,T,Q,c,u,d,h,m,f,y,g,L,b,v,x,_,H,w,O,M,S="",E="",A="",C="";try{var V=t.prevClass===i.TEXCLASS.INNER,N="menclose"===(null===(n=t.Parent)||void 0===n?void 0:n.kind),I=t.childNodes.length,P=e.options.tableToTsv&&!e.options.isSubTable&&("math"===(null===(r=t.Parent)||void 0===r?void 0:r.kind)||N&&"math"===(null===(o=t.Parent.Parent)||void 0===o?void 0:o.kind)),R=e.options.tableToCsv&&!e.options.isSubTable&&("math"===(null===(s=t.Parent)||void 0===s?void 0:s.kind)||N&&"math"===(null===(l=t.Parent.Parent)||void 0===l?void 0:l.kind)),k=e.options.tableToMd&&!e.options.isSubTable&&("math"===(null===(T=t.Parent)||void 0===T?void 0:T.kind)||N&&"math"===(null===(Q=t.Parent.Parent)||void 0===Q?void 0:Q.kind));t.attributes.setInherited("toTsv",P),t.attributes.setInherited("toCsv",R),t.attributes.setInherited("toMd",k);for(var D=t.attributes.get("columnalign"),B=D?D.split(" "):[],j=t.attributes.isSet("rowlines")?t.attributes.get("rowlines").split(" "):[],F=t.attributes.get("name"),G=t.parent&&"mrow"===t.parent.kind&&(null===(c=t.parent.properties)||void 0===c?void 0:c.hasOwnProperty("open")),q=t.parent&&"mrow"===t.parent.kind&&(null===(u=t.parent.properties)||void 0===u?void 0:u.hasOwnProperty("close")),U=!!G&&t.parent.properties.open,Z=!!q&&t.parent.properties.close,z=G&&t.parent.properties.open||q&&t.parent.properties.close,W=N&&(null===(d=t.Parent.Parent)||void 0===d?void 0:d.isKind("mrow"))&&((null===(h=t.Parent.Parent.properties)||void 0===h?void 0:h.hasOwnProperty("open"))&&t.Parent.Parent.properties.open||(null===(m=t.Parent.Parent.properties)||void 0===m?void 0:m.hasOwnProperty("close"))&&t.Parent.Parent.properties.close),X=!!z||!!W,$=!(!z&&!W||!U||!Z),K=a.envArraysShouldBeFlattenInTSV.includes(F)&&!G&&!q&&!N,J="right"===D&&!X,Y=[],tt=!1,et=0;et<I;et++){var nt=t.childNodes[et];nt.attributes.setInherited("toTsv",P),nt.attributes.setInherited("toCsv",R),nt.attributes.setInherited("toMd",k),nt.attributes.setInherited("itShouldBeFlatten",K);for(var rt="",it="",ot="",at="",st="",lt="",Tt="",Qt="",ct=null===(f=nt.childNodes)||void 0===f?void 0:f.length,ut=nt.attributes.get("displaystyle"),dt=0;dt<ct;dt++){dt>0&&(ut?(null==B?void 0:B.length)&&"left"===B[dt-1]&&"right"===B[dt]&&(it+=$?",":" "):(rt+=",",it+=$?",":" ",ot+=P?(null===(y=e.options.tsv_separators)||void 0===y?void 0:y.column)||"\t":K?", ":",",at+=R?(null===(g=e.options.csv_separators)||void 0===g?void 0:g.column)||",":K?", ":",",st+=k?(null===(L=e.options.md_separators)||void 0===L?void 0:L.column)||" ":K?", ":","));var ht=nt.childNodes[dt],pt=e.visitNode(ht,""),mt=pt.ascii,ft=void 0===mt?"":mt,yt=pt.linear,gt=void 0===yt?"":yt,Lt=pt.ascii_tsv,bt=void 0===Lt?"":Lt,vt=pt.ascii_csv,xt=void 0===vt?"":vt,_t=pt.ascii_md,Ht=void 0===_t?"":_t,wt="",Ot="";if(J){var Mt=p(e,ht,et);wt=Mt.mmlCollVerticalMath,Ot=Mt.mmlCollVerticalMath_linear,Mt.startedFromMathOperation&&(tt=!0,Qt=Mt.mathOperation),Mt.collChildrenCanBeVerticalMath||(J=!1)}rt+=ft,it+=gt,ot+=!P&&K?bt.trimEnd():bt,at+=!R&&K?xt.trimEnd():xt,st+=!k&&K?Ht.trimEnd():Ht,lt+=wt,Tt+=Ot}J&&(null==j?void 0:j.length)&&(null==j?void 0:j.length)>et&&"none"!==j[et]&&(lt+="=",Tt+="=");var St=null===(b=nt.attributes)||void 0===b?void 0:b.get("displaystyle");Y.push({mmlRow:rt,mmlRow_linear:it,mmlRow_tsv:ot,mmlRow_csv:at,mmlRow_md:st,mmlRowVerticalMath:lt,mmlRowVerticalMath_linear:Tt,mathOperation:Qt,encloseToSquareBrackets:I>1||V||ct>1&&!St,toTsv:P,toCsv:R,toMd:k,itShouldBeFlatten:K})}if(tt||(J=!1),J&&Y.length>2)for(Qt="",et=Y.length-1;et>=0;et--)Y[et].mathOperation?Qt=Y[et].mathOperation:Qt&&et>0&&(Y[et].mmlRowVerticalMath=Qt+Y[et].mmlRowVerticalMath,Y[et].mmlRowVerticalMath_linear=Qt+Y[et].mmlRowVerticalMath_linear);var Et="",At="",Ct="",Vt="",Nt="";for(et=0;et<Y.length;et++)et>0&&!J&&(Et+=",",Ct+=P?(null===(v=e.options.tsv_separators)||void 0===v?void 0:v.row)||"\n":K?", ":",",Vt+=R?(null===(x=e.options.csv_separators)||void 0===x?void 0:x.row)||"\n":K?", ":",",Nt+=k?(null===(_=e.options.md_separators)||void 0===_?void 0:_.row)||" <br> ":K?", ":",",$&&(At+=",")),rt=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow,it=J?Y[et].mmlRowVerticalMath_linear:Y[et].mmlRow_linear,ot=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow_tsv,at=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow_csv,st=J?Y[et].mmlRowVerticalMath:Y[et].mmlRow_md,Et+=Y[et].encloseToSquareBrackets&&!J?"["+rt+"]":rt,Y[et].encloseToSquareBrackets&&!J&&$?At+="["+it+"]":(At+=At&&!J?"\n":"",At+=it),Ct+=!Y[et].encloseToSquareBrackets||Y[et].itShouldBeFlatten||Y[et].toTsv||J?ot:"["+ot+"]",Vt+=!Y[et].encloseToSquareBrackets||Y[et].itShouldBeFlatten||Y[et].toCsv||J?at:"["+at+"]",Nt+=!Y[et].encloseToSquareBrackets||Y[et].itShouldBeFlatten||Y[et].toMd||J?st:"["+st+"]";return J&&((null===(H=t.Parent)||void 0===H?void 0:H.isKind("mrow"))&&t.Parent.attributes.setInherited("isVerticalMath",!0),(null===(w=t.Parent)||void 0===w?void 0:w.isKind("menclose"))&&(null===(M=null===(O=t.Parent)||void 0===O?void 0:O.Parent)||void 0===M?void 0:M.isKind("mrow"))&&t.Parent.Parent.attributes.setInherited("isVerticalMath",!0)),P?E+='"'+Ct+'"':K||J?E+=Ct:(E+=G||N?"":"{:",E+=Ct,E+=q||N?"":":}"),R||K||J?A+=Vt:(A+=G||N?"":"{:",A+=Vt,A+=q||N?"":":}"),k||K||J?C+=Nt:(C+=G||N?"":"{:",C+=Nt,C+=q||N?"":":}"),J?S+=Et:(S+=G||N?"":"{:",S+=Et,S+=q||N?"":":}"),{ascii:S,linear:At,ascii_tsv:E,ascii_csv:A,ascii_md:C}}catch(t){return console.error("mml => mtable =>",t),{ascii:S,linear:S,ascii_tsv:E,ascii_csv:A,ascii_md:C}}},mrow:function(t,e){try{for(var n=t.properties&&t.properties.texClass===i.TEXCLASS.INNER&&t.parent&&"inferredMrow"===t.parent.kind,r=t.properties&&t.properties.hasOwnProperty("open")&&""===t.properties.open,a=t.properties&&t.properties.hasOwnProperty("close")&&""===t.properties.close,l="",T="",Q="",c="",u="",d="",h=null,p=!1,m=0;m<t.childNodes.length;m++){var f=e.visitNode(t.childNodes[m],"");if(p){var y=(0,s.getFunctionNameFromAscii)(f.ascii,t.childNodes[m]);y&&!o.regExpIsFunction.test(y)||(l+=")",T+=")",Q+=")",c+=")",u+=")",p=!1)}"mfrac"===t.childNodes[m].kind&&(null==d?void 0:d.trim())&&(o.regExpIsFunction.test(d.trim())||"mo"===(null==h?void 0:h.kind)&&-1===(null==h?void 0:h.texClass))&&(l+="(",T+="(",Q+="(",c+="(",u+="(",p=!0),l+=f.ascii,T+=f.linear,Q+=f.ascii_tsv,c+=f.ascii_csv,u+=f.ascii_md,d=l,h=t.childNodes[m]}p&&(l+=")",T+=")",Q+=")",c+=")",u+=")");var g=t.attributes.get("isVerticalMath"),L=n&&r&&!g?"{:":"",b=n&&a&&!g?":}":"";return{ascii:L+l+b,linear:T,ascii_tsv:L+Q+b,ascii_csv:L+c+b,ascii_md:L+u+b}}catch(t){return console.error("mml => mrow =>",t),(0,s.initAsciiData)()}},mtr:function(t,e){var n,r,i,o=(0,s.initAsciiData)();try{for(var a=t.attributes.get("displaystyle"),l=t.attributes.get("toTsv"),T=t.attributes.get("toCsv"),Q=t.attributes.get("toMd"),c=t.attributes.get("itShouldBeFlatten"),u=0;u<t.childNodes.length;u++){u>0&&!a&&(o=(0,s.AddToAsciiData)(o,{ascii:",",linear:" ",ascii_tsv:l?(null===(n=e.options.tsv_separators)||void 0===n?void 0:n.column)||"\t":c?", ":",",ascii_csv:T?(null===(r=e.options.csv_separators)||void 0===r?void 0:r.column)||",":c?", ":",",ascii_md:Q?(null===(i=e.options.md_separators)||void 0===i?void 0:i.column)||" ":c?", ":","}));var d=e.visitNode(t.childNodes[u],""),h=d.ascii,p=void 0===h?"":h,m=d.linear,f=void 0===m?"":m,y=d.ascii_tsv,g=void 0===y?"":y,L=d.ascii_csv,b=void 0===L?"":L,v=d.ascii_md,x=void 0===v?"":v;o=(0,s.AddToAsciiData)(o,{ascii:p,linear:f,ascii_tsv:!l&&c?null==g?void 0:g.trimEnd():g,ascii_csv:!T&&c?null==b?void 0:b.trimEnd():b,ascii_md:!Q&&c?null==x?void 0:x.trimEnd():x})}return o}catch(t){return console.error("mml => mtr =>",t),o}},mpadded:function(t){return function(n,r){var i=(0,s.initAsciiData)();try{var o=t.handleAll(n,r);if(n.Parent&&"menclose"===n.Parent.kind){var a=(0,e.getAttributes)(n.Parent);if(a&&"bottom"===a.notation&&a.lcm&&(!o||!o.ascii))return i}return i=(0,s.AddToAsciiData)(i,{ascii:'"',linear:"",ascii_tsv:r.options.tableToTsv?"":'"',ascii_csv:"",ascii_md:""}),i=(0,s.AddToAsciiData)(i,o),i=(0,s.AddToAsciiData)(i,{ascii:'"',linear:"",ascii_tsv:r.options.tableToTsv?"":'"',ascii_csv:"",ascii_md:""})}catch(t){return console.error("mml => mpadded =>",t),i}}}(f),mroot:function(t,e){var n,r,i=(0,s.initAsciiData)();try{var o=t.childNodes[0]?t.childNodes[0]:null,a=t.childNodes[1]?t.childNodes[1]:null,T=a?e.visitNode(a,""):null,Q=o?e.visitNode(o,""):null,c=(0,l.findRootSymbol)(null==T?void 0:T.linear);return i=(0,s.AddToAsciiData)(i,{ascii:"root",linear:c||"root"}),i=(0,s.AddToAsciiData)(i,{ascii:a?"(":"",linear:c?"":a?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:T?T.ascii:"",linear:c?"":T?T.linear:"",ascii_tsv:T?T.ascii_tsv:"",ascii_csv:T?T.ascii_csv:"",ascii_md:T?T.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:a?")":"",linear:c?"":a?")":""}),i=(0,s.AddToAsciiData)(i,{ascii:o?"(":"",linear:(null===(n=Q.linear)||void 0===n?void 0:n.length)>1?"(":""}),i=(0,s.AddToAsciiData)(i,{ascii:Q?Q.ascii:"",linear:Q?Q.linear:"",ascii_tsv:Q?Q.ascii_tsv:"",ascii_csv:Q?Q.ascii_csv:"",ascii_md:Q?Q.ascii_md:""}),i=(0,s.AddToAsciiData)(i,{ascii:o?")":"",linear:(null===(r=Q.linear)||void 0===r?void 0:r.length)>1?")":""})}catch(t){return console.error("mml => mroot =>",t),i}},menclose:function(t){return function(n,r){var i=(0,s.initAsciiData)();try{var o=(0,e.getAttributes)(n),a=!1,l=!1;o&&o.notation&&(a=o.notation.toString().indexOf("left")>-1,l=o.notation.toString().indexOf("right")>-1),i=(0,s.AddToAsciiData)(i,{ascii:a?"[":"",linear:""});var T=t.handleAll(n,r);return i=(0,s.AddToAsciiData)(i,T),o&&o.lcm&&(i=(0,s.AddToAsciiData)(i,{ascii:"",linear:""})),i=(0,s.AddToAsciiData)(i,{ascii:l?"]":"",linear:""})}catch(t){return console.error("mml => menclose =>",t),i}}}(f)}},3768:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.findAmSymbolByTagStretchy=e.findAmSymbolByTag=e.regExpIsFunction=e.getFunctions=e.AMsymbols=e.eSymbolType=void 0;var n;!function(t){t.operation="operation",t.relation="relation",t.logical="logical",t.miscellaneous="miscellaneous",t.arrow="arrow"}(n=e.eSymbolType||(e.eSymbolType={}));var r=["𝒜","ℬ","𝒞","𝒟","ℰ","ℱ","𝒢","ℋ","ℐ","𝒥","𝒦","ℒ","ℳ","𝒩","𝒪","𝒫","𝒬","ℛ","𝒮","𝒯","𝒰","𝒱","𝒲","𝒳","𝒴","𝒵","𝒶","𝒷","𝒸","𝒹","ℯ","𝒻","ℊ","𝒽","𝒾","𝒿","𝓀","𝓁","𝓂","𝓃","ℴ","𝓅","𝓆","𝓇","𝓈","𝓉","𝓊","𝓋","𝓌","𝓍","𝓎","𝓏"],i=["𝔄","𝔅","ℭ","𝔇","𝔈","𝔉","𝔊","ℌ","ℑ","𝔍","𝔎","𝔏","𝔐","𝔑","𝔒","𝔓","𝔔","ℜ","𝔖","𝔗","𝔘","𝔙","𝔚","𝔛","𝔜","ℨ","𝔞","𝔟","𝔠","𝔡","𝔢","𝔣","𝔤","𝔥","𝔦","𝔧","𝔨","𝔩","𝔪","𝔫","𝔬","𝔭","𝔮","𝔯","𝔰","𝔱","𝔲","𝔳","𝔴","𝔵","𝔶","𝔷"],o=["𝔸","𝔹","ℂ","𝔻","𝔼","𝔽","𝔾","ℍ","𝕀","𝕁","𝕂","𝕃","𝕄","ℕ","𝕆","ℙ","ℚ","ℝ","𝕊","𝕋","𝕌","𝕍","𝕎","𝕏","𝕐","ℤ","𝕒","𝕓","𝕔","𝕕","𝕖","𝕗","𝕘","𝕙","𝕚","𝕛","𝕜","𝕝","𝕞","𝕟","𝕠","𝕡","𝕢","𝕣","𝕤","𝕥","𝕦","𝕧","𝕨","𝕩","𝕪","𝕫"];e.AMsymbols=[{input:"alpha",tag:"mi",output:"α",tex:null,ttype:0},{input:"beta",tag:"mi",output:"β",tex:null,ttype:0},{input:"chi",tag:"mi",output:"χ",tex:null,ttype:0},{input:"delta",tag:"mi",output:"δ",tex:null,ttype:0},{input:"Delta",tag:"mo",output:"Δ",tex:null,ttype:0},{input:"Delta",tag:"mi",output:"Δ",tex:null,ttype:0},{input:"epsi",tag:"mi",output:"ε",tex:"epsilon",ttype:0},{input:"epsilon",tag:"mi",output:"ϵ",tex:"epsilon",ttype:0},{input:"varepsilon",tag:"mi",output:"ɛ",tex:null,ttype:0},{input:"eta",tag:"mi",output:"η",tex:null,ttype:0},{input:"gamma",tag:"mi",output:"γ",tex:null,ttype:0},{input:"Gamma",tag:"mo",output:"Γ",tex:null,ttype:0},{input:"iota",tag:"mi",output:"ι",tex:null,ttype:0},{input:"kappa",tag:"mi",output:"κ",tex:null,ttype:0},{input:"lambda",tag:"mi",output:"λ",tex:null,ttype:0},{input:"Lambda",tag:"mo",output:"Λ",tex:null,ttype:0},{input:"lamda",tag:"mi",output:"λ",tex:null,ttype:0},{input:"Lamda",tag:"mo",output:"Λ",tex:null,ttype:0},{input:"mu",tag:"mi",output:"μ",tex:null,ttype:0},{input:"nu",tag:"mi",output:"ν",tex:null,ttype:0},{input:"omega",tag:"mi",output:"ω",tex:null,ttype:0},{input:"Omega",tag:"mo",output:"Ω",tex:null,ttype:0},{input:"phi",tag:"mi",output:"ϕ",tex:null,ttype:0},{input:"varphi",tag:"mi",output:"φ",tex:null,ttype:0},{input:"Phi",tag:"mo",output:"Φ",tex:null,ttype:0},{input:"Phi",tag:"mi",output:"Φ",tex:null,ttype:0},{input:"pi",tag:"mi",output:"π",tex:null,ttype:0},{input:"Pi",tag:"mo",output:"Π",tex:null,ttype:0},{input:"psi",tag:"mi",output:"ψ",tex:null,ttype:0},{input:"Psi",tag:"mi",output:"Ψ",tex:null,ttype:0},{input:"rho",tag:"mi",output:"ρ",tex:null,ttype:0},{input:"sigma",tag:"mi",output:"σ",tex:null,ttype:0},{input:"Sigma",tag:"mo",output:"Σ",tex:null,ttype:0},{input:"tau",tag:"mi",output:"τ",tex:null,ttype:0},{input:"theta",tag:"mi",output:"θ",tex:null,ttype:0},{input:"vartheta",tag:"mi",output:"ϑ",tex:null,ttype:0},{input:"Theta",tag:"mo",output:"Θ",tex:null,ttype:0},{input:"upsilon",tag:"mi",output:"υ",tex:null,ttype:0},{input:"xi",tag:"mi",output:"ξ",tex:null,ttype:0},{input:"Xi",tag:"mo",output:"Ξ",tex:null,ttype:0},{input:"zeta",tag:"mi",output:"ζ",tex:null,ttype:0},{input:"-",tag:"mo",output:"−",tex:null,ttype:0,symbolType:n.operation},{input:"*",tag:"mo",output:"⋅",tex:"cdot",ttype:0,symbolType:n.operation},{input:"**",tag:"mo",output:"∗",tex:"ast",ttype:0,symbolType:n.operation},{input:"***",tag:"mo",output:"⋆",tex:"star",ttype:0,symbolType:n.operation},{input:"//",tag:"mo",output:"/",tex:null,ttype:0,symbolType:n.operation},{input:"\\\\",tag:"mo",output:"\\",tex:"backslash",ttype:0,symbolType:n.operation},{input:"\\\\",tag:"mo",output:"∖",tex:"backslash",ttype:0,symbolType:n.operation},{input:"setminus",tag:"mo",output:"\\",tex:null,ttype:0,symbolType:n.operation},{input:"xx",tag:"mo",output:"×",tex:"times",ttype:0,symbolType:n.operation},{input:"|><",tag:"mo",output:"⋉",tex:"ltimes",ttype:0,symbolType:n.operation},{input:"><|",tag:"mo",output:"⋊",tex:"rtimes",ttype:0,symbolType:n.operation},{input:"|><|",tag:"mo",output:"⋈",tex:"bowtie",ttype:0,symbolType:n.operation},{input:"-:",tag:"mo",output:"÷",tex:"div",ttype:0,symbolType:n.operation},{input:"divide",tag:"mo",output:"-:",tex:null,ttype:8,symbolType:n.operation},{input:"@",tag:"mo",output:"∘",tex:"circ",ttype:0,symbolType:n.operation},{input:"o+",tag:"mo",output:"⊕",tex:"oplus",ttype:0,symbolType:n.operation},{input:"ox",tag:"mo",output:"⊗",tex:"otimes",ttype:0,symbolType:n.operation},{input:"o.",tag:"mo",output:"⊙",tex:"odot",ttype:0,symbolType:n.operation},{input:"sum",tag:"mo",output:"∑",tex:null,ttype:7,symbolType:n.operation},{input:"prod",tag:"mo",output:"∏",tex:null,ttype:7,symbolType:n.operation},{input:"^^",tag:"mo",output:"∧",tex:"wedge",ttype:0,symbolType:n.operation},{input:"^^^",tag:"mo",output:"⋀",tex:"bigwedge",ttype:7,symbolType:n.operation},{input:"vv",tag:"mo",output:"∨",tex:"vee",ttype:0,symbolType:n.operation},{input:"vvv",tag:"mo",output:"⋁",tex:"bigvee",ttype:7,symbolType:n.operation},{input:"nn",tag:"mo",output:"∩",tex:"cap",ttype:0,symbolType:n.operation},{input:"nnn",tag:"mo",output:"⋂",tex:"bigcap",ttype:7,symbolType:n.operation},{input:"uu",tag:"mo",output:"∪",tex:"cup",ttype:0,symbolType:n.operation},{input:"uuu",tag:"mo",output:"⋃",tex:"bigcup",ttype:7,symbolType:n.operation},{input:"bigoplus",tag:"mo",output:"⨁",tex:"bigoplus",ttype:7,symbolType:n.operation},{input:"=",tag:"mo",output:"=",tex:null,ttype:0,symbolType:n.relation},{input:"!=",tag:"mo",output:"≠",tex:"ne",ttype:0,symbolType:n.relation},{input:":=",tag:"mo",output:":=",tex:null,ttype:0,symbolType:n.relation},{input:" < ",tag:"mo",output:"<",tex:null,ttype:0,symbolType:n.relation},{input:" <= ",tag:"mo",output:"≤",tex:"le",ttype:0,symbolType:n.relation},{input:"lt=",tag:"mo",output:"≤",tex:"leq",ttype:0,symbolType:n.relation},{input:" > ",tag:"mo",output:">",tex:null,ttype:0,symbolType:n.relation},{input:" >= ",tag:"mo",output:"≥",tex:"ge",ttype:0,symbolType:n.relation},{input:"gt=",tag:"mo",output:"≥",tex:"geq",ttype:0,symbolType:n.relation},{input:" >= ",tag:"mo",output:"≧",tex:"geqq",ttype:0,symbolType:n.relation},{input:" <= ",tag:"mo",output:"≦",tex:"leqq",ttype:0,symbolType:n.relation},{input:" <= ",tag:"mo",output:"⩽",tex:"leqslant",ttype:0,symbolType:n.relation},{input:" >= ",tag:"mo",output:"⩾",tex:"geqslant",ttype:0,symbolType:n.relation},{input:"-<",tag:"mo",output:"≺",tex:"prec",ttype:0,symbolType:n.relation},{input:"-lt",tag:"mo",output:"≺",tex:null,ttype:0,symbolType:n.relation},{input:">-",tag:"mo",output:"≻",tex:"succ",ttype:0,symbolType:n.relation},{input:"-<=",tag:"mo",output:"⪯",tex:"preceq",ttype:0,symbolType:n.relation},{input:">-=",tag:"mo",output:"⪰",tex:"succeq",ttype:0,symbolType:n.relation},{input:"in",tag:"mo",output:"∈",tex:null,ttype:0,symbolType:n.relation},{input:"!in",tag:"mo",output:"∉",tex:"notin",ttype:0,symbolType:n.relation},{input:"sub",tag:"mo",output:"⊂",tex:"subset",ttype:0,symbolType:n.relation},{input:"sup",tag:"mo",output:"⊃",tex:"supset",ttype:0,symbolType:n.relation},{input:"sube",tag:"mo",output:"⊆",tex:"subseteq",ttype:0,symbolType:n.relation},{input:"supe",tag:"mo",output:"⊇",tex:"supseteq",ttype:0,symbolType:n.relation},{input:"-=",tag:"mo",output:"≡",tex:"equiv",ttype:0,symbolType:n.relation},{input:"~=",tag:"mo",output:"≅",tex:"cong",ttype:0,symbolType:n.relation},{input:"~~",tag:"mo",output:"≈",tex:"approx",ttype:0,symbolType:n.relation},{input:"prop",tag:"mo",output:"∝",tex:"propto",ttype:0,symbolType:n.relation},{input:"longrightarrow",tag:"mo",output:"⟶",tex:"longrightarrow",ttype:0,symbolType:n.relation},{input:"longleftarrow",tag:"mo",output:"⟵",tex:"longleftarrow",ttype:0,symbolType:n.relation},{input:"Longleftarrow",tag:"mo",output:"⟸",tex:"Longleftarrow",ttype:0,symbolType:n.relation},{input:"Longrightarrow",tag:"mo",output:"⟹",tex:"Longrightarrow",ttype:0,symbolType:n.relation},{input:"longleftrightarrow",tag:"mo",output:"⟷",tex:"longleftrightarrow",ttype:0,symbolType:n.relation},{input:"Longleftrightarrow",tag:"mo",output:"⟺",tex:"Longleftrightarrow",ttype:0,symbolType:n.relation},{input:"longmapsto",tag:"mo",output:"⟼",tex:"longmapsto",ttype:0,symbolType:n.relation},{input:"not",tag:"mo",output:"¬",tex:"neg",ttype:0,symbolType:n.logical},{input:"=>",tag:"mo",output:"⇒",tex:"implies",ttype:0,symbolType:n.logical},{input:"if",tag:"mo",output:"if",tex:null,ttype:6,symbolType:n.logical},{input:"<=>",tag:"mo",output:"⇔",tex:"iff",ttype:0,symbolType:n.logical},{input:"AA",tag:"mo",output:"∀",tex:"forall",ttype:0,symbolType:n.logical},{input:"EE",tag:"mo",output:"∃",tex:"exists",ttype:0,symbolType:n.logical},{input:"_|_",tag:"mo",output:"⊥",tex:"bot",ttype:0,symbolType:n.logical},{input:"TT",tag:"mo",output:"⊤",tex:"top",ttype:0,symbolType:n.logical},{input:"TT",tag:"mi",output:"⊤",tex:"top",ttype:0,symbolType:n.logical},{input:"|--",tag:"mo",output:"⊢",tex:"vdash",ttype:0,symbolType:n.logical},{input:"|==",tag:"mo",output:"⊨",tex:"models",ttype:0,symbolType:n.logical},{input:"(",tag:"mo",output:"(",tex:null,ttype:4},{input:")",tag:"mo",output:")",tex:null,ttype:5},{input:"[",tag:"mo",output:"[",tex:null,ttype:4},{input:"]",tag:"mo",output:"]",tex:null,ttype:5},{input:"{",tag:"mo",output:"{",tex:null,ttype:4},{input:"}",tag:"mo",output:"}",tex:null,ttype:5},{input:"|",tag:"mo",output:"|",tex:null,ttype:9},{input:"||",tag:"mo",output:"∥",tex:null,ttype:9},{input:"||",tag:"mo",output:"‖",tex:null,ttype:9},{input:"|",tag:"mo",output:"∥",tex:null,ttype:9},{input:"||",tag:"mo",output:"||",tex:null,ttype:9},{input:"(:",tag:"mo",output:"〈",tex:"langle",ttype:4},{input:"(:",tag:"mo",output:"⟨",tex:"langle",ttype:4},{input:":)",tag:"mo",output:"〉",tex:"rangle",ttype:5},{input:":)",tag:"mo",output:"⟩",tex:"rangle",ttype:5},{input:"llcorner",tag:"mo",output:"⌞",tex:"llcorner",ttype:4},{input:"lrcorner",tag:"mo",output:"⌟",tex:"lrcorner",ttype:5},{input:"ulcorner",tag:"mo",output:"⌜",tex:"ulcorner",ttype:4},{input:"urcorner",tag:"mo",output:"⌝",tex:"urcorner",ttype:5},{input:"<<",tag:"mo",output:"〈",tex:null,ttype:4},{input:">>",tag:"mo",output:"〉",tex:null,ttype:5},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:4,invisible:!0},{input:":}",tag:"mo",output:":}",tex:null,ttype:5,invisible:!0},{input:"int",tag:"mo",output:"∫",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:8},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:8},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:8},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:8},{input:"oint",tag:"mo",output:"∮",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"oint",tag:"mtext",output:"∮",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"del",tag:"mo",output:"∂",tex:"partial",ttype:0,symbolType:n.miscellaneous},{input:"del",tag:"mi",output:"∂",tex:"partial",ttype:0,symbolType:n.miscellaneous},{input:"grad",tag:"mo",output:"∇",tex:"nabla",ttype:0,symbolType:n.miscellaneous},{input:"+-",tag:"mo",output:"±",tex:"pm",ttype:0,symbolType:n.miscellaneous},{input:"O/",tag:"mo",output:"∅",tex:"emptyset",ttype:0,symbolType:n.miscellaneous},{input:"oo",tag:"mo",output:"∞",tex:"infty",ttype:0,symbolType:n.miscellaneous},{input:"aleph",tag:"mo",output:"ℵ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:0,symbolType:n.miscellaneous},{input:":.",tag:"mo",output:"∴",tex:"therefore",ttype:0,symbolType:n.miscellaneous},{input:":'",tag:"mo",output:"∵",tex:"because",ttype:0,symbolType:n.miscellaneous},{input:"/_",tag:"mo",output:"∠",tex:"angle",ttype:0,symbolType:n.miscellaneous},{input:"/_\\",tag:"mo",output:"△",tex:"triangle",ttype:0,symbolType:n.miscellaneous},{input:"'",tag:"mo",output:"′",tex:"prime",ttype:0,symbolType:n.miscellaneous},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:1,acc:!0,stretchy:!1,symbolType:n.miscellaneous},{input:"widetilde",tag:"mover",output:"~",tex:null,ttype:1,acc:!0,stretchy:!0,symbolType:n.miscellaneous},{input:"\\ ",tag:"mo",output:" ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"frown",tag:"mo",output:"⌢",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"quad",tag:"mo",output:"  ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"qquad",tag:"mo",output:"    ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"cdots",tag:"mo",output:"⋯",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"vdots",tag:"mo",output:"⋮",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"ddots",tag:"mo",output:"⋱",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"dots",tag:"mo",output:"…",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"diamond",tag:"mo",output:"⋄",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"square",tag:"mo",output:"□",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"|__",tag:"mo",output:"⌊",tex:"lfloor",ttype:0,symbolType:n.miscellaneous},{input:"__|",tag:"mo",output:"⌋",tex:"rfloor",ttype:0,symbolType:n.miscellaneous},{input:"|~",tag:"mo",output:"⌈",tex:"lceiling",ttype:0,symbolType:n.miscellaneous},{input:"~|",tag:"mo",output:"⌉",tex:"rceiling",ttype:0,symbolType:n.miscellaneous},{input:"CC",tag:"mo",output:"ℂ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"NN",tag:"mo",output:"ℕ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"QQ",tag:"mo",output:"ℚ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"RR",tag:"mo",output:"ℝ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"ZZ",tag:"mo",output:"ℤ",tex:null,ttype:0,symbolType:n.miscellaneous},{input:"f",tag:"mi",output:"f",tex:null,ttype:1,func:!0},{input:"g",tag:"mi",output:"g",tex:null,ttype:1,func:!0},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:7},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:7},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:1,func:!0},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:1,func:!0},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:1,func:!0},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:1,func:!0},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:1,func:!0},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:1,func:!0},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:1,func:!0},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:1,func:!0},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:1,func:!0},{input:"arcsin",tag:"mo",output:"arcsin",tex:null,ttype:1,func:!0},{input:"arccos",tag:"mo",output:"arccos",tex:null,ttype:1,func:!0},{input:"arctan",tag:"mo",output:"arctan",tex:null,ttype:1,func:!0},{input:"coth",tag:"mo",output:"coth",tex:null,ttype:1,func:!0},{input:"sech",tag:"mo",output:"sech",tex:null,ttype:1,func:!0},{input:"csch",tag:"mo",output:"csch",tex:null,ttype:1,func:!0},{input:"exp",tag:"mo",output:"exp",tex:null,ttype:1,func:!0},{input:"abs",tag:"mo",output:"abs",tex:null,ttype:1,rewriteleftright:["|","|"]},{input:"norm",tag:"mo",output:"norm",tex:null,ttype:1,rewriteleftright:["∥","∥"]},{input:"floor",tag:"mo",output:"floor",tex:null,ttype:1,rewriteleftright:["⌊","⌋"]},{input:"ceil",tag:"mo",output:"ceil",tex:null,ttype:1,rewriteleftright:["⌈","⌉"]},{input:"log",tag:"mo",output:"log",tex:null,ttype:1,func:!0},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:1,func:!0},{input:"det",tag:"mo",output:"det",tex:null,ttype:1,func:!0},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:0},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:0},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:1,func:!0},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:1,func:!0},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:0},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:0},{input:"min",tag:"mo",output:"min",tex:null,ttype:7},{input:"max",tag:"mo",output:"max",tex:null,ttype:7},{input:"uarr",tag:"mo",output:"↑",tex:"uparrow",ttype:0,symbolType:n.arrow},{input:"darr",tag:"mo",output:"↓",tex:"downarrow",ttype:0,symbolType:n.arrow},{input:"rarr",tag:"mo",output:"→",tex:"rightarrow",ttype:0,symbolType:n.arrow},{input:"->",tag:"mo",output:"→",tex:"to",ttype:0,symbolType:n.arrow},{input:">->",tag:"mo",output:"↣",tex:"rightarrowtail",ttype:0,symbolType:n.arrow},{input:"->>",tag:"mo",output:"↠",tex:"twoheadrightarrow",ttype:0,symbolType:n.arrow},{input:">->>",tag:"mo",output:"⤖",tex:"twoheadrightarrowtail",ttype:0,symbolType:n.arrow},{input:"|->",tag:"mo",output:"↦",tex:"mapsto",ttype:0,symbolType:n.arrow},{input:"larr",tag:"mo",output:"←",tex:"leftarrow",ttype:0,symbolType:n.arrow},{input:"harr",tag:"mo",output:"↔",tex:"leftrightarrow",ttype:0,symbolType:n.arrow},{input:"rArr",tag:"mo",output:"⇒",tex:"Rightarrow",ttype:0,symbolType:n.arrow},{input:"lArr",tag:"mo",output:"⇐",tex:"Leftarrow",ttype:0,symbolType:n.arrow},{input:"hArr",tag:"mo",output:"⇔",tex:"Leftrightarrow",ttype:0,symbolType:n.arrow},{input:"sqrt",tag:"msqrt",output:"sqrt",tex:null,ttype:1},{input:"root",tag:"mroot",output:"root",tex:null,ttype:2},{input:"frac",tag:"mfrac",output:"/",tex:null,ttype:2},{input:"/",tag:"mfrac",output:"/",tex:null,ttype:3},{input:"stackrel",tag:"mover",output:"stackrel",tex:null,ttype:2},{input:"overset",tag:"mover",output:"stackrel",tex:null,ttype:2},{input:"underset",tag:"munder",output:"stackrel",tex:null,ttype:2},{input:"_",tag:"msub",output:"_",tex:null,ttype:3},{input:"^",tag:"msup",output:"^",tex:null,ttype:3},{input:"hat",tag:"mover",output:"^",tex:null,ttype:1,acc:!0},{input:"widehat",tag:"mover",output:"^",tex:null,ttype:1,acc:!0,stretchy:!0},{input:"bar",tag:"mover",output:"¯",tex:"overline",ttype:1,acc:!0},{input:"bar",tag:"mover",output:"―",tex:"overline",ttype:1,acc:!0},{input:"bar",tag:"mover",output:"macr",tex:"bar",ttype:0},{input:"vec",tag:"mover",output:"→",tex:null,ttype:1,acc:!0},{input:"vec",tag:"mover",output:"rarr",output_linear:"→",tex:"vec",ttype:0},{input:"",tag:"mover",output:"larr",output_linear:"←",tex:"overleftarrow",ttype:0},{input:"dot",tag:"mover",output:".",tex:null,ttype:1,acc:!0},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:1,acc:!0},{input:"ul",tag:"munder",output:"̲",tex:"underline",ttype:1,acc:!0},{input:"ubrace",tag:"munder",output:"⏟",tex:"underbrace",ttype:15,acc:!0},{input:"obrace",tag:"mover",output:"⏞",tex:"overbrace",ttype:15,acc:!0},{input:"color",tag:"mstyle",ttype:2},{input:"cancel",tag:"menclose",output:"cancel",tex:null,ttype:1},{input:"bb",tag:"mstyle",atname:"mathvariant",atval:"bold",output:"bb",tex:null,ttype:1},{input:"mathbf",tag:"mstyle",atname:"mathvariant",atval:"bold",output:"mathbf",tex:null,ttype:1},{input:"sf",tag:"mstyle",atname:"mathvariant",atval:"sans-serif",output:"sf",tex:null,ttype:1},{input:"mathsf",tag:"mstyle",atname:"mathvariant",atval:"sans-serif",output:"mathsf",tex:null,ttype:1},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:1,codes:o},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:1,codes:o},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:1,codes:r},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:1,codes:r},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"-tex-calligraphic",output:"mathcal",tex:null,ttype:1,codes:r},{input:"tt",tag:"mstyle",atname:"mathvariant",atval:"monospace",output:"tt",tex:null,ttype:1},{input:"mathtt",tag:"mstyle",atname:"mathvariant",atval:"monospace",output:"mathtt",tex:null,ttype:1},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:1,codes:i},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:1,codes:i}];e.getFunctions=function(){for(var t=e.AMsymbols.filter((function(t){return t.func})),n=[],r=0;r<(null==t?void 0:t.length);r++)n.push(t[r].input);return n};var a=(0,e.getFunctions)();e.regExpIsFunction=new RegExp("(?:"+a.join("|")+")$");e.findAmSymbolByTag=function(t,n){return e.AMsymbols.find((function(e){return"mo"===t||"mi"===t?("mo"===e.tag||"mi"===e.tag)&&e.output===n:e.tag===t&&e.output===n}))};e.findAmSymbolByTagStretchy=function(t,n){return e.AMsymbols.find((function(e){return"mo"===t||"mi"===t?("mo"===e.tag||"mi"===e.tag)&&e.output===n&&e.stretchy:e.tag===t&&e.output===n&&e.stretchy}))}},18:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.formatLinearFromAscii=e.replaceUnicodeWhitespace=e.hasAnyWhitespace=e.isWrappedWithParens=e.needBrackets=e.needsParensForFollowingDivision=e.findRootSymbol=e.findAmSymbolsToLinear=e.replaceScripts=e.rootSymbols=e.amSymbolsToLinear=void 0;var r=n(1635),i=n(8311),o=n(3768),a=/([\p{L}\p{N}]|[)\]}]|[!′″‴%°])$/u,s=/^([\p{L}\p{N}]|[\(\[\{]|[!′″‴%°])/u,l=/\p{White_Space}/gu,T=/^\s*[234]\s*$/;e.amSymbolsToLinear=[{input:"hat",output:"̂",outputComplex:"ˆ"},{input:"widehat",output:"̂",outputComplex:"ˆ"},{input:"widetilde",output:"̃",outputComplex:" ̃"},{input:"tilde",output:"̃",outputComplex:" ̃"},{input:"vec",output:"⃗",outputComplex:" ⃗"},{input:"bar",output:"̄",outputComplex:"¯"},{input:"breve",output:"̆",outputComplex:" ̆"},{input:"˘",output:"̆",outputComplex:" ̆"},{input:"‾",output:"̄",outputComplex:"¯"},{input:"˙",output:"̇",outputComplex:" ̇"},{input:"¨",output:"̈",outputComplex:" ̈"},{input:"ˇ",output:"̌",outputComplex:" ̌"},{input:"`",output:"̀",outputComplex:" ̀"},{input:"´",output:"́",outputComplex:" ́"},{input:"′",output:"′",outputComplex:"′"},{input:"′′",output:"′′",outputComplex:"′′"},{input:"←",output:"⃖",outputComplex:" ⃖"},{input:"harr",output:"⃡",outputComplex:" ⃡",tag:"mover"},{input:"↔",output:"⃡",outputComplex:" ⃡",tag:"mover"},{input:"⏞",output:"⏞",outputComplex:"⏞",isFirst:!0},{input:"obrace",output:"⏞",outputComplex:"⏞",isFirst:!0},{input:"⏟",output:"⏟",outputComplex:"⏟",isFirst:!0},{input:"ubrace",output:"⏟",outputComplex:"⏟",isFirst:!0},{input:"ul",output:"̲",outputComplex:"̲",isFirst:!0},{input:"―",output:"▁",outputComplex:"▁",isFirst:!0},{input:"∘",output:"°",outputComplex:"°",tag:"msup"},{input:"˚",output:"̊",outputComplex:"̊",tag:"mover"},{input:"⃛",output:"⃛",outputComplex:"⃛",tag:"mover"}],e.rootSymbols=[{val:2,output:"√"},{val:3,output:"∛"},{val:4,output:"∜"}];var Q={0:"⁰",1:"¹",2:"²",3:"³",4:"⁴",5:"⁵",6:"⁶",7:"⁷",8:"⁸",9:"⁹","+":"⁺","-":"⁻","−":"⁻","=":"⁼","(":"⁽",")":"⁾",i:"ⁱ",n:"ⁿ",a:"ᵃ",b:"ᵇ",c:"ᶜ",d:"ᵈ",e:"ᵉ",f:"ᶠ",g:"ᵍ",h:"ʰ",j:"ʲ",k:"ᵏ",l:"ˡ",m:"ᵐ",o:"ᵒ",p:"ᵖ",r:"ʳ",s:"ˢ",t:"ᵗ",u:"ᵘ",v:"ᵛ",w:"ʷ",x:"ˣ",y:"ʸ",z:"ᶻ",A:"ᴬ",B:"ᴮ",D:"ᴰ",E:"ᴱ",G:"ᴳ",H:"ᴴ",I:"ᴵ",J:"ᴶ",K:"ᴷ",L:"ᴸ",M:"ᴹ",N:"ᴺ",O:"ᴼ",P:"ᴾ",R:"ᴿ",T:"ᵀ",U:"ᵁ",V:"ⱽ",W:"ᵂ","′":"′"," ":" "},c={0:"₀",1:"₁",2:"₂",3:"₃",4:"₄",5:"₅",6:"₆",7:"₇",8:"₈",9:"₉","+":"₊","-":"₋","−":"₋","=":"₌","(":"₍",")":"₎",a:"ₐ",e:"ₑ",h:"ₕ",i:"ᵢ",j:"ⱼ",k:"ₖ",l:"ₗ",m:"ₘ",n:"ₙ",o:"ₒ",p:"ₚ",r:"ᵣ",s:"ₛ",t:"ₜ",u:"ᵤ",v:"ᵥ",x:"ₓ"," ":" "},u=function(t,e){var n,i,o="";try{for(var a=r.__values(t),s=a.next();!s.done;s=a.next()){var l=e[s.value];if(!l)return{ok:!1,out:""};o+=l}}catch(t){n={error:t}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}return{ok:!0,out:o}};e.replaceScripts=function(t,e){if(void 0===e&&(e="sup"),!t)return"";if(!(t=t.trim()))return"";var n=u(t,"sup"===e?Q:c);return n.ok&&n.out?n.out:""};e.findAmSymbolsToLinear=function(t,n){void 0===n&&(n="");var r=null;return n&&(r=e.amSymbolsToLinear.find((function(e){return e.tag===n&&e.input===t})))?r:e.amSymbolsToLinear.find((function(e){return e.input===t}))};e.findRootSymbol=function(t){if(!t)return"";if(T.test(t)){var n=Number(t),r=e.rootSymbols.find((function(t){return t.val===n}));return r?r.output:""}var i=(0,e.replaceScripts)(t);return i?" "+i+e.rootSymbols[0].output:""};e.needsParensForFollowingDivision=function(t){if(!t)return!1;var e=Array.from(t.trimEnd()).pop();return!!e&&a.test(e)};e.needBrackets=function(t,e,n){var r,a;void 0===n&&(n=!1);try{if((0,i.isLastChild)(e))return!1;var l=e.parent.childNodes.findIndex((function(t){return t===e})),T=e.parent.childNodes[l+1],Q=t.visitNode(T,"");if(n)if(T.attributes.get("isFunction")||o.regExpIsFunction.test(Q.linear.trim())||"mo"===(null==T?void 0:T.kind)&&-1===(null==T?void 0:T.texClass))return!1;if(null===(r=Q.linear)||void 0===r?void 0:r.trim()){var c=null!==(a=Array.from(Q.linear.trimStart())[0])&&void 0!==a?a:"";return!!c&&s.test(c)}return!1}catch(t){return!1}};e.isWrappedWithParens=function(t){if(!t)return!1;var e=t.trim();if(!e.startsWith("(")||!e.endsWith(")"))return!1;for(var n=0,r=0;r<e.length;r++){var i=e[r];if("("===i)n++;else if(")"===i){if(0===--n&&r!==e.length-1)return!1;if(n<0)return!1}}return 0===n};e.hasAnyWhitespace=function(t){return t.replace(l,"").length!==t.length};e.replaceUnicodeWhitespace=function(t){return t.replace(l," ")};e.formatLinearFromAscii=function(t,n,r){void 0===r&&(r="");var i=(0,e.findAmSymbolsToLinear)(t,r);if(!i)return"";var o=(null!=n?n:"").trim(),a=o.length>1?"(".concat(o,")"):o;return i.isFirst?i.output+a:a+(o.length>1?i.outputComplex:i.output)}},8155:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.SerializedAsciiVisitor=void 0;var r=n(1635),i=n(6677),o=n(8446),a=n(3702),s=n(3768),l=n(18),T=function(t){function e(e){var n=t.call(this)||this;return n.options=null,n.setChildInheritedAttribute=function(t,e){var n,i,o;try{var a=(null==t?void 0:t.attributes)?null===(o=null==t?void 0:t.attributes)||void 0===o?void 0:o.getAllInherited():null;if(!(a&&a.hasOwnProperty(e)&&t.childNodes&&t.childNodes.length))return;try{for(var s=r.__values(t.childNodes),l=s.next();!l.done;l=s.next()){var T=l.value;T.attributes&&T.attributes.setInherited(e,a[e])}}catch(t){n={error:t}}finally{try{l&&!l.done&&(i=s.return)&&i.call(s)}finally{if(n)throw n.error}}}catch(t){console.log("[MMD]=>error=>",t)}},n.options=e,n}return r.__extends(e,t),e.prototype.visitTree=function(t){return this.visitNode(t,"")},e.prototype.visitNode=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];this.setChildInheritedAttribute(t,"toTsv"),this.setChildInheritedAttribute(t,"toCsv"),this.setChildInheritedAttribute(t,"toMd"),this.setChildInheritedAttribute(t,"flattenSup");var i=this.nodeHandlers.get(t.kind)||this.visitDefault;return i.call.apply(i,r.__spreadArray([this,t],r.__read(e),!1))},e.prototype.visitTextNode=function(t,e){var n=(0,a.initAsciiData)();try{var r=t.getText();return n=(0,a.AddToAsciiData)(n,{ascii:r,linear:r})}catch(t){return console.error("mml => visitTextNode =>",t),n}},e.prototype.visitXMLNode=function(t,e){var n=(0,a.initAsciiData)();try{var r=e+t.getSerializedXML();return n=(0,a.AddToAsciiData)(n,{ascii:r,linear:r})}catch(t){return console.error("mml => visitXMLNode =>",t),n}},e.prototype.needsGrouping=function(t){try{if(t.parent&&("math"===t.parent.kind||"mstyle"===t.parent.kind||"mtable"===t.parent.kind||"mtr"===t.parent.kind||"mtd"===t.parent.kind||"menclose"===t.parent.kind))return!1;if(this.options.extraBrackets&&t.parent.parent&&("msup"===t.parent.parent.kind||"msub"===t.parent.parent.kind||"msubsup"===t.parent.parent.kind||"mover"===t.parent.parent.kind||"munder"===t.parent.parent.kind||"munderover"===t.parent.parent.kind))return!1;if("TeXAtom"===t.parent.kind&&"inferredMrow"===t.parent.parent.kind)return!1;if(t.childNodes&&1===t.childNodes.length&&t.childNodes[0].childNodes&&1===t.childNodes[0].childNodes.length)return!1;if(t.properties&&"("===t.properties.open&&")"===t.properties.close)return!1;var e=t.childNodes[0];return 1!=t.childNodes.length||"mtext"!=e.kind}catch(t){return!1}},e.prototype.needsGroupingStyle=function(t){try{if(t.childNodes.length<2)return null;var e=t.childNodes[0],n=this.getAttributes(e);if(!n||!n.mathvariant||!n.hasOwnProperty("mathvariant"))return null;for(var r=1;r<t.childNodes.length;r++){var i=this.getAttributes(t.childNodes[r]);if(!i||i.mathvariant!==n.mathvariant)return null}return n}catch(t){return null}},e.prototype.visitInferredMrowNode=function(t,e){var n,r,i=this,o=(0,a.initAsciiData)();try{var T=t.childNodes.findIndex((function(t){return"menclose"===t.kind})),Q=t.childNodes.find((function(t){return"msub"===t.kind}));if(T>-1){var c=t.childNodes[T],u=this.getAttributes(c),d=c.attributes.get("isFrame");"mtable"===(null===(r=null===(n=c.childNodes[0])||void 0===n?void 0:n.childNodes[0])||void 0===r?void 0:r.kind)&&(d=!0);var h=this.getAttributesDefaults(c);if(!u.notation&&"longdiv"===h.notation||-1!==u.notation.toString().indexOf("longdiv")){if(0===T){var p=this.visitNode(c,"");o=(0,a.AddToAsciiData)(o,{ascii:"((".concat(p.ascii,")/())"),linear:"((".concat(p.linear,")/())"),ascii_tsv:"((".concat(p.ascii_tsv,")/())"),ascii_csv:"((".concat(p.ascii_csv,")/())"),ascii_md:"((".concat(p.ascii_md,")/())")})}else{for(var m=[],f=1;T-f>=0;){var y=t.childNodes[T-f];m.unshift(y),f++}if(T-m.length>0)for(var g=0;g<T-m.length;g++){p=this.visitNode(t.childNodes[g],e);o=(0,a.AddToAsciiData)(o,{ascii:p.ascii,linear:p.linear,ascii_tsv:p.ascii_tsv,ascii_csv:p.ascii_csv,ascii_md:p.ascii_md})}var L=this.visitNode(c,"");if(o=(0,a.AddToAsciiData)(o,{ascii:"((",linear:"(("}),o=(0,a.AddToAsciiData)(o,{ascii:L.ascii,linear:L.linear,ascii_tsv:L.ascii_tsv,ascii_csv:L.ascii_csv,ascii_md:L.ascii_md}),o=(0,a.AddToAsciiData)(o,{ascii:")/(",linear:")/("}),m.forEach((function(t){var e=i.visitNode(t,"");o=(0,a.AddToAsciiData)(o,{ascii:e.ascii,linear:e.linear,ascii_tsv:e.ascii_tsv,ascii_csv:e.ascii_csv,ascii_md:e.ascii_md})})),o=(0,a.AddToAsciiData)(o,{ascii:"))",linear:"))"}),T<t.childNodes.length-1)for(var b=T+1;b<t.childNodes.length;b++){p=this.visitNode(t.childNodes[b],e);o=(0,a.AddToAsciiData)(o,{ascii:p.ascii,linear:p.linear,ascii_tsv:p.ascii_tsv,ascii_csv:p.ascii_csv,ascii_md:p.ascii_md})}}return o}if(!d&&(!u.notation&&"bottom"===h.notation||-1!==u.notation.toString().indexOf("bottom"))){if(0===T){p=this.visitNode(c,"");o=(0,a.AddToAsciiData)(o,{ascii:"(()/(",linear:"(()/("}),o=(0,a.AddToAsciiData)(o,p),o=(0,a.AddToAsciiData)(o,{ascii:"))",linear:"))"})}else{for(m=[],f=1;T-f>=0;){y=t.childNodes[T-f];m.unshift(y),f++}if(T-m.length>0)for(var v=0;v<T-m.length;v++){var x=this.visitNode(t.childNodes[v],e);o=(0,a.AddToAsciiData)(o,x)}o=(0,a.AddToAsciiData)(o,{ascii:"((",linear:"(("}),m.forEach((function(t){var e=i.visitNode(t,"");o=(0,a.AddToAsciiData)(o,e)})),o=(0,a.AddToAsciiData)(o,{ascii:")/(",linear:")/("});p=this.visitNode(c,"");if(o=(0,a.AddToAsciiData)(o,p),o=(0,a.AddToAsciiData)(o,{ascii:"))",linear:"))"}),T<t.childNodes.length-1)for(var _=T+1;_<t.childNodes.length;_++){var H=this.visitNode(t.childNodes[_],e);o=(0,a.AddToAsciiData)(o,H)}}return o}}var w=this.needsGrouping(t),O=w?this.needsGroupingStyle(t):null,M=t.parent&&"TeXAtom"===t.parent.kind&&t.parent.Parent&&"mtd"===t.parent.Parent.kind&&t.childNodes.length>1;o=(0,a.AddToAsciiData)(o,{ascii:M&&Q?"{:":"",linear:""}),w&&!O&&(o=(0,a.AddToAsciiData)(o,{ascii:"(",linear:"("}));for(var S="",E="",A=null,C=!1,V=!1,N=0;N<t.childNodes.length;N++){y=t.childNodes[N],p=this.visitNode(y,e);if(C){var I=(0,a.getFunctionNameFromAscii)(p.ascii,y);I&&!s.regExpIsFunction.test(I)||(o=(0,a.AddToAsciiData)(o,{ascii:")",linear:")"}),C=!1)}if(V&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:")"}),V=!1),"mfrac"===(null==y?void 0:y.kind))if(null==S?void 0:S.trim())A.attributes.get("isFunction")||s.regExpIsFunction.test(S.trim())||"mo"===(null==A?void 0:A.kind)&&-1===(null==A?void 0:A.texClass)?(o=(0,a.AddToAsciiData)(o,{ascii:"(",linear:"("}),C=!0,(0,l.needBrackets)(this,y,!0)&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:"("}),V=!0)):((0,l.needsParensForFollowingDivision)(E)||(0,l.needBrackets)(this,y))&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:"("}),V=!0);else(0,l.needBrackets)(this,y)&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:"("}),V=!0);S=(o=(0,a.AddToAsciiData)(o,p)).ascii,E=o.linear,A=y}return C&&(o=(0,a.AddToAsciiData)(o,{ascii:")",linear:")"})),V&&(o=(0,a.AddToAsciiData)(o,{ascii:"",linear:")"})),w&&!O&&(o=(0,a.AddToAsciiData)(o,{ascii:")",linear:")"})),o=(0,a.AddToAsciiData)(o,{ascii:M&&Q?":}":"",linear:""})}catch(t){return o}},e.prototype.visitTeXAtomNode=function(t,e){var n,r,i,s,l,T=(0,a.initAsciiData)();try{var Q=this.childNodeMml(t,e+" ","\n");return(0,o.needFirstSpaceBeforeTeXAtom)(t)&&(T=(0,a.AddToAsciiData)(T,{ascii:" ",linear:" "})),T=(0,a.AddToAsciiData)(T,{ascii:(null===(n=Q.ascii)||void 0===n?void 0:n.match(/\S/))?Q.ascii:"",linear:(null===(r=Q.linear)||void 0===r?void 0:r.match(/\S/))?Q.linear:"",ascii_tsv:(null===(i=Q.ascii_tsv)||void 0===i?void 0:i.match(/\S/))?Q.ascii_tsv:"",ascii_csv:(null===(s=Q.ascii_csv)||void 0===s?void 0:s.match(/\S/))?Q.ascii_csv:"",ascii_md:(null===(l=Q.ascii_md)||void 0===l?void 0:l.match(/\S/))?Q.ascii_md:""}),(0,o.needLastSpaceAfterTeXAtom)(t)&&(T=(0,a.AddToAsciiData)(T,{ascii:" ",linear:" "})),T}catch(t){return console.error("mml => visitTeXAtomNode =>",t),T}},e.prototype.visitAnnotationNode=function(t,e){var n=(0,a.initAsciiData)();try{var r=this.childNodeMml(t,"","");return n=(0,a.AddToAsciiData)(n,{ascii:e+"<annotation"+this.getAttributes(t)+">"+r.ascii+"</annotation>",linear:e+"<annotation"+this.getAttributes(t)+">"+r.ascii+"</annotation>",ascii_tsv:e+"<annotation"+this.getAttributes(t)+">"+r.ascii_tsv+"</annotation>",ascii_csv:e+"<annotation"+this.getAttributes(t)+">"+r.ascii_csv+"</annotation>",ascii_md:e+"<annotation"+this.getAttributes(t)+">"+r.ascii_md+"</annotation>"})}catch(t){return console.error("mml => visitAnnotationNode =>",t),n}},e.prototype.visitDefault=function(t,e){return this.childNodeMml(t," ","")},e.prototype.childNodeMml=function(t,e,n){var r=o.handle.bind(this),i=(0,a.initAsciiData)();try{if("mover"===t.kind&&t.childNodes.length>1&&"TeXAtom"===t.childNodes[0].kind&&"TeXAtom"===t.childNodes[1].kind){var s=t.childNodes[0];s.properties.needBrackets=!0;var l=r(s,this),T=r(t.childNodes[1],this);i=(0,a.AddToAsciiData)(i,l),i=(0,a.AddToAsciiData)(i,{ascii:"^",linear:"^"}),i=(0,a.AddToAsciiData)(i,{ascii:"(",linear:"("}),i=(0,a.AddToAsciiData)(i,T),i=(0,a.AddToAsciiData)(i,{ascii:")",linear:")"})}else{var Q=r(t,this);i=(0,a.AddToAsciiData)(i,Q)}return i}catch(t){return i}},e.prototype.getAttributes=function(t){return t.attributes.getAllAttributes()},e.prototype.getAttributesDefaults=function(t){return t.attributes.getAllDefaults()},e}(i.MmlVisitor);e.SerializedAsciiVisitor=T},8311:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isLastChild=e.isFirstChild=void 0;e.isFirstChild=function(t){return t.parent&&t.parent.childNodes[0]&&t.parent.childNodes[0]===t};e.isLastChild=function(t){return t.parent&&t.parent.childNodes&&t.parent.childNodes[t.parent.childNodes.length-1]===t}},8871:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getMathDimensions=e.getNodeAttributes=void 0;var r=n(5450),i=function(t,e){var n;return t instanceof r.LiteElement?(null===(n=t.attributes)||void 0===n?void 0:n[e])||"":(t instanceof HTMLElement||t instanceof SVGSVGElement)&&t.getAttribute(e)||""},o=function(t,e){var n,i;return t instanceof r.LiteElement?(null===(n=t.styles)||void 0===n?void 0:n.get(e))||"":(t instanceof HTMLElement||t instanceof SVGSVGElement)&&(null===(i=t.style)||void 0===i?void 0:i[e])||""};e.getNodeAttributes=function(t){var e,n={containerWidth:"",svgViewBox:"",svgWidth:"",svgMinWidth:"",svgHeight:""};try{if(t instanceof r.LiteElement)n.containerWidth=i(t,"width"),(a=(null===(e=t.children)||void 0===e?void 0:e.length)?t.children.find((function(t){return"svg"===t.kind})):null)&&(n.svgWidth=i(a,"width"),n.svgMinWidth=o(a,"min-width"),n.svgHeight=i(a,"height"),n.svgViewBox=i(a,"viewBox"));else if(t instanceof HTMLElement){n.containerWidth=i(t,"width");var a,s=t.getElementsByTagName("svg");(a=s.length?s[0]:null)&&(n.svgWidth=i(a,"width"),n.svgMinWidth=o(a,"min-width"),n.svgHeight=i(a,"height"),n.svgViewBox=i(a,"viewBox"))}return n}catch(t){return console.log("[ERROR]=>[getNodeAttributes]=>",t),n}};e.getMathDimensions=function(t){var n=(0,e.getNodeAttributes)(t),r=n.containerWidth,i=n.svgViewBox,o=n.svgWidth,a=n.svgMinWidth,s=n.svgHeight,l=function(t){var e=t?Number(t.replace(/ex/g,"")):0;return isNaN(e)?0:e};"100%"===o&&(o=a);var T=l(o),Q=l(s),c=i?i.split(" "):[];return{containerWidth:r,widthEx:T,heightEx:Q,viewBoxHeight:(null==c?void 0:c.length)>3?Math.abs(Number(c[1]))/1e3:0,viewBoxHeightAndDepth:(null==c?void 0:c.length)>3?Math.abs(Number(c[3]))/1e3:0}}},5707:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.addAriaToMathHTML=e.addSpeechToMathContainer=e.getSpeech=void 0;e.getSpeech=function(t,e){try{return t.toSpeech(e)}catch(t){return console.error("ERROR=>[getSpeech]=>"+t),""}};e.addSpeechToMathContainer=function(t,n,r){if(!n.hasAttribute("aria-label")){var i=n.querySelector("mjx-assistive-mml");if(i){var o=(0,e.getSpeech)(t,i.innerHTML);if(o){n.setAttribute("aria-label",o),n.setAttribute("role","math"),n.setAttribute("tabindex","0"),n.removeAttribute("aria-labelledby");var a=r.createElement("speech");a.textContent=o,a.style.display="none";var s=n.parentElement;s?s.appendChild(a):console.warn("[addSpeechToMathContainer] mjx-container has no parentElement — speech element not appended")}}}};e.addAriaToMathHTML=function(t,n){try{var r=(new DOMParser).parseFromString(n,"text/html"),i=r?r.querySelectorAll("mjx-container"):null;if(!i||!i.length)return n;for(var o=0;o<i.length;o++)(0,e.addSpeechToMathContainer)(t,i[o],r);return r.body.innerHTML}catch(t){return console.error("ERROR=>[addAriaToMathHTML]=>"+t),n}}},4666:(t,e,n)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.loadSreAsync=e.loadSre=void 0;var r=n(1635),i=n(9453);e.loadSre=function(t){void 0===t&&(t={});var e=Object.assign({},{domain:"mathspeak"},t);return i.setupEngine(e),i};e.loadSreAsync=function(t){return void 0===t&&(t={}),r.__awaiter(void 0,void 0,void 0,(function(){var e;return r.__generator(this,(function(n){switch(n.label){case 0:return e=r.__assign({domain:"mathspeak",locale:"en"},t),i.setupEngine(e),[4,i.engineReady()];case 1:return n.sent(),[2,i]}}))}))}},1635:(t,e,n)=>{"use strict";n.r(e),n.d(e,{__addDisposableResource:()=>N,__assign:()=>o,__asyncDelegator:()=>H,__asyncGenerator:()=>_,__asyncValues:()=>w,__await:()=>x,__awaiter:()=>h,__classPrivateFieldGet:()=>A,__classPrivateFieldIn:()=>V,__classPrivateFieldSet:()=>C,__createBinding:()=>m,__decorate:()=>s,__disposeResources:()=>P,__esDecorate:()=>T,__exportStar:()=>f,__extends:()=>i,__generator:()=>p,__importDefault:()=>E,__importStar:()=>S,__makeTemplateObject:()=>O,__metadata:()=>d,__param:()=>l,__propKey:()=>c,__read:()=>g,__rest:()=>a,__runInitializers:()=>Q,__setFunctionName:()=>u,__spread:()=>L,__spreadArray:()=>v,__spreadArrays:()=>b,__values:()=>y,default:()=>R});var r=function(t,e){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},r(t,e)};function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var o=function(){return o=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},o.apply(this,arguments)};function a(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(t);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]])}return n}function s(t,e,n,r){var i,o=arguments.length,a=o<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var s=t.length-1;s>=0;s--)(i=t[s])&&(a=(o<3?i(a):o>3?i(e,n,a):i(e,n))||a);return o>3&&a&&Object.defineProperty(e,n,a),a}function l(t,e){return function(n,r){e(n,r,t)}}function T(t,e,n,r,i,o){function a(t){if(void 0!==t&&"function"!=typeof t)throw new TypeError("Function expected");return t}for(var s,l=r.kind,T="getter"===l?"get":"setter"===l?"set":"value",Q=!e&&t?r.static?t:t.prototype:null,c=e||(Q?Object.getOwnPropertyDescriptor(Q,r.name):{}),u=!1,d=n.length-1;d>=0;d--){var h={};for(var p in r)h[p]="access"===p?{}:r[p];for(var p in r.access)h.access[p]=r.access[p];h.addInitializer=function(t){if(u)throw new TypeError("Cannot add initializers after decoration has completed");o.push(a(t||null))};var m=(0,n[d])("accessor"===l?{get:c.get,set:c.set}:c[T],h);if("accessor"===l){if(void 0===m)continue;if(null===m||"object"!=typeof m)throw new TypeError("Object expected");(s=a(m.get))&&(c.get=s),(s=a(m.set))&&(c.set=s),(s=a(m.init))&&i.unshift(s)}else(s=a(m))&&("field"===l?i.unshift(s):c[T]=s)}Q&&Object.defineProperty(Q,r.name,c),u=!0}function Q(t,e,n){for(var r=arguments.length>2,i=0;i<e.length;i++)n=r?e[i].call(t,n):e[i].call(t);return r?n:void 0}function c(t){return"symbol"==typeof t?t:"".concat(t)}function u(t,e,n){return"symbol"==typeof e&&(e=e.description?"[".concat(e.description,"]"):""),Object.defineProperty(t,"name",{configurable:!0,value:n?"".concat(n," ",e):e})}function d(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)}function h(t,e,n,r){return new(n||(n=Promise))((function(i,o){function a(t){try{l(r.next(t))}catch(t){o(t)}}function s(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}l((r=r.apply(t,e||[])).next())}))}function p(t,e){var n,r,i,o,a={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(s){return function(l){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;o&&(o=0,s[0]&&(a=0)),a;)try{if(n=1,r&&(i=2&s[0]?r.return:s[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,s[1])).done)return i;switch(r=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,r=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(i=a.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){a.label=s[1];break}if(6===s[0]&&a.label<i[1]){a.label=i[1],i=s;break}if(i&&a.label<i[2]){a.label=i[2],a.ops.push(s);break}i[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],r=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,l])}}}var m=Object.create?function(t,e,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(e,n);i&&!("get"in i?!e.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return e[n]}}),Object.defineProperty(t,r,i)}:function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]};function f(t,e){for(var n in t)"default"===n||Object.prototype.hasOwnProperty.call(e,n)||m(e,t,n)}function y(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function g(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,o=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=o.next()).done;)a.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return a}function L(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(g(arguments[e]));return t}function b(){for(var t=0,e=0,n=arguments.length;e<n;e++)t+=arguments[e].length;var r=Array(t),i=0;for(e=0;e<n;e++)for(var o=arguments[e],a=0,s=o.length;a<s;a++,i++)r[i]=o[a];return r}function v(t,e,n){if(n||2===arguments.length)for(var r,i=0,o=e.length;i<o;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}function x(t){return this instanceof x?(this.v=t,this):new x(t)}function _(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=n.apply(t,e||[]),o=[];return r={},a("next"),a("throw"),a("return"),r[Symbol.asyncIterator]=function(){return this},r;function a(t){i[t]&&(r[t]=function(e){return new Promise((function(n,r){o.push([t,e,n,r])>1||s(t,e)}))})}function s(t,e){try{(n=i[t](e)).value instanceof x?Promise.resolve(n.value.v).then(l,T):Q(o[0][2],n)}catch(t){Q(o[0][3],t)}var n}function l(t){s("next",t)}function T(t){s("throw",t)}function Q(t,e){t(e),o.shift(),o.length&&s(o[0][0],o[0][1])}}function H(t){var e,n;return e={},r("next"),r("throw",(function(t){throw t})),r("return"),e[Symbol.iterator]=function(){return this},e;function r(r,i){e[r]=t[r]?function(e){return(n=!n)?{value:x(t[r](e)),done:!1}:i?i(e):e}:i}}function w(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=y(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,i){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,i,(e=t[n](e)).done,e.value)}))}}}function O(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t}var M=Object.create?function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}:function(t,e){t.default=e};function S(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)"default"!==n&&Object.prototype.hasOwnProperty.call(t,n)&&m(e,t,n);return M(e,t),e}function E(t){return t&&t.__esModule?t:{default:t}}function A(t,e,n,r){if("a"===n&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===n?r:"a"===n?r.call(t):r?r.value:e.get(t)}function C(t,e,n,r,i){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!i)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!i:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?i.call(t,n):i?i.value=n:e.set(t,n),n}function V(t,e){if(null===e||"object"!=typeof e&&"function"!=typeof e)throw new TypeError("Cannot use 'in' operator on non-object");return"function"==typeof t?e===t:t.has(e)}function N(t,e,n){if(null!=e){if("object"!=typeof e&&"function"!=typeof e)throw new TypeError("Object expected.");var r;if(n){if(!Symbol.asyncDispose)throw new TypeError("Symbol.asyncDispose is not defined.");r=e[Symbol.asyncDispose]}if(void 0===r){if(!Symbol.dispose)throw new TypeError("Symbol.dispose is not defined.");r=e[Symbol.dispose]}if("function"!=typeof r)throw new TypeError("Object not disposable.");t.stack.push({value:e,dispose:r,async:n})}else n&&t.stack.push({async:!0});return e}var I="function"==typeof SuppressedError?SuppressedError:function(t,e,n){var r=new Error(n);return r.name="SuppressedError",r.error=t,r.suppressed=e,r};function P(t){function e(e){t.error=t.hasError?new I(e,t.error,"An error was suppressed during disposal."):e,t.hasError=!0}return function n(){for(;t.stack.length;){var r=t.stack.pop();try{var i=r.dispose&&r.dispose.call(r.value);if(r.async)return Promise.resolve(i).then(n,(function(t){return e(t),n()}))}catch(t){e(t)}}if(t.hasError)throw t.error}()}const R={__extends:i,__assign:o,__rest:a,__decorate:s,__param:l,__metadata:d,__awaiter:h,__generator:p,__createBinding:m,__exportStar:f,__values:y,__read:g,__spread:L,__spreadArrays:b,__spreadArray:v,__await:x,__asyncGenerator:_,__asyncDelegator:H,__asyncValues:w,__makeTemplateObject:O,__importStar:S,__importDefault:E,__classPrivateFieldGet:A,__classPrivateFieldSet:C,__classPrivateFieldIn:V,__addDisposableResource:N,__disposeResources:P}}},__webpack_module_cache__={};function __webpack_require__(t){var e=__webpack_module_cache__[t];if(void 0!==e)return e.exports;var n=__webpack_module_cache__[t]={exports:{}};return __webpack_modules__[t].call(n.exports,n,n.exports,__webpack_require__),n.exports}__webpack_require__.d=(t,e)=>{for(var n in e)__webpack_require__.o(e,n)&&!__webpack_require__.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),__webpack_require__.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),__webpack_require__.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var __webpack_exports__=__webpack_require__(7493)})();