spexcode 0.6.0 → 0.6.2

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 (88) hide show
  1. package/README.md +97 -149
  2. package/package.json +1 -1
  3. package/spec-cli/hooks/harness.sh +26 -6
  4. package/spec-cli/src/anchors.ts +27 -5
  5. package/spec-cli/src/cli.ts +239 -75
  6. package/spec-cli/src/client.ts +113 -14
  7. package/spec-cli/src/codex-runtime-generations.ts +97 -7
  8. package/spec-cli/src/commit-surgery.ts +2 -1
  9. package/spec-cli/src/contract-filter.ts +58 -42
  10. package/spec-cli/src/delivery-queue.ts +62 -4
  11. package/spec-cli/src/doctor.ts +2 -1
  12. package/spec-cli/src/execution-trace.ts +444 -0
  13. package/spec-cli/src/file-write.ts +22 -0
  14. package/spec-cli/src/gateway-hub.ts +10 -8
  15. package/spec-cli/src/gateway.ts +99 -6
  16. package/spec-cli/src/git.ts +503 -105
  17. package/spec-cli/src/graph.ts +56 -6
  18. package/spec-cli/src/graphCache.ts +86 -17
  19. package/spec-cli/src/graphStream.ts +79 -11
  20. package/spec-cli/src/guide.ts +93 -4
  21. package/spec-cli/src/harness-select.ts +2 -2
  22. package/spec-cli/src/harness.ts +355 -75
  23. package/spec-cli/src/help.ts +30 -23
  24. package/spec-cli/src/host-resources.ts +62 -7
  25. package/spec-cli/src/identity-presets.js +16 -6
  26. package/spec-cli/src/index.ts +109 -14
  27. package/spec-cli/src/init.ts +8 -17
  28. package/spec-cli/src/layout.ts +151 -40
  29. package/spec-cli/src/lint.ts +37 -7
  30. package/spec-cli/src/materialize.ts +160 -112
  31. package/spec-cli/src/plugin-harness.ts +29 -18
  32. package/spec-cli/src/process-identity.ts +13 -0
  33. package/spec-cli/src/reviews.ts +103 -30
  34. package/spec-cli/src/session-execution.ts +68 -0
  35. package/spec-cli/src/session-files.ts +121 -0
  36. package/spec-cli/src/session-follow.ts +4 -4
  37. package/spec-cli/src/session-reparent.ts +33 -0
  38. package/spec-cli/src/session-timeline.ts +163 -14
  39. package/spec-cli/src/session-web.ts +135 -0
  40. package/spec-cli/src/sessions.ts +748 -111
  41. package/spec-cli/src/uninstall.ts +3 -2
  42. package/spec-cli/templates/hooks/post-checkout +3 -0
  43. package/spec-cli/templates/hooks/post-merge +1 -0
  44. package/spec-cli/templates/spec/project/.plugins/commands/supervisor/spec.md +1 -1
  45. package/spec-cli/templates/spec/project/.plugins/core/comment-altitude/spec.md +2 -21
  46. package/spec-cli/templates/spec/project/.plugins/core/spec.md +12 -13
  47. package/spec-cli/templates/spec/project/.plugins/core/stop-gate/spec.md +1 -1
  48. package/spec-cli/templates/spec/project/.plugins/core/stop-gate/stop-gate.sh +2 -2
  49. package/spec-cli/templates/spec/project/.plugins/prompts/atomic-landing/spec.md +5 -22
  50. package/spec-cli/templates/spec/project/.plugins/prompts/forge-link/spec.md +2 -1
  51. package/spec-cli/templates/spec/project/.plugins/prompts/memory-hygiene/spec.md +4 -6
  52. package/spec-cli/templates/spec/project/.plugins/prompts/reproduce-before-fix/spec.md +3 -9
  53. package/spec-dashboard/dist/assets/{App-b8Nh0sgk.js → App-B6IbFbGu.js} +2 -2
  54. package/spec-dashboard/dist/assets/Dashboard-_sDk7Rcg.js +27 -0
  55. package/spec-dashboard/dist/assets/EvalsPage-BT357Lyt.js +2 -0
  56. package/spec-dashboard/dist/assets/{IssuesPage-CAP64YWE.js → IssuesPage-BG9rNOgV.js} +1 -1
  57. package/spec-dashboard/dist/assets/MobileApp-D9yPMR3A.js +2 -0
  58. package/spec-dashboard/dist/assets/{Modal-Drscez-d.js → Modal-B3EcgeA3.js} +1 -1
  59. package/spec-dashboard/dist/assets/{PageScroll-qW6uOJL8.js → PageScroll-CNZOugWV.js} +1 -1
  60. package/spec-dashboard/dist/assets/{ProjectsPage-CjybFBmR.js → ProjectsPage-C2CRHmvs.js} +1 -1
  61. package/spec-dashboard/dist/assets/SessionInterface-DOEjuT3l.js +40 -0
  62. package/spec-dashboard/dist/assets/{SessionWindow-iOk0yHoU.js → SessionWindow-1nYgZ4CL.js} +1 -1
  63. package/spec-dashboard/dist/assets/Settings-7WeTJn0V.js +1 -0
  64. package/spec-dashboard/dist/assets/Thread-CEbzAFQn.js +13 -0
  65. package/spec-dashboard/dist/assets/data-SlvxNA2r.js +1 -0
  66. package/spec-dashboard/dist/assets/{index-paP-z_Vd.js → index-DLVeOHL-.js} +10 -10
  67. package/spec-dashboard/dist/assets/index-DYLGfPjx.css +1 -0
  68. package/spec-dashboard/dist/assets/{launch-B-bYdWmh.js → launch-yxCYr64x.js} +29 -29
  69. package/spec-dashboard/dist/assets/sessionSurface--7l69h4F.js +1 -0
  70. package/spec-dashboard/dist/index.html +2 -2
  71. package/spec-dashboard/src/reviewFilters.js +5 -0
  72. package/spec-dashboard/src/session.js +5 -1
  73. package/spec-eval/src/cli.ts +13 -9
  74. package/spec-eval/src/evaltab.ts +32 -10
  75. package/spec-eval/src/freshness.ts +404 -81
  76. package/spec-eval/src/scenariofresh.ts +58 -8
  77. package/spec-eval/src/scenarios.ts +60 -12
  78. package/spec-eval/src/sessioneval.ts +234 -148
  79. package/spec-dashboard/dist/assets/Dashboard-CvAjfRC2.js +0 -27
  80. package/spec-dashboard/dist/assets/EvalsPage-Bz-nMKoS.js +0 -2
  81. package/spec-dashboard/dist/assets/MobileApp-D9L1Va8Z.js +0 -2
  82. package/spec-dashboard/dist/assets/SessionInterface-Dl9v0JFM.js +0 -39
  83. package/spec-dashboard/dist/assets/Settings-BZ1lGRJs.js +0 -1
  84. package/spec-dashboard/dist/assets/Thread-D_kcDnfd.js +0 -13
  85. package/spec-dashboard/dist/assets/data-Bwd3kAVL.js +0 -1
  86. package/spec-dashboard/dist/assets/index-DAbQBBK_.css +0 -1
  87. package/spec-dashboard/dist/assets/terminalFont-C6oGNKrf.js +0 -1
  88. package/spec-eval/src/matrix.ts +0 -693
@@ -1,19 +1,19 @@
1
- import{r as Y,u as Xn,a as Yn,j as X,m as Kn,d as Jn}from"./index-paP-z_Vd.js";import{_ as Qn,X as or,G as ea,A as ta,s as ua}from"./Thread-D_kcDnfd.js";import{t as ra,u as na,v as aa,w as ia,r as sa}from"./data-Bwd3kAVL.js";const cr={};function la(e){let t=cr[e];if(t)return t;t=cr[e]=[];for(let u=0;u<128;u++){const r=String.fromCharCode(u);t.push(r)}for(let u=0;u<e.length;u++){const r=e.charCodeAt(u);t[r]="%"+("0"+r.toString(16).toUpperCase()).slice(-2)}return t}function Se(e,t){typeof t!="string"&&(t=Se.defaultChars);const u=la(t);return e.replace(/(%[a-f0-9]{2})+/gi,function(r){let n="";for(let a=0,i=r.length;a<i;a+=3){const s=parseInt(r.slice(a+1,a+3),16);if(s<128){n+=u[s];continue}if((s&224)===192&&a+3<i){const o=parseInt(r.slice(a+4,a+6),16);if((o&192)===128){const h=s<<6&1984|o&63;h<128?n+="��":n+=String.fromCharCode(h),a+=3;continue}}if((s&240)===224&&a+6<i){const o=parseInt(r.slice(a+4,a+6),16),h=parseInt(r.slice(a+7,a+9),16);if((o&192)===128&&(h&192)===128){const f=s<<12&61440|o<<6&4032|h&63;f<2048||f>=55296&&f<=57343?n+="���":n+=String.fromCharCode(f),a+=6;continue}}if((s&248)===240&&a+9<i){const o=parseInt(r.slice(a+4,a+6),16),h=parseInt(r.slice(a+7,a+9),16),f=parseInt(r.slice(a+10,a+12),16);if((o&192)===128&&(h&192)===128&&(f&192)===128){let p=s<<18&1835008|o<<12&258048|h<<6&4032|f&63;p<65536||p>1114111?n+="����":(p-=65536,n+=String.fromCharCode(55296+(p>>10),56320+(p&1023))),a+=9;continue}}n+="�"}return n})}Se.defaultChars=";/?:@&=+$,#";Se.componentChars="";const hr={};function oa(e){let t=hr[e];if(t)return t;t=hr[e]=[];for(let u=0;u<128;u++){const r=String.fromCharCode(u);/^[0-9a-z]$/i.test(r)?t.push(r):t.push("%"+("0"+u.toString(16).toUpperCase()).slice(-2))}for(let u=0;u<e.length;u++)t[e.charCodeAt(u)]=e[u];return t}function Ve(e,t,u){typeof t!="string"&&(u=t,t=Ve.defaultChars),typeof u>"u"&&(u=!0);const r=oa(t);let n="";for(let a=0,i=e.length;a<i;a++){const s=e.charCodeAt(a);if(u&&s===37&&a+2<i&&/^[0-9a-f]{2}$/i.test(e.slice(a+1,a+3))){n+=e.slice(a,a+3),a+=2;continue}if(s<128){n+=r[s];continue}if(s>=55296&&s<=57343){if(s>=55296&&s<=56319&&a+1<i){const o=e.charCodeAt(a+1);if(o>=56320&&o<=57343){n+=encodeURIComponent(e[a]+e[a+1]),a++;continue}}n+="%EF%BF%BD";continue}n+=encodeURIComponent(e[a])}return n}Ve.defaultChars=";/?:@&=+$,-_.!~*'()#";Ve.componentChars="-_.!~*'()";function Mu(e){let t="";return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&e.hostname.indexOf(":")!==-1?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||"",t}function bt(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}const ca=/^([a-z0-9.+-]+:)/i,ha=/:[0-9]*$/,da=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,fa=["<",">",'"',"`"," ","\r",`
2
- `," "],ma=["{","}","|","\\","^","`"].concat(fa),pa=["'"].concat(ma),dr=["%","/","?",";","#"].concat(pa),fr=["/","?","#"],ba=255,mr=/^[+a-z0-9A-Z_-]{0,63}$/,va=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,pr={javascript:!0,"javascript:":!0},br={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};function Bu(e,t){if(e&&e instanceof bt)return e;const u=new bt;return u.parse(e,t),u}bt.prototype.parse=function(e,t){let u,r,n,a=e;if(a=a.trim(),!t&&e.split("#").length===1){const h=da.exec(a);if(h)return this.pathname=h[1],h[2]&&(this.search=h[2]),this}let i=ca.exec(a);if(i&&(i=i[0],u=i.toLowerCase(),this.protocol=i,a=a.substr(i.length)),(t||i||a.match(/^\/\/[^@\/]+@[^@\/]+/))&&(n=a.substr(0,2)==="//",n&&!(i&&pr[i])&&(a=a.substr(2),this.slashes=!0)),!pr[i]&&(n||i&&!br[i])){let h=-1;for(let y=0;y<fr.length;y++)r=a.indexOf(fr[y]),r!==-1&&(h===-1||r<h)&&(h=r);let f,p;h===-1?p=a.lastIndexOf("@"):p=a.lastIndexOf("@",h),p!==-1&&(f=a.slice(0,p),a=a.slice(p+1),this.auth=f),h=-1;for(let y=0;y<dr.length;y++)r=a.indexOf(dr[y]),r!==-1&&(h===-1||r<h)&&(h=r);h===-1&&(h=a.length),a[h-1]===":"&&h--;const x=a.slice(0,h);a=a.slice(h),this.parseHost(x),this.hostname=this.hostname||"";const b=this.hostname[0]==="["&&this.hostname[this.hostname.length-1]==="]";if(!b){const y=this.hostname.split(/\./);for(let k=0,A=y.length;k<A;k++){const S=y[k];if(S&&!S.match(mr)){let C="";for(let _=0,T=S.length;_<T;_++)S.charCodeAt(_)>127?C+="x":C+=S[_];if(!C.match(mr)){const _=y.slice(0,k),T=y.slice(k+1),B=S.match(va);B&&(_.push(B[1]),T.unshift(B[2])),T.length&&(a=T.join(".")+a),this.hostname=_.join(".");break}}}}this.hostname.length>ba&&(this.hostname=""),b&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}const s=a.indexOf("#");s!==-1&&(this.hash=a.substr(s),a=a.slice(0,s));const o=a.indexOf("?");return o!==-1&&(this.search=a.substr(o),a=a.slice(0,o)),a&&(this.pathname=a),br[u]&&this.hostname&&!this.pathname&&(this.pathname=""),this};bt.prototype.parseHost=function(e){let t=ha.exec(e);t&&(t=t[0],t!==":"&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};const ga=Object.freeze(Object.defineProperty({__proto__:null,decode:Se,encode:Ve,format:Mu,parse:Bu},Symbol.toStringTag,{value:"Module"})),A1=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,D1=/[\0-\x1F\x7F-\x9F]/,xa=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u0890\u0891\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC3F]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/,qu=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061D-\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1B7D\u1B7E\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52-\u2E5D\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDEAD\uDF55-\uDF59\uDF86-\uDF89]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDEB9\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2\uDF00-\uDF09]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDF43-\uDF4F\uDFFF]|\uD809[\uDC70-\uDC74]|\uD80B[\uDFF1\uDFF2]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,C1=/[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u0888\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20C0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u31EF\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC2\uFD40-\uFD4F\uFDCF\uFDFC-\uFDFF\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD833[\uDF50-\uDFC3]|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDEA\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEDC-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF76\uDF7B-\uDFD9\uDFE0-\uDFEB\uDFF0]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDE53\uDE60-\uDE6D\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC5\uDECE-\uDEDB\uDEE0-\uDEE8\uDEF0-\uDEF8\uDF00-\uDF92\uDF94-\uDFCA]/,S1=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/,ya=Object.freeze(Object.defineProperty({__proto__:null,Any:A1,Cc:D1,Cf:xa,P:qu,S:C1,Z:S1},Symbol.toStringTag,{value:"Module"})),wa=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(e=>e.charCodeAt(0))),ka=new Uint16Array("Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(e=>e.charCodeAt(0)));var Pt;const Aa=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),Da=(Pt=String.fromCodePoint)!==null&&Pt!==void 0?Pt:function(e){let t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|e&1023),t+=String.fromCharCode(e),t};function Ca(e){var t;return e>=55296&&e<=57343||e>1114111?65533:(t=Aa.get(e))!==null&&t!==void 0?t:e}var v0;(function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"})(v0||(v0={}));const Sa=32;var le;(function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"})(le||(le={}));function hu(e){return e>=v0.ZERO&&e<=v0.NINE}function Ea(e){return e>=v0.UPPER_A&&e<=v0.UPPER_F||e>=v0.LOWER_A&&e<=v0.LOWER_F}function _a(e){return e>=v0.UPPER_A&&e<=v0.UPPER_Z||e>=v0.LOWER_A&&e<=v0.LOWER_Z||hu(e)}function za(e){return e===v0.EQUALS||_a(e)}var b0;(function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"})(b0||(b0={}));var Y0;(function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"})(Y0||(Y0={}));class Fa{constructor(t,u,r){this.decodeTree=t,this.emitCodePoint=u,this.errors=r,this.state=b0.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=Y0.Strict}startEntity(t){this.decodeMode=t,this.state=b0.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(t,u){switch(this.state){case b0.EntityStart:return t.charCodeAt(u)===v0.NUM?(this.state=b0.NumericStart,this.consumed+=1,this.stateNumericStart(t,u+1)):(this.state=b0.NamedEntity,this.stateNamedEntity(t,u));case b0.NumericStart:return this.stateNumericStart(t,u);case b0.NumericDecimal:return this.stateNumericDecimal(t,u);case b0.NumericHex:return this.stateNumericHex(t,u);case b0.NamedEntity:return this.stateNamedEntity(t,u)}}stateNumericStart(t,u){return u>=t.length?-1:(t.charCodeAt(u)|Sa)===v0.LOWER_X?(this.state=b0.NumericHex,this.consumed+=1,this.stateNumericHex(t,u+1)):(this.state=b0.NumericDecimal,this.stateNumericDecimal(t,u))}addToNumericResult(t,u,r,n){if(u!==r){const a=r-u;this.result=this.result*Math.pow(n,a)+parseInt(t.substr(u,a),n),this.consumed+=a}}stateNumericHex(t,u){const r=u;for(;u<t.length;){const n=t.charCodeAt(u);if(hu(n)||Ea(n))u+=1;else return this.addToNumericResult(t,r,u,16),this.emitNumericEntity(n,3)}return this.addToNumericResult(t,r,u,16),-1}stateNumericDecimal(t,u){const r=u;for(;u<t.length;){const n=t.charCodeAt(u);if(hu(n))u+=1;else return this.addToNumericResult(t,r,u,10),this.emitNumericEntity(n,2)}return this.addToNumericResult(t,r,u,10),-1}emitNumericEntity(t,u){var r;if(this.consumed<=u)return(r=this.errors)===null||r===void 0||r.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(t===v0.SEMI)this.consumed+=1;else if(this.decodeMode===Y0.Strict)return 0;return this.emitCodePoint(Ca(this.result),this.consumed),this.errors&&(t!==v0.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}stateNamedEntity(t,u){const{decodeTree:r}=this;let n=r[this.treeIndex],a=(n&le.VALUE_LENGTH)>>14;for(;u<t.length;u++,this.excess++){const i=t.charCodeAt(u);if(this.treeIndex=Ta(r,n,this.treeIndex+Math.max(1,a),i),this.treeIndex<0)return this.result===0||this.decodeMode===Y0.Attribute&&(a===0||za(i))?0:this.emitNotTerminatedNamedEntity();if(n=r[this.treeIndex],a=(n&le.VALUE_LENGTH)>>14,a!==0){if(i===v0.SEMI)return this.emitNamedEntityData(this.treeIndex,a,this.consumed+this.excess);this.decodeMode!==Y0.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var t;const{result:u,decodeTree:r}=this,n=(r[u]&le.VALUE_LENGTH)>>14;return this.emitNamedEntityData(u,n,this.consumed),(t=this.errors)===null||t===void 0||t.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(t,u,r){const{decodeTree:n}=this;return this.emitCodePoint(u===1?n[t]&~le.VALUE_LENGTH:n[t+1],r),u===3&&this.emitCodePoint(n[t+2],r),r}end(){var t;switch(this.state){case b0.NamedEntity:return this.result!==0&&(this.decodeMode!==Y0.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case b0.NumericDecimal:return this.emitNumericEntity(0,2);case b0.NumericHex:return this.emitNumericEntity(0,3);case b0.NumericStart:return(t=this.errors)===null||t===void 0||t.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case b0.EntityStart:return 0}}}function E1(e){let t="";const u=new Fa(e,r=>t+=Da(r));return function(n,a){let i=0,s=0;for(;(s=n.indexOf("&",s))>=0;){t+=n.slice(i,s),u.startEntity(a);const h=u.write(n,s+1);if(h<0){i=s+u.end();break}i=s+h,s=h===0?i+1:i}const o=t+n.slice(i);return t="",o}}function Ta(e,t,u,r){const n=(t&le.BRANCH_LENGTH)>>7,a=t&le.JUMP_TABLE;if(n===0)return a!==0&&r===a?u:-1;if(a){const o=r-a;return o<0||o>=n?-1:e[u+o]-1}let i=u,s=i+n-1;for(;i<=s;){const o=i+s>>>1,h=e[o];if(h<r)i=o+1;else if(h>r)s=o-1;else return e[o+n]}return-1}const _1=E1(wa);E1(ka);function Ma(e,t=Y0.Legacy){return _1(e,t)}function Ba(e){return _1(e,Y0.Strict)}function qa(e){return Object.prototype.toString.call(e)}function Ru(e){return qa(e)==="[object String]"}const Ra=Object.prototype.hasOwnProperty;function Ia(e,t){return Ra.call(e,t)}function kt(e){return Array.prototype.slice.call(arguments,1).forEach(function(u){if(u){if(typeof u!="object")throw new TypeError(u+"must be object");Object.keys(u).forEach(function(r){e[r]=u[r]})}}),e}function z1(e,t,u){return[].concat(e.slice(0,t),u,e.slice(t+1))}function Iu(e){return!(e>=55296&&e<=57343||e>=64976&&e<=65007||(e&65535)===65535||(e&65535)===65534||e>=0&&e<=8||e===11||e>=14&&e<=31||e>=127&&e<=159||e>1114111)}function Ne(e){if(e>65535){e-=65536;const t=55296+(e>>10),u=56320+(e&1023);return String.fromCharCode(t,u)}return String.fromCharCode(e)}const F1=/\\([!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~])/g,Na=/&([a-z#][a-z0-9]{1,31});/gi,Oa=new RegExp(F1.source+"|"+Na.source,"gi"),La=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i;function Pa(e,t){if(t.charCodeAt(0)===35&&La.test(t)){const r=t[1].toLowerCase()==="x"?parseInt(t.slice(2),16):parseInt(t.slice(1),10);return Iu(r)?Ne(r):e}const u=Ma(e);return u!==e?u:e}function Ha(e){return e.indexOf("\\")<0?e:e.replace(F1,"$1")}function Ee(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(Oa,function(t,u,r){return u||Pa(t,r)})}const $a=/[&<>"]/,ja=/[&<>"]/g,Ua={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"};function Ga(e){return Ua[e]}function ce(e){return $a.test(e)?e.replace(ja,Ga):e}const Va=/[.?*+^$[\]\\(){}|-]/g;function Wa(e){return e.replace(Va,"\\$&")}function Q(e){switch(e){case 9:case 32:return!0}return!1}function Oe(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}function T1(e){return qu.test(e)||C1.test(e)}function Le(e){return T1(Ne(e))}function Pe(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function At(e){return e=e.trim().replace(/\s+/g," "),"ẞ".toLowerCase()==="Ṿ"&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}function vr(e){return e===32||e===9||e===10||e===13}function Dt(e){let t=0;for(;t<e.length&&vr(e.charCodeAt(t));t++);let u=e.length-1;for(;u>=t&&vr(e.charCodeAt(u));u--);return e.slice(t,u+1)}const Za={mdurl:ga,ucmicro:ya},Xa=Object.freeze(Object.defineProperty({__proto__:null,arrayReplaceAt:z1,asciiTrim:Dt,assign:kt,escapeHtml:ce,escapeRE:Wa,fromCodePoint:Ne,has:Ia,isMdAsciiPunct:Pe,isPunctChar:T1,isPunctCharCode:Le,isSpace:Q,isString:Ru,isValidEntityCode:Iu,isWhiteSpace:Oe,lib:Za,normalizeReference:At,unescapeAll:Ee,unescapeMd:Ha},Symbol.toStringTag,{value:"Module"}));function Ya(e,t,u){let r,n,a,i;const s=e.posMax,o=e.pos;for(e.pos=t+1,r=1;e.pos<s;){if(a=e.src.charCodeAt(e.pos),a===93&&(r--,r===0)){n=!0;break}if(i=e.pos,e.md.inline.skipToken(e),a===91){if(i===e.pos-1)r++;else if(u)return e.pos=o,-1}}let h=-1;return n&&(h=e.pos),e.pos=o,h}function Ka(e,t,u){let r,n=t;const a={ok:!1,pos:0,str:""};if(e.charCodeAt(n)===60){for(n++;n<u;){if(r=e.charCodeAt(n),r===10||r===60)return a;if(r===62)return a.pos=n+1,a.str=Ee(e.slice(t+1,n)),a.ok=!0,a;if(r===92&&n+1<u){n+=2;continue}n++}return a}let i=0;for(;n<u&&(r=e.charCodeAt(n),!(r===32||r<32||r===127));){if(r===92&&n+1<u){if(e.charCodeAt(n+1)===32)break;n+=2;continue}if(r===40&&(i++,i>32))return a;if(r===41){if(i===0)break;i--}n++}return t===n||i!==0||(a.str=Ee(e.slice(t,n)),a.pos=n,a.ok=!0),a}function Ja(e,t,u,r){let n,a=t;const i={ok:!1,can_continue:!1,pos:0,str:"",marker:0};if(r)i.str=r.str,i.marker=r.marker;else{if(a>=u)return i;let s=e.charCodeAt(a);if(s!==34&&s!==39&&s!==40)return i;t++,a++,s===40&&(s=41),i.marker=s}for(;a<u;){if(n=e.charCodeAt(a),n===i.marker)return i.pos=a+1,i.str+=Ee(e.slice(t,a)),i.ok=!0,i;if(n===40&&i.marker===41)return i;n===92&&a+1<u&&a++,a++}return i.can_continue=!0,i.str+=Ee(e.slice(t,a)),i}const Qa=Object.freeze(Object.defineProperty({__proto__:null,parseLinkDestination:Ka,parseLinkLabel:Ya,parseLinkTitle:Ja},Symbol.toStringTag,{value:"Module"})),j0={};j0.code_inline=function(e,t,u,r,n){const a=e[t];return"<code"+n.renderAttrs(a)+">"+ce(a.content)+"</code>"};j0.code_block=function(e,t,u,r,n){const a=e[t];return"<pre"+n.renderAttrs(a)+"><code>"+ce(e[t].content)+`</code></pre>
3
- `};j0.fence=function(e,t,u,r,n){const a=e[t],i=a.info?Ee(a.info).trim():"";let s="",o="";if(i){const f=i.split(/(\s+)/g);s=f[0],o=f.slice(2).join("")}let h;if(u.highlight?h=u.highlight(a.content,s,o)||ce(a.content):h=ce(a.content),h.indexOf("<pre")===0)return h+`
1
+ import{r as Z,u as C1,j as H,I as nt,a as Kn,m as Jn,d as Qn}from"./index-DLVeOHL-.js";import{_ as ea,X as cr,G as ta,A as ua,s as ra}from"./Thread-CEbzAFQn.js";import{t as na,u as aa,v as ia,w as sa,x as la,r as oa}from"./data-SlvxNA2r.js";import{M as ca}from"./Modal-B3EcgeA3.js";const hr={};function ha(e){let t=hr[e];if(t)return t;t=hr[e]=[];for(let u=0;u<128;u++){const r=String.fromCharCode(u);t.push(r)}for(let u=0;u<e.length;u++){const r=e.charCodeAt(u);t[r]="%"+("0"+r.toString(16).toUpperCase()).slice(-2)}return t}function Se(e,t){typeof t!="string"&&(t=Se.defaultChars);const u=ha(t);return e.replace(/(%[a-f0-9]{2})+/gi,function(r){let n="";for(let a=0,i=r.length;a<i;a+=3){const s=parseInt(r.slice(a+1,a+3),16);if(s<128){n+=u[s];continue}if((s&224)===192&&a+3<i){const o=parseInt(r.slice(a+4,a+6),16);if((o&192)===128){const h=s<<6&1984|o&63;h<128?n+="��":n+=String.fromCharCode(h),a+=3;continue}}if((s&240)===224&&a+6<i){const o=parseInt(r.slice(a+4,a+6),16),h=parseInt(r.slice(a+7,a+9),16);if((o&192)===128&&(h&192)===128){const f=s<<12&61440|o<<6&4032|h&63;f<2048||f>=55296&&f<=57343?n+="���":n+=String.fromCharCode(f),a+=6;continue}}if((s&248)===240&&a+9<i){const o=parseInt(r.slice(a+4,a+6),16),h=parseInt(r.slice(a+7,a+9),16),f=parseInt(r.slice(a+10,a+12),16);if((o&192)===128&&(h&192)===128&&(f&192)===128){let p=s<<18&1835008|o<<12&258048|h<<6&4032|f&63;p<65536||p>1114111?n+="����":(p-=65536,n+=String.fromCharCode(55296+(p>>10),56320+(p&1023))),a+=9;continue}}n+="�"}return n})}Se.defaultChars=";/?:@&=+$,#";Se.componentChars="";const dr={};function da(e){let t=dr[e];if(t)return t;t=dr[e]=[];for(let u=0;u<128;u++){const r=String.fromCharCode(u);/^[0-9a-z]$/i.test(r)?t.push(r):t.push("%"+("0"+u.toString(16).toUpperCase()).slice(-2))}for(let u=0;u<e.length;u++)t[e.charCodeAt(u)]=e[u];return t}function We(e,t,u){typeof t!="string"&&(u=t,t=We.defaultChars),typeof u>"u"&&(u=!0);const r=da(t);let n="";for(let a=0,i=e.length;a<i;a++){const s=e.charCodeAt(a);if(u&&s===37&&a+2<i&&/^[0-9a-f]{2}$/i.test(e.slice(a+1,a+3))){n+=e.slice(a,a+3),a+=2;continue}if(s<128){n+=r[s];continue}if(s>=55296&&s<=57343){if(s>=55296&&s<=56319&&a+1<i){const o=e.charCodeAt(a+1);if(o>=56320&&o<=57343){n+=encodeURIComponent(e[a]+e[a+1]),a++;continue}}n+="%EF%BF%BD";continue}n+=encodeURIComponent(e[a])}return n}We.defaultChars=";/?:@&=+$,-_.!~*'()#";We.componentChars="-_.!~*'()";function qu(e){let t="";return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&e.hostname.indexOf(":")!==-1?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||"",t}function xt(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}const fa=/^([a-z0-9.+-]+:)/i,ma=/:[0-9]*$/,pa=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,ba=["<",">",'"',"`"," ","\r",`
2
+ `," "],va=["{","}","|","\\","^","`"].concat(ba),ga=["'"].concat(va),fr=["%","/","?",";","#"].concat(ga),mr=["/","?","#"],xa=255,pr=/^[+a-z0-9A-Z_-]{0,63}$/,ya=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,br={javascript:!0,"javascript:":!0},vr={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};function Ru(e,t){if(e&&e instanceof xt)return e;const u=new xt;return u.parse(e,t),u}xt.prototype.parse=function(e,t){let u,r,n,a=e;if(a=a.trim(),!t&&e.split("#").length===1){const h=pa.exec(a);if(h)return this.pathname=h[1],h[2]&&(this.search=h[2]),this}let i=fa.exec(a);if(i&&(i=i[0],u=i.toLowerCase(),this.protocol=i,a=a.substr(i.length)),(t||i||a.match(/^\/\/[^@\/]+@[^@\/]+/))&&(n=a.substr(0,2)==="//",n&&!(i&&br[i])&&(a=a.substr(2),this.slashes=!0)),!br[i]&&(n||i&&!vr[i])){let h=-1;for(let y=0;y<mr.length;y++)r=a.indexOf(mr[y]),r!==-1&&(h===-1||r<h)&&(h=r);let f,p;h===-1?p=a.lastIndexOf("@"):p=a.lastIndexOf("@",h),p!==-1&&(f=a.slice(0,p),a=a.slice(p+1),this.auth=f),h=-1;for(let y=0;y<fr.length;y++)r=a.indexOf(fr[y]),r!==-1&&(h===-1||r<h)&&(h=r);h===-1&&(h=a.length),a[h-1]===":"&&h--;const x=a.slice(0,h);a=a.slice(h),this.parseHost(x),this.hostname=this.hostname||"";const b=this.hostname[0]==="["&&this.hostname[this.hostname.length-1]==="]";if(!b){const y=this.hostname.split(/\./);for(let k=0,A=y.length;k<A;k++){const D=y[k];if(D&&!D.match(pr)){let S="";for(let _=0,T=D.length;_<T;_++)D.charCodeAt(_)>127?S+="x":S+=D[_];if(!S.match(pr)){const _=y.slice(0,k),T=y.slice(k+1),B=D.match(ya);B&&(_.push(B[1]),T.unshift(B[2])),T.length&&(a=T.join(".")+a),this.hostname=_.join(".");break}}}}this.hostname.length>xa&&(this.hostname=""),b&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}const s=a.indexOf("#");s!==-1&&(this.hash=a.substr(s),a=a.slice(0,s));const o=a.indexOf("?");return o!==-1&&(this.search=a.substr(o),a=a.slice(0,o)),a&&(this.pathname=a),vr[u]&&this.hostname&&!this.pathname&&(this.pathname=""),this};xt.prototype.parseHost=function(e){let t=ma.exec(e);t&&(t=t[0],t!==":"&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};const wa=Object.freeze(Object.defineProperty({__proto__:null,decode:Se,encode:We,format:qu,parse:Ru},Symbol.toStringTag,{value:"Module"})),D1=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,S1=/[\0-\x1F\x7F-\x9F]/,ka=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u0890\u0891\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC3F]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/,Iu=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061D-\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1B7D\u1B7E\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52-\u2E5D\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDEAD\uDF55-\uDF59\uDF86-\uDF89]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDEB9\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2\uDF00-\uDF09]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDF43-\uDF4F\uDFFF]|\uD809[\uDC70-\uDC74]|\uD80B[\uDFF1\uDFF2]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,E1=/[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u0888\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20C0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u31EF\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC2\uFD40-\uFD4F\uFDCF\uFDFC-\uFDFF\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD833[\uDF50-\uDFC3]|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDEA\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEDC-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF76\uDF7B-\uDFD9\uDFE0-\uDFEB\uDFF0]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDE53\uDE60-\uDE6D\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC5\uDECE-\uDEDB\uDEE0-\uDEE8\uDEF0-\uDEF8\uDF00-\uDF92\uDF94-\uDFCA]/,_1=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/,Aa=Object.freeze(Object.defineProperty({__proto__:null,Any:D1,Cc:S1,Cf:ka,P:Iu,S:E1,Z:_1},Symbol.toStringTag,{value:"Module"})),Ca=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(e=>e.charCodeAt(0))),Da=new Uint16Array("Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(e=>e.charCodeAt(0)));var $t;const Sa=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),Ea=($t=String.fromCodePoint)!==null&&$t!==void 0?$t:function(e){let t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|e&1023),t+=String.fromCharCode(e),t};function _a(e){var t;return e>=55296&&e<=57343||e>1114111?65533:(t=Sa.get(e))!==null&&t!==void 0?t:e}var v0;(function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"})(v0||(v0={}));const za=32;var oe;(function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"})(oe||(oe={}));function fu(e){return e>=v0.ZERO&&e<=v0.NINE}function Fa(e){return e>=v0.UPPER_A&&e<=v0.UPPER_F||e>=v0.LOWER_A&&e<=v0.LOWER_F}function Ta(e){return e>=v0.UPPER_A&&e<=v0.UPPER_Z||e>=v0.LOWER_A&&e<=v0.LOWER_Z||fu(e)}function Ma(e){return e===v0.EQUALS||Ta(e)}var b0;(function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"})(b0||(b0={}));var Q0;(function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"})(Q0||(Q0={}));class Ba{constructor(t,u,r){this.decodeTree=t,this.emitCodePoint=u,this.errors=r,this.state=b0.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=Q0.Strict}startEntity(t){this.decodeMode=t,this.state=b0.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(t,u){switch(this.state){case b0.EntityStart:return t.charCodeAt(u)===v0.NUM?(this.state=b0.NumericStart,this.consumed+=1,this.stateNumericStart(t,u+1)):(this.state=b0.NamedEntity,this.stateNamedEntity(t,u));case b0.NumericStart:return this.stateNumericStart(t,u);case b0.NumericDecimal:return this.stateNumericDecimal(t,u);case b0.NumericHex:return this.stateNumericHex(t,u);case b0.NamedEntity:return this.stateNamedEntity(t,u)}}stateNumericStart(t,u){return u>=t.length?-1:(t.charCodeAt(u)|za)===v0.LOWER_X?(this.state=b0.NumericHex,this.consumed+=1,this.stateNumericHex(t,u+1)):(this.state=b0.NumericDecimal,this.stateNumericDecimal(t,u))}addToNumericResult(t,u,r,n){if(u!==r){const a=r-u;this.result=this.result*Math.pow(n,a)+parseInt(t.substr(u,a),n),this.consumed+=a}}stateNumericHex(t,u){const r=u;for(;u<t.length;){const n=t.charCodeAt(u);if(fu(n)||Fa(n))u+=1;else return this.addToNumericResult(t,r,u,16),this.emitNumericEntity(n,3)}return this.addToNumericResult(t,r,u,16),-1}stateNumericDecimal(t,u){const r=u;for(;u<t.length;){const n=t.charCodeAt(u);if(fu(n))u+=1;else return this.addToNumericResult(t,r,u,10),this.emitNumericEntity(n,2)}return this.addToNumericResult(t,r,u,10),-1}emitNumericEntity(t,u){var r;if(this.consumed<=u)return(r=this.errors)===null||r===void 0||r.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(t===v0.SEMI)this.consumed+=1;else if(this.decodeMode===Q0.Strict)return 0;return this.emitCodePoint(_a(this.result),this.consumed),this.errors&&(t!==v0.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}stateNamedEntity(t,u){const{decodeTree:r}=this;let n=r[this.treeIndex],a=(n&oe.VALUE_LENGTH)>>14;for(;u<t.length;u++,this.excess++){const i=t.charCodeAt(u);if(this.treeIndex=qa(r,n,this.treeIndex+Math.max(1,a),i),this.treeIndex<0)return this.result===0||this.decodeMode===Q0.Attribute&&(a===0||Ma(i))?0:this.emitNotTerminatedNamedEntity();if(n=r[this.treeIndex],a=(n&oe.VALUE_LENGTH)>>14,a!==0){if(i===v0.SEMI)return this.emitNamedEntityData(this.treeIndex,a,this.consumed+this.excess);this.decodeMode!==Q0.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var t;const{result:u,decodeTree:r}=this,n=(r[u]&oe.VALUE_LENGTH)>>14;return this.emitNamedEntityData(u,n,this.consumed),(t=this.errors)===null||t===void 0||t.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(t,u,r){const{decodeTree:n}=this;return this.emitCodePoint(u===1?n[t]&~oe.VALUE_LENGTH:n[t+1],r),u===3&&this.emitCodePoint(n[t+2],r),r}end(){var t;switch(this.state){case b0.NamedEntity:return this.result!==0&&(this.decodeMode!==Q0.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case b0.NumericDecimal:return this.emitNumericEntity(0,2);case b0.NumericHex:return this.emitNumericEntity(0,3);case b0.NumericStart:return(t=this.errors)===null||t===void 0||t.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case b0.EntityStart:return 0}}}function z1(e){let t="";const u=new Ba(e,r=>t+=Ea(r));return function(n,a){let i=0,s=0;for(;(s=n.indexOf("&",s))>=0;){t+=n.slice(i,s),u.startEntity(a);const h=u.write(n,s+1);if(h<0){i=s+u.end();break}i=s+h,s=h===0?i+1:i}const o=t+n.slice(i);return t="",o}}function qa(e,t,u,r){const n=(t&oe.BRANCH_LENGTH)>>7,a=t&oe.JUMP_TABLE;if(n===0)return a!==0&&r===a?u:-1;if(a){const o=r-a;return o<0||o>=n?-1:e[u+o]-1}let i=u,s=i+n-1;for(;i<=s;){const o=i+s>>>1,h=e[o];if(h<r)i=o+1;else if(h>r)s=o-1;else return e[o+n]}return-1}const F1=z1(Ca);z1(Da);function Ra(e,t=Q0.Legacy){return F1(e,t)}function Ia(e){return F1(e,Q0.Strict)}function Na(e){return Object.prototype.toString.call(e)}function Nu(e){return Na(e)==="[object String]"}const Oa=Object.prototype.hasOwnProperty;function La(e,t){return Oa.call(e,t)}function Dt(e){return Array.prototype.slice.call(arguments,1).forEach(function(u){if(u){if(typeof u!="object")throw new TypeError(u+"must be object");Object.keys(u).forEach(function(r){e[r]=u[r]})}}),e}function T1(e,t,u){return[].concat(e.slice(0,t),u,e.slice(t+1))}function Ou(e){return!(e>=55296&&e<=57343||e>=64976&&e<=65007||(e&65535)===65535||(e&65535)===65534||e>=0&&e<=8||e===11||e>=14&&e<=31||e>=127&&e<=159||e>1114111)}function Oe(e){if(e>65535){e-=65536;const t=55296+(e>>10),u=56320+(e&1023);return String.fromCharCode(t,u)}return String.fromCharCode(e)}const M1=/\\([!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~])/g,Pa=/&([a-z#][a-z0-9]{1,31});/gi,Ha=new RegExp(M1.source+"|"+Pa.source,"gi"),$a=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i;function ja(e,t){if(t.charCodeAt(0)===35&&$a.test(t)){const r=t[1].toLowerCase()==="x"?parseInt(t.slice(2),16):parseInt(t.slice(1),10);return Ou(r)?Oe(r):e}const u=Ra(e);return u!==e?u:e}function Ua(e){return e.indexOf("\\")<0?e:e.replace(M1,"$1")}function Ee(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(Ha,function(t,u,r){return u||ja(t,r)})}const Ga=/[&<>"]/,Va=/[&<>"]/g,Wa={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"};function Za(e){return Wa[e]}function he(e){return Ga.test(e)?e.replace(Va,Za):e}const Xa=/[.?*+^$[\]\\(){}|-]/g;function Ya(e){return e.replace(Xa,"\\$&")}function Q(e){switch(e){case 9:case 32:return!0}return!1}function Le(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}function B1(e){return Iu.test(e)||E1.test(e)}function Pe(e){return B1(Oe(e))}function He(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function St(e){return e=e.trim().replace(/\s+/g," "),"ẞ".toLowerCase()==="Ṿ"&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}function gr(e){return e===32||e===9||e===10||e===13}function Et(e){let t=0;for(;t<e.length&&gr(e.charCodeAt(t));t++);let u=e.length-1;for(;u>=t&&gr(e.charCodeAt(u));u--);return e.slice(t,u+1)}const Ka={mdurl:wa,ucmicro:Aa},Ja=Object.freeze(Object.defineProperty({__proto__:null,arrayReplaceAt:T1,asciiTrim:Et,assign:Dt,escapeHtml:he,escapeRE:Ya,fromCodePoint:Oe,has:La,isMdAsciiPunct:He,isPunctChar:B1,isPunctCharCode:Pe,isSpace:Q,isString:Nu,isValidEntityCode:Ou,isWhiteSpace:Le,lib:Ka,normalizeReference:St,unescapeAll:Ee,unescapeMd:Ua},Symbol.toStringTag,{value:"Module"}));function Qa(e,t,u){let r,n,a,i;const s=e.posMax,o=e.pos;for(e.pos=t+1,r=1;e.pos<s;){if(a=e.src.charCodeAt(e.pos),a===93&&(r--,r===0)){n=!0;break}if(i=e.pos,e.md.inline.skipToken(e),a===91){if(i===e.pos-1)r++;else if(u)return e.pos=o,-1}}let h=-1;return n&&(h=e.pos),e.pos=o,h}function ei(e,t,u){let r,n=t;const a={ok:!1,pos:0,str:""};if(e.charCodeAt(n)===60){for(n++;n<u;){if(r=e.charCodeAt(n),r===10||r===60)return a;if(r===62)return a.pos=n+1,a.str=Ee(e.slice(t+1,n)),a.ok=!0,a;if(r===92&&n+1<u){n+=2;continue}n++}return a}let i=0;for(;n<u&&(r=e.charCodeAt(n),!(r===32||r<32||r===127));){if(r===92&&n+1<u){if(e.charCodeAt(n+1)===32)break;n+=2;continue}if(r===40&&(i++,i>32))return a;if(r===41){if(i===0)break;i--}n++}return t===n||i!==0||(a.str=Ee(e.slice(t,n)),a.pos=n,a.ok=!0),a}function ti(e,t,u,r){let n,a=t;const i={ok:!1,can_continue:!1,pos:0,str:"",marker:0};if(r)i.str=r.str,i.marker=r.marker;else{if(a>=u)return i;let s=e.charCodeAt(a);if(s!==34&&s!==39&&s!==40)return i;t++,a++,s===40&&(s=41),i.marker=s}for(;a<u;){if(n=e.charCodeAt(a),n===i.marker)return i.pos=a+1,i.str+=Ee(e.slice(t,a)),i.ok=!0,i;if(n===40&&i.marker===41)return i;n===92&&a+1<u&&a++,a++}return i.can_continue=!0,i.str+=Ee(e.slice(t,a)),i}const ui=Object.freeze(Object.defineProperty({__proto__:null,parseLinkDestination:ei,parseLinkLabel:Qa,parseLinkTitle:ti},Symbol.toStringTag,{value:"Module"})),U0={};U0.code_inline=function(e,t,u,r,n){const a=e[t];return"<code"+n.renderAttrs(a)+">"+he(a.content)+"</code>"};U0.code_block=function(e,t,u,r,n){const a=e[t];return"<pre"+n.renderAttrs(a)+"><code>"+he(e[t].content)+`</code></pre>
3
+ `};U0.fence=function(e,t,u,r,n){const a=e[t],i=a.info?Ee(a.info).trim():"";let s="",o="";if(i){const f=i.split(/(\s+)/g);s=f[0],o=f.slice(2).join("")}let h;if(u.highlight?h=u.highlight(a.content,s,o)||he(a.content):h=he(a.content),h.indexOf("<pre")===0)return h+`
4
4
  `;if(i){const f=a.attrIndex("class"),p=a.attrs?a.attrs.slice():[];f<0?p.push(["class",u.langPrefix+s]):(p[f]=p[f].slice(),p[f][1]+=" "+u.langPrefix+s);const x={attrs:p};return`<pre><code${n.renderAttrs(x)}>${h}</code></pre>
5
5
  `}return`<pre><code${n.renderAttrs(a)}>${h}</code></pre>
6
- `};j0.image=function(e,t,u,r,n){const a=e[t];return a.attrs[a.attrIndex("alt")][1]=n.renderInlineAsText(a.children,u,r),n.renderToken(e,t,u)};j0.hardbreak=function(e,t,u){return u.xhtmlOut?`<br />
6
+ `};U0.image=function(e,t,u,r,n){const a=e[t];return a.attrs[a.attrIndex("alt")][1]=n.renderInlineAsText(a.children,u,r),n.renderToken(e,t,u)};U0.hardbreak=function(e,t,u){return u.xhtmlOut?`<br />
7
7
  `:`<br>
8
- `};j0.softbreak=function(e,t,u){return u.breaks?u.xhtmlOut?`<br />
8
+ `};U0.softbreak=function(e,t,u){return u.breaks?u.xhtmlOut?`<br />
9
9
  `:`<br>
10
10
  `:`
11
- `};j0.text=function(e,t){return ce(e[t].content)};j0.html_block=function(e,t){return e[t].content};j0.html_inline=function(e,t){return e[t].content};function Te(){this.rules=kt({},j0)}Te.prototype.renderAttrs=function(t){let u,r,n;if(!t.attrs)return"";for(n="",u=0,r=t.attrs.length;u<r;u++)n+=" "+ce(t.attrs[u][0])+'="'+ce(t.attrs[u][1])+'"';return n};Te.prototype.renderToken=function(t,u,r){const n=t[u];let a="";if(n.hidden)return"";n.block&&n.nesting!==-1&&u&&t[u-1].hidden&&(a+=`
11
+ `};U0.text=function(e,t){return he(e[t].content)};U0.html_block=function(e,t){return e[t].content};U0.html_inline=function(e,t){return e[t].content};function Te(){this.rules=Dt({},U0)}Te.prototype.renderAttrs=function(t){let u,r,n;if(!t.attrs)return"";for(n="",u=0,r=t.attrs.length;u<r;u++)n+=" "+he(t.attrs[u][0])+'="'+he(t.attrs[u][1])+'"';return n};Te.prototype.renderToken=function(t,u,r){const n=t[u];let a="";if(n.hidden)return"";n.block&&n.nesting!==-1&&u&&t[u-1].hidden&&(a+=`
12
12
  `),a+=(n.nesting===-1?"</":"<")+n.tag,a+=this.renderAttrs(n),n.nesting===0&&r.xhtmlOut&&(a+=" /");let i=!1;if(n.block&&(i=!0,n.nesting===1&&u+1<t.length)){const s=t[u+1];(s.type==="inline"||s.hidden||s.nesting===-1&&s.tag===n.tag)&&(i=!1)}return a+=i?`>
13
13
  `:">",a};Te.prototype.renderInline=function(e,t,u){let r="";const n=this.rules;for(let a=0,i=e.length;a<i;a++){const s=e[a].type;typeof n[s]<"u"?r+=n[s](e,a,t,u,this):r+=this.renderToken(e,a,t)}return r};Te.prototype.renderInlineAsText=function(e,t,u){let r="";for(let n=0,a=e.length;n<a;n++)switch(e[n].type){case"text":r+=e[n].content;break;case"image":r+=this.renderInlineAsText(e[n].children,t,u);break;case"html_inline":case"html_block":r+=e[n].content;break;case"softbreak":case"hardbreak":r+=`
14
- `;break}return r};Te.prototype.render=function(e,t,u){let r="";const n=this.rules;for(let a=0,i=e.length;a<i;a++){const s=e[a].type;s==="inline"?r+=this.renderInline(e[a].children,t,u):typeof n[s]<"u"?r+=n[s](e,a,t,u,this):r+=this.renderToken(e,a,t,u)}return r};function S0(){this.__rules__=[],this.__cache__=null}S0.prototype.__find__=function(e){for(let t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1};S0.prototype.__compile__=function(){const e=this,t=[""];e.__rules__.forEach(function(u){u.enabled&&u.alt.forEach(function(r){t.indexOf(r)<0&&t.push(r)})}),e.__cache__={},t.forEach(function(u){e.__cache__[u]=[],e.__rules__.forEach(function(r){r.enabled&&(u&&r.alt.indexOf(u)<0||e.__cache__[u].push(r.fn))})})};S0.prototype.at=function(e,t,u){const r=this.__find__(e),n=u||{};if(r===-1)throw new Error("Parser rule not found: "+e);this.__rules__[r].fn=t,this.__rules__[r].alt=n.alt||[],this.__cache__=null};S0.prototype.before=function(e,t,u,r){const n=this.__find__(e),a=r||{};if(n===-1)throw new Error("Parser rule not found: "+e);this.__rules__.splice(n,0,{name:t,enabled:!0,fn:u,alt:a.alt||[]}),this.__cache__=null};S0.prototype.after=function(e,t,u,r){const n=this.__find__(e),a=r||{};if(n===-1)throw new Error("Parser rule not found: "+e);this.__rules__.splice(n+1,0,{name:t,enabled:!0,fn:u,alt:a.alt||[]}),this.__cache__=null};S0.prototype.push=function(e,t,u){const r=u||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:r.alt||[]}),this.__cache__=null};S0.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);const u=[];return e.forEach(function(r){const n=this.__find__(r);if(n<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[n].enabled=!0,u.push(r)},this),this.__cache__=null,u};S0.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach(function(u){u.enabled=!1}),this.enable(e,t)};S0.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);const u=[];return e.forEach(function(r){const n=this.__find__(r);if(n<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[n].enabled=!1,u.push(r)},this),this.__cache__=null,u};S0.prototype.getRules=function(e){return this.__cache__===null&&this.__compile__(),this.__cache__[e]||[]};function I0(e,t,u){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=u,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}I0.prototype.attrIndex=function(t){if(!this.attrs)return-1;const u=this.attrs;for(let r=0,n=u.length;r<n;r++)if(u[r][0]===t)return r;return-1};I0.prototype.attrPush=function(t){this.attrs?this.attrs.push(t):this.attrs=[t]};I0.prototype.attrSet=function(t,u){const r=this.attrIndex(t),n=[t,u];r<0?this.attrPush(n):this.attrs[r]=n};I0.prototype.attrGet=function(t){const u=this.attrIndex(t);let r=null;return u>=0&&(r=this.attrs[u][1]),r};I0.prototype.attrJoin=function(t,u){const r=this.attrIndex(t);r<0?this.attrPush([t,u]):this.attrs[r][1]=this.attrs[r][1]+" "+u};function M1(e,t,u){this.src=e,this.env=u,this.tokens=[],this.inlineMode=!1,this.md=t}M1.prototype.Token=I0;const ei=/\r\n?|\n/g,ti=/\0/g;function ui(e){let t;t=e.src.replace(ei,`
15
- `),t=t.replace(ti,"�"),e.src=t}function ri(e){let t;e.inlineMode?(t=new e.Token("inline","",0),t.content=e.src,t.map=[0,1],t.children=[],e.tokens.push(t)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}function ni(e){const t=e.tokens;for(let u=0,r=t.length;u<r;u++){const n=t[u];n.type==="inline"&&e.md.inline.parse(n.content,e.md,e.env,n.children)}}function ai(e){return/^<a[>\s]/i.test(e)}function ii(e){return/^<\/a\s*>/i.test(e)}function si(e){const t=e.tokens;if(e.md.options.linkify)for(let u=0,r=t.length;u<r;u++){if(t[u].type!=="inline"||!e.md.linkify.pretest(t[u].content))continue;let n=t[u].children,a=0;for(let i=n.length-1;i>=0;i--){const s=n[i];if(s.type==="link_close"){for(i--;n[i].level!==s.level&&n[i].type!=="link_open";)i--;continue}if(s.type==="html_inline"&&(ai(s.content)&&a>0&&a--,ii(s.content)&&a++),!(a>0)&&s.type==="text"&&e.md.linkify.test(s.content)){const o=s.content;let h=e.md.linkify.match(o);const f=[];let p=s.level,x=0;h.length>0&&h[0].index===0&&i>0&&n[i-1].type==="text_special"&&(h=h.slice(1));for(let b=0;b<h.length;b++){const y=h[b].url,k=e.md.normalizeLink(y);if(!e.md.validateLink(k))continue;let A=h[b].text;h[b].schema?h[b].schema==="mailto:"&&!/^mailto:/i.test(A)?A=e.md.normalizeLinkText("mailto:"+A).replace(/^mailto:/,""):A=e.md.normalizeLinkText(A):A=e.md.normalizeLinkText("http://"+A).replace(/^http:\/\//,"");const S=h[b].index;if(S>x){const B=new e.Token("text","",0);B.content=o.slice(x,S),B.level=p,f.push(B)}const C=new e.Token("link_open","a",1);C.attrs=[["href",k]],C.level=p++,C.markup="linkify",C.info="auto",f.push(C);const _=new e.Token("text","",0);_.content=A,_.level=p,f.push(_);const T=new e.Token("link_close","a",-1);T.level=--p,T.markup="linkify",T.info="auto",f.push(T),x=h[b].lastIndex}if(x<o.length){const b=new e.Token("text","",0);b.content=o.slice(x),b.level=p,f.push(b)}t[u].children=n=z1(n,i,f)}}}}const B1=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,li=/\((c|tm|r)\)/i,oi=/\((c|tm|r)\)/ig,ci={c:"©",r:"®",tm:"™"};function hi(e,t){return ci[t.toLowerCase()]}function di(e){let t=0;for(let u=e.length-1;u>=0;u--){const r=e[u];r.type==="text"&&!t&&(r.content=r.content.replace(oi,hi)),r.type==="link_open"&&r.info==="auto"&&t--,r.type==="link_close"&&r.info==="auto"&&t++}}function fi(e){let t=0;for(let u=e.length-1;u>=0;u--){const r=e[u];r.type==="text"&&!t&&B1.test(r.content)&&(r.content=r.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/mg,"$1—").replace(/(^|\s)--(?=\s|$)/mg,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/mg,"$1–")),r.type==="link_open"&&r.info==="auto"&&t--,r.type==="link_close"&&r.info==="auto"&&t++}}function mi(e){let t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)e.tokens[t].type==="inline"&&(li.test(e.tokens[t].content)&&di(e.tokens[t].children),B1.test(e.tokens[t].content)&&fi(e.tokens[t].children))}const pi=/['"]/,gr=/['"]/g,xr="’";function ut(e,t,u,r){e[t]||(e[t]=[]),e[t].push({pos:u,ch:r})}function bi(e,t){let u="",r=0;t.sort((n,a)=>n.pos-a.pos);for(let n=0;n<t.length;n++){const a=t[n];u+=e.slice(r,a.pos)+a.ch,r=a.pos+1}return u+e.slice(r)}function vi(e,t){let u;const r=[],n={};for(let a=0;a<e.length;a++){const i=e[a],s=e[a].level;for(u=r.length-1;u>=0&&!(r[u].level<=s);u--);if(r.length=u+1,i.type!=="text")continue;const o=i.content;let h=0;const f=o.length;e:for(;h<f;){gr.lastIndex=h;const p=gr.exec(o);if(!p)break;let x=!0,b=!0;h=p.index+1;const y=p[0]==="'";let k=32;if(p.index-1>=0)k=o.charCodeAt(p.index-1);else for(u=a-1;u>=0&&!(e[u].type==="softbreak"||e[u].type==="hardbreak");u--)if(e[u].content){k=e[u].content.charCodeAt(e[u].content.length-1);break}let A=32;if(h<f)A=o.charCodeAt(h);else for(u=a+1;u<e.length&&!(e[u].type==="softbreak"||e[u].type==="hardbreak");u++)if(e[u].content){A=e[u].content.charCodeAt(0);break}const S=Pe(k)||Le(k),C=Pe(A)||Le(A),_=Oe(k),T=Oe(A);if(T?x=!1:C&&(_||S||(x=!1)),_?b=!1:S&&(T||C||(b=!1)),A===34&&p[0]==='"'&&k>=48&&k<=57&&(b=x=!1),x&&b&&(x=S,b=C),!x&&!b){y&&ut(n,a,p.index,xr);continue}if(b)for(u=r.length-1;u>=0;u--){let B=r[u];if(r[u].level<s)break;if(B.single===y&&r[u].level===s){B=r[u];let q,O;y?(q=t.md.options.quotes[2],O=t.md.options.quotes[3]):(q=t.md.options.quotes[0],O=t.md.options.quotes[1]),ut(n,a,p.index,O),ut(n,B.token,B.pos,q),r.length=u;continue e}}x?r.push({token:a,pos:p.index,single:y,level:s}):b&&y&&ut(n,a,p.index,xr)}}Object.keys(n).forEach(function(a){e[a].content=bi(e[a].content,n[a])})}function gi(e){if(e.md.options.typographer)for(let t=e.tokens.length-1;t>=0;t--)e.tokens[t].type!=="inline"||!pi.test(e.tokens[t].content)||vi(e.tokens[t].children,e)}function xi(e){let t,u;const r=e.tokens,n=r.length;for(let a=0;a<n;a++){if(r[a].type!=="inline")continue;const i=r[a].children,s=i.length;for(t=0;t<s;t++)i[t].type==="text_special"&&(i[t].type="text");for(t=u=0;t<s;t++)i[t].type==="text"&&t+1<s&&i[t+1].type==="text"?i[t+1].content=i[t].content+i[t+1].content:(t!==u&&(i[u]=i[t]),u++);t!==u&&(i.length=u)}}const Ht=[["normalize",ui],["block",ri],["inline",ni],["linkify",si],["replacements",mi],["smartquotes",gi],["text_join",xi]];function Nu(){this.ruler=new S0;for(let e=0;e<Ht.length;e++)this.ruler.push(Ht[e][0],Ht[e][1])}Nu.prototype.process=function(e){const t=this.ruler.getRules("");for(let u=0,r=t.length;u<r;u++)t[u](e)};Nu.prototype.State=M1;function U0(e,t,u,r){this.src=e,this.md=t,this.env=u,this.tokens=r,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0;const n=this.src;for(let a=0,i=0,s=0,o=0,h=n.length,f=!1;i<h;i++){const p=n.charCodeAt(i);if(!f)if(Q(p)){s++,p===9?o+=4-o%4:o++;continue}else f=!0;(p===10||i===h-1)&&(p!==10&&i++,this.bMarks.push(a),this.eMarks.push(i),this.tShift.push(s),this.sCount.push(o),this.bsCount.push(0),f=!1,s=0,o=0,a=i+1)}this.bMarks.push(n.length),this.eMarks.push(n.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}U0.prototype.push=function(e,t,u){const r=new I0(e,t,u);return r.block=!0,u<0&&this.level--,r.level=this.level,u>0&&this.level++,this.tokens.push(r),r};U0.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]};U0.prototype.skipEmptyLines=function(t){for(let u=this.lineMax;t<u&&!(this.bMarks[t]+this.tShift[t]<this.eMarks[t]);t++);return t};U0.prototype.skipSpaces=function(t){for(let u=this.src.length;t<u;t++){const r=this.src.charCodeAt(t);if(!Q(r))break}return t};U0.prototype.skipSpacesBack=function(t,u){if(t<=u)return t;for(;t>u;)if(!Q(this.src.charCodeAt(--t)))return t+1;return t};U0.prototype.skipChars=function(t,u){for(let r=this.src.length;t<r&&this.src.charCodeAt(t)===u;t++);return t};U0.prototype.skipCharsBack=function(t,u,r){if(t<=r)return t;for(;t>r;)if(u!==this.src.charCodeAt(--t))return t+1;return t};U0.prototype.getLines=function(t,u,r,n){if(t>=u)return"";const a=new Array(u-t);for(let i=0,s=t;s<u;s++,i++){let o=0;const h=this.bMarks[s];let f=h,p;for(s+1<u||n?p=this.eMarks[s]+1:p=this.eMarks[s];f<p&&o<r;){const x=this.src.charCodeAt(f);if(Q(x))x===9?o+=4-(o+this.bsCount[s])%4:o++;else if(f-h<this.tShift[s])o++;else break;f++}o>r?a[i]=new Array(o-r+1).join(" ")+this.src.slice(f,p):a[i]=this.src.slice(f,p)}return a.join("")};U0.prototype.Token=I0;const yi=65536;function $t(e,t){const u=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.slice(u,r)}function yr(e){const t=[],u=e.length;let r=0,n=e.charCodeAt(r),a=!1,i=0,s="";for(;r<u;)n===124&&(a?(s+=e.substring(i,r-1),i=r):(t.push(s+e.substring(i,r)),s="",i=r+1)),a=n===92,r++,n=e.charCodeAt(r);return t.push(s+e.substring(i)),t}function wi(e,t,u,r){if(t+2>u)return!1;let n=t+1;if(e.sCount[n]<e.blkIndent||e.sCount[n]-e.blkIndent>=4)return!1;let a=e.bMarks[n]+e.tShift[n];if(a>=e.eMarks[n])return!1;const i=e.src.charCodeAt(a++);if(i!==124&&i!==45&&i!==58||a>=e.eMarks[n])return!1;const s=e.src.charCodeAt(a++);if(s!==124&&s!==45&&s!==58&&!Q(s)||i===45&&Q(s))return!1;for(;a<e.eMarks[n];){const T=e.src.charCodeAt(a);if(T!==124&&T!==45&&T!==58&&!Q(T))return!1;a++}let o=$t(e,t+1),h=o.split("|");const f=[];for(let T=0;T<h.length;T++){const B=h[T].trim();if(!B){if(T===0||T===h.length-1)continue;return!1}if(!/^:?-+:?$/.test(B))return!1;B.charCodeAt(B.length-1)===58?f.push(B.charCodeAt(0)===58?"center":"right"):B.charCodeAt(0)===58?f.push("left"):f.push("")}if(o=$t(e,t).trim(),o.indexOf("|")===-1||e.sCount[t]-e.blkIndent>=4)return!1;h=yr(o),h.length&&h[0]===""&&h.shift(),h.length&&h[h.length-1]===""&&h.pop();const p=h.length;if(p===0||p!==f.length)return!1;if(r)return!0;const x=e.parentType;e.parentType="table";const b=e.md.block.ruler.getRules("blockquote"),y=e.push("table_open","table",1),k=[t,0];y.map=k;const A=e.push("thead_open","thead",1);A.map=[t,t+1];const S=e.push("tr_open","tr",1);S.map=[t,t+1];for(let T=0;T<h.length;T++){const B=e.push("th_open","th",1);f[T]&&(B.attrs=[["style","text-align:"+f[T]]]);const q=e.push("inline","",0);q.content=h[T].trim(),q.children=[],e.push("th_close","th",-1)}e.push("tr_close","tr",-1),e.push("thead_close","thead",-1);let C,_=0;for(n=t+2;n<u&&!(e.sCount[n]<e.blkIndent);n++){let T=!1;for(let q=0,O=b.length;q<O;q++)if(b[q](e,n,u,!0)){T=!0;break}if(T||(o=$t(e,n).trim(),!o)||e.sCount[n]-e.blkIndent>=4||(h=yr(o),h.length&&h[0]===""&&h.shift(),h.length&&h[h.length-1]===""&&h.pop(),_+=p-h.length,_>yi))break;if(n===t+2){const q=e.push("tbody_open","tbody",1);q.map=C=[t+2,0]}const B=e.push("tr_open","tr",1);B.map=[n,n+1];for(let q=0;q<p;q++){const O=e.push("td_open","td",1);f[q]&&(O.attrs=[["style","text-align:"+f[q]]]);const U=e.push("inline","",0);U.content=h[q]?h[q].trim():"",U.children=[],e.push("td_close","td",-1)}e.push("tr_close","tr",-1)}return C&&(e.push("tbody_close","tbody",-1),C[1]=n),e.push("table_close","table",-1),k[1]=n,e.parentType=x,e.line=n,!0}function ki(e,t,u){if(e.sCount[t]-e.blkIndent<4)return!1;let r=t+1,n=r;for(;r<u;){if(e.isEmpty(r)){r++;continue}if(e.sCount[r]-e.blkIndent>=4){r++,n=r;continue}break}e.line=n;const a=e.push("code_block","code",0);return a.content=e.getLines(t,n,4+e.blkIndent,!1)+`
16
- `,a.map=[t,e.line],!0}function Ai(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4||n+3>a)return!1;const i=e.src.charCodeAt(n);if(i!==126&&i!==96)return!1;let s=n;n=e.skipChars(n,i);let o=n-s;if(o<3)return!1;const h=e.src.slice(s,n),f=e.src.slice(n,a);if(i===96&&f.indexOf(String.fromCharCode(i))>=0)return!1;if(r)return!0;let p=t,x=!1;for(;p++,!(p>=u||(n=s=e.bMarks[p]+e.tShift[p],a=e.eMarks[p],n<a&&e.sCount[p]<e.blkIndent));)if(e.src.charCodeAt(n)===i&&!(e.sCount[p]-e.blkIndent>=4)&&(n=e.skipChars(n,i),!(n-s<o)&&(n=e.skipSpaces(n),!(n<a)))){x=!0;break}o=e.sCount[t],e.line=p+(x?1:0);const b=e.push("fence","code",0);return b.info=f,b.content=e.getLines(t+1,p,o,!0),b.markup=h,b.map=[t,e.line],!0}function Di(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];const i=e.lineMax;if(e.sCount[t]-e.blkIndent>=4||e.src.charCodeAt(n)!==62)return!1;if(r)return!0;const s=[],o=[],h=[],f=[],p=e.md.block.ruler.getRules("blockquote"),x=e.parentType;e.parentType="blockquote";let b=!1,y;for(y=t;y<u;y++){const _=e.sCount[y]<e.blkIndent;if(n=e.bMarks[y]+e.tShift[y],a=e.eMarks[y],n>=a)break;if(e.src.charCodeAt(n++)===62&&!_){let B=e.sCount[y]+1,q,O;e.src.charCodeAt(n)===32?(n++,B++,O=!1,q=!0):e.src.charCodeAt(n)===9?(q=!0,(e.bsCount[y]+B)%4===3?(n++,B++,O=!1):O=!0):q=!1;let U=B;for(s.push(e.bMarks[y]),e.bMarks[y]=n;n<a;){const $=e.src.charCodeAt(n);if(Q($))$===9?U+=4-(U+e.bsCount[y]+(O?1:0))%4:U++;else break;n++}b=n>=a,o.push(e.bsCount[y]),e.bsCount[y]=e.sCount[y]+1+(q?1:0),h.push(e.sCount[y]),e.sCount[y]=U-B,f.push(e.tShift[y]),e.tShift[y]=n-e.bMarks[y];continue}if(b)break;let T=!1;for(let B=0,q=p.length;B<q;B++)if(p[B](e,y,u,!0)){T=!0;break}if(T){e.lineMax=y,e.blkIndent!==0&&(s.push(e.bMarks[y]),o.push(e.bsCount[y]),f.push(e.tShift[y]),h.push(e.sCount[y]),e.sCount[y]-=e.blkIndent);break}s.push(e.bMarks[y]),o.push(e.bsCount[y]),f.push(e.tShift[y]),h.push(e.sCount[y]),e.sCount[y]=-1}const k=e.blkIndent;e.blkIndent=0;const A=e.push("blockquote_open","blockquote",1);A.markup=">";const S=[t,0];A.map=S,e.md.block.tokenize(e,t,y);const C=e.push("blockquote_close","blockquote",-1);C.markup=">",e.lineMax=i,e.parentType=x,S[1]=e.line;for(let _=0;_<f.length;_++)e.bMarks[_+t]=s[_],e.tShift[_+t]=f[_],e.sCount[_+t]=h[_],e.bsCount[_+t]=o[_];return e.blkIndent=k,!0}function Ci(e,t,u,r){const n=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;let a=e.bMarks[t]+e.tShift[t];const i=e.src.charCodeAt(a++);if(i!==42&&i!==45&&i!==95)return!1;let s=1;for(;a<n;){const h=e.src.charCodeAt(a++);if(h!==i&&!Q(h))return!1;h===i&&s++}if(s<3)return!1;if(r)return!0;e.line=t+1;const o=e.push("hr","hr",0);return o.map=[t,e.line],o.markup=Array(s+1).join(String.fromCharCode(i)),!0}function wr(e,t){const u=e.eMarks[t];let r=e.bMarks[t]+e.tShift[t];const n=e.src.charCodeAt(r++);if(n!==42&&n!==45&&n!==43)return-1;if(r<u){const a=e.src.charCodeAt(r);if(!Q(a))return-1}return r}function kr(e,t){const u=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];let n=u;if(n+1>=r)return-1;let a=e.src.charCodeAt(n++);if(a<48||a>57)return-1;for(;;){if(n>=r)return-1;if(a=e.src.charCodeAt(n++),a>=48&&a<=57){if(n-u>=10)return-1;continue}if(a===41||a===46)break;return-1}return n<r&&(a=e.src.charCodeAt(n),!Q(a))?-1:n}function Si(e,t){const u=e.level+2;for(let r=t+2,n=e.tokens.length-2;r<n;r++)e.tokens[r].level===u&&e.tokens[r].type==="paragraph_open"&&(e.tokens[r+2].hidden=!0,e.tokens[r].hidden=!0,r+=2)}function Ei(e,t,u,r){let n,a,i,s,o=t,h=!0;if(e.sCount[o]-e.blkIndent>=4||e.listIndent>=0&&e.sCount[o]-e.listIndent>=4&&e.sCount[o]<e.blkIndent)return!1;let f=!1;r&&e.parentType==="paragraph"&&e.sCount[o]>=e.blkIndent&&(f=!0);let p,x,b;if((b=kr(e,o))>=0){if(p=!0,i=e.bMarks[o]+e.tShift[o],x=Number(e.src.slice(i,b-1)),f&&x!==1)return!1}else if((b=wr(e,o))>=0)p=!1;else return!1;if(f&&e.skipSpaces(b)>=e.eMarks[o])return!1;if(r)return!0;const y=e.src.charCodeAt(b-1),k=e.tokens.length;p?(s=e.push("ordered_list_open","ol",1),x!==1&&(s.attrs=[["start",x]])):s=e.push("bullet_list_open","ul",1);const A=[o,0];s.map=A,s.markup=String.fromCharCode(y);let S=!1;const C=e.md.block.ruler.getRules("list"),_=e.parentType;for(e.parentType="list";o<u;){a=b,n=e.eMarks[o];const T=e.sCount[o]+b-(e.bMarks[o]+e.tShift[o]);let B=T;for(;a<n;){const r0=e.src.charCodeAt(a);if(r0===9)B+=4-(B+e.bsCount[o])%4;else if(r0===32)B++;else break;a++}const q=a;let O;q>=n?O=1:O=B-T,O>4&&(O=1);const U=T+O;s=e.push("list_item_open","li",1),s.markup=String.fromCharCode(y);const $=[o,0];s.map=$,p&&(s.info=e.src.slice(i,b-1));const u0=e.tight,f0=e.tShift[o],e0=e.sCount[o],N0=e.listIndent;if(e.listIndent=e.blkIndent,e.blkIndent=U,e.tight=!0,e.tShift[o]=q-e.bMarks[o],e.sCount[o]=B,q>=n&&e.isEmpty(o+1)?e.line=Math.min(e.line+2,u):e.md.block.tokenize(e,o,u,!0),(!e.tight||S)&&(h=!1),S=e.line-o>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=N0,e.tShift[o]=f0,e.sCount[o]=e0,e.tight=u0,s=e.push("list_item_close","li",-1),s.markup=String.fromCharCode(y),o=e.line,$[1]=o,o>=u||e.sCount[o]<e.blkIndent||e.sCount[o]-e.blkIndent>=4)break;let x0=!1;for(let r0=0,E0=C.length;r0<E0;r0++)if(C[r0](e,o,u,!0)){x0=!0;break}if(x0)break;if(p){if(b=kr(e,o),b<0)break;i=e.bMarks[o]+e.tShift[o]}else if(b=wr(e,o),b<0)break;if(y!==e.src.charCodeAt(b-1))break}return p?s=e.push("ordered_list_close","ol",-1):s=e.push("bullet_list_close","ul",-1),s.markup=String.fromCharCode(y),A[1]=o,e.line=o,e.parentType=_,h&&Si(e,k),!0}function _i(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t],i=t+1;if(e.sCount[t]-e.blkIndent>=4||e.src.charCodeAt(n)!==91)return!1;function s(C){const _=e.lineMax;if(C>=_||e.isEmpty(C))return null;let T=!1;if(e.sCount[C]-e.blkIndent>3&&(T=!0),e.sCount[C]<0&&(T=!0),!T){const O=e.md.block.ruler.getRules("reference"),U=e.parentType;e.parentType="reference";let $=!1;for(let u0=0,f0=O.length;u0<f0;u0++)if(O[u0](e,C,_,!0)){$=!0;break}if(e.parentType=U,$)return null}const B=e.bMarks[C]+e.tShift[C],q=e.eMarks[C];return e.src.slice(B,q+1)}let o=e.src.slice(n,a+1);a=o.length;let h=-1;for(n=1;n<a;n++){const C=o.charCodeAt(n);if(C===91)return!1;if(C===93){h=n;break}else if(C===10){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}else if(C===92&&(n++,n<a&&o.charCodeAt(n)===10)){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}}if(h<0||o.charCodeAt(h+1)!==58)return!1;for(n=h+2;n<a;n++){const C=o.charCodeAt(n);if(C===10){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}else if(!Q(C))break}const f=e.md.helpers.parseLinkDestination(o,n,a);if(!f.ok)return!1;const p=e.md.normalizeLink(f.str);if(!e.md.validateLink(p))return!1;n=f.pos;const x=n,b=i,y=n;for(;n<a;n++){const C=o.charCodeAt(n);if(C===10){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}else if(!Q(C))break}let k=e.md.helpers.parseLinkTitle(o,n,a);for(;k.can_continue;){const C=s(i);if(C===null)break;o+=C,n=a,a=o.length,i++,k=e.md.helpers.parseLinkTitle(o,n,a,k)}let A;for(n<a&&y!==n&&k.ok?(A=k.str,n=k.pos):(A="",n=x,i=b);n<a;){const C=o.charCodeAt(n);if(!Q(C))break;n++}if(n<a&&o.charCodeAt(n)!==10&&A)for(A="",n=x,i=b;n<a;){const C=o.charCodeAt(n);if(!Q(C))break;n++}if(n<a&&o.charCodeAt(n)!==10)return!1;const S=At(o.slice(1,h));return S?(r||(typeof e.env.references>"u"&&(e.env.references={}),typeof e.env.references[S]>"u"&&(e.env.references[S]={title:A,href:p}),e.line=i),!0):!1}const zi=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],Fi="[a-zA-Z_:][a-zA-Z0-9:._-]*",Ti="[^\"'=<>`\\x00-\\x20]+",Mi="'[^']*'",Bi='"[^"]*"',qi="(?:"+Ti+"|"+Mi+"|"+Bi+")",Ri="(?:\\s+"+Fi+"(?:\\s*=\\s*"+qi+")?)",q1="<[A-Za-z][A-Za-z0-9\\-]*"+Ri+"*\\s*\\/?>",R1="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",Ii="<!---?>|<!--(?:[^-]|-[^-]|--[^>])*-->",Ni="<[?][\\s\\S]*?[?]>",Oi="<![A-Za-z][^>]*>",Li="<!\\[CDATA\\[[\\s\\S]*?\\]\\]>",Pi=new RegExp("^(?:"+q1+"|"+R1+"|"+Ii+"|"+Ni+"|"+Oi+"|"+Li+")"),Hi=new RegExp("^(?:"+q1+"|"+R1+")"),be=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+zi.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(Hi.source+"\\s*$"),/^$/,!1]];function $i(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4||!e.md.options.html||e.src.charCodeAt(n)!==60)return!1;let i=e.src.slice(n,a),s=0;for(;s<be.length&&!be[s][0].test(i);s++);if(s===be.length)return!1;if(r)return be[s][2];let o=t+1;const h=be[s][1].test("");if(!be[s][1].test(i)){for(;o<u&&!(e.sCount[o]<e.blkIndent&&(h||!e.isEmpty(o)));o++)if(n=e.bMarks[o]+e.tShift[o],a=e.eMarks[o],i=e.src.slice(n,a),be[s][1].test(i)){i.length!==0&&o++;break}}e.line=o;const f=e.push("html_block","",0);return f.map=[t,o],f.content=e.getLines(t,o,e.blkIndent,!0),!0}function ji(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;let i=e.src.charCodeAt(n);if(i!==35||n>=a)return!1;let s=1;for(i=e.src.charCodeAt(++n);i===35&&n<a&&s<=6;)s++,i=e.src.charCodeAt(++n);if(s>6||n<a&&!Q(i))return!1;if(r)return!0;a=e.skipSpacesBack(a,n);const o=e.skipCharsBack(a,35,n);o>n&&Q(e.src.charCodeAt(o-1))&&(a=o),e.line=t+1;const h=e.push("heading_open","h"+String(s),1);h.markup="########".slice(0,s),h.map=[t,e.line];const f=e.push("inline","",0);f.content=Dt(e.src.slice(n,a)),f.map=[t,e.line],f.children=[];const p=e.push("heading_close","h"+String(s),-1);return p.markup="########".slice(0,s),!0}function Ui(e,t,u){const r=e.md.block.ruler.getRules("paragraph");if(e.sCount[t]-e.blkIndent>=4)return!1;const n=e.parentType;e.parentType="paragraph";let a=0,i,s=t+1;for(;s<u&&!e.isEmpty(s);s++){if(e.sCount[s]-e.blkIndent>3)continue;if(e.sCount[s]>=e.blkIndent){let b=e.bMarks[s]+e.tShift[s];const y=e.eMarks[s];if(b<y&&(i=e.src.charCodeAt(b),(i===45||i===61)&&(b=e.skipChars(b,i),b=e.skipSpaces(b),b>=y))){a=i===61?1:2;break}}if(e.sCount[s]<0)continue;let x=!1;for(let b=0,y=r.length;b<y;b++)if(r[b](e,s,u,!0)){x=!0;break}if(x)break}if(!a)return e.parentType=n,!1;const o=Dt(e.getLines(t,s,e.blkIndent,!1));e.line=s+1;const h=e.push("heading_open","h"+String(a),1);h.markup=String.fromCharCode(i),h.map=[t,e.line];const f=e.push("inline","",0);f.content=o,f.map=[t,e.line-1],f.children=[];const p=e.push("heading_close","h"+String(a),-1);return p.markup=String.fromCharCode(i),e.parentType=n,!0}function Gi(e,t,u){const r=e.md.block.ruler.getRules("paragraph"),n=e.parentType;let a=t+1;for(e.parentType="paragraph";a<u&&!e.isEmpty(a);a++){if(e.sCount[a]-e.blkIndent>3||e.sCount[a]<0)continue;let h=!1;for(let f=0,p=r.length;f<p;f++)if(r[f](e,a,u,!0)){h=!0;break}if(h)break}const i=Dt(e.getLines(t,a,e.blkIndent,!1));e.line=a;const s=e.push("paragraph_open","p",1);s.map=[t,e.line];const o=e.push("inline","",0);return o.content=i,o.map=[t,e.line],o.children=[],e.push("paragraph_close","p",-1),e.parentType=n,!0}const rt=[["table",wi,["paragraph","reference"]],["code",ki],["fence",Ai,["paragraph","reference","blockquote","list"]],["blockquote",Di,["paragraph","reference","blockquote","list"]],["hr",Ci,["paragraph","reference","blockquote","list"]],["list",Ei,["paragraph","reference","blockquote"]],["reference",_i],["html_block",$i,["paragraph","reference","blockquote"]],["heading",ji,["paragraph","reference","blockquote"]],["lheading",Ui],["paragraph",Gi]];function Ct(){this.ruler=new S0;for(let e=0;e<rt.length;e++)this.ruler.push(rt[e][0],rt[e][1],{alt:(rt[e][2]||[]).slice()})}Ct.prototype.tokenize=function(e,t,u){const r=this.ruler.getRules(""),n=r.length,a=e.md.options.maxNesting;let i=t,s=!1;for(;i<u&&(e.line=i=e.skipEmptyLines(i),!(i>=u||e.sCount[i]<e.blkIndent));){if(e.level>=a){e.line=u;break}const o=e.line;let h=!1;for(let f=0;f<n;f++)if(h=r[f](e,i,u,!1),h){if(o>=e.line)throw new Error("block rule didn't increment state.line");break}if(!h)throw new Error("none of the block rules matched");e.tight=!s,e.isEmpty(e.line-1)&&(s=!0),i=e.line,i<u&&e.isEmpty(i)&&(s=!0,i++,e.line=i)}};Ct.prototype.parse=function(e,t,u,r){if(!e)return;const n=new this.State(e,t,u,r);this.tokenize(n,n.line,n.lineMax)};Ct.prototype.State=U0;function We(e,t,u,r){this.src=e,this.env=u,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}We.prototype.pushPending=function(){const e=new I0("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e};We.prototype.push=function(e,t,u){this.pending&&this.pushPending();const r=new I0(e,t,u);let n=null;return u<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),r.level=this.level,u>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],n={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(r),this.tokens_meta.push(n),r};We.prototype.scanDelims=function(e,t){const u=this.posMax,r=this.src.charCodeAt(e);let n;if(e===0)n=32;else if(e===1)n=this.src.charCodeAt(0),(n&63488)===55296&&(n=65533);else if(n=this.src.charCodeAt(e-1),(n&64512)===56320){const A=this.src.charCodeAt(e-2);n=(A&64512)===55296?65536+(A-55296<<10)+(n-56320):65533}else(n&64512)===55296&&(n=65533);let a=e;for(;a<u&&this.src.charCodeAt(a)===r;)a++;const i=a-e;let s=a<u?this.src.charCodeAt(a):32;if((s&64512)===55296){const A=this.src.charCodeAt(a+1);s=(A&64512)===56320?65536+(s-55296<<10)+(A-56320):65533}else(s&64512)===56320&&(s=65533);const o=Pe(n)||Le(n),h=Pe(s)||Le(s),f=Oe(n),p=Oe(s),x=!p&&(!h||f||o),b=!f&&(!o||p||h);return{can_open:x&&(t||!b||o),can_close:b&&(t||!x||h),length:i}};We.prototype.Token=I0;function Vi(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}function Wi(e,t){let u=e.pos;for(;u<e.posMax&&!Vi(e.src.charCodeAt(u));)u++;return u===e.pos?!1:(t||(e.pending+=e.src.slice(e.pos,u)),e.pos=u,!0)}const Zi=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i;function Xi(e,t){if(!e.md.options.linkify||e.linkLevel>0)return!1;const u=e.pos,r=e.posMax;if(u+3>r||e.src.charCodeAt(u)!==58||e.src.charCodeAt(u+1)!==47||e.src.charCodeAt(u+2)!==47)return!1;const n=e.pending.match(Zi);if(!n)return!1;const a=n[1],i=e.md.linkify.matchAtStart(e.src.slice(u-a.length));if(!i)return!1;let s=i.url;if(s.length<=a.length)return!1;let o=s.length;for(;o>0&&s.charCodeAt(o-1)===42;)o--;o!==s.length&&(s=s.slice(0,o));const h=e.md.normalizeLink(s);if(!e.md.validateLink(h))return!1;if(!t){e.pending=e.pending.slice(0,-a.length);const f=e.push("link_open","a",1);f.attrs=[["href",h]],f.markup="linkify",f.info="auto";const p=e.push("text","",0);p.content=e.md.normalizeLinkText(s);const x=e.push("link_close","a",-1);x.markup="linkify",x.info="auto"}return e.pos+=s.length-a.length,!0}function Yi(e,t){let u=e.pos;if(e.src.charCodeAt(u)!==10)return!1;const r=e.pending.length-1,n=e.posMax;if(!t)if(r>=0&&e.pending.charCodeAt(r)===32)if(r>=1&&e.pending.charCodeAt(r-1)===32){let a=r-1;for(;a>=1&&e.pending.charCodeAt(a-1)===32;)a--;e.pending=e.pending.slice(0,a),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);for(u++;u<n&&Q(e.src.charCodeAt(u));)u++;return e.pos=u,!0}const Ou=[];for(let e=0;e<256;e++)Ou.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(e){Ou[e.charCodeAt(0)]=1});function Ki(e,t){let u=e.pos;const r=e.posMax;if(e.src.charCodeAt(u)!==92||(u++,u>=r))return!1;let n=e.src.charCodeAt(u);if(n===10){for(t||e.push("hardbreak","br",0),u++;u<r&&(n=e.src.charCodeAt(u),!!Q(n));)u++;return e.pos=u,!0}if(n===32){if(!t){const s=e.push("text_special","",0);s.content="\\",s.markup="\\",s.info="escape"}return e.pos=u,!0}let a=e.src[u];if(n>=55296&&n<=56319&&u+1<r){const s=e.src.charCodeAt(u+1);s>=56320&&s<=57343&&(a+=e.src[u+1],u++)}const i="\\"+a;if(!t){const s=e.push("text_special","",0);n<256&&Ou[n]!==0?s.content=a:s.content=i,s.markup=i,s.info="escape"}return e.pos=u+1,!0}function Ji(e,t){let u=e.pos;if(e.src.charCodeAt(u)!==96)return!1;const n=u;u++;const a=e.posMax;for(;u<a&&e.src.charCodeAt(u)===96;)u++;const i=e.src.slice(n,u),s=i.length;if(e.backticksScanned&&(e.backticks[s]||0)<=n)return t||(e.pending+=i),e.pos+=s,!0;let o=u,h;for(;(h=e.src.indexOf("`",o))!==-1;){for(o=h+1;o<a&&e.src.charCodeAt(o)===96;)o++;const f=o-h;if(f===s){if(!t){const p=e.push("code_inline","code",0);p.markup=i,p.content=e.src.slice(u,h).replace(/\n/g," ").replace(/^ (.+) $/,"$1")}return e.pos=o,!0}e.backticks[f]=h}return e.backticksScanned=!0,t||(e.pending+=i),e.pos+=s,!0}function Qi(e,t){const u=e.pos,r=e.src.charCodeAt(u);if(t||r!==126)return!1;const n=e.scanDelims(e.pos,!0);let a=n.length;const i=String.fromCharCode(r);if(a<2)return!1;let s;a%2&&(s=e.push("text","",0),s.content=i,a--);for(let o=0;o<a;o+=2)s=e.push("text","",0),s.content=i+i,e.delimiters.push({marker:r,length:0,token:e.tokens.length-1,end:-1,open:n.can_open,close:n.can_close});return e.pos+=n.length,!0}function Ar(e,t){let u;const r=[],n=t.length;for(let a=0;a<n;a++){const i=t[a];if(i.marker!==126||i.end===-1)continue;const s=t[i.end];u=e.tokens[i.token],u.type="s_open",u.tag="s",u.nesting=1,u.markup="~~",u.content="",u=e.tokens[s.token],u.type="s_close",u.tag="s",u.nesting=-1,u.markup="~~",u.content="",e.tokens[s.token-1].type==="text"&&e.tokens[s.token-1].content==="~"&&r.push(s.token-1)}for(;r.length;){const a=r.pop();let i=a+1;for(;i<e.tokens.length&&e.tokens[i].type==="s_close";)i++;i--,a!==i&&(u=e.tokens[i],e.tokens[i]=e.tokens[a],e.tokens[a]=u)}}function es(e){const t=e.tokens_meta,u=e.tokens_meta.length;Ar(e,e.delimiters);for(let r=0;r<u;r++)t[r]&&t[r].delimiters&&Ar(e,t[r].delimiters)}const I1={tokenize:Qi,postProcess:es};function ts(e,t){const u=e.pos,r=e.src.charCodeAt(u);if(t||r!==95&&r!==42)return!1;const n=e.scanDelims(e.pos,r===42);for(let a=0;a<n.length;a++){const i=e.push("text","",0);i.content=String.fromCharCode(r),e.delimiters.push({marker:r,length:n.length,token:e.tokens.length-1,end:-1,open:n.can_open,close:n.can_close})}return e.pos+=n.length,!0}function Dr(e,t){const u=t.length;for(let r=u-1;r>=0;r--){const n=t[r];if(n.marker!==95&&n.marker!==42||n.end===-1)continue;const a=t[n.end],i=r>0&&t[r-1].end===n.end+1&&t[r-1].marker===n.marker&&t[r-1].token===n.token-1&&t[n.end+1].token===a.token+1,s=String.fromCharCode(n.marker),o=e.tokens[n.token];o.type=i?"strong_open":"em_open",o.tag=i?"strong":"em",o.nesting=1,o.markup=i?s+s:s,o.content="";const h=e.tokens[a.token];h.type=i?"strong_close":"em_close",h.tag=i?"strong":"em",h.nesting=-1,h.markup=i?s+s:s,h.content="",i&&(e.tokens[t[r-1].token].content="",e.tokens[t[n.end+1].token].content="",r--)}}function us(e){const t=e.tokens_meta,u=e.tokens_meta.length;Dr(e,e.delimiters);for(let r=0;r<u;r++)t[r]&&t[r].delimiters&&Dr(e,t[r].delimiters)}const N1={tokenize:ts,postProcess:us};function rs(e,t){let u,r,n,a,i="",s="",o=e.pos,h=!0;if(e.src.charCodeAt(e.pos)!==91)return!1;const f=e.pos,p=e.posMax,x=e.pos+1,b=e.md.helpers.parseLinkLabel(e,e.pos,!0);if(b<0)return!1;let y=b+1;if(y<p&&e.src.charCodeAt(y)===40){for(h=!1,y++;y<p&&(u=e.src.charCodeAt(y),!(!Q(u)&&u!==10));y++);if(y>=p)return!1;if(o=y,n=e.md.helpers.parseLinkDestination(e.src,y,e.posMax),n.ok){for(i=e.md.normalizeLink(n.str),e.md.validateLink(i)?y=n.pos:i="",o=y;y<p&&(u=e.src.charCodeAt(y),!(!Q(u)&&u!==10));y++);if(n=e.md.helpers.parseLinkTitle(e.src,y,e.posMax),y<p&&o!==y&&n.ok)for(s=n.str,y=n.pos;y<p&&(u=e.src.charCodeAt(y),!(!Q(u)&&u!==10));y++);}(y>=p||e.src.charCodeAt(y)!==41)&&(h=!0),y++}if(h){if(typeof e.env.references>"u")return!1;if(y<p&&e.src.charCodeAt(y)===91?(o=y+1,y=e.md.helpers.parseLinkLabel(e,y),y>=0?r=e.src.slice(o,y++):y=b+1):y=b+1,r||(r=e.src.slice(x,b)),a=e.env.references[At(r)],!a)return e.pos=f,!1;i=a.href,s=a.title}if(!t){e.pos=x,e.posMax=b;const k=e.push("link_open","a",1),A=[["href",i]];k.attrs=A,s&&A.push(["title",s]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)}return e.pos=y,e.posMax=p,!0}function ns(e,t){let u,r,n,a,i,s,o,h,f="";const p=e.pos,x=e.posMax;if(e.src.charCodeAt(e.pos)!==33||e.src.charCodeAt(e.pos+1)!==91)return!1;const b=e.pos+2,y=e.md.helpers.parseLinkLabel(e,e.pos+1,!1);if(y<0)return!1;if(a=y+1,a<x&&e.src.charCodeAt(a)===40){for(a++;a<x&&(u=e.src.charCodeAt(a),!(!Q(u)&&u!==10));a++);if(a>=x)return!1;for(h=a,s=e.md.helpers.parseLinkDestination(e.src,a,e.posMax),s.ok&&(f=e.md.normalizeLink(s.str),e.md.validateLink(f)?a=s.pos:f=""),h=a;a<x&&(u=e.src.charCodeAt(a),!(!Q(u)&&u!==10));a++);if(s=e.md.helpers.parseLinkTitle(e.src,a,e.posMax),a<x&&h!==a&&s.ok)for(o=s.str,a=s.pos;a<x&&(u=e.src.charCodeAt(a),!(!Q(u)&&u!==10));a++);else o="";if(a>=x||e.src.charCodeAt(a)!==41)return e.pos=p,!1;a++}else{if(typeof e.env.references>"u")return!1;if(a<x&&e.src.charCodeAt(a)===91?(h=a+1,a=e.md.helpers.parseLinkLabel(e,a),a>=0?n=e.src.slice(h,a++):a=y+1):a=y+1,n||(n=e.src.slice(b,y)),i=e.env.references[At(n)],!i)return e.pos=p,!1;f=i.href,o=i.title}if(!t){r=e.src.slice(b,y);const k=[];e.md.inline.parse(r,e.md,e.env,k);const A=e.push("image","img",0),S=[["src",f],["alt",""]];A.attrs=S,A.children=k,A.content=r,o&&S.push(["title",o])}return e.pos=a,e.posMax=x,!0}const as=/^([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,is=/^([a-zA-Z][a-zA-Z0-9+.-]{1,31}):([^<>\x00-\x20]*)$/;function ss(e,t){let u=e.pos;if(e.src.charCodeAt(u)!==60)return!1;const r=e.pos,n=e.posMax;for(;;){if(++u>=n)return!1;const i=e.src.charCodeAt(u);if(i===60)return!1;if(i===62)break}const a=e.src.slice(r+1,u);if(is.test(a)){const i=e.md.normalizeLink(a);if(!e.md.validateLink(i))return!1;if(!t){const s=e.push("link_open","a",1);s.attrs=[["href",i]],s.markup="autolink",s.info="auto";const o=e.push("text","",0);o.content=e.md.normalizeLinkText(a);const h=e.push("link_close","a",-1);h.markup="autolink",h.info="auto"}return e.pos+=a.length+2,!0}if(as.test(a)){const i=e.md.normalizeLink("mailto:"+a);if(!e.md.validateLink(i))return!1;if(!t){const s=e.push("link_open","a",1);s.attrs=[["href",i]],s.markup="autolink",s.info="auto";const o=e.push("text","",0);o.content=e.md.normalizeLinkText(a);const h=e.push("link_close","a",-1);h.markup="autolink",h.info="auto"}return e.pos+=a.length+2,!0}return!1}function ls(e){return/^<a[>\s]/i.test(e)}function os(e){return/^<\/a\s*>/i.test(e)}function cs(e){const t=e|32;return t>=97&&t<=122}function hs(e,t){if(!e.md.options.html)return!1;const u=e.posMax,r=e.pos;if(e.src.charCodeAt(r)!==60||r+2>=u)return!1;const n=e.src.charCodeAt(r+1);if(n!==33&&n!==63&&n!==47&&!cs(n))return!1;const a=e.src.slice(r).match(Pi);if(!a)return!1;if(!t){const i=e.push("html_inline","",0);i.content=a[0],ls(i.content)&&e.linkLevel++,os(i.content)&&e.linkLevel--}return e.pos+=a[0].length,!0}const ds=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,fs=/^&([a-z][a-z0-9]{1,31});/i;function ms(e,t){const u=e.pos,r=e.posMax;if(e.src.charCodeAt(u)!==38||u+1>=r)return!1;if(e.src.charCodeAt(u+1)===35){const a=e.src.slice(u).match(ds);if(a){if(!t){const i=a[1][0].toLowerCase()==="x"?parseInt(a[1].slice(1),16):parseInt(a[1],10),s=e.push("text_special","",0);s.content=Iu(i)?Ne(i):Ne(65533),s.markup=a[0],s.info="entity"}return e.pos+=a[0].length,!0}}else{const a=e.src.slice(u).match(fs);if(a){const i=Ba(a[0]);if(i!==a[0]){if(!t){const s=e.push("text_special","",0);s.content=i,s.markup=a[0],s.info="entity"}return e.pos+=a[0].length,!0}}}return!1}function Cr(e){const t={},u=e.length;if(!u)return;let r=0,n=-2;const a=[];for(let i=0;i<u;i++){const s=e[i];if(a.push(0),(e[r].marker!==s.marker||n!==s.token-1)&&(r=i),n=s.token,s.length=s.length||0,!s.close)continue;t.hasOwnProperty(s.marker)||(t[s.marker]=[-1,-1,-1,-1,-1,-1]);const o=t[s.marker][(s.open?3:0)+s.length%3];let h=r-a[r]-1,f=h;for(;h>o;h-=a[h]+1){const p=e[h];if(p.marker===s.marker&&p.open&&p.end<0){let x=!1;if((p.close||s.open)&&(p.length+s.length)%3===0&&(p.length%3!==0||s.length%3!==0)&&(x=!0),!x){const b=h>0&&!e[h-1].open?a[h-1]+1:0;a[i]=i-h+b,a[h]=b,s.open=!1,p.end=i,p.close=!1,f=-1,n=-2;break}}}f!==-1&&(t[s.marker][(s.open?3:0)+(s.length||0)%3]=f)}}function ps(e){const t=e.tokens_meta,u=e.tokens_meta.length;Cr(e.delimiters);for(let r=0;r<u;r++)t[r]&&t[r].delimiters&&Cr(t[r].delimiters)}function bs(e){let t,u,r=0;const n=e.tokens,a=e.tokens.length;for(t=u=0;t<a;t++)n[t].nesting<0&&r--,n[t].level=r,n[t].nesting>0&&r++,n[t].type==="text"&&t+1<a&&n[t+1].type==="text"?n[t+1].content=n[t].content+n[t+1].content:(t!==u&&(n[u]=n[t]),u++);t!==u&&(n.length=u)}const jt=[["text",Wi],["linkify",Xi],["newline",Yi],["escape",Ki],["backticks",Ji],["strikethrough",I1.tokenize],["emphasis",N1.tokenize],["link",rs],["image",ns],["autolink",ss],["html_inline",hs],["entity",ms]],Ut=[["balance_pairs",ps],["strikethrough",I1.postProcess],["emphasis",N1.postProcess],["fragments_join",bs]];function Ze(){this.ruler=new S0;for(let e=0;e<jt.length;e++)this.ruler.push(jt[e][0],jt[e][1]);this.ruler2=new S0;for(let e=0;e<Ut.length;e++)this.ruler2.push(Ut[e][0],Ut[e][1])}Ze.prototype.skipToken=function(e){const t=e.pos,u=this.ruler.getRules(""),r=u.length,n=e.md.options.maxNesting,a=e.cache;if(typeof a[t]<"u"){e.pos=a[t];return}let i=!1;if(e.level<n){for(let s=0;s<r;s++)if(e.level++,i=u[s](e,!0),e.level--,i){if(t>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}else e.pos=e.posMax;i||e.pos++,a[t]=e.pos};Ze.prototype.tokenize=function(e){const t=this.ruler.getRules(""),u=t.length,r=e.posMax,n=e.md.options.maxNesting;for(;e.pos<r;){const a=e.pos;let i=!1;if(e.level<n){for(let s=0;s<u;s++)if(i=t[s](e,!1),i){if(a>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}if(i){if(e.pos>=r)break;continue}e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()};Ze.prototype.parse=function(e,t,u,r){const n=new this.State(e,t,u,r);this.tokenize(n);const a=this.ruler2.getRules(""),i=a.length;for(let s=0;s<i;s++)a[s](n)};Ze.prototype.State=We;function vs(e){const t={};e=e||{},t.src_Any=A1.source,t.src_Cc=D1.source,t.src_Z=S1.source,t.src_P=qu.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");const u="[><|]";return t.src_pseudo_letter=`(?:(?!${u}|${t.src_ZPCc})${t.src_Any})`,t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth=`(?:(?:(?!${t.src_ZCc}|[@/\\[\\]()]).){1,50}@)?`,t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator=`(?=$|${u}|${t.src_ZPCc})(?!${e["---"]?"-(?!--)|":"-|"}_|:\\d|\\.-|\\.(?!$|${t.src_ZPCc}))`,t.src_path=`(?:[/?#](?:(?!${t.src_ZCc}|${u}|[()[\\]{}.,"'?!\\-;]).|\\[(?:(?!${t.src_ZCc}|\\]).)*\\]|\\((?:(?!${t.src_ZCc}|[)]).)*\\)|\\{(?:(?!${t.src_ZCc}|[}]).)*\\}|\\"(?:(?!${t.src_ZCc}|["]).)+\\"|\\'(?:(?!${t.src_ZCc}|[']).)+\\'|\\'(?=${t.src_pseudo_letter}|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!${t.src_ZCc}|[.]|$)|`+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+`,(?!${t.src_ZCc}|$)|;(?!${t.src_ZCc}|$)|\\!+(?!${t.src_ZCc}|[!]|$)|\\?(?!${t.src_ZCc}|[?]|$))+|\\/)?`,t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]{0,63}',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+`|${t.src_pseudo_letter}{1,63})`,t.src_domain="(?:"+t.src_xn+`|(?:${t.src_pseudo_letter})|(?:${t.src_pseudo_letter}(?:-|${t.src_pseudo_letter}){0,61}${t.src_pseudo_letter}))`,t.src_host=`(?:(?:(?:(?:${t.src_domain})\\.)*${t.src_domain}))`,t.tpl_host_fuzzy="(?:"+t.src_ip4+`|(?:(?:(?:${t.src_domain})\\.)+(?:%TLDS%)))`,t.tpl_host_no_ip_fuzzy=`(?:(?:(?:${t.src_domain})\\.)+(?:%TLDS%))`,t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test=`localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:${t.src_ZPCc}|>|$))`,t.tpl_email_fuzzy=`(^|${u}|"|\\(|${t.src_ZCc})(${t.src_email_name}@${t.tpl_host_fuzzy_strict})`,t.tpl_link_fuzzy=`(^|(?![.:/\\-_@])(?:[$+<=>^\`||]|${t.src_ZPCc}))((?![$+<=>^\`||])${t.tpl_host_port_fuzzy_strict}${t.src_path})`,t.tpl_link_no_ip_fuzzy=`(^|(?![.:/\\-_@])(?:[$+<=>^\`||]|${t.src_ZPCc}))((?![$+<=>^\`||])${t.tpl_host_port_no_ip_fuzzy_strict}${t.src_path})`,t}function du(e){return Array.prototype.slice.call(arguments,1).forEach(function(u){u&&Object.keys(u).forEach(function(r){e[r]=u[r]})}),e}function St(e){return Object.prototype.toString.call(e)}function gs(e){return St(e)==="[object String]"}function xs(e){return St(e)==="[object Object]"}function ys(e){return St(e)==="[object RegExp]"}function Sr(e){return St(e)==="[object Function]"}function ws(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}const O1={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};function ks(e){return Object.keys(e||{}).reduce(function(t,u){return t||O1.hasOwnProperty(u)},!1)}const As={"http:":{validate:function(e,t,u){const r=e.slice(t);return u.re.http||(u.re.http=new RegExp(`^\\/\\/${u.re.src_auth}${u.re.src_host_port_strict}${u.re.src_path}`,"i")),u.re.http.test(r)?r.match(u.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,u){const r=e.slice(t);return u.re.no_http||(u.re.no_http=new RegExp("^"+u.re.src_auth+`(?:localhost|(?:(?:${u.re.src_domain})\\.)+${u.re.src_domain_root})`+u.re.src_port+u.re.src_host_terminator+u.re.src_path,"i")),u.re.no_http.test(r)?t>=3&&e[t-3]===":"||t>=3&&e[t-3]==="/"?0:r.match(u.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,u){const r=e.slice(t);return u.re.mailto||(u.re.mailto=new RegExp(`^${u.re.src_email_name}@${u.re.src_host_strict}`,"i")),u.re.mailto.test(r)?r.match(u.re.mailto)[0].length:0}}},Ds="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",Cs="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function Ss(e){return function(t,u){const r=t.slice(u);return e.test(r)?r.match(e)[0].length:0}}function Er(){return function(e,t){t.normalize(e)}}function vt(e){const t=e.re=vs(e.__opts__),u=e.__tlds__.slice();e.onCompile(),e.__tlds_replaced__||u.push(Ds),u.push(t.src_xn),t.src_tlds=u.join("|");function r(s){return s.replace("%TLDS%",t.src_tlds)}t.email_fuzzy=RegExp(r(t.tpl_email_fuzzy),"i"),t.email_fuzzy_global=RegExp(r(t.tpl_email_fuzzy),"ig"),t.link_fuzzy=RegExp(r(t.tpl_link_fuzzy),"i"),t.link_fuzzy_global=RegExp(r(t.tpl_link_fuzzy),"ig"),t.link_no_ip_fuzzy=RegExp(r(t.tpl_link_no_ip_fuzzy),"i"),t.link_no_ip_fuzzy_global=RegExp(r(t.tpl_link_no_ip_fuzzy),"ig"),t.host_fuzzy_test=RegExp(r(t.tpl_host_fuzzy_test),"i");const n=[];e.__compiled__={};function a(s,o){throw new Error(`(LinkifyIt) Invalid schema "${s}": ${o}`)}Object.keys(e.__schemas__).forEach(function(s){const o=e.__schemas__[s];if(o===null)return;const h={validate:null,link:null};if(e.__compiled__[s]=h,xs(o)){ys(o.validate)?h.validate=Ss(o.validate):Sr(o.validate)?h.validate=o.validate:a(s,o),Sr(o.normalize)?h.normalize=o.normalize:o.normalize?a(s,o):h.normalize=Er();return}if(gs(o)){n.push(s);return}a(s,o)}),n.forEach(function(s){e.__compiled__[e.__schemas__[s]]&&(e.__compiled__[s].validate=e.__compiled__[e.__schemas__[s]].validate,e.__compiled__[s].normalize=e.__compiled__[e.__schemas__[s]].normalize)}),e.__compiled__[""]={validate:null,normalize:Er()};const i=Object.keys(e.__compiled__).filter(function(s){return s.length>0&&e.__compiled__[s]}).map(ws).join("|");e.re.schema_test=RegExp(`(^|(?!_)(?:[><|]|${t.src_ZPCc}))(${i})`,"i"),e.re.schema_search=RegExp(`(^|(?!_)(?:[><|]|${t.src_ZPCc}))(${i})`,"ig"),e.re.schema_at_start=RegExp(`^${e.re.schema_search.source}`,"i"),e.re.pretest=RegExp(`(${e.re.schema_test.source})|(${e.re.host_fuzzy_test.source})|@`,"i")}function L1(e,t,u,r){const n=e.slice(u,r);this.schema=t.toLowerCase(),this.index=u,this.lastIndex=r,this.raw=n,this.text=n,this.url=n}function z0(e,t){if(!(this instanceof z0))return new z0(e,t);t||ks(e)&&(t=e,e={}),this.__opts__=du({},O1,t),this.__schemas__=du({},As,e),this.__compiled__={},this.__tlds__=Cs,this.__tlds_replaced__=!1,this.re={},vt(this)}z0.prototype.add=function(t,u){return this.__schemas__[t]=u,vt(this),this};z0.prototype.set=function(t){return this.__opts__=du(this.__opts__,t),this};z0.prototype.test=function(t){if(!t.length)return!1;let u,r;if(this.re.schema_test.test(t)){for(r=this.re.schema_search,r.lastIndex=0;(u=r.exec(t))!==null;)if(this.testSchemaAt(t,u[2],r.lastIndex))return!0}return!!(this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&t.search(this.re.host_fuzzy_test)>=0&&t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy)!==null||this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&t.indexOf("@")>=0&&t.match(this.re.email_fuzzy)!==null)};z0.prototype.pretest=function(t){return this.re.pretest.test(t)};z0.prototype.testSchemaAt=function(t,u,r){return this.__compiled__[u.toLowerCase()]?this.__compiled__[u.toLowerCase()].validate(t,r,this):0};z0.prototype.match=function(t){const u=[],r=[],n=[],a=[];let i,s,o;function h(x,b){return x?b?x.index!==b.index?x.index<b.index?x:b:x.lastIndex>=b.lastIndex?x:b:x:b}if(!t.length)return null;if(this.re.schema_test.test(t))for(o=this.re.schema_search,o.lastIndex=0;(i=o.exec(t))!==null;)s=this.testSchemaAt(t,i[2],o.lastIndex),s&&r.push({schema:i[2],index:i.index+i[1].length,lastIndex:i.index+i[0].length+s});if(this.__opts__.fuzzyLink&&this.__compiled__["http:"])for(o=this.__opts__.fuzzyIP?this.re.link_fuzzy_global:this.re.link_no_ip_fuzzy_global,o.lastIndex=0;(i=o.exec(t))!==null;)n.push({schema:"",index:i.index+i[1].length,lastIndex:i.index+i[0].length});if(this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"])for(o=this.re.email_fuzzy_global,o.lastIndex=0;(i=o.exec(t))!==null;)a.push({schema:"mailto:",index:i.index+i[1].length,lastIndex:i.index+i[0].length});const f=[0,0,0];let p=0;for(;;){const x=[r[f[0]],a[f[1]],n[f[2]]],b=h(h(x[0],x[1]),x[2]);if(!b)break;if(b===x[0]?f[0]++:b===x[1]?f[1]++:f[2]++,b.index<p)continue;const y=new L1(t,b.schema,b.index,b.lastIndex);this.__compiled__[y.schema].normalize(y,this),u.push(y),p=b.lastIndex}return u.length?u:null};z0.prototype.matchAtStart=function(t){if(!t.length)return null;const u=this.re.schema_at_start.exec(t);if(!u)return null;const r=this.testSchemaAt(t,u[2],u[0].length);if(!r)return null;const n=new L1(t,u[2],u.index+u[1].length,u.index+u[0].length+r);return this.__compiled__[n.schema].normalize(n,this),n};z0.prototype.tlds=function(t,u){return t=Array.isArray(t)?t:[t],u?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(r,n,a){return r!==a[n-1]}).reverse(),vt(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,vt(this),this)};z0.prototype.normalize=function(t){t.schema||(t.url=`http://${t.url}`),t.schema==="mailto:"&&!/^mailto:/i.test(t.url)&&(t.url=`mailto:${t.url}`)};z0.prototype.onCompile=function(){};const De=2147483647,P0=36,Lu=1,He=26,Es=38,_s=700,P1=72,H1=128,$1="-",zs=/^xn--/,Fs=/[^\0-\x7F]/,Ts=/[\x2E\u3002\uFF0E\uFF61]/g,Ms={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},Gt=P0-Lu,H0=Math.floor,Vt=String.fromCharCode;function se(e){throw new RangeError(Ms[e])}function Bs(e,t){const u=[];let r=e.length;for(;r--;)u[r]=t(e[r]);return u}function j1(e,t){const u=e.split("@");let r="";u.length>1&&(r=u[0]+"@",e=u[1]),e=e.replace(Ts,".");const n=e.split("."),a=Bs(n,t).join(".");return r+a}function U1(e){const t=[];let u=0;const r=e.length;for(;u<r;){const n=e.charCodeAt(u++);if(n>=55296&&n<=56319&&u<r){const a=e.charCodeAt(u++);(a&64512)==56320?t.push(((n&1023)<<10)+(a&1023)+65536):(t.push(n),u--)}else t.push(n)}return t}const qs=e=>String.fromCodePoint(...e),Rs=function(e){return e>=48&&e<58?26+(e-48):e>=65&&e<91?e-65:e>=97&&e<123?e-97:P0},_r=function(e,t){return e+22+75*(e<26)-((t!=0)<<5)},G1=function(e,t,u){let r=0;for(e=u?H0(e/_s):e>>1,e+=H0(e/t);e>Gt*He>>1;r+=P0)e=H0(e/Gt);return H0(r+(Gt+1)*e/(e+Es))},V1=function(e){const t=[],u=e.length;let r=0,n=H1,a=P1,i=e.lastIndexOf($1);i<0&&(i=0);for(let s=0;s<i;++s)e.charCodeAt(s)>=128&&se("not-basic"),t.push(e.charCodeAt(s));for(let s=i>0?i+1:0;s<u;){const o=r;for(let f=1,p=P0;;p+=P0){s>=u&&se("invalid-input");const x=Rs(e.charCodeAt(s++));x>=P0&&se("invalid-input"),x>H0((De-r)/f)&&se("overflow"),r+=x*f;const b=p<=a?Lu:p>=a+He?He:p-a;if(x<b)break;const y=P0-b;f>H0(De/y)&&se("overflow"),f*=y}const h=t.length+1;a=G1(r-o,h,o==0),H0(r/h)>De-n&&se("overflow"),n+=H0(r/h),r%=h,t.splice(r++,0,n)}return String.fromCodePoint(...t)},W1=function(e){const t=[];e=U1(e);const u=e.length;let r=H1,n=0,a=P1;for(const o of e)o<128&&t.push(Vt(o));const i=t.length;let s=i;for(i&&t.push($1);s<u;){let o=De;for(const f of e)f>=r&&f<o&&(o=f);const h=s+1;o-r>H0((De-n)/h)&&se("overflow"),n+=(o-r)*h,r=o;for(const f of e)if(f<r&&++n>De&&se("overflow"),f===r){let p=n;for(let x=P0;;x+=P0){const b=x<=a?Lu:x>=a+He?He:x-a;if(p<b)break;const y=p-b,k=P0-b;t.push(Vt(_r(b+y%k,0))),p=H0(y/k)}t.push(Vt(_r(p,0))),a=G1(n,h,s===i),n=0,++s}++n,++r}return t.join("")},Is=function(e){return j1(e,function(t){return zs.test(t)?V1(t.slice(4).toLowerCase()):t})},Ns=function(e){return j1(e,function(t){return Fs.test(t)?"xn--"+W1(t):t})},Z1={version:"2.3.1",ucs2:{decode:U1,encode:qs},decode:V1,encode:W1,toASCII:Ns,toUnicode:Is},Os={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},Ls={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},Ps={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}},Hs={default:Os,zero:Ls,commonmark:Ps},$s=/^(vbscript|javascript|file|data):/,js=/^data:image\/(gif|png|jpeg|webp);/;function Us(e){const t=e.trim().toLowerCase();return $s.test(t)?js.test(t):!0}const X1=["http:","https:","mailto:"];function Gs(e){const t=Bu(e,!0);if(t.hostname&&(!t.protocol||X1.indexOf(t.protocol)>=0))try{t.hostname=Z1.toASCII(t.hostname)}catch{}return Ve(Mu(t))}function Vs(e){const t=Bu(e,!0);if(t.hostname&&(!t.protocol||X1.indexOf(t.protocol)>=0))try{t.hostname=Z1.toUnicode(t.hostname)}catch{}return Se(Mu(t),Se.defaultChars+"%")}function q0(e,t){if(!(this instanceof q0))return new q0(e,t);t||Ru(e)||(t=e||{},e="default"),this.inline=new Ze,this.block=new Ct,this.core=new Nu,this.renderer=new Te,this.linkify=new z0,this.validateLink=Us,this.normalizeLink=Gs,this.normalizeLinkText=Vs,this.utils=Xa,this.helpers=kt({},Qa),this.options={},this.configure(e),t&&this.set(t)}q0.prototype.set=function(e){return kt(this.options,e),this};q0.prototype.configure=function(e){const t=this;if(Ru(e)){const u=e;if(e=Hs[u],!e)throw new Error('Wrong `markdown-it` preset "'+u+'", check name')}if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach(function(u){e.components[u].rules&&t[u].ruler.enableOnly(e.components[u].rules),e.components[u].rules2&&t[u].ruler2.enableOnly(e.components[u].rules2)}),this};q0.prototype.enable=function(e,t){let u=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(n){u=u.concat(this[n].ruler.enable(e,!0))},this),u=u.concat(this.inline.ruler2.enable(e,!0));const r=e.filter(function(n){return u.indexOf(n)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this};q0.prototype.disable=function(e,t){let u=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(n){u=u.concat(this[n].ruler.disable(e,!0))},this),u=u.concat(this.inline.ruler2.disable(e,!0));const r=e.filter(function(n){return u.indexOf(n)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this};q0.prototype.use=function(e){const t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this};q0.prototype.parse=function(e,t){if(typeof e!="string")throw new Error("Input data should be a String");const u=new this.core.State(e,this,t);return this.core.process(u),u.tokens};q0.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)};q0.prototype.parseInline=function(e,t){const u=new this.core.State(e,this,t);return u.inlineMode=!0,this.core.process(u),u.tokens};q0.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)};class z extends Error{constructor(t,u){var r="KaTeX parse error: "+t,n,a,i=u&&u.loc;if(i&&i.start<=i.end){var s=i.lexer.input;n=i.start,a=i.end,n===s.length?r+=" at end of input: ":r+=" at position "+(n+1)+": ";var o=s.slice(n,a).replace(/[^]/g,"$&̲"),h;n>15?h="…"+s.slice(n-15,n):h=s.slice(0,n);var f;a+15<s.length?f=s.slice(a,a+15)+"…":f=s.slice(a),r+=h+o+f}super(r),this.name="ParseError",this.position=void 0,this.length=void 0,this.rawMessage=void 0,Object.setPrototypeOf(this,z.prototype),this.position=n,n!=null&&a!=null&&(this.length=a-n),this.rawMessage=t}}var Ws=/([A-Z])/g,Zs=e=>e.replace(Ws,"-$1").toLowerCase(),Xs={"&":"&amp;",">":"&gt;","<":"&lt;",'"':"&quot;","'":"&#x27;"},Ys=/[&><"']/g,g0=e=>String(e).replace(Ys,t=>Xs[t]),ft=e=>e.type==="ordgroup"||e.type==="color"?e.body.length===1?ft(e.body[0]):e:e.type==="font"?ft(e.body):e,Ks=new Set(["mathord","textord","atom"]),Q0=e=>Ks.has(ft(e).type),Js=e=>{var t=/^[\x00-\x20]*([^\\/#?]*?)(:|&#0*58|&#x0*3a|&colon)/i.exec(e);return t?t[2]!==":"||!/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(t[1])?null:t[1].toLowerCase():"_relative"},fu={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format <type>"},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color <color>",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro <def>",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness <size>",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size <n>",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand <n>",cliProcessor:e=>e==="Infinity"?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function Qs(e){if(typeof e!="string")return e.enum[0];switch(e){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{};default:throw new Error("Unexpected schema type; settings must declare an explicit default.")}}function el(e){if(e.default!==void 0)return e.default;var t=Array.isArray(e.type)?e.type[0]:e.type;return Qs(t)}function tl(e,t,u,r){var n=u[t];e[t]=n!==void 0?r.processor?r.processor(n):n:el(r)}class Pu{constructor(t){t===void 0&&(t={}),this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,t=t||{};for(var u of Object.keys(fu)){var r=fu[u];r&&tl(this,u,t,r)}}reportNonstrict(t,u,r){var n=this.strict;if(typeof n=="function"&&(n=n(t,u,r)),!(!n||n==="ignore")){if(n===!0||n==="error")throw new z("LaTeX-incompatible input and strict mode is set to 'error': "+(u+" ["+t+"]"),r);n==="warn"?typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(u+" ["+t+"]")):typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+n+"': "+u+" ["+t+"]"))}}useStrictBehavior(t,u,r){var n=this.strict;if(typeof n=="function")try{n=n(t,u,r)}catch{n="error"}return!n||n==="ignore"?!1:n===!0||n==="error"?!0:n==="warn"?(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(u+" ["+t+"]")),!1):(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+n+"': "+u+" ["+t+"]")),!1)}isTrusted(t){if("url"in t&&t.url&&!t.protocol){var u=Js(t.url);if(u==null)return!1;t.protocol=u}var r=typeof this.trust=="function"?this.trust(t):this.trust;return!!r}}class ae{constructor(t,u,r){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=t,this.size=u,this.cramped=r}sup(){return L0[ul[this.id]]}sub(){return L0[rl[this.id]]}fracNum(){return L0[nl[this.id]]}fracDen(){return L0[al[this.id]]}cramp(){return L0[il[this.id]]}text(){return L0[sl[this.id]]}isTight(){return this.size>=2}}var Hu=0,gt=1,Ce=2,K0=3,$e=4,B0=5,_e=6,k0=7,L0=[new ae(Hu,0,!1),new ae(gt,0,!0),new ae(Ce,1,!1),new ae(K0,1,!0),new ae($e,2,!1),new ae(B0,2,!0),new ae(_e,3,!1),new ae(k0,3,!0)],ul=[$e,B0,$e,B0,_e,k0,_e,k0],rl=[B0,B0,B0,B0,k0,k0,k0,k0],nl=[Ce,K0,$e,B0,_e,k0,_e,k0],al=[K0,K0,B0,B0,k0,k0,k0,k0],il=[gt,gt,K0,K0,B0,B0,k0,k0],sl=[Hu,gt,Ce,K0,Ce,K0,Ce,K0],j={DISPLAY:L0[Hu],TEXT:L0[Ce],SCRIPT:L0[$e],SCRIPTSCRIPT:L0[_e]},mu=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];function ll(e){for(var t=0;t<mu.length;t++)for(var u=mu[t],r=0;r<u.blocks.length;r++){var n=u.blocks[r];if(e>=n[0]&&e<=n[1])return u.name}return null}var mt=[];mu.forEach(e=>e.blocks.forEach(t=>mt.push(...t)));function Y1(e){for(var t=0;t<mt.length;t+=2)if(e>=mt[t]&&e<=mt[t+1])return!0;return!1}var m0=e=>e+" "+e,Ae=80,ol=function(t,u){return"M95,"+(622+t+u)+`
14
+ `;break}return r};Te.prototype.render=function(e,t,u){let r="";const n=this.rules;for(let a=0,i=e.length;a<i;a++){const s=e[a].type;s==="inline"?r+=this.renderInline(e[a].children,t,u):typeof n[s]<"u"?r+=n[s](e,a,t,u,this):r+=this.renderToken(e,a,t,u)}return r};function D0(){this.__rules__=[],this.__cache__=null}D0.prototype.__find__=function(e){for(let t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1};D0.prototype.__compile__=function(){const e=this,t=[""];e.__rules__.forEach(function(u){u.enabled&&u.alt.forEach(function(r){t.indexOf(r)<0&&t.push(r)})}),e.__cache__={},t.forEach(function(u){e.__cache__[u]=[],e.__rules__.forEach(function(r){r.enabled&&(u&&r.alt.indexOf(u)<0||e.__cache__[u].push(r.fn))})})};D0.prototype.at=function(e,t,u){const r=this.__find__(e),n=u||{};if(r===-1)throw new Error("Parser rule not found: "+e);this.__rules__[r].fn=t,this.__rules__[r].alt=n.alt||[],this.__cache__=null};D0.prototype.before=function(e,t,u,r){const n=this.__find__(e),a=r||{};if(n===-1)throw new Error("Parser rule not found: "+e);this.__rules__.splice(n,0,{name:t,enabled:!0,fn:u,alt:a.alt||[]}),this.__cache__=null};D0.prototype.after=function(e,t,u,r){const n=this.__find__(e),a=r||{};if(n===-1)throw new Error("Parser rule not found: "+e);this.__rules__.splice(n+1,0,{name:t,enabled:!0,fn:u,alt:a.alt||[]}),this.__cache__=null};D0.prototype.push=function(e,t,u){const r=u||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:r.alt||[]}),this.__cache__=null};D0.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);const u=[];return e.forEach(function(r){const n=this.__find__(r);if(n<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[n].enabled=!0,u.push(r)},this),this.__cache__=null,u};D0.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach(function(u){u.enabled=!1}),this.enable(e,t)};D0.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);const u=[];return e.forEach(function(r){const n=this.__find__(r);if(n<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[n].enabled=!1,u.push(r)},this),this.__cache__=null,u};D0.prototype.getRules=function(e){return this.__cache__===null&&this.__compile__(),this.__cache__[e]||[]};function O0(e,t,u){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=u,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}O0.prototype.attrIndex=function(t){if(!this.attrs)return-1;const u=this.attrs;for(let r=0,n=u.length;r<n;r++)if(u[r][0]===t)return r;return-1};O0.prototype.attrPush=function(t){this.attrs?this.attrs.push(t):this.attrs=[t]};O0.prototype.attrSet=function(t,u){const r=this.attrIndex(t),n=[t,u];r<0?this.attrPush(n):this.attrs[r]=n};O0.prototype.attrGet=function(t){const u=this.attrIndex(t);let r=null;return u>=0&&(r=this.attrs[u][1]),r};O0.prototype.attrJoin=function(t,u){const r=this.attrIndex(t);r<0?this.attrPush([t,u]):this.attrs[r][1]=this.attrs[r][1]+" "+u};function q1(e,t,u){this.src=e,this.env=u,this.tokens=[],this.inlineMode=!1,this.md=t}q1.prototype.Token=O0;const ri=/\r\n?|\n/g,ni=/\0/g;function ai(e){let t;t=e.src.replace(ri,`
15
+ `),t=t.replace(ni,"�"),e.src=t}function ii(e){let t;e.inlineMode?(t=new e.Token("inline","",0),t.content=e.src,t.map=[0,1],t.children=[],e.tokens.push(t)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}function si(e){const t=e.tokens;for(let u=0,r=t.length;u<r;u++){const n=t[u];n.type==="inline"&&e.md.inline.parse(n.content,e.md,e.env,n.children)}}function li(e){return/^<a[>\s]/i.test(e)}function oi(e){return/^<\/a\s*>/i.test(e)}function ci(e){const t=e.tokens;if(e.md.options.linkify)for(let u=0,r=t.length;u<r;u++){if(t[u].type!=="inline"||!e.md.linkify.pretest(t[u].content))continue;let n=t[u].children,a=0;for(let i=n.length-1;i>=0;i--){const s=n[i];if(s.type==="link_close"){for(i--;n[i].level!==s.level&&n[i].type!=="link_open";)i--;continue}if(s.type==="html_inline"&&(li(s.content)&&a>0&&a--,oi(s.content)&&a++),!(a>0)&&s.type==="text"&&e.md.linkify.test(s.content)){const o=s.content;let h=e.md.linkify.match(o);const f=[];let p=s.level,x=0;h.length>0&&h[0].index===0&&i>0&&n[i-1].type==="text_special"&&(h=h.slice(1));for(let b=0;b<h.length;b++){const y=h[b].url,k=e.md.normalizeLink(y);if(!e.md.validateLink(k))continue;let A=h[b].text;h[b].schema?h[b].schema==="mailto:"&&!/^mailto:/i.test(A)?A=e.md.normalizeLinkText("mailto:"+A).replace(/^mailto:/,""):A=e.md.normalizeLinkText(A):A=e.md.normalizeLinkText("http://"+A).replace(/^http:\/\//,"");const D=h[b].index;if(D>x){const B=new e.Token("text","",0);B.content=o.slice(x,D),B.level=p,f.push(B)}const S=new e.Token("link_open","a",1);S.attrs=[["href",k]],S.level=p++,S.markup="linkify",S.info="auto",f.push(S);const _=new e.Token("text","",0);_.content=A,_.level=p,f.push(_);const T=new e.Token("link_close","a",-1);T.level=--p,T.markup="linkify",T.info="auto",f.push(T),x=h[b].lastIndex}if(x<o.length){const b=new e.Token("text","",0);b.content=o.slice(x),b.level=p,f.push(b)}t[u].children=n=T1(n,i,f)}}}}const R1=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,hi=/\((c|tm|r)\)/i,di=/\((c|tm|r)\)/ig,fi={c:"©",r:"®",tm:"™"};function mi(e,t){return fi[t.toLowerCase()]}function pi(e){let t=0;for(let u=e.length-1;u>=0;u--){const r=e[u];r.type==="text"&&!t&&(r.content=r.content.replace(di,mi)),r.type==="link_open"&&r.info==="auto"&&t--,r.type==="link_close"&&r.info==="auto"&&t++}}function bi(e){let t=0;for(let u=e.length-1;u>=0;u--){const r=e[u];r.type==="text"&&!t&&R1.test(r.content)&&(r.content=r.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/mg,"$1—").replace(/(^|\s)--(?=\s|$)/mg,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/mg,"$1–")),r.type==="link_open"&&r.info==="auto"&&t--,r.type==="link_close"&&r.info==="auto"&&t++}}function vi(e){let t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)e.tokens[t].type==="inline"&&(hi.test(e.tokens[t].content)&&pi(e.tokens[t].children),R1.test(e.tokens[t].content)&&bi(e.tokens[t].children))}const gi=/['"]/,xr=/['"]/g,yr="’";function at(e,t,u,r){e[t]||(e[t]=[]),e[t].push({pos:u,ch:r})}function xi(e,t){let u="",r=0;t.sort((n,a)=>n.pos-a.pos);for(let n=0;n<t.length;n++){const a=t[n];u+=e.slice(r,a.pos)+a.ch,r=a.pos+1}return u+e.slice(r)}function yi(e,t){let u;const r=[],n={};for(let a=0;a<e.length;a++){const i=e[a],s=e[a].level;for(u=r.length-1;u>=0&&!(r[u].level<=s);u--);if(r.length=u+1,i.type!=="text")continue;const o=i.content;let h=0;const f=o.length;e:for(;h<f;){xr.lastIndex=h;const p=xr.exec(o);if(!p)break;let x=!0,b=!0;h=p.index+1;const y=p[0]==="'";let k=32;if(p.index-1>=0)k=o.charCodeAt(p.index-1);else for(u=a-1;u>=0&&!(e[u].type==="softbreak"||e[u].type==="hardbreak");u--)if(e[u].content){k=e[u].content.charCodeAt(e[u].content.length-1);break}let A=32;if(h<f)A=o.charCodeAt(h);else for(u=a+1;u<e.length&&!(e[u].type==="softbreak"||e[u].type==="hardbreak");u++)if(e[u].content){A=e[u].content.charCodeAt(0);break}const D=He(k)||Pe(k),S=He(A)||Pe(A),_=Le(k),T=Le(A);if(T?x=!1:S&&(_||D||(x=!1)),_?b=!1:D&&(T||S||(b=!1)),A===34&&p[0]==='"'&&k>=48&&k<=57&&(b=x=!1),x&&b&&(x=D,b=S),!x&&!b){y&&at(n,a,p.index,yr);continue}if(b)for(u=r.length-1;u>=0;u--){let B=r[u];if(r[u].level<s)break;if(B.single===y&&r[u].level===s){B=r[u];let q,L;y?(q=t.md.options.quotes[2],L=t.md.options.quotes[3]):(q=t.md.options.quotes[0],L=t.md.options.quotes[1]),at(n,a,p.index,L),at(n,B.token,B.pos,q),r.length=u;continue e}}x?r.push({token:a,pos:p.index,single:y,level:s}):b&&y&&at(n,a,p.index,yr)}}Object.keys(n).forEach(function(a){e[a].content=xi(e[a].content,n[a])})}function wi(e){if(e.md.options.typographer)for(let t=e.tokens.length-1;t>=0;t--)e.tokens[t].type!=="inline"||!gi.test(e.tokens[t].content)||yi(e.tokens[t].children,e)}function ki(e){let t,u;const r=e.tokens,n=r.length;for(let a=0;a<n;a++){if(r[a].type!=="inline")continue;const i=r[a].children,s=i.length;for(t=0;t<s;t++)i[t].type==="text_special"&&(i[t].type="text");for(t=u=0;t<s;t++)i[t].type==="text"&&t+1<s&&i[t+1].type==="text"?i[t+1].content=i[t].content+i[t+1].content:(t!==u&&(i[u]=i[t]),u++);t!==u&&(i.length=u)}}const jt=[["normalize",ai],["block",ii],["inline",si],["linkify",ci],["replacements",vi],["smartquotes",wi],["text_join",ki]];function Lu(){this.ruler=new D0;for(let e=0;e<jt.length;e++)this.ruler.push(jt[e][0],jt[e][1])}Lu.prototype.process=function(e){const t=this.ruler.getRules("");for(let u=0,r=t.length;u<r;u++)t[u](e)};Lu.prototype.State=q1;function G0(e,t,u,r){this.src=e,this.md=t,this.env=u,this.tokens=r,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0;const n=this.src;for(let a=0,i=0,s=0,o=0,h=n.length,f=!1;i<h;i++){const p=n.charCodeAt(i);if(!f)if(Q(p)){s++,p===9?o+=4-o%4:o++;continue}else f=!0;(p===10||i===h-1)&&(p!==10&&i++,this.bMarks.push(a),this.eMarks.push(i),this.tShift.push(s),this.sCount.push(o),this.bsCount.push(0),f=!1,s=0,o=0,a=i+1)}this.bMarks.push(n.length),this.eMarks.push(n.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}G0.prototype.push=function(e,t,u){const r=new O0(e,t,u);return r.block=!0,u<0&&this.level--,r.level=this.level,u>0&&this.level++,this.tokens.push(r),r};G0.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]};G0.prototype.skipEmptyLines=function(t){for(let u=this.lineMax;t<u&&!(this.bMarks[t]+this.tShift[t]<this.eMarks[t]);t++);return t};G0.prototype.skipSpaces=function(t){for(let u=this.src.length;t<u;t++){const r=this.src.charCodeAt(t);if(!Q(r))break}return t};G0.prototype.skipSpacesBack=function(t,u){if(t<=u)return t;for(;t>u;)if(!Q(this.src.charCodeAt(--t)))return t+1;return t};G0.prototype.skipChars=function(t,u){for(let r=this.src.length;t<r&&this.src.charCodeAt(t)===u;t++);return t};G0.prototype.skipCharsBack=function(t,u,r){if(t<=r)return t;for(;t>r;)if(u!==this.src.charCodeAt(--t))return t+1;return t};G0.prototype.getLines=function(t,u,r,n){if(t>=u)return"";const a=new Array(u-t);for(let i=0,s=t;s<u;s++,i++){let o=0;const h=this.bMarks[s];let f=h,p;for(s+1<u||n?p=this.eMarks[s]+1:p=this.eMarks[s];f<p&&o<r;){const x=this.src.charCodeAt(f);if(Q(x))x===9?o+=4-(o+this.bsCount[s])%4:o++;else if(f-h<this.tShift[s])o++;else break;f++}o>r?a[i]=new Array(o-r+1).join(" ")+this.src.slice(f,p):a[i]=this.src.slice(f,p)}return a.join("")};G0.prototype.Token=O0;const Ai=65536;function Ut(e,t){const u=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.slice(u,r)}function wr(e){const t=[],u=e.length;let r=0,n=e.charCodeAt(r),a=!1,i=0,s="";for(;r<u;)n===124&&(a?(s+=e.substring(i,r-1),i=r):(t.push(s+e.substring(i,r)),s="",i=r+1)),a=n===92,r++,n=e.charCodeAt(r);return t.push(s+e.substring(i)),t}function Ci(e,t,u,r){if(t+2>u)return!1;let n=t+1;if(e.sCount[n]<e.blkIndent||e.sCount[n]-e.blkIndent>=4)return!1;let a=e.bMarks[n]+e.tShift[n];if(a>=e.eMarks[n])return!1;const i=e.src.charCodeAt(a++);if(i!==124&&i!==45&&i!==58||a>=e.eMarks[n])return!1;const s=e.src.charCodeAt(a++);if(s!==124&&s!==45&&s!==58&&!Q(s)||i===45&&Q(s))return!1;for(;a<e.eMarks[n];){const T=e.src.charCodeAt(a);if(T!==124&&T!==45&&T!==58&&!Q(T))return!1;a++}let o=Ut(e,t+1),h=o.split("|");const f=[];for(let T=0;T<h.length;T++){const B=h[T].trim();if(!B){if(T===0||T===h.length-1)continue;return!1}if(!/^:?-+:?$/.test(B))return!1;B.charCodeAt(B.length-1)===58?f.push(B.charCodeAt(0)===58?"center":"right"):B.charCodeAt(0)===58?f.push("left"):f.push("")}if(o=Ut(e,t).trim(),o.indexOf("|")===-1||e.sCount[t]-e.blkIndent>=4)return!1;h=wr(o),h.length&&h[0]===""&&h.shift(),h.length&&h[h.length-1]===""&&h.pop();const p=h.length;if(p===0||p!==f.length)return!1;if(r)return!0;const x=e.parentType;e.parentType="table";const b=e.md.block.ruler.getRules("blockquote"),y=e.push("table_open","table",1),k=[t,0];y.map=k;const A=e.push("thead_open","thead",1);A.map=[t,t+1];const D=e.push("tr_open","tr",1);D.map=[t,t+1];for(let T=0;T<h.length;T++){const B=e.push("th_open","th",1);f[T]&&(B.attrs=[["style","text-align:"+f[T]]]);const q=e.push("inline","",0);q.content=h[T].trim(),q.children=[],e.push("th_close","th",-1)}e.push("tr_close","tr",-1),e.push("thead_close","thead",-1);let S,_=0;for(n=t+2;n<u&&!(e.sCount[n]<e.blkIndent);n++){let T=!1;for(let q=0,L=b.length;q<L;q++)if(b[q](e,n,u,!0)){T=!0;break}if(T||(o=Ut(e,n).trim(),!o)||e.sCount[n]-e.blkIndent>=4||(h=wr(o),h.length&&h[0]===""&&h.shift(),h.length&&h[h.length-1]===""&&h.pop(),_+=p-h.length,_>Ai))break;if(n===t+2){const q=e.push("tbody_open","tbody",1);q.map=S=[t+2,0]}const B=e.push("tr_open","tr",1);B.map=[n,n+1];for(let q=0;q<p;q++){const L=e.push("td_open","td",1);f[q]&&(L.attrs=[["style","text-align:"+f[q]]]);const $=e.push("inline","",0);$.content=h[q]?h[q].trim():"",$.children=[],e.push("td_close","td",-1)}e.push("tr_close","tr",-1)}return S&&(e.push("tbody_close","tbody",-1),S[1]=n),e.push("table_close","table",-1),k[1]=n,e.parentType=x,e.line=n,!0}function Di(e,t,u){if(e.sCount[t]-e.blkIndent<4)return!1;let r=t+1,n=r;for(;r<u;){if(e.isEmpty(r)){r++;continue}if(e.sCount[r]-e.blkIndent>=4){r++,n=r;continue}break}e.line=n;const a=e.push("code_block","code",0);return a.content=e.getLines(t,n,4+e.blkIndent,!1)+`
16
+ `,a.map=[t,e.line],!0}function Si(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4||n+3>a)return!1;const i=e.src.charCodeAt(n);if(i!==126&&i!==96)return!1;let s=n;n=e.skipChars(n,i);let o=n-s;if(o<3)return!1;const h=e.src.slice(s,n),f=e.src.slice(n,a);if(i===96&&f.indexOf(String.fromCharCode(i))>=0)return!1;if(r)return!0;let p=t,x=!1;for(;p++,!(p>=u||(n=s=e.bMarks[p]+e.tShift[p],a=e.eMarks[p],n<a&&e.sCount[p]<e.blkIndent));)if(e.src.charCodeAt(n)===i&&!(e.sCount[p]-e.blkIndent>=4)&&(n=e.skipChars(n,i),!(n-s<o)&&(n=e.skipSpaces(n),!(n<a)))){x=!0;break}o=e.sCount[t],e.line=p+(x?1:0);const b=e.push("fence","code",0);return b.info=f,b.content=e.getLines(t+1,p,o,!0),b.markup=h,b.map=[t,e.line],!0}function Ei(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];const i=e.lineMax;if(e.sCount[t]-e.blkIndent>=4||e.src.charCodeAt(n)!==62)return!1;if(r)return!0;const s=[],o=[],h=[],f=[],p=e.md.block.ruler.getRules("blockquote"),x=e.parentType;e.parentType="blockquote";let b=!1,y;for(y=t;y<u;y++){const _=e.sCount[y]<e.blkIndent;if(n=e.bMarks[y]+e.tShift[y],a=e.eMarks[y],n>=a)break;if(e.src.charCodeAt(n++)===62&&!_){let B=e.sCount[y]+1,q,L;e.src.charCodeAt(n)===32?(n++,B++,L=!1,q=!0):e.src.charCodeAt(n)===9?(q=!0,(e.bsCount[y]+B)%4===3?(n++,B++,L=!1):L=!0):q=!1;let $=B;for(s.push(e.bMarks[y]),e.bMarks[y]=n;n<a;){const U=e.src.charCodeAt(n);if(Q(U))U===9?$+=4-($+e.bsCount[y]+(L?1:0))%4:$++;else break;n++}b=n>=a,o.push(e.bsCount[y]),e.bsCount[y]=e.sCount[y]+1+(q?1:0),h.push(e.sCount[y]),e.sCount[y]=$-B,f.push(e.tShift[y]),e.tShift[y]=n-e.bMarks[y];continue}if(b)break;let T=!1;for(let B=0,q=p.length;B<q;B++)if(p[B](e,y,u,!0)){T=!0;break}if(T){e.lineMax=y,e.blkIndent!==0&&(s.push(e.bMarks[y]),o.push(e.bsCount[y]),f.push(e.tShift[y]),h.push(e.sCount[y]),e.sCount[y]-=e.blkIndent);break}s.push(e.bMarks[y]),o.push(e.bsCount[y]),f.push(e.tShift[y]),h.push(e.sCount[y]),e.sCount[y]=-1}const k=e.blkIndent;e.blkIndent=0;const A=e.push("blockquote_open","blockquote",1);A.markup=">";const D=[t,0];A.map=D,e.md.block.tokenize(e,t,y);const S=e.push("blockquote_close","blockquote",-1);S.markup=">",e.lineMax=i,e.parentType=x,D[1]=e.line;for(let _=0;_<f.length;_++)e.bMarks[_+t]=s[_],e.tShift[_+t]=f[_],e.sCount[_+t]=h[_],e.bsCount[_+t]=o[_];return e.blkIndent=k,!0}function _i(e,t,u,r){const n=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;let a=e.bMarks[t]+e.tShift[t];const i=e.src.charCodeAt(a++);if(i!==42&&i!==45&&i!==95)return!1;let s=1;for(;a<n;){const h=e.src.charCodeAt(a++);if(h!==i&&!Q(h))return!1;h===i&&s++}if(s<3)return!1;if(r)return!0;e.line=t+1;const o=e.push("hr","hr",0);return o.map=[t,e.line],o.markup=Array(s+1).join(String.fromCharCode(i)),!0}function kr(e,t){const u=e.eMarks[t];let r=e.bMarks[t]+e.tShift[t];const n=e.src.charCodeAt(r++);if(n!==42&&n!==45&&n!==43)return-1;if(r<u){const a=e.src.charCodeAt(r);if(!Q(a))return-1}return r}function Ar(e,t){const u=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];let n=u;if(n+1>=r)return-1;let a=e.src.charCodeAt(n++);if(a<48||a>57)return-1;for(;;){if(n>=r)return-1;if(a=e.src.charCodeAt(n++),a>=48&&a<=57){if(n-u>=10)return-1;continue}if(a===41||a===46)break;return-1}return n<r&&(a=e.src.charCodeAt(n),!Q(a))?-1:n}function zi(e,t){const u=e.level+2;for(let r=t+2,n=e.tokens.length-2;r<n;r++)e.tokens[r].level===u&&e.tokens[r].type==="paragraph_open"&&(e.tokens[r+2].hidden=!0,e.tokens[r].hidden=!0,r+=2)}function Fi(e,t,u,r){let n,a,i,s,o=t,h=!0;if(e.sCount[o]-e.blkIndent>=4||e.listIndent>=0&&e.sCount[o]-e.listIndent>=4&&e.sCount[o]<e.blkIndent)return!1;let f=!1;r&&e.parentType==="paragraph"&&e.sCount[o]>=e.blkIndent&&(f=!0);let p,x,b;if((b=Ar(e,o))>=0){if(p=!0,i=e.bMarks[o]+e.tShift[o],x=Number(e.src.slice(i,b-1)),f&&x!==1)return!1}else if((b=kr(e,o))>=0)p=!1;else return!1;if(f&&e.skipSpaces(b)>=e.eMarks[o])return!1;if(r)return!0;const y=e.src.charCodeAt(b-1),k=e.tokens.length;p?(s=e.push("ordered_list_open","ol",1),x!==1&&(s.attrs=[["start",x]])):s=e.push("bullet_list_open","ul",1);const A=[o,0];s.map=A,s.markup=String.fromCharCode(y);let D=!1;const S=e.md.block.ruler.getRules("list"),_=e.parentType;for(e.parentType="list";o<u;){a=b,n=e.eMarks[o];const T=e.sCount[o]+b-(e.bMarks[o]+e.tShift[o]);let B=T;for(;a<n;){const l0=e.src.charCodeAt(a);if(l0===9)B+=4-(B+e.bsCount[o])%4;else if(l0===32)B++;else break;a++}const q=a;let L;q>=n?L=1:L=B-T,L>4&&(L=1);const $=T+L;s=e.push("list_item_open","li",1),s.markup=String.fromCharCode(y);const U=[o,0];s.map=U,p&&(s.info=e.src.slice(i,b-1));const i0=e.tight,r0=e.tShift[o],K=e.sCount[o],X0=e.listIndent;if(e.listIndent=e.blkIndent,e.blkIndent=$,e.tight=!0,e.tShift[o]=q-e.bMarks[o],e.sCount[o]=B,q>=n&&e.isEmpty(o+1)?e.line=Math.min(e.line+2,u):e.md.block.tokenize(e,o,u,!0),(!e.tight||D)&&(h=!1),D=e.line-o>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=X0,e.tShift[o]=r0,e.sCount[o]=K,e.tight=i0,s=e.push("list_item_close","li",-1),s.markup=String.fromCharCode(y),o=e.line,U[1]=o,o>=u||e.sCount[o]<e.blkIndent||e.sCount[o]-e.blkIndent>=4)break;let x0=!1;for(let l0=0,T0=S.length;l0<T0;l0++)if(S[l0](e,o,u,!0)){x0=!0;break}if(x0)break;if(p){if(b=Ar(e,o),b<0)break;i=e.bMarks[o]+e.tShift[o]}else if(b=kr(e,o),b<0)break;if(y!==e.src.charCodeAt(b-1))break}return p?s=e.push("ordered_list_close","ol",-1):s=e.push("bullet_list_close","ul",-1),s.markup=String.fromCharCode(y),A[1]=o,e.line=o,e.parentType=_,h&&zi(e,k),!0}function Ti(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t],i=t+1;if(e.sCount[t]-e.blkIndent>=4||e.src.charCodeAt(n)!==91)return!1;function s(S){const _=e.lineMax;if(S>=_||e.isEmpty(S))return null;let T=!1;if(e.sCount[S]-e.blkIndent>3&&(T=!0),e.sCount[S]<0&&(T=!0),!T){const L=e.md.block.ruler.getRules("reference"),$=e.parentType;e.parentType="reference";let U=!1;for(let i0=0,r0=L.length;i0<r0;i0++)if(L[i0](e,S,_,!0)){U=!0;break}if(e.parentType=$,U)return null}const B=e.bMarks[S]+e.tShift[S],q=e.eMarks[S];return e.src.slice(B,q+1)}let o=e.src.slice(n,a+1);a=o.length;let h=-1;for(n=1;n<a;n++){const S=o.charCodeAt(n);if(S===91)return!1;if(S===93){h=n;break}else if(S===10){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}else if(S===92&&(n++,n<a&&o.charCodeAt(n)===10)){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}}if(h<0||o.charCodeAt(h+1)!==58)return!1;for(n=h+2;n<a;n++){const S=o.charCodeAt(n);if(S===10){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}else if(!Q(S))break}const f=e.md.helpers.parseLinkDestination(o,n,a);if(!f.ok)return!1;const p=e.md.normalizeLink(f.str);if(!e.md.validateLink(p))return!1;n=f.pos;const x=n,b=i,y=n;for(;n<a;n++){const S=o.charCodeAt(n);if(S===10){const _=s(i);_!==null&&(o+=_,a=o.length,i++)}else if(!Q(S))break}let k=e.md.helpers.parseLinkTitle(o,n,a);for(;k.can_continue;){const S=s(i);if(S===null)break;o+=S,n=a,a=o.length,i++,k=e.md.helpers.parseLinkTitle(o,n,a,k)}let A;for(n<a&&y!==n&&k.ok?(A=k.str,n=k.pos):(A="",n=x,i=b);n<a;){const S=o.charCodeAt(n);if(!Q(S))break;n++}if(n<a&&o.charCodeAt(n)!==10&&A)for(A="",n=x,i=b;n<a;){const S=o.charCodeAt(n);if(!Q(S))break;n++}if(n<a&&o.charCodeAt(n)!==10)return!1;const D=St(o.slice(1,h));return D?(r||(typeof e.env.references>"u"&&(e.env.references={}),typeof e.env.references[D]>"u"&&(e.env.references[D]={title:A,href:p}),e.line=i),!0):!1}const Mi=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],Bi="[a-zA-Z_:][a-zA-Z0-9:._-]*",qi="[^\"'=<>`\\x00-\\x20]+",Ri="'[^']*'",Ii='"[^"]*"',Ni="(?:"+qi+"|"+Ri+"|"+Ii+")",Oi="(?:\\s+"+Bi+"(?:\\s*=\\s*"+Ni+")?)",I1="<[A-Za-z][A-Za-z0-9\\-]*"+Oi+"*\\s*\\/?>",N1="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",Li="<!---?>|<!--(?:[^-]|-[^-]|--[^>])*-->",Pi="<[?][\\s\\S]*?[?]>",Hi="<![A-Za-z][^>]*>",$i="<!\\[CDATA\\[[\\s\\S]*?\\]\\]>",ji=new RegExp("^(?:"+I1+"|"+N1+"|"+Li+"|"+Pi+"|"+Hi+"|"+$i+")"),Ui=new RegExp("^(?:"+I1+"|"+N1+")"),ve=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+Mi.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(Ui.source+"\\s*$"),/^$/,!1]];function Gi(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4||!e.md.options.html||e.src.charCodeAt(n)!==60)return!1;let i=e.src.slice(n,a),s=0;for(;s<ve.length&&!ve[s][0].test(i);s++);if(s===ve.length)return!1;if(r)return ve[s][2];let o=t+1;const h=ve[s][1].test("");if(!ve[s][1].test(i)){for(;o<u&&!(e.sCount[o]<e.blkIndent&&(h||!e.isEmpty(o)));o++)if(n=e.bMarks[o]+e.tShift[o],a=e.eMarks[o],i=e.src.slice(n,a),ve[s][1].test(i)){i.length!==0&&o++;break}}e.line=o;const f=e.push("html_block","",0);return f.map=[t,o],f.content=e.getLines(t,o,e.blkIndent,!0),!0}function Vi(e,t,u,r){let n=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;let i=e.src.charCodeAt(n);if(i!==35||n>=a)return!1;let s=1;for(i=e.src.charCodeAt(++n);i===35&&n<a&&s<=6;)s++,i=e.src.charCodeAt(++n);if(s>6||n<a&&!Q(i))return!1;if(r)return!0;a=e.skipSpacesBack(a,n);const o=e.skipCharsBack(a,35,n);o>n&&Q(e.src.charCodeAt(o-1))&&(a=o),e.line=t+1;const h=e.push("heading_open","h"+String(s),1);h.markup="########".slice(0,s),h.map=[t,e.line];const f=e.push("inline","",0);f.content=Et(e.src.slice(n,a)),f.map=[t,e.line],f.children=[];const p=e.push("heading_close","h"+String(s),-1);return p.markup="########".slice(0,s),!0}function Wi(e,t,u){const r=e.md.block.ruler.getRules("paragraph");if(e.sCount[t]-e.blkIndent>=4)return!1;const n=e.parentType;e.parentType="paragraph";let a=0,i,s=t+1;for(;s<u&&!e.isEmpty(s);s++){if(e.sCount[s]-e.blkIndent>3)continue;if(e.sCount[s]>=e.blkIndent){let b=e.bMarks[s]+e.tShift[s];const y=e.eMarks[s];if(b<y&&(i=e.src.charCodeAt(b),(i===45||i===61)&&(b=e.skipChars(b,i),b=e.skipSpaces(b),b>=y))){a=i===61?1:2;break}}if(e.sCount[s]<0)continue;let x=!1;for(let b=0,y=r.length;b<y;b++)if(r[b](e,s,u,!0)){x=!0;break}if(x)break}if(!a)return e.parentType=n,!1;const o=Et(e.getLines(t,s,e.blkIndent,!1));e.line=s+1;const h=e.push("heading_open","h"+String(a),1);h.markup=String.fromCharCode(i),h.map=[t,e.line];const f=e.push("inline","",0);f.content=o,f.map=[t,e.line-1],f.children=[];const p=e.push("heading_close","h"+String(a),-1);return p.markup=String.fromCharCode(i),e.parentType=n,!0}function Zi(e,t,u){const r=e.md.block.ruler.getRules("paragraph"),n=e.parentType;let a=t+1;for(e.parentType="paragraph";a<u&&!e.isEmpty(a);a++){if(e.sCount[a]-e.blkIndent>3||e.sCount[a]<0)continue;let h=!1;for(let f=0,p=r.length;f<p;f++)if(r[f](e,a,u,!0)){h=!0;break}if(h)break}const i=Et(e.getLines(t,a,e.blkIndent,!1));e.line=a;const s=e.push("paragraph_open","p",1);s.map=[t,e.line];const o=e.push("inline","",0);return o.content=i,o.map=[t,e.line],o.children=[],e.push("paragraph_close","p",-1),e.parentType=n,!0}const it=[["table",Ci,["paragraph","reference"]],["code",Di],["fence",Si,["paragraph","reference","blockquote","list"]],["blockquote",Ei,["paragraph","reference","blockquote","list"]],["hr",_i,["paragraph","reference","blockquote","list"]],["list",Fi,["paragraph","reference","blockquote"]],["reference",Ti],["html_block",Gi,["paragraph","reference","blockquote"]],["heading",Vi,["paragraph","reference","blockquote"]],["lheading",Wi],["paragraph",Zi]];function _t(){this.ruler=new D0;for(let e=0;e<it.length;e++)this.ruler.push(it[e][0],it[e][1],{alt:(it[e][2]||[]).slice()})}_t.prototype.tokenize=function(e,t,u){const r=this.ruler.getRules(""),n=r.length,a=e.md.options.maxNesting;let i=t,s=!1;for(;i<u&&(e.line=i=e.skipEmptyLines(i),!(i>=u||e.sCount[i]<e.blkIndent));){if(e.level>=a){e.line=u;break}const o=e.line;let h=!1;for(let f=0;f<n;f++)if(h=r[f](e,i,u,!1),h){if(o>=e.line)throw new Error("block rule didn't increment state.line");break}if(!h)throw new Error("none of the block rules matched");e.tight=!s,e.isEmpty(e.line-1)&&(s=!0),i=e.line,i<u&&e.isEmpty(i)&&(s=!0,i++,e.line=i)}};_t.prototype.parse=function(e,t,u,r){if(!e)return;const n=new this.State(e,t,u,r);this.tokenize(n,n.line,n.lineMax)};_t.prototype.State=G0;function Ze(e,t,u,r){this.src=e,this.env=u,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}Ze.prototype.pushPending=function(){const e=new O0("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e};Ze.prototype.push=function(e,t,u){this.pending&&this.pushPending();const r=new O0(e,t,u);let n=null;return u<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),r.level=this.level,u>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],n={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(r),this.tokens_meta.push(n),r};Ze.prototype.scanDelims=function(e,t){const u=this.posMax,r=this.src.charCodeAt(e);let n;if(e===0)n=32;else if(e===1)n=this.src.charCodeAt(0),(n&63488)===55296&&(n=65533);else if(n=this.src.charCodeAt(e-1),(n&64512)===56320){const A=this.src.charCodeAt(e-2);n=(A&64512)===55296?65536+(A-55296<<10)+(n-56320):65533}else(n&64512)===55296&&(n=65533);let a=e;for(;a<u&&this.src.charCodeAt(a)===r;)a++;const i=a-e;let s=a<u?this.src.charCodeAt(a):32;if((s&64512)===55296){const A=this.src.charCodeAt(a+1);s=(A&64512)===56320?65536+(s-55296<<10)+(A-56320):65533}else(s&64512)===56320&&(s=65533);const o=He(n)||Pe(n),h=He(s)||Pe(s),f=Le(n),p=Le(s),x=!p&&(!h||f||o),b=!f&&(!o||p||h);return{can_open:x&&(t||!b||o),can_close:b&&(t||!x||h),length:i}};Ze.prototype.Token=O0;function Xi(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}function Yi(e,t){let u=e.pos;for(;u<e.posMax&&!Xi(e.src.charCodeAt(u));)u++;return u===e.pos?!1:(t||(e.pending+=e.src.slice(e.pos,u)),e.pos=u,!0)}const Ki=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i;function Ji(e,t){if(!e.md.options.linkify||e.linkLevel>0)return!1;const u=e.pos,r=e.posMax;if(u+3>r||e.src.charCodeAt(u)!==58||e.src.charCodeAt(u+1)!==47||e.src.charCodeAt(u+2)!==47)return!1;const n=e.pending.match(Ki);if(!n)return!1;const a=n[1],i=e.md.linkify.matchAtStart(e.src.slice(u-a.length));if(!i)return!1;let s=i.url;if(s.length<=a.length)return!1;let o=s.length;for(;o>0&&s.charCodeAt(o-1)===42;)o--;o!==s.length&&(s=s.slice(0,o));const h=e.md.normalizeLink(s);if(!e.md.validateLink(h))return!1;if(!t){e.pending=e.pending.slice(0,-a.length);const f=e.push("link_open","a",1);f.attrs=[["href",h]],f.markup="linkify",f.info="auto";const p=e.push("text","",0);p.content=e.md.normalizeLinkText(s);const x=e.push("link_close","a",-1);x.markup="linkify",x.info="auto"}return e.pos+=s.length-a.length,!0}function Qi(e,t){let u=e.pos;if(e.src.charCodeAt(u)!==10)return!1;const r=e.pending.length-1,n=e.posMax;if(!t)if(r>=0&&e.pending.charCodeAt(r)===32)if(r>=1&&e.pending.charCodeAt(r-1)===32){let a=r-1;for(;a>=1&&e.pending.charCodeAt(a-1)===32;)a--;e.pending=e.pending.slice(0,a),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);for(u++;u<n&&Q(e.src.charCodeAt(u));)u++;return e.pos=u,!0}const Pu=[];for(let e=0;e<256;e++)Pu.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(e){Pu[e.charCodeAt(0)]=1});function es(e,t){let u=e.pos;const r=e.posMax;if(e.src.charCodeAt(u)!==92||(u++,u>=r))return!1;let n=e.src.charCodeAt(u);if(n===10){for(t||e.push("hardbreak","br",0),u++;u<r&&(n=e.src.charCodeAt(u),!!Q(n));)u++;return e.pos=u,!0}if(n===32){if(!t){const s=e.push("text_special","",0);s.content="\\",s.markup="\\",s.info="escape"}return e.pos=u,!0}let a=e.src[u];if(n>=55296&&n<=56319&&u+1<r){const s=e.src.charCodeAt(u+1);s>=56320&&s<=57343&&(a+=e.src[u+1],u++)}const i="\\"+a;if(!t){const s=e.push("text_special","",0);n<256&&Pu[n]!==0?s.content=a:s.content=i,s.markup=i,s.info="escape"}return e.pos=u+1,!0}function ts(e,t){let u=e.pos;if(e.src.charCodeAt(u)!==96)return!1;const n=u;u++;const a=e.posMax;for(;u<a&&e.src.charCodeAt(u)===96;)u++;const i=e.src.slice(n,u),s=i.length;if(e.backticksScanned&&(e.backticks[s]||0)<=n)return t||(e.pending+=i),e.pos+=s,!0;let o=u,h;for(;(h=e.src.indexOf("`",o))!==-1;){for(o=h+1;o<a&&e.src.charCodeAt(o)===96;)o++;const f=o-h;if(f===s){if(!t){const p=e.push("code_inline","code",0);p.markup=i,p.content=e.src.slice(u,h).replace(/\n/g," ").replace(/^ (.+) $/,"$1")}return e.pos=o,!0}e.backticks[f]=h}return e.backticksScanned=!0,t||(e.pending+=i),e.pos+=s,!0}function us(e,t){const u=e.pos,r=e.src.charCodeAt(u);if(t||r!==126)return!1;const n=e.scanDelims(e.pos,!0);let a=n.length;const i=String.fromCharCode(r);if(a<2)return!1;let s;a%2&&(s=e.push("text","",0),s.content=i,a--);for(let o=0;o<a;o+=2)s=e.push("text","",0),s.content=i+i,e.delimiters.push({marker:r,length:0,token:e.tokens.length-1,end:-1,open:n.can_open,close:n.can_close});return e.pos+=n.length,!0}function Cr(e,t){let u;const r=[],n=t.length;for(let a=0;a<n;a++){const i=t[a];if(i.marker!==126||i.end===-1)continue;const s=t[i.end];u=e.tokens[i.token],u.type="s_open",u.tag="s",u.nesting=1,u.markup="~~",u.content="",u=e.tokens[s.token],u.type="s_close",u.tag="s",u.nesting=-1,u.markup="~~",u.content="",e.tokens[s.token-1].type==="text"&&e.tokens[s.token-1].content==="~"&&r.push(s.token-1)}for(;r.length;){const a=r.pop();let i=a+1;for(;i<e.tokens.length&&e.tokens[i].type==="s_close";)i++;i--,a!==i&&(u=e.tokens[i],e.tokens[i]=e.tokens[a],e.tokens[a]=u)}}function rs(e){const t=e.tokens_meta,u=e.tokens_meta.length;Cr(e,e.delimiters);for(let r=0;r<u;r++)t[r]&&t[r].delimiters&&Cr(e,t[r].delimiters)}const O1={tokenize:us,postProcess:rs};function ns(e,t){const u=e.pos,r=e.src.charCodeAt(u);if(t||r!==95&&r!==42)return!1;const n=e.scanDelims(e.pos,r===42);for(let a=0;a<n.length;a++){const i=e.push("text","",0);i.content=String.fromCharCode(r),e.delimiters.push({marker:r,length:n.length,token:e.tokens.length-1,end:-1,open:n.can_open,close:n.can_close})}return e.pos+=n.length,!0}function Dr(e,t){const u=t.length;for(let r=u-1;r>=0;r--){const n=t[r];if(n.marker!==95&&n.marker!==42||n.end===-1)continue;const a=t[n.end],i=r>0&&t[r-1].end===n.end+1&&t[r-1].marker===n.marker&&t[r-1].token===n.token-1&&t[n.end+1].token===a.token+1,s=String.fromCharCode(n.marker),o=e.tokens[n.token];o.type=i?"strong_open":"em_open",o.tag=i?"strong":"em",o.nesting=1,o.markup=i?s+s:s,o.content="";const h=e.tokens[a.token];h.type=i?"strong_close":"em_close",h.tag=i?"strong":"em",h.nesting=-1,h.markup=i?s+s:s,h.content="",i&&(e.tokens[t[r-1].token].content="",e.tokens[t[n.end+1].token].content="",r--)}}function as(e){const t=e.tokens_meta,u=e.tokens_meta.length;Dr(e,e.delimiters);for(let r=0;r<u;r++)t[r]&&t[r].delimiters&&Dr(e,t[r].delimiters)}const L1={tokenize:ns,postProcess:as};function is(e,t){let u,r,n,a,i="",s="",o=e.pos,h=!0;if(e.src.charCodeAt(e.pos)!==91)return!1;const f=e.pos,p=e.posMax,x=e.pos+1,b=e.md.helpers.parseLinkLabel(e,e.pos,!0);if(b<0)return!1;let y=b+1;if(y<p&&e.src.charCodeAt(y)===40){for(h=!1,y++;y<p&&(u=e.src.charCodeAt(y),!(!Q(u)&&u!==10));y++);if(y>=p)return!1;if(o=y,n=e.md.helpers.parseLinkDestination(e.src,y,e.posMax),n.ok){for(i=e.md.normalizeLink(n.str),e.md.validateLink(i)?y=n.pos:i="",o=y;y<p&&(u=e.src.charCodeAt(y),!(!Q(u)&&u!==10));y++);if(n=e.md.helpers.parseLinkTitle(e.src,y,e.posMax),y<p&&o!==y&&n.ok)for(s=n.str,y=n.pos;y<p&&(u=e.src.charCodeAt(y),!(!Q(u)&&u!==10));y++);}(y>=p||e.src.charCodeAt(y)!==41)&&(h=!0),y++}if(h){if(typeof e.env.references>"u")return!1;if(y<p&&e.src.charCodeAt(y)===91?(o=y+1,y=e.md.helpers.parseLinkLabel(e,y),y>=0?r=e.src.slice(o,y++):y=b+1):y=b+1,r||(r=e.src.slice(x,b)),a=e.env.references[St(r)],!a)return e.pos=f,!1;i=a.href,s=a.title}if(!t){e.pos=x,e.posMax=b;const k=e.push("link_open","a",1),A=[["href",i]];k.attrs=A,s&&A.push(["title",s]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)}return e.pos=y,e.posMax=p,!0}function ss(e,t){let u,r,n,a,i,s,o,h,f="";const p=e.pos,x=e.posMax;if(e.src.charCodeAt(e.pos)!==33||e.src.charCodeAt(e.pos+1)!==91)return!1;const b=e.pos+2,y=e.md.helpers.parseLinkLabel(e,e.pos+1,!1);if(y<0)return!1;if(a=y+1,a<x&&e.src.charCodeAt(a)===40){for(a++;a<x&&(u=e.src.charCodeAt(a),!(!Q(u)&&u!==10));a++);if(a>=x)return!1;for(h=a,s=e.md.helpers.parseLinkDestination(e.src,a,e.posMax),s.ok&&(f=e.md.normalizeLink(s.str),e.md.validateLink(f)?a=s.pos:f=""),h=a;a<x&&(u=e.src.charCodeAt(a),!(!Q(u)&&u!==10));a++);if(s=e.md.helpers.parseLinkTitle(e.src,a,e.posMax),a<x&&h!==a&&s.ok)for(o=s.str,a=s.pos;a<x&&(u=e.src.charCodeAt(a),!(!Q(u)&&u!==10));a++);else o="";if(a>=x||e.src.charCodeAt(a)!==41)return e.pos=p,!1;a++}else{if(typeof e.env.references>"u")return!1;if(a<x&&e.src.charCodeAt(a)===91?(h=a+1,a=e.md.helpers.parseLinkLabel(e,a),a>=0?n=e.src.slice(h,a++):a=y+1):a=y+1,n||(n=e.src.slice(b,y)),i=e.env.references[St(n)],!i)return e.pos=p,!1;f=i.href,o=i.title}if(!t){r=e.src.slice(b,y);const k=[];e.md.inline.parse(r,e.md,e.env,k);const A=e.push("image","img",0),D=[["src",f],["alt",""]];A.attrs=D,A.children=k,A.content=r,o&&D.push(["title",o])}return e.pos=a,e.posMax=x,!0}const ls=/^([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,os=/^([a-zA-Z][a-zA-Z0-9+.-]{1,31}):([^<>\x00-\x20]*)$/;function cs(e,t){let u=e.pos;if(e.src.charCodeAt(u)!==60)return!1;const r=e.pos,n=e.posMax;for(;;){if(++u>=n)return!1;const i=e.src.charCodeAt(u);if(i===60)return!1;if(i===62)break}const a=e.src.slice(r+1,u);if(os.test(a)){const i=e.md.normalizeLink(a);if(!e.md.validateLink(i))return!1;if(!t){const s=e.push("link_open","a",1);s.attrs=[["href",i]],s.markup="autolink",s.info="auto";const o=e.push("text","",0);o.content=e.md.normalizeLinkText(a);const h=e.push("link_close","a",-1);h.markup="autolink",h.info="auto"}return e.pos+=a.length+2,!0}if(ls.test(a)){const i=e.md.normalizeLink("mailto:"+a);if(!e.md.validateLink(i))return!1;if(!t){const s=e.push("link_open","a",1);s.attrs=[["href",i]],s.markup="autolink",s.info="auto";const o=e.push("text","",0);o.content=e.md.normalizeLinkText(a);const h=e.push("link_close","a",-1);h.markup="autolink",h.info="auto"}return e.pos+=a.length+2,!0}return!1}function hs(e){return/^<a[>\s]/i.test(e)}function ds(e){return/^<\/a\s*>/i.test(e)}function fs(e){const t=e|32;return t>=97&&t<=122}function ms(e,t){if(!e.md.options.html)return!1;const u=e.posMax,r=e.pos;if(e.src.charCodeAt(r)!==60||r+2>=u)return!1;const n=e.src.charCodeAt(r+1);if(n!==33&&n!==63&&n!==47&&!fs(n))return!1;const a=e.src.slice(r).match(ji);if(!a)return!1;if(!t){const i=e.push("html_inline","",0);i.content=a[0],hs(i.content)&&e.linkLevel++,ds(i.content)&&e.linkLevel--}return e.pos+=a[0].length,!0}const ps=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,bs=/^&([a-z][a-z0-9]{1,31});/i;function vs(e,t){const u=e.pos,r=e.posMax;if(e.src.charCodeAt(u)!==38||u+1>=r)return!1;if(e.src.charCodeAt(u+1)===35){const a=e.src.slice(u).match(ps);if(a){if(!t){const i=a[1][0].toLowerCase()==="x"?parseInt(a[1].slice(1),16):parseInt(a[1],10),s=e.push("text_special","",0);s.content=Ou(i)?Oe(i):Oe(65533),s.markup=a[0],s.info="entity"}return e.pos+=a[0].length,!0}}else{const a=e.src.slice(u).match(bs);if(a){const i=Ia(a[0]);if(i!==a[0]){if(!t){const s=e.push("text_special","",0);s.content=i,s.markup=a[0],s.info="entity"}return e.pos+=a[0].length,!0}}}return!1}function Sr(e){const t={},u=e.length;if(!u)return;let r=0,n=-2;const a=[];for(let i=0;i<u;i++){const s=e[i];if(a.push(0),(e[r].marker!==s.marker||n!==s.token-1)&&(r=i),n=s.token,s.length=s.length||0,!s.close)continue;t.hasOwnProperty(s.marker)||(t[s.marker]=[-1,-1,-1,-1,-1,-1]);const o=t[s.marker][(s.open?3:0)+s.length%3];let h=r-a[r]-1,f=h;for(;h>o;h-=a[h]+1){const p=e[h];if(p.marker===s.marker&&p.open&&p.end<0){let x=!1;if((p.close||s.open)&&(p.length+s.length)%3===0&&(p.length%3!==0||s.length%3!==0)&&(x=!0),!x){const b=h>0&&!e[h-1].open?a[h-1]+1:0;a[i]=i-h+b,a[h]=b,s.open=!1,p.end=i,p.close=!1,f=-1,n=-2;break}}}f!==-1&&(t[s.marker][(s.open?3:0)+(s.length||0)%3]=f)}}function gs(e){const t=e.tokens_meta,u=e.tokens_meta.length;Sr(e.delimiters);for(let r=0;r<u;r++)t[r]&&t[r].delimiters&&Sr(t[r].delimiters)}function xs(e){let t,u,r=0;const n=e.tokens,a=e.tokens.length;for(t=u=0;t<a;t++)n[t].nesting<0&&r--,n[t].level=r,n[t].nesting>0&&r++,n[t].type==="text"&&t+1<a&&n[t+1].type==="text"?n[t+1].content=n[t].content+n[t+1].content:(t!==u&&(n[u]=n[t]),u++);t!==u&&(n.length=u)}const Gt=[["text",Yi],["linkify",Ji],["newline",Qi],["escape",es],["backticks",ts],["strikethrough",O1.tokenize],["emphasis",L1.tokenize],["link",is],["image",ss],["autolink",cs],["html_inline",ms],["entity",vs]],Vt=[["balance_pairs",gs],["strikethrough",O1.postProcess],["emphasis",L1.postProcess],["fragments_join",xs]];function Xe(){this.ruler=new D0;for(let e=0;e<Gt.length;e++)this.ruler.push(Gt[e][0],Gt[e][1]);this.ruler2=new D0;for(let e=0;e<Vt.length;e++)this.ruler2.push(Vt[e][0],Vt[e][1])}Xe.prototype.skipToken=function(e){const t=e.pos,u=this.ruler.getRules(""),r=u.length,n=e.md.options.maxNesting,a=e.cache;if(typeof a[t]<"u"){e.pos=a[t];return}let i=!1;if(e.level<n){for(let s=0;s<r;s++)if(e.level++,i=u[s](e,!0),e.level--,i){if(t>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}else e.pos=e.posMax;i||e.pos++,a[t]=e.pos};Xe.prototype.tokenize=function(e){const t=this.ruler.getRules(""),u=t.length,r=e.posMax,n=e.md.options.maxNesting;for(;e.pos<r;){const a=e.pos;let i=!1;if(e.level<n){for(let s=0;s<u;s++)if(i=t[s](e,!1),i){if(a>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}if(i){if(e.pos>=r)break;continue}e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()};Xe.prototype.parse=function(e,t,u,r){const n=new this.State(e,t,u,r);this.tokenize(n);const a=this.ruler2.getRules(""),i=a.length;for(let s=0;s<i;s++)a[s](n)};Xe.prototype.State=Ze;function ys(e){const t={};e=e||{},t.src_Any=D1.source,t.src_Cc=S1.source,t.src_Z=_1.source,t.src_P=Iu.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");const u="[><|]";return t.src_pseudo_letter=`(?:(?!${u}|${t.src_ZPCc})${t.src_Any})`,t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth=`(?:(?:(?!${t.src_ZCc}|[@/\\[\\]()]).){1,50}@)?`,t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator=`(?=$|${u}|${t.src_ZPCc})(?!${e["---"]?"-(?!--)|":"-|"}_|:\\d|\\.-|\\.(?!$|${t.src_ZPCc}))`,t.src_path=`(?:[/?#](?:(?!${t.src_ZCc}|${u}|[()[\\]{}.,"'?!\\-;]).|\\[(?:(?!${t.src_ZCc}|\\]).)*\\]|\\((?:(?!${t.src_ZCc}|[)]).)*\\)|\\{(?:(?!${t.src_ZCc}|[}]).)*\\}|\\"(?:(?!${t.src_ZCc}|["]).)+\\"|\\'(?:(?!${t.src_ZCc}|[']).)+\\'|\\'(?=${t.src_pseudo_letter}|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!${t.src_ZCc}|[.]|$)|`+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+`,(?!${t.src_ZCc}|$)|;(?!${t.src_ZCc}|$)|\\!+(?!${t.src_ZCc}|[!]|$)|\\?(?!${t.src_ZCc}|[?]|$))+|\\/)?`,t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]{0,63}',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+`|${t.src_pseudo_letter}{1,63})`,t.src_domain="(?:"+t.src_xn+`|(?:${t.src_pseudo_letter})|(?:${t.src_pseudo_letter}(?:-|${t.src_pseudo_letter}){0,61}${t.src_pseudo_letter}))`,t.src_host=`(?:(?:(?:(?:${t.src_domain})\\.)*${t.src_domain}))`,t.tpl_host_fuzzy="(?:"+t.src_ip4+`|(?:(?:(?:${t.src_domain})\\.)+(?:%TLDS%)))`,t.tpl_host_no_ip_fuzzy=`(?:(?:(?:${t.src_domain})\\.)+(?:%TLDS%))`,t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test=`localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:${t.src_ZPCc}|>|$))`,t.tpl_email_fuzzy=`(^|${u}|"|\\(|${t.src_ZCc})(${t.src_email_name}@${t.tpl_host_fuzzy_strict})`,t.tpl_link_fuzzy=`(^|(?![.:/\\-_@])(?:[$+<=>^\`||]|${t.src_ZPCc}))((?![$+<=>^\`||])${t.tpl_host_port_fuzzy_strict}${t.src_path})`,t.tpl_link_no_ip_fuzzy=`(^|(?![.:/\\-_@])(?:[$+<=>^\`||]|${t.src_ZPCc}))((?![$+<=>^\`||])${t.tpl_host_port_no_ip_fuzzy_strict}${t.src_path})`,t}function mu(e){return Array.prototype.slice.call(arguments,1).forEach(function(u){u&&Object.keys(u).forEach(function(r){e[r]=u[r]})}),e}function zt(e){return Object.prototype.toString.call(e)}function ws(e){return zt(e)==="[object String]"}function ks(e){return zt(e)==="[object Object]"}function As(e){return zt(e)==="[object RegExp]"}function Er(e){return zt(e)==="[object Function]"}function Cs(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}const P1={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};function Ds(e){return Object.keys(e||{}).reduce(function(t,u){return t||P1.hasOwnProperty(u)},!1)}const Ss={"http:":{validate:function(e,t,u){const r=e.slice(t);return u.re.http||(u.re.http=new RegExp(`^\\/\\/${u.re.src_auth}${u.re.src_host_port_strict}${u.re.src_path}`,"i")),u.re.http.test(r)?r.match(u.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,u){const r=e.slice(t);return u.re.no_http||(u.re.no_http=new RegExp("^"+u.re.src_auth+`(?:localhost|(?:(?:${u.re.src_domain})\\.)+${u.re.src_domain_root})`+u.re.src_port+u.re.src_host_terminator+u.re.src_path,"i")),u.re.no_http.test(r)?t>=3&&e[t-3]===":"||t>=3&&e[t-3]==="/"?0:r.match(u.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,u){const r=e.slice(t);return u.re.mailto||(u.re.mailto=new RegExp(`^${u.re.src_email_name}@${u.re.src_host_strict}`,"i")),u.re.mailto.test(r)?r.match(u.re.mailto)[0].length:0}}},Es="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",_s="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function zs(e){return function(t,u){const r=t.slice(u);return e.test(r)?r.match(e)[0].length:0}}function _r(){return function(e,t){t.normalize(e)}}function yt(e){const t=e.re=ys(e.__opts__),u=e.__tlds__.slice();e.onCompile(),e.__tlds_replaced__||u.push(Es),u.push(t.src_xn),t.src_tlds=u.join("|");function r(s){return s.replace("%TLDS%",t.src_tlds)}t.email_fuzzy=RegExp(r(t.tpl_email_fuzzy),"i"),t.email_fuzzy_global=RegExp(r(t.tpl_email_fuzzy),"ig"),t.link_fuzzy=RegExp(r(t.tpl_link_fuzzy),"i"),t.link_fuzzy_global=RegExp(r(t.tpl_link_fuzzy),"ig"),t.link_no_ip_fuzzy=RegExp(r(t.tpl_link_no_ip_fuzzy),"i"),t.link_no_ip_fuzzy_global=RegExp(r(t.tpl_link_no_ip_fuzzy),"ig"),t.host_fuzzy_test=RegExp(r(t.tpl_host_fuzzy_test),"i");const n=[];e.__compiled__={};function a(s,o){throw new Error(`(LinkifyIt) Invalid schema "${s}": ${o}`)}Object.keys(e.__schemas__).forEach(function(s){const o=e.__schemas__[s];if(o===null)return;const h={validate:null,link:null};if(e.__compiled__[s]=h,ks(o)){As(o.validate)?h.validate=zs(o.validate):Er(o.validate)?h.validate=o.validate:a(s,o),Er(o.normalize)?h.normalize=o.normalize:o.normalize?a(s,o):h.normalize=_r();return}if(ws(o)){n.push(s);return}a(s,o)}),n.forEach(function(s){e.__compiled__[e.__schemas__[s]]&&(e.__compiled__[s].validate=e.__compiled__[e.__schemas__[s]].validate,e.__compiled__[s].normalize=e.__compiled__[e.__schemas__[s]].normalize)}),e.__compiled__[""]={validate:null,normalize:_r()};const i=Object.keys(e.__compiled__).filter(function(s){return s.length>0&&e.__compiled__[s]}).map(Cs).join("|");e.re.schema_test=RegExp(`(^|(?!_)(?:[><|]|${t.src_ZPCc}))(${i})`,"i"),e.re.schema_search=RegExp(`(^|(?!_)(?:[><|]|${t.src_ZPCc}))(${i})`,"ig"),e.re.schema_at_start=RegExp(`^${e.re.schema_search.source}`,"i"),e.re.pretest=RegExp(`(${e.re.schema_test.source})|(${e.re.host_fuzzy_test.source})|@`,"i")}function H1(e,t,u,r){const n=e.slice(u,r);this.schema=t.toLowerCase(),this.index=u,this.lastIndex=r,this.raw=n,this.text=n,this.url=n}function E0(e,t){if(!(this instanceof E0))return new E0(e,t);t||Ds(e)&&(t=e,e={}),this.__opts__=mu({},P1,t),this.__schemas__=mu({},Ss,e),this.__compiled__={},this.__tlds__=_s,this.__tlds_replaced__=!1,this.re={},yt(this)}E0.prototype.add=function(t,u){return this.__schemas__[t]=u,yt(this),this};E0.prototype.set=function(t){return this.__opts__=mu(this.__opts__,t),this};E0.prototype.test=function(t){if(!t.length)return!1;let u,r;if(this.re.schema_test.test(t)){for(r=this.re.schema_search,r.lastIndex=0;(u=r.exec(t))!==null;)if(this.testSchemaAt(t,u[2],r.lastIndex))return!0}return!!(this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&t.search(this.re.host_fuzzy_test)>=0&&t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy)!==null||this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&t.indexOf("@")>=0&&t.match(this.re.email_fuzzy)!==null)};E0.prototype.pretest=function(t){return this.re.pretest.test(t)};E0.prototype.testSchemaAt=function(t,u,r){return this.__compiled__[u.toLowerCase()]?this.__compiled__[u.toLowerCase()].validate(t,r,this):0};E0.prototype.match=function(t){const u=[],r=[],n=[],a=[];let i,s,o;function h(x,b){return x?b?x.index!==b.index?x.index<b.index?x:b:x.lastIndex>=b.lastIndex?x:b:x:b}if(!t.length)return null;if(this.re.schema_test.test(t))for(o=this.re.schema_search,o.lastIndex=0;(i=o.exec(t))!==null;)s=this.testSchemaAt(t,i[2],o.lastIndex),s&&r.push({schema:i[2],index:i.index+i[1].length,lastIndex:i.index+i[0].length+s});if(this.__opts__.fuzzyLink&&this.__compiled__["http:"])for(o=this.__opts__.fuzzyIP?this.re.link_fuzzy_global:this.re.link_no_ip_fuzzy_global,o.lastIndex=0;(i=o.exec(t))!==null;)n.push({schema:"",index:i.index+i[1].length,lastIndex:i.index+i[0].length});if(this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"])for(o=this.re.email_fuzzy_global,o.lastIndex=0;(i=o.exec(t))!==null;)a.push({schema:"mailto:",index:i.index+i[1].length,lastIndex:i.index+i[0].length});const f=[0,0,0];let p=0;for(;;){const x=[r[f[0]],a[f[1]],n[f[2]]],b=h(h(x[0],x[1]),x[2]);if(!b)break;if(b===x[0]?f[0]++:b===x[1]?f[1]++:f[2]++,b.index<p)continue;const y=new H1(t,b.schema,b.index,b.lastIndex);this.__compiled__[y.schema].normalize(y,this),u.push(y),p=b.lastIndex}return u.length?u:null};E0.prototype.matchAtStart=function(t){if(!t.length)return null;const u=this.re.schema_at_start.exec(t);if(!u)return null;const r=this.testSchemaAt(t,u[2],u[0].length);if(!r)return null;const n=new H1(t,u[2],u.index+u[1].length,u.index+u[0].length+r);return this.__compiled__[n.schema].normalize(n,this),n};E0.prototype.tlds=function(t,u){return t=Array.isArray(t)?t:[t],u?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(r,n,a){return r!==a[n-1]}).reverse(),yt(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,yt(this),this)};E0.prototype.normalize=function(t){t.schema||(t.url=`http://${t.url}`),t.schema==="mailto:"&&!/^mailto:/i.test(t.url)&&(t.url=`mailto:${t.url}`)};E0.prototype.onCompile=function(){};const Ce=2147483647,H0=36,Hu=1,$e=26,Fs=38,Ts=700,$1=72,j1=128,U1="-",Ms=/^xn--/,Bs=/[^\0-\x7F]/,qs=/[\x2E\u3002\uFF0E\uFF61]/g,Rs={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},Wt=H0-Hu,$0=Math.floor,Zt=String.fromCharCode;function le(e){throw new RangeError(Rs[e])}function Is(e,t){const u=[];let r=e.length;for(;r--;)u[r]=t(e[r]);return u}function G1(e,t){const u=e.split("@");let r="";u.length>1&&(r=u[0]+"@",e=u[1]),e=e.replace(qs,".");const n=e.split("."),a=Is(n,t).join(".");return r+a}function V1(e){const t=[];let u=0;const r=e.length;for(;u<r;){const n=e.charCodeAt(u++);if(n>=55296&&n<=56319&&u<r){const a=e.charCodeAt(u++);(a&64512)==56320?t.push(((n&1023)<<10)+(a&1023)+65536):(t.push(n),u--)}else t.push(n)}return t}const Ns=e=>String.fromCodePoint(...e),Os=function(e){return e>=48&&e<58?26+(e-48):e>=65&&e<91?e-65:e>=97&&e<123?e-97:H0},zr=function(e,t){return e+22+75*(e<26)-((t!=0)<<5)},W1=function(e,t,u){let r=0;for(e=u?$0(e/Ts):e>>1,e+=$0(e/t);e>Wt*$e>>1;r+=H0)e=$0(e/Wt);return $0(r+(Wt+1)*e/(e+Fs))},Z1=function(e){const t=[],u=e.length;let r=0,n=j1,a=$1,i=e.lastIndexOf(U1);i<0&&(i=0);for(let s=0;s<i;++s)e.charCodeAt(s)>=128&&le("not-basic"),t.push(e.charCodeAt(s));for(let s=i>0?i+1:0;s<u;){const o=r;for(let f=1,p=H0;;p+=H0){s>=u&&le("invalid-input");const x=Os(e.charCodeAt(s++));x>=H0&&le("invalid-input"),x>$0((Ce-r)/f)&&le("overflow"),r+=x*f;const b=p<=a?Hu:p>=a+$e?$e:p-a;if(x<b)break;const y=H0-b;f>$0(Ce/y)&&le("overflow"),f*=y}const h=t.length+1;a=W1(r-o,h,o==0),$0(r/h)>Ce-n&&le("overflow"),n+=$0(r/h),r%=h,t.splice(r++,0,n)}return String.fromCodePoint(...t)},X1=function(e){const t=[];e=V1(e);const u=e.length;let r=j1,n=0,a=$1;for(const o of e)o<128&&t.push(Zt(o));const i=t.length;let s=i;for(i&&t.push(U1);s<u;){let o=Ce;for(const f of e)f>=r&&f<o&&(o=f);const h=s+1;o-r>$0((Ce-n)/h)&&le("overflow"),n+=(o-r)*h,r=o;for(const f of e)if(f<r&&++n>Ce&&le("overflow"),f===r){let p=n;for(let x=H0;;x+=H0){const b=x<=a?Hu:x>=a+$e?$e:x-a;if(p<b)break;const y=p-b,k=H0-b;t.push(Zt(zr(b+y%k,0))),p=$0(y/k)}t.push(Zt(zr(p,0))),a=W1(n,h,s===i),n=0,++s}++n,++r}return t.join("")},Ls=function(e){return G1(e,function(t){return Ms.test(t)?Z1(t.slice(4).toLowerCase()):t})},Ps=function(e){return G1(e,function(t){return Bs.test(t)?"xn--"+X1(t):t})},Y1={version:"2.3.1",ucs2:{decode:V1,encode:Ns},decode:Z1,encode:X1,toASCII:Ps,toUnicode:Ls},Hs={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},$s={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},js={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}},Us={default:Hs,zero:$s,commonmark:js},Gs=/^(vbscript|javascript|file|data):/,Vs=/^data:image\/(gif|png|jpeg|webp);/;function Ws(e){const t=e.trim().toLowerCase();return Gs.test(t)?Vs.test(t):!0}const K1=["http:","https:","mailto:"];function Zs(e){const t=Ru(e,!0);if(t.hostname&&(!t.protocol||K1.indexOf(t.protocol)>=0))try{t.hostname=Y1.toASCII(t.hostname)}catch{}return We(qu(t))}function Xs(e){const t=Ru(e,!0);if(t.hostname&&(!t.protocol||K1.indexOf(t.protocol)>=0))try{t.hostname=Y1.toUnicode(t.hostname)}catch{}return Se(qu(t),Se.defaultChars+"%")}function R0(e,t){if(!(this instanceof R0))return new R0(e,t);t||Nu(e)||(t=e||{},e="default"),this.inline=new Xe,this.block=new _t,this.core=new Lu,this.renderer=new Te,this.linkify=new E0,this.validateLink=Ws,this.normalizeLink=Zs,this.normalizeLinkText=Xs,this.utils=Ja,this.helpers=Dt({},ui),this.options={},this.configure(e),t&&this.set(t)}R0.prototype.set=function(e){return Dt(this.options,e),this};R0.prototype.configure=function(e){const t=this;if(Nu(e)){const u=e;if(e=Us[u],!e)throw new Error('Wrong `markdown-it` preset "'+u+'", check name')}if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach(function(u){e.components[u].rules&&t[u].ruler.enableOnly(e.components[u].rules),e.components[u].rules2&&t[u].ruler2.enableOnly(e.components[u].rules2)}),this};R0.prototype.enable=function(e,t){let u=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(n){u=u.concat(this[n].ruler.enable(e,!0))},this),u=u.concat(this.inline.ruler2.enable(e,!0));const r=e.filter(function(n){return u.indexOf(n)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this};R0.prototype.disable=function(e,t){let u=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(n){u=u.concat(this[n].ruler.disable(e,!0))},this),u=u.concat(this.inline.ruler2.disable(e,!0));const r=e.filter(function(n){return u.indexOf(n)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this};R0.prototype.use=function(e){const t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this};R0.prototype.parse=function(e,t){if(typeof e!="string")throw new Error("Input data should be a String");const u=new this.core.State(e,this,t);return this.core.process(u),u.tokens};R0.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)};R0.prototype.parseInline=function(e,t){const u=new this.core.State(e,this,t);return u.inlineMode=!0,this.core.process(u),u.tokens};R0.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)};class z extends Error{constructor(t,u){var r="KaTeX parse error: "+t,n,a,i=u&&u.loc;if(i&&i.start<=i.end){var s=i.lexer.input;n=i.start,a=i.end,n===s.length?r+=" at end of input: ":r+=" at position "+(n+1)+": ";var o=s.slice(n,a).replace(/[^]/g,"$&̲"),h;n>15?h="…"+s.slice(n-15,n):h=s.slice(0,n);var f;a+15<s.length?f=s.slice(a,a+15)+"…":f=s.slice(a),r+=h+o+f}super(r),this.name="ParseError",this.position=void 0,this.length=void 0,this.rawMessage=void 0,Object.setPrototypeOf(this,z.prototype),this.position=n,n!=null&&a!=null&&(this.length=a-n),this.rawMessage=t}}var Ys=/([A-Z])/g,Ks=e=>e.replace(Ys,"-$1").toLowerCase(),Js={"&":"&amp;",">":"&gt;","<":"&lt;",'"':"&quot;","'":"&#x27;"},Qs=/[&><"']/g,g0=e=>String(e).replace(Qs,t=>Js[t]),bt=e=>e.type==="ordgroup"||e.type==="color"?e.body.length===1?bt(e.body[0]):e:e.type==="font"?bt(e.body):e,el=new Set(["mathord","textord","atom"]),ue=e=>el.has(bt(e).type),tl=e=>{var t=/^[\x00-\x20]*([^\\/#?]*?)(:|&#0*58|&#x0*3a|&colon)/i.exec(e);return t?t[2]!==":"||!/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(t[1])?null:t[1].toLowerCase():"_relative"},pu={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format <type>"},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color <color>",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro <def>",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness <size>",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size <n>",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand <n>",cliProcessor:e=>e==="Infinity"?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function ul(e){if(typeof e!="string")return e.enum[0];switch(e){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{};default:throw new Error("Unexpected schema type; settings must declare an explicit default.")}}function rl(e){if(e.default!==void 0)return e.default;var t=Array.isArray(e.type)?e.type[0]:e.type;return ul(t)}function nl(e,t,u,r){var n=u[t];e[t]=n!==void 0?r.processor?r.processor(n):n:rl(r)}class $u{constructor(t){t===void 0&&(t={}),this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,t=t||{};for(var u of Object.keys(pu)){var r=pu[u];r&&nl(this,u,t,r)}}reportNonstrict(t,u,r){var n=this.strict;if(typeof n=="function"&&(n=n(t,u,r)),!(!n||n==="ignore")){if(n===!0||n==="error")throw new z("LaTeX-incompatible input and strict mode is set to 'error': "+(u+" ["+t+"]"),r);n==="warn"?typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(u+" ["+t+"]")):typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+n+"': "+u+" ["+t+"]"))}}useStrictBehavior(t,u,r){var n=this.strict;if(typeof n=="function")try{n=n(t,u,r)}catch{n="error"}return!n||n==="ignore"?!1:n===!0||n==="error"?!0:n==="warn"?(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(u+" ["+t+"]")),!1):(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+n+"': "+u+" ["+t+"]")),!1)}isTrusted(t){if("url"in t&&t.url&&!t.protocol){var u=tl(t.url);if(u==null)return!1;t.protocol=u}var r=typeof this.trust=="function"?this.trust(t):this.trust;return!!r}}class ie{constructor(t,u,r){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=t,this.size=u,this.cramped=r}sup(){return P0[al[this.id]]}sub(){return P0[il[this.id]]}fracNum(){return P0[sl[this.id]]}fracDen(){return P0[ll[this.id]]}cramp(){return P0[ol[this.id]]}text(){return P0[cl[this.id]]}isTight(){return this.size>=2}}var ju=0,wt=1,De=2,ee=3,je=4,q0=5,_e=6,k0=7,P0=[new ie(ju,0,!1),new ie(wt,0,!0),new ie(De,1,!1),new ie(ee,1,!0),new ie(je,2,!1),new ie(q0,2,!0),new ie(_e,3,!1),new ie(k0,3,!0)],al=[je,q0,je,q0,_e,k0,_e,k0],il=[q0,q0,q0,q0,k0,k0,k0,k0],sl=[De,ee,je,q0,_e,k0,_e,k0],ll=[ee,ee,q0,q0,k0,k0,k0,k0],ol=[wt,wt,ee,ee,q0,q0,k0,k0],cl=[ju,wt,De,ee,De,ee,De,ee],G={DISPLAY:P0[ju],TEXT:P0[De],SCRIPT:P0[je],SCRIPTSCRIPT:P0[_e]},bu=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];function hl(e){for(var t=0;t<bu.length;t++)for(var u=bu[t],r=0;r<u.blocks.length;r++){var n=u.blocks[r];if(e>=n[0]&&e<=n[1])return u.name}return null}var vt=[];bu.forEach(e=>e.blocks.forEach(t=>vt.push(...t)));function J1(e){for(var t=0;t<vt.length;t+=2)if(e>=vt[t]&&e<=vt[t+1])return!0;return!1}var f0=e=>e+" "+e,Ae=80,dl=function(t,u){return"M95,"+(622+t+u)+`
17
17
  c-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14
18
18
  c0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54
19
19
  c44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10
@@ -24,7 +24,7 @@ c5.3,-9.3,12,-14,20,-14
24
24
  H400000v`+(40+t)+`H845.2724
25
25
  s-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7
26
26
  c-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z
27
- M`+(834+t)+" "+u+"h400000v"+(40+t)+"h-400000z"},cl=function(t,u){return"M263,"+(601+t+u)+`c0.7,0,18,39.7,52,119
27
+ M`+(834+t)+" "+u+"h400000v"+(40+t)+"h-400000z"},fl=function(t,u){return"M263,"+(601+t+u)+`c0.7,0,18,39.7,52,119
28
28
  c34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120
29
29
  c340,-704.7,510.7,-1060.3,512,-1067
30
30
  l`+t/2.084+" -"+t+`
@@ -34,7 +34,7 @@ s-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,
34
34
  c-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1
35
35
  s-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26
36
36
  c-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z
37
- M`+(1001+t)+" "+u+"h400000v"+(40+t)+"h-400000z"},hl=function(t,u){return"M983 "+(10+t+u)+`
37
+ M`+(1001+t)+" "+u+"h400000v"+(40+t)+"h-400000z"},ml=function(t,u){return"M983 "+(10+t+u)+`
38
38
  l`+t/3.13+" -"+t+`
39
39
  c4,-6.7,10,-10,18,-10 H400000v`+(40+t)+`
40
40
  H1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7
@@ -43,7 +43,7 @@ c-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30
43
43
  c26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722
44
44
  c56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5
45
45
  c53.7,-170.3,84.5,-266.8,92.5,-289.5z
46
- M`+(1001+t)+" "+u+"h400000v"+(40+t)+"h-400000z"},dl=function(t,u){return"M424,"+(2398+t+u)+`
46
+ M`+(1001+t)+" "+u+"h400000v"+(40+t)+"h-400000z"},pl=function(t,u){return"M424,"+(2398+t+u)+`
47
47
  c-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514
48
48
  c0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20
49
49
  s-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121
@@ -53,18 +53,18 @@ v`+(40+t)+`H1014.6
53
53
  s-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185
54
54
  c-2,6,-10,9,-24,9
55
55
  c-8,0,-12,-0.7,-12,-2z M`+(1001+t)+" "+u+`
56
- h400000v`+(40+t)+"h-400000z"},fl=function(t,u){return"M473,"+(2713+t+u)+`
56
+ h400000v`+(40+t)+"h-400000z"},bl=function(t,u){return"M473,"+(2713+t+u)+`
57
57
  c339.3,-1799.3,509.3,-2700,510,-2702 l`+t/5.298+" -"+t+`
58
58
  c3.3,-7.3,9.3,-11,18,-11 H400000v`+(40+t)+`H1017.7
59
59
  s-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9
60
60
  c-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200
61
61
  c0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26
62
62
  s76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104,
63
- 606zM`+(1001+t)+" "+u+"h400000v"+(40+t)+"H1017.7z"},ml=function(t){var u=t/2;return"M400000 "+t+" H0 L"+u+" 0 l65 45 L145 "+(t-80)+" H400000z"},pl=function(t,u,r){var n=r-54-u-t;return"M702 "+(t+u)+"H400000"+(40+t)+`
63
+ 606zM`+(1001+t)+" "+u+"h400000v"+(40+t)+"H1017.7z"},vl=function(t){var u=t/2;return"M400000 "+t+" H0 L"+u+" 0 l65 45 L145 "+(t-80)+" H400000z"},gl=function(t,u,r){var n=r-54-u-t;return"M702 "+(t+u)+"H400000"+(40+t)+`
64
64
  H742v`+n+`l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1
65
65
  h-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170
66
66
  c-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667
67
- 219 661 l218 661zM702 `+u+"H400000v"+(40+t)+"H742z"},bl=function(t,u,r){u=1e3*u;var n="";switch(t){case"sqrtMain":n=ol(u,Ae);break;case"sqrtSize1":n=cl(u,Ae);break;case"sqrtSize2":n=hl(u,Ae);break;case"sqrtSize3":n=dl(u,Ae);break;case"sqrtSize4":n=fl(u,Ae);break;case"sqrtTall":n=pl(u,Ae,r)}return n},vl=function(t,u){switch(t){case"⎜":return m0("M291 0 H417 V"+u+" H291z");case"∣":return m0("M145 0 H188 V"+u+" H145z");case"∥":return m0("M145 0 H188 V"+u+" H145z")+m0("M367 0 H410 V"+u+" H367z");case"⎟":return m0("M457 0 H583 V"+u+" H457z");case"⎢":return m0("M319 0 H403 V"+u+" H319z");case"⎥":return m0("M263 0 H347 V"+u+" H263z");case"⎪":return m0("M384 0 H504 V"+u+" H384z");case"⏐":return m0("M312 0 H355 V"+u+" H312z");case"‖":return m0("M257 0 H300 V"+u+" H257z")+m0("M478 0 H521 V"+u+" H478z");default:return""}},zr={doubleleftarrow:`M262 157
67
+ 219 661 l218 661zM702 `+u+"H400000v"+(40+t)+"H742z"},xl=function(t,u,r){u=1e3*u;var n="";switch(t){case"sqrtMain":n=dl(u,Ae);break;case"sqrtSize1":n=fl(u,Ae);break;case"sqrtSize2":n=ml(u,Ae);break;case"sqrtSize3":n=pl(u,Ae);break;case"sqrtSize4":n=bl(u,Ae);break;case"sqrtTall":n=gl(u,Ae,r)}return n},yl=function(t,u){switch(t){case"⎜":return f0("M291 0 H417 V"+u+" H291z");case"∣":return f0("M145 0 H188 V"+u+" H145z");case"∥":return f0("M145 0 H188 V"+u+" H145z")+f0("M367 0 H410 V"+u+" H367z");case"⎟":return f0("M457 0 H583 V"+u+" H457z");case"⎢":return f0("M319 0 H403 V"+u+" H319z");case"⎥":return f0("M263 0 H347 V"+u+" H263z");case"⎪":return f0("M384 0 H504 V"+u+" H384z");case"⏐":return f0("M312 0 H355 V"+u+" H312z");case"‖":return f0("M257 0 H300 V"+u+" H257z")+f0("M478 0 H521 V"+u+" H478z");default:return""}},Fr={doubleleftarrow:`M262 157
68
68
  l10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3
69
69
  0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28
70
70
  14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5
@@ -110,10 +110,10 @@ m0 0v40h400000v-40z`,leftharpoondown:`M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9
110
110
  v40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z`,lefthook:`M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5
111
111
  -83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3
112
112
  -68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21
113
- 71.5 23h399859zM103 281v-40h399897v40z`,leftlinesegment:m0("M40 281 V428 H0 V94 H40 V241 H400000 v40z"),leftbracketunder:m0("M0 0 h120 V290 H399995 v120 H0z"),leftbracketover:m0("M0 440 h120 V150 H399995 v-120 H0z"),leftmapsto:m0("M40 281 V448H0V74H40V241H400000v40z"),leftToFrom:`M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23
113
+ 71.5 23h399859zM103 281v-40h399897v40z`,leftlinesegment:f0("M40 281 V428 H0 V94 H40 V241 H400000 v40z"),leftbracketunder:f0("M0 0 h120 V290 H399995 v120 H0z"),leftbracketover:f0("M0 440 h120 V150 H399995 v-120 H0z"),leftmapsto:f0("M40 281 V448H0V74H40V241H400000v40z"),leftToFrom:`M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23
114
114
  -.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8
115
115
  c28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3
116
- 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z`,longequal:m0("M0 50 h400000 v40H0z m0 194h40000v40H0z"),midbrace:`M200428 334
116
+ 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z`,longequal:f0("M0 50 h400000 v40H0z m0 194h40000v40H0z"),midbrace:`M200428 334
117
117
  c-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14
118
118
  -53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7
119
119
  311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11
@@ -162,7 +162,7 @@ m0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z`,rightharpoondown
162
162
  m0-194v40h400000v-40zm0 0v40h400000v-40z`,righthook:`M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3
163
163
  15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0
164
164
  -13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21
165
- 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z`,rightlinesegment:m0("M399960 241 V94 h40 V428 h-40 V281 H0 v-40z"),rightbracketunder:m0("M399995 0 h-120 V290 H0 v120 H400000z"),rightbracketover:m0("M399995 440 h-120 V150 H0 v-120 H399995z"),rightToFrom:`M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23
165
+ 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z`,rightlinesegment:f0("M399960 241 V94 h40 V428 h-40 V281 H0 v-40z"),rightbracketunder:f0("M399995 0 h-120 V290 H0 v120 H400000z"),rightbracketover:f0("M399995 440 h-120 V150 H0 v-120 H399995z"),rightToFrom:`M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23
166
166
  1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32
167
167
  -52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142
168
168
  -167z M100 147v40h399900v-40zM0 341v40h399900v-40z`,twoheadleftarrow:`M0 167c68 40
@@ -235,7 +235,7 @@ M93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z`
235
235
  c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,
236
236
  -231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6
237
237
  c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z
238
- M500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z`},gl=function(t,u){switch(t){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+u+` v1759 v84 h347 v-84
238
+ M500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z`},wl=function(t,u){switch(t){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+u+` v1759 v84 h347 v-84
239
239
  H403z M403 1759 V0 H319 V1759 v`+u+" v1759 v84 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+u+` v1759 H0 v84 H347z
240
240
  M347 1759 V0 H263 V1759 v`+u+" v1759 h84z";case"vert":return"M145 15 v585 v"+u+` v585 c2.667,10,9.667,15,21,15
241
241
  c10,0,16.667,-5,20,-15 v-585 v`+-u+` v-585 c-2.667,-10,-9.667,-15,-21,-15
@@ -263,14 +263,14 @@ c-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6
263
263
  c0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17
264
264
  c242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558
265
265
  l0,-`+(u+144)+`c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7,
266
- -470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z`;default:throw new Error("Unknown stretchy delimiter.")}};function xl(e){return"toText"in e}class Me{constructor(t){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=t,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(t){return this.classes.includes(t)}toNode(){for(var t=document.createDocumentFragment(),u=0;u<this.children.length;u++)t.appendChild(this.children[u].toNode());return t}toMarkup(){for(var t="",u=0;u<this.children.length;u++)t+=this.children[u].toMarkup();return t}toText(){return this.children.map(t=>{if(xl(t))return t.toText();throw new Error("Expected MathDomNode with toText, got "+t.constructor.name)}).join("")}}var pu={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:803/800,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:803/800},yl={ex:!0,em:!0,mu:!0},K1=function(t){return typeof t!="string"&&(t=t.unit),t in pu||t in yl||t==="ex"},s0=function(t,u){var r;if(t.unit in pu)r=pu[t.unit]/u.fontMetrics().ptPerEm/u.sizeMultiplier;else if(t.unit==="mu")r=u.fontMetrics().cssEmPerMu;else{var n;if(u.style.isTight()?n=u.havingStyle(u.style.text()):n=u,t.unit==="ex")r=n.fontMetrics().xHeight;else if(t.unit==="em")r=n.fontMetrics().quad;else throw new z("Invalid unit: '"+t.unit+"'");n!==u&&(r*=n.sizeMultiplier/u.sizeMultiplier)}return Math.min(t.number*r,u.maxSize)},M=function(t){return+t.toFixed(4)+"em"},he=function(t){return t.filter(u=>u).join(" ")},$u=function(t){var u="";for(var r of Object.keys(t)){var n=t[r];n!==void 0&&(u+=Zs(r)+":"+n+";")}return u},J1=function(t,u,r){if(this.classes=t||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},u){u.style.isTight()&&this.classes.push("mtight");var n=u.getColor();n&&(this.style.color=n)}},Q1=function(t){var u=document.createElement(t);u.className=he(this.classes),Object.assign(u.style,this.style);for(var r of Object.keys(this.attributes))u.setAttribute(r,this.attributes[r]);for(var n=0;n<this.children.length;n++)u.appendChild(this.children[n].toNode());return u},wl=/[\s"'>/=\x00-\x1f]/,en=function(t){var u="<"+t;this.classes.length&&(u+=' class="'+g0(he(this.classes))+'"');var r=$u(this.style);r&&(u+=' style="'+g0(r)+'"');for(var n of Object.keys(this.attributes)){if(wl.test(n))throw new z("Invalid attribute name '"+n+"'");u+=" "+n+'="'+g0(this.attributes[n])+'"'}u+=">";for(var a=0;a<this.children.length;a++)u+=this.children[a].toMarkup();return u+="</"+t+">",u};class Be{constructor(t,u,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,this.italic=void 0,J1.call(this,t,r,n),this.children=u||[]}setAttribute(t,u){this.attributes[t]=u}hasClass(t){return this.classes.includes(t)}toNode(){return Q1.call(this,"span")}toMarkup(){return en.call(this,"span")}}class Et{constructor(t,u,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,J1.call(this,u,n),this.children=r||[],this.setAttribute("href",t)}setAttribute(t,u){this.attributes[t]=u}hasClass(t){return this.classes.includes(t)}toNode(){return Q1.call(this,"a")}toMarkup(){return en.call(this,"a")}}class kl{constructor(t,u,r){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=u,this.src=t,this.classes=["mord"],this.height=0,this.depth=0,this.maxFontSize=0,this.style=r}hasClass(t){return this.classes.includes(t)}toNode(){var t=document.createElement("img");return t.src=this.src,t.alt=this.alt,t.className="mord",Object.assign(t.style,this.style),t}toMarkup(){var t='<img src="'+g0(this.src)+'"'+(' alt="'+g0(this.alt)+'"'),u=$u(this.style);return u&&(t+=' style="'+g0(u)+'"'),t+="'/>",t}}var Al={î:"ı̂",ï:"ı̈",í:"ı́",ì:"ı̀"};class F0{constructor(t,u,r,n,a,i,s,o){this.text=void 0,this.height=void 0,this.depth=void 0,this.italic=void 0,this.skew=void 0,this.width=void 0,this.maxFontSize=void 0,this.classes=void 0,this.style=void 0,this.text=t,this.height=u||0,this.depth=r||0,this.italic=n||0,this.skew=a||0,this.width=i||0,this.classes=s||[],this.style=o||{},this.maxFontSize=0;var h=ll(this.text.charCodeAt(0));h&&this.classes.push(h+"_fallback"),/[îïíì]/.test(this.text)&&(this.text=Al[this.text])}hasClass(t){return this.classes.includes(t)}toNode(){var t=document.createTextNode(this.text),u=null;return this.italic>0&&(u=document.createElement("span"),u.style.marginRight=M(this.italic)),this.classes.length>0&&(u=u||document.createElement("span"),u.className=he(this.classes)),Object.keys(this.style).length>0&&(u=u||document.createElement("span"),Object.assign(u.style,this.style)),u?(u.appendChild(t),u):t}toMarkup(){var t=!1,u="<span";this.classes.length&&(t=!0,u+=' class="',u+=g0(he(this.classes)),u+='"');var r="";this.italic>0&&(r+="margin-right:"+M(this.italic)+";"),r+=$u(this.style),r&&(t=!0,u+=' style="'+g0(r)+'"');var n=g0(this.text);return t?(u+=">",u+=n,u+="</span>",u):n}}class J0{constructor(t,u){this.children=void 0,this.attributes=void 0,this.children=t||[],this.attributes=u||{}}toNode(){var t="http://www.w3.org/2000/svg",u=document.createElementNS(t,"svg");for(var r of Object.keys(this.attributes))u.setAttribute(r,this.attributes[r]);for(var n=0;n<this.children.length;n++)u.appendChild(this.children[n].toNode());return u}toMarkup(){var t='<svg xmlns="http://www.w3.org/2000/svg"';for(var u of Object.keys(this.attributes))t+=" "+u+'="'+g0(this.attributes[u])+'"';t+=">";for(var r=0;r<this.children.length;r++)t+=this.children[r].toMarkup();return t+="</svg>",t}}class de{constructor(t,u){this.pathName=void 0,this.alternate=void 0,this.pathName=t,this.alternate=u}toNode(){var t="http://www.w3.org/2000/svg",u=document.createElementNS(t,"path");return this.alternate?u.setAttribute("d",this.alternate):u.setAttribute("d",zr[this.pathName]),u}toMarkup(){return this.alternate?'<path d="'+g0(this.alternate)+'"/>':'<path d="'+g0(zr[this.pathName])+'"/>'}}class bu{constructor(t){this.attributes=void 0,this.attributes=t||{}}toNode(){var t="http://www.w3.org/2000/svg",u=document.createElementNS(t,"line");for(var r of Object.keys(this.attributes))u.setAttribute(r,this.attributes[r]);return u}toMarkup(){var t="<line";for(var u of Object.keys(this.attributes))t+=" "+u+'="'+g0(this.attributes[u])+'"';return t+="/>",t}}function Dl(e){if(e instanceof F0)return e;throw new Error("Expected symbolNode but got "+String(e)+".")}function Cl(e){if(e instanceof Be)return e;throw new Error("Expected span<HtmlDomNode> but got "+String(e)+".")}var Sl=e=>e instanceof Be||e instanceof Et||e instanceof Me,$0={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}},nt={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},Fr={Å:"A",Ð:"D",Þ:"o",å:"a",ð:"d",þ:"o",А:"A",Б:"B",В:"B",Г:"F",Д:"A",Е:"E",Ж:"K",З:"3",И:"N",Й:"N",К:"K",Л:"N",М:"M",Н:"H",О:"O",П:"N",Р:"P",С:"C",Т:"T",У:"y",Ф:"O",Х:"X",Ц:"U",Ч:"h",Ш:"W",Щ:"W",Ъ:"B",Ы:"X",Ь:"B",Э:"3",Ю:"X",Я:"R",а:"a",б:"b",в:"a",г:"r",д:"y",е:"e",ж:"m",з:"e",и:"n",й:"n",к:"n",л:"n",м:"m",н:"n",о:"o",п:"n",р:"p",с:"c",т:"o",у:"y",ф:"b",х:"x",ц:"n",ч:"n",ш:"w",щ:"w",ъ:"a",ы:"m",ь:"a",э:"e",ю:"m",я:"r"};function El(e,t){$0[e]=t}function ju(e,t,u){if(!$0[t])throw new Error("Font metrics not found for font: "+t+".");var r=e.charCodeAt(0),n=$0[t][r];if(!n&&e[0]in Fr&&(r=Fr[e[0]].charCodeAt(0),n=$0[t][r]),!n&&u==="text"&&Y1(r)&&(n=$0[t][77]),n)return{depth:n[0],height:n[1],italic:n[2],skew:n[3],width:n[4]}}var Wt={};function _l(e){var t;if(e>=5?t=0:e>=3?t=1:t=2,!Wt[t]){var u=Wt[t]={cssEmPerMu:nt.quad[t]/18};for(var r in nt)nt.hasOwnProperty(r)&&(u[r]=nt[r][t])}return Wt[t]}var n0={math:{},text:{}};function l(e,t,u,r,n,a){n0[e][n]={font:t,group:u,replace:r},a&&r&&(n0[e][r]=n0[e][n])}var c="math",D="text",d="main",v="ams",a0="accent-token",I="bin",A0="close",qe="inner",P="mathord",d0="op-token",T0="open",Xe="punct",g="rel",ee="spacing",w="textord";l(c,d,g,"≡","\\equiv",!0);l(c,d,g,"≺","\\prec",!0);l(c,d,g,"≻","\\succ",!0);l(c,d,g,"∼","\\sim",!0);l(c,d,g,"⊥","\\perp");l(c,d,g,"⪯","\\preceq",!0);l(c,d,g,"⪰","\\succeq",!0);l(c,d,g,"≃","\\simeq",!0);l(c,d,g,"∣","\\mid",!0);l(c,d,g,"≪","\\ll",!0);l(c,d,g,"≫","\\gg",!0);l(c,d,g,"≍","\\asymp",!0);l(c,d,g,"∥","\\parallel");l(c,d,g,"⋈","\\bowtie",!0);l(c,d,g,"⌣","\\smile",!0);l(c,d,g,"⊑","\\sqsubseteq",!0);l(c,d,g,"⊒","\\sqsupseteq",!0);l(c,d,g,"≐","\\doteq",!0);l(c,d,g,"⌢","\\frown",!0);l(c,d,g,"∋","\\ni",!0);l(c,d,g,"∝","\\propto",!0);l(c,d,g,"⊢","\\vdash",!0);l(c,d,g,"⊣","\\dashv",!0);l(c,d,g,"∋","\\owns");l(c,d,Xe,".","\\ldotp");l(c,d,Xe,"⋅","\\cdotp");l(c,d,Xe,"⋅","·");l(D,d,w,"⋅","·");l(c,d,w,"#","\\#");l(D,d,w,"#","\\#");l(c,d,w,"&","\\&");l(D,d,w,"&","\\&");l(c,d,w,"ℵ","\\aleph",!0);l(c,d,w,"∀","\\forall",!0);l(c,d,w,"ℏ","\\hbar",!0);l(c,d,w,"∃","\\exists",!0);l(c,d,w,"∇","\\nabla",!0);l(c,d,w,"♭","\\flat",!0);l(c,d,w,"ℓ","\\ell",!0);l(c,d,w,"♮","\\natural",!0);l(c,d,w,"♣","\\clubsuit",!0);l(c,d,w,"℘","\\wp",!0);l(c,d,w,"♯","\\sharp",!0);l(c,d,w,"♢","\\diamondsuit",!0);l(c,d,w,"ℜ","\\Re",!0);l(c,d,w,"♡","\\heartsuit",!0);l(c,d,w,"ℑ","\\Im",!0);l(c,d,w,"♠","\\spadesuit",!0);l(c,d,w,"§","\\S",!0);l(D,d,w,"§","\\S");l(c,d,w,"¶","\\P",!0);l(D,d,w,"¶","\\P");l(c,d,w,"†","\\dag");l(D,d,w,"†","\\dag");l(D,d,w,"†","\\textdagger");l(c,d,w,"‡","\\ddag");l(D,d,w,"‡","\\ddag");l(D,d,w,"‡","\\textdaggerdbl");l(c,d,A0,"⎱","\\rmoustache",!0);l(c,d,T0,"⎰","\\lmoustache",!0);l(c,d,A0,"⟯","\\rgroup",!0);l(c,d,T0,"⟮","\\lgroup",!0);l(c,d,I,"∓","\\mp",!0);l(c,d,I,"⊖","\\ominus",!0);l(c,d,I,"⊎","\\uplus",!0);l(c,d,I,"⊓","\\sqcap",!0);l(c,d,I,"∗","\\ast");l(c,d,I,"⊔","\\sqcup",!0);l(c,d,I,"◯","\\bigcirc",!0);l(c,d,I,"∙","\\bullet",!0);l(c,d,I,"‡","\\ddagger");l(c,d,I,"≀","\\wr",!0);l(c,d,I,"⨿","\\amalg");l(c,d,I,"&","\\And");l(c,d,g,"⟵","\\longleftarrow",!0);l(c,d,g,"⇐","\\Leftarrow",!0);l(c,d,g,"⟸","\\Longleftarrow",!0);l(c,d,g,"⟶","\\longrightarrow",!0);l(c,d,g,"⇒","\\Rightarrow",!0);l(c,d,g,"⟹","\\Longrightarrow",!0);l(c,d,g,"↔","\\leftrightarrow",!0);l(c,d,g,"⟷","\\longleftrightarrow",!0);l(c,d,g,"⇔","\\Leftrightarrow",!0);l(c,d,g,"⟺","\\Longleftrightarrow",!0);l(c,d,g,"↦","\\mapsto",!0);l(c,d,g,"⟼","\\longmapsto",!0);l(c,d,g,"↗","\\nearrow",!0);l(c,d,g,"↩","\\hookleftarrow",!0);l(c,d,g,"↪","\\hookrightarrow",!0);l(c,d,g,"↘","\\searrow",!0);l(c,d,g,"↼","\\leftharpoonup",!0);l(c,d,g,"⇀","\\rightharpoonup",!0);l(c,d,g,"↙","\\swarrow",!0);l(c,d,g,"↽","\\leftharpoondown",!0);l(c,d,g,"⇁","\\rightharpoondown",!0);l(c,d,g,"↖","\\nwarrow",!0);l(c,d,g,"⇌","\\rightleftharpoons",!0);l(c,v,g,"≮","\\nless",!0);l(c,v,g,"","\\@nleqslant");l(c,v,g,"","\\@nleqq");l(c,v,g,"⪇","\\lneq",!0);l(c,v,g,"≨","\\lneqq",!0);l(c,v,g,"","\\@lvertneqq");l(c,v,g,"⋦","\\lnsim",!0);l(c,v,g,"⪉","\\lnapprox",!0);l(c,v,g,"⊀","\\nprec",!0);l(c,v,g,"⋠","\\npreceq",!0);l(c,v,g,"⋨","\\precnsim",!0);l(c,v,g,"⪹","\\precnapprox",!0);l(c,v,g,"≁","\\nsim",!0);l(c,v,g,"","\\@nshortmid");l(c,v,g,"∤","\\nmid",!0);l(c,v,g,"⊬","\\nvdash",!0);l(c,v,g,"⊭","\\nvDash",!0);l(c,v,g,"⋪","\\ntriangleleft");l(c,v,g,"⋬","\\ntrianglelefteq",!0);l(c,v,g,"⊊","\\subsetneq",!0);l(c,v,g,"","\\@varsubsetneq");l(c,v,g,"⫋","\\subsetneqq",!0);l(c,v,g,"","\\@varsubsetneqq");l(c,v,g,"≯","\\ngtr",!0);l(c,v,g,"","\\@ngeqslant");l(c,v,g,"","\\@ngeqq");l(c,v,g,"⪈","\\gneq",!0);l(c,v,g,"≩","\\gneqq",!0);l(c,v,g,"","\\@gvertneqq");l(c,v,g,"⋧","\\gnsim",!0);l(c,v,g,"⪊","\\gnapprox",!0);l(c,v,g,"⊁","\\nsucc",!0);l(c,v,g,"⋡","\\nsucceq",!0);l(c,v,g,"⋩","\\succnsim",!0);l(c,v,g,"⪺","\\succnapprox",!0);l(c,v,g,"≆","\\ncong",!0);l(c,v,g,"","\\@nshortparallel");l(c,v,g,"∦","\\nparallel",!0);l(c,v,g,"⊯","\\nVDash",!0);l(c,v,g,"⋫","\\ntriangleright");l(c,v,g,"⋭","\\ntrianglerighteq",!0);l(c,v,g,"","\\@nsupseteqq");l(c,v,g,"⊋","\\supsetneq",!0);l(c,v,g,"","\\@varsupsetneq");l(c,v,g,"⫌","\\supsetneqq",!0);l(c,v,g,"","\\@varsupsetneqq");l(c,v,g,"⊮","\\nVdash",!0);l(c,v,g,"⪵","\\precneqq",!0);l(c,v,g,"⪶","\\succneqq",!0);l(c,v,g,"","\\@nsubseteqq");l(c,v,I,"⊴","\\unlhd");l(c,v,I,"⊵","\\unrhd");l(c,v,g,"↚","\\nleftarrow",!0);l(c,v,g,"↛","\\nrightarrow",!0);l(c,v,g,"⇍","\\nLeftarrow",!0);l(c,v,g,"⇏","\\nRightarrow",!0);l(c,v,g,"↮","\\nleftrightarrow",!0);l(c,v,g,"⇎","\\nLeftrightarrow",!0);l(c,v,g,"△","\\vartriangle");l(c,v,w,"ℏ","\\hslash");l(c,v,w,"▽","\\triangledown");l(c,v,w,"◊","\\lozenge");l(c,v,w,"Ⓢ","\\circledS");l(c,v,w,"®","\\circledR");l(D,v,w,"®","\\circledR");l(c,v,w,"∡","\\measuredangle",!0);l(c,v,w,"∄","\\nexists");l(c,v,w,"℧","\\mho");l(c,v,w,"Ⅎ","\\Finv",!0);l(c,v,w,"⅁","\\Game",!0);l(c,v,w,"‵","\\backprime");l(c,v,w,"▲","\\blacktriangle");l(c,v,w,"▼","\\blacktriangledown");l(c,v,w,"■","\\blacksquare");l(c,v,w,"⧫","\\blacklozenge");l(c,v,w,"★","\\bigstar");l(c,v,w,"∢","\\sphericalangle",!0);l(c,v,w,"∁","\\complement",!0);l(c,v,w,"ð","\\eth",!0);l(D,d,w,"ð","ð");l(c,v,w,"╱","\\diagup");l(c,v,w,"╲","\\diagdown");l(c,v,w,"□","\\square");l(c,v,w,"□","\\Box");l(c,v,w,"◊","\\Diamond");l(c,v,w,"¥","\\yen",!0);l(D,v,w,"¥","\\yen",!0);l(c,v,w,"✓","\\checkmark",!0);l(D,v,w,"✓","\\checkmark");l(c,v,w,"ℶ","\\beth",!0);l(c,v,w,"ℸ","\\daleth",!0);l(c,v,w,"ℷ","\\gimel",!0);l(c,v,w,"ϝ","\\digamma",!0);l(c,v,w,"ϰ","\\varkappa");l(c,v,T0,"┌","\\@ulcorner",!0);l(c,v,A0,"┐","\\@urcorner",!0);l(c,v,T0,"└","\\@llcorner",!0);l(c,v,A0,"┘","\\@lrcorner",!0);l(c,v,g,"≦","\\leqq",!0);l(c,v,g,"⩽","\\leqslant",!0);l(c,v,g,"⪕","\\eqslantless",!0);l(c,v,g,"≲","\\lesssim",!0);l(c,v,g,"⪅","\\lessapprox",!0);l(c,v,g,"≊","\\approxeq",!0);l(c,v,I,"⋖","\\lessdot");l(c,v,g,"⋘","\\lll",!0);l(c,v,g,"≶","\\lessgtr",!0);l(c,v,g,"⋚","\\lesseqgtr",!0);l(c,v,g,"⪋","\\lesseqqgtr",!0);l(c,v,g,"≑","\\doteqdot");l(c,v,g,"≓","\\risingdotseq",!0);l(c,v,g,"≒","\\fallingdotseq",!0);l(c,v,g,"∽","\\backsim",!0);l(c,v,g,"⋍","\\backsimeq",!0);l(c,v,g,"⫅","\\subseteqq",!0);l(c,v,g,"⋐","\\Subset",!0);l(c,v,g,"⊏","\\sqsubset",!0);l(c,v,g,"≼","\\preccurlyeq",!0);l(c,v,g,"⋞","\\curlyeqprec",!0);l(c,v,g,"≾","\\precsim",!0);l(c,v,g,"⪷","\\precapprox",!0);l(c,v,g,"⊲","\\vartriangleleft");l(c,v,g,"⊴","\\trianglelefteq");l(c,v,g,"⊨","\\vDash",!0);l(c,v,g,"⊪","\\Vvdash",!0);l(c,v,g,"⌣","\\smallsmile");l(c,v,g,"⌢","\\smallfrown");l(c,v,g,"≏","\\bumpeq",!0);l(c,v,g,"≎","\\Bumpeq",!0);l(c,v,g,"≧","\\geqq",!0);l(c,v,g,"⩾","\\geqslant",!0);l(c,v,g,"⪖","\\eqslantgtr",!0);l(c,v,g,"≳","\\gtrsim",!0);l(c,v,g,"⪆","\\gtrapprox",!0);l(c,v,I,"⋗","\\gtrdot");l(c,v,g,"⋙","\\ggg",!0);l(c,v,g,"≷","\\gtrless",!0);l(c,v,g,"⋛","\\gtreqless",!0);l(c,v,g,"⪌","\\gtreqqless",!0);l(c,v,g,"≖","\\eqcirc",!0);l(c,v,g,"≗","\\circeq",!0);l(c,v,g,"≜","\\triangleq",!0);l(c,v,g,"∼","\\thicksim");l(c,v,g,"≈","\\thickapprox");l(c,v,g,"⫆","\\supseteqq",!0);l(c,v,g,"⋑","\\Supset",!0);l(c,v,g,"⊐","\\sqsupset",!0);l(c,v,g,"≽","\\succcurlyeq",!0);l(c,v,g,"⋟","\\curlyeqsucc",!0);l(c,v,g,"≿","\\succsim",!0);l(c,v,g,"⪸","\\succapprox",!0);l(c,v,g,"⊳","\\vartriangleright");l(c,v,g,"⊵","\\trianglerighteq");l(c,v,g,"⊩","\\Vdash",!0);l(c,v,g,"∣","\\shortmid");l(c,v,g,"∥","\\shortparallel");l(c,v,g,"≬","\\between",!0);l(c,v,g,"⋔","\\pitchfork",!0);l(c,v,g,"∝","\\varpropto");l(c,v,g,"◀","\\blacktriangleleft");l(c,v,g,"∴","\\therefore",!0);l(c,v,g,"∍","\\backepsilon");l(c,v,g,"▶","\\blacktriangleright");l(c,v,g,"∵","\\because",!0);l(c,v,g,"⋘","\\llless");l(c,v,g,"⋙","\\gggtr");l(c,v,I,"⊲","\\lhd");l(c,v,I,"⊳","\\rhd");l(c,v,g,"≂","\\eqsim",!0);l(c,d,g,"⋈","\\Join");l(c,v,g,"≑","\\Doteq",!0);l(c,v,I,"∔","\\dotplus",!0);l(c,v,I,"∖","\\smallsetminus");l(c,v,I,"⋒","\\Cap",!0);l(c,v,I,"⋓","\\Cup",!0);l(c,v,I,"⩞","\\doublebarwedge",!0);l(c,v,I,"⊟","\\boxminus",!0);l(c,v,I,"⊞","\\boxplus",!0);l(c,v,I,"⋇","\\divideontimes",!0);l(c,v,I,"⋉","\\ltimes",!0);l(c,v,I,"⋊","\\rtimes",!0);l(c,v,I,"⋋","\\leftthreetimes",!0);l(c,v,I,"⋌","\\rightthreetimes",!0);l(c,v,I,"⋏","\\curlywedge",!0);l(c,v,I,"⋎","\\curlyvee",!0);l(c,v,I,"⊝","\\circleddash",!0);l(c,v,I,"⊛","\\circledast",!0);l(c,v,I,"⋅","\\centerdot");l(c,v,I,"⊺","\\intercal",!0);l(c,v,I,"⋒","\\doublecap");l(c,v,I,"⋓","\\doublecup");l(c,v,I,"⊠","\\boxtimes",!0);l(c,v,g,"⇢","\\dashrightarrow",!0);l(c,v,g,"⇠","\\dashleftarrow",!0);l(c,v,g,"⇇","\\leftleftarrows",!0);l(c,v,g,"⇆","\\leftrightarrows",!0);l(c,v,g,"⇚","\\Lleftarrow",!0);l(c,v,g,"↞","\\twoheadleftarrow",!0);l(c,v,g,"↢","\\leftarrowtail",!0);l(c,v,g,"↫","\\looparrowleft",!0);l(c,v,g,"⇋","\\leftrightharpoons",!0);l(c,v,g,"↶","\\curvearrowleft",!0);l(c,v,g,"↺","\\circlearrowleft",!0);l(c,v,g,"↰","\\Lsh",!0);l(c,v,g,"⇈","\\upuparrows",!0);l(c,v,g,"↿","\\upharpoonleft",!0);l(c,v,g,"⇃","\\downharpoonleft",!0);l(c,d,g,"⊶","\\origof",!0);l(c,d,g,"⊷","\\imageof",!0);l(c,v,g,"⊸","\\multimap",!0);l(c,v,g,"↭","\\leftrightsquigarrow",!0);l(c,v,g,"⇉","\\rightrightarrows",!0);l(c,v,g,"⇄","\\rightleftarrows",!0);l(c,v,g,"↠","\\twoheadrightarrow",!0);l(c,v,g,"↣","\\rightarrowtail",!0);l(c,v,g,"↬","\\looparrowright",!0);l(c,v,g,"↷","\\curvearrowright",!0);l(c,v,g,"↻","\\circlearrowright",!0);l(c,v,g,"↱","\\Rsh",!0);l(c,v,g,"⇊","\\downdownarrows",!0);l(c,v,g,"↾","\\upharpoonright",!0);l(c,v,g,"⇂","\\downharpoonright",!0);l(c,v,g,"⇝","\\rightsquigarrow",!0);l(c,v,g,"⇝","\\leadsto");l(c,v,g,"⇛","\\Rrightarrow",!0);l(c,v,g,"↾","\\restriction");l(c,d,w,"‘","`");l(c,d,w,"$","\\$");l(D,d,w,"$","\\$");l(D,d,w,"$","\\textdollar");l(c,d,w,"%","\\%");l(D,d,w,"%","\\%");l(c,d,w,"_","\\_");l(D,d,w,"_","\\_");l(D,d,w,"_","\\textunderscore");l(c,d,w,"∠","\\angle",!0);l(c,d,w,"∞","\\infty",!0);l(c,d,w,"′","\\prime");l(c,d,w,"△","\\triangle");l(c,d,w,"Γ","\\Gamma",!0);l(c,d,w,"Δ","\\Delta",!0);l(c,d,w,"Θ","\\Theta",!0);l(c,d,w,"Λ","\\Lambda",!0);l(c,d,w,"Ξ","\\Xi",!0);l(c,d,w,"Π","\\Pi",!0);l(c,d,w,"Σ","\\Sigma",!0);l(c,d,w,"Υ","\\Upsilon",!0);l(c,d,w,"Φ","\\Phi",!0);l(c,d,w,"Ψ","\\Psi",!0);l(c,d,w,"Ω","\\Omega",!0);l(c,d,w,"A","Α");l(c,d,w,"B","Β");l(c,d,w,"E","Ε");l(c,d,w,"Z","Ζ");l(c,d,w,"H","Η");l(c,d,w,"I","Ι");l(c,d,w,"K","Κ");l(c,d,w,"M","Μ");l(c,d,w,"N","Ν");l(c,d,w,"O","Ο");l(c,d,w,"P","Ρ");l(c,d,w,"T","Τ");l(c,d,w,"X","Χ");l(c,d,w,"¬","\\neg",!0);l(c,d,w,"¬","\\lnot");l(c,d,w,"⊤","\\top");l(c,d,w,"⊥","\\bot");l(c,d,w,"∅","\\emptyset");l(c,v,w,"∅","\\varnothing");l(c,d,P,"α","\\alpha",!0);l(c,d,P,"β","\\beta",!0);l(c,d,P,"γ","\\gamma",!0);l(c,d,P,"δ","\\delta",!0);l(c,d,P,"ϵ","\\epsilon",!0);l(c,d,P,"ζ","\\zeta",!0);l(c,d,P,"η","\\eta",!0);l(c,d,P,"θ","\\theta",!0);l(c,d,P,"ι","\\iota",!0);l(c,d,P,"κ","\\kappa",!0);l(c,d,P,"λ","\\lambda",!0);l(c,d,P,"μ","\\mu",!0);l(c,d,P,"ν","\\nu",!0);l(c,d,P,"ξ","\\xi",!0);l(c,d,P,"ο","\\omicron",!0);l(c,d,P,"π","\\pi",!0);l(c,d,P,"ρ","\\rho",!0);l(c,d,P,"σ","\\sigma",!0);l(c,d,P,"τ","\\tau",!0);l(c,d,P,"υ","\\upsilon",!0);l(c,d,P,"ϕ","\\phi",!0);l(c,d,P,"χ","\\chi",!0);l(c,d,P,"ψ","\\psi",!0);l(c,d,P,"ω","\\omega",!0);l(c,d,P,"ε","\\varepsilon",!0);l(c,d,P,"ϑ","\\vartheta",!0);l(c,d,P,"ϖ","\\varpi",!0);l(c,d,P,"ϱ","\\varrho",!0);l(c,d,P,"ς","\\varsigma",!0);l(c,d,P,"φ","\\varphi",!0);l(c,d,I,"∗","*",!0);l(c,d,I,"+","+");l(c,d,I,"−","-",!0);l(c,d,I,"⋅","\\cdot",!0);l(c,d,I,"∘","\\circ",!0);l(c,d,I,"÷","\\div",!0);l(c,d,I,"±","\\pm",!0);l(c,d,I,"×","\\times",!0);l(c,d,I,"∩","\\cap",!0);l(c,d,I,"∪","\\cup",!0);l(c,d,I,"∖","\\setminus",!0);l(c,d,I,"∧","\\land");l(c,d,I,"∨","\\lor");l(c,d,I,"∧","\\wedge",!0);l(c,d,I,"∨","\\vee",!0);l(c,d,w,"√","\\surd");l(c,d,T0,"⟨","\\langle",!0);l(c,d,T0,"∣","\\lvert");l(c,d,T0,"∥","\\lVert");l(c,d,A0,"?","?");l(c,d,A0,"!","!");l(c,d,A0,"⟩","\\rangle",!0);l(c,d,A0,"∣","\\rvert");l(c,d,A0,"∥","\\rVert");l(c,d,g,"=","=");l(c,d,g,":",":");l(c,d,g,"≈","\\approx",!0);l(c,d,g,"≅","\\cong",!0);l(c,d,g,"≥","\\ge");l(c,d,g,"≥","\\geq",!0);l(c,d,g,"←","\\gets");l(c,d,g,">","\\gt",!0);l(c,d,g,"∈","\\in",!0);l(c,d,g,"","\\@not");l(c,d,g,"⊂","\\subset",!0);l(c,d,g,"⊃","\\supset",!0);l(c,d,g,"⊆","\\subseteq",!0);l(c,d,g,"⊇","\\supseteq",!0);l(c,v,g,"⊈","\\nsubseteq",!0);l(c,v,g,"⊉","\\nsupseteq",!0);l(c,d,g,"⊨","\\models");l(c,d,g,"←","\\leftarrow",!0);l(c,d,g,"≤","\\le");l(c,d,g,"≤","\\leq",!0);l(c,d,g,"<","\\lt",!0);l(c,d,g,"→","\\rightarrow",!0);l(c,d,g,"→","\\to");l(c,v,g,"≱","\\ngeq",!0);l(c,v,g,"≰","\\nleq",!0);l(c,d,ee," ","\\ ");l(c,d,ee," ","\\space");l(c,d,ee," ","\\nobreakspace");l(D,d,ee," ","\\ ");l(D,d,ee," "," ");l(D,d,ee," ","\\space");l(D,d,ee," ","\\nobreakspace");l(c,d,ee,"","\\nobreak");l(c,d,ee,"","\\allowbreak");l(c,d,Xe,",",",");l(c,d,Xe,";",";");l(c,v,I,"⊼","\\barwedge",!0);l(c,v,I,"⊻","\\veebar",!0);l(c,d,I,"⊙","\\odot",!0);l(c,d,I,"⊕","\\oplus",!0);l(c,d,I,"⊗","\\otimes",!0);l(c,d,w,"∂","\\partial",!0);l(c,d,I,"⊘","\\oslash",!0);l(c,v,I,"⊚","\\circledcirc",!0);l(c,v,I,"⊡","\\boxdot",!0);l(c,d,I,"△","\\bigtriangleup");l(c,d,I,"▽","\\bigtriangledown");l(c,d,I,"†","\\dagger");l(c,d,I,"⋄","\\diamond");l(c,d,I,"⋆","\\star");l(c,d,I,"◃","\\triangleleft");l(c,d,I,"▹","\\triangleright");l(c,d,T0,"{","\\{");l(D,d,w,"{","\\{");l(D,d,w,"{","\\textbraceleft");l(c,d,A0,"}","\\}");l(D,d,w,"}","\\}");l(D,d,w,"}","\\textbraceright");l(c,d,T0,"{","\\lbrace");l(c,d,A0,"}","\\rbrace");l(c,d,T0,"[","\\lbrack",!0);l(D,d,w,"[","\\lbrack",!0);l(c,d,A0,"]","\\rbrack",!0);l(D,d,w,"]","\\rbrack",!0);l(c,d,T0,"(","\\lparen",!0);l(c,d,A0,")","\\rparen",!0);l(D,d,w,"<","\\textless",!0);l(D,d,w,">","\\textgreater",!0);l(c,d,T0,"⌊","\\lfloor",!0);l(c,d,A0,"⌋","\\rfloor",!0);l(c,d,T0,"⌈","\\lceil",!0);l(c,d,A0,"⌉","\\rceil",!0);l(c,d,w,"\\","\\backslash");l(c,d,w,"∣","|");l(c,d,w,"∣","\\vert");l(D,d,w,"|","\\textbar",!0);l(c,d,w,"∥","\\|");l(c,d,w,"∥","\\Vert");l(D,d,w,"∥","\\textbardbl");l(D,d,w,"~","\\textasciitilde");l(D,d,w,"\\","\\textbackslash");l(D,d,w,"^","\\textasciicircum");l(c,d,g,"↑","\\uparrow",!0);l(c,d,g,"⇑","\\Uparrow",!0);l(c,d,g,"↓","\\downarrow",!0);l(c,d,g,"⇓","\\Downarrow",!0);l(c,d,g,"↕","\\updownarrow",!0);l(c,d,g,"⇕","\\Updownarrow",!0);l(c,d,d0,"∐","\\coprod");l(c,d,d0,"⋁","\\bigvee");l(c,d,d0,"⋀","\\bigwedge");l(c,d,d0,"⨄","\\biguplus");l(c,d,d0,"⋂","\\bigcap");l(c,d,d0,"⋃","\\bigcup");l(c,d,d0,"∫","\\int");l(c,d,d0,"∫","\\intop");l(c,d,d0,"∬","\\iint");l(c,d,d0,"∭","\\iiint");l(c,d,d0,"∏","\\prod");l(c,d,d0,"∑","\\sum");l(c,d,d0,"⨂","\\bigotimes");l(c,d,d0,"⨁","\\bigoplus");l(c,d,d0,"⨀","\\bigodot");l(c,d,d0,"∮","\\oint");l(c,d,d0,"∯","\\oiint");l(c,d,d0,"∰","\\oiiint");l(c,d,d0,"⨆","\\bigsqcup");l(c,d,d0,"∫","\\smallint");l(D,d,qe,"…","\\textellipsis");l(c,d,qe,"…","\\mathellipsis");l(D,d,qe,"…","\\ldots",!0);l(c,d,qe,"…","\\ldots",!0);l(c,d,qe,"⋯","\\@cdots",!0);l(c,d,qe,"⋱","\\ddots",!0);l(c,d,w,"⋮","\\varvdots");l(D,d,w,"⋮","\\varvdots");l(c,d,a0,"ˊ","\\acute");l(c,d,a0,"ˋ","\\grave");l(c,d,a0,"¨","\\ddot");l(c,d,a0,"~","\\tilde");l(c,d,a0,"ˉ","\\bar");l(c,d,a0,"˘","\\breve");l(c,d,a0,"ˇ","\\check");l(c,d,a0,"^","\\hat");l(c,d,a0,"⃗","\\vec");l(c,d,a0,"˙","\\dot");l(c,d,a0,"˚","\\mathring");l(c,d,P,"","\\@imath");l(c,d,P,"","\\@jmath");l(c,d,w,"ı","ı");l(c,d,w,"ȷ","ȷ");l(D,d,w,"ı","\\i",!0);l(D,d,w,"ȷ","\\j",!0);l(D,d,w,"ß","\\ss",!0);l(D,d,w,"æ","\\ae",!0);l(D,d,w,"œ","\\oe",!0);l(D,d,w,"ø","\\o",!0);l(D,d,w,"Æ","\\AE",!0);l(D,d,w,"Œ","\\OE",!0);l(D,d,w,"Ø","\\O",!0);l(D,d,a0,"ˊ","\\'");l(D,d,a0,"ˋ","\\`");l(D,d,a0,"ˆ","\\^");l(D,d,a0,"˜","\\~");l(D,d,a0,"ˉ","\\=");l(D,d,a0,"˘","\\u");l(D,d,a0,"˙","\\.");l(D,d,a0,"¸","\\c");l(D,d,a0,"˚","\\r");l(D,d,a0,"ˇ","\\v");l(D,d,a0,"¨",'\\"');l(D,d,a0,"˝","\\H");l(D,d,a0,"◯","\\textcircled");var tn={"--":!0,"---":!0,"``":!0,"''":!0};l(D,d,w,"–","--",!0);l(D,d,w,"–","\\textendash");l(D,d,w,"—","---",!0);l(D,d,w,"—","\\textemdash");l(D,d,w,"‘","`",!0);l(D,d,w,"‘","\\textquoteleft");l(D,d,w,"’","'",!0);l(D,d,w,"’","\\textquoteright");l(D,d,w,"“","``",!0);l(D,d,w,"“","\\textquotedblleft");l(D,d,w,"”","''",!0);l(D,d,w,"”","\\textquotedblright");l(c,d,w,"°","\\degree",!0);l(D,d,w,"°","\\degree");l(D,d,w,"°","\\textdegree",!0);l(c,d,w,"£","\\pounds");l(c,d,w,"£","\\mathsterling",!0);l(D,d,w,"£","\\pounds");l(D,d,w,"£","\\textsterling",!0);l(c,v,w,"✠","\\maltese");l(D,v,w,"✠","\\maltese");var Tr='0123456789/@."';for(var Zt=0;Zt<Tr.length;Zt++){var Mr=Tr.charAt(Zt);l(c,d,w,Mr,Mr)}var Br='0123456789!@*()-=+";:?/.,';for(var Xt=0;Xt<Br.length;Xt++){var qr=Br.charAt(Xt);l(D,d,w,qr,qr)}var xt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";for(var Yt=0;Yt<xt.length;Yt++){var at=xt.charAt(Yt);l(c,d,P,at,at),l(D,d,w,at,at)}l(c,v,w,"C","ℂ");l(D,v,w,"C","ℂ");l(c,v,w,"H","ℍ");l(D,v,w,"H","ℍ");l(c,v,w,"N","ℕ");l(D,v,w,"N","ℕ");l(c,v,w,"P","ℙ");l(D,v,w,"P","ℙ");l(c,v,w,"Q","ℚ");l(D,v,w,"Q","ℚ");l(c,v,w,"R","ℝ");l(D,v,w,"R","ℝ");l(c,v,w,"Z","ℤ");l(D,v,w,"Z","ℤ");l(c,d,P,"h","ℎ");l(D,d,P,"h","ℎ");var H;for(var y0=0;y0<xt.length;y0++){var o0=xt.charAt(y0);H=String.fromCharCode(55349,56320+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56372+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56424+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56580+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56684+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56736+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56788+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56840+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56944+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),y0<26&&(H=String.fromCharCode(55349,56632+y0),l(c,d,P,o0,H),l(D,d,w,o0,H),H=String.fromCharCode(55349,56476+y0),l(c,d,P,o0,H),l(D,d,w,o0,H))}H="𝕜";l(c,d,P,"k",H);l(D,d,w,"k",H);for(var ve=0;ve<10;ve++){var ie=ve.toString();H=String.fromCharCode(55349,57294+ve),l(c,d,P,ie,H),l(D,d,w,ie,H),H=String.fromCharCode(55349,57314+ve),l(c,d,P,ie,H),l(D,d,w,ie,H),H=String.fromCharCode(55349,57324+ve),l(c,d,P,ie,H),l(D,d,w,ie,H),H=String.fromCharCode(55349,57334+ve),l(c,d,P,ie,H),l(D,d,w,ie,H)}var vu="ÐÞþ";for(var Kt=0;Kt<vu.length;Kt++){var it=vu.charAt(Kt);l(c,d,P,it,it),l(D,d,w,it,it)}var gu={mathClass:"mathbf",textClass:"textbf",font:"Main-Bold"},Rr={mathClass:"mathnormal",textClass:"textit",font:"Math-Italic"},Ir={mathClass:"boldsymbol",textClass:"boldsymbol",font:"Main-BoldItalic"},zl={mathClass:"mathscr",textClass:"textscr",font:"Script-Regular"},xe={mathClass:"",textClass:"",font:""},Nr={mathClass:"mathfrak",textClass:"textfrak",font:"Fraktur-Regular"},Or={mathClass:"mathbb",textClass:"textbb",font:"AMS-Regular"},Lr={mathClass:"mathboldfrak",textClass:"textboldfrak",font:"Fraktur-Regular"},xu={mathClass:"mathsf",textClass:"textsf",font:"SansSerif-Regular"},yu={mathClass:"mathboldsf",textClass:"textboldsf",font:"SansSerif-Bold"},Pr={mathClass:"mathitsf",textClass:"textitsf",font:"SansSerif-Italic"},wu={mathClass:"mathtt",textClass:"texttt",font:"Typewriter-Regular"},Hr=[gu,gu,Rr,Rr,Ir,Ir,zl,xe,xe,xe,Nr,Nr,Or,Or,Lr,Lr,xu,xu,yu,yu,Pr,Pr,xe,xe,wu,wu],Fl=[gu,xe,xu,yu,wu],Tl=e=>{var t=e.charCodeAt(0),u=e.charCodeAt(1),r=(t-55296)*1024+(u-56320)+65536;if(119808<=r&&r<120484){var n=Math.floor((r-119808)/26);return Hr[n]}else if(120782<=r&&r<=120831){var a=Math.floor((r-120782)/10);return Fl[a]}else{if(r===120485||r===120486)return Hr[0];if(120486<r&&r<120782)return xe;throw new z("Unsupported character: "+e)}},_t=function(t,u,r){if(n0[r][t]){var n=n0[r][t].replace;n&&(t=n)}return{value:t,metrics:ju(t,u,r)}},w0=function(t,u,r,n,a){var i=_t(t,u,r),s=i.metrics;t=i.value;var o;if(s){var h=s.italic;(r==="text"||n&&n.font==="mathit")&&(h=0),o=new F0(t,s.height,s.depth,h,s.skew,s.width,a)}else typeof console<"u"&&console.warn("No character metrics "+("for '"+t+"' in style '"+u+"' and mode '"+r+"'")),o=new F0(t,0,0,0,0,0,a);if(n){o.maxFontSize=n.sizeMultiplier,n.style.isTight()&&o.classes.push("mtight");var f=n.getColor();f&&(o.style.color=f)}return o},Uu=function(t,u,r,n){return n===void 0&&(n=[]),r.font==="boldsymbol"&&_t(t,"Main-Bold",u).metrics?w0(t,"Main-Bold",u,r,n.concat(["mathbf"])):t==="\\"||n0[u][t].font==="main"?w0(t,"Main-Regular",u,r,n):w0(t,"AMS-Regular",u,r,n.concat(["amsrm"]))},Ml=function(t,u,r){return r!=="textord"&&_t(t,"Math-BoldItalic",u).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}},zt=function(t,u){var r=t.type==="mathord"?"mathord":"textord",n=t.mode,a=t.text,i=["mord"],{font:s,fontFamily:o,fontWeight:h,fontShape:f}=u,p=n==="math"||n==="text"&&!!s,x=p?s:o,b="",y="";if(a.charCodeAt(0)===55349){var k=Tl(a);b=k.font,y=k[n+"Class"]}if(b)return w0(a,b,n,u,i.concat(y));if(x){var A,S;if(x==="boldsymbol"){var C=Ml(a,n,r);A=C.fontName,S=[C.fontClass]}else p?(A=ku[s].fontName,S=[s]):(A=st(o,h,f),S=[o,h,f]);if(_t(a,A,n).metrics)return w0(a,A,n,u,i.concat(S));if(tn.hasOwnProperty(a)&&A.slice(0,10)==="Typewriter"){for(var _=[],T=0;T<a.length;T++)_.push(w0(a[T],A,n,u,i.concat(S)));return te(_)}}if(r==="mathord")return w0(a,"Math-Italic",n,u,i.concat(["mathnormal"]));if(r==="textord"){var B=n0[n][a]&&n0[n][a].font;if(B==="ams"){var q=st("amsrm",h,f);return w0(a,q,n,u,i.concat("amsrm",h,f))}else if(B==="main"||!B){var O=st("textrm",h,f);return w0(a,O,n,u,i.concat(h,f))}else{var U=st(B,h,f);return w0(a,U,n,u,i.concat(U,h,f))}}else throw new Error("unexpected type: "+r+" in makeOrd")},Bl=(e,t)=>{if(he(e.classes)!==he(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize||e.italic!==0&&e.hasClass("mathnormal"))return!1;if(e.classes.length===1){var u=e.classes[0];if(u==="mbin"||u==="mord")return!1}for(var r of Object.keys(e.style))if(e.style[r]!==t.style[r])return!1;for(var n of Object.keys(t.style))if(e.style[n]!==t.style[n])return!1;return!0},un=e=>{for(var t=0;t<e.length-1;t++){var u=e[t],r=e[t+1];u instanceof F0&&r instanceof F0&&Bl(u,r)&&(u.text+=r.text,u.height=Math.max(u.height,r.height),u.depth=Math.max(u.depth,r.depth),u.italic=r.italic,e.splice(t+1,1),t--)}return e},Gu=function(t){for(var u=0,r=0,n=0,a=0;a<t.children.length;a++){var i=t.children[a];i.height>u&&(u=i.height),i.depth>r&&(r=i.depth),i.maxFontSize>n&&(n=i.maxFontSize)}t.height=u,t.depth=r,t.maxFontSize=n},E=function(t,u,r,n){var a=new Be(t,u,r,n);return Gu(a),a},fe=(e,t,u,r)=>new Be(e,t,u,r),ze=function(t,u,r){var n=E([t],[],u);return n.height=Math.max(r||u.fontMetrics().defaultRuleThickness,u.minRuleThickness),n.style.borderBottomWidth=M(n.height),n.maxFontSize=1,n},ql=function(t,u,r,n){var a=new Et(t,u,r,n);return Gu(a),a},te=function(t){var u=new Me(t);return Gu(u),u},Fe=function(t,u){return t instanceof Me?E([],[t],u):t},Rl=function(t){if(t.positionType==="individualShift"){for(var u=t.children,r=[u[0]],n=-u[0].shift-u[0].elem.depth,a=n,i=1;i<u.length;i++){var s=-u[i].shift-a-u[i].elem.depth,o=s-(u[i-1].elem.height+u[i-1].elem.depth);a=a+s,r.push({type:"kern",size:o}),r.push(u[i])}return{children:r,depth:n}}var h;if(t.positionType==="top"){for(var f=t.positionData,p=0;p<t.children.length;p++){var x=t.children[p];f-=x.type==="kern"?x.size:x.elem.height+x.elem.depth}h=f}else if(t.positionType==="bottom")h=-t.positionData;else{var b=t.children[0];if(b.type!=="elem")throw new Error('First child must have type "elem".');if(t.positionType==="shift")h=-b.elem.depth-t.positionData;else if(t.positionType==="firstBaseline")h=-b.elem.depth;else throw new Error("Invalid positionType "+t.positionType+".")}return{children:t.children,depth:h}},W=function(t,u){for(var{children:r,depth:n}=Rl(t),a=0,i=0;i<r.length;i++){var s=r[i];if(s.type==="elem"){var o=s.elem;a=Math.max(a,o.maxFontSize,o.height)}}a+=2;var h=E(["pstrut"],[]);h.style.height=M(a);for(var f=[],p=n,x=n,b=n,y=0;y<r.length;y++){var k=r[y];if(k.type==="kern")b+=k.size;else{var A=k.elem,S=k.wrapperClasses||[],C=k.wrapperStyle||{},_=E(S,[h,A],void 0,C);_.style.top=M(-a-b-A.depth),k.marginLeft&&(_.style.marginLeft=k.marginLeft),k.marginRight&&(_.style.marginRight=k.marginRight),f.push(_),b+=A.height+A.depth}p=Math.min(p,b),x=Math.max(x,b)}var T=E(["vlist"],f);T.style.height=M(x);var B;if(p<0){var q=E([],[]),O=E(["vlist"],[q]);O.style.height=M(-p);var U=E(["vlist-s"],[new F0("​")]);B=[E(["vlist-r"],[T,U]),E(["vlist-r"],[O])]}else B=[E(["vlist-r"],[T])];var $=E(["vlist-t"],B);return B.length===2&&$.classes.push("vlist-t2"),$.height=x,$.depth=-p,$},rn=(e,t)=>{var u=E(["mspace"],[],t),r=s0(e,t);return u.style.marginRight=M(r),u},st=(e,t,u)=>{var r,n;switch(e){case"amsrm":r="AMS";break;case"textrm":r="Main";break;case"textsf":r="SansSerif";break;case"texttt":r="Typewriter";break;default:r=e}return t==="textbf"&&u==="textit"?n="BoldItalic":t==="textbf"?n="Bold":u==="textit"?n="Italic":n="Regular",r+"-"+n},ku={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathsfit:{variant:"sans-serif-italic",fontName:"SansSerif-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},nn={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]},an=function(t,u){var[r,n,a]=nn[t],i=new de(r),s=new J0([i],{width:M(n),height:M(a),style:"width:"+M(n),viewBox:"0 0 "+1e3*n+" "+1e3*a,preserveAspectRatio:"xMinYMin"}),o=fe(["overlay"],[s],u);return o.height=a,o.style.height=M(a),o.style.width=M(n),o},i0={number:3,unit:"mu"},ge={number:4,unit:"mu"},Z0={number:5,unit:"mu"},Il={mord:{mop:i0,mbin:ge,mrel:Z0,minner:i0},mop:{mord:i0,mop:i0,mrel:Z0,minner:i0},mbin:{mord:ge,mop:ge,mopen:ge,minner:ge},mrel:{mord:Z0,mop:Z0,mopen:Z0,minner:Z0},mopen:{},mclose:{mop:i0,mbin:ge,mrel:Z0,minner:i0},mpunct:{mord:i0,mop:i0,mrel:Z0,mopen:i0,mclose:i0,mpunct:i0,minner:i0},minner:{mord:i0,mop:i0,mbin:ge,mrel:Z0,mopen:i0,mpunct:i0,minner:i0}},Nl={mord:{mop:i0},mop:{mord:i0,mop:i0},mbin:{},mrel:{},mopen:{},mclose:{mop:i0},mpunct:{},minner:{mop:i0}},sn={},je={},Ue={};function R(e){for(var{type:t,names:u,htmlBuilder:r,mathmlBuilder:n}=e,a=0;a<u.length;++a)sn[u[a]]=e;t&&(r&&(je[t]=r),n&&(Ue[t]=n))}function we(e){var{type:t,htmlBuilder:u,mathmlBuilder:r}=e;u&&(je[t]=u),r&&(Ue[t]=r)}var yt=function(t){return t.type==="ordgroup"&&t.body.length===1?t.body[0]:t},c0=function(t){return t.type==="ordgroup"?t.body:[t]},Ol=new Set(["leftmost","mbin","mopen","mrel","mop","mpunct"]),Ll=new Set(["rightmost","mrel","mclose","mpunct"]),Pl={display:j.DISPLAY,text:j.TEXT,script:j.SCRIPT,scriptscript:j.SCRIPTSCRIPT},Hl={mord:"mord",mop:"mop",mbin:"mbin",mrel:"mrel",mopen:"mopen",mclose:"mclose",mpunct:"mpunct",minner:"minner"},p0=function(t,u,r,n){n===void 0&&(n=[null,null]);for(var a=[],i=0;i<t.length;i++){var s=Z(t[i],u);if(s instanceof Me){var o=s.children;a.push(...o)}else a.push(s)}if(un(a),!r)return a;var h=u;if(t.length===1){var f=t[0];f.type==="sizing"?h=u.havingSize(f.size):f.type==="styling"&&(h=u.havingStyle(Pl[f.style]))}var p=E([n[0]||"leftmost"],[],u),x=E([n[1]||"rightmost"],[],u),b=r==="root";return Au(a,(y,k)=>{var A=k.classes[0],S=y.classes[0];A==="mbin"&&Ll.has(S)?k.classes[0]="mord":S==="mbin"&&Ol.has(A)&&(y.classes[0]="mord")},{node:p},x,b),Au(a,(y,k)=>{var A,S,C=Cu(k),_=Cu(y),T=C&&_?y.hasClass("mtight")?(A=Nl[C])==null?void 0:A[_]:(S=Il[C])==null?void 0:S[_]:null;if(T)return rn(T,h)},{node:p},x,b),a},Au=function(t,u,r,n,a){n&&t.push(n);for(var i=0;i<t.length;i++){var s=t[i],o=ln(s);if(o){Au(o.children,u,r,null,a);continue}var h=!s.hasClass("mspace");if(h){var f=u(s,r.node);f&&(r.insertAfter?r.insertAfter(f):(t.unshift(f),i++))}h?r.node=s:a&&s.hasClass("newline")&&(r.node=E(["leftmost"])),r.insertAfter=(p=>x=>{t.splice(p+1,0,x),i++})(i)}n&&t.pop()},ln=function(t){return t instanceof Me||t instanceof Et||t instanceof Be&&t.hasClass("enclosing")?t:null},Du=function(t,u){var r=ln(t);if(r){var n=r.children;if(n.length){if(u==="right")return Du(n[n.length-1],"right");if(u==="left")return Du(n[0],"left")}}return t},Cu=function(t,u){if(!t)return null;u&&(t=Du(t,u));var r=t.classes[0];return Hl[r]||null},Ge=function(t,u){var r=["nulldelimiter"].concat(t.baseSizingClasses());return E(u.concat(r))},Z=function(t,u,r){if(!t)return E();if(je[t.type]){var n=je[t.type](t,u);if(r&&u.size!==r.size){n=E(u.sizingClasses(r),[n],u);var a=u.sizeMultiplier/r.sizeMultiplier;n.height*=a,n.depth*=a}return n}else throw new z("Got group of unknown type: '"+t.type+"'")};function lt(e,t){var u=E(["base"],e,t),r=E(["strut"]);return r.style.height=M(u.height+u.depth),u.depth&&(r.style.verticalAlign=M(-u.depth)),u.children.unshift(r),u}function Su(e,t){var u=null;e.length===1&&e[0].type==="tag"&&(u=e[0].tag,e=e[0].body);var r=p0(e,t,"root"),n;r.length===2&&r[1].hasClass("tag")&&(n=r.pop());for(var a=[],i=[],s=0;s<r.length;s++)if(i.push(r[s]),r[s].hasClass("mbin")||r[s].hasClass("mrel")||r[s].hasClass("allowbreak")){for(var o=!1;s<r.length-1&&r[s+1].hasClass("mspace")&&!r[s+1].hasClass("newline");)s++,i.push(r[s]),r[s].hasClass("nobreak")&&(o=!0);o||(a.push(lt(i,t)),i=[])}else r[s].hasClass("newline")&&(i.pop(),i.length>0&&(a.push(lt(i,t)),i=[]),a.push(r[s]));i.length>0&&a.push(lt(i,t));var h;u?(h=lt(p0(u,t,!0),t),h.classes=["tag"],a.push(h)):n&&a.push(n);var f=E(["katex-html"],a);if(f.setAttribute("aria-hidden","true"),h){var p=h.children[0];p.style.height=M(f.height+f.depth),f.depth&&(p.style.verticalAlign=M(-f.depth))}return f}function on(e){return new Me(e)}class F{constructor(t,u,r){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=t,this.attributes={},this.children=u||[],this.classes=r||[]}setAttribute(t,u){this.attributes[t]=u}getAttribute(t){return this.attributes[t]}toNode(){var t=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(var u in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,u)&&t.setAttribute(u,this.attributes[u]);this.classes.length>0&&(t.className=he(this.classes));for(var r=0;r<this.children.length;r++)if(this.children[r]instanceof h0&&this.children[r+1]instanceof h0){for(var n=this.children[r].toText()+this.children[++r].toText();this.children[r+1]instanceof h0;)n+=this.children[++r].toText();t.appendChild(new h0(n).toNode())}else t.appendChild(this.children[r].toNode());return t}toMarkup(){var t="<"+this.type;for(var u in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,u)&&(t+=" "+u+'="',t+=g0(this.attributes[u]),t+='"');this.classes.length>0&&(t+=' class ="'+g0(he(this.classes))+'"'),t+=">";for(var r=0;r<this.children.length;r++)t+=this.children[r].toMarkup();return t+="</"+this.type+">",t}toText(){return this.children.map(t=>t.toText()).join("")}}class h0{constructor(t){this.text=void 0,this.text=t}toNode(){return document.createTextNode(this.text)}toMarkup(){return g0(this.toText())}toText(){return this.text}}class cn{constructor(t){this.width=void 0,this.character=void 0,this.width=t,t>=.05555&&t<=.05556?this.character=" ":t>=.1666&&t<=.1667?this.character=" ":t>=.2222&&t<=.2223?this.character=" ":t>=.2777&&t<=.2778?this.character="  ":t>=-.05556&&t<=-.05555?this.character=" ⁣":t>=-.1667&&t<=-.1666?this.character=" ⁣":t>=-.2223&&t<=-.2222?this.character=" ⁣":t>=-.2778&&t<=-.2777?this.character=" ⁣":this.character=null}toNode(){if(this.character)return document.createTextNode(this.character);var t=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return t.setAttribute("width",M(this.width)),t}toMarkup(){return this.character?"<mtext>"+this.character+"</mtext>":'<mspace width="'+M(this.width)+'"/>'}toText(){return this.character?this.character:" "}}var $l=new Set(["\\imath","\\jmath"]),jl=new Set(["mrow","mtable"]),R0=function(t,u,r){return n0[u][t]&&n0[u][t].replace&&t.charCodeAt(0)!==55349&&!(tn.hasOwnProperty(t)&&r&&(r.fontFamily&&r.fontFamily.slice(4,6)==="tt"||r.font&&r.font.slice(4,6)==="tt"))&&(t=n0[u][t].replace),new h0(t)},Vu=function(t){return t.length===1?t[0]:new F("mrow",t)},Ul={mathit:"italic",boldsymbol:e=>e.type==="textord"?"bold":"bold-italic",mathbf:"bold",mathbb:"double-struck",mathsfit:"sans-serif-italic",mathfrak:"fraktur",mathscr:"script",mathcal:"script",mathsf:"sans-serif",mathtt:"monospace"},Wu=(e,t)=>{if(e.mode==="text"){if(t.fontFamily==="texttt")return"monospace";if(t.fontFamily==="textsf")return t.fontShape==="textit"&&t.fontWeight==="textbf"?"sans-serif-bold-italic":t.fontShape==="textit"?"sans-serif-italic":t.fontWeight==="textbf"?"bold-sans-serif":"sans-serif";if(t.fontShape==="textit"&&t.fontWeight==="textbf")return"bold-italic";if(t.fontShape==="textit")return"italic";if(t.fontWeight==="textbf")return"bold"}var u=t.font;if(!u||u==="mathnormal")return null;var r=e.mode,n=Ul[u];if(n)return typeof n=="function"?n(e):n;var a=e.text;if($l.has(a))return null;if(n0[r][a]){var i=n0[r][a].replace;i&&(a=i)}var s=ku[u].fontName;return ju(a,s,r)?ku[u].variant:null};function Jt(e){if(!e)return!1;if(e.type==="mi"&&e.children.length===1){var t=e.children[0];return t instanceof h0&&t.text==="."}else if(e.type==="mo"&&e.children.length===1&&e.getAttribute("separator")==="true"&&e.getAttribute("lspace")==="0em"&&e.getAttribute("rspace")==="0em"){var u=e.children[0];return u instanceof h0&&u.text===","}else return!1}var M0=function(t,u,r){if(t.length===1){var n=J(t[0],u);return r&&n instanceof F&&n.type==="mo"&&(n.setAttribute("lspace","0em"),n.setAttribute("rspace","0em")),[n]}for(var a=[],i,s=0;s<t.length;s++){var o=J(t[s],u);if(o instanceof F&&i instanceof F){if(o.type==="mtext"&&i.type==="mtext"&&o.getAttribute("mathvariant")===i.getAttribute("mathvariant")){i.children.push(...o.children);continue}else if(o.type==="mn"&&i.type==="mn"){i.children.push(...o.children);continue}else if(Jt(o)&&i.type==="mn"){i.children.push(...o.children);continue}else if(o.type==="mn"&&Jt(i))o.children=[...i.children,...o.children],a.pop();else if((o.type==="msup"||o.type==="msub")&&o.children.length>=1&&(i.type==="mn"||Jt(i))){var h=o.children[0];h instanceof F&&h.type==="mn"&&(h.children=[...i.children,...h.children],a.pop())}else if(i.type==="mi"&&i.children.length===1){var f=i.children[0];if(f instanceof h0&&f.text==="̸"&&(o.type==="mo"||o.type==="mi"||o.type==="mn")){var p=o.children[0];p instanceof h0&&p.text.length>0&&(p.text=p.text.slice(0,1)+"̸"+p.text.slice(1),a.pop())}}}a.push(o),i=o}return a},me=function(t,u,r){return Vu(M0(t,u,r))},J=function(t,u){if(!t)return new F("mrow");if(Ue[t.type])return Ue[t.type](t,u);throw new z("Got group of unknown type: '"+t.type+"'")};function $r(e,t,u,r,n){var a=M0(e,u),i;a.length===1&&a[0]instanceof F&&jl.has(a[0].type)?i=a[0]:i=new F("mrow",a);var s=new F("annotation",[new h0(t)]);s.setAttribute("encoding","application/x-tex");var o=new F("semantics",[i,s]),h=new F("math",[o]);h.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),r&&h.setAttribute("display","block");var f=n?"katex":"katex-mathml";return E([f],[h])}var Gl=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],jr=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],Ur=function(t,u){return u.size<2?t:Gl[t-1][u.size-1]};class X0{constructor(t){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=t.style,this.color=t.color,this.size=t.size||X0.BASESIZE,this.textSize=t.textSize||this.size,this.phantom=!!t.phantom,this.font=t.font||"",this.fontFamily=t.fontFamily||"",this.fontWeight=t.fontWeight||"",this.fontShape=t.fontShape||"",this.sizeMultiplier=jr[this.size-1],this.maxSize=t.maxSize,this.minRuleThickness=t.minRuleThickness,this._fontMetrics=void 0}extend(t){var u={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};return Object.assign(u,t),new X0(u)}havingStyle(t){return this.style===t?this:this.extend({style:t,size:Ur(this.textSize,t)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(t){return this.size===t&&this.textSize===t?this:this.extend({style:this.style.text(),size:t,textSize:t,sizeMultiplier:jr[t-1]})}havingBaseStyle(t){t=t||this.style.text();var u=Ur(X0.BASESIZE,t);return this.size===u&&this.textSize===X0.BASESIZE&&this.style===t?this:this.extend({style:t,size:u})}havingBaseSizing(){var t;switch(this.style.id){case 4:case 5:t=3;break;case 6:case 7:t=1;break;default:t=6}return this.extend({style:this.style.text(),size:t})}withColor(t){return this.extend({color:t})}withPhantom(){return this.extend({phantom:!0})}withFont(t){return this.extend({font:t})}withTextFontFamily(t){return this.extend({fontFamily:t,font:""})}withTextFontWeight(t){return this.extend({fontWeight:t,font:""})}withTextFontShape(t){return this.extend({fontShape:t,font:""})}sizingClasses(t){return t.size!==this.size?["sizing","reset-size"+t.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==X0.BASESIZE?["sizing","reset-size"+this.size,"size"+X0.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=_l(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}X0.BASESIZE=6;var hn=function(t){return new X0({style:t.displayMode?j.DISPLAY:j.TEXT,maxSize:t.maxSize,minRuleThickness:t.minRuleThickness})},dn=function(t,u){if(u.displayMode){var r=["katex-display"];u.leqno&&r.push("leqno"),u.fleqn&&r.push("fleqn"),t=E(r,[t])}return t},Vl=function(t,u,r){var n=hn(r),a;if(r.output==="mathml")return $r(t,u,n,r.displayMode,!0);if(r.output==="html"){var i=Su(t,n);a=E(["katex"],[i])}else{var s=$r(t,u,n,r.displayMode,!1),o=Su(t,n);a=E(["katex"],[s,o])}return dn(a,r)},Wl=function(t,u,r){var n=hn(r),a=Su(t,n),i=E(["katex"],[a]);return dn(i,r)},Zl={widehat:"^",widecheck:"ˇ",widetilde:"~",utilde:"~",overleftarrow:"←",underleftarrow:"←",xleftarrow:"←",overrightarrow:"→",underrightarrow:"→",xrightarrow:"→",underbrace:"⏟",overbrace:"⏞",underbracket:"⎵",overbracket:"⎴",overgroup:"⏠",undergroup:"⏡",overleftrightarrow:"↔",underleftrightarrow:"↔",xleftrightarrow:"↔",Overrightarrow:"⇒",xRightarrow:"⇒",overleftharpoon:"↼",xleftharpoonup:"↼",overrightharpoon:"⇀",xrightharpoonup:"⇀",xLeftarrow:"⇐",xLeftrightarrow:"⇔",xhookleftarrow:"↩",xhookrightarrow:"↪",xmapsto:"↦",xrightharpoondown:"⇁",xleftharpoondown:"↽",xrightleftharpoons:"⇌",xleftrightharpoons:"⇋",xtwoheadleftarrow:"↞",xtwoheadrightarrow:"↠",xlongequal:"=",xtofrom:"⇄",xrightleftarrows:"⇄",xrightequilibrium:"⇌",xleftequilibrium:"⇋","\\cdrightarrow":"→","\\cdleftarrow":"←","\\cdlongequal":"="},Ft=function(t){var u=new F("mo",[new h0(Zl[t.replace(/^\\/,"")])]);return u.setAttribute("stretchy","true"),u},Xl={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overbracket:[["leftbracketover","rightbracketover"],1.6,440],underbracket:[["leftbracketunder","rightbracketunder"],1.6,410],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]},Yl=new Set(["widehat","widecheck","widetilde","utilde"]),Tt=function(t,u){function r(){var s=4e5,o=t.label.slice(1);if(Yl.has(o)&&"base"in t){var h=t.base.type==="ordgroup"?t.base.body.length:1,f,p,x;if(h>5)o==="widehat"||o==="widecheck"?(f=420,s=2364,x=.42,p=o+"4"):(f=312,s=2340,x=.34,p="tilde4");else{var b=[1,1,2,2,3,3][h];o==="widehat"||o==="widecheck"?(s=[0,1062,2364,2364,2364][b],f=[0,239,300,360,420][b],x=[0,.24,.3,.3,.36,.42][b],p=o+b):(s=[0,600,1033,2339,2340][b],f=[0,260,286,306,312][b],x=[0,.26,.286,.3,.306,.34][b],p="tilde"+b)}var y=new de(p),k=new J0([y],{width:"100%",height:M(x),viewBox:"0 0 "+s+" "+f,preserveAspectRatio:"none"});return{span:fe([],[k],u),minWidth:0,height:x}}else{var A=[],S=Xl[o];if(!S)throw new Error('No SVG data for "'+o+'".');var[C,_,T]=S,B=T/1e3,q=C.length,O,U;if(q===1){if(S.length!==4)throw new Error('Expected 4-tuple for single-path SVG data "'+o+'".');O=["hide-tail"],U=[S[3]]}else if(q===2)O=["halfarrow-left","halfarrow-right"],U=["xMinYMin","xMaxYMin"];else if(q===3)O=["brace-left","brace-center","brace-right"],U=["xMinYMin","xMidYMin","xMaxYMin"];else throw new Error(`Correct katexImagesData or update code here to support
267
- `+q+" children.");for(var $=0;$<q;$++){var u0=new de(C[$]),f0=new J0([u0],{width:"400em",height:M(B),viewBox:"0 0 "+s+" "+T,preserveAspectRatio:U[$]+" slice"}),e0=fe([O[$]],[f0],u);if(q===1)return{span:e0,minWidth:_,height:B};e0.style.height=M(B),A.push(e0)}return{span:E(["stretchy"],A,u),minWidth:_,height:B}}}var{span:n,minWidth:a,height:i}=r();return n.height=i,n.style.height=M(i),a>0&&(n.style.minWidth=M(a)),n},Kl=function(t,u,r,n,a){var i,s=t.height+t.depth+r+n;if(/fbox|color|angl/.test(u)){if(i=E(["stretchy",u],[],a),u==="fbox"){var o=a.color&&a.getColor();o&&(i.style.borderColor=o)}}else{var h=[];/^[bx]cancel$/.test(u)&&h.push(new bu({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(u)&&h.push(new bu({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));var f=new J0(h,{width:"100%",height:M(s)});i=fe([],[f],a)}return i.height=s,i.style.height=M(s),i},Jl={bin:1,close:1,inner:1,open:1,punct:1,rel:1},Ql={"accent-token":1,mathord:1,"op-token":1,spacing:1,textord:1};function eo(e){return e in Jl}function G(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function Mt(e){var t=Bt(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function Bt(e){return e&&(e.type==="atom"||Ql.hasOwnProperty(e.type))?e:null}var fn=e=>{if(e instanceof F0)return e;if(Sl(e)&&e.children.length===1)return fn(e.children[0])},mn=(e,t)=>{var u,r,n;e&&e.type==="supsub"?(r=G(e.base,"accent"),u=r.base,e.base=u,n=Cl(Z(e,t)),e.base=r):(r=G(e,"accent"),u=r.base);var a=Z(u,t.havingCrampedStyle()),i=r.isShifty&&Q0(u),s=0;if(i){var o,h;s=(o=(h=fn(a))==null?void 0:h.skew)!=null?o:0}var f=r.label==="\\c",p=f?a.height+a.depth:Math.min(a.height,t.fontMetrics().xHeight),x;if(r.isStretchy)x=Tt(r,t),x=W({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"elem",elem:x,wrapperClasses:["svg-align"],wrapperStyle:s>0?{width:"calc(100% - "+M(2*s)+")",marginLeft:M(2*s)}:void 0}]});else{var b,y;r.label==="\\vec"?(b=an("vec",t),y=nn.vec[1]):(b=zt({type:"textord",mode:r.mode,text:r.label},t),b=Dl(b),b.italic=0,y=b.width,f&&(p+=b.depth)),x=E(["accent-body"],[b]);var k=r.label==="\\textcircled";k&&(x.classes.push("accent-full"),p=a.height);var A=s;k||(A-=y/2),x.style.left=M(A),r.label==="\\textcircled"&&(x.style.top=".2em"),x=W({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"kern",size:-p},{type:"elem",elem:x}]})}var S=E(["mord","accent"],[x],t);return n?(n.children[0]=S,n.height=Math.max(S.height,n.height),n.classes[0]="mord",n):S},to=(e,t)=>{var u=e.isStretchy?Ft(e.label):new F("mo",[R0(e.label,e.mode)]),r=new F("mover",[J(e.base,t),u]);return r.setAttribute("accent","true"),r},uo=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map(e=>"\\"+e).join("|"));R({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],numArgs:1,handler:(e,t)=>{var u=yt(t[0]),r=!uo.test(e.funcName),n=!r||e.funcName==="\\widehat"||e.funcName==="\\widetilde"||e.funcName==="\\widecheck";return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:r,isShifty:n,base:u}},htmlBuilder:mn,mathmlBuilder:to});R({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"],handler:(e,t)=>{var u=t[0],r=e.parser.mode;return r==="math"&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),r="text"),{type:"accent",mode:r,label:e.funcName,isStretchy:!1,isShifty:!0,base:u}}});R({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],numArgs:1,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0];return{type:"accentUnder",mode:u.mode,label:r,base:n}},htmlBuilder:(e,t)=>{var u=Z(e.base,t),r=Tt(e,t),n=e.label==="\\utilde"?.12:0,a=W({positionType:"top",positionData:u.height,children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:n},{type:"elem",elem:u}]});return E(["mord","accentunder"],[a],t)},mathmlBuilder:(e,t)=>{var u=Ft(e.label),r=new F("munder",[J(e.base,t),u]);return r.setAttribute("accentunder","true"),r}});var ot=e=>{var t=new F("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};R({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],numArgs:1,numOptionalArgs:1,handler(e,t,u){var{parser:r,funcName:n}=e;return{type:"xArrow",mode:r.mode,label:n,body:t[0],below:u[0]}},htmlBuilder(e,t){var u=t.style,r=t.havingStyle(u.sup()),n=Fe(Z(e.body,r,t),t),a=e.label.slice(0,2)==="\\x"?"x":"cd";n.classes.push(a+"-arrow-pad");var i;e.below&&(r=t.havingStyle(u.sub()),i=Fe(Z(e.below,r,t),t),i.classes.push(a+"-arrow-pad"));var s=Tt(e,t),o=-t.fontMetrics().axisHeight+.5*s.height,h=-t.fontMetrics().axisHeight-.5*s.height-.111;(n.depth>.25||e.label==="\\xleftequilibrium")&&(h-=n.depth);var f;if(i){var p=-t.fontMetrics().axisHeight+i.height+.5*s.height+.111;f=W({positionType:"individualShift",children:[{type:"elem",elem:n,shift:h},{type:"elem",elem:s,shift:o,wrapperClasses:["svg-align"]},{type:"elem",elem:i,shift:p}]})}else f=W({positionType:"individualShift",children:[{type:"elem",elem:n,shift:h},{type:"elem",elem:s,shift:o,wrapperClasses:["svg-align"]}]});return E(["mrel","x-arrow"],[f],t)},mathmlBuilder(e,t){var u=Ft(e.label);u.setAttribute("minsize",e.label.charAt(0)==="x"?"1.75em":"3.0em");var r;if(e.body){var n=ot(J(e.body,t));if(e.below){var a=ot(J(e.below,t));r=new F("munderover",[u,a,n])}else r=new F("mover",[u,n])}else if(e.below){var i=ot(J(e.below,t));r=new F("munder",[u,i])}else r=ot(),r=new F("mover",[u,r]);return r}});function ro(e,t){var u=p0(e.body,t,!0);return E([e.mclass],u,t)}function no(e,t){var u,r=M0(e.body,t);return e.mclass==="minner"?u=new F("mpadded",r):e.mclass==="mord"?e.isCharacterBox?(u=r[0],u.type="mi"):u=new F("mi",r):(e.isCharacterBox?(u=r[0],u.type="mo"):u=new F("mo",r),e.mclass==="mbin"?(u.attributes.lspace="0.22em",u.attributes.rspace="0.22em"):e.mclass==="mpunct"?(u.attributes.lspace="0em",u.attributes.rspace="0.17em"):(e.mclass==="mopen"||e.mclass==="mclose")&&(u.attributes.lspace="0em",u.attributes.rspace="0em")),u}R({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],numArgs:1,primitive:!0,handler(e,t){var{parser:u,funcName:r}=e,n=t[0];return{type:"mclass",mode:u.mode,mclass:"m"+r.slice(5),body:c0(n),isCharacterBox:Q0(n)}},htmlBuilder:ro,mathmlBuilder:no});var qt=e=>{var t=e.type==="ordgroup"&&e.body.length?e.body[0]:e;return t.type==="atom"&&(t.family==="bin"||t.family==="rel")?"m"+t.family:"mord"};R({type:"mclass",names:["\\@binrel"],numArgs:2,handler(e,t){var{parser:u}=e;return{type:"mclass",mode:u.mode,mclass:qt(t[0]),body:c0(t[1]),isCharacterBox:Q0(t[1])}}});R({type:"mclass",names:["\\stackrel","\\overset","\\underset"],numArgs:2,handler(e,t){var{parser:u,funcName:r}=e,n=t[1],a=t[0],i;r!=="\\stackrel"?i=qt(n):i="mrel";var s={type:"op",mode:n.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:r!=="\\stackrel",body:c0(n)},o=r==="\\underset"?{type:"supsub",mode:a.mode,base:s,sub:a}:{type:"supsub",mode:a.mode,base:s,sup:a};return{type:"mclass",mode:u.mode,mclass:i,body:[o],isCharacterBox:Q0(o)}}});R({type:"pmb",names:["\\pmb"],numArgs:1,allowedInText:!0,handler(e,t){var{parser:u}=e;return{type:"pmb",mode:u.mode,mclass:qt(t[0]),body:c0(t[0])}},htmlBuilder(e,t){var u=p0(e.body,t,!0),r=E([e.mclass],u,t);return r.style.textShadow="0.02em 0.01em 0.04px",r},mathmlBuilder(e,t){var u=M0(e.body,t),r=new F("mstyle",u);return r.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),r}});var ao={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},Gr=()=>({type:"styling",body:[],mode:"math",style:"display",resetFont:!0}),Vr=e=>e.type==="textord"&&e.text==="@",io=(e,t)=>(e.type==="mathord"||e.type==="atom")&&e.text===t;function so(e,t,u){var r=ao[e];switch(r){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return u.callFunction(r,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{var n=u.callFunction("\\\\cdleft",[t[0]],[]),a={type:"atom",text:r,mode:"math",family:"rel"},i=u.callFunction("\\Big",[a],[]),s=u.callFunction("\\\\cdright",[t[1]],[]),o={type:"ordgroup",mode:"math",body:[n,i,s]};return u.callFunction("\\\\cdparent",[o],[])}case"\\\\cdlongequal":return u.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{var h={type:"textord",text:"\\Vert",mode:"math"};return u.callFunction("\\Big",[h],[])}default:return{type:"textord",text:" ",mode:"math"}}}function lo(e){var t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();var u=e.fetch().text;if(u==="&"||u==="\\\\")e.consume();else if(u==="\\end"){t[t.length-1].length===0&&t.pop();break}else throw new z("Expected \\\\ or \\cr or \\end",e.nextToken)}for(var r=[],n=[r],a=0;a<t.length;a++){for(var i=t[a],s=Gr(),o=0;o<i.length;o++)if(!Vr(i[o]))s.body.push(i[o]);else{r.push(s),o+=1;var h=Mt(i[o]).text,f=new Array(2);if(f[0]={type:"ordgroup",mode:"math",body:[]},f[1]={type:"ordgroup",mode:"math",body:[]},!"=|.".includes(h))if("<>AV".includes(h))for(var p=0;p<2;p++){for(var x=!0,b=o+1;b<i.length;b++){if(io(i[b],h)){x=!1,o=b;break}if(Vr(i[b]))throw new z("Missing a "+h+" character to complete a CD arrow.",i[b]);f[p].body.push(i[b])}if(x)throw new z("Missing a "+h+" character to complete a CD arrow.",i[o])}else throw new z('Expected one of "<>AV=|." after @',i[o]);var y=so(h,f,e),k={type:"styling",body:[y],mode:"math",style:"display",resetFont:!0};r.push(k),s=Gr()}a%2===0?r.push(s):r.shift(),r=[],n.push(r)}e.gullet.endGroup(),e.gullet.endGroup();var A=new Array(n[0].length).fill({type:"align",align:"c",pregap:.25,postgap:.25});return{type:"array",mode:"math",body:n,arraystretch:1,addJot:!0,rowGaps:[null],cols:A,colSeparationType:"CD",hLinesBeforeRow:new Array(n.length+1).fill([])}}R({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],numArgs:1,handler(e,t){var{parser:u,funcName:r}=e;return{type:"cdlabel",mode:u.mode,side:r.slice(4),label:t[0]}},htmlBuilder(e,t){var u=t.havingStyle(t.style.sup()),r=Fe(Z(e.label,u,t),t);return r.classes.push("cd-label-"+e.side),r.style.bottom=M(.8-r.depth),r.height=0,r.depth=0,r},mathmlBuilder(e,t){var u=new F("mrow",[J(e.label,t)]);return u=new F("mpadded",[u]),u.setAttribute("width","0"),e.side==="left"&&u.setAttribute("lspace","-1width"),u.setAttribute("voffset","0.7em"),u=new F("mstyle",[u]),u.setAttribute("displaystyle","false"),u.setAttribute("scriptlevel","1"),u}});R({type:"cdlabelparent",names:["\\\\cdparent"],numArgs:1,handler(e,t){var{parser:u}=e;return{type:"cdlabelparent",mode:u.mode,fragment:t[0]}},htmlBuilder(e,t){var u=Fe(Z(e.fragment,t),t);return u.classes.push("cd-vert-arrow"),u},mathmlBuilder(e,t){return new F("mrow",[J(e.fragment,t)])}});R({type:"textord",names:["\\@char"],numArgs:1,allowedInText:!0,handler(e,t){for(var{parser:u}=e,r=G(t[0],"ordgroup"),n=r.body,a="",i=0;i<n.length;i++){var s=G(n[i],"textord");a+=s.text}var o=parseInt(a),h;if(isNaN(o))throw new z("\\@char has non-numeric argument "+a);if(o<0||o>=1114111)throw new z("\\@char with invalid code point "+a);return o<=65535?h=String.fromCharCode(o):(o-=65536,h=String.fromCharCode((o>>10)+55296,(o&1023)+56320)),{type:"textord",mode:u.mode,text:h}}});var oo=(e,t)=>{var u=p0(e.body,t.withColor(e.color),!1);return te(u)},co=(e,t)=>{var u=M0(e.body,t.withColor(e.color)),r=new F("mstyle",u);return r.setAttribute("mathcolor",e.color),r};R({type:"color",names:["\\textcolor"],numArgs:2,allowedInText:!0,argTypes:["color","original"],handler(e,t){var{parser:u}=e,r=G(t[0],"color-token").color,n=t[1];return{type:"color",mode:u.mode,color:r,body:c0(n)}},htmlBuilder:oo,mathmlBuilder:co});R({type:"color",names:["\\color"],numArgs:1,allowedInText:!0,argTypes:["color"],handler(e,t){var{parser:u,breakOnTokenText:r}=e,n=G(t[0],"color-token").color;u.gullet.macros.set("\\current@color",n);var a=u.parseExpression(!0,r);return{type:"color",mode:u.mode,color:n,body:a}}});R({type:"cr",names:["\\\\"],numArgs:0,numOptionalArgs:0,allowedInText:!0,handler(e,t,u){var{parser:r}=e,n=r.gullet.future().text==="["?r.parseSizeGroup(!0):null,a=!r.settings.displayMode||!r.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:r.mode,newLine:a,size:n&&G(n,"size").value}},htmlBuilder(e,t){var u=E(["mspace"],[],t);return e.newLine&&(u.classes.push("newline"),e.size&&(u.style.marginTop=M(s0(e.size,t)))),u},mathmlBuilder(e,t){var u=new F("mspace");return e.newLine&&(u.setAttribute("linebreak","newline"),e.size&&u.setAttribute("height",M(s0(e.size,t)))),u}});var Eu={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},pn=e=>{var t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new z("Expected a control sequence",e);return t},ho=e=>{var t=e.gullet.popToken();return t.text==="="&&(t=e.gullet.popToken(),t.text===" "&&(t=e.gullet.popToken())),t},bn=(e,t,u,r)=>{var n=e.gullet.macros.get(u.text);n==null&&(u.noexpand=!0,n={tokens:[u],numArgs:0,unexpandable:!e.gullet.isExpandable(u.text)}),e.gullet.macros.set(t,n,r)};R({type:"internal",names:["\\global","\\long","\\\\globallong"],numArgs:0,allowedInText:!0,handler(e){var{parser:t,funcName:u}=e;t.consumeSpaces();var r=t.fetch();if(Eu[r.text])return(u==="\\global"||u==="\\\\globallong")&&(r.text=Eu[r.text]),G(t.parseFunction(),"internal");throw new z("Invalid token after macro prefix",r)}});R({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],numArgs:0,allowedInText:!0,primitive:!0,handler(e){var{parser:t,funcName:u}=e,r=t.gullet.popToken(),n=r.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(n))throw new z("Expected a control sequence",r);for(var a=0,i,s=[[]];t.gullet.future().text!=="{";)if(r=t.gullet.popToken(),r.text==="#"){if(t.gullet.future().text==="{"){i=t.gullet.future(),s[a].push("{");break}if(r=t.gullet.popToken(),!/^[1-9]$/.test(r.text))throw new z('Invalid argument number "'+r.text+'"');if(parseInt(r.text)!==a+1)throw new z('Argument number "'+r.text+'" out of order');a++,s.push([])}else{if(r.text==="EOF")throw new z("Expected a macro definition");s[a].push(r.text)}var{tokens:o}=t.gullet.consumeArg();return i&&o.unshift(i),(u==="\\edef"||u==="\\xdef")&&(o=t.gullet.expandTokens(o),o.reverse()),t.gullet.macros.set(n,{tokens:o,numArgs:a,delimiters:s},u===Eu[u]),{type:"internal",mode:t.mode}}});R({type:"internal",names:["\\let","\\\\globallet"],numArgs:0,allowedInText:!0,primitive:!0,handler(e){var{parser:t,funcName:u}=e,r=pn(t.gullet.popToken());t.gullet.consumeSpaces();var n=ho(t);return bn(t,r,n,u==="\\\\globallet"),{type:"internal",mode:t.mode}}});R({type:"internal",names:["\\futurelet","\\\\globalfuture"],numArgs:0,allowedInText:!0,primitive:!0,handler(e){var{parser:t,funcName:u}=e,r=pn(t.gullet.popToken()),n=t.gullet.popToken(),a=t.gullet.popToken();return bn(t,r,a,u==="\\\\globalfuture"),t.gullet.pushToken(a),t.gullet.pushToken(n),{type:"internal",mode:t.mode}}});var Re=function(t,u,r){var n=n0.math[t]&&n0.math[t].replace,a=ju(n||t,u,r);if(!a)throw new Error("Unsupported symbol "+t+" and font size "+u+".");return a},Zu=function(t,u,r,n){var a=r.havingBaseStyle(u),i=E(n.concat(a.sizingClasses(r)),[t],r),s=a.sizeMultiplier/r.sizeMultiplier;return i.height*=s,i.depth*=s,i.maxFontSize=a.sizeMultiplier,i},vn=function(t,u,r){var n=u.havingBaseStyle(r),a=(1-u.sizeMultiplier/n.sizeMultiplier)*u.fontMetrics().axisHeight;t.classes.push("delimcenter"),t.style.top=M(a),t.height-=a,t.depth+=a},fo=function(t,u,r,n,a,i){var s=w0(t,"Main-Regular",a,n),o=Zu(s,u,n,i);return vn(o,n,u),o},mo=function(t,u,r,n){return w0(t,"Size"+u+"-Regular",r,n)},gn=function(t,u,r,n,a,i){var s=mo(t,u,a,n),o=Zu(E(["delimsizing","size"+u],[s],n),j.TEXT,n,i);return r&&vn(o,n,j.TEXT),o},Qt=function(t,u,r){var n;u==="Size1-Regular"?n="delim-size1":n="delim-size4";var a=E(["delimsizinginner",n],[E([],[w0(t,u,r)])]);return{type:"elem",elem:a}},eu=function(t,u,r){var n=$0["Size4-Regular"][t.charCodeAt(0)]?$0["Size4-Regular"][t.charCodeAt(0)][4]:$0["Size1-Regular"][t.charCodeAt(0)][4],a=new de("inner",vl(t,Math.round(1e3*u))),i=new J0([a],{width:M(n),height:M(u),style:"width:"+M(n),viewBox:"0 0 "+1e3*n+" "+Math.round(1e3*u),preserveAspectRatio:"xMinYMin"}),s=fe([],[i],r);return s.height=u,s.style.height=M(u),s.style.width=M(n),{type:"elem",elem:s}},_u=.008,ct={type:"kern",size:-1*_u},po=new Set(["|","\\lvert","\\rvert","\\vert"]),bo=new Set(["\\|","\\lVert","\\rVert","\\Vert"]),xn=function(t,u,r,n,a,i){var s,o,h,f,p="",x=0;s=h=f=t,o=null;var b="Size1-Regular";t==="\\uparrow"?h=f="⏐":t==="\\Uparrow"?h=f="‖":t==="\\downarrow"?s=h="⏐":t==="\\Downarrow"?s=h="‖":t==="\\updownarrow"?(s="\\uparrow",h="⏐",f="\\downarrow"):t==="\\Updownarrow"?(s="\\Uparrow",h="‖",f="\\Downarrow"):po.has(t)?(h="∣",p="vert",x=333):bo.has(t)?(h="∥",p="doublevert",x=556):t==="["||t==="\\lbrack"?(s="⎡",h="⎢",f="⎣",b="Size4-Regular",p="lbrack",x=667):t==="]"||t==="\\rbrack"?(s="⎤",h="⎥",f="⎦",b="Size4-Regular",p="rbrack",x=667):t==="\\lfloor"||t==="⌊"?(h=s="⎢",f="⎣",b="Size4-Regular",p="lfloor",x=667):t==="\\lceil"||t==="⌈"?(s="⎡",h=f="⎢",b="Size4-Regular",p="lceil",x=667):t==="\\rfloor"||t==="⌋"?(h=s="⎥",f="⎦",b="Size4-Regular",p="rfloor",x=667):t==="\\rceil"||t==="⌉"?(s="⎤",h=f="⎥",b="Size4-Regular",p="rceil",x=667):t==="("||t==="\\lparen"?(s="⎛",h="⎜",f="⎝",b="Size4-Regular",p="lparen",x=875):t===")"||t==="\\rparen"?(s="⎞",h="⎟",f="⎠",b="Size4-Regular",p="rparen",x=875):t==="\\{"||t==="\\lbrace"?(s="⎧",o="⎨",f="⎩",h="⎪",b="Size4-Regular"):t==="\\}"||t==="\\rbrace"?(s="⎫",o="⎬",f="⎭",h="⎪",b="Size4-Regular"):t==="\\lgroup"||t==="⟮"?(s="⎧",f="⎩",h="⎪",b="Size4-Regular"):t==="\\rgroup"||t==="⟯"?(s="⎫",f="⎭",h="⎪",b="Size4-Regular"):t==="\\lmoustache"||t==="⎰"?(s="⎧",f="⎭",h="⎪",b="Size4-Regular"):(t==="\\rmoustache"||t==="⎱")&&(s="⎫",f="⎩",h="⎪",b="Size4-Regular");var y=Re(s,b,a),k=y.height+y.depth,A=Re(h,b,a),S=A.height+A.depth,C=Re(f,b,a),_=C.height+C.depth,T=0,B=1;if(o!==null){var q=Re(o,b,a);T=q.height+q.depth,B=2}var O=k+_+T,U=Math.max(0,Math.ceil((u-O)/(B*S))),$=O+U*B*S,u0=n.fontMetrics().axisHeight;r&&(u0*=n.sizeMultiplier);var f0=$/2-u0,e0=[];if(p.length>0){var N0=$-k-_,x0=Math.round($*1e3),r0=gl(p,Math.round(N0*1e3)),E0=new de(p,r0),ue=M(x/1e3),N=M(x0/1e3),L=new J0([E0],{width:ue,height:N,viewBox:"0 0 "+x+" "+x0}),l0=fe([],[L],n);l0.height=x0/1e3,l0.style.width=ue,l0.style.height=N,e0.push({type:"elem",elem:l0})}else{if(e0.push(Qt(f,b,a)),e0.push(ct),o===null){var V=$-k-_+2*_u;e0.push(eu(h,V,n))}else{var t0=($-k-_-T)/2+2*_u;e0.push(eu(h,t0,n)),e0.push(ct),e0.push(Qt(o,b,a)),e0.push(ct),e0.push(eu(h,t0,n))}e0.push(ct),e0.push(Qt(s,b,a))}var K=n.havingBaseStyle(j.TEXT),D0=W({positionType:"bottom",positionData:f0,children:e0});return Zu(E(["delimsizing","mult"],[D0],K),j.TEXT,n,i)},tu=80,uu=.08,ru=function(t,u,r,n,a){var i=bl(t,n,r),s=new de(t,i),o=new J0([s],{width:"400em",height:M(u),viewBox:"0 0 400000 "+r,preserveAspectRatio:"xMinYMin slice"});return fe(["hide-tail"],[o],a)},vo=function(t,u){var r=u.havingBaseSizing(),n=Dn("\\surd",t*r.sizeMultiplier,An,r),a=r.sizeMultiplier,i=Math.max(0,u.minRuleThickness-u.fontMetrics().sqrtRuleThickness),s,o,h,f,p;return n.type==="small"?(f=1e3+1e3*i+tu,t<1?a=1:t<1.4&&(a=.7),o=(1+i+uu)/a,h=(1+i)/a,s=ru("sqrtMain",o,f,i,u),s.style.minWidth="0.853em",p=.833/a):n.type==="large"?(f=(1e3+tu)*Ie[n.size],h=(Ie[n.size]+i)/a,o=(Ie[n.size]+i+uu)/a,s=ru("sqrtSize"+n.size,o,f,i,u),s.style.minWidth="1.02em",p=1/a):(o=t+i+uu,h=t+i,f=Math.floor(1e3*t+i)+tu,s=ru("sqrtTall",o,f,i,u),s.style.minWidth="0.742em",p=1.056),s.height=h,s.style.height=M(o),{span:s,advanceWidth:p,ruleWidth:(u.fontMetrics().sqrtRuleThickness+i)*a}},yn=new Set(["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","\\surd"]),go=new Set(["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱"]),wn=new Set(["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"]),Ie=[0,1.2,1.8,2.4,3],kn=function(t,u,r,n,a){if(t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle"),yn.has(t)||wn.has(t))return gn(t,u,!1,r,n,a);if(go.has(t))return xn(t,Ie[u],!1,r,n,a);throw new z("Illegal delimiter: '"+t+"'")},xo=[{type:"small",style:j.SCRIPTSCRIPT},{type:"small",style:j.SCRIPT},{type:"small",style:j.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],yo=[{type:"small",style:j.SCRIPTSCRIPT},{type:"small",style:j.SCRIPT},{type:"small",style:j.TEXT},{type:"stack"}],An=[{type:"small",style:j.SCRIPTSCRIPT},{type:"small",style:j.SCRIPT},{type:"small",style:j.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],wo=function(t){if(t.type==="small")return"Main-Regular";if(t.type==="large")return"Size"+t.size+"-Regular";if(t.type==="stack")return"Size4-Regular";var u=t.type;throw new Error("Add support for delim type '"+u+"' here.")},Dn=function(t,u,r,n){for(var a=Math.min(2,3-n.style.size),i=a;i<r.length;i++){var s=r[i];if(s.type==="stack")break;var o=Re(t,wo(s),"math"),h=o.height+o.depth;if(s.type==="small"){var f=n.havingBaseStyle(s.style);h*=f.sizeMultiplier}if(h>u)return s}return r[r.length-1]},zu=function(t,u,r,n,a,i){t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle");var s;wn.has(t)?s=xo:yn.has(t)?s=An:s=yo;var o=Dn(t,u,s,n);return o.type==="small"?fo(t,o.style,r,n,a,i):o.type==="large"?gn(t,o.size,r,n,a,i):xn(t,u,r,n,a,i)},nu=function(t,u,r,n,a,i){var s=n.fontMetrics().axisHeight*n.sizeMultiplier,o=901,h=5/n.fontMetrics().ptPerEm,f=Math.max(u-s,r+s),p=Math.max(f/500*o,2*f-h);return zu(t,p,!0,n,a,i)},Wr={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},ko=new Set(["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","<",">","\\langle","⟨","\\rangle","⟩","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."]);function Zr(e){return"isMiddle"in e}function Rt(e,t){var u=Bt(e);if(u&&ko.has(u.text))return u;throw u?new z("Invalid delimiter '"+u.text+"' after '"+t.funcName+"'",e):new z("Invalid delimiter type '"+e.type+"'",e)}R({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],numArgs:1,argTypes:["primitive"],handler:(e,t)=>{var u=Rt(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:Wr[e.funcName].size,mclass:Wr[e.funcName].mclass,delim:u.text}},htmlBuilder:(e,t)=>e.delim==="."?E([e.mclass]):kn(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{var t=[];e.delim!=="."&&t.push(R0(e.delim,e.mode));var u=new F("mo",t);e.mclass==="mopen"||e.mclass==="mclose"?u.setAttribute("fence","true"):u.setAttribute("fence","false"),u.setAttribute("stretchy","true");var r=M(Ie[e.size]);return u.setAttribute("minsize",r),u.setAttribute("maxsize",r),u}});function Xr(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}R({type:"leftright-right",names:["\\right"],numArgs:1,primitive:!0,handler:(e,t)=>{var u=e.parser.gullet.macros.get("\\current@color");if(u&&typeof u!="string")throw new z("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:Rt(t[0],e).text,color:u}}});R({type:"leftright",names:["\\left"],numArgs:1,primitive:!0,handler:(e,t)=>{var u=Rt(t[0],e),r=e.parser;++r.leftrightDepth;var n=r.parseExpression(!1);--r.leftrightDepth,r.expect("\\right",!1);var a=G(r.parseFunction(),"leftright-right");return{type:"leftright",mode:r.mode,body:n,left:u.text,right:a.delim,rightColor:a.color}},htmlBuilder:(e,t)=>{Xr(e);for(var u=p0(e.body,t,!0,["mopen","mclose"]),r=0,n=0,a=!1,i=0;i<u.length;i++){var s=u[i];Zr(s)?a=!0:(r=Math.max(u[i].height,r),n=Math.max(u[i].depth,n))}r*=t.sizeMultiplier,n*=t.sizeMultiplier;var o;if(e.left==="."?o=Ge(t,["mopen"]):o=nu(e.left,r,n,t,e.mode,["mopen"]),u.unshift(o),a)for(var h=1;h<u.length;h++){var f=u[h];if(Zr(f)){var p=f.isMiddle;u[h]=nu(p.delim,r,n,p.options,e.mode,[])}}var x;if(e.right===".")x=Ge(t,["mclose"]);else{var b=e.rightColor?t.withColor(e.rightColor):t;x=nu(e.right,r,n,b,e.mode,["mclose"])}return u.push(x),E(["minner"],u,t)},mathmlBuilder:(e,t)=>{Xr(e);var u=M0(e.body,t);if(e.left!=="."){var r=new F("mo",[R0(e.left,e.mode)]);r.setAttribute("fence","true"),u.unshift(r)}if(e.right!=="."){var n=new F("mo",[R0(e.right,e.mode)]);n.setAttribute("fence","true"),e.rightColor&&n.setAttribute("mathcolor",e.rightColor),u.push(n)}return Vu(u)}});R({type:"middle",names:["\\middle"],numArgs:1,primitive:!0,handler:(e,t)=>{var u=Rt(t[0],e);if(!e.parser.leftrightDepth)throw new z("\\middle without preceding \\left",u);return{type:"middle",mode:e.parser.mode,delim:u.text}},htmlBuilder:(e,t)=>{var u;return e.delim==="."?u=Ge(t,[]):(u=kn(e.delim,1,t,e.mode,[]),u.isMiddle={delim:e.delim,options:t}),u},mathmlBuilder:(e,t)=>{var u=e.delim==="\\vert"||e.delim==="|"?R0("|","text"):R0(e.delim,e.mode),r=new F("mo",[u]);return r.setAttribute("fence","true"),r.setAttribute("lspace","0.05em"),r.setAttribute("rspace","0.05em"),r}});var Ao=(e,t)=>{var u=Fe(Z(e.body,t),t),r=e.label.slice(1),n=t.sizeMultiplier,a,i,s=Q0(e.body);if(r==="sout")a=E(["stretchy","sout"]),a.height=t.fontMetrics().defaultRuleThickness/n,i=-.5*t.fontMetrics().xHeight;else if(r==="phase"){var o=s0({number:.6,unit:"pt"},t),h=s0({number:.35,unit:"ex"},t),f=t.havingBaseSizing();n=n/f.sizeMultiplier;var p=u.height+u.depth+o+h;u.style.paddingLeft=M(p/2+o);var x=Math.floor(1e3*p*n),b=ml(x),y=new J0([new de("phase",b)],{width:"400em",height:M(x/1e3),viewBox:"0 0 400000 "+x,preserveAspectRatio:"xMinYMin slice"});a=fe(["hide-tail"],[y],t),a.style.height=M(p),i=u.depth+o+h}else{/cancel/.test(r)?s||u.classes.push("cancel-pad"):r==="angl"?u.classes.push("anglpad"):u.classes.push("boxpad");var k,A,S=0;/box/.test(r)?(S=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),k=t.fontMetrics().fboxsep+(r==="colorbox"?0:S),A=k):r==="angl"?(S=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),k=4*S,A=Math.max(0,.25-u.depth)):(k=s?.2:0,A=k),a=Kl(u,r,k,A,t),/fbox|boxed|fcolorbox/.test(r)?(a.style.borderStyle="solid",a.style.borderWidth=M(S)):r==="angl"&&S!==.049&&(a.style.borderTopWidth=M(S),a.style.borderRightWidth=M(S)),i=u.depth+A,e.backgroundColor&&(a.style.backgroundColor=e.backgroundColor,e.borderColor&&(a.style.borderColor=e.borderColor))}var C;if(e.backgroundColor)C=W({positionType:"individualShift",children:[{type:"elem",elem:a,shift:i},{type:"elem",elem:u,shift:0}]});else{var _=/cancel|phase/.test(r)?["svg-align"]:[];C=W({positionType:"individualShift",children:[{type:"elem",elem:u,shift:0},{type:"elem",elem:a,shift:i,wrapperClasses:_}]})}return/cancel/.test(r)&&(C.height=u.height,C.depth=u.depth),/cancel/.test(r)&&!s?E(["mord","cancel-lap"],[C],t):E(["mord"],[C],t)},Do=(e,t)=>{var u,r=new F(e.label.includes("colorbox")?"mpadded":"menclose",[J(e.body,t)]);switch(e.label){case"\\cancel":r.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":r.setAttribute("notation","downdiagonalstrike");break;case"\\phase":r.setAttribute("notation","phasorangle");break;case"\\sout":r.setAttribute("notation","horizontalstrike");break;case"\\fbox":r.setAttribute("notation","box");break;case"\\angl":r.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(u=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,r.setAttribute("width","+"+2*u+"pt"),r.setAttribute("height","+"+2*u+"pt"),r.setAttribute("lspace",u+"pt"),r.setAttribute("voffset",u+"pt"),e.label==="\\fcolorbox"){var n=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);r.setAttribute("style","border: "+M(n)+" solid "+e.borderColor)}break;case"\\xcancel":r.setAttribute("notation","updiagonalstrike downdiagonalstrike");break}return e.backgroundColor&&r.setAttribute("mathbackground",e.backgroundColor),r};R({type:"enclose",names:["\\colorbox"],numArgs:2,allowedInText:!0,argTypes:["color","hbox"],handler(e,t,u){var{parser:r,funcName:n}=e,a=G(t[0],"color-token").color,i=t[1];return{type:"enclose",mode:r.mode,label:n,backgroundColor:a,body:i}},htmlBuilder:Ao,mathmlBuilder:Do});R({type:"enclose",names:["\\fcolorbox"],numArgs:3,allowedInText:!0,argTypes:["color","color","hbox"],handler(e,t,u){var{parser:r,funcName:n}=e,a=G(t[0],"color-token").color,i=G(t[1],"color-token").color,s=t[2];return{type:"enclose",mode:r.mode,label:n,backgroundColor:i,borderColor:a,body:s}}});R({type:"enclose",names:["\\fbox"],numArgs:1,argTypes:["hbox"],allowedInText:!0,handler(e,t){var{parser:u}=e;return{type:"enclose",mode:u.mode,label:"\\fbox",body:t[0]}}});R({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\phase"],numArgs:1,handler(e,t){var{parser:u,funcName:r}=e,n=t[0];return{type:"enclose",mode:u.mode,label:r,body:n}}});R({type:"enclose",names:["\\sout"],numArgs:1,allowedInText:!0,handler(e,t){var{parser:u,funcName:r}=e;u.mode==="math"&&u.settings.reportNonstrict("mathVsSout","LaTeX's \\sout works only in text mode");var n=t[0];return{type:"enclose",mode:u.mode,label:r,body:n}}});R({type:"enclose",names:["\\angl"],numArgs:1,argTypes:["hbox"],allowedInText:!1,handler(e,t){var{parser:u}=e;return{type:"enclose",mode:u.mode,label:"\\angl",body:t[0]}}});var Cn={};function G0(e){for(var{type:t,names:u,props:r,handler:n,htmlBuilder:a,mathmlBuilder:i}=e,s={type:t,numArgs:r.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:n},o=0;o<u.length;++o)Cn[u[o]]=s;a&&(je[t]=a),i&&(Ue[t]=i)}var Sn={};function m(e,t){Sn[e]=t}class C0{constructor(t,u,r){this.lexer=void 0,this.start=void 0,this.end=void 0,this.lexer=t,this.start=u,this.end=r}static range(t,u){return u?!t||!t.loc||!u.loc||t.loc.lexer!==u.loc.lexer?null:new C0(t.loc.lexer,t.loc.start,u.loc.end):t&&t.loc}}class _0{constructor(t,u){this.text=void 0,this.loc=void 0,this.noexpand=void 0,this.treatAsRelax=void 0,this.text=t,this.loc=u}range(t,u){return new _0(u,C0.range(this,t))}}function Yr(e){var t=[];e.consumeSpaces();var u=e.fetch().text;for(u==="\\relax"&&(e.consume(),e.consumeSpaces(),u=e.fetch().text);u==="\\hline"||u==="\\hdashline";)e.consume(),t.push(u==="\\hdashline"),e.consumeSpaces(),u=e.fetch().text;return t}var It=e=>{var t=e.parser.settings;if(!t.displayMode)throw new z("{"+e.envName+"} can be used only in display mode.")},Co=new Set(["gather","gather*"]);function Xu(e){if(!e.includes("ed"))return!e.includes("*")}function pe(e,t,u){var{hskipBeforeAndAfter:r,addJot:n,cols:a,arraystretch:i,colSeparationType:s,autoTag:o,singleRow:h,emptySingleRow:f,maxNumCols:p,leqno:x}=t;if(e.gullet.beginGroup(),h||e.gullet.macros.set("\\cr","\\\\\\relax"),!i){var b=e.gullet.expandMacroAsText("\\arraystretch");if(b==null)i=1;else if(i=parseFloat(b),!i||i<0)throw new z("Invalid \\arraystretch: "+b)}e.gullet.beginGroup();var y=[],k=[y],A=[],S=[],C=o!=null?[]:void 0;function _(){o&&e.gullet.macros.set("\\@eqnsw","1",!0)}function T(){C&&(e.gullet.macros.get("\\df@tag")?(C.push(e.subparse([new _0("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):C.push(!!o&&e.gullet.macros.get("\\@eqnsw")==="1"))}for(_(),S.push(Yr(e));;){var B=e.parseExpression(!1,h?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup();var q={type:"ordgroup",mode:e.mode,body:B};u&&(q={type:"styling",mode:e.mode,style:u,resetFont:!0,body:[q]}),y.push(q);var O=e.fetch().text;if(O==="&"){if(p&&y.length===p){if(h||s)throw new z("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else if(O==="\\end"){T(),y.length===1&&q.type==="styling"&&q.body.length===1&&q.body[0].type==="ordgroup"&&q.body[0].body.length===0&&(k.length>1||!f)&&k.pop(),S.length<k.length+1&&S.push([]);break}else if(O==="\\\\"){e.consume();var U=void 0;e.gullet.future().text!==" "&&(U=e.parseSizeGroup(!0)),A.push(U?U.value:null),T(),S.push(Yr(e)),y=[],k.push(y),_()}else throw new z("Expected & or \\\\ or \\cr or \\end",e.nextToken)}return e.gullet.endGroup(),e.gullet.endGroup(),{type:"array",mode:e.mode,addJot:n,arraystretch:i,body:k,cols:a,rowGaps:A,hskipBeforeAndAfter:r,hLinesBeforeRow:S,colSeparationType:s,tags:C,leqno:x}}function Yu(e){return e.slice(0,1)==="d"?"display":"text"}var V0=function(t,u){var r,n,a=t.body.length,i=t.hLinesBeforeRow,s=0,o=new Array(a),h=[],f=Math.max(u.fontMetrics().arrayRuleWidth,u.minRuleThickness),p=1/u.fontMetrics().ptPerEm,x=5*p;if(t.colSeparationType&&t.colSeparationType==="small"){var b=u.havingStyle(j.SCRIPT).sizeMultiplier;x=.2778*(b/u.sizeMultiplier)}var y=t.colSeparationType==="CD"?s0({number:3,unit:"ex"},u):12*p,k=3*p,A=t.arraystretch*y,S=.7*A,C=.3*A,_=0;function T(et){for(var tt=0;tt<et.length;++tt)tt>0&&(_+=.25),h.push({pos:_,isDashed:et[tt]})}for(T(i[0]),r=0;r<t.body.length;++r){var B=t.body[r],q=S,O=C;s<B.length&&(s=B.length);var U={cells:new Array(B.length),height:0,depth:0,pos:0};for(n=0;n<B.length;++n){var $=Z(B[n],u);O<$.depth&&(O=$.depth),q<$.height&&(q=$.height),U.cells[n]=$}var u0=t.rowGaps[r],f0=0;u0&&(f0=s0(u0,u),f0>0&&(f0+=C,O<f0&&(O=f0),f0=0)),t.addJot&&r<t.body.length-1&&(O+=k),U.height=q,U.depth=O,_+=q,U.pos=_,_+=O+f0,o[r]=U,T(i[r+1])}var e0=_/2+u.fontMetrics().axisHeight,N0=t.cols||[],x0=[],r0,E0,ue=[];if(t.tags&&t.tags.some(et=>et))for(r=0;r<a;++r){var N=o[r],L=N.pos-e0,l0=t.tags[r],V=void 0;l0===!0?V=E(["eqn-num"],[],u):l0===!1?V=E([],[],u):V=E([],p0(l0,u,!0),u),V.depth=N.depth,V.height=N.height,ue.push({type:"elem",elem:V,shift:L})}for(n=0,E0=0;n<s||E0<N0.length;++n,++E0){for(var t0,K=N0[E0],D0=!0;((re=K)==null?void 0:re.type)==="separator";){var re;if(D0||(r0=E(["arraycolsep"],[]),r0.style.width=M(u.fontMetrics().doubleRuleSep),x0.push(r0)),K.separator==="|"||K.separator===":"){var Ot=K.separator==="|"?"solid":"dashed",ne=E(["vertical-separator"],[],u);ne.style.height=M(_),ne.style.borderRightWidth=M(f),ne.style.borderRightStyle=Ot,ne.style.margin="0 "+M(-f/2);var Ye=_-e0;Ye&&(ne.style.verticalAlign=M(-Ye)),x0.push(ne)}else throw new z("Invalid separator type: "+K.separator);E0++,K=N0[E0],D0=!1}if(!(n>=s)){var ke=void 0;if(n>0||t.hskipBeforeAndAfter){var ur,rr;ke=(ur=(rr=K)==null?void 0:rr.pregap)!=null?ur:x,ke!==0&&(r0=E(["arraycolsep"],[]),r0.style.width=M(ke),x0.push(r0))}var nr=[];for(r=0;r<a;++r){var Ke=o[r],Je=Ke.cells[n];if(Je){var $n=Ke.pos-e0;Je.depth=Ke.depth,Je.height=Ke.height,nr.push({type:"elem",elem:Je,shift:$n})}}var jn=W({positionType:"individualShift",children:nr}),Un=E(["col-align-"+(((t0=K)==null?void 0:t0.align)||"c")],[jn]);if(x0.push(Un),n<s-1||t.hskipBeforeAndAfter){var ar,ir;ke=(ar=(ir=K)==null?void 0:ir.postgap)!=null?ar:x,ke!==0&&(r0=E(["arraycolsep"],[]),r0.style.width=M(ke),x0.push(r0))}}}var Qe=E(["mtable"],x0);if(h.length>0){for(var Gn=ze("hline",u,f),Vn=ze("hdashline",u,f),Lt=[{type:"elem",elem:Qe,shift:0}];h.length>0;){var sr=h.pop(),lr=sr.pos-e0;sr.isDashed?Lt.push({type:"elem",elem:Vn,shift:lr}):Lt.push({type:"elem",elem:Gn,shift:lr})}Qe=W({positionType:"individualShift",children:Lt})}if(ue.length===0)return E(["mord"],[Qe],u);var Wn=W({positionType:"individualShift",children:ue}),Zn=E(["tag"],[Wn],u);return te([Qe,Zn])},So={c:"center ",l:"left ",r:"right "},W0=function(t,u){for(var r=[],n=new F("mtd",[],["mtr-glue"]),a=new F("mtd",[],["mml-eqn-num"]),i=0;i<t.body.length;i++){for(var s=t.body[i],o=[],h=0;h<s.length;h++)o.push(new F("mtd",[J(s[h],u)]));t.tags&&t.tags[i]&&(o.unshift(n),o.push(n),t.leqno?o.unshift(a):o.push(a)),r.push(new F("mtr",o))}var f=new F("mtable",r),p=t.arraystretch===.5?.1:.16+t.arraystretch-1+(t.addJot?.09:0);f.setAttribute("rowspacing",M(p));var x="",b="";if(t.cols&&t.cols.length>0){var y=t.cols,k="",A=!1,S=0,C=y.length;y[0].type==="separator"&&(x+="top ",S=1),y[y.length-1].type==="separator"&&(x+="bottom ",C-=1);for(var _=S;_<C;_++){var T=y[_];T.type==="align"?(b+=So[T.align],A&&(k+="none "),A=!0):T.type==="separator"&&A&&(k+=T.separator==="|"?"solid ":"dashed ",A=!1)}f.setAttribute("columnalign",b.trim()),/[sd]/.test(k)&&f.setAttribute("columnlines",k.trim())}if(t.colSeparationType==="align"){for(var B=t.cols||[],q="",O=1;O<B.length;O++)q+=O%2?"0em ":"1em ";f.setAttribute("columnspacing",q.trim())}else t.colSeparationType==="alignat"||t.colSeparationType==="gather"?f.setAttribute("columnspacing","0em"):t.colSeparationType==="small"?f.setAttribute("columnspacing","0.2778em"):t.colSeparationType==="CD"?f.setAttribute("columnspacing","0.5em"):f.setAttribute("columnspacing","1em");var U="",$=t.hLinesBeforeRow;x+=$[0].length>0?"left ":"",x+=$[$.length-1].length>0?"right ":"";for(var u0=1;u0<$.length-1;u0++)U+=$[u0].length===0?"none ":$[u0][0]?"dashed ":"solid ";return/[sd]/.test(U)&&f.setAttribute("rowlines",U.trim()),x!==""&&(f=new F("menclose",[f]),f.setAttribute("notation",x.trim())),t.arraystretch&&t.arraystretch<1&&(f=new F("mstyle",[f]),f.setAttribute("scriptlevel","1")),f},En=function(t,u){t.envName.includes("ed")||It(t);var r=[],n=t.envName==="split",a=pe(t.parser,{cols:r,addJot:!0,autoTag:n?void 0:Xu(t.envName),emptySingleRow:!0,colSeparationType:t.envName.includes("at")?"alignat":"align",maxNumCols:n?2:void 0,leqno:t.parser.settings.leqno},"display"),i=0,s=0,o={type:"ordgroup",mode:t.mode,body:[]};if(u[0]&&u[0].type==="ordgroup"){for(var h="",f=0;f<u[0].body.length;f++){var p=G(u[0].body[f],"textord");h+=p.text}i=Number(h),s=i*2}var x=!s;a.body.forEach(function(A){for(var S=1;S<A.length;S+=2){var C=G(A[S],"styling"),_=G(C.body[0],"ordgroup");_.body.unshift(o)}if(x)s<A.length&&(s=A.length);else{var T=A.length/2;if(i<T)throw new z("Too many math in a row: "+("expected "+i+", but got "+T),A[0])}});for(var b=0;b<s;++b){var y="r",k=0;b%2===1?y="l":b>0&&x&&(k=1),r[b]={type:"align",align:y,pregap:k,postgap:0}}return a.colSeparationType=x?"align":"alignat",a};G0({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){var u=Bt(t[0]),r=u?[t[0]]:G(t[0],"ordgroup").body,n=r.map(function(i){var s=Mt(i),o=s.text;if("lcr".includes(o))return{type:"align",align:o};if(o==="|")return{type:"separator",separator:"|"};if(o===":")return{type:"separator",separator:":"};throw new z("Unknown column alignment: "+o,i)}),a={cols:n,hskipBeforeAndAfter:!0,maxNumCols:n.length};return pe(e.parser,a,Yu(e.envName))},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){var t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")],u="c",r={hskipBeforeAndAfter:!1,cols:[{type:"align",align:u}]};if(e.envName.charAt(e.envName.length-1)==="*"){var n=e.parser;if(n.consumeSpaces(),n.fetch().text==="["){if(n.consume(),n.consumeSpaces(),u=n.fetch().text,!"lcr".includes(u))throw new z("Expected l or c or r",n.nextToken);n.consume(),n.consumeSpaces(),n.expect("]"),n.consume(),r.cols=[{type:"align",align:u}]}}var a=pe(e.parser,r,Yu(e.envName)),i=Math.max(0,...a.body.map(s=>s.length));return a.cols=new Array(i).fill({type:"align",align:u}),t?{type:"leftright",mode:e.mode,body:[a],left:t[0],right:t[1],rightColor:void 0}:a},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){var t={arraystretch:.5},u=pe(e.parser,t,"script");return u.colSeparationType="small",u},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){var u=Bt(t[0]),r=u?[t[0]]:G(t[0],"ordgroup").body,n=r.map(function(s){var o=Mt(s),h=o.text;if("lc".includes(h))return{type:"align",align:h};throw new z("Unknown column alignment: "+h,s)});if(n.length>1)throw new z("{subarray} can contain only one column");var a={cols:n,hskipBeforeAndAfter:!1,arraystretch:.5},i=pe(e.parser,a,"script");if(i.body.length>0&&i.body[0].length>1)throw new z("{subarray} can contain only one column");return i},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){var t={arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},u=pe(e.parser,t,Yu(e.envName));return{type:"leftright",mode:e.mode,body:[u],left:e.envName.includes("r")?".":"\\{",right:e.envName.includes("r")?"\\}":".",rightColor:void 0}},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:En,htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){Co.has(e.envName)&&It(e);var t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Xu(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return pe(e.parser,t,"display")},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:En,htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){It(e);var t={autoTag:Xu(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return pe(e.parser,t,"display")},htmlBuilder:V0,mathmlBuilder:W0});G0({type:"array",names:["CD"],props:{numArgs:0},handler(e){return It(e),lo(e.parser)},htmlBuilder:V0,mathmlBuilder:W0});m("\\nonumber","\\gdef\\@eqnsw{0}");m("\\notag","\\nonumber");R({type:"text",names:["\\hline","\\hdashline"],numArgs:0,allowedInText:!0,allowedInMath:!0,handler(e,t){throw new z(e.funcName+" valid only within array environment")}});var Kr=Cn;R({type:"environment",names:["\\begin","\\end"],numArgs:1,argTypes:["text"],handler(e,t){var{parser:u,funcName:r}=e,n=t[0];if(n.type!=="ordgroup")throw new z("Invalid environment name",n);for(var a="",i=0;i<n.body.length;++i)a+=G(n.body[i],"textord").text;if(r==="\\begin"){if(!Kr.hasOwnProperty(a))throw new z("No such environment: "+a,n);var s=Kr[a],{args:o,optArgs:h}=u.parseArguments("\\begin{"+a+"}",s),f={mode:u.mode,envName:a,parser:u},p=s.handler(f,o,h);u.expect("\\end",!1);var x=u.nextToken,b=G(u.parseFunction(),"environment");if(b.name!==a)throw new z("Mismatch: \\begin{"+a+"} matched by \\end{"+b.name+"}",x);return p}return{type:"environment",mode:u.mode,name:a,nameGroup:n}}});var Eo=(e,t)=>{var u=e.font,r=t.withFont(u);return Z(e.body,r)},_o=(e,t)=>{var u=e.font,r=t.withFont(u);return J(e.body,r)},Jr={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak"};R({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathsfit","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],numArgs:1,allowedInArgument:!0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=yt(t[0]),a=r in Jr?Jr[r]:r;return{type:"font",mode:u.mode,font:a.slice(1),body:n}},htmlBuilder:Eo,mathmlBuilder:_o});R({type:"mclass",names:["\\boldsymbol","\\bm"],numArgs:1,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"mclass",mode:u.mode,mclass:qt(r),body:[{type:"font",mode:u.mode,font:"boldsymbol",body:r}],isCharacterBox:Q0(r)}}});R({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],numArgs:0,allowedInText:!0,handler:(e,t)=>{var{parser:u,funcName:r,breakOnTokenText:n}=e,{mode:a}=u,i=u.parseExpression(!0,n);return{type:"font",mode:a,font:"math"+r.slice(1),body:{type:"ordgroup",mode:u.mode,body:i}}}});var zo=(e,t)=>{var u=t.style,r=u.fracNum(),n=u.fracDen(),a;a=t.havingStyle(r);var i=Z(e.numer,a,t);if(e.continued){var s=8.5/t.fontMetrics().ptPerEm,o=3.5/t.fontMetrics().ptPerEm;i.height=i.height<s?s:i.height,i.depth=i.depth<o?o:i.depth}a=t.havingStyle(n);var h=Z(e.denom,a,t),f,p,x;e.hasBarLine?(e.barSize?(p=s0(e.barSize,t),f=ze("frac-line",t,p)):f=ze("frac-line",t),p=f.height,x=f.height):(f=null,p=0,x=t.fontMetrics().defaultRuleThickness);var b,y,k;u.size===j.DISPLAY.size?(b=t.fontMetrics().num1,p>0?y=3*x:y=7*x,k=t.fontMetrics().denom1):(p>0?(b=t.fontMetrics().num2,y=x):(b=t.fontMetrics().num3,y=3*x),k=t.fontMetrics().denom2);var A;if(f){var C=t.fontMetrics().axisHeight;b-i.depth-(C+.5*p)<y&&(b+=y-(b-i.depth-(C+.5*p))),C-.5*p-(h.height-k)<y&&(k+=y-(C-.5*p-(h.height-k)));var _=-(C-.5*p);A=W({positionType:"individualShift",children:[{type:"elem",elem:h,shift:k},{type:"elem",elem:f,shift:_},{type:"elem",elem:i,shift:-b}]})}else{var S=b-i.depth-(h.height-k);S<y&&(b+=.5*(y-S),k+=.5*(y-S)),A=W({positionType:"individualShift",children:[{type:"elem",elem:h,shift:k},{type:"elem",elem:i,shift:-b}]})}a=t.havingStyle(u),A.height*=a.sizeMultiplier/t.sizeMultiplier,A.depth*=a.sizeMultiplier/t.sizeMultiplier;var T;u.size===j.DISPLAY.size?T=t.fontMetrics().delim1:u.size===j.SCRIPTSCRIPT.size?T=t.havingStyle(j.SCRIPT).fontMetrics().delim2:T=t.fontMetrics().delim2;var B,q;return e.leftDelim==null?B=Ge(t,["mopen"]):B=zu(e.leftDelim,T,!0,t.havingStyle(u),e.mode,["mopen"]),e.continued?q=E([]):e.rightDelim==null?q=Ge(t,["mclose"]):q=zu(e.rightDelim,T,!0,t.havingStyle(u),e.mode,["mclose"]),E(["mord"].concat(a.sizingClasses(t)),[B,E(["mfrac"],[A]),q],t)},Fo=(e,t)=>{var u=new F("mfrac",[J(e.numer,t),J(e.denom,t)]);if(!e.hasBarLine)u.setAttribute("linethickness","0px");else if(e.barSize){var r=s0(e.barSize,t);u.setAttribute("linethickness",M(r))}if(e.leftDelim!=null||e.rightDelim!=null){var n=[];if(e.leftDelim!=null){var a=new F("mo",[new h0(e.leftDelim.replace("\\",""))]);a.setAttribute("fence","true"),n.push(a)}if(n.push(u),e.rightDelim!=null){var i=new F("mo",[new h0(e.rightDelim.replace("\\",""))]);i.setAttribute("fence","true"),n.push(i)}return Vu(n)}return u},_n=(e,t)=>{if(!t)return e;var u={type:"styling",mode:e.mode,style:t,body:[e]};return u};R({type:"genfrac",names:["\\cfrac","\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],numArgs:2,allowedInArgument:!0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0],a=t[1],i,s=null,o=null;switch(r){case"\\cfrac":case"\\dfrac":case"\\frac":case"\\tfrac":i=!0;break;case"\\\\atopfrac":i=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=!1,s="(",o=")";break;case"\\\\bracefrac":i=!1,s="\\{",o="\\}";break;case"\\\\brackfrac":i=!1,s="[",o="]";break;default:throw new Error("Unrecognized genfrac command")}var h=r==="\\cfrac",f=null;return h||r.startsWith("\\d")?f="display":r.startsWith("\\t")&&(f="text"),_n({type:"genfrac",mode:u.mode,numer:n,denom:a,continued:h,hasBarLine:i,leftDelim:s,rightDelim:o,barSize:null},f)},htmlBuilder:zo,mathmlBuilder:Fo});R({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],numArgs:0,infix:!0,handler(e){var{parser:t,funcName:u,token:r}=e,n;switch(u){case"\\over":n="\\frac";break;case"\\choose":n="\\binom";break;case"\\atop":n="\\\\atopfrac";break;case"\\brace":n="\\\\bracefrac";break;case"\\brack":n="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:t.mode,replaceWith:n,token:r}}});var Qr=["display","text","script","scriptscript"],e1=function(t){var u=null;return t.length>0&&(u=t,u=u==="."?null:u),u};R({type:"genfrac",names:["\\genfrac"],numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"],handler(e,t){var{parser:u}=e,r=t[4],n=t[5],a=yt(t[0]),i=a.type==="atom"&&a.family==="open"?e1(a.text):null,s=yt(t[1]),o=s.type==="atom"&&s.family==="close"?e1(s.text):null,h=G(t[2],"size"),f,p=null;h.isBlank?f=!0:(p=h.value,f=p.number>0);var x=null,b=t[3];if(b.type==="ordgroup"){if(b.body.length>0){var y=G(b.body[0],"textord");x=Qr[Number(y.text)]}}else b=G(b,"textord"),x=Qr[Number(b.text)];return _n({type:"genfrac",mode:u.mode,numer:r,denom:n,continued:!1,hasBarLine:f,barSize:p,leftDelim:i,rightDelim:o},x)}});R({type:"infix",names:["\\above"],numArgs:1,argTypes:["size"],infix:!0,handler(e,t){var{parser:u,funcName:r,token:n}=e;return{type:"infix",mode:u.mode,replaceWith:"\\\\abovefrac",size:G(t[0],"size").value,token:n}}});R({type:"genfrac",names:["\\\\abovefrac"],numArgs:3,argTypes:["math","size","math"],handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0],a=G(t[1],"infix").size;if(!a)throw new Error("\\\\abovefrac expected size, but got "+String(a));var i=t[2],s=a.number>0;return{type:"genfrac",mode:u.mode,numer:n,denom:i,continued:!1,hasBarLine:s,barSize:a,leftDelim:null,rightDelim:null}}});var zn=(e,t)=>{var u=t.style,r,n;e.type==="supsub"?(r=e.sup?Z(e.sup,t.havingStyle(u.sup()),t):Z(e.sub,t.havingStyle(u.sub()),t),n=G(e.base,"horizBrace")):n=G(e,"horizBrace");var a=Z(n.base,t.havingBaseStyle(j.DISPLAY)),i=Tt(n,t),s;if(n.isOver?s=W({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"kern",size:.1},{type:"elem",elem:i,wrapperClasses:["svg-align"]}]}):s=W({positionType:"bottom",positionData:a.depth+.1+i.height,children:[{type:"elem",elem:i,wrapperClasses:["svg-align"]},{type:"kern",size:.1},{type:"elem",elem:a}]}),r){var o=E(["minner",n.isOver?"mover":"munder"],[s],t);n.isOver?s=W({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"kern",size:.2},{type:"elem",elem:r}]}):s=W({positionType:"bottom",positionData:o.depth+.2+r.height+r.depth,children:[{type:"elem",elem:r},{type:"kern",size:.2},{type:"elem",elem:o}]})}return E(["minner",n.isOver?"mover":"munder"],[s],t)},To=(e,t)=>{var u=Ft(e.label);return new F(e.isOver?"mover":"munder",[J(e.base,t),u])};R({type:"horizBrace",names:["\\overbrace","\\underbrace","\\overbracket","\\underbracket"],numArgs:1,handler(e,t){var{parser:u,funcName:r}=e;return{type:"horizBrace",mode:u.mode,label:r,isOver:r.includes("\\over"),base:t[0]}},htmlBuilder:zn,mathmlBuilder:To});R({type:"href",names:["\\href"],numArgs:2,argTypes:["url","original"],allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=t[1],n=G(t[0],"url").url;return u.settings.isTrusted({command:"\\href",url:n})?{type:"href",mode:u.mode,href:n,body:c0(r)}:u.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{var u=p0(e.body,t,!1);return ql(e.href,[],u,t)},mathmlBuilder:(e,t)=>{var u=me(e.body,t);return u instanceof F||(u=new F("mrow",[u])),u.setAttribute("href",e.href),u}});R({type:"href",names:["\\url"],numArgs:1,argTypes:["url"],allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=G(t[0],"url").url;if(!u.settings.isTrusted({command:"\\url",url:r}))return u.formatUnsupportedCmd("\\url");for(var n=[],a=0;a<r.length;a++){var i=r[a];i==="~"&&(i="\\textasciitilde"),n.push({type:"textord",mode:"text",text:i})}var s={type:"text",mode:u.mode,font:"\\texttt",body:n};return{type:"href",mode:u.mode,href:r,body:c0(s)}}});R({type:"hbox",names:["\\hbox"],numArgs:1,argTypes:["text"],allowedInText:!0,primitive:!0,handler(e,t){var{parser:u}=e;return{type:"hbox",mode:u.mode,body:c0(t[0])}},htmlBuilder(e,t){var u=p0(e.body,t.withFont(""),!1);return te(u)},mathmlBuilder(e,t){return new F("mrow",M0(e.body,t.withFont("")))}});R({type:"html",names:["\\htmlClass","\\htmlId","\\htmlStyle","\\htmlData"],numArgs:2,argTypes:["raw","original"],allowedInText:!0,handler:(e,t)=>{var{parser:u,funcName:r,token:n}=e,a=G(t[0],"raw").string,i=t[1];u.settings.strict&&u.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");var s,o={};switch(r){case"\\htmlClass":o.class=a,s={command:"\\htmlClass",class:a};break;case"\\htmlId":o.id=a,s={command:"\\htmlId",id:a};break;case"\\htmlStyle":o.style=a,s={command:"\\htmlStyle",style:a};break;case"\\htmlData":{for(var h=a.split(","),f=0;f<h.length;f++){var p=h[f],x=p.indexOf("=");if(x<0)throw new z("\\htmlData key/value '"+p+"' missing equals sign");var b=p.slice(0,x),y=p.slice(x+1);o["data-"+b.trim()]=y}s={command:"\\htmlData",attributes:o};break}default:throw new Error("Unrecognized html command")}return u.settings.isTrusted(s)?{type:"html",mode:u.mode,attributes:o,body:c0(i)}:u.formatUnsupportedCmd(r)},htmlBuilder:(e,t)=>{var u=p0(e.body,t,!1),r=["enclosing"];e.attributes.class&&r.push(...e.attributes.class.trim().split(/\s+/));var n=E(r,u,t);for(var a in e.attributes)a!=="class"&&e.attributes.hasOwnProperty(a)&&n.setAttribute(a,e.attributes[a]);return n},mathmlBuilder:(e,t)=>me(e.body,t)});R({type:"htmlmathml",names:["\\html@mathml"],numArgs:2,allowedInArgument:!0,allowedInText:!0,handler:(e,t)=>{var{parser:u}=e;return{type:"htmlmathml",mode:u.mode,html:c0(t[0]),mathml:c0(t[1])}},htmlBuilder:(e,t)=>{var u=p0(e.html,t,!1);return te(u)},mathmlBuilder:(e,t)=>me(e.mathml,t)});var au=function(t){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(t))return{number:+t,unit:"bp"};var u=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(t);if(!u)throw new z("Invalid size: '"+t+"' in \\includegraphics");var r={number:+(u[1]+u[2]),unit:u[3]};if(!K1(r))throw new z("Invalid unit: '"+r.unit+"' in \\includegraphics.");return r};R({type:"includegraphics",names:["\\includegraphics"],numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1,handler:(e,t,u)=>{var{parser:r}=e,n={number:0,unit:"em"},a={number:.9,unit:"em"},i={number:0,unit:"em"},s="";if(u[0])for(var o=G(u[0],"raw").string,h=o.split(","),f=0;f<h.length;f++){var p=h[f].split("=");if(p.length===2){var x=p[1].trim();switch(p[0].trim()){case"alt":s=x;break;case"width":n=au(x);break;case"height":a=au(x);break;case"totalheight":i=au(x);break;default:throw new z("Invalid key: '"+p[0]+"' in \\includegraphics.")}}}var b=G(t[0],"url").url;return s===""&&(s=b,s=s.replace(/^.*[\\/]/,""),s=s.substring(0,s.lastIndexOf("."))),r.settings.isTrusted({command:"\\includegraphics",url:b})?{type:"includegraphics",mode:r.mode,alt:s,width:n,height:a,totalheight:i,src:b}:r.formatUnsupportedCmd("\\includegraphics")},htmlBuilder:(e,t)=>{var u=s0(e.height,t),r=0;e.totalheight.number>0&&(r=s0(e.totalheight,t)-u);var n=0;e.width.number>0&&(n=s0(e.width,t));var a={height:M(u+r)};n>0&&(a.width=M(n)),r>0&&(a.verticalAlign=M(-r));var i=new kl(e.src,e.alt,a);return i.height=u,i.depth=r,i},mathmlBuilder:(e,t)=>{var u=new F("mglyph",[]);u.setAttribute("alt",e.alt);var r=s0(e.height,t),n=0;if(e.totalheight.number>0&&(n=s0(e.totalheight,t)-r,u.setAttribute("valign",M(-n))),u.setAttribute("height",M(r+n)),e.width.number>0){var a=s0(e.width,t);u.setAttribute("width",M(a))}return u.setAttribute("src",e.src),u}});R({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0,handler(e,t){var{parser:u,funcName:r}=e,n=G(t[0],"size");if(u.settings.strict){var a=r[1]==="m",i=n.value.unit==="mu";a?(i||u.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+r+" supports only mu units, "+("not "+n.value.unit+" units")),u.mode!=="math"&&u.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+r+" works only in math mode")):i&&u.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+r+" doesn't support mu units")}return{type:"kern",mode:u.mode,dimension:n.value}},htmlBuilder(e,t){return rn(e.dimension,t)},mathmlBuilder(e,t){var u=s0(e.dimension,t);return new cn(u)}});R({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],numArgs:1,allowedInText:!0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0];return{type:"lap",mode:u.mode,alignment:r.slice(5),body:n}},htmlBuilder:(e,t)=>{var u;e.alignment==="clap"?(u=E([],[Z(e.body,t)]),u=E(["inner"],[u],t)):u=E(["inner"],[Z(e.body,t)]);var r=E(["fix"],[]),n=E([e.alignment],[u,r],t),a=E(["strut"]);return a.style.height=M(n.height+n.depth),n.depth&&(a.style.verticalAlign=M(-n.depth)),n.children.unshift(a),n=E(["thinbox"],[n],t),E(["mord","vbox"],[n],t)},mathmlBuilder:(e,t)=>{var u=new F("mpadded",[J(e.body,t)]);if(e.alignment!=="rlap"){var r=e.alignment==="llap"?"-1":"-0.5";u.setAttribute("lspace",r+"width")}return u.setAttribute("width","0px"),u}});R({type:"styling",names:["\\(","$"],numArgs:0,allowedInText:!0,allowedInMath:!1,handler(e,t){var{funcName:u,parser:r}=e,n=r.mode;r.switchMode("math");var a=u==="\\("?"\\)":"$",i=r.parseExpression(!1,a);return r.expect(a),r.switchMode(n),{type:"styling",mode:r.mode,style:"text",resetFont:!0,body:i}}});R({type:"text",names:["\\)","\\]"],numArgs:0,allowedInText:!0,allowedInMath:!1,handler(e,t){throw new z("Mismatched "+e.funcName)}});var t1=(e,t)=>{switch(t.style.size){case j.DISPLAY.size:return e.display;case j.TEXT.size:return e.text;case j.SCRIPT.size:return e.script;case j.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};R({type:"mathchoice",names:["\\mathchoice"],numArgs:4,primitive:!0,handler:(e,t)=>{var{parser:u}=e;return{type:"mathchoice",mode:u.mode,display:c0(t[0]),text:c0(t[1]),script:c0(t[2]),scriptscript:c0(t[3])}},htmlBuilder:(e,t)=>{var u=t1(e,t),r=p0(u,t,!1);return te(r)},mathmlBuilder:(e,t)=>{var u=t1(e,t);return me(u,t)}});var Fn=(e,t,u,r,n,a,i)=>{e=E([],[e]);var s=u&&Q0(u),o,h;if(t){var f=Z(t,r.havingStyle(n.sup()),r);h={elem:f,kern:Math.max(r.fontMetrics().bigOpSpacing1,r.fontMetrics().bigOpSpacing3-f.depth)}}if(u){var p=Z(u,r.havingStyle(n.sub()),r);o={elem:p,kern:Math.max(r.fontMetrics().bigOpSpacing2,r.fontMetrics().bigOpSpacing4-p.height)}}var x;if(h&&o){var b=r.fontMetrics().bigOpSpacing5+o.elem.height+o.elem.depth+o.kern+e.depth+i;x=W({positionType:"bottom",positionData:b,children:[{type:"kern",size:r.fontMetrics().bigOpSpacing5},{type:"elem",elem:o.elem,marginLeft:M(-a)},{type:"kern",size:o.kern},{type:"elem",elem:e},{type:"kern",size:h.kern},{type:"elem",elem:h.elem,marginLeft:M(a)},{type:"kern",size:r.fontMetrics().bigOpSpacing5}]})}else if(o){var y=e.height-i;x=W({positionType:"top",positionData:y,children:[{type:"kern",size:r.fontMetrics().bigOpSpacing5},{type:"elem",elem:o.elem,marginLeft:M(-a)},{type:"kern",size:o.kern},{type:"elem",elem:e}]})}else if(h){var k=e.depth+i;x=W({positionType:"bottom",positionData:k,children:[{type:"elem",elem:e},{type:"kern",size:h.kern},{type:"elem",elem:h.elem,marginLeft:M(a)},{type:"kern",size:r.fontMetrics().bigOpSpacing5}]})}else return e;var A=[x];if(o&&a!==0&&!s){var S=E(["mspace"],[],r);S.style.marginRight=M(a),A.unshift(S)}return E(["mop","op-limits"],A,r)},Tn=new Set(["\\smallint"]),Mn=(e,t)=>{var u,r,n=!1,a;e.type==="supsub"?(u=e.sup,r=e.sub,a=G(e.base,"op"),n=!0):a=G(e,"op");var i=t.style,s=!1;i.size===j.DISPLAY.size&&a.symbol&&!Tn.has(a.name)&&(s=!0);var o,h;if(a.symbol){var f=s?"Size2-Regular":"Size1-Regular",p="";if((a.name==="\\oiint"||a.name==="\\oiiint")&&(p=a.name.slice(1),a.name=p==="oiint"?"\\iint":"\\iiint"),o=w0(a.name,f,"math",t,["mop","op-symbol",s?"large-op":"small-op"]),h=o.italic,p.length>0){var x=an(p+"Size"+(s?"2":"1"),t);o=W({positionType:"individualShift",children:[{type:"elem",elem:o,shift:0},{type:"elem",elem:x,shift:s?.08:0}]}),a.name="\\"+p,o.classes.unshift("mop"),o.italic=h}}else if(a.body){var b=p0(a.body,t,!0);b.length===1&&b[0]instanceof F0?(o=b[0],o.classes[0]="mop"):o=E(["mop"],b,t)}else{for(var y=[],k=1;k<a.name.length;k++)y.push(Uu(a.name[k],a.mode,t));o=E(["mop"],y,t)}var A=0,S=0;if((o instanceof F0||a.name==="\\oiint"||a.name==="\\oiiint")&&!a.suppressBaseShift){var C;A=(o.height-o.depth)/2-t.fontMetrics().axisHeight,S=(C=o.italic)!=null?C:0}return n?Fn(o,u,r,t,i,S,A):(A&&(o.style.position="relative",o.style.top=M(A)),o)},Mo=(e,t)=>{var u;if(e.symbol)u=new F("mo",[R0(e.name,e.mode)]),Tn.has(e.name)&&u.setAttribute("largeop","false");else if(e.body)u=new F("mo",M0(e.body,t));else{u=new F("mi",[new h0(e.name.slice(1))]);var r=new F("mo",[R0("⁡","text")]);e.parentIsSupSub?u=new F("mrow",[u,r]):u=on([u,r])}return u},Bo={"∏":"\\prod","∐":"\\coprod","∑":"\\sum","⋀":"\\bigwedge","⋁":"\\bigvee","⋂":"\\bigcap","⋃":"\\bigcup","⨀":"\\bigodot","⨁":"\\bigoplus","⨂":"\\bigotimes","⨄":"\\biguplus","⨆":"\\bigsqcup"};R({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","∏","∐","∑","⋀","⋁","⋂","⋃","⨀","⨁","⨂","⨄","⨆"],numArgs:0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=r;return n.length===1&&(n=Bo[n]),{type:"op",mode:u.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:Mn,mathmlBuilder:Mo});R({type:"op",names:["\\mathop"],numArgs:1,primitive:!0,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"op",mode:u.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:c0(r)}}});var qo={"∫":"\\int","∬":"\\iint","∭":"\\iiint","∮":"\\oint","∯":"\\oiint","∰":"\\oiiint"};R({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],numArgs:0,handler(e){var{parser:t,funcName:u}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:u}}});R({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],numArgs:0,handler(e){var{parser:t,funcName:u}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:u}}});R({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","∫","∬","∭","∮","∯","∰"],numArgs:0,allowedInArgument:!0,handler(e){var{parser:t,funcName:u}=e,r=u;return r.length===1&&(r=qo[r]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:r}}});var Bn=(e,t)=>{var u,r,n=!1,a;e.type==="supsub"?(u=e.sup,r=e.sub,a=G(e.base,"operatorname"),n=!0):a=G(e,"operatorname");var i;if(a.body.length>0){for(var s=a.body.map(p=>{var x="text"in p?p.text:void 0;return typeof x=="string"?{type:"textord",mode:p.mode,text:x}:p}),o=p0(s,t.withFont("mathrm"),!0),h=0;h<o.length;h++){var f=o[h];f instanceof F0&&(f.text=f.text.replace(/\u2212/,"-").replace(/\u2217/,"*"))}i=E(["mop"],o,t)}else i=E(["mop"],[],t);return n?Fn(i,u,r,t,t.style,0,0):i},Ro=(e,t)=>{for(var u=M0(e.body,t.withFont("mathrm")),r=!0,n=0;n<u.length;n++){var a=u[n];if(!(a instanceof cn))if(a instanceof F)switch(a.type){case"mi":case"mn":case"mspace":case"mtext":break;case"mo":{var i=a.children[0];a.children.length===1&&i instanceof h0?i.text=i.text.replace(/\u2212/,"-").replace(/\u2217/,"*"):r=!1;break}default:r=!1}else r=!1}if(r){var s=u.map(f=>f.toText()).join("");u=[new h0(s)]}var o=new F("mi",u);o.setAttribute("mathvariant","normal");var h=new F("mo",[R0("⁡","text")]);return e.parentIsSupSub?new F("mrow",[o,h]):on([o,h])};R({type:"operatorname",names:["\\operatorname@","\\operatornamewithlimits"],numArgs:1,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0];return{type:"operatorname",mode:u.mode,body:c0(n),alwaysHandleSupSub:r==="\\operatornamewithlimits",limits:!1,parentIsSupSub:!1}},htmlBuilder:Bn,mathmlBuilder:Ro});m("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@");we({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?te(p0(e.body,t,!1)):E(["mord"],p0(e.body,t,!0),t)},mathmlBuilder(e,t){return me(e.body,t,!0)}});R({type:"overline",names:["\\overline"],numArgs:1,handler(e,t){var{parser:u}=e,r=t[0];return{type:"overline",mode:u.mode,body:r}},htmlBuilder(e,t){var u=Z(e.body,t.havingCrampedStyle()),r=ze("overline-line",t),n=t.fontMetrics().defaultRuleThickness,a=W({positionType:"firstBaseline",children:[{type:"elem",elem:u},{type:"kern",size:3*n},{type:"elem",elem:r},{type:"kern",size:n}]});return E(["mord","overline"],[a],t)},mathmlBuilder(e,t){var u=new F("mo",[new h0("‾")]);u.setAttribute("stretchy","true");var r=new F("mover",[J(e.body,t),u]);return r.setAttribute("accent","true"),r}});R({type:"phantom",names:["\\phantom"],numArgs:1,allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"phantom",mode:u.mode,body:c0(r)}},htmlBuilder:(e,t)=>{var u=p0(e.body,t.withPhantom(),!1);return te(u)},mathmlBuilder:(e,t)=>{var u=M0(e.body,t);return new F("mphantom",u)}});m("\\hphantom","\\smash{\\phantom{#1}}");R({type:"vphantom",names:["\\vphantom"],numArgs:1,allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"vphantom",mode:u.mode,body:r}},htmlBuilder:(e,t)=>{var u=E(["inner"],[Z(e.body,t.withPhantom())]),r=E(["fix"],[]);return E(["mord","rlap"],[u,r],t)},mathmlBuilder:(e,t)=>{var u=M0(c0(e.body),t),r=new F("mphantom",u),n=new F("mpadded",[r]);return n.setAttribute("width","0px"),n}});R({type:"raisebox",names:["\\raisebox"],numArgs:2,argTypes:["size","hbox"],allowedInText:!0,handler(e,t){var{parser:u}=e,r=G(t[0],"size").value,n=t[1];return{type:"raisebox",mode:u.mode,dy:r,body:n}},htmlBuilder(e,t){var u=Z(e.body,t),r=s0(e.dy,t);return W({positionType:"shift",positionData:-r,children:[{type:"elem",elem:u}]})},mathmlBuilder(e,t){var u=new F("mpadded",[J(e.body,t)]),r=e.dy.number+e.dy.unit;return u.setAttribute("voffset",r),u}});R({type:"internal",names:["\\relax"],numArgs:0,allowedInText:!0,allowedInArgument:!0,handler(e){var{parser:t}=e;return{type:"internal",mode:t.mode}}});R({type:"rule",names:["\\rule"],numArgs:2,numOptionalArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["size","size","size"],handler(e,t,u){var{parser:r}=e,n=u[0],a=G(t[0],"size"),i=G(t[1],"size");return{type:"rule",mode:r.mode,shift:n&&G(n,"size").value,width:a.value,height:i.value}},htmlBuilder(e,t){var u=E(["mord","rule"],[],t),r=s0(e.width,t),n=s0(e.height,t),a=e.shift?s0(e.shift,t):0;return u.style.borderRightWidth=M(r),u.style.borderTopWidth=M(n),u.style.bottom=M(a),u.width=r,u.height=n+a,u.depth=-a,u.maxFontSize=n*1.125*t.sizeMultiplier,u},mathmlBuilder(e,t){var u=s0(e.width,t),r=s0(e.height,t),n=e.shift?s0(e.shift,t):0,a=t.color&&t.getColor()||"black",i=new F("mspace");i.setAttribute("mathbackground",a),i.setAttribute("width",M(u)),i.setAttribute("height",M(r));var s=new F("mpadded",[i]);return n>=0?s.setAttribute("height",M(n)):(s.setAttribute("height",M(n)),s.setAttribute("depth",M(-n))),s.setAttribute("voffset",M(n)),s}});function qn(e,t,u){for(var r=p0(e,t,!1),n=t.sizeMultiplier/u.sizeMultiplier,a=0;a<r.length;a++){var i=r[a].classes.indexOf("sizing");i<0?Array.prototype.push.apply(r[a].classes,t.sizingClasses(u)):r[a].classes[i+1]==="reset-size"+t.size&&(r[a].classes[i+1]="reset-size"+u.size),r[a].height*=n,r[a].depth*=n}return te(r)}var u1=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"],Io=(e,t)=>{var u=t.havingSize(e.size);return qn(e.body,u,t)};R({type:"sizing",names:u1,numArgs:0,allowedInText:!0,handler:(e,t)=>{var{breakOnTokenText:u,funcName:r,parser:n}=e,a=n.parseExpression(!1,u);return{type:"sizing",mode:n.mode,size:u1.indexOf(r)+1,body:a}},htmlBuilder:Io,mathmlBuilder:(e,t)=>{var u=t.havingSize(e.size),r=M0(e.body,u),n=new F("mstyle",r);return n.setAttribute("mathsize",M(u.sizeMultiplier)),n}});R({type:"smash",names:["\\smash"],numArgs:1,numOptionalArgs:1,allowedInText:!0,handler:(e,t,u)=>{var{parser:r}=e,n=!1,a=!1,i=u[0]&&G(u[0],"ordgroup");if(i)for(var s,o=0;o<i.body.length;++o){var h=i.body[o];if(s=Mt(h).text,s==="t")n=!0;else if(s==="b")a=!0;else{n=!1,a=!1;break}}else n=!0,a=!0;var f=t[0];return{type:"smash",mode:r.mode,body:f,smashHeight:n,smashDepth:a}},htmlBuilder:(e,t)=>{var u=E([],[Z(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return u;if(e.smashHeight&&(u.height=0),e.smashDepth&&(u.depth=0),e.smashHeight&&e.smashDepth)return E(["mord","smash"],[u],t);if(u.children)for(var r=0;r<u.children.length;r++)e.smashHeight&&(u.children[r].height=0),e.smashDepth&&(u.children[r].depth=0);var n=W({positionType:"firstBaseline",children:[{type:"elem",elem:u}]});return E(["mord"],[n],t)},mathmlBuilder:(e,t)=>{var u=new F("mpadded",[J(e.body,t)]);return e.smashHeight&&u.setAttribute("height","0px"),e.smashDepth&&u.setAttribute("depth","0px"),u}});R({type:"sqrt",names:["\\sqrt"],numArgs:1,numOptionalArgs:1,handler(e,t,u){var{parser:r}=e,n=u[0],a=t[0];return{type:"sqrt",mode:r.mode,body:a,index:n}},htmlBuilder(e,t){var u=Z(e.body,t.havingCrampedStyle());u.height===0&&(u.height=t.fontMetrics().xHeight),u=Fe(u,t);var r=t.fontMetrics(),n=r.defaultRuleThickness,a=n;t.style.id<j.TEXT.id&&(a=t.fontMetrics().xHeight);var i=n+a/4,s=u.height+u.depth+i+n,{span:o,ruleWidth:h,advanceWidth:f}=vo(s,t),p=o.height-h;p>u.height+u.depth+i&&(i=(i+p-u.height-u.depth)/2);var x=o.height-u.height-i-h;u.style.paddingLeft=M(f);var b=W({positionType:"firstBaseline",children:[{type:"elem",elem:u,wrapperClasses:["svg-align"]},{type:"kern",size:-(u.height+x)},{type:"elem",elem:o},{type:"kern",size:h}]});if(e.index){var y=t.havingStyle(j.SCRIPTSCRIPT),k=Z(e.index,y,t),A=.6*(b.height-b.depth),S=W({positionType:"shift",positionData:-A,children:[{type:"elem",elem:k}]}),C=E(["root"],[S]);return E(["mord","sqrt"],[C,b],t)}else return E(["mord","sqrt"],[b],t)},mathmlBuilder(e,t){var{body:u,index:r}=e;return r?new F("mroot",[J(u,t),J(r,t)]):new F("msqrt",[J(u,t)])}});var Fu={display:j.DISPLAY,text:j.TEXT,script:j.SCRIPT,scriptscript:j.SCRIPTSCRIPT};function No(e){return e in Fu}R({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],numArgs:0,allowedInText:!0,primitive:!0,handler(e,t){var{breakOnTokenText:u,funcName:r,parser:n}=e,a=n.parseExpression(!0,u),i=r.slice(1,r.length-5);if(!No(i))throw new Error("Unknown style: "+i);return{type:"styling",mode:n.mode,style:i,body:a}},htmlBuilder(e,t){var u=Fu[e.style],r=t.havingStyle(u);return e.resetFont&&(r=r.withFont("")),qn(e.body,r,t)},mathmlBuilder(e,t){var u=Fu[e.style],r=t.havingStyle(u);e.resetFont&&(r=r.withFont(""));var n=M0(e.body,r),a=new F("mstyle",n),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]},s=i[e.style];return a.setAttribute("scriptlevel",s[0]),a.setAttribute("displaystyle",s[1]),a}});var Oo=function(t,u){var r=t.base;if(r)if(r.type==="op"){var n=r.limits&&(u.style.size===j.DISPLAY.size||r.alwaysHandleSupSub);return n?Mn:null}else if(r.type==="operatorname"){var a=r.alwaysHandleSupSub&&(u.style.size===j.DISPLAY.size||r.limits);return a?Bn:null}else{if(r.type==="accent")return Q0(r.base)?mn:null;if(r.type==="horizBrace"){var i=!t.sub;return i===r.isOver?zn:null}else return null}else return null};we({type:"supsub",htmlBuilder(e,t){var u=Oo(e,t);if(u)return u(e,t);var{base:r,sup:n,sub:a}=e,i=Z(r,t),s,o,h=t.fontMetrics(),f=0,p=0,x=r&&Q0(r);if(n){var b=t.havingStyle(t.style.sup());s=Z(n,b,t),x||(f=i.height-b.fontMetrics().supDrop*b.sizeMultiplier/t.sizeMultiplier)}if(a){var y=t.havingStyle(t.style.sub());o=Z(a,y,t),x||(p=i.depth+y.fontMetrics().subDrop*y.sizeMultiplier/t.sizeMultiplier)}var k;t.style===j.DISPLAY?k=h.sup1:t.style.cramped?k=h.sup3:k=h.sup2;var A=t.sizeMultiplier,S=M(.5/h.ptPerEm/A),C=null;if(o){var _=e.base&&e.base.type==="op"&&e.base.name&&(e.base.name==="\\oiint"||e.base.name==="\\oiiint");if(i instanceof F0||_){var T;C=M(-((T=i.italic)!=null?T:0))}}var B;if(s&&o){f=Math.max(f,k,s.depth+.25*h.xHeight),p=Math.max(p,h.sub2);var q=h.defaultRuleThickness,O=4*q;if(f-s.depth-(o.height-p)<O){p=O-(f-s.depth)+o.height;var U=.8*h.xHeight-(f-s.depth);U>0&&(f+=U,p-=U)}var $=[{type:"elem",elem:o,shift:p,marginRight:S,marginLeft:C},{type:"elem",elem:s,shift:-f,marginRight:S}];B=W({positionType:"individualShift",children:$})}else if(o){p=Math.max(p,h.sub1,o.height-.8*h.xHeight);var u0=[{type:"elem",elem:o,marginLeft:C,marginRight:S}];B=W({positionType:"shift",positionData:p,children:u0})}else if(s)f=Math.max(f,k,s.depth+.25*h.xHeight),B=W({positionType:"shift",positionData:-f,children:[{type:"elem",elem:s,marginRight:S}]});else throw new Error("supsub must have either sup or sub.");var f0=Cu(i,"right")||"mord";return E([f0],[i,E(["msupsub"],[B])],t)},mathmlBuilder(e,t){var u=!1,r,n;e.base&&e.base.type==="horizBrace"&&(n=!!e.sup,n===e.base.isOver&&(u=!0,r=e.base.isOver)),e.base&&(e.base.type==="op"||e.base.type==="operatorname")&&(e.base.parentIsSupSub=!0);var a=[J(e.base,t)];e.sub&&a.push(J(e.sub,t)),e.sup&&a.push(J(e.sup,t));var i;if(u)i=r?"mover":"munder";else if(e.sub)if(e.sup){var h=e.base;h&&h.type==="op"&&h.limits&&t.style===j.DISPLAY||h&&h.type==="operatorname"&&h.alwaysHandleSupSub&&(t.style===j.DISPLAY||h.limits)?i="munderover":i="msubsup"}else{var o=e.base;o&&o.type==="op"&&o.limits&&(t.style===j.DISPLAY||o.alwaysHandleSupSub)||o&&o.type==="operatorname"&&o.alwaysHandleSupSub&&(o.limits||t.style===j.DISPLAY)?i="munder":i="msub"}else{var s=e.base;s&&s.type==="op"&&s.limits&&(t.style===j.DISPLAY||s.alwaysHandleSupSub)||s&&s.type==="operatorname"&&s.alwaysHandleSupSub&&(s.limits||t.style===j.DISPLAY)?i="mover":i="msup"}return new F(i,a)}});we({type:"atom",htmlBuilder(e,t){return Uu(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){var u=new F("mo",[R0(e.text,e.mode)]);if(e.family==="bin"){var r=Wu(e,t);r==="bold-italic"&&u.setAttribute("mathvariant",r)}else e.family==="punct"?u.setAttribute("separator","true"):(e.family==="open"||e.family==="close")&&u.setAttribute("stretchy","false");return u}});var Rn={mi:"italic",mn:"normal",mtext:"normal"};we({type:"mathord",htmlBuilder(e,t){return zt(e,t)},mathmlBuilder(e,t){var u=new F("mi",[R0(e.text,e.mode,t)]),r=Wu(e,t)||"italic";return r!==Rn[u.type]&&u.setAttribute("mathvariant",r),u}});we({type:"textord",htmlBuilder(e,t){return zt(e,t)},mathmlBuilder(e,t){var u=R0(e.text,e.mode,t),r=Wu(e,t)||"normal",n;return e.mode==="text"?n=new F("mtext",[u]):/[0-9]/.test(e.text)?n=new F("mn",[u]):e.text==="\\prime"?n=new F("mo",[u]):n=new F("mi",[u]),r!==Rn[n.type]&&n.setAttribute("mathvariant",r),n}});var iu={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},su={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};we({type:"spacing",htmlBuilder(e,t){if(su.hasOwnProperty(e.text)){var u=su[e.text].className||"";if(e.mode==="text"){var r=zt(e,t);return r.classes.push(u),r}else return E(["mspace",u],[Uu(e.text,e.mode,t)],t)}else{if(iu.hasOwnProperty(e.text))return E(["mspace",iu[e.text]],[],t);throw new z('Unknown type of space "'+e.text+'"')}},mathmlBuilder(e,t){var u;if(su.hasOwnProperty(e.text))u=new F("mtext",[new h0(" ")]);else{if(iu.hasOwnProperty(e.text))return new F("mspace");throw new z('Unknown type of space "'+e.text+'"')}return u}});var r1=()=>{var e=new F("mtd",[]);return e.setAttribute("width","50%"),e};we({type:"tag",mathmlBuilder(e,t){var u=new F("mtable",[new F("mtr",[r1(),new F("mtd",[me(e.body,t)]),r1(),new F("mtd",[me(e.tag,t)])])]);return u.setAttribute("width","100%"),u}});var n1={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},a1={"\\textbf":"textbf","\\textmd":"textmd"},Lo={"\\textit":"textit","\\textup":"textup"},i1=(e,t)=>{var u=e.font;if(u){if(n1[u])return t.withTextFontFamily(n1[u]);if(a1[u])return t.withTextFontWeight(a1[u]);if(u==="\\emph")return t.fontShape==="textit"?t.withTextFontShape("textup"):t.withTextFontShape("textit")}else return t;return t.withTextFontShape(Lo[u])};R({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0,handler(e,t){var{parser:u,funcName:r}=e,n=t[0];return{type:"text",mode:u.mode,body:c0(n),font:r}},htmlBuilder(e,t){var u=i1(e,t),r=p0(e.body,u,!0);return E(["mord","text"],r,u)},mathmlBuilder(e,t){var u=i1(e,t);return me(e.body,u)}});R({type:"underline",names:["\\underline"],numArgs:1,allowedInText:!0,handler(e,t){var{parser:u}=e;return{type:"underline",mode:u.mode,body:t[0]}},htmlBuilder(e,t){var u=Z(e.body,t),r=ze("underline-line",t),n=t.fontMetrics().defaultRuleThickness,a=W({positionType:"top",positionData:u.height,children:[{type:"kern",size:n},{type:"elem",elem:r},{type:"kern",size:3*n},{type:"elem",elem:u}]});return E(["mord","underline"],[a],t)},mathmlBuilder(e,t){var u=new F("mo",[new h0("‾")]);u.setAttribute("stretchy","true");var r=new F("munder",[J(e.body,t),u]);return r.setAttribute("accentunder","true"),r}});R({type:"vcenter",names:["\\vcenter"],numArgs:1,argTypes:["original"],allowedInText:!1,handler(e,t){var{parser:u}=e;return{type:"vcenter",mode:u.mode,body:t[0]}},htmlBuilder(e,t){var u=Z(e.body,t),r=t.fontMetrics().axisHeight,n=.5*(u.height-r-(u.depth+r));return W({positionType:"shift",positionData:n,children:[{type:"elem",elem:u}]})},mathmlBuilder(e,t){var u=new F("mpadded",[J(e.body,t)],["vcenter"]);return new F("mrow",[u])}});R({type:"verb",names:["\\verb"],numArgs:0,allowedInText:!0,handler(e,t,u){throw new z("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){for(var u=s1(e),r=[],n=t.havingStyle(t.style.text()),a=0;a<u.length;a++){var i=u[a];i==="~"&&(i="\\textasciitilde"),r.push(w0(i,"Typewriter-Regular",e.mode,n,["mord","texttt"]))}return E(["mord","text"].concat(n.sizingClasses(t)),un(r),n)},mathmlBuilder(e,t){var u=new h0(s1(e)),r=new F("mtext",[u]);return r.setAttribute("mathvariant","monospace"),r}});var s1=e=>e.body.replace(/ /g,e.star?"␣":" "),oe=sn,In=`[ \r
268
- ]`,Po="\\\\[a-zA-Z@]+",Ho="\\\\[^\uD800-\uDFFF]",$o="("+Po+")"+In+"*",jo=`\\\\(
266
+ -470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z`;default:throw new Error("Unknown stretchy delimiter.")}};function kl(e){return"toText"in e}class Me{constructor(t){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=t,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(t){return this.classes.includes(t)}toNode(){for(var t=document.createDocumentFragment(),u=0;u<this.children.length;u++)t.appendChild(this.children[u].toNode());return t}toMarkup(){for(var t="",u=0;u<this.children.length;u++)t+=this.children[u].toMarkup();return t}toText(){return this.children.map(t=>{if(kl(t))return t.toText();throw new Error("Expected MathDomNode with toText, got "+t.constructor.name)}).join("")}}var vu={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:803/800,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:803/800},Al={ex:!0,em:!0,mu:!0},Q1=function(t){return typeof t!="string"&&(t=t.unit),t in vu||t in Al||t==="ex"},a0=function(t,u){var r;if(t.unit in vu)r=vu[t.unit]/u.fontMetrics().ptPerEm/u.sizeMultiplier;else if(t.unit==="mu")r=u.fontMetrics().cssEmPerMu;else{var n;if(u.style.isTight()?n=u.havingStyle(u.style.text()):n=u,t.unit==="ex")r=n.fontMetrics().xHeight;else if(t.unit==="em")r=n.fontMetrics().quad;else throw new z("Invalid unit: '"+t.unit+"'");n!==u&&(r*=n.sizeMultiplier/u.sizeMultiplier)}return Math.min(t.number*r,u.maxSize)},M=function(t){return+t.toFixed(4)+"em"},de=function(t){return t.filter(u=>u).join(" ")},Uu=function(t){var u="";for(var r of Object.keys(t)){var n=t[r];n!==void 0&&(u+=Ks(r)+":"+n+";")}return u},en=function(t,u,r){if(this.classes=t||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},u){u.style.isTight()&&this.classes.push("mtight");var n=u.getColor();n&&(this.style.color=n)}},tn=function(t){var u=document.createElement(t);u.className=de(this.classes),Object.assign(u.style,this.style);for(var r of Object.keys(this.attributes))u.setAttribute(r,this.attributes[r]);for(var n=0;n<this.children.length;n++)u.appendChild(this.children[n].toNode());return u},Cl=/[\s"'>/=\x00-\x1f]/,un=function(t){var u="<"+t;this.classes.length&&(u+=' class="'+g0(de(this.classes))+'"');var r=Uu(this.style);r&&(u+=' style="'+g0(r)+'"');for(var n of Object.keys(this.attributes)){if(Cl.test(n))throw new z("Invalid attribute name '"+n+"'");u+=" "+n+'="'+g0(this.attributes[n])+'"'}u+=">";for(var a=0;a<this.children.length;a++)u+=this.children[a].toMarkup();return u+="</"+t+">",u};class Be{constructor(t,u,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,this.italic=void 0,en.call(this,t,r,n),this.children=u||[]}setAttribute(t,u){this.attributes[t]=u}hasClass(t){return this.classes.includes(t)}toNode(){return tn.call(this,"span")}toMarkup(){return un.call(this,"span")}}class Ft{constructor(t,u,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,en.call(this,u,n),this.children=r||[],this.setAttribute("href",t)}setAttribute(t,u){this.attributes[t]=u}hasClass(t){return this.classes.includes(t)}toNode(){return tn.call(this,"a")}toMarkup(){return un.call(this,"a")}}class Dl{constructor(t,u,r){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=u,this.src=t,this.classes=["mord"],this.height=0,this.depth=0,this.maxFontSize=0,this.style=r}hasClass(t){return this.classes.includes(t)}toNode(){var t=document.createElement("img");return t.src=this.src,t.alt=this.alt,t.className="mord",Object.assign(t.style,this.style),t}toMarkup(){var t='<img src="'+g0(this.src)+'"'+(' alt="'+g0(this.alt)+'"'),u=Uu(this.style);return u&&(t+=' style="'+g0(u)+'"'),t+="'/>",t}}var Sl={î:"ı̂",ï:"ı̈",í:"ı́",ì:"ı̀"};class _0{constructor(t,u,r,n,a,i,s,o){this.text=void 0,this.height=void 0,this.depth=void 0,this.italic=void 0,this.skew=void 0,this.width=void 0,this.maxFontSize=void 0,this.classes=void 0,this.style=void 0,this.text=t,this.height=u||0,this.depth=r||0,this.italic=n||0,this.skew=a||0,this.width=i||0,this.classes=s||[],this.style=o||{},this.maxFontSize=0;var h=hl(this.text.charCodeAt(0));h&&this.classes.push(h+"_fallback"),/[îïíì]/.test(this.text)&&(this.text=Sl[this.text])}hasClass(t){return this.classes.includes(t)}toNode(){var t=document.createTextNode(this.text),u=null;return this.italic>0&&(u=document.createElement("span"),u.style.marginRight=M(this.italic)),this.classes.length>0&&(u=u||document.createElement("span"),u.className=de(this.classes)),Object.keys(this.style).length>0&&(u=u||document.createElement("span"),Object.assign(u.style,this.style)),u?(u.appendChild(t),u):t}toMarkup(){var t=!1,u="<span";this.classes.length&&(t=!0,u+=' class="',u+=g0(de(this.classes)),u+='"');var r="";this.italic>0&&(r+="margin-right:"+M(this.italic)+";"),r+=Uu(this.style),r&&(t=!0,u+=' style="'+g0(r)+'"');var n=g0(this.text);return t?(u+=">",u+=n,u+="</span>",u):n}}class te{constructor(t,u){this.children=void 0,this.attributes=void 0,this.children=t||[],this.attributes=u||{}}toNode(){var t="http://www.w3.org/2000/svg",u=document.createElementNS(t,"svg");for(var r of Object.keys(this.attributes))u.setAttribute(r,this.attributes[r]);for(var n=0;n<this.children.length;n++)u.appendChild(this.children[n].toNode());return u}toMarkup(){var t='<svg xmlns="http://www.w3.org/2000/svg"';for(var u of Object.keys(this.attributes))t+=" "+u+'="'+g0(this.attributes[u])+'"';t+=">";for(var r=0;r<this.children.length;r++)t+=this.children[r].toMarkup();return t+="</svg>",t}}class fe{constructor(t,u){this.pathName=void 0,this.alternate=void 0,this.pathName=t,this.alternate=u}toNode(){var t="http://www.w3.org/2000/svg",u=document.createElementNS(t,"path");return this.alternate?u.setAttribute("d",this.alternate):u.setAttribute("d",Fr[this.pathName]),u}toMarkup(){return this.alternate?'<path d="'+g0(this.alternate)+'"/>':'<path d="'+g0(Fr[this.pathName])+'"/>'}}class gu{constructor(t){this.attributes=void 0,this.attributes=t||{}}toNode(){var t="http://www.w3.org/2000/svg",u=document.createElementNS(t,"line");for(var r of Object.keys(this.attributes))u.setAttribute(r,this.attributes[r]);return u}toMarkup(){var t="<line";for(var u of Object.keys(this.attributes))t+=" "+u+'="'+g0(this.attributes[u])+'"';return t+="/>",t}}function El(e){if(e instanceof _0)return e;throw new Error("Expected symbolNode but got "+String(e)+".")}function _l(e){if(e instanceof Be)return e;throw new Error("Expected span<HtmlDomNode> but got "+String(e)+".")}var zl=e=>e instanceof Be||e instanceof Ft||e instanceof Me,j0={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}},st={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},Tr={Å:"A",Ð:"D",Þ:"o",å:"a",ð:"d",þ:"o",А:"A",Б:"B",В:"B",Г:"F",Д:"A",Е:"E",Ж:"K",З:"3",И:"N",Й:"N",К:"K",Л:"N",М:"M",Н:"H",О:"O",П:"N",Р:"P",С:"C",Т:"T",У:"y",Ф:"O",Х:"X",Ц:"U",Ч:"h",Ш:"W",Щ:"W",Ъ:"B",Ы:"X",Ь:"B",Э:"3",Ю:"X",Я:"R",а:"a",б:"b",в:"a",г:"r",д:"y",е:"e",ж:"m",з:"e",и:"n",й:"n",к:"n",л:"n",м:"m",н:"n",о:"o",п:"n",р:"p",с:"c",т:"o",у:"y",ф:"b",х:"x",ц:"n",ч:"n",ш:"w",щ:"w",ъ:"a",ы:"m",ь:"a",э:"e",ю:"m",я:"r"};function Fl(e,t){j0[e]=t}function Gu(e,t,u){if(!j0[t])throw new Error("Font metrics not found for font: "+t+".");var r=e.charCodeAt(0),n=j0[t][r];if(!n&&e[0]in Tr&&(r=Tr[e[0]].charCodeAt(0),n=j0[t][r]),!n&&u==="text"&&J1(r)&&(n=j0[t][77]),n)return{depth:n[0],height:n[1],italic:n[2],skew:n[3],width:n[4]}}var Xt={};function Tl(e){var t;if(e>=5?t=0:e>=3?t=1:t=2,!Xt[t]){var u=Xt[t]={cssEmPerMu:st.quad[t]/18};for(var r in st)st.hasOwnProperty(r)&&(u[r]=st[r][t])}return Xt[t]}var t0={math:{},text:{}};function l(e,t,u,r,n,a){t0[e][n]={font:t,group:u,replace:r},a&&r&&(t0[e][r]=t0[e][n])}var c="math",C="text",d="main",v="ams",u0="accent-token",N="bin",A0="close",qe="inner",P="mathord",h0="op-token",z0="open",Ye="punct",g="rel",re="spacing",w="textord";l(c,d,g,"≡","\\equiv",!0);l(c,d,g,"≺","\\prec",!0);l(c,d,g,"≻","\\succ",!0);l(c,d,g,"∼","\\sim",!0);l(c,d,g,"⊥","\\perp");l(c,d,g,"⪯","\\preceq",!0);l(c,d,g,"⪰","\\succeq",!0);l(c,d,g,"≃","\\simeq",!0);l(c,d,g,"∣","\\mid",!0);l(c,d,g,"≪","\\ll",!0);l(c,d,g,"≫","\\gg",!0);l(c,d,g,"≍","\\asymp",!0);l(c,d,g,"∥","\\parallel");l(c,d,g,"⋈","\\bowtie",!0);l(c,d,g,"⌣","\\smile",!0);l(c,d,g,"⊑","\\sqsubseteq",!0);l(c,d,g,"⊒","\\sqsupseteq",!0);l(c,d,g,"≐","\\doteq",!0);l(c,d,g,"⌢","\\frown",!0);l(c,d,g,"∋","\\ni",!0);l(c,d,g,"∝","\\propto",!0);l(c,d,g,"⊢","\\vdash",!0);l(c,d,g,"⊣","\\dashv",!0);l(c,d,g,"∋","\\owns");l(c,d,Ye,".","\\ldotp");l(c,d,Ye,"⋅","\\cdotp");l(c,d,Ye,"⋅","·");l(C,d,w,"⋅","·");l(c,d,w,"#","\\#");l(C,d,w,"#","\\#");l(c,d,w,"&","\\&");l(C,d,w,"&","\\&");l(c,d,w,"ℵ","\\aleph",!0);l(c,d,w,"∀","\\forall",!0);l(c,d,w,"ℏ","\\hbar",!0);l(c,d,w,"∃","\\exists",!0);l(c,d,w,"∇","\\nabla",!0);l(c,d,w,"♭","\\flat",!0);l(c,d,w,"ℓ","\\ell",!0);l(c,d,w,"♮","\\natural",!0);l(c,d,w,"♣","\\clubsuit",!0);l(c,d,w,"℘","\\wp",!0);l(c,d,w,"♯","\\sharp",!0);l(c,d,w,"♢","\\diamondsuit",!0);l(c,d,w,"ℜ","\\Re",!0);l(c,d,w,"♡","\\heartsuit",!0);l(c,d,w,"ℑ","\\Im",!0);l(c,d,w,"♠","\\spadesuit",!0);l(c,d,w,"§","\\S",!0);l(C,d,w,"§","\\S");l(c,d,w,"¶","\\P",!0);l(C,d,w,"¶","\\P");l(c,d,w,"†","\\dag");l(C,d,w,"†","\\dag");l(C,d,w,"†","\\textdagger");l(c,d,w,"‡","\\ddag");l(C,d,w,"‡","\\ddag");l(C,d,w,"‡","\\textdaggerdbl");l(c,d,A0,"⎱","\\rmoustache",!0);l(c,d,z0,"⎰","\\lmoustache",!0);l(c,d,A0,"⟯","\\rgroup",!0);l(c,d,z0,"⟮","\\lgroup",!0);l(c,d,N,"∓","\\mp",!0);l(c,d,N,"⊖","\\ominus",!0);l(c,d,N,"⊎","\\uplus",!0);l(c,d,N,"⊓","\\sqcap",!0);l(c,d,N,"∗","\\ast");l(c,d,N,"⊔","\\sqcup",!0);l(c,d,N,"◯","\\bigcirc",!0);l(c,d,N,"∙","\\bullet",!0);l(c,d,N,"‡","\\ddagger");l(c,d,N,"≀","\\wr",!0);l(c,d,N,"⨿","\\amalg");l(c,d,N,"&","\\And");l(c,d,g,"⟵","\\longleftarrow",!0);l(c,d,g,"⇐","\\Leftarrow",!0);l(c,d,g,"⟸","\\Longleftarrow",!0);l(c,d,g,"⟶","\\longrightarrow",!0);l(c,d,g,"⇒","\\Rightarrow",!0);l(c,d,g,"⟹","\\Longrightarrow",!0);l(c,d,g,"↔","\\leftrightarrow",!0);l(c,d,g,"⟷","\\longleftrightarrow",!0);l(c,d,g,"⇔","\\Leftrightarrow",!0);l(c,d,g,"⟺","\\Longleftrightarrow",!0);l(c,d,g,"↦","\\mapsto",!0);l(c,d,g,"⟼","\\longmapsto",!0);l(c,d,g,"↗","\\nearrow",!0);l(c,d,g,"↩","\\hookleftarrow",!0);l(c,d,g,"↪","\\hookrightarrow",!0);l(c,d,g,"↘","\\searrow",!0);l(c,d,g,"↼","\\leftharpoonup",!0);l(c,d,g,"⇀","\\rightharpoonup",!0);l(c,d,g,"↙","\\swarrow",!0);l(c,d,g,"↽","\\leftharpoondown",!0);l(c,d,g,"⇁","\\rightharpoondown",!0);l(c,d,g,"↖","\\nwarrow",!0);l(c,d,g,"⇌","\\rightleftharpoons",!0);l(c,v,g,"≮","\\nless",!0);l(c,v,g,"","\\@nleqslant");l(c,v,g,"","\\@nleqq");l(c,v,g,"⪇","\\lneq",!0);l(c,v,g,"≨","\\lneqq",!0);l(c,v,g,"","\\@lvertneqq");l(c,v,g,"⋦","\\lnsim",!0);l(c,v,g,"⪉","\\lnapprox",!0);l(c,v,g,"⊀","\\nprec",!0);l(c,v,g,"⋠","\\npreceq",!0);l(c,v,g,"⋨","\\precnsim",!0);l(c,v,g,"⪹","\\precnapprox",!0);l(c,v,g,"≁","\\nsim",!0);l(c,v,g,"","\\@nshortmid");l(c,v,g,"∤","\\nmid",!0);l(c,v,g,"⊬","\\nvdash",!0);l(c,v,g,"⊭","\\nvDash",!0);l(c,v,g,"⋪","\\ntriangleleft");l(c,v,g,"⋬","\\ntrianglelefteq",!0);l(c,v,g,"⊊","\\subsetneq",!0);l(c,v,g,"","\\@varsubsetneq");l(c,v,g,"⫋","\\subsetneqq",!0);l(c,v,g,"","\\@varsubsetneqq");l(c,v,g,"≯","\\ngtr",!0);l(c,v,g,"","\\@ngeqslant");l(c,v,g,"","\\@ngeqq");l(c,v,g,"⪈","\\gneq",!0);l(c,v,g,"≩","\\gneqq",!0);l(c,v,g,"","\\@gvertneqq");l(c,v,g,"⋧","\\gnsim",!0);l(c,v,g,"⪊","\\gnapprox",!0);l(c,v,g,"⊁","\\nsucc",!0);l(c,v,g,"⋡","\\nsucceq",!0);l(c,v,g,"⋩","\\succnsim",!0);l(c,v,g,"⪺","\\succnapprox",!0);l(c,v,g,"≆","\\ncong",!0);l(c,v,g,"","\\@nshortparallel");l(c,v,g,"∦","\\nparallel",!0);l(c,v,g,"⊯","\\nVDash",!0);l(c,v,g,"⋫","\\ntriangleright");l(c,v,g,"⋭","\\ntrianglerighteq",!0);l(c,v,g,"","\\@nsupseteqq");l(c,v,g,"⊋","\\supsetneq",!0);l(c,v,g,"","\\@varsupsetneq");l(c,v,g,"⫌","\\supsetneqq",!0);l(c,v,g,"","\\@varsupsetneqq");l(c,v,g,"⊮","\\nVdash",!0);l(c,v,g,"⪵","\\precneqq",!0);l(c,v,g,"⪶","\\succneqq",!0);l(c,v,g,"","\\@nsubseteqq");l(c,v,N,"⊴","\\unlhd");l(c,v,N,"⊵","\\unrhd");l(c,v,g,"↚","\\nleftarrow",!0);l(c,v,g,"↛","\\nrightarrow",!0);l(c,v,g,"⇍","\\nLeftarrow",!0);l(c,v,g,"⇏","\\nRightarrow",!0);l(c,v,g,"↮","\\nleftrightarrow",!0);l(c,v,g,"⇎","\\nLeftrightarrow",!0);l(c,v,g,"△","\\vartriangle");l(c,v,w,"ℏ","\\hslash");l(c,v,w,"▽","\\triangledown");l(c,v,w,"◊","\\lozenge");l(c,v,w,"Ⓢ","\\circledS");l(c,v,w,"®","\\circledR");l(C,v,w,"®","\\circledR");l(c,v,w,"∡","\\measuredangle",!0);l(c,v,w,"∄","\\nexists");l(c,v,w,"℧","\\mho");l(c,v,w,"Ⅎ","\\Finv",!0);l(c,v,w,"⅁","\\Game",!0);l(c,v,w,"‵","\\backprime");l(c,v,w,"▲","\\blacktriangle");l(c,v,w,"▼","\\blacktriangledown");l(c,v,w,"■","\\blacksquare");l(c,v,w,"⧫","\\blacklozenge");l(c,v,w,"★","\\bigstar");l(c,v,w,"∢","\\sphericalangle",!0);l(c,v,w,"∁","\\complement",!0);l(c,v,w,"ð","\\eth",!0);l(C,d,w,"ð","ð");l(c,v,w,"╱","\\diagup");l(c,v,w,"╲","\\diagdown");l(c,v,w,"□","\\square");l(c,v,w,"□","\\Box");l(c,v,w,"◊","\\Diamond");l(c,v,w,"¥","\\yen",!0);l(C,v,w,"¥","\\yen",!0);l(c,v,w,"✓","\\checkmark",!0);l(C,v,w,"✓","\\checkmark");l(c,v,w,"ℶ","\\beth",!0);l(c,v,w,"ℸ","\\daleth",!0);l(c,v,w,"ℷ","\\gimel",!0);l(c,v,w,"ϝ","\\digamma",!0);l(c,v,w,"ϰ","\\varkappa");l(c,v,z0,"┌","\\@ulcorner",!0);l(c,v,A0,"┐","\\@urcorner",!0);l(c,v,z0,"└","\\@llcorner",!0);l(c,v,A0,"┘","\\@lrcorner",!0);l(c,v,g,"≦","\\leqq",!0);l(c,v,g,"⩽","\\leqslant",!0);l(c,v,g,"⪕","\\eqslantless",!0);l(c,v,g,"≲","\\lesssim",!0);l(c,v,g,"⪅","\\lessapprox",!0);l(c,v,g,"≊","\\approxeq",!0);l(c,v,N,"⋖","\\lessdot");l(c,v,g,"⋘","\\lll",!0);l(c,v,g,"≶","\\lessgtr",!0);l(c,v,g,"⋚","\\lesseqgtr",!0);l(c,v,g,"⪋","\\lesseqqgtr",!0);l(c,v,g,"≑","\\doteqdot");l(c,v,g,"≓","\\risingdotseq",!0);l(c,v,g,"≒","\\fallingdotseq",!0);l(c,v,g,"∽","\\backsim",!0);l(c,v,g,"⋍","\\backsimeq",!0);l(c,v,g,"⫅","\\subseteqq",!0);l(c,v,g,"⋐","\\Subset",!0);l(c,v,g,"⊏","\\sqsubset",!0);l(c,v,g,"≼","\\preccurlyeq",!0);l(c,v,g,"⋞","\\curlyeqprec",!0);l(c,v,g,"≾","\\precsim",!0);l(c,v,g,"⪷","\\precapprox",!0);l(c,v,g,"⊲","\\vartriangleleft");l(c,v,g,"⊴","\\trianglelefteq");l(c,v,g,"⊨","\\vDash",!0);l(c,v,g,"⊪","\\Vvdash",!0);l(c,v,g,"⌣","\\smallsmile");l(c,v,g,"⌢","\\smallfrown");l(c,v,g,"≏","\\bumpeq",!0);l(c,v,g,"≎","\\Bumpeq",!0);l(c,v,g,"≧","\\geqq",!0);l(c,v,g,"⩾","\\geqslant",!0);l(c,v,g,"⪖","\\eqslantgtr",!0);l(c,v,g,"≳","\\gtrsim",!0);l(c,v,g,"⪆","\\gtrapprox",!0);l(c,v,N,"⋗","\\gtrdot");l(c,v,g,"⋙","\\ggg",!0);l(c,v,g,"≷","\\gtrless",!0);l(c,v,g,"⋛","\\gtreqless",!0);l(c,v,g,"⪌","\\gtreqqless",!0);l(c,v,g,"≖","\\eqcirc",!0);l(c,v,g,"≗","\\circeq",!0);l(c,v,g,"≜","\\triangleq",!0);l(c,v,g,"∼","\\thicksim");l(c,v,g,"≈","\\thickapprox");l(c,v,g,"⫆","\\supseteqq",!0);l(c,v,g,"⋑","\\Supset",!0);l(c,v,g,"⊐","\\sqsupset",!0);l(c,v,g,"≽","\\succcurlyeq",!0);l(c,v,g,"⋟","\\curlyeqsucc",!0);l(c,v,g,"≿","\\succsim",!0);l(c,v,g,"⪸","\\succapprox",!0);l(c,v,g,"⊳","\\vartriangleright");l(c,v,g,"⊵","\\trianglerighteq");l(c,v,g,"⊩","\\Vdash",!0);l(c,v,g,"∣","\\shortmid");l(c,v,g,"∥","\\shortparallel");l(c,v,g,"≬","\\between",!0);l(c,v,g,"⋔","\\pitchfork",!0);l(c,v,g,"∝","\\varpropto");l(c,v,g,"◀","\\blacktriangleleft");l(c,v,g,"∴","\\therefore",!0);l(c,v,g,"∍","\\backepsilon");l(c,v,g,"▶","\\blacktriangleright");l(c,v,g,"∵","\\because",!0);l(c,v,g,"⋘","\\llless");l(c,v,g,"⋙","\\gggtr");l(c,v,N,"⊲","\\lhd");l(c,v,N,"⊳","\\rhd");l(c,v,g,"≂","\\eqsim",!0);l(c,d,g,"⋈","\\Join");l(c,v,g,"≑","\\Doteq",!0);l(c,v,N,"∔","\\dotplus",!0);l(c,v,N,"∖","\\smallsetminus");l(c,v,N,"⋒","\\Cap",!0);l(c,v,N,"⋓","\\Cup",!0);l(c,v,N,"⩞","\\doublebarwedge",!0);l(c,v,N,"⊟","\\boxminus",!0);l(c,v,N,"⊞","\\boxplus",!0);l(c,v,N,"⋇","\\divideontimes",!0);l(c,v,N,"⋉","\\ltimes",!0);l(c,v,N,"⋊","\\rtimes",!0);l(c,v,N,"⋋","\\leftthreetimes",!0);l(c,v,N,"⋌","\\rightthreetimes",!0);l(c,v,N,"⋏","\\curlywedge",!0);l(c,v,N,"⋎","\\curlyvee",!0);l(c,v,N,"⊝","\\circleddash",!0);l(c,v,N,"⊛","\\circledast",!0);l(c,v,N,"⋅","\\centerdot");l(c,v,N,"⊺","\\intercal",!0);l(c,v,N,"⋒","\\doublecap");l(c,v,N,"⋓","\\doublecup");l(c,v,N,"⊠","\\boxtimes",!0);l(c,v,g,"⇢","\\dashrightarrow",!0);l(c,v,g,"⇠","\\dashleftarrow",!0);l(c,v,g,"⇇","\\leftleftarrows",!0);l(c,v,g,"⇆","\\leftrightarrows",!0);l(c,v,g,"⇚","\\Lleftarrow",!0);l(c,v,g,"↞","\\twoheadleftarrow",!0);l(c,v,g,"↢","\\leftarrowtail",!0);l(c,v,g,"↫","\\looparrowleft",!0);l(c,v,g,"⇋","\\leftrightharpoons",!0);l(c,v,g,"↶","\\curvearrowleft",!0);l(c,v,g,"↺","\\circlearrowleft",!0);l(c,v,g,"↰","\\Lsh",!0);l(c,v,g,"⇈","\\upuparrows",!0);l(c,v,g,"↿","\\upharpoonleft",!0);l(c,v,g,"⇃","\\downharpoonleft",!0);l(c,d,g,"⊶","\\origof",!0);l(c,d,g,"⊷","\\imageof",!0);l(c,v,g,"⊸","\\multimap",!0);l(c,v,g,"↭","\\leftrightsquigarrow",!0);l(c,v,g,"⇉","\\rightrightarrows",!0);l(c,v,g,"⇄","\\rightleftarrows",!0);l(c,v,g,"↠","\\twoheadrightarrow",!0);l(c,v,g,"↣","\\rightarrowtail",!0);l(c,v,g,"↬","\\looparrowright",!0);l(c,v,g,"↷","\\curvearrowright",!0);l(c,v,g,"↻","\\circlearrowright",!0);l(c,v,g,"↱","\\Rsh",!0);l(c,v,g,"⇊","\\downdownarrows",!0);l(c,v,g,"↾","\\upharpoonright",!0);l(c,v,g,"⇂","\\downharpoonright",!0);l(c,v,g,"⇝","\\rightsquigarrow",!0);l(c,v,g,"⇝","\\leadsto");l(c,v,g,"⇛","\\Rrightarrow",!0);l(c,v,g,"↾","\\restriction");l(c,d,w,"‘","`");l(c,d,w,"$","\\$");l(C,d,w,"$","\\$");l(C,d,w,"$","\\textdollar");l(c,d,w,"%","\\%");l(C,d,w,"%","\\%");l(c,d,w,"_","\\_");l(C,d,w,"_","\\_");l(C,d,w,"_","\\textunderscore");l(c,d,w,"∠","\\angle",!0);l(c,d,w,"∞","\\infty",!0);l(c,d,w,"′","\\prime");l(c,d,w,"△","\\triangle");l(c,d,w,"Γ","\\Gamma",!0);l(c,d,w,"Δ","\\Delta",!0);l(c,d,w,"Θ","\\Theta",!0);l(c,d,w,"Λ","\\Lambda",!0);l(c,d,w,"Ξ","\\Xi",!0);l(c,d,w,"Π","\\Pi",!0);l(c,d,w,"Σ","\\Sigma",!0);l(c,d,w,"Υ","\\Upsilon",!0);l(c,d,w,"Φ","\\Phi",!0);l(c,d,w,"Ψ","\\Psi",!0);l(c,d,w,"Ω","\\Omega",!0);l(c,d,w,"A","Α");l(c,d,w,"B","Β");l(c,d,w,"E","Ε");l(c,d,w,"Z","Ζ");l(c,d,w,"H","Η");l(c,d,w,"I","Ι");l(c,d,w,"K","Κ");l(c,d,w,"M","Μ");l(c,d,w,"N","Ν");l(c,d,w,"O","Ο");l(c,d,w,"P","Ρ");l(c,d,w,"T","Τ");l(c,d,w,"X","Χ");l(c,d,w,"¬","\\neg",!0);l(c,d,w,"¬","\\lnot");l(c,d,w,"⊤","\\top");l(c,d,w,"⊥","\\bot");l(c,d,w,"∅","\\emptyset");l(c,v,w,"∅","\\varnothing");l(c,d,P,"α","\\alpha",!0);l(c,d,P,"β","\\beta",!0);l(c,d,P,"γ","\\gamma",!0);l(c,d,P,"δ","\\delta",!0);l(c,d,P,"ϵ","\\epsilon",!0);l(c,d,P,"ζ","\\zeta",!0);l(c,d,P,"η","\\eta",!0);l(c,d,P,"θ","\\theta",!0);l(c,d,P,"ι","\\iota",!0);l(c,d,P,"κ","\\kappa",!0);l(c,d,P,"λ","\\lambda",!0);l(c,d,P,"μ","\\mu",!0);l(c,d,P,"ν","\\nu",!0);l(c,d,P,"ξ","\\xi",!0);l(c,d,P,"ο","\\omicron",!0);l(c,d,P,"π","\\pi",!0);l(c,d,P,"ρ","\\rho",!0);l(c,d,P,"σ","\\sigma",!0);l(c,d,P,"τ","\\tau",!0);l(c,d,P,"υ","\\upsilon",!0);l(c,d,P,"ϕ","\\phi",!0);l(c,d,P,"χ","\\chi",!0);l(c,d,P,"ψ","\\psi",!0);l(c,d,P,"ω","\\omega",!0);l(c,d,P,"ε","\\varepsilon",!0);l(c,d,P,"ϑ","\\vartheta",!0);l(c,d,P,"ϖ","\\varpi",!0);l(c,d,P,"ϱ","\\varrho",!0);l(c,d,P,"ς","\\varsigma",!0);l(c,d,P,"φ","\\varphi",!0);l(c,d,N,"∗","*",!0);l(c,d,N,"+","+");l(c,d,N,"−","-",!0);l(c,d,N,"⋅","\\cdot",!0);l(c,d,N,"∘","\\circ",!0);l(c,d,N,"÷","\\div",!0);l(c,d,N,"±","\\pm",!0);l(c,d,N,"×","\\times",!0);l(c,d,N,"∩","\\cap",!0);l(c,d,N,"∪","\\cup",!0);l(c,d,N,"∖","\\setminus",!0);l(c,d,N,"∧","\\land");l(c,d,N,"∨","\\lor");l(c,d,N,"∧","\\wedge",!0);l(c,d,N,"∨","\\vee",!0);l(c,d,w,"√","\\surd");l(c,d,z0,"⟨","\\langle",!0);l(c,d,z0,"∣","\\lvert");l(c,d,z0,"∥","\\lVert");l(c,d,A0,"?","?");l(c,d,A0,"!","!");l(c,d,A0,"⟩","\\rangle",!0);l(c,d,A0,"∣","\\rvert");l(c,d,A0,"∥","\\rVert");l(c,d,g,"=","=");l(c,d,g,":",":");l(c,d,g,"≈","\\approx",!0);l(c,d,g,"≅","\\cong",!0);l(c,d,g,"≥","\\ge");l(c,d,g,"≥","\\geq",!0);l(c,d,g,"←","\\gets");l(c,d,g,">","\\gt",!0);l(c,d,g,"∈","\\in",!0);l(c,d,g,"","\\@not");l(c,d,g,"⊂","\\subset",!0);l(c,d,g,"⊃","\\supset",!0);l(c,d,g,"⊆","\\subseteq",!0);l(c,d,g,"⊇","\\supseteq",!0);l(c,v,g,"⊈","\\nsubseteq",!0);l(c,v,g,"⊉","\\nsupseteq",!0);l(c,d,g,"⊨","\\models");l(c,d,g,"←","\\leftarrow",!0);l(c,d,g,"≤","\\le");l(c,d,g,"≤","\\leq",!0);l(c,d,g,"<","\\lt",!0);l(c,d,g,"→","\\rightarrow",!0);l(c,d,g,"→","\\to");l(c,v,g,"≱","\\ngeq",!0);l(c,v,g,"≰","\\nleq",!0);l(c,d,re," ","\\ ");l(c,d,re," ","\\space");l(c,d,re," ","\\nobreakspace");l(C,d,re," ","\\ ");l(C,d,re," "," ");l(C,d,re," ","\\space");l(C,d,re," ","\\nobreakspace");l(c,d,re,"","\\nobreak");l(c,d,re,"","\\allowbreak");l(c,d,Ye,",",",");l(c,d,Ye,";",";");l(c,v,N,"⊼","\\barwedge",!0);l(c,v,N,"⊻","\\veebar",!0);l(c,d,N,"⊙","\\odot",!0);l(c,d,N,"⊕","\\oplus",!0);l(c,d,N,"⊗","\\otimes",!0);l(c,d,w,"∂","\\partial",!0);l(c,d,N,"⊘","\\oslash",!0);l(c,v,N,"⊚","\\circledcirc",!0);l(c,v,N,"⊡","\\boxdot",!0);l(c,d,N,"△","\\bigtriangleup");l(c,d,N,"▽","\\bigtriangledown");l(c,d,N,"†","\\dagger");l(c,d,N,"⋄","\\diamond");l(c,d,N,"⋆","\\star");l(c,d,N,"◃","\\triangleleft");l(c,d,N,"▹","\\triangleright");l(c,d,z0,"{","\\{");l(C,d,w,"{","\\{");l(C,d,w,"{","\\textbraceleft");l(c,d,A0,"}","\\}");l(C,d,w,"}","\\}");l(C,d,w,"}","\\textbraceright");l(c,d,z0,"{","\\lbrace");l(c,d,A0,"}","\\rbrace");l(c,d,z0,"[","\\lbrack",!0);l(C,d,w,"[","\\lbrack",!0);l(c,d,A0,"]","\\rbrack",!0);l(C,d,w,"]","\\rbrack",!0);l(c,d,z0,"(","\\lparen",!0);l(c,d,A0,")","\\rparen",!0);l(C,d,w,"<","\\textless",!0);l(C,d,w,">","\\textgreater",!0);l(c,d,z0,"⌊","\\lfloor",!0);l(c,d,A0,"⌋","\\rfloor",!0);l(c,d,z0,"⌈","\\lceil",!0);l(c,d,A0,"⌉","\\rceil",!0);l(c,d,w,"\\","\\backslash");l(c,d,w,"∣","|");l(c,d,w,"∣","\\vert");l(C,d,w,"|","\\textbar",!0);l(c,d,w,"∥","\\|");l(c,d,w,"∥","\\Vert");l(C,d,w,"∥","\\textbardbl");l(C,d,w,"~","\\textasciitilde");l(C,d,w,"\\","\\textbackslash");l(C,d,w,"^","\\textasciicircum");l(c,d,g,"↑","\\uparrow",!0);l(c,d,g,"⇑","\\Uparrow",!0);l(c,d,g,"↓","\\downarrow",!0);l(c,d,g,"⇓","\\Downarrow",!0);l(c,d,g,"↕","\\updownarrow",!0);l(c,d,g,"⇕","\\Updownarrow",!0);l(c,d,h0,"∐","\\coprod");l(c,d,h0,"⋁","\\bigvee");l(c,d,h0,"⋀","\\bigwedge");l(c,d,h0,"⨄","\\biguplus");l(c,d,h0,"⋂","\\bigcap");l(c,d,h0,"⋃","\\bigcup");l(c,d,h0,"∫","\\int");l(c,d,h0,"∫","\\intop");l(c,d,h0,"∬","\\iint");l(c,d,h0,"∭","\\iiint");l(c,d,h0,"∏","\\prod");l(c,d,h0,"∑","\\sum");l(c,d,h0,"⨂","\\bigotimes");l(c,d,h0,"⨁","\\bigoplus");l(c,d,h0,"⨀","\\bigodot");l(c,d,h0,"∮","\\oint");l(c,d,h0,"∯","\\oiint");l(c,d,h0,"∰","\\oiiint");l(c,d,h0,"⨆","\\bigsqcup");l(c,d,h0,"∫","\\smallint");l(C,d,qe,"…","\\textellipsis");l(c,d,qe,"…","\\mathellipsis");l(C,d,qe,"…","\\ldots",!0);l(c,d,qe,"…","\\ldots",!0);l(c,d,qe,"⋯","\\@cdots",!0);l(c,d,qe,"⋱","\\ddots",!0);l(c,d,w,"⋮","\\varvdots");l(C,d,w,"⋮","\\varvdots");l(c,d,u0,"ˊ","\\acute");l(c,d,u0,"ˋ","\\grave");l(c,d,u0,"¨","\\ddot");l(c,d,u0,"~","\\tilde");l(c,d,u0,"ˉ","\\bar");l(c,d,u0,"˘","\\breve");l(c,d,u0,"ˇ","\\check");l(c,d,u0,"^","\\hat");l(c,d,u0,"⃗","\\vec");l(c,d,u0,"˙","\\dot");l(c,d,u0,"˚","\\mathring");l(c,d,P,"","\\@imath");l(c,d,P,"","\\@jmath");l(c,d,w,"ı","ı");l(c,d,w,"ȷ","ȷ");l(C,d,w,"ı","\\i",!0);l(C,d,w,"ȷ","\\j",!0);l(C,d,w,"ß","\\ss",!0);l(C,d,w,"æ","\\ae",!0);l(C,d,w,"œ","\\oe",!0);l(C,d,w,"ø","\\o",!0);l(C,d,w,"Æ","\\AE",!0);l(C,d,w,"Œ","\\OE",!0);l(C,d,w,"Ø","\\O",!0);l(C,d,u0,"ˊ","\\'");l(C,d,u0,"ˋ","\\`");l(C,d,u0,"ˆ","\\^");l(C,d,u0,"˜","\\~");l(C,d,u0,"ˉ","\\=");l(C,d,u0,"˘","\\u");l(C,d,u0,"˙","\\.");l(C,d,u0,"¸","\\c");l(C,d,u0,"˚","\\r");l(C,d,u0,"ˇ","\\v");l(C,d,u0,"¨",'\\"');l(C,d,u0,"˝","\\H");l(C,d,u0,"◯","\\textcircled");var rn={"--":!0,"---":!0,"``":!0,"''":!0};l(C,d,w,"–","--",!0);l(C,d,w,"–","\\textendash");l(C,d,w,"—","---",!0);l(C,d,w,"—","\\textemdash");l(C,d,w,"‘","`",!0);l(C,d,w,"‘","\\textquoteleft");l(C,d,w,"’","'",!0);l(C,d,w,"’","\\textquoteright");l(C,d,w,"“","``",!0);l(C,d,w,"“","\\textquotedblleft");l(C,d,w,"”","''",!0);l(C,d,w,"”","\\textquotedblright");l(c,d,w,"°","\\degree",!0);l(C,d,w,"°","\\degree");l(C,d,w,"°","\\textdegree",!0);l(c,d,w,"£","\\pounds");l(c,d,w,"£","\\mathsterling",!0);l(C,d,w,"£","\\pounds");l(C,d,w,"£","\\textsterling",!0);l(c,v,w,"✠","\\maltese");l(C,v,w,"✠","\\maltese");var Mr='0123456789/@."';for(var Yt=0;Yt<Mr.length;Yt++){var Br=Mr.charAt(Yt);l(c,d,w,Br,Br)}var qr='0123456789!@*()-=+";:?/.,';for(var Kt=0;Kt<qr.length;Kt++){var Rr=qr.charAt(Kt);l(C,d,w,Rr,Rr)}var kt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";for(var Jt=0;Jt<kt.length;Jt++){var lt=kt.charAt(Jt);l(c,d,P,lt,lt),l(C,d,w,lt,lt)}l(c,v,w,"C","ℂ");l(C,v,w,"C","ℂ");l(c,v,w,"H","ℍ");l(C,v,w,"H","ℍ");l(c,v,w,"N","ℕ");l(C,v,w,"N","ℕ");l(c,v,w,"P","ℙ");l(C,v,w,"P","ℙ");l(c,v,w,"Q","ℚ");l(C,v,w,"Q","ℚ");l(c,v,w,"R","ℝ");l(C,v,w,"R","ℝ");l(c,v,w,"Z","ℤ");l(C,v,w,"Z","ℤ");l(c,d,P,"h","ℎ");l(C,d,P,"h","ℎ");var j;for(var y0=0;y0<kt.length;y0++){var s0=kt.charAt(y0);j=String.fromCharCode(55349,56320+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56372+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56424+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56580+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56684+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56736+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56788+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56840+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56944+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),y0<26&&(j=String.fromCharCode(55349,56632+y0),l(c,d,P,s0,j),l(C,d,w,s0,j),j=String.fromCharCode(55349,56476+y0),l(c,d,P,s0,j),l(C,d,w,s0,j))}j="𝕜";l(c,d,P,"k",j);l(C,d,w,"k",j);for(var ge=0;ge<10;ge++){var se=ge.toString();j=String.fromCharCode(55349,57294+ge),l(c,d,P,se,j),l(C,d,w,se,j),j=String.fromCharCode(55349,57314+ge),l(c,d,P,se,j),l(C,d,w,se,j),j=String.fromCharCode(55349,57324+ge),l(c,d,P,se,j),l(C,d,w,se,j),j=String.fromCharCode(55349,57334+ge),l(c,d,P,se,j),l(C,d,w,se,j)}var xu="ÐÞþ";for(var Qt=0;Qt<xu.length;Qt++){var ot=xu.charAt(Qt);l(c,d,P,ot,ot),l(C,d,w,ot,ot)}var yu={mathClass:"mathbf",textClass:"textbf",font:"Main-Bold"},Ir={mathClass:"mathnormal",textClass:"textit",font:"Math-Italic"},Nr={mathClass:"boldsymbol",textClass:"boldsymbol",font:"Main-BoldItalic"},Ml={mathClass:"mathscr",textClass:"textscr",font:"Script-Regular"},ye={mathClass:"",textClass:"",font:""},Or={mathClass:"mathfrak",textClass:"textfrak",font:"Fraktur-Regular"},Lr={mathClass:"mathbb",textClass:"textbb",font:"AMS-Regular"},Pr={mathClass:"mathboldfrak",textClass:"textboldfrak",font:"Fraktur-Regular"},wu={mathClass:"mathsf",textClass:"textsf",font:"SansSerif-Regular"},ku={mathClass:"mathboldsf",textClass:"textboldsf",font:"SansSerif-Bold"},Hr={mathClass:"mathitsf",textClass:"textitsf",font:"SansSerif-Italic"},Au={mathClass:"mathtt",textClass:"texttt",font:"Typewriter-Regular"},$r=[yu,yu,Ir,Ir,Nr,Nr,Ml,ye,ye,ye,Or,Or,Lr,Lr,Pr,Pr,wu,wu,ku,ku,Hr,Hr,ye,ye,Au,Au],Bl=[yu,ye,wu,ku,Au],ql=e=>{var t=e.charCodeAt(0),u=e.charCodeAt(1),r=(t-55296)*1024+(u-56320)+65536;if(119808<=r&&r<120484){var n=Math.floor((r-119808)/26);return $r[n]}else if(120782<=r&&r<=120831){var a=Math.floor((r-120782)/10);return Bl[a]}else{if(r===120485||r===120486)return $r[0];if(120486<r&&r<120782)return ye;throw new z("Unsupported character: "+e)}},Tt=function(t,u,r){if(t0[r][t]){var n=t0[r][t].replace;n&&(t=n)}return{value:t,metrics:Gu(t,u,r)}},w0=function(t,u,r,n,a){var i=Tt(t,u,r),s=i.metrics;t=i.value;var o;if(s){var h=s.italic;(r==="text"||n&&n.font==="mathit")&&(h=0),o=new _0(t,s.height,s.depth,h,s.skew,s.width,a)}else typeof console<"u"&&console.warn("No character metrics "+("for '"+t+"' in style '"+u+"' and mode '"+r+"'")),o=new _0(t,0,0,0,0,0,a);if(n){o.maxFontSize=n.sizeMultiplier,n.style.isTight()&&o.classes.push("mtight");var f=n.getColor();f&&(o.style.color=f)}return o},Vu=function(t,u,r,n){return n===void 0&&(n=[]),r.font==="boldsymbol"&&Tt(t,"Main-Bold",u).metrics?w0(t,"Main-Bold",u,r,n.concat(["mathbf"])):t==="\\"||t0[u][t].font==="main"?w0(t,"Main-Regular",u,r,n):w0(t,"AMS-Regular",u,r,n.concat(["amsrm"]))},Rl=function(t,u,r){return r!=="textord"&&Tt(t,"Math-BoldItalic",u).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}},Mt=function(t,u){var r=t.type==="mathord"?"mathord":"textord",n=t.mode,a=t.text,i=["mord"],{font:s,fontFamily:o,fontWeight:h,fontShape:f}=u,p=n==="math"||n==="text"&&!!s,x=p?s:o,b="",y="";if(a.charCodeAt(0)===55349){var k=ql(a);b=k.font,y=k[n+"Class"]}if(b)return w0(a,b,n,u,i.concat(y));if(x){var A,D;if(x==="boldsymbol"){var S=Rl(a,n,r);A=S.fontName,D=[S.fontClass]}else p?(A=Cu[s].fontName,D=[s]):(A=ct(o,h,f),D=[o,h,f]);if(Tt(a,A,n).metrics)return w0(a,A,n,u,i.concat(D));if(rn.hasOwnProperty(a)&&A.slice(0,10)==="Typewriter"){for(var _=[],T=0;T<a.length;T++)_.push(w0(a[T],A,n,u,i.concat(D)));return ne(_)}}if(r==="mathord")return w0(a,"Math-Italic",n,u,i.concat(["mathnormal"]));if(r==="textord"){var B=t0[n][a]&&t0[n][a].font;if(B==="ams"){var q=ct("amsrm",h,f);return w0(a,q,n,u,i.concat("amsrm",h,f))}else if(B==="main"||!B){var L=ct("textrm",h,f);return w0(a,L,n,u,i.concat(h,f))}else{var $=ct(B,h,f);return w0(a,$,n,u,i.concat($,h,f))}}else throw new Error("unexpected type: "+r+" in makeOrd")},Il=(e,t)=>{if(de(e.classes)!==de(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize||e.italic!==0&&e.hasClass("mathnormal"))return!1;if(e.classes.length===1){var u=e.classes[0];if(u==="mbin"||u==="mord")return!1}for(var r of Object.keys(e.style))if(e.style[r]!==t.style[r])return!1;for(var n of Object.keys(t.style))if(e.style[n]!==t.style[n])return!1;return!0},nn=e=>{for(var t=0;t<e.length-1;t++){var u=e[t],r=e[t+1];u instanceof _0&&r instanceof _0&&Il(u,r)&&(u.text+=r.text,u.height=Math.max(u.height,r.height),u.depth=Math.max(u.depth,r.depth),u.italic=r.italic,e.splice(t+1,1),t--)}return e},Wu=function(t){for(var u=0,r=0,n=0,a=0;a<t.children.length;a++){var i=t.children[a];i.height>u&&(u=i.height),i.depth>r&&(r=i.depth),i.maxFontSize>n&&(n=i.maxFontSize)}t.height=u,t.depth=r,t.maxFontSize=n},E=function(t,u,r,n){var a=new Be(t,u,r,n);return Wu(a),a},me=(e,t,u,r)=>new Be(e,t,u,r),ze=function(t,u,r){var n=E([t],[],u);return n.height=Math.max(r||u.fontMetrics().defaultRuleThickness,u.minRuleThickness),n.style.borderBottomWidth=M(n.height),n.maxFontSize=1,n},Nl=function(t,u,r,n){var a=new Ft(t,u,r,n);return Wu(a),a},ne=function(t){var u=new Me(t);return Wu(u),u},Fe=function(t,u){return t instanceof Me?E([],[t],u):t},Ol=function(t){if(t.positionType==="individualShift"){for(var u=t.children,r=[u[0]],n=-u[0].shift-u[0].elem.depth,a=n,i=1;i<u.length;i++){var s=-u[i].shift-a-u[i].elem.depth,o=s-(u[i-1].elem.height+u[i-1].elem.depth);a=a+s,r.push({type:"kern",size:o}),r.push(u[i])}return{children:r,depth:n}}var h;if(t.positionType==="top"){for(var f=t.positionData,p=0;p<t.children.length;p++){var x=t.children[p];f-=x.type==="kern"?x.size:x.elem.height+x.elem.depth}h=f}else if(t.positionType==="bottom")h=-t.positionData;else{var b=t.children[0];if(b.type!=="elem")throw new Error('First child must have type "elem".');if(t.positionType==="shift")h=-b.elem.depth-t.positionData;else if(t.positionType==="firstBaseline")h=-b.elem.depth;else throw new Error("Invalid positionType "+t.positionType+".")}return{children:t.children,depth:h}},X=function(t,u){for(var{children:r,depth:n}=Ol(t),a=0,i=0;i<r.length;i++){var s=r[i];if(s.type==="elem"){var o=s.elem;a=Math.max(a,o.maxFontSize,o.height)}}a+=2;var h=E(["pstrut"],[]);h.style.height=M(a);for(var f=[],p=n,x=n,b=n,y=0;y<r.length;y++){var k=r[y];if(k.type==="kern")b+=k.size;else{var A=k.elem,D=k.wrapperClasses||[],S=k.wrapperStyle||{},_=E(D,[h,A],void 0,S);_.style.top=M(-a-b-A.depth),k.marginLeft&&(_.style.marginLeft=k.marginLeft),k.marginRight&&(_.style.marginRight=k.marginRight),f.push(_),b+=A.height+A.depth}p=Math.min(p,b),x=Math.max(x,b)}var T=E(["vlist"],f);T.style.height=M(x);var B;if(p<0){var q=E([],[]),L=E(["vlist"],[q]);L.style.height=M(-p);var $=E(["vlist-s"],[new _0("​")]);B=[E(["vlist-r"],[T,$]),E(["vlist-r"],[L])]}else B=[E(["vlist-r"],[T])];var U=E(["vlist-t"],B);return B.length===2&&U.classes.push("vlist-t2"),U.height=x,U.depth=-p,U},an=(e,t)=>{var u=E(["mspace"],[],t),r=a0(e,t);return u.style.marginRight=M(r),u},ct=(e,t,u)=>{var r,n;switch(e){case"amsrm":r="AMS";break;case"textrm":r="Main";break;case"textsf":r="SansSerif";break;case"texttt":r="Typewriter";break;default:r=e}return t==="textbf"&&u==="textit"?n="BoldItalic":t==="textbf"?n="Bold":u==="textit"?n="Italic":n="Regular",r+"-"+n},Cu={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathsfit:{variant:"sans-serif-italic",fontName:"SansSerif-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},sn={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]},ln=function(t,u){var[r,n,a]=sn[t],i=new fe(r),s=new te([i],{width:M(n),height:M(a),style:"width:"+M(n),viewBox:"0 0 "+1e3*n+" "+1e3*a,preserveAspectRatio:"xMinYMin"}),o=me(["overlay"],[s],u);return o.height=a,o.style.height=M(a),o.style.width=M(n),o},n0={number:3,unit:"mu"},xe={number:4,unit:"mu"},K0={number:5,unit:"mu"},Ll={mord:{mop:n0,mbin:xe,mrel:K0,minner:n0},mop:{mord:n0,mop:n0,mrel:K0,minner:n0},mbin:{mord:xe,mop:xe,mopen:xe,minner:xe},mrel:{mord:K0,mop:K0,mopen:K0,minner:K0},mopen:{},mclose:{mop:n0,mbin:xe,mrel:K0,minner:n0},mpunct:{mord:n0,mop:n0,mrel:K0,mopen:n0,mclose:n0,mpunct:n0,minner:n0},minner:{mord:n0,mop:n0,mbin:xe,mrel:K0,mopen:n0,mpunct:n0,minner:n0}},Pl={mord:{mop:n0},mop:{mord:n0,mop:n0},mbin:{},mrel:{},mopen:{},mclose:{mop:n0},mpunct:{},minner:{mop:n0}},on={},Ue={},Ge={};function I(e){for(var{type:t,names:u,htmlBuilder:r,mathmlBuilder:n}=e,a=0;a<u.length;++a)on[u[a]]=e;t&&(r&&(Ue[t]=r),n&&(Ge[t]=n))}function ke(e){var{type:t,htmlBuilder:u,mathmlBuilder:r}=e;u&&(Ue[t]=u),r&&(Ge[t]=r)}var At=function(t){return t.type==="ordgroup"&&t.body.length===1?t.body[0]:t},o0=function(t){return t.type==="ordgroup"?t.body:[t]},Hl=new Set(["leftmost","mbin","mopen","mrel","mop","mpunct"]),$l=new Set(["rightmost","mrel","mclose","mpunct"]),jl={display:G.DISPLAY,text:G.TEXT,script:G.SCRIPT,scriptscript:G.SCRIPTSCRIPT},Ul={mord:"mord",mop:"mop",mbin:"mbin",mrel:"mrel",mopen:"mopen",mclose:"mclose",mpunct:"mpunct",minner:"minner"},m0=function(t,u,r,n){n===void 0&&(n=[null,null]);for(var a=[],i=0;i<t.length;i++){var s=Y(t[i],u);if(s instanceof Me){var o=s.children;a.push(...o)}else a.push(s)}if(nn(a),!r)return a;var h=u;if(t.length===1){var f=t[0];f.type==="sizing"?h=u.havingSize(f.size):f.type==="styling"&&(h=u.havingStyle(jl[f.style]))}var p=E([n[0]||"leftmost"],[],u),x=E([n[1]||"rightmost"],[],u),b=r==="root";return Du(a,(y,k)=>{var A=k.classes[0],D=y.classes[0];A==="mbin"&&$l.has(D)?k.classes[0]="mord":D==="mbin"&&Hl.has(A)&&(y.classes[0]="mord")},{node:p},x,b),Du(a,(y,k)=>{var A,D,S=Eu(k),_=Eu(y),T=S&&_?y.hasClass("mtight")?(A=Pl[S])==null?void 0:A[_]:(D=Ll[S])==null?void 0:D[_]:null;if(T)return an(T,h)},{node:p},x,b),a},Du=function(t,u,r,n,a){n&&t.push(n);for(var i=0;i<t.length;i++){var s=t[i],o=cn(s);if(o){Du(o.children,u,r,null,a);continue}var h=!s.hasClass("mspace");if(h){var f=u(s,r.node);f&&(r.insertAfter?r.insertAfter(f):(t.unshift(f),i++))}h?r.node=s:a&&s.hasClass("newline")&&(r.node=E(["leftmost"])),r.insertAfter=(p=>x=>{t.splice(p+1,0,x),i++})(i)}n&&t.pop()},cn=function(t){return t instanceof Me||t instanceof Ft||t instanceof Be&&t.hasClass("enclosing")?t:null},Su=function(t,u){var r=cn(t);if(r){var n=r.children;if(n.length){if(u==="right")return Su(n[n.length-1],"right");if(u==="left")return Su(n[0],"left")}}return t},Eu=function(t,u){if(!t)return null;u&&(t=Su(t,u));var r=t.classes[0];return Ul[r]||null},Ve=function(t,u){var r=["nulldelimiter"].concat(t.baseSizingClasses());return E(u.concat(r))},Y=function(t,u,r){if(!t)return E();if(Ue[t.type]){var n=Ue[t.type](t,u);if(r&&u.size!==r.size){n=E(u.sizingClasses(r),[n],u);var a=u.sizeMultiplier/r.sizeMultiplier;n.height*=a,n.depth*=a}return n}else throw new z("Got group of unknown type: '"+t.type+"'")};function ht(e,t){var u=E(["base"],e,t),r=E(["strut"]);return r.style.height=M(u.height+u.depth),u.depth&&(r.style.verticalAlign=M(-u.depth)),u.children.unshift(r),u}function _u(e,t){var u=null;e.length===1&&e[0].type==="tag"&&(u=e[0].tag,e=e[0].body);var r=m0(e,t,"root"),n;r.length===2&&r[1].hasClass("tag")&&(n=r.pop());for(var a=[],i=[],s=0;s<r.length;s++)if(i.push(r[s]),r[s].hasClass("mbin")||r[s].hasClass("mrel")||r[s].hasClass("allowbreak")){for(var o=!1;s<r.length-1&&r[s+1].hasClass("mspace")&&!r[s+1].hasClass("newline");)s++,i.push(r[s]),r[s].hasClass("nobreak")&&(o=!0);o||(a.push(ht(i,t)),i=[])}else r[s].hasClass("newline")&&(i.pop(),i.length>0&&(a.push(ht(i,t)),i=[]),a.push(r[s]));i.length>0&&a.push(ht(i,t));var h;u?(h=ht(m0(u,t,!0),t),h.classes=["tag"],a.push(h)):n&&a.push(n);var f=E(["katex-html"],a);if(f.setAttribute("aria-hidden","true"),h){var p=h.children[0];p.style.height=M(f.height+f.depth),f.depth&&(p.style.verticalAlign=M(-f.depth))}return f}function hn(e){return new Me(e)}class F{constructor(t,u,r){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=t,this.attributes={},this.children=u||[],this.classes=r||[]}setAttribute(t,u){this.attributes[t]=u}getAttribute(t){return this.attributes[t]}toNode(){var t=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(var u in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,u)&&t.setAttribute(u,this.attributes[u]);this.classes.length>0&&(t.className=de(this.classes));for(var r=0;r<this.children.length;r++)if(this.children[r]instanceof c0&&this.children[r+1]instanceof c0){for(var n=this.children[r].toText()+this.children[++r].toText();this.children[r+1]instanceof c0;)n+=this.children[++r].toText();t.appendChild(new c0(n).toNode())}else t.appendChild(this.children[r].toNode());return t}toMarkup(){var t="<"+this.type;for(var u in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,u)&&(t+=" "+u+'="',t+=g0(this.attributes[u]),t+='"');this.classes.length>0&&(t+=' class ="'+g0(de(this.classes))+'"'),t+=">";for(var r=0;r<this.children.length;r++)t+=this.children[r].toMarkup();return t+="</"+this.type+">",t}toText(){return this.children.map(t=>t.toText()).join("")}}class c0{constructor(t){this.text=void 0,this.text=t}toNode(){return document.createTextNode(this.text)}toMarkup(){return g0(this.toText())}toText(){return this.text}}class dn{constructor(t){this.width=void 0,this.character=void 0,this.width=t,t>=.05555&&t<=.05556?this.character=" ":t>=.1666&&t<=.1667?this.character=" ":t>=.2222&&t<=.2223?this.character=" ":t>=.2777&&t<=.2778?this.character="  ":t>=-.05556&&t<=-.05555?this.character=" ⁣":t>=-.1667&&t<=-.1666?this.character=" ⁣":t>=-.2223&&t<=-.2222?this.character=" ⁣":t>=-.2778&&t<=-.2777?this.character=" ⁣":this.character=null}toNode(){if(this.character)return document.createTextNode(this.character);var t=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return t.setAttribute("width",M(this.width)),t}toMarkup(){return this.character?"<mtext>"+this.character+"</mtext>":'<mspace width="'+M(this.width)+'"/>'}toText(){return this.character?this.character:" "}}var Gl=new Set(["\\imath","\\jmath"]),Vl=new Set(["mrow","mtable"]),I0=function(t,u,r){return t0[u][t]&&t0[u][t].replace&&t.charCodeAt(0)!==55349&&!(rn.hasOwnProperty(t)&&r&&(r.fontFamily&&r.fontFamily.slice(4,6)==="tt"||r.font&&r.font.slice(4,6)==="tt"))&&(t=t0[u][t].replace),new c0(t)},Zu=function(t){return t.length===1?t[0]:new F("mrow",t)},Wl={mathit:"italic",boldsymbol:e=>e.type==="textord"?"bold":"bold-italic",mathbf:"bold",mathbb:"double-struck",mathsfit:"sans-serif-italic",mathfrak:"fraktur",mathscr:"script",mathcal:"script",mathsf:"sans-serif",mathtt:"monospace"},Xu=(e,t)=>{if(e.mode==="text"){if(t.fontFamily==="texttt")return"monospace";if(t.fontFamily==="textsf")return t.fontShape==="textit"&&t.fontWeight==="textbf"?"sans-serif-bold-italic":t.fontShape==="textit"?"sans-serif-italic":t.fontWeight==="textbf"?"bold-sans-serif":"sans-serif";if(t.fontShape==="textit"&&t.fontWeight==="textbf")return"bold-italic";if(t.fontShape==="textit")return"italic";if(t.fontWeight==="textbf")return"bold"}var u=t.font;if(!u||u==="mathnormal")return null;var r=e.mode,n=Wl[u];if(n)return typeof n=="function"?n(e):n;var a=e.text;if(Gl.has(a))return null;if(t0[r][a]){var i=t0[r][a].replace;i&&(a=i)}var s=Cu[u].fontName;return Gu(a,s,r)?Cu[u].variant:null};function eu(e){if(!e)return!1;if(e.type==="mi"&&e.children.length===1){var t=e.children[0];return t instanceof c0&&t.text==="."}else if(e.type==="mo"&&e.children.length===1&&e.getAttribute("separator")==="true"&&e.getAttribute("lspace")==="0em"&&e.getAttribute("rspace")==="0em"){var u=e.children[0];return u instanceof c0&&u.text===","}else return!1}var F0=function(t,u,r){if(t.length===1){var n=J(t[0],u);return r&&n instanceof F&&n.type==="mo"&&(n.setAttribute("lspace","0em"),n.setAttribute("rspace","0em")),[n]}for(var a=[],i,s=0;s<t.length;s++){var o=J(t[s],u);if(o instanceof F&&i instanceof F){if(o.type==="mtext"&&i.type==="mtext"&&o.getAttribute("mathvariant")===i.getAttribute("mathvariant")){i.children.push(...o.children);continue}else if(o.type==="mn"&&i.type==="mn"){i.children.push(...o.children);continue}else if(eu(o)&&i.type==="mn"){i.children.push(...o.children);continue}else if(o.type==="mn"&&eu(i))o.children=[...i.children,...o.children],a.pop();else if((o.type==="msup"||o.type==="msub")&&o.children.length>=1&&(i.type==="mn"||eu(i))){var h=o.children[0];h instanceof F&&h.type==="mn"&&(h.children=[...i.children,...h.children],a.pop())}else if(i.type==="mi"&&i.children.length===1){var f=i.children[0];if(f instanceof c0&&f.text==="̸"&&(o.type==="mo"||o.type==="mi"||o.type==="mn")){var p=o.children[0];p instanceof c0&&p.text.length>0&&(p.text=p.text.slice(0,1)+"̸"+p.text.slice(1),a.pop())}}}a.push(o),i=o}return a},pe=function(t,u,r){return Zu(F0(t,u,r))},J=function(t,u){if(!t)return new F("mrow");if(Ge[t.type])return Ge[t.type](t,u);throw new z("Got group of unknown type: '"+t.type+"'")};function jr(e,t,u,r,n){var a=F0(e,u),i;a.length===1&&a[0]instanceof F&&Vl.has(a[0].type)?i=a[0]:i=new F("mrow",a);var s=new F("annotation",[new c0(t)]);s.setAttribute("encoding","application/x-tex");var o=new F("semantics",[i,s]),h=new F("math",[o]);h.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),r&&h.setAttribute("display","block");var f=n?"katex":"katex-mathml";return E([f],[h])}var Zl=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],Ur=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],Gr=function(t,u){return u.size<2?t:Zl[t-1][u.size-1]};class J0{constructor(t){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=t.style,this.color=t.color,this.size=t.size||J0.BASESIZE,this.textSize=t.textSize||this.size,this.phantom=!!t.phantom,this.font=t.font||"",this.fontFamily=t.fontFamily||"",this.fontWeight=t.fontWeight||"",this.fontShape=t.fontShape||"",this.sizeMultiplier=Ur[this.size-1],this.maxSize=t.maxSize,this.minRuleThickness=t.minRuleThickness,this._fontMetrics=void 0}extend(t){var u={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};return Object.assign(u,t),new J0(u)}havingStyle(t){return this.style===t?this:this.extend({style:t,size:Gr(this.textSize,t)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(t){return this.size===t&&this.textSize===t?this:this.extend({style:this.style.text(),size:t,textSize:t,sizeMultiplier:Ur[t-1]})}havingBaseStyle(t){t=t||this.style.text();var u=Gr(J0.BASESIZE,t);return this.size===u&&this.textSize===J0.BASESIZE&&this.style===t?this:this.extend({style:t,size:u})}havingBaseSizing(){var t;switch(this.style.id){case 4:case 5:t=3;break;case 6:case 7:t=1;break;default:t=6}return this.extend({style:this.style.text(),size:t})}withColor(t){return this.extend({color:t})}withPhantom(){return this.extend({phantom:!0})}withFont(t){return this.extend({font:t})}withTextFontFamily(t){return this.extend({fontFamily:t,font:""})}withTextFontWeight(t){return this.extend({fontWeight:t,font:""})}withTextFontShape(t){return this.extend({fontShape:t,font:""})}sizingClasses(t){return t.size!==this.size?["sizing","reset-size"+t.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==J0.BASESIZE?["sizing","reset-size"+this.size,"size"+J0.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=Tl(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}J0.BASESIZE=6;var fn=function(t){return new J0({style:t.displayMode?G.DISPLAY:G.TEXT,maxSize:t.maxSize,minRuleThickness:t.minRuleThickness})},mn=function(t,u){if(u.displayMode){var r=["katex-display"];u.leqno&&r.push("leqno"),u.fleqn&&r.push("fleqn"),t=E(r,[t])}return t},Xl=function(t,u,r){var n=fn(r),a;if(r.output==="mathml")return jr(t,u,n,r.displayMode,!0);if(r.output==="html"){var i=_u(t,n);a=E(["katex"],[i])}else{var s=jr(t,u,n,r.displayMode,!1),o=_u(t,n);a=E(["katex"],[s,o])}return mn(a,r)},Yl=function(t,u,r){var n=fn(r),a=_u(t,n),i=E(["katex"],[a]);return mn(i,r)},Kl={widehat:"^",widecheck:"ˇ",widetilde:"~",utilde:"~",overleftarrow:"←",underleftarrow:"←",xleftarrow:"←",overrightarrow:"→",underrightarrow:"→",xrightarrow:"→",underbrace:"⏟",overbrace:"⏞",underbracket:"⎵",overbracket:"⎴",overgroup:"⏠",undergroup:"⏡",overleftrightarrow:"↔",underleftrightarrow:"↔",xleftrightarrow:"↔",Overrightarrow:"⇒",xRightarrow:"⇒",overleftharpoon:"↼",xleftharpoonup:"↼",overrightharpoon:"⇀",xrightharpoonup:"⇀",xLeftarrow:"⇐",xLeftrightarrow:"⇔",xhookleftarrow:"↩",xhookrightarrow:"↪",xmapsto:"↦",xrightharpoondown:"⇁",xleftharpoondown:"↽",xrightleftharpoons:"⇌",xleftrightharpoons:"⇋",xtwoheadleftarrow:"↞",xtwoheadrightarrow:"↠",xlongequal:"=",xtofrom:"⇄",xrightleftarrows:"⇄",xrightequilibrium:"⇌",xleftequilibrium:"⇋","\\cdrightarrow":"→","\\cdleftarrow":"←","\\cdlongequal":"="},Bt=function(t){var u=new F("mo",[new c0(Kl[t.replace(/^\\/,"")])]);return u.setAttribute("stretchy","true"),u},Jl={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overbracket:[["leftbracketover","rightbracketover"],1.6,440],underbracket:[["leftbracketunder","rightbracketunder"],1.6,410],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]},Ql=new Set(["widehat","widecheck","widetilde","utilde"]),qt=function(t,u){function r(){var s=4e5,o=t.label.slice(1);if(Ql.has(o)&&"base"in t){var h=t.base.type==="ordgroup"?t.base.body.length:1,f,p,x;if(h>5)o==="widehat"||o==="widecheck"?(f=420,s=2364,x=.42,p=o+"4"):(f=312,s=2340,x=.34,p="tilde4");else{var b=[1,1,2,2,3,3][h];o==="widehat"||o==="widecheck"?(s=[0,1062,2364,2364,2364][b],f=[0,239,300,360,420][b],x=[0,.24,.3,.3,.36,.42][b],p=o+b):(s=[0,600,1033,2339,2340][b],f=[0,260,286,306,312][b],x=[0,.26,.286,.3,.306,.34][b],p="tilde"+b)}var y=new fe(p),k=new te([y],{width:"100%",height:M(x),viewBox:"0 0 "+s+" "+f,preserveAspectRatio:"none"});return{span:me([],[k],u),minWidth:0,height:x}}else{var A=[],D=Jl[o];if(!D)throw new Error('No SVG data for "'+o+'".');var[S,_,T]=D,B=T/1e3,q=S.length,L,$;if(q===1){if(D.length!==4)throw new Error('Expected 4-tuple for single-path SVG data "'+o+'".');L=["hide-tail"],$=[D[3]]}else if(q===2)L=["halfarrow-left","halfarrow-right"],$=["xMinYMin","xMaxYMin"];else if(q===3)L=["brace-left","brace-center","brace-right"],$=["xMinYMin","xMidYMin","xMaxYMin"];else throw new Error(`Correct katexImagesData or update code here to support
267
+ `+q+" children.");for(var U=0;U<q;U++){var i0=new fe(S[U]),r0=new te([i0],{width:"400em",height:M(B),viewBox:"0 0 "+s+" "+T,preserveAspectRatio:$[U]+" slice"}),K=me([L[U]],[r0],u);if(q===1)return{span:K,minWidth:_,height:B};K.style.height=M(B),A.push(K)}return{span:E(["stretchy"],A,u),minWidth:_,height:B}}}var{span:n,minWidth:a,height:i}=r();return n.height=i,n.style.height=M(i),a>0&&(n.style.minWidth=M(a)),n},eo=function(t,u,r,n,a){var i,s=t.height+t.depth+r+n;if(/fbox|color|angl/.test(u)){if(i=E(["stretchy",u],[],a),u==="fbox"){var o=a.color&&a.getColor();o&&(i.style.borderColor=o)}}else{var h=[];/^[bx]cancel$/.test(u)&&h.push(new gu({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(u)&&h.push(new gu({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));var f=new te(h,{width:"100%",height:M(s)});i=me([],[f],a)}return i.height=s,i.style.height=M(s),i},to={bin:1,close:1,inner:1,open:1,punct:1,rel:1},uo={"accent-token":1,mathord:1,"op-token":1,spacing:1,textord:1};function ro(e){return e in to}function V(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function Rt(e){var t=It(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function It(e){return e&&(e.type==="atom"||uo.hasOwnProperty(e.type))?e:null}var pn=e=>{if(e instanceof _0)return e;if(zl(e)&&e.children.length===1)return pn(e.children[0])},bn=(e,t)=>{var u,r,n;e&&e.type==="supsub"?(r=V(e.base,"accent"),u=r.base,e.base=u,n=_l(Y(e,t)),e.base=r):(r=V(e,"accent"),u=r.base);var a=Y(u,t.havingCrampedStyle()),i=r.isShifty&&ue(u),s=0;if(i){var o,h;s=(o=(h=pn(a))==null?void 0:h.skew)!=null?o:0}var f=r.label==="\\c",p=f?a.height+a.depth:Math.min(a.height,t.fontMetrics().xHeight),x;if(r.isStretchy)x=qt(r,t),x=X({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"elem",elem:x,wrapperClasses:["svg-align"],wrapperStyle:s>0?{width:"calc(100% - "+M(2*s)+")",marginLeft:M(2*s)}:void 0}]});else{var b,y;r.label==="\\vec"?(b=ln("vec",t),y=sn.vec[1]):(b=Mt({type:"textord",mode:r.mode,text:r.label},t),b=El(b),b.italic=0,y=b.width,f&&(p+=b.depth)),x=E(["accent-body"],[b]);var k=r.label==="\\textcircled";k&&(x.classes.push("accent-full"),p=a.height);var A=s;k||(A-=y/2),x.style.left=M(A),r.label==="\\textcircled"&&(x.style.top=".2em"),x=X({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"kern",size:-p},{type:"elem",elem:x}]})}var D=E(["mord","accent"],[x],t);return n?(n.children[0]=D,n.height=Math.max(D.height,n.height),n.classes[0]="mord",n):D},no=(e,t)=>{var u=e.isStretchy?Bt(e.label):new F("mo",[I0(e.label,e.mode)]),r=new F("mover",[J(e.base,t),u]);return r.setAttribute("accent","true"),r},ao=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map(e=>"\\"+e).join("|"));I({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],numArgs:1,handler:(e,t)=>{var u=At(t[0]),r=!ao.test(e.funcName),n=!r||e.funcName==="\\widehat"||e.funcName==="\\widetilde"||e.funcName==="\\widecheck";return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:r,isShifty:n,base:u}},htmlBuilder:bn,mathmlBuilder:no});I({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"],handler:(e,t)=>{var u=t[0],r=e.parser.mode;return r==="math"&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),r="text"),{type:"accent",mode:r,label:e.funcName,isStretchy:!1,isShifty:!0,base:u}}});I({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],numArgs:1,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0];return{type:"accentUnder",mode:u.mode,label:r,base:n}},htmlBuilder:(e,t)=>{var u=Y(e.base,t),r=qt(e,t),n=e.label==="\\utilde"?.12:0,a=X({positionType:"top",positionData:u.height,children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:n},{type:"elem",elem:u}]});return E(["mord","accentunder"],[a],t)},mathmlBuilder:(e,t)=>{var u=Bt(e.label),r=new F("munder",[J(e.base,t),u]);return r.setAttribute("accentunder","true"),r}});var dt=e=>{var t=new F("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};I({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],numArgs:1,numOptionalArgs:1,handler(e,t,u){var{parser:r,funcName:n}=e;return{type:"xArrow",mode:r.mode,label:n,body:t[0],below:u[0]}},htmlBuilder(e,t){var u=t.style,r=t.havingStyle(u.sup()),n=Fe(Y(e.body,r,t),t),a=e.label.slice(0,2)==="\\x"?"x":"cd";n.classes.push(a+"-arrow-pad");var i;e.below&&(r=t.havingStyle(u.sub()),i=Fe(Y(e.below,r,t),t),i.classes.push(a+"-arrow-pad"));var s=qt(e,t),o=-t.fontMetrics().axisHeight+.5*s.height,h=-t.fontMetrics().axisHeight-.5*s.height-.111;(n.depth>.25||e.label==="\\xleftequilibrium")&&(h-=n.depth);var f;if(i){var p=-t.fontMetrics().axisHeight+i.height+.5*s.height+.111;f=X({positionType:"individualShift",children:[{type:"elem",elem:n,shift:h},{type:"elem",elem:s,shift:o,wrapperClasses:["svg-align"]},{type:"elem",elem:i,shift:p}]})}else f=X({positionType:"individualShift",children:[{type:"elem",elem:n,shift:h},{type:"elem",elem:s,shift:o,wrapperClasses:["svg-align"]}]});return E(["mrel","x-arrow"],[f],t)},mathmlBuilder(e,t){var u=Bt(e.label);u.setAttribute("minsize",e.label.charAt(0)==="x"?"1.75em":"3.0em");var r;if(e.body){var n=dt(J(e.body,t));if(e.below){var a=dt(J(e.below,t));r=new F("munderover",[u,a,n])}else r=new F("mover",[u,n])}else if(e.below){var i=dt(J(e.below,t));r=new F("munder",[u,i])}else r=dt(),r=new F("mover",[u,r]);return r}});function io(e,t){var u=m0(e.body,t,!0);return E([e.mclass],u,t)}function so(e,t){var u,r=F0(e.body,t);return e.mclass==="minner"?u=new F("mpadded",r):e.mclass==="mord"?e.isCharacterBox?(u=r[0],u.type="mi"):u=new F("mi",r):(e.isCharacterBox?(u=r[0],u.type="mo"):u=new F("mo",r),e.mclass==="mbin"?(u.attributes.lspace="0.22em",u.attributes.rspace="0.22em"):e.mclass==="mpunct"?(u.attributes.lspace="0em",u.attributes.rspace="0.17em"):(e.mclass==="mopen"||e.mclass==="mclose")&&(u.attributes.lspace="0em",u.attributes.rspace="0em")),u}I({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],numArgs:1,primitive:!0,handler(e,t){var{parser:u,funcName:r}=e,n=t[0];return{type:"mclass",mode:u.mode,mclass:"m"+r.slice(5),body:o0(n),isCharacterBox:ue(n)}},htmlBuilder:io,mathmlBuilder:so});var Nt=e=>{var t=e.type==="ordgroup"&&e.body.length?e.body[0]:e;return t.type==="atom"&&(t.family==="bin"||t.family==="rel")?"m"+t.family:"mord"};I({type:"mclass",names:["\\@binrel"],numArgs:2,handler(e,t){var{parser:u}=e;return{type:"mclass",mode:u.mode,mclass:Nt(t[0]),body:o0(t[1]),isCharacterBox:ue(t[1])}}});I({type:"mclass",names:["\\stackrel","\\overset","\\underset"],numArgs:2,handler(e,t){var{parser:u,funcName:r}=e,n=t[1],a=t[0],i;r!=="\\stackrel"?i=Nt(n):i="mrel";var s={type:"op",mode:n.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:r!=="\\stackrel",body:o0(n)},o=r==="\\underset"?{type:"supsub",mode:a.mode,base:s,sub:a}:{type:"supsub",mode:a.mode,base:s,sup:a};return{type:"mclass",mode:u.mode,mclass:i,body:[o],isCharacterBox:ue(o)}}});I({type:"pmb",names:["\\pmb"],numArgs:1,allowedInText:!0,handler(e,t){var{parser:u}=e;return{type:"pmb",mode:u.mode,mclass:Nt(t[0]),body:o0(t[0])}},htmlBuilder(e,t){var u=m0(e.body,t,!0),r=E([e.mclass],u,t);return r.style.textShadow="0.02em 0.01em 0.04px",r},mathmlBuilder(e,t){var u=F0(e.body,t),r=new F("mstyle",u);return r.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),r}});var lo={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},Vr=()=>({type:"styling",body:[],mode:"math",style:"display",resetFont:!0}),Wr=e=>e.type==="textord"&&e.text==="@",oo=(e,t)=>(e.type==="mathord"||e.type==="atom")&&e.text===t;function co(e,t,u){var r=lo[e];switch(r){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return u.callFunction(r,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{var n=u.callFunction("\\\\cdleft",[t[0]],[]),a={type:"atom",text:r,mode:"math",family:"rel"},i=u.callFunction("\\Big",[a],[]),s=u.callFunction("\\\\cdright",[t[1]],[]),o={type:"ordgroup",mode:"math",body:[n,i,s]};return u.callFunction("\\\\cdparent",[o],[])}case"\\\\cdlongequal":return u.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{var h={type:"textord",text:"\\Vert",mode:"math"};return u.callFunction("\\Big",[h],[])}default:return{type:"textord",text:" ",mode:"math"}}}function ho(e){var t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();var u=e.fetch().text;if(u==="&"||u==="\\\\")e.consume();else if(u==="\\end"){t[t.length-1].length===0&&t.pop();break}else throw new z("Expected \\\\ or \\cr or \\end",e.nextToken)}for(var r=[],n=[r],a=0;a<t.length;a++){for(var i=t[a],s=Vr(),o=0;o<i.length;o++)if(!Wr(i[o]))s.body.push(i[o]);else{r.push(s),o+=1;var h=Rt(i[o]).text,f=new Array(2);if(f[0]={type:"ordgroup",mode:"math",body:[]},f[1]={type:"ordgroup",mode:"math",body:[]},!"=|.".includes(h))if("<>AV".includes(h))for(var p=0;p<2;p++){for(var x=!0,b=o+1;b<i.length;b++){if(oo(i[b],h)){x=!1,o=b;break}if(Wr(i[b]))throw new z("Missing a "+h+" character to complete a CD arrow.",i[b]);f[p].body.push(i[b])}if(x)throw new z("Missing a "+h+" character to complete a CD arrow.",i[o])}else throw new z('Expected one of "<>AV=|." after @',i[o]);var y=co(h,f,e),k={type:"styling",body:[y],mode:"math",style:"display",resetFont:!0};r.push(k),s=Vr()}a%2===0?r.push(s):r.shift(),r=[],n.push(r)}e.gullet.endGroup(),e.gullet.endGroup();var A=new Array(n[0].length).fill({type:"align",align:"c",pregap:.25,postgap:.25});return{type:"array",mode:"math",body:n,arraystretch:1,addJot:!0,rowGaps:[null],cols:A,colSeparationType:"CD",hLinesBeforeRow:new Array(n.length+1).fill([])}}I({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],numArgs:1,handler(e,t){var{parser:u,funcName:r}=e;return{type:"cdlabel",mode:u.mode,side:r.slice(4),label:t[0]}},htmlBuilder(e,t){var u=t.havingStyle(t.style.sup()),r=Fe(Y(e.label,u,t),t);return r.classes.push("cd-label-"+e.side),r.style.bottom=M(.8-r.depth),r.height=0,r.depth=0,r},mathmlBuilder(e,t){var u=new F("mrow",[J(e.label,t)]);return u=new F("mpadded",[u]),u.setAttribute("width","0"),e.side==="left"&&u.setAttribute("lspace","-1width"),u.setAttribute("voffset","0.7em"),u=new F("mstyle",[u]),u.setAttribute("displaystyle","false"),u.setAttribute("scriptlevel","1"),u}});I({type:"cdlabelparent",names:["\\\\cdparent"],numArgs:1,handler(e,t){var{parser:u}=e;return{type:"cdlabelparent",mode:u.mode,fragment:t[0]}},htmlBuilder(e,t){var u=Fe(Y(e.fragment,t),t);return u.classes.push("cd-vert-arrow"),u},mathmlBuilder(e,t){return new F("mrow",[J(e.fragment,t)])}});I({type:"textord",names:["\\@char"],numArgs:1,allowedInText:!0,handler(e,t){for(var{parser:u}=e,r=V(t[0],"ordgroup"),n=r.body,a="",i=0;i<n.length;i++){var s=V(n[i],"textord");a+=s.text}var o=parseInt(a),h;if(isNaN(o))throw new z("\\@char has non-numeric argument "+a);if(o<0||o>=1114111)throw new z("\\@char with invalid code point "+a);return o<=65535?h=String.fromCharCode(o):(o-=65536,h=String.fromCharCode((o>>10)+55296,(o&1023)+56320)),{type:"textord",mode:u.mode,text:h}}});var fo=(e,t)=>{var u=m0(e.body,t.withColor(e.color),!1);return ne(u)},mo=(e,t)=>{var u=F0(e.body,t.withColor(e.color)),r=new F("mstyle",u);return r.setAttribute("mathcolor",e.color),r};I({type:"color",names:["\\textcolor"],numArgs:2,allowedInText:!0,argTypes:["color","original"],handler(e,t){var{parser:u}=e,r=V(t[0],"color-token").color,n=t[1];return{type:"color",mode:u.mode,color:r,body:o0(n)}},htmlBuilder:fo,mathmlBuilder:mo});I({type:"color",names:["\\color"],numArgs:1,allowedInText:!0,argTypes:["color"],handler(e,t){var{parser:u,breakOnTokenText:r}=e,n=V(t[0],"color-token").color;u.gullet.macros.set("\\current@color",n);var a=u.parseExpression(!0,r);return{type:"color",mode:u.mode,color:n,body:a}}});I({type:"cr",names:["\\\\"],numArgs:0,numOptionalArgs:0,allowedInText:!0,handler(e,t,u){var{parser:r}=e,n=r.gullet.future().text==="["?r.parseSizeGroup(!0):null,a=!r.settings.displayMode||!r.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:r.mode,newLine:a,size:n&&V(n,"size").value}},htmlBuilder(e,t){var u=E(["mspace"],[],t);return e.newLine&&(u.classes.push("newline"),e.size&&(u.style.marginTop=M(a0(e.size,t)))),u},mathmlBuilder(e,t){var u=new F("mspace");return e.newLine&&(u.setAttribute("linebreak","newline"),e.size&&u.setAttribute("height",M(a0(e.size,t)))),u}});var zu={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},vn=e=>{var t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new z("Expected a control sequence",e);return t},po=e=>{var t=e.gullet.popToken();return t.text==="="&&(t=e.gullet.popToken(),t.text===" "&&(t=e.gullet.popToken())),t},gn=(e,t,u,r)=>{var n=e.gullet.macros.get(u.text);n==null&&(u.noexpand=!0,n={tokens:[u],numArgs:0,unexpandable:!e.gullet.isExpandable(u.text)}),e.gullet.macros.set(t,n,r)};I({type:"internal",names:["\\global","\\long","\\\\globallong"],numArgs:0,allowedInText:!0,handler(e){var{parser:t,funcName:u}=e;t.consumeSpaces();var r=t.fetch();if(zu[r.text])return(u==="\\global"||u==="\\\\globallong")&&(r.text=zu[r.text]),V(t.parseFunction(),"internal");throw new z("Invalid token after macro prefix",r)}});I({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],numArgs:0,allowedInText:!0,primitive:!0,handler(e){var{parser:t,funcName:u}=e,r=t.gullet.popToken(),n=r.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(n))throw new z("Expected a control sequence",r);for(var a=0,i,s=[[]];t.gullet.future().text!=="{";)if(r=t.gullet.popToken(),r.text==="#"){if(t.gullet.future().text==="{"){i=t.gullet.future(),s[a].push("{");break}if(r=t.gullet.popToken(),!/^[1-9]$/.test(r.text))throw new z('Invalid argument number "'+r.text+'"');if(parseInt(r.text)!==a+1)throw new z('Argument number "'+r.text+'" out of order');a++,s.push([])}else{if(r.text==="EOF")throw new z("Expected a macro definition");s[a].push(r.text)}var{tokens:o}=t.gullet.consumeArg();return i&&o.unshift(i),(u==="\\edef"||u==="\\xdef")&&(o=t.gullet.expandTokens(o),o.reverse()),t.gullet.macros.set(n,{tokens:o,numArgs:a,delimiters:s},u===zu[u]),{type:"internal",mode:t.mode}}});I({type:"internal",names:["\\let","\\\\globallet"],numArgs:0,allowedInText:!0,primitive:!0,handler(e){var{parser:t,funcName:u}=e,r=vn(t.gullet.popToken());t.gullet.consumeSpaces();var n=po(t);return gn(t,r,n,u==="\\\\globallet"),{type:"internal",mode:t.mode}}});I({type:"internal",names:["\\futurelet","\\\\globalfuture"],numArgs:0,allowedInText:!0,primitive:!0,handler(e){var{parser:t,funcName:u}=e,r=vn(t.gullet.popToken()),n=t.gullet.popToken(),a=t.gullet.popToken();return gn(t,r,a,u==="\\\\globalfuture"),t.gullet.pushToken(a),t.gullet.pushToken(n),{type:"internal",mode:t.mode}}});var Ie=function(t,u,r){var n=t0.math[t]&&t0.math[t].replace,a=Gu(n||t,u,r);if(!a)throw new Error("Unsupported symbol "+t+" and font size "+u+".");return a},Yu=function(t,u,r,n){var a=r.havingBaseStyle(u),i=E(n.concat(a.sizingClasses(r)),[t],r),s=a.sizeMultiplier/r.sizeMultiplier;return i.height*=s,i.depth*=s,i.maxFontSize=a.sizeMultiplier,i},xn=function(t,u,r){var n=u.havingBaseStyle(r),a=(1-u.sizeMultiplier/n.sizeMultiplier)*u.fontMetrics().axisHeight;t.classes.push("delimcenter"),t.style.top=M(a),t.height-=a,t.depth+=a},bo=function(t,u,r,n,a,i){var s=w0(t,"Main-Regular",a,n),o=Yu(s,u,n,i);return xn(o,n,u),o},vo=function(t,u,r,n){return w0(t,"Size"+u+"-Regular",r,n)},yn=function(t,u,r,n,a,i){var s=vo(t,u,a,n),o=Yu(E(["delimsizing","size"+u],[s],n),G.TEXT,n,i);return r&&xn(o,n,G.TEXT),o},tu=function(t,u,r){var n;u==="Size1-Regular"?n="delim-size1":n="delim-size4";var a=E(["delimsizinginner",n],[E([],[w0(t,u,r)])]);return{type:"elem",elem:a}},uu=function(t,u,r){var n=j0["Size4-Regular"][t.charCodeAt(0)]?j0["Size4-Regular"][t.charCodeAt(0)][4]:j0["Size1-Regular"][t.charCodeAt(0)][4],a=new fe("inner",yl(t,Math.round(1e3*u))),i=new te([a],{width:M(n),height:M(u),style:"width:"+M(n),viewBox:"0 0 "+1e3*n+" "+Math.round(1e3*u),preserveAspectRatio:"xMinYMin"}),s=me([],[i],r);return s.height=u,s.style.height=M(u),s.style.width=M(n),{type:"elem",elem:s}},Fu=.008,ft={type:"kern",size:-1*Fu},go=new Set(["|","\\lvert","\\rvert","\\vert"]),xo=new Set(["\\|","\\lVert","\\rVert","\\Vert"]),wn=function(t,u,r,n,a,i){var s,o,h,f,p="",x=0;s=h=f=t,o=null;var b="Size1-Regular";t==="\\uparrow"?h=f="⏐":t==="\\Uparrow"?h=f="‖":t==="\\downarrow"?s=h="⏐":t==="\\Downarrow"?s=h="‖":t==="\\updownarrow"?(s="\\uparrow",h="⏐",f="\\downarrow"):t==="\\Updownarrow"?(s="\\Uparrow",h="‖",f="\\Downarrow"):go.has(t)?(h="∣",p="vert",x=333):xo.has(t)?(h="∥",p="doublevert",x=556):t==="["||t==="\\lbrack"?(s="⎡",h="⎢",f="⎣",b="Size4-Regular",p="lbrack",x=667):t==="]"||t==="\\rbrack"?(s="⎤",h="⎥",f="⎦",b="Size4-Regular",p="rbrack",x=667):t==="\\lfloor"||t==="⌊"?(h=s="⎢",f="⎣",b="Size4-Regular",p="lfloor",x=667):t==="\\lceil"||t==="⌈"?(s="⎡",h=f="⎢",b="Size4-Regular",p="lceil",x=667):t==="\\rfloor"||t==="⌋"?(h=s="⎥",f="⎦",b="Size4-Regular",p="rfloor",x=667):t==="\\rceil"||t==="⌉"?(s="⎤",h=f="⎥",b="Size4-Regular",p="rceil",x=667):t==="("||t==="\\lparen"?(s="⎛",h="⎜",f="⎝",b="Size4-Regular",p="lparen",x=875):t===")"||t==="\\rparen"?(s="⎞",h="⎟",f="⎠",b="Size4-Regular",p="rparen",x=875):t==="\\{"||t==="\\lbrace"?(s="⎧",o="⎨",f="⎩",h="⎪",b="Size4-Regular"):t==="\\}"||t==="\\rbrace"?(s="⎫",o="⎬",f="⎭",h="⎪",b="Size4-Regular"):t==="\\lgroup"||t==="⟮"?(s="⎧",f="⎩",h="⎪",b="Size4-Regular"):t==="\\rgroup"||t==="⟯"?(s="⎫",f="⎭",h="⎪",b="Size4-Regular"):t==="\\lmoustache"||t==="⎰"?(s="⎧",f="⎭",h="⎪",b="Size4-Regular"):(t==="\\rmoustache"||t==="⎱")&&(s="⎫",f="⎩",h="⎪",b="Size4-Regular");var y=Ie(s,b,a),k=y.height+y.depth,A=Ie(h,b,a),D=A.height+A.depth,S=Ie(f,b,a),_=S.height+S.depth,T=0,B=1;if(o!==null){var q=Ie(o,b,a);T=q.height+q.depth,B=2}var L=k+_+T,$=Math.max(0,Math.ceil((u-L)/(B*D))),U=L+$*B*D,i0=n.fontMetrics().axisHeight;r&&(i0*=n.sizeMultiplier);var r0=U/2-i0,K=[];if(p.length>0){var X0=U-k-_,x0=Math.round(U*1e3),l0=wl(p,Math.round(X0*1e3)),T0=new fe(p,l0),M0=M(x/1e3),Y0=M(x0/1e3),Re=new te([T0],{width:M0,height:Y0,viewBox:"0 0 "+x+" "+x0}),R=me([],[Re],n);R.height=x0/1e3,R.style.width=M0,R.style.height=Y0,K.push({type:"elem",elem:R})}else{if(K.push(tu(f,b,a)),K.push(ft),o===null){var O=U-k-_+2*Fu;K.push(uu(h,O,n))}else{var d0=(U-k-_-T)/2+2*Fu;K.push(uu(h,d0,n)),K.push(ft),K.push(tu(o,b,a)),K.push(ft),K.push(uu(h,d0,n))}K.push(ft),K.push(tu(s,b,a))}var W=n.havingBaseStyle(G.TEXT),e0=X({positionType:"bottom",positionData:r0,children:K});return Yu(E(["delimsizing","mult"],[e0],W),G.TEXT,n,i)},ru=80,nu=.08,au=function(t,u,r,n,a){var i=xl(t,n,r),s=new fe(t,i),o=new te([s],{width:"400em",height:M(u),viewBox:"0 0 400000 "+r,preserveAspectRatio:"xMinYMin slice"});return me(["hide-tail"],[o],a)},yo=function(t,u){var r=u.havingBaseSizing(),n=Sn("\\surd",t*r.sizeMultiplier,Dn,r),a=r.sizeMultiplier,i=Math.max(0,u.minRuleThickness-u.fontMetrics().sqrtRuleThickness),s,o,h,f,p;return n.type==="small"?(f=1e3+1e3*i+ru,t<1?a=1:t<1.4&&(a=.7),o=(1+i+nu)/a,h=(1+i)/a,s=au("sqrtMain",o,f,i,u),s.style.minWidth="0.853em",p=.833/a):n.type==="large"?(f=(1e3+ru)*Ne[n.size],h=(Ne[n.size]+i)/a,o=(Ne[n.size]+i+nu)/a,s=au("sqrtSize"+n.size,o,f,i,u),s.style.minWidth="1.02em",p=1/a):(o=t+i+nu,h=t+i,f=Math.floor(1e3*t+i)+ru,s=au("sqrtTall",o,f,i,u),s.style.minWidth="0.742em",p=1.056),s.height=h,s.style.height=M(o),{span:s,advanceWidth:p,ruleWidth:(u.fontMetrics().sqrtRuleThickness+i)*a}},kn=new Set(["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","\\surd"]),wo=new Set(["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱"]),An=new Set(["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"]),Ne=[0,1.2,1.8,2.4,3],Cn=function(t,u,r,n,a){if(t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle"),kn.has(t)||An.has(t))return yn(t,u,!1,r,n,a);if(wo.has(t))return wn(t,Ne[u],!1,r,n,a);throw new z("Illegal delimiter: '"+t+"'")},ko=[{type:"small",style:G.SCRIPTSCRIPT},{type:"small",style:G.SCRIPT},{type:"small",style:G.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],Ao=[{type:"small",style:G.SCRIPTSCRIPT},{type:"small",style:G.SCRIPT},{type:"small",style:G.TEXT},{type:"stack"}],Dn=[{type:"small",style:G.SCRIPTSCRIPT},{type:"small",style:G.SCRIPT},{type:"small",style:G.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],Co=function(t){if(t.type==="small")return"Main-Regular";if(t.type==="large")return"Size"+t.size+"-Regular";if(t.type==="stack")return"Size4-Regular";var u=t.type;throw new Error("Add support for delim type '"+u+"' here.")},Sn=function(t,u,r,n){for(var a=Math.min(2,3-n.style.size),i=a;i<r.length;i++){var s=r[i];if(s.type==="stack")break;var o=Ie(t,Co(s),"math"),h=o.height+o.depth;if(s.type==="small"){var f=n.havingBaseStyle(s.style);h*=f.sizeMultiplier}if(h>u)return s}return r[r.length-1]},Tu=function(t,u,r,n,a,i){t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle");var s;An.has(t)?s=ko:kn.has(t)?s=Dn:s=Ao;var o=Sn(t,u,s,n);return o.type==="small"?bo(t,o.style,r,n,a,i):o.type==="large"?yn(t,o.size,r,n,a,i):wn(t,u,r,n,a,i)},iu=function(t,u,r,n,a,i){var s=n.fontMetrics().axisHeight*n.sizeMultiplier,o=901,h=5/n.fontMetrics().ptPerEm,f=Math.max(u-s,r+s),p=Math.max(f/500*o,2*f-h);return Tu(t,p,!0,n,a,i)},Zr={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},Do=new Set(["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","<",">","\\langle","⟨","\\rangle","⟩","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."]);function Xr(e){return"isMiddle"in e}function Ot(e,t){var u=It(e);if(u&&Do.has(u.text))return u;throw u?new z("Invalid delimiter '"+u.text+"' after '"+t.funcName+"'",e):new z("Invalid delimiter type '"+e.type+"'",e)}I({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],numArgs:1,argTypes:["primitive"],handler:(e,t)=>{var u=Ot(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:Zr[e.funcName].size,mclass:Zr[e.funcName].mclass,delim:u.text}},htmlBuilder:(e,t)=>e.delim==="."?E([e.mclass]):Cn(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{var t=[];e.delim!=="."&&t.push(I0(e.delim,e.mode));var u=new F("mo",t);e.mclass==="mopen"||e.mclass==="mclose"?u.setAttribute("fence","true"):u.setAttribute("fence","false"),u.setAttribute("stretchy","true");var r=M(Ne[e.size]);return u.setAttribute("minsize",r),u.setAttribute("maxsize",r),u}});function Yr(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}I({type:"leftright-right",names:["\\right"],numArgs:1,primitive:!0,handler:(e,t)=>{var u=e.parser.gullet.macros.get("\\current@color");if(u&&typeof u!="string")throw new z("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:Ot(t[0],e).text,color:u}}});I({type:"leftright",names:["\\left"],numArgs:1,primitive:!0,handler:(e,t)=>{var u=Ot(t[0],e),r=e.parser;++r.leftrightDepth;var n=r.parseExpression(!1);--r.leftrightDepth,r.expect("\\right",!1);var a=V(r.parseFunction(),"leftright-right");return{type:"leftright",mode:r.mode,body:n,left:u.text,right:a.delim,rightColor:a.color}},htmlBuilder:(e,t)=>{Yr(e);for(var u=m0(e.body,t,!0,["mopen","mclose"]),r=0,n=0,a=!1,i=0;i<u.length;i++){var s=u[i];Xr(s)?a=!0:(r=Math.max(u[i].height,r),n=Math.max(u[i].depth,n))}r*=t.sizeMultiplier,n*=t.sizeMultiplier;var o;if(e.left==="."?o=Ve(t,["mopen"]):o=iu(e.left,r,n,t,e.mode,["mopen"]),u.unshift(o),a)for(var h=1;h<u.length;h++){var f=u[h];if(Xr(f)){var p=f.isMiddle;u[h]=iu(p.delim,r,n,p.options,e.mode,[])}}var x;if(e.right===".")x=Ve(t,["mclose"]);else{var b=e.rightColor?t.withColor(e.rightColor):t;x=iu(e.right,r,n,b,e.mode,["mclose"])}return u.push(x),E(["minner"],u,t)},mathmlBuilder:(e,t)=>{Yr(e);var u=F0(e.body,t);if(e.left!=="."){var r=new F("mo",[I0(e.left,e.mode)]);r.setAttribute("fence","true"),u.unshift(r)}if(e.right!=="."){var n=new F("mo",[I0(e.right,e.mode)]);n.setAttribute("fence","true"),e.rightColor&&n.setAttribute("mathcolor",e.rightColor),u.push(n)}return Zu(u)}});I({type:"middle",names:["\\middle"],numArgs:1,primitive:!0,handler:(e,t)=>{var u=Ot(t[0],e);if(!e.parser.leftrightDepth)throw new z("\\middle without preceding \\left",u);return{type:"middle",mode:e.parser.mode,delim:u.text}},htmlBuilder:(e,t)=>{var u;return e.delim==="."?u=Ve(t,[]):(u=Cn(e.delim,1,t,e.mode,[]),u.isMiddle={delim:e.delim,options:t}),u},mathmlBuilder:(e,t)=>{var u=e.delim==="\\vert"||e.delim==="|"?I0("|","text"):I0(e.delim,e.mode),r=new F("mo",[u]);return r.setAttribute("fence","true"),r.setAttribute("lspace","0.05em"),r.setAttribute("rspace","0.05em"),r}});var So=(e,t)=>{var u=Fe(Y(e.body,t),t),r=e.label.slice(1),n=t.sizeMultiplier,a,i,s=ue(e.body);if(r==="sout")a=E(["stretchy","sout"]),a.height=t.fontMetrics().defaultRuleThickness/n,i=-.5*t.fontMetrics().xHeight;else if(r==="phase"){var o=a0({number:.6,unit:"pt"},t),h=a0({number:.35,unit:"ex"},t),f=t.havingBaseSizing();n=n/f.sizeMultiplier;var p=u.height+u.depth+o+h;u.style.paddingLeft=M(p/2+o);var x=Math.floor(1e3*p*n),b=vl(x),y=new te([new fe("phase",b)],{width:"400em",height:M(x/1e3),viewBox:"0 0 400000 "+x,preserveAspectRatio:"xMinYMin slice"});a=me(["hide-tail"],[y],t),a.style.height=M(p),i=u.depth+o+h}else{/cancel/.test(r)?s||u.classes.push("cancel-pad"):r==="angl"?u.classes.push("anglpad"):u.classes.push("boxpad");var k,A,D=0;/box/.test(r)?(D=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),k=t.fontMetrics().fboxsep+(r==="colorbox"?0:D),A=k):r==="angl"?(D=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),k=4*D,A=Math.max(0,.25-u.depth)):(k=s?.2:0,A=k),a=eo(u,r,k,A,t),/fbox|boxed|fcolorbox/.test(r)?(a.style.borderStyle="solid",a.style.borderWidth=M(D)):r==="angl"&&D!==.049&&(a.style.borderTopWidth=M(D),a.style.borderRightWidth=M(D)),i=u.depth+A,e.backgroundColor&&(a.style.backgroundColor=e.backgroundColor,e.borderColor&&(a.style.borderColor=e.borderColor))}var S;if(e.backgroundColor)S=X({positionType:"individualShift",children:[{type:"elem",elem:a,shift:i},{type:"elem",elem:u,shift:0}]});else{var _=/cancel|phase/.test(r)?["svg-align"]:[];S=X({positionType:"individualShift",children:[{type:"elem",elem:u,shift:0},{type:"elem",elem:a,shift:i,wrapperClasses:_}]})}return/cancel/.test(r)&&(S.height=u.height,S.depth=u.depth),/cancel/.test(r)&&!s?E(["mord","cancel-lap"],[S],t):E(["mord"],[S],t)},Eo=(e,t)=>{var u,r=new F(e.label.includes("colorbox")?"mpadded":"menclose",[J(e.body,t)]);switch(e.label){case"\\cancel":r.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":r.setAttribute("notation","downdiagonalstrike");break;case"\\phase":r.setAttribute("notation","phasorangle");break;case"\\sout":r.setAttribute("notation","horizontalstrike");break;case"\\fbox":r.setAttribute("notation","box");break;case"\\angl":r.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(u=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,r.setAttribute("width","+"+2*u+"pt"),r.setAttribute("height","+"+2*u+"pt"),r.setAttribute("lspace",u+"pt"),r.setAttribute("voffset",u+"pt"),e.label==="\\fcolorbox"){var n=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);r.setAttribute("style","border: "+M(n)+" solid "+e.borderColor)}break;case"\\xcancel":r.setAttribute("notation","updiagonalstrike downdiagonalstrike");break}return e.backgroundColor&&r.setAttribute("mathbackground",e.backgroundColor),r};I({type:"enclose",names:["\\colorbox"],numArgs:2,allowedInText:!0,argTypes:["color","hbox"],handler(e,t,u){var{parser:r,funcName:n}=e,a=V(t[0],"color-token").color,i=t[1];return{type:"enclose",mode:r.mode,label:n,backgroundColor:a,body:i}},htmlBuilder:So,mathmlBuilder:Eo});I({type:"enclose",names:["\\fcolorbox"],numArgs:3,allowedInText:!0,argTypes:["color","color","hbox"],handler(e,t,u){var{parser:r,funcName:n}=e,a=V(t[0],"color-token").color,i=V(t[1],"color-token").color,s=t[2];return{type:"enclose",mode:r.mode,label:n,backgroundColor:i,borderColor:a,body:s}}});I({type:"enclose",names:["\\fbox"],numArgs:1,argTypes:["hbox"],allowedInText:!0,handler(e,t){var{parser:u}=e;return{type:"enclose",mode:u.mode,label:"\\fbox",body:t[0]}}});I({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\phase"],numArgs:1,handler(e,t){var{parser:u,funcName:r}=e,n=t[0];return{type:"enclose",mode:u.mode,label:r,body:n}}});I({type:"enclose",names:["\\sout"],numArgs:1,allowedInText:!0,handler(e,t){var{parser:u,funcName:r}=e;u.mode==="math"&&u.settings.reportNonstrict("mathVsSout","LaTeX's \\sout works only in text mode");var n=t[0];return{type:"enclose",mode:u.mode,label:r,body:n}}});I({type:"enclose",names:["\\angl"],numArgs:1,argTypes:["hbox"],allowedInText:!1,handler(e,t){var{parser:u}=e;return{type:"enclose",mode:u.mode,label:"\\angl",body:t[0]}}});var En={};function V0(e){for(var{type:t,names:u,props:r,handler:n,htmlBuilder:a,mathmlBuilder:i}=e,s={type:t,numArgs:r.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:n},o=0;o<u.length;++o)En[u[o]]=s;a&&(Ue[t]=a),i&&(Ge[t]=i)}var _n={};function m(e,t){_n[e]=t}class C0{constructor(t,u,r){this.lexer=void 0,this.start=void 0,this.end=void 0,this.lexer=t,this.start=u,this.end=r}static range(t,u){return u?!t||!t.loc||!u.loc||t.loc.lexer!==u.loc.lexer?null:new C0(t.loc.lexer,t.loc.start,u.loc.end):t&&t.loc}}class S0{constructor(t,u){this.text=void 0,this.loc=void 0,this.noexpand=void 0,this.treatAsRelax=void 0,this.text=t,this.loc=u}range(t,u){return new S0(u,C0.range(this,t))}}function Kr(e){var t=[];e.consumeSpaces();var u=e.fetch().text;for(u==="\\relax"&&(e.consume(),e.consumeSpaces(),u=e.fetch().text);u==="\\hline"||u==="\\hdashline";)e.consume(),t.push(u==="\\hdashline"),e.consumeSpaces(),u=e.fetch().text;return t}var Lt=e=>{var t=e.parser.settings;if(!t.displayMode)throw new z("{"+e.envName+"} can be used only in display mode.")},_o=new Set(["gather","gather*"]);function Ku(e){if(!e.includes("ed"))return!e.includes("*")}function be(e,t,u){var{hskipBeforeAndAfter:r,addJot:n,cols:a,arraystretch:i,colSeparationType:s,autoTag:o,singleRow:h,emptySingleRow:f,maxNumCols:p,leqno:x}=t;if(e.gullet.beginGroup(),h||e.gullet.macros.set("\\cr","\\\\\\relax"),!i){var b=e.gullet.expandMacroAsText("\\arraystretch");if(b==null)i=1;else if(i=parseFloat(b),!i||i<0)throw new z("Invalid \\arraystretch: "+b)}e.gullet.beginGroup();var y=[],k=[y],A=[],D=[],S=o!=null?[]:void 0;function _(){o&&e.gullet.macros.set("\\@eqnsw","1",!0)}function T(){S&&(e.gullet.macros.get("\\df@tag")?(S.push(e.subparse([new S0("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):S.push(!!o&&e.gullet.macros.get("\\@eqnsw")==="1"))}for(_(),D.push(Kr(e));;){var B=e.parseExpression(!1,h?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup();var q={type:"ordgroup",mode:e.mode,body:B};u&&(q={type:"styling",mode:e.mode,style:u,resetFont:!0,body:[q]}),y.push(q);var L=e.fetch().text;if(L==="&"){if(p&&y.length===p){if(h||s)throw new z("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else if(L==="\\end"){T(),y.length===1&&q.type==="styling"&&q.body.length===1&&q.body[0].type==="ordgroup"&&q.body[0].body.length===0&&(k.length>1||!f)&&k.pop(),D.length<k.length+1&&D.push([]);break}else if(L==="\\\\"){e.consume();var $=void 0;e.gullet.future().text!==" "&&($=e.parseSizeGroup(!0)),A.push($?$.value:null),T(),D.push(Kr(e)),y=[],k.push(y),_()}else throw new z("Expected & or \\\\ or \\cr or \\end",e.nextToken)}return e.gullet.endGroup(),e.gullet.endGroup(),{type:"array",mode:e.mode,addJot:n,arraystretch:i,body:k,cols:a,rowGaps:A,hskipBeforeAndAfter:r,hLinesBeforeRow:D,colSeparationType:s,tags:S,leqno:x}}function Ju(e){return e.slice(0,1)==="d"?"display":"text"}var W0=function(t,u){var r,n,a=t.body.length,i=t.hLinesBeforeRow,s=0,o=new Array(a),h=[],f=Math.max(u.fontMetrics().arrayRuleWidth,u.minRuleThickness),p=1/u.fontMetrics().ptPerEm,x=5*p;if(t.colSeparationType&&t.colSeparationType==="small"){var b=u.havingStyle(G.SCRIPT).sizeMultiplier;x=.2778*(b/u.sizeMultiplier)}var y=t.colSeparationType==="CD"?a0({number:3,unit:"ex"},u):12*p,k=3*p,A=t.arraystretch*y,D=.7*A,S=.3*A,_=0;function T(ut){for(var rt=0;rt<ut.length;++rt)rt>0&&(_+=.25),h.push({pos:_,isDashed:ut[rt]})}for(T(i[0]),r=0;r<t.body.length;++r){var B=t.body[r],q=D,L=S;s<B.length&&(s=B.length);var $={cells:new Array(B.length),height:0,depth:0,pos:0};for(n=0;n<B.length;++n){var U=Y(B[n],u);L<U.depth&&(L=U.depth),q<U.height&&(q=U.height),$.cells[n]=U}var i0=t.rowGaps[r],r0=0;i0&&(r0=a0(i0,u),r0>0&&(r0+=S,L<r0&&(L=r0),r0=0)),t.addJot&&r<t.body.length-1&&(L+=k),$.height=q,$.depth=L,_+=q,$.pos=_,_+=L+r0,o[r]=$,T(i[r+1])}var K=_/2+u.fontMetrics().axisHeight,X0=t.cols||[],x0=[],l0,T0,M0=[];if(t.tags&&t.tags.some(ut=>ut))for(r=0;r<a;++r){var Y0=o[r],Re=Y0.pos-K,R=t.tags[r],O=void 0;R===!0?O=E(["eqn-num"],[],u):R===!1?O=E([],[],u):O=E([],m0(R,u,!0),u),O.depth=Y0.depth,O.height=Y0.height,M0.push({type:"elem",elem:O,shift:Re})}for(n=0,T0=0;n<s||T0<X0.length;++n,++T0){for(var d0,W=X0[T0],e0=!0;((p0=W)==null?void 0:p0.type)==="separator";){var p0;if(e0||(l0=E(["arraycolsep"],[]),l0.style.width=M(u.fontMetrics().doubleRuleSep),x0.push(l0)),W.separator==="|"||W.separator===":"){var N0=W.separator==="|"?"solid":"dashed",B0=E(["vertical-separator"],[],u);B0.style.height=M(_),B0.style.borderRightWidth=M(f),B0.style.borderRightStyle=N0,B0.style.margin="0 "+M(-f/2);var Ke=_-K;Ke&&(B0.style.verticalAlign=M(-Ke)),x0.push(B0)}else throw new z("Invalid separator type: "+W.separator);T0++,W=X0[T0],e0=!1}if(!(n>=s)){var ae=void 0;if(n>0||t.hskipBeforeAndAfter){var Je,nr;ae=(Je=(nr=W)==null?void 0:nr.pregap)!=null?Je:x,ae!==0&&(l0=E(["arraycolsep"],[]),l0.style.width=M(ae),x0.push(l0))}var ar=[];for(r=0;r<a;++r){var Qe=o[r],et=Qe.cells[n];if(et){var Un=Qe.pos-K;et.depth=Qe.depth,et.height=Qe.height,ar.push({type:"elem",elem:et,shift:Un})}}var Gn=X({positionType:"individualShift",children:ar}),Vn=E(["col-align-"+(((d0=W)==null?void 0:d0.align)||"c")],[Gn]);if(x0.push(Vn),n<s-1||t.hskipBeforeAndAfter){var ir,sr;ae=(ir=(sr=W)==null?void 0:sr.postgap)!=null?ir:x,ae!==0&&(l0=E(["arraycolsep"],[]),l0.style.width=M(ae),x0.push(l0))}}}var tt=E(["mtable"],x0);if(h.length>0){for(var Wn=ze("hline",u,f),Zn=ze("hdashline",u,f),Ht=[{type:"elem",elem:tt,shift:0}];h.length>0;){var lr=h.pop(),or=lr.pos-K;lr.isDashed?Ht.push({type:"elem",elem:Zn,shift:or}):Ht.push({type:"elem",elem:Wn,shift:or})}tt=X({positionType:"individualShift",children:Ht})}if(M0.length===0)return E(["mord"],[tt],u);var Xn=X({positionType:"individualShift",children:M0}),Yn=E(["tag"],[Xn],u);return ne([tt,Yn])},zo={c:"center ",l:"left ",r:"right "},Z0=function(t,u){for(var r=[],n=new F("mtd",[],["mtr-glue"]),a=new F("mtd",[],["mml-eqn-num"]),i=0;i<t.body.length;i++){for(var s=t.body[i],o=[],h=0;h<s.length;h++)o.push(new F("mtd",[J(s[h],u)]));t.tags&&t.tags[i]&&(o.unshift(n),o.push(n),t.leqno?o.unshift(a):o.push(a)),r.push(new F("mtr",o))}var f=new F("mtable",r),p=t.arraystretch===.5?.1:.16+t.arraystretch-1+(t.addJot?.09:0);f.setAttribute("rowspacing",M(p));var x="",b="";if(t.cols&&t.cols.length>0){var y=t.cols,k="",A=!1,D=0,S=y.length;y[0].type==="separator"&&(x+="top ",D=1),y[y.length-1].type==="separator"&&(x+="bottom ",S-=1);for(var _=D;_<S;_++){var T=y[_];T.type==="align"?(b+=zo[T.align],A&&(k+="none "),A=!0):T.type==="separator"&&A&&(k+=T.separator==="|"?"solid ":"dashed ",A=!1)}f.setAttribute("columnalign",b.trim()),/[sd]/.test(k)&&f.setAttribute("columnlines",k.trim())}if(t.colSeparationType==="align"){for(var B=t.cols||[],q="",L=1;L<B.length;L++)q+=L%2?"0em ":"1em ";f.setAttribute("columnspacing",q.trim())}else t.colSeparationType==="alignat"||t.colSeparationType==="gather"?f.setAttribute("columnspacing","0em"):t.colSeparationType==="small"?f.setAttribute("columnspacing","0.2778em"):t.colSeparationType==="CD"?f.setAttribute("columnspacing","0.5em"):f.setAttribute("columnspacing","1em");var $="",U=t.hLinesBeforeRow;x+=U[0].length>0?"left ":"",x+=U[U.length-1].length>0?"right ":"";for(var i0=1;i0<U.length-1;i0++)$+=U[i0].length===0?"none ":U[i0][0]?"dashed ":"solid ";return/[sd]/.test($)&&f.setAttribute("rowlines",$.trim()),x!==""&&(f=new F("menclose",[f]),f.setAttribute("notation",x.trim())),t.arraystretch&&t.arraystretch<1&&(f=new F("mstyle",[f]),f.setAttribute("scriptlevel","1")),f},zn=function(t,u){t.envName.includes("ed")||Lt(t);var r=[],n=t.envName==="split",a=be(t.parser,{cols:r,addJot:!0,autoTag:n?void 0:Ku(t.envName),emptySingleRow:!0,colSeparationType:t.envName.includes("at")?"alignat":"align",maxNumCols:n?2:void 0,leqno:t.parser.settings.leqno},"display"),i=0,s=0,o={type:"ordgroup",mode:t.mode,body:[]};if(u[0]&&u[0].type==="ordgroup"){for(var h="",f=0;f<u[0].body.length;f++){var p=V(u[0].body[f],"textord");h+=p.text}i=Number(h),s=i*2}var x=!s;a.body.forEach(function(A){for(var D=1;D<A.length;D+=2){var S=V(A[D],"styling"),_=V(S.body[0],"ordgroup");_.body.unshift(o)}if(x)s<A.length&&(s=A.length);else{var T=A.length/2;if(i<T)throw new z("Too many math in a row: "+("expected "+i+", but got "+T),A[0])}});for(var b=0;b<s;++b){var y="r",k=0;b%2===1?y="l":b>0&&x&&(k=1),r[b]={type:"align",align:y,pregap:k,postgap:0}}return a.colSeparationType=x?"align":"alignat",a};V0({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){var u=It(t[0]),r=u?[t[0]]:V(t[0],"ordgroup").body,n=r.map(function(i){var s=Rt(i),o=s.text;if("lcr".includes(o))return{type:"align",align:o};if(o==="|")return{type:"separator",separator:"|"};if(o===":")return{type:"separator",separator:":"};throw new z("Unknown column alignment: "+o,i)}),a={cols:n,hskipBeforeAndAfter:!0,maxNumCols:n.length};return be(e.parser,a,Ju(e.envName))},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){var t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")],u="c",r={hskipBeforeAndAfter:!1,cols:[{type:"align",align:u}]};if(e.envName.charAt(e.envName.length-1)==="*"){var n=e.parser;if(n.consumeSpaces(),n.fetch().text==="["){if(n.consume(),n.consumeSpaces(),u=n.fetch().text,!"lcr".includes(u))throw new z("Expected l or c or r",n.nextToken);n.consume(),n.consumeSpaces(),n.expect("]"),n.consume(),r.cols=[{type:"align",align:u}]}}var a=be(e.parser,r,Ju(e.envName)),i=Math.max(0,...a.body.map(s=>s.length));return a.cols=new Array(i).fill({type:"align",align:u}),t?{type:"leftright",mode:e.mode,body:[a],left:t[0],right:t[1],rightColor:void 0}:a},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){var t={arraystretch:.5},u=be(e.parser,t,"script");return u.colSeparationType="small",u},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){var u=It(t[0]),r=u?[t[0]]:V(t[0],"ordgroup").body,n=r.map(function(s){var o=Rt(s),h=o.text;if("lc".includes(h))return{type:"align",align:h};throw new z("Unknown column alignment: "+h,s)});if(n.length>1)throw new z("{subarray} can contain only one column");var a={cols:n,hskipBeforeAndAfter:!1,arraystretch:.5},i=be(e.parser,a,"script");if(i.body.length>0&&i.body[0].length>1)throw new z("{subarray} can contain only one column");return i},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){var t={arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},u=be(e.parser,t,Ju(e.envName));return{type:"leftright",mode:e.mode,body:[u],left:e.envName.includes("r")?".":"\\{",right:e.envName.includes("r")?"\\}":".",rightColor:void 0}},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:zn,htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){_o.has(e.envName)&&Lt(e);var t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Ku(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return be(e.parser,t,"display")},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:zn,htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){Lt(e);var t={autoTag:Ku(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return be(e.parser,t,"display")},htmlBuilder:W0,mathmlBuilder:Z0});V0({type:"array",names:["CD"],props:{numArgs:0},handler(e){return Lt(e),ho(e.parser)},htmlBuilder:W0,mathmlBuilder:Z0});m("\\nonumber","\\gdef\\@eqnsw{0}");m("\\notag","\\nonumber");I({type:"text",names:["\\hline","\\hdashline"],numArgs:0,allowedInText:!0,allowedInMath:!0,handler(e,t){throw new z(e.funcName+" valid only within array environment")}});var Jr=En;I({type:"environment",names:["\\begin","\\end"],numArgs:1,argTypes:["text"],handler(e,t){var{parser:u,funcName:r}=e,n=t[0];if(n.type!=="ordgroup")throw new z("Invalid environment name",n);for(var a="",i=0;i<n.body.length;++i)a+=V(n.body[i],"textord").text;if(r==="\\begin"){if(!Jr.hasOwnProperty(a))throw new z("No such environment: "+a,n);var s=Jr[a],{args:o,optArgs:h}=u.parseArguments("\\begin{"+a+"}",s),f={mode:u.mode,envName:a,parser:u},p=s.handler(f,o,h);u.expect("\\end",!1);var x=u.nextToken,b=V(u.parseFunction(),"environment");if(b.name!==a)throw new z("Mismatch: \\begin{"+a+"} matched by \\end{"+b.name+"}",x);return p}return{type:"environment",mode:u.mode,name:a,nameGroup:n}}});var Fo=(e,t)=>{var u=e.font,r=t.withFont(u);return Y(e.body,r)},To=(e,t)=>{var u=e.font,r=t.withFont(u);return J(e.body,r)},Qr={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak"};I({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathsfit","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],numArgs:1,allowedInArgument:!0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=At(t[0]),a=r in Qr?Qr[r]:r;return{type:"font",mode:u.mode,font:a.slice(1),body:n}},htmlBuilder:Fo,mathmlBuilder:To});I({type:"mclass",names:["\\boldsymbol","\\bm"],numArgs:1,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"mclass",mode:u.mode,mclass:Nt(r),body:[{type:"font",mode:u.mode,font:"boldsymbol",body:r}],isCharacterBox:ue(r)}}});I({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],numArgs:0,allowedInText:!0,handler:(e,t)=>{var{parser:u,funcName:r,breakOnTokenText:n}=e,{mode:a}=u,i=u.parseExpression(!0,n);return{type:"font",mode:a,font:"math"+r.slice(1),body:{type:"ordgroup",mode:u.mode,body:i}}}});var Mo=(e,t)=>{var u=t.style,r=u.fracNum(),n=u.fracDen(),a;a=t.havingStyle(r);var i=Y(e.numer,a,t);if(e.continued){var s=8.5/t.fontMetrics().ptPerEm,o=3.5/t.fontMetrics().ptPerEm;i.height=i.height<s?s:i.height,i.depth=i.depth<o?o:i.depth}a=t.havingStyle(n);var h=Y(e.denom,a,t),f,p,x;e.hasBarLine?(e.barSize?(p=a0(e.barSize,t),f=ze("frac-line",t,p)):f=ze("frac-line",t),p=f.height,x=f.height):(f=null,p=0,x=t.fontMetrics().defaultRuleThickness);var b,y,k;u.size===G.DISPLAY.size?(b=t.fontMetrics().num1,p>0?y=3*x:y=7*x,k=t.fontMetrics().denom1):(p>0?(b=t.fontMetrics().num2,y=x):(b=t.fontMetrics().num3,y=3*x),k=t.fontMetrics().denom2);var A;if(f){var S=t.fontMetrics().axisHeight;b-i.depth-(S+.5*p)<y&&(b+=y-(b-i.depth-(S+.5*p))),S-.5*p-(h.height-k)<y&&(k+=y-(S-.5*p-(h.height-k)));var _=-(S-.5*p);A=X({positionType:"individualShift",children:[{type:"elem",elem:h,shift:k},{type:"elem",elem:f,shift:_},{type:"elem",elem:i,shift:-b}]})}else{var D=b-i.depth-(h.height-k);D<y&&(b+=.5*(y-D),k+=.5*(y-D)),A=X({positionType:"individualShift",children:[{type:"elem",elem:h,shift:k},{type:"elem",elem:i,shift:-b}]})}a=t.havingStyle(u),A.height*=a.sizeMultiplier/t.sizeMultiplier,A.depth*=a.sizeMultiplier/t.sizeMultiplier;var T;u.size===G.DISPLAY.size?T=t.fontMetrics().delim1:u.size===G.SCRIPTSCRIPT.size?T=t.havingStyle(G.SCRIPT).fontMetrics().delim2:T=t.fontMetrics().delim2;var B,q;return e.leftDelim==null?B=Ve(t,["mopen"]):B=Tu(e.leftDelim,T,!0,t.havingStyle(u),e.mode,["mopen"]),e.continued?q=E([]):e.rightDelim==null?q=Ve(t,["mclose"]):q=Tu(e.rightDelim,T,!0,t.havingStyle(u),e.mode,["mclose"]),E(["mord"].concat(a.sizingClasses(t)),[B,E(["mfrac"],[A]),q],t)},Bo=(e,t)=>{var u=new F("mfrac",[J(e.numer,t),J(e.denom,t)]);if(!e.hasBarLine)u.setAttribute("linethickness","0px");else if(e.barSize){var r=a0(e.barSize,t);u.setAttribute("linethickness",M(r))}if(e.leftDelim!=null||e.rightDelim!=null){var n=[];if(e.leftDelim!=null){var a=new F("mo",[new c0(e.leftDelim.replace("\\",""))]);a.setAttribute("fence","true"),n.push(a)}if(n.push(u),e.rightDelim!=null){var i=new F("mo",[new c0(e.rightDelim.replace("\\",""))]);i.setAttribute("fence","true"),n.push(i)}return Zu(n)}return u},Fn=(e,t)=>{if(!t)return e;var u={type:"styling",mode:e.mode,style:t,body:[e]};return u};I({type:"genfrac",names:["\\cfrac","\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],numArgs:2,allowedInArgument:!0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0],a=t[1],i,s=null,o=null;switch(r){case"\\cfrac":case"\\dfrac":case"\\frac":case"\\tfrac":i=!0;break;case"\\\\atopfrac":i=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=!1,s="(",o=")";break;case"\\\\bracefrac":i=!1,s="\\{",o="\\}";break;case"\\\\brackfrac":i=!1,s="[",o="]";break;default:throw new Error("Unrecognized genfrac command")}var h=r==="\\cfrac",f=null;return h||r.startsWith("\\d")?f="display":r.startsWith("\\t")&&(f="text"),Fn({type:"genfrac",mode:u.mode,numer:n,denom:a,continued:h,hasBarLine:i,leftDelim:s,rightDelim:o,barSize:null},f)},htmlBuilder:Mo,mathmlBuilder:Bo});I({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],numArgs:0,infix:!0,handler(e){var{parser:t,funcName:u,token:r}=e,n;switch(u){case"\\over":n="\\frac";break;case"\\choose":n="\\binom";break;case"\\atop":n="\\\\atopfrac";break;case"\\brace":n="\\\\bracefrac";break;case"\\brack":n="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:t.mode,replaceWith:n,token:r}}});var e1=["display","text","script","scriptscript"],t1=function(t){var u=null;return t.length>0&&(u=t,u=u==="."?null:u),u};I({type:"genfrac",names:["\\genfrac"],numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"],handler(e,t){var{parser:u}=e,r=t[4],n=t[5],a=At(t[0]),i=a.type==="atom"&&a.family==="open"?t1(a.text):null,s=At(t[1]),o=s.type==="atom"&&s.family==="close"?t1(s.text):null,h=V(t[2],"size"),f,p=null;h.isBlank?f=!0:(p=h.value,f=p.number>0);var x=null,b=t[3];if(b.type==="ordgroup"){if(b.body.length>0){var y=V(b.body[0],"textord");x=e1[Number(y.text)]}}else b=V(b,"textord"),x=e1[Number(b.text)];return Fn({type:"genfrac",mode:u.mode,numer:r,denom:n,continued:!1,hasBarLine:f,barSize:p,leftDelim:i,rightDelim:o},x)}});I({type:"infix",names:["\\above"],numArgs:1,argTypes:["size"],infix:!0,handler(e,t){var{parser:u,funcName:r,token:n}=e;return{type:"infix",mode:u.mode,replaceWith:"\\\\abovefrac",size:V(t[0],"size").value,token:n}}});I({type:"genfrac",names:["\\\\abovefrac"],numArgs:3,argTypes:["math","size","math"],handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0],a=V(t[1],"infix").size;if(!a)throw new Error("\\\\abovefrac expected size, but got "+String(a));var i=t[2],s=a.number>0;return{type:"genfrac",mode:u.mode,numer:n,denom:i,continued:!1,hasBarLine:s,barSize:a,leftDelim:null,rightDelim:null}}});var Tn=(e,t)=>{var u=t.style,r,n;e.type==="supsub"?(r=e.sup?Y(e.sup,t.havingStyle(u.sup()),t):Y(e.sub,t.havingStyle(u.sub()),t),n=V(e.base,"horizBrace")):n=V(e,"horizBrace");var a=Y(n.base,t.havingBaseStyle(G.DISPLAY)),i=qt(n,t),s;if(n.isOver?s=X({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"kern",size:.1},{type:"elem",elem:i,wrapperClasses:["svg-align"]}]}):s=X({positionType:"bottom",positionData:a.depth+.1+i.height,children:[{type:"elem",elem:i,wrapperClasses:["svg-align"]},{type:"kern",size:.1},{type:"elem",elem:a}]}),r){var o=E(["minner",n.isOver?"mover":"munder"],[s],t);n.isOver?s=X({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"kern",size:.2},{type:"elem",elem:r}]}):s=X({positionType:"bottom",positionData:o.depth+.2+r.height+r.depth,children:[{type:"elem",elem:r},{type:"kern",size:.2},{type:"elem",elem:o}]})}return E(["minner",n.isOver?"mover":"munder"],[s],t)},qo=(e,t)=>{var u=Bt(e.label);return new F(e.isOver?"mover":"munder",[J(e.base,t),u])};I({type:"horizBrace",names:["\\overbrace","\\underbrace","\\overbracket","\\underbracket"],numArgs:1,handler(e,t){var{parser:u,funcName:r}=e;return{type:"horizBrace",mode:u.mode,label:r,isOver:r.includes("\\over"),base:t[0]}},htmlBuilder:Tn,mathmlBuilder:qo});I({type:"href",names:["\\href"],numArgs:2,argTypes:["url","original"],allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=t[1],n=V(t[0],"url").url;return u.settings.isTrusted({command:"\\href",url:n})?{type:"href",mode:u.mode,href:n,body:o0(r)}:u.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{var u=m0(e.body,t,!1);return Nl(e.href,[],u,t)},mathmlBuilder:(e,t)=>{var u=pe(e.body,t);return u instanceof F||(u=new F("mrow",[u])),u.setAttribute("href",e.href),u}});I({type:"href",names:["\\url"],numArgs:1,argTypes:["url"],allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=V(t[0],"url").url;if(!u.settings.isTrusted({command:"\\url",url:r}))return u.formatUnsupportedCmd("\\url");for(var n=[],a=0;a<r.length;a++){var i=r[a];i==="~"&&(i="\\textasciitilde"),n.push({type:"textord",mode:"text",text:i})}var s={type:"text",mode:u.mode,font:"\\texttt",body:n};return{type:"href",mode:u.mode,href:r,body:o0(s)}}});I({type:"hbox",names:["\\hbox"],numArgs:1,argTypes:["text"],allowedInText:!0,primitive:!0,handler(e,t){var{parser:u}=e;return{type:"hbox",mode:u.mode,body:o0(t[0])}},htmlBuilder(e,t){var u=m0(e.body,t.withFont(""),!1);return ne(u)},mathmlBuilder(e,t){return new F("mrow",F0(e.body,t.withFont("")))}});I({type:"html",names:["\\htmlClass","\\htmlId","\\htmlStyle","\\htmlData"],numArgs:2,argTypes:["raw","original"],allowedInText:!0,handler:(e,t)=>{var{parser:u,funcName:r,token:n}=e,a=V(t[0],"raw").string,i=t[1];u.settings.strict&&u.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");var s,o={};switch(r){case"\\htmlClass":o.class=a,s={command:"\\htmlClass",class:a};break;case"\\htmlId":o.id=a,s={command:"\\htmlId",id:a};break;case"\\htmlStyle":o.style=a,s={command:"\\htmlStyle",style:a};break;case"\\htmlData":{for(var h=a.split(","),f=0;f<h.length;f++){var p=h[f],x=p.indexOf("=");if(x<0)throw new z("\\htmlData key/value '"+p+"' missing equals sign");var b=p.slice(0,x),y=p.slice(x+1);o["data-"+b.trim()]=y}s={command:"\\htmlData",attributes:o};break}default:throw new Error("Unrecognized html command")}return u.settings.isTrusted(s)?{type:"html",mode:u.mode,attributes:o,body:o0(i)}:u.formatUnsupportedCmd(r)},htmlBuilder:(e,t)=>{var u=m0(e.body,t,!1),r=["enclosing"];e.attributes.class&&r.push(...e.attributes.class.trim().split(/\s+/));var n=E(r,u,t);for(var a in e.attributes)a!=="class"&&e.attributes.hasOwnProperty(a)&&n.setAttribute(a,e.attributes[a]);return n},mathmlBuilder:(e,t)=>pe(e.body,t)});I({type:"htmlmathml",names:["\\html@mathml"],numArgs:2,allowedInArgument:!0,allowedInText:!0,handler:(e,t)=>{var{parser:u}=e;return{type:"htmlmathml",mode:u.mode,html:o0(t[0]),mathml:o0(t[1])}},htmlBuilder:(e,t)=>{var u=m0(e.html,t,!1);return ne(u)},mathmlBuilder:(e,t)=>pe(e.mathml,t)});var su=function(t){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(t))return{number:+t,unit:"bp"};var u=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(t);if(!u)throw new z("Invalid size: '"+t+"' in \\includegraphics");var r={number:+(u[1]+u[2]),unit:u[3]};if(!Q1(r))throw new z("Invalid unit: '"+r.unit+"' in \\includegraphics.");return r};I({type:"includegraphics",names:["\\includegraphics"],numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1,handler:(e,t,u)=>{var{parser:r}=e,n={number:0,unit:"em"},a={number:.9,unit:"em"},i={number:0,unit:"em"},s="";if(u[0])for(var o=V(u[0],"raw").string,h=o.split(","),f=0;f<h.length;f++){var p=h[f].split("=");if(p.length===2){var x=p[1].trim();switch(p[0].trim()){case"alt":s=x;break;case"width":n=su(x);break;case"height":a=su(x);break;case"totalheight":i=su(x);break;default:throw new z("Invalid key: '"+p[0]+"' in \\includegraphics.")}}}var b=V(t[0],"url").url;return s===""&&(s=b,s=s.replace(/^.*[\\/]/,""),s=s.substring(0,s.lastIndexOf("."))),r.settings.isTrusted({command:"\\includegraphics",url:b})?{type:"includegraphics",mode:r.mode,alt:s,width:n,height:a,totalheight:i,src:b}:r.formatUnsupportedCmd("\\includegraphics")},htmlBuilder:(e,t)=>{var u=a0(e.height,t),r=0;e.totalheight.number>0&&(r=a0(e.totalheight,t)-u);var n=0;e.width.number>0&&(n=a0(e.width,t));var a={height:M(u+r)};n>0&&(a.width=M(n)),r>0&&(a.verticalAlign=M(-r));var i=new Dl(e.src,e.alt,a);return i.height=u,i.depth=r,i},mathmlBuilder:(e,t)=>{var u=new F("mglyph",[]);u.setAttribute("alt",e.alt);var r=a0(e.height,t),n=0;if(e.totalheight.number>0&&(n=a0(e.totalheight,t)-r,u.setAttribute("valign",M(-n))),u.setAttribute("height",M(r+n)),e.width.number>0){var a=a0(e.width,t);u.setAttribute("width",M(a))}return u.setAttribute("src",e.src),u}});I({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0,handler(e,t){var{parser:u,funcName:r}=e,n=V(t[0],"size");if(u.settings.strict){var a=r[1]==="m",i=n.value.unit==="mu";a?(i||u.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+r+" supports only mu units, "+("not "+n.value.unit+" units")),u.mode!=="math"&&u.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+r+" works only in math mode")):i&&u.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+r+" doesn't support mu units")}return{type:"kern",mode:u.mode,dimension:n.value}},htmlBuilder(e,t){return an(e.dimension,t)},mathmlBuilder(e,t){var u=a0(e.dimension,t);return new dn(u)}});I({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],numArgs:1,allowedInText:!0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0];return{type:"lap",mode:u.mode,alignment:r.slice(5),body:n}},htmlBuilder:(e,t)=>{var u;e.alignment==="clap"?(u=E([],[Y(e.body,t)]),u=E(["inner"],[u],t)):u=E(["inner"],[Y(e.body,t)]);var r=E(["fix"],[]),n=E([e.alignment],[u,r],t),a=E(["strut"]);return a.style.height=M(n.height+n.depth),n.depth&&(a.style.verticalAlign=M(-n.depth)),n.children.unshift(a),n=E(["thinbox"],[n],t),E(["mord","vbox"],[n],t)},mathmlBuilder:(e,t)=>{var u=new F("mpadded",[J(e.body,t)]);if(e.alignment!=="rlap"){var r=e.alignment==="llap"?"-1":"-0.5";u.setAttribute("lspace",r+"width")}return u.setAttribute("width","0px"),u}});I({type:"styling",names:["\\(","$"],numArgs:0,allowedInText:!0,allowedInMath:!1,handler(e,t){var{funcName:u,parser:r}=e,n=r.mode;r.switchMode("math");var a=u==="\\("?"\\)":"$",i=r.parseExpression(!1,a);return r.expect(a),r.switchMode(n),{type:"styling",mode:r.mode,style:"text",resetFont:!0,body:i}}});I({type:"text",names:["\\)","\\]"],numArgs:0,allowedInText:!0,allowedInMath:!1,handler(e,t){throw new z("Mismatched "+e.funcName)}});var u1=(e,t)=>{switch(t.style.size){case G.DISPLAY.size:return e.display;case G.TEXT.size:return e.text;case G.SCRIPT.size:return e.script;case G.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};I({type:"mathchoice",names:["\\mathchoice"],numArgs:4,primitive:!0,handler:(e,t)=>{var{parser:u}=e;return{type:"mathchoice",mode:u.mode,display:o0(t[0]),text:o0(t[1]),script:o0(t[2]),scriptscript:o0(t[3])}},htmlBuilder:(e,t)=>{var u=u1(e,t),r=m0(u,t,!1);return ne(r)},mathmlBuilder:(e,t)=>{var u=u1(e,t);return pe(u,t)}});var Mn=(e,t,u,r,n,a,i)=>{e=E([],[e]);var s=u&&ue(u),o,h;if(t){var f=Y(t,r.havingStyle(n.sup()),r);h={elem:f,kern:Math.max(r.fontMetrics().bigOpSpacing1,r.fontMetrics().bigOpSpacing3-f.depth)}}if(u){var p=Y(u,r.havingStyle(n.sub()),r);o={elem:p,kern:Math.max(r.fontMetrics().bigOpSpacing2,r.fontMetrics().bigOpSpacing4-p.height)}}var x;if(h&&o){var b=r.fontMetrics().bigOpSpacing5+o.elem.height+o.elem.depth+o.kern+e.depth+i;x=X({positionType:"bottom",positionData:b,children:[{type:"kern",size:r.fontMetrics().bigOpSpacing5},{type:"elem",elem:o.elem,marginLeft:M(-a)},{type:"kern",size:o.kern},{type:"elem",elem:e},{type:"kern",size:h.kern},{type:"elem",elem:h.elem,marginLeft:M(a)},{type:"kern",size:r.fontMetrics().bigOpSpacing5}]})}else if(o){var y=e.height-i;x=X({positionType:"top",positionData:y,children:[{type:"kern",size:r.fontMetrics().bigOpSpacing5},{type:"elem",elem:o.elem,marginLeft:M(-a)},{type:"kern",size:o.kern},{type:"elem",elem:e}]})}else if(h){var k=e.depth+i;x=X({positionType:"bottom",positionData:k,children:[{type:"elem",elem:e},{type:"kern",size:h.kern},{type:"elem",elem:h.elem,marginLeft:M(a)},{type:"kern",size:r.fontMetrics().bigOpSpacing5}]})}else return e;var A=[x];if(o&&a!==0&&!s){var D=E(["mspace"],[],r);D.style.marginRight=M(a),A.unshift(D)}return E(["mop","op-limits"],A,r)},Bn=new Set(["\\smallint"]),qn=(e,t)=>{var u,r,n=!1,a;e.type==="supsub"?(u=e.sup,r=e.sub,a=V(e.base,"op"),n=!0):a=V(e,"op");var i=t.style,s=!1;i.size===G.DISPLAY.size&&a.symbol&&!Bn.has(a.name)&&(s=!0);var o,h;if(a.symbol){var f=s?"Size2-Regular":"Size1-Regular",p="";if((a.name==="\\oiint"||a.name==="\\oiiint")&&(p=a.name.slice(1),a.name=p==="oiint"?"\\iint":"\\iiint"),o=w0(a.name,f,"math",t,["mop","op-symbol",s?"large-op":"small-op"]),h=o.italic,p.length>0){var x=ln(p+"Size"+(s?"2":"1"),t);o=X({positionType:"individualShift",children:[{type:"elem",elem:o,shift:0},{type:"elem",elem:x,shift:s?.08:0}]}),a.name="\\"+p,o.classes.unshift("mop"),o.italic=h}}else if(a.body){var b=m0(a.body,t,!0);b.length===1&&b[0]instanceof _0?(o=b[0],o.classes[0]="mop"):o=E(["mop"],b,t)}else{for(var y=[],k=1;k<a.name.length;k++)y.push(Vu(a.name[k],a.mode,t));o=E(["mop"],y,t)}var A=0,D=0;if((o instanceof _0||a.name==="\\oiint"||a.name==="\\oiiint")&&!a.suppressBaseShift){var S;A=(o.height-o.depth)/2-t.fontMetrics().axisHeight,D=(S=o.italic)!=null?S:0}return n?Mn(o,u,r,t,i,D,A):(A&&(o.style.position="relative",o.style.top=M(A)),o)},Ro=(e,t)=>{var u;if(e.symbol)u=new F("mo",[I0(e.name,e.mode)]),Bn.has(e.name)&&u.setAttribute("largeop","false");else if(e.body)u=new F("mo",F0(e.body,t));else{u=new F("mi",[new c0(e.name.slice(1))]);var r=new F("mo",[I0("⁡","text")]);e.parentIsSupSub?u=new F("mrow",[u,r]):u=hn([u,r])}return u},Io={"∏":"\\prod","∐":"\\coprod","∑":"\\sum","⋀":"\\bigwedge","⋁":"\\bigvee","⋂":"\\bigcap","⋃":"\\bigcup","⨀":"\\bigodot","⨁":"\\bigoplus","⨂":"\\bigotimes","⨄":"\\biguplus","⨆":"\\bigsqcup"};I({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","∏","∐","∑","⋀","⋁","⋂","⋃","⨀","⨁","⨂","⨄","⨆"],numArgs:0,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=r;return n.length===1&&(n=Io[n]),{type:"op",mode:u.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:qn,mathmlBuilder:Ro});I({type:"op",names:["\\mathop"],numArgs:1,primitive:!0,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"op",mode:u.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:o0(r)}}});var No={"∫":"\\int","∬":"\\iint","∭":"\\iiint","∮":"\\oint","∯":"\\oiint","∰":"\\oiiint"};I({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],numArgs:0,handler(e){var{parser:t,funcName:u}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:u}}});I({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],numArgs:0,handler(e){var{parser:t,funcName:u}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:u}}});I({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","∫","∬","∭","∮","∯","∰"],numArgs:0,allowedInArgument:!0,handler(e){var{parser:t,funcName:u}=e,r=u;return r.length===1&&(r=No[r]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:r}}});var Rn=(e,t)=>{var u,r,n=!1,a;e.type==="supsub"?(u=e.sup,r=e.sub,a=V(e.base,"operatorname"),n=!0):a=V(e,"operatorname");var i;if(a.body.length>0){for(var s=a.body.map(p=>{var x="text"in p?p.text:void 0;return typeof x=="string"?{type:"textord",mode:p.mode,text:x}:p}),o=m0(s,t.withFont("mathrm"),!0),h=0;h<o.length;h++){var f=o[h];f instanceof _0&&(f.text=f.text.replace(/\u2212/,"-").replace(/\u2217/,"*"))}i=E(["mop"],o,t)}else i=E(["mop"],[],t);return n?Mn(i,u,r,t,t.style,0,0):i},Oo=(e,t)=>{for(var u=F0(e.body,t.withFont("mathrm")),r=!0,n=0;n<u.length;n++){var a=u[n];if(!(a instanceof dn))if(a instanceof F)switch(a.type){case"mi":case"mn":case"mspace":case"mtext":break;case"mo":{var i=a.children[0];a.children.length===1&&i instanceof c0?i.text=i.text.replace(/\u2212/,"-").replace(/\u2217/,"*"):r=!1;break}default:r=!1}else r=!1}if(r){var s=u.map(f=>f.toText()).join("");u=[new c0(s)]}var o=new F("mi",u);o.setAttribute("mathvariant","normal");var h=new F("mo",[I0("⁡","text")]);return e.parentIsSupSub?new F("mrow",[o,h]):hn([o,h])};I({type:"operatorname",names:["\\operatorname@","\\operatornamewithlimits"],numArgs:1,handler:(e,t)=>{var{parser:u,funcName:r}=e,n=t[0];return{type:"operatorname",mode:u.mode,body:o0(n),alwaysHandleSupSub:r==="\\operatornamewithlimits",limits:!1,parentIsSupSub:!1}},htmlBuilder:Rn,mathmlBuilder:Oo});m("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@");ke({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?ne(m0(e.body,t,!1)):E(["mord"],m0(e.body,t,!0),t)},mathmlBuilder(e,t){return pe(e.body,t,!0)}});I({type:"overline",names:["\\overline"],numArgs:1,handler(e,t){var{parser:u}=e,r=t[0];return{type:"overline",mode:u.mode,body:r}},htmlBuilder(e,t){var u=Y(e.body,t.havingCrampedStyle()),r=ze("overline-line",t),n=t.fontMetrics().defaultRuleThickness,a=X({positionType:"firstBaseline",children:[{type:"elem",elem:u},{type:"kern",size:3*n},{type:"elem",elem:r},{type:"kern",size:n}]});return E(["mord","overline"],[a],t)},mathmlBuilder(e,t){var u=new F("mo",[new c0("‾")]);u.setAttribute("stretchy","true");var r=new F("mover",[J(e.body,t),u]);return r.setAttribute("accent","true"),r}});I({type:"phantom",names:["\\phantom"],numArgs:1,allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"phantom",mode:u.mode,body:o0(r)}},htmlBuilder:(e,t)=>{var u=m0(e.body,t.withPhantom(),!1);return ne(u)},mathmlBuilder:(e,t)=>{var u=F0(e.body,t);return new F("mphantom",u)}});m("\\hphantom","\\smash{\\phantom{#1}}");I({type:"vphantom",names:["\\vphantom"],numArgs:1,allowedInText:!0,handler:(e,t)=>{var{parser:u}=e,r=t[0];return{type:"vphantom",mode:u.mode,body:r}},htmlBuilder:(e,t)=>{var u=E(["inner"],[Y(e.body,t.withPhantom())]),r=E(["fix"],[]);return E(["mord","rlap"],[u,r],t)},mathmlBuilder:(e,t)=>{var u=F0(o0(e.body),t),r=new F("mphantom",u),n=new F("mpadded",[r]);return n.setAttribute("width","0px"),n}});I({type:"raisebox",names:["\\raisebox"],numArgs:2,argTypes:["size","hbox"],allowedInText:!0,handler(e,t){var{parser:u}=e,r=V(t[0],"size").value,n=t[1];return{type:"raisebox",mode:u.mode,dy:r,body:n}},htmlBuilder(e,t){var u=Y(e.body,t),r=a0(e.dy,t);return X({positionType:"shift",positionData:-r,children:[{type:"elem",elem:u}]})},mathmlBuilder(e,t){var u=new F("mpadded",[J(e.body,t)]),r=e.dy.number+e.dy.unit;return u.setAttribute("voffset",r),u}});I({type:"internal",names:["\\relax"],numArgs:0,allowedInText:!0,allowedInArgument:!0,handler(e){var{parser:t}=e;return{type:"internal",mode:t.mode}}});I({type:"rule",names:["\\rule"],numArgs:2,numOptionalArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["size","size","size"],handler(e,t,u){var{parser:r}=e,n=u[0],a=V(t[0],"size"),i=V(t[1],"size");return{type:"rule",mode:r.mode,shift:n&&V(n,"size").value,width:a.value,height:i.value}},htmlBuilder(e,t){var u=E(["mord","rule"],[],t),r=a0(e.width,t),n=a0(e.height,t),a=e.shift?a0(e.shift,t):0;return u.style.borderRightWidth=M(r),u.style.borderTopWidth=M(n),u.style.bottom=M(a),u.width=r,u.height=n+a,u.depth=-a,u.maxFontSize=n*1.125*t.sizeMultiplier,u},mathmlBuilder(e,t){var u=a0(e.width,t),r=a0(e.height,t),n=e.shift?a0(e.shift,t):0,a=t.color&&t.getColor()||"black",i=new F("mspace");i.setAttribute("mathbackground",a),i.setAttribute("width",M(u)),i.setAttribute("height",M(r));var s=new F("mpadded",[i]);return n>=0?s.setAttribute("height",M(n)):(s.setAttribute("height",M(n)),s.setAttribute("depth",M(-n))),s.setAttribute("voffset",M(n)),s}});function In(e,t,u){for(var r=m0(e,t,!1),n=t.sizeMultiplier/u.sizeMultiplier,a=0;a<r.length;a++){var i=r[a].classes.indexOf("sizing");i<0?Array.prototype.push.apply(r[a].classes,t.sizingClasses(u)):r[a].classes[i+1]==="reset-size"+t.size&&(r[a].classes[i+1]="reset-size"+u.size),r[a].height*=n,r[a].depth*=n}return ne(r)}var r1=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"],Lo=(e,t)=>{var u=t.havingSize(e.size);return In(e.body,u,t)};I({type:"sizing",names:r1,numArgs:0,allowedInText:!0,handler:(e,t)=>{var{breakOnTokenText:u,funcName:r,parser:n}=e,a=n.parseExpression(!1,u);return{type:"sizing",mode:n.mode,size:r1.indexOf(r)+1,body:a}},htmlBuilder:Lo,mathmlBuilder:(e,t)=>{var u=t.havingSize(e.size),r=F0(e.body,u),n=new F("mstyle",r);return n.setAttribute("mathsize",M(u.sizeMultiplier)),n}});I({type:"smash",names:["\\smash"],numArgs:1,numOptionalArgs:1,allowedInText:!0,handler:(e,t,u)=>{var{parser:r}=e,n=!1,a=!1,i=u[0]&&V(u[0],"ordgroup");if(i)for(var s,o=0;o<i.body.length;++o){var h=i.body[o];if(s=Rt(h).text,s==="t")n=!0;else if(s==="b")a=!0;else{n=!1,a=!1;break}}else n=!0,a=!0;var f=t[0];return{type:"smash",mode:r.mode,body:f,smashHeight:n,smashDepth:a}},htmlBuilder:(e,t)=>{var u=E([],[Y(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return u;if(e.smashHeight&&(u.height=0),e.smashDepth&&(u.depth=0),e.smashHeight&&e.smashDepth)return E(["mord","smash"],[u],t);if(u.children)for(var r=0;r<u.children.length;r++)e.smashHeight&&(u.children[r].height=0),e.smashDepth&&(u.children[r].depth=0);var n=X({positionType:"firstBaseline",children:[{type:"elem",elem:u}]});return E(["mord"],[n],t)},mathmlBuilder:(e,t)=>{var u=new F("mpadded",[J(e.body,t)]);return e.smashHeight&&u.setAttribute("height","0px"),e.smashDepth&&u.setAttribute("depth","0px"),u}});I({type:"sqrt",names:["\\sqrt"],numArgs:1,numOptionalArgs:1,handler(e,t,u){var{parser:r}=e,n=u[0],a=t[0];return{type:"sqrt",mode:r.mode,body:a,index:n}},htmlBuilder(e,t){var u=Y(e.body,t.havingCrampedStyle());u.height===0&&(u.height=t.fontMetrics().xHeight),u=Fe(u,t);var r=t.fontMetrics(),n=r.defaultRuleThickness,a=n;t.style.id<G.TEXT.id&&(a=t.fontMetrics().xHeight);var i=n+a/4,s=u.height+u.depth+i+n,{span:o,ruleWidth:h,advanceWidth:f}=yo(s,t),p=o.height-h;p>u.height+u.depth+i&&(i=(i+p-u.height-u.depth)/2);var x=o.height-u.height-i-h;u.style.paddingLeft=M(f);var b=X({positionType:"firstBaseline",children:[{type:"elem",elem:u,wrapperClasses:["svg-align"]},{type:"kern",size:-(u.height+x)},{type:"elem",elem:o},{type:"kern",size:h}]});if(e.index){var y=t.havingStyle(G.SCRIPTSCRIPT),k=Y(e.index,y,t),A=.6*(b.height-b.depth),D=X({positionType:"shift",positionData:-A,children:[{type:"elem",elem:k}]}),S=E(["root"],[D]);return E(["mord","sqrt"],[S,b],t)}else return E(["mord","sqrt"],[b],t)},mathmlBuilder(e,t){var{body:u,index:r}=e;return r?new F("mroot",[J(u,t),J(r,t)]):new F("msqrt",[J(u,t)])}});var Mu={display:G.DISPLAY,text:G.TEXT,script:G.SCRIPT,scriptscript:G.SCRIPTSCRIPT};function Po(e){return e in Mu}I({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],numArgs:0,allowedInText:!0,primitive:!0,handler(e,t){var{breakOnTokenText:u,funcName:r,parser:n}=e,a=n.parseExpression(!0,u),i=r.slice(1,r.length-5);if(!Po(i))throw new Error("Unknown style: "+i);return{type:"styling",mode:n.mode,style:i,body:a}},htmlBuilder(e,t){var u=Mu[e.style],r=t.havingStyle(u);return e.resetFont&&(r=r.withFont("")),In(e.body,r,t)},mathmlBuilder(e,t){var u=Mu[e.style],r=t.havingStyle(u);e.resetFont&&(r=r.withFont(""));var n=F0(e.body,r),a=new F("mstyle",n),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]},s=i[e.style];return a.setAttribute("scriptlevel",s[0]),a.setAttribute("displaystyle",s[1]),a}});var Ho=function(t,u){var r=t.base;if(r)if(r.type==="op"){var n=r.limits&&(u.style.size===G.DISPLAY.size||r.alwaysHandleSupSub);return n?qn:null}else if(r.type==="operatorname"){var a=r.alwaysHandleSupSub&&(u.style.size===G.DISPLAY.size||r.limits);return a?Rn:null}else{if(r.type==="accent")return ue(r.base)?bn:null;if(r.type==="horizBrace"){var i=!t.sub;return i===r.isOver?Tn:null}else return null}else return null};ke({type:"supsub",htmlBuilder(e,t){var u=Ho(e,t);if(u)return u(e,t);var{base:r,sup:n,sub:a}=e,i=Y(r,t),s,o,h=t.fontMetrics(),f=0,p=0,x=r&&ue(r);if(n){var b=t.havingStyle(t.style.sup());s=Y(n,b,t),x||(f=i.height-b.fontMetrics().supDrop*b.sizeMultiplier/t.sizeMultiplier)}if(a){var y=t.havingStyle(t.style.sub());o=Y(a,y,t),x||(p=i.depth+y.fontMetrics().subDrop*y.sizeMultiplier/t.sizeMultiplier)}var k;t.style===G.DISPLAY?k=h.sup1:t.style.cramped?k=h.sup3:k=h.sup2;var A=t.sizeMultiplier,D=M(.5/h.ptPerEm/A),S=null;if(o){var _=e.base&&e.base.type==="op"&&e.base.name&&(e.base.name==="\\oiint"||e.base.name==="\\oiiint");if(i instanceof _0||_){var T;S=M(-((T=i.italic)!=null?T:0))}}var B;if(s&&o){f=Math.max(f,k,s.depth+.25*h.xHeight),p=Math.max(p,h.sub2);var q=h.defaultRuleThickness,L=4*q;if(f-s.depth-(o.height-p)<L){p=L-(f-s.depth)+o.height;var $=.8*h.xHeight-(f-s.depth);$>0&&(f+=$,p-=$)}var U=[{type:"elem",elem:o,shift:p,marginRight:D,marginLeft:S},{type:"elem",elem:s,shift:-f,marginRight:D}];B=X({positionType:"individualShift",children:U})}else if(o){p=Math.max(p,h.sub1,o.height-.8*h.xHeight);var i0=[{type:"elem",elem:o,marginLeft:S,marginRight:D}];B=X({positionType:"shift",positionData:p,children:i0})}else if(s)f=Math.max(f,k,s.depth+.25*h.xHeight),B=X({positionType:"shift",positionData:-f,children:[{type:"elem",elem:s,marginRight:D}]});else throw new Error("supsub must have either sup or sub.");var r0=Eu(i,"right")||"mord";return E([r0],[i,E(["msupsub"],[B])],t)},mathmlBuilder(e,t){var u=!1,r,n;e.base&&e.base.type==="horizBrace"&&(n=!!e.sup,n===e.base.isOver&&(u=!0,r=e.base.isOver)),e.base&&(e.base.type==="op"||e.base.type==="operatorname")&&(e.base.parentIsSupSub=!0);var a=[J(e.base,t)];e.sub&&a.push(J(e.sub,t)),e.sup&&a.push(J(e.sup,t));var i;if(u)i=r?"mover":"munder";else if(e.sub)if(e.sup){var h=e.base;h&&h.type==="op"&&h.limits&&t.style===G.DISPLAY||h&&h.type==="operatorname"&&h.alwaysHandleSupSub&&(t.style===G.DISPLAY||h.limits)?i="munderover":i="msubsup"}else{var o=e.base;o&&o.type==="op"&&o.limits&&(t.style===G.DISPLAY||o.alwaysHandleSupSub)||o&&o.type==="operatorname"&&o.alwaysHandleSupSub&&(o.limits||t.style===G.DISPLAY)?i="munder":i="msub"}else{var s=e.base;s&&s.type==="op"&&s.limits&&(t.style===G.DISPLAY||s.alwaysHandleSupSub)||s&&s.type==="operatorname"&&s.alwaysHandleSupSub&&(s.limits||t.style===G.DISPLAY)?i="mover":i="msup"}return new F(i,a)}});ke({type:"atom",htmlBuilder(e,t){return Vu(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){var u=new F("mo",[I0(e.text,e.mode)]);if(e.family==="bin"){var r=Xu(e,t);r==="bold-italic"&&u.setAttribute("mathvariant",r)}else e.family==="punct"?u.setAttribute("separator","true"):(e.family==="open"||e.family==="close")&&u.setAttribute("stretchy","false");return u}});var Nn={mi:"italic",mn:"normal",mtext:"normal"};ke({type:"mathord",htmlBuilder(e,t){return Mt(e,t)},mathmlBuilder(e,t){var u=new F("mi",[I0(e.text,e.mode,t)]),r=Xu(e,t)||"italic";return r!==Nn[u.type]&&u.setAttribute("mathvariant",r),u}});ke({type:"textord",htmlBuilder(e,t){return Mt(e,t)},mathmlBuilder(e,t){var u=I0(e.text,e.mode,t),r=Xu(e,t)||"normal",n;return e.mode==="text"?n=new F("mtext",[u]):/[0-9]/.test(e.text)?n=new F("mn",[u]):e.text==="\\prime"?n=new F("mo",[u]):n=new F("mi",[u]),r!==Nn[n.type]&&n.setAttribute("mathvariant",r),n}});var lu={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},ou={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};ke({type:"spacing",htmlBuilder(e,t){if(ou.hasOwnProperty(e.text)){var u=ou[e.text].className||"";if(e.mode==="text"){var r=Mt(e,t);return r.classes.push(u),r}else return E(["mspace",u],[Vu(e.text,e.mode,t)],t)}else{if(lu.hasOwnProperty(e.text))return E(["mspace",lu[e.text]],[],t);throw new z('Unknown type of space "'+e.text+'"')}},mathmlBuilder(e,t){var u;if(ou.hasOwnProperty(e.text))u=new F("mtext",[new c0(" ")]);else{if(lu.hasOwnProperty(e.text))return new F("mspace");throw new z('Unknown type of space "'+e.text+'"')}return u}});var n1=()=>{var e=new F("mtd",[]);return e.setAttribute("width","50%"),e};ke({type:"tag",mathmlBuilder(e,t){var u=new F("mtable",[new F("mtr",[n1(),new F("mtd",[pe(e.body,t)]),n1(),new F("mtd",[pe(e.tag,t)])])]);return u.setAttribute("width","100%"),u}});var a1={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},i1={"\\textbf":"textbf","\\textmd":"textmd"},$o={"\\textit":"textit","\\textup":"textup"},s1=(e,t)=>{var u=e.font;if(u){if(a1[u])return t.withTextFontFamily(a1[u]);if(i1[u])return t.withTextFontWeight(i1[u]);if(u==="\\emph")return t.fontShape==="textit"?t.withTextFontShape("textup"):t.withTextFontShape("textit")}else return t;return t.withTextFontShape($o[u])};I({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0,handler(e,t){var{parser:u,funcName:r}=e,n=t[0];return{type:"text",mode:u.mode,body:o0(n),font:r}},htmlBuilder(e,t){var u=s1(e,t),r=m0(e.body,u,!0);return E(["mord","text"],r,u)},mathmlBuilder(e,t){var u=s1(e,t);return pe(e.body,u)}});I({type:"underline",names:["\\underline"],numArgs:1,allowedInText:!0,handler(e,t){var{parser:u}=e;return{type:"underline",mode:u.mode,body:t[0]}},htmlBuilder(e,t){var u=Y(e.body,t),r=ze("underline-line",t),n=t.fontMetrics().defaultRuleThickness,a=X({positionType:"top",positionData:u.height,children:[{type:"kern",size:n},{type:"elem",elem:r},{type:"kern",size:3*n},{type:"elem",elem:u}]});return E(["mord","underline"],[a],t)},mathmlBuilder(e,t){var u=new F("mo",[new c0("‾")]);u.setAttribute("stretchy","true");var r=new F("munder",[J(e.body,t),u]);return r.setAttribute("accentunder","true"),r}});I({type:"vcenter",names:["\\vcenter"],numArgs:1,argTypes:["original"],allowedInText:!1,handler(e,t){var{parser:u}=e;return{type:"vcenter",mode:u.mode,body:t[0]}},htmlBuilder(e,t){var u=Y(e.body,t),r=t.fontMetrics().axisHeight,n=.5*(u.height-r-(u.depth+r));return X({positionType:"shift",positionData:n,children:[{type:"elem",elem:u}]})},mathmlBuilder(e,t){var u=new F("mpadded",[J(e.body,t)],["vcenter"]);return new F("mrow",[u])}});I({type:"verb",names:["\\verb"],numArgs:0,allowedInText:!0,handler(e,t,u){throw new z("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){for(var u=l1(e),r=[],n=t.havingStyle(t.style.text()),a=0;a<u.length;a++){var i=u[a];i==="~"&&(i="\\textasciitilde"),r.push(w0(i,"Typewriter-Regular",e.mode,n,["mord","texttt"]))}return E(["mord","text"].concat(n.sizingClasses(t)),nn(r),n)},mathmlBuilder(e,t){var u=new c0(l1(e)),r=new F("mtext",[u]);return r.setAttribute("mathvariant","monospace"),r}});var l1=e=>e.body.replace(/ /g,e.star?"␣":" "),ce=on,On=`[ \r
268
+ ]`,jo="\\\\[a-zA-Z@]+",Uo="\\\\[^\uD800-\uDFFF]",Go="("+jo+")"+On+"*",Vo=`\\\\(
269
269
  |[ \r ]+
270
- ?)[ \r ]*`,Tu="[̀-ͯ]",Uo=new RegExp(Tu+"+$"),Go="("+In+"+)|"+(jo+"|")+"([!-\\[\\]-‧‪-퟿豈-￿]"+(Tu+"*")+"|[\uD800-\uDBFF][\uDC00-\uDFFF]"+(Tu+"*")+"|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5"+("|"+$o)+("|"+Ho+")");class l1{constructor(t,u){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=t,this.settings=u,this.tokenRegex=new RegExp(Go,"g"),this.catcodes={"%":14,"~":13}}setCatcode(t,u){this.catcodes[t]=u}lex(){var t=this.input,u=this.tokenRegex.lastIndex;if(u===t.length)return new _0("EOF",new C0(this,u,u));var r=this.tokenRegex.exec(t);if(r===null||r.index!==u)throw new z("Unexpected character: '"+t[u]+"'",new _0(t[u],new C0(this,u,u+1)));var n=r[6]||r[3]||(r[2]?"\\ ":" ");if(this.catcodes[n]===14){var a=t.indexOf(`
271
- `,this.tokenRegex.lastIndex);return a===-1?(this.tokenRegex.lastIndex=t.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=a+1,this.lex()}return new _0(n,new C0(this,u,this.tokenRegex.lastIndex))}}class Vo{constructor(t,u){t===void 0&&(t={}),u===void 0&&(u={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=u,this.builtins=t,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(this.undefStack.length===0)throw new z("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");var t=this.undefStack.pop();for(var u in t)t.hasOwnProperty(u)&&(t[u]==null?delete this.current[u]:this.current[u]=t[u])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(t){return this.current.hasOwnProperty(t)||this.builtins.hasOwnProperty(t)}get(t){return this.current.hasOwnProperty(t)?this.current[t]:this.builtins[t]}set(t,u,r){if(r===void 0&&(r=!1),r){for(var n=0;n<this.undefStack.length;n++)delete this.undefStack[n][t];this.undefStack.length>0&&(this.undefStack[this.undefStack.length-1][t]=u)}else{var a=this.undefStack[this.undefStack.length-1];a&&!a.hasOwnProperty(t)&&(a[t]=this.current[t])}u==null?delete this.current[t]:this.current[t]=u}}var Wo=Sn;m("\\noexpand",function(e){var t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}});m("\\expandafter",function(e){var t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}});m("\\@firstoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[0],numArgs:0}});m("\\@secondoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[1],numArgs:0}});m("\\@ifnextchar",function(e){var t=e.consumeArgs(3);e.consumeSpaces();var u=e.future();return t[0].length===1&&t[0][0].text===u.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}});m("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}");m("\\TextOrMath",function(e){var t=e.consumeArgs(2);return e.mode==="text"?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}});var o1={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};m("\\char",function(e){var t=e.popToken(),u,r=0;if(t.text==="'")u=8,t=e.popToken();else if(t.text==='"')u=16,t=e.popToken();else if(t.text==="`")if(t=e.popToken(),t.text[0]==="\\")r=t.text.charCodeAt(1);else{if(t.text==="EOF")throw new z("\\char` missing argument");r=t.text.charCodeAt(0)}else u=10;if(u){if(r=o1[t.text],r==null||r>=u)throw new z("Invalid base-"+u+" digit "+t.text);for(var n;(n=o1[e.future().text])!=null&&n<u;)r*=u,r+=n,e.popToken()}return"\\@char{"+r+"}"});var Ku=(e,t,u,r)=>{var n=e.consumeArg().tokens;if(n.length!==1)throw new z("\\newcommand's first argument must be a macro name");var a=n[0].text,i=e.isDefined(a);if(i&&!t)throw new z("\\newcommand{"+a+"} attempting to redefine "+(a+"; use \\renewcommand"));if(!i&&!u)throw new z("\\renewcommand{"+a+"} when command "+a+" does not yet exist; use \\newcommand");var s=0;if(n=e.consumeArg().tokens,n.length===1&&n[0].text==="["){for(var o="",h=e.expandNextToken();h.text!=="]"&&h.text!=="EOF";)o+=h.text,h=e.expandNextToken();if(!o.match(/^\s*[0-9]+\s*$/))throw new z("Invalid number of arguments: "+o);s=parseInt(o),n=e.consumeArg().tokens}return i&&r||e.macros.set(a,{tokens:n,numArgs:s}),""};m("\\newcommand",e=>Ku(e,!1,!0,!1));m("\\renewcommand",e=>Ku(e,!0,!1,!1));m("\\providecommand",e=>Ku(e,!0,!0,!0));m("\\message",e=>{var t=e.consumeArgs(1)[0];return console.log(t.reverse().map(u=>u.text).join("")),""});m("\\errmessage",e=>{var t=e.consumeArgs(1)[0];return console.error(t.reverse().map(u=>u.text).join("")),""});m("\\show",e=>{var t=e.popToken(),u=t.text;return console.log(t,e.macros.get(u),oe[u],n0.math[u],n0.text[u]),""});m("\\bgroup","{");m("\\egroup","}");m("~","\\nobreakspace");m("\\lq","`");m("\\rq","'");m("\\aa","\\r a");m("\\AA","\\r A");m("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`©}");m("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}");m("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`®}");m("ℬ","\\mathscr{B}");m("ℰ","\\mathscr{E}");m("ℱ","\\mathscr{F}");m("ℋ","\\mathscr{H}");m("ℐ","\\mathscr{I}");m("ℒ","\\mathscr{L}");m("ℳ","\\mathscr{M}");m("ℛ","\\mathscr{R}");m("ℭ","\\mathfrak{C}");m("ℌ","\\mathfrak{H}");m("ℨ","\\mathfrak{Z}");m("\\Bbbk","\\Bbb{k}");m("\\llap","\\mathllap{\\textrm{#1}}");m("\\rlap","\\mathrlap{\\textrm{#1}}");m("\\clap","\\mathclap{\\textrm{#1}}");m("\\mathstrut","\\vphantom{(}");m("\\underbar","\\underline{\\text{#1}}");m("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}\\nobreak}{\\char"338}');m("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`≠}}");m("\\ne","\\neq");m("≠","\\neq");m("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`∉}}");m("∉","\\notin");m("≘","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`≘}}");m("≙","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`≘}}");m("≚","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`≚}}");m("≛","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`≛}}");m("≝","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`≝}}");m("≞","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`≞}}");m("≟","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`≟}}");m("⟂","\\perp");m("‼","\\mathclose{!\\mkern-0.8mu!}");m("∌","\\notni");m("⌜","\\ulcorner");m("⌝","\\urcorner");m("⌞","\\llcorner");m("⌟","\\lrcorner");m("©","\\copyright");m("®","\\textregistered");m("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}');m("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}');m("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}');m("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}');m("\\vdots","{\\varvdots\\rule{0pt}{15pt}}");m("⋮","\\vdots");m("\\varGamma","\\mathit{\\Gamma}");m("\\varDelta","\\mathit{\\Delta}");m("\\varTheta","\\mathit{\\Theta}");m("\\varLambda","\\mathit{\\Lambda}");m("\\varXi","\\mathit{\\Xi}");m("\\varPi","\\mathit{\\Pi}");m("\\varSigma","\\mathit{\\Sigma}");m("\\varUpsilon","\\mathit{\\Upsilon}");m("\\varPhi","\\mathit{\\Phi}");m("\\varPsi","\\mathit{\\Psi}");m("\\varOmega","\\mathit{\\Omega}");m("\\substack","\\begin{subarray}{c}#1\\end{subarray}");m("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax");m("\\boxed","\\fbox{$\\displaystyle{#1}$}");m("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;");m("\\implies","\\DOTSB\\;\\Longrightarrow\\;");m("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");m("\\dddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ...}}{#1}}");m("\\ddddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ....}}{#1}}");var c1={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"},Zo=new Set(["bin","rel"]);m("\\dots",function(e){var t="\\dotso",u=e.expandAfterFuture().text;return u in c1?t=c1[u]:(u.slice(0,4)==="\\not"||u in n0.math&&Zo.has(n0.math[u].group))&&(t="\\dotsb"),t});var Ju={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};m("\\dotso",function(e){var t=e.future().text;return t in Ju?"\\ldots\\,":"\\ldots"});m("\\dotsc",function(e){var t=e.future().text;return t in Ju&&t!==","?"\\ldots\\,":"\\ldots"});m("\\cdots",function(e){var t=e.future().text;return t in Ju?"\\@cdots\\,":"\\@cdots"});m("\\dotsb","\\cdots");m("\\dotsm","\\cdots");m("\\dotsi","\\!\\cdots");m("\\dotsx","\\ldots\\,");m("\\DOTSI","\\relax");m("\\DOTSB","\\relax");m("\\DOTSX","\\relax");m("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax");m("\\,","\\tmspace+{3mu}{.1667em}");m("\\thinspace","\\,");m("\\>","\\mskip{4mu}");m("\\:","\\tmspace+{4mu}{.2222em}");m("\\medspace","\\:");m("\\;","\\tmspace+{5mu}{.2777em}");m("\\thickspace","\\;");m("\\!","\\tmspace-{3mu}{.1667em}");m("\\negthinspace","\\!");m("\\negmedspace","\\tmspace-{4mu}{.2222em}");m("\\negthickspace","\\tmspace-{5mu}{.277em}");m("\\enspace","\\kern.5em ");m("\\enskip","\\hskip.5em\\relax");m("\\quad","\\hskip1em\\relax");m("\\qquad","\\hskip2em\\relax");m("\\tag","\\@ifstar\\tag@literal\\tag@paren");m("\\tag@paren","\\tag@literal{({#1})}");m("\\tag@literal",e=>{if(e.macros.get("\\df@tag"))throw new z("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"});m("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}");m("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)");m("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}");m("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1");m("\\newline","\\\\\\relax");m("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");var Nn=M($0["Main-Regular"][84][1]-.7*$0["Main-Regular"][65][1]);m("\\LaTeX","\\textrm{\\html@mathml{"+("L\\kern-.36em\\raisebox{"+Nn+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{LaTeX}}");m("\\KaTeX","\\textrm{\\html@mathml{"+("K\\kern-.17em\\raisebox{"+Nn+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{KaTeX}}");m("\\hspace","\\@ifstar\\@hspacer\\@hspace");m("\\@hspace","\\hskip #1\\relax");m("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax");m("\\ordinarycolon",":");m("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}");m("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}');m("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}');m("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}');m("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}');m("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}');m("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}');m("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}');m("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}');m("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}');m("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}');m("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}');m("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}');m("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}');m("∷","\\dblcolon");m("∹","\\eqcolon");m("≔","\\coloneqq");m("≕","\\eqqcolon");m("⩴","\\Coloneqq");m("\\ratio","\\vcentcolon");m("\\coloncolon","\\dblcolon");m("\\colonequals","\\coloneqq");m("\\coloncolonequals","\\Coloneqq");m("\\equalscolon","\\eqqcolon");m("\\equalscoloncolon","\\Eqqcolon");m("\\colonminus","\\coloneq");m("\\coloncolonminus","\\Coloneq");m("\\minuscolon","\\eqcolon");m("\\minuscoloncolon","\\Eqcolon");m("\\coloncolonapprox","\\Colonapprox");m("\\coloncolonsim","\\Colonsim");m("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}");m("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}");m("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}");m("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}");m("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`∌}}");m("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}");m("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}");m("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}");m("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}");m("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}");m("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}");m("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}");m("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}");m("\\gvertneqq","\\html@mathml{\\@gvertneqq}{≩}");m("\\lvertneqq","\\html@mathml{\\@lvertneqq}{≨}");m("\\ngeqq","\\html@mathml{\\@ngeqq}{≱}");m("\\ngeqslant","\\html@mathml{\\@ngeqslant}{≱}");m("\\nleqq","\\html@mathml{\\@nleqq}{≰}");m("\\nleqslant","\\html@mathml{\\@nleqslant}{≰}");m("\\nshortmid","\\html@mathml{\\@nshortmid}{∤}");m("\\nshortparallel","\\html@mathml{\\@nshortparallel}{∦}");m("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{⊈}");m("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{⊉}");m("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{⊊}");m("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{⫋}");m("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{⊋}");m("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{⫌}");m("\\imath","\\html@mathml{\\@imath}{ı}");m("\\jmath","\\html@mathml{\\@jmath}{ȷ}");m("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`⟦}}");m("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`⟧}}");m("⟦","\\llbracket");m("⟧","\\rrbracket");m("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`⦃}}");m("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`⦄}}");m("⦃","\\lBrace");m("⦄","\\rBrace");m("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`⦵}}");m("⦵","\\minuso");m("\\darr","\\downarrow");m("\\dArr","\\Downarrow");m("\\Darr","\\Downarrow");m("\\lang","\\langle");m("\\rang","\\rangle");m("\\uarr","\\uparrow");m("\\uArr","\\Uparrow");m("\\Uarr","\\Uparrow");m("\\N","\\mathbb{N}");m("\\R","\\mathbb{R}");m("\\Z","\\mathbb{Z}");m("\\alef","\\aleph");m("\\alefsym","\\aleph");m("\\Alpha","\\mathrm{A}");m("\\Beta","\\mathrm{B}");m("\\bull","\\bullet");m("\\Chi","\\mathrm{X}");m("\\clubs","\\clubsuit");m("\\cnums","\\mathbb{C}");m("\\Complex","\\mathbb{C}");m("\\Dagger","\\ddagger");m("\\diamonds","\\diamondsuit");m("\\empty","\\emptyset");m("\\Epsilon","\\mathrm{E}");m("\\Eta","\\mathrm{H}");m("\\exist","\\exists");m("\\harr","\\leftrightarrow");m("\\hArr","\\Leftrightarrow");m("\\Harr","\\Leftrightarrow");m("\\hearts","\\heartsuit");m("\\image","\\Im");m("\\infin","\\infty");m("\\Iota","\\mathrm{I}");m("\\isin","\\in");m("\\Kappa","\\mathrm{K}");m("\\larr","\\leftarrow");m("\\lArr","\\Leftarrow");m("\\Larr","\\Leftarrow");m("\\lrarr","\\leftrightarrow");m("\\lrArr","\\Leftrightarrow");m("\\Lrarr","\\Leftrightarrow");m("\\Mu","\\mathrm{M}");m("\\natnums","\\mathbb{N}");m("\\Nu","\\mathrm{N}");m("\\Omicron","\\mathrm{O}");m("\\plusmn","\\pm");m("\\rarr","\\rightarrow");m("\\rArr","\\Rightarrow");m("\\Rarr","\\Rightarrow");m("\\real","\\Re");m("\\reals","\\mathbb{R}");m("\\Reals","\\mathbb{R}");m("\\Rho","\\mathrm{P}");m("\\sdot","\\cdot");m("\\sect","\\S");m("\\spades","\\spadesuit");m("\\sub","\\subset");m("\\sube","\\subseteq");m("\\supe","\\supseteq");m("\\Tau","\\mathrm{T}");m("\\thetasym","\\vartheta");m("\\weierp","\\wp");m("\\Zeta","\\mathrm{Z}");m("\\argmin","\\DOTSB\\operatorname*{arg\\,min}");m("\\argmax","\\DOTSB\\operatorname*{arg\\,max}");m("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits");m("\\bra","\\mathinner{\\langle{#1}|}");m("\\ket","\\mathinner{|{#1}\\rangle}");m("\\braket","\\mathinner{\\langle{#1}\\rangle}");m("\\Bra","\\left\\langle#1\\right|");m("\\Ket","\\left|#1\\right\\rangle");var On=e=>t=>{var u=t.consumeArg().tokens,r=t.consumeArg().tokens,n=t.consumeArg().tokens,a=t.consumeArg().tokens,i=t.macros.get("|"),s=t.macros.get("\\|");t.macros.beginGroup();var o=p=>x=>{e&&(x.macros.set("|",i),n.length&&x.macros.set("\\|",s));var b=p;if(!p&&n.length){var y=x.future();y.text==="|"&&(x.popToken(),b=!0)}return{tokens:b?n:r,numArgs:0}};t.macros.set("|",o(!1)),n.length&&t.macros.set("\\|",o(!0));var h=t.consumeArg().tokens,f=t.expandTokens([...a,...h,...u]);return t.macros.endGroup(),{tokens:f.reverse(),numArgs:0}};m("\\bra@ket",On(!1));m("\\bra@set",On(!0));m("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}");m("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}");m("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}");m("\\angln","{\\angl n}");m("\\blue","\\textcolor{##6495ed}{#1}");m("\\orange","\\textcolor{##ffa500}{#1}");m("\\pink","\\textcolor{##ff00af}{#1}");m("\\red","\\textcolor{##df0030}{#1}");m("\\green","\\textcolor{##28ae7b}{#1}");m("\\gray","\\textcolor{gray}{#1}");m("\\purple","\\textcolor{##9d38bd}{#1}");m("\\blueA","\\textcolor{##ccfaff}{#1}");m("\\blueB","\\textcolor{##80f6ff}{#1}");m("\\blueC","\\textcolor{##63d9ea}{#1}");m("\\blueD","\\textcolor{##11accd}{#1}");m("\\blueE","\\textcolor{##0c7f99}{#1}");m("\\tealA","\\textcolor{##94fff5}{#1}");m("\\tealB","\\textcolor{##26edd5}{#1}");m("\\tealC","\\textcolor{##01d1c1}{#1}");m("\\tealD","\\textcolor{##01a995}{#1}");m("\\tealE","\\textcolor{##208170}{#1}");m("\\greenA","\\textcolor{##b6ffb0}{#1}");m("\\greenB","\\textcolor{##8af281}{#1}");m("\\greenC","\\textcolor{##74cf70}{#1}");m("\\greenD","\\textcolor{##1fab54}{#1}");m("\\greenE","\\textcolor{##0d923f}{#1}");m("\\goldA","\\textcolor{##ffd0a9}{#1}");m("\\goldB","\\textcolor{##ffbb71}{#1}");m("\\goldC","\\textcolor{##ff9c39}{#1}");m("\\goldD","\\textcolor{##e07d10}{#1}");m("\\goldE","\\textcolor{##a75a05}{#1}");m("\\redA","\\textcolor{##fca9a9}{#1}");m("\\redB","\\textcolor{##ff8482}{#1}");m("\\redC","\\textcolor{##f9685d}{#1}");m("\\redD","\\textcolor{##e84d39}{#1}");m("\\redE","\\textcolor{##bc2612}{#1}");m("\\maroonA","\\textcolor{##ffbde0}{#1}");m("\\maroonB","\\textcolor{##ff92c6}{#1}");m("\\maroonC","\\textcolor{##ed5fa6}{#1}");m("\\maroonD","\\textcolor{##ca337c}{#1}");m("\\maroonE","\\textcolor{##9e034e}{#1}");m("\\purpleA","\\textcolor{##ddd7ff}{#1}");m("\\purpleB","\\textcolor{##c6b9fc}{#1}");m("\\purpleC","\\textcolor{##aa87ff}{#1}");m("\\purpleD","\\textcolor{##7854ab}{#1}");m("\\purpleE","\\textcolor{##543b78}{#1}");m("\\mintA","\\textcolor{##f5f9e8}{#1}");m("\\mintB","\\textcolor{##edf2df}{#1}");m("\\mintC","\\textcolor{##e0e5cc}{#1}");m("\\grayA","\\textcolor{##f6f7f7}{#1}");m("\\grayB","\\textcolor{##f0f1f2}{#1}");m("\\grayC","\\textcolor{##e3e5e6}{#1}");m("\\grayD","\\textcolor{##d6d8da}{#1}");m("\\grayE","\\textcolor{##babec2}{#1}");m("\\grayF","\\textcolor{##888d93}{#1}");m("\\grayG","\\textcolor{##626569}{#1}");m("\\grayH","\\textcolor{##3b3e40}{#1}");m("\\grayI","\\textcolor{##21242c}{#1}");m("\\kaBlue","\\textcolor{##314453}{#1}");m("\\kaGreen","\\textcolor{##71B307}{#1}");var Ln={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class Xo{constructor(t,u,r){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=u,this.expansionCount=0,this.feed(t),this.macros=new Vo(Wo,u.macros),this.mode=r,this.stack=[]}feed(t){this.lexer=new l1(t,this.settings)}switchMode(t){this.mode=t}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return this.stack.length===0&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(t){this.stack.push(t)}pushTokens(t){this.stack.push(...t)}scanArgument(t){var u,r,n;if(t){if(this.consumeSpaces(),this.future().text!=="[")return null;u=this.popToken(),{tokens:n,end:r}=this.consumeArg(["]"])}else({tokens:n,start:u,end:r}=this.consumeArg());return this.pushToken(new _0("EOF",r.loc)),this.pushTokens(n),new _0("",C0.range(u,r))}consumeSpaces(){for(;;){var t=this.future();if(t.text===" ")this.stack.pop();else break}}consumeArg(t){var u=[],r=t&&t.length>0;r||this.consumeSpaces();var n=this.future(),a,i=0,s=0;do{if(a=this.popToken(),u.push(a),a.text==="{")++i;else if(a.text==="}"){if(--i,i===-1)throw new z("Extra }",a)}else if(a.text==="EOF")throw new z("Unexpected end of input in a macro argument, expected '"+(t&&r?t[s]:"}")+"'",a);if(t&&r)if((i===0||i===1&&t[s]==="{")&&a.text===t[s]){if(++s,s===t.length){u.splice(-s,s);break}}else s=0}while(i!==0||r);return n.text==="{"&&u[u.length-1].text==="}"&&(u.pop(),u.shift()),u.reverse(),{tokens:u,start:n,end:a}}consumeArgs(t,u){if(u){if(u.length!==t+1)throw new z("The length of delimiters doesn't match the number of args!");for(var r=u[0],n=0;n<r.length;n++){var a=this.popToken();if(r[n]!==a.text)throw new z("Use of the macro doesn't match its definition",a)}}for(var i=[],s=0;s<t;s++)i.push(this.consumeArg(u&&u[s+1]).tokens);return i}countExpansion(t){if(this.expansionCount+=t,this.expansionCount>this.settings.maxExpand)throw new z("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(t){var u=this.popToken(),r=u.text,n=u.noexpand?null:this._getExpansion(r);if(n==null||t&&n.unexpandable){if(t&&n==null&&r[0]==="\\"&&!this.isDefined(r))throw new z("Undefined control sequence: "+r);return this.pushToken(u),!1}this.countExpansion(1);var a=n.tokens,i=this.consumeArgs(n.numArgs,n.delimiters);if(n.numArgs){a=a.slice();for(var s=a.length-1;s>=0;--s){var o=a[s];if(o.text==="#"){if(s===0)throw new z("Incomplete placeholder at end of macro body",o);if(o=a[--s],o.text==="#")a.splice(s+1,1);else if(/^[1-9]$/.test(o.text))a.splice(s,2,...i[+o.text-1]);else throw new z("Not a valid argument number",o)}}}return this.pushTokens(a),a.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(this.expandOnce()===!1){var t=this.stack.pop();return t.treatAsRelax&&(t.text="\\relax"),t}}expandMacro(t){return this.macros.has(t)?this.expandTokens([new _0(t)]):void 0}expandTokens(t){var u=[],r=this.stack.length;for(this.pushTokens(t);this.stack.length>r;)if(this.expandOnce(!0)===!1){var n=this.stack.pop();n.treatAsRelax&&(n.noexpand=!1,n.treatAsRelax=!1),u.push(n)}return this.countExpansion(u.length),u}expandMacroAsText(t){var u=this.expandMacro(t);return u&&u.map(r=>r.text).join("")}_getExpansion(t){var u=this.macros.get(t);if(u==null)return u;if(t.length===1){var r=this.lexer.catcodes[t];if(r!=null&&r!==13)return}var n=typeof u=="function"?u(this):u;if(typeof n=="string"){var a=0;if(n.includes("#"))for(var i=n.replace(/##/g,"");i.includes("#"+(a+1));)++a;for(var s=new l1(n,this.settings),o=[],h=s.lex();h.text!=="EOF";)o.push(h),h=s.lex();o.reverse();var f={tokens:o,numArgs:a};return f}return n}isDefined(t){return this.macros.has(t)||oe.hasOwnProperty(t)||n0.math.hasOwnProperty(t)||n0.text.hasOwnProperty(t)||Ln.hasOwnProperty(t)}isExpandable(t){var u=this.macros.get(t);return u!=null?typeof u=="string"||typeof u=="function"||!u.unexpandable:oe.hasOwnProperty(t)&&!oe[t].primitive}}var h1=/^[₊₋₌₍₎₀₁₂₃₄₅₆₇₈₉ₐₑₕᵢⱼₖₗₘₙₒₚᵣₛₜᵤᵥₓᵦᵧᵨᵩᵪ]/,ht=Object.freeze({"₊":"+","₋":"-","₌":"=","₍":"(","₎":")","₀":"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","ᵦ":"β","ᵧ":"γ","ᵨ":"ρ","ᵩ":"ϕ","ᵪ":"χ","⁺":"+","⁻":"-","⁼":"=","⁽":"(","⁾":")","⁰":"0","¹":"1","²":"2","³":"3","⁴":"4","⁵":"5","⁶":"6","⁷":"7","⁸":"8","⁹":"9","ᴬ":"A","ᴮ":"B","ᴰ":"D","ᴱ":"E","ᴳ":"G","ᴴ":"H","ᴵ":"I","ᴶ":"J","ᴷ":"K","ᴸ":"L","ᴹ":"M","ᴺ":"N","ᴼ":"O","ᴾ":"P","ᴿ":"R","ᵀ":"T","ᵁ":"U","ⱽ":"V","ᵂ":"W","ᵃ":"a","ᵇ":"b","ᶜ":"c","ᵈ":"d","ᵉ":"e","ᶠ":"f","ᵍ":"g",ʰ:"h","ⁱ":"i",ʲ:"j","ᵏ":"k",ˡ:"l","ᵐ":"m",ⁿ:"n","ᵒ":"o","ᵖ":"p",ʳ:"r",ˢ:"s","ᵗ":"t","ᵘ":"u","ᵛ":"v",ʷ:"w",ˣ:"x",ʸ:"y","ᶻ":"z","ᵝ":"β","ᵞ":"γ","ᵟ":"δ","ᵠ":"ϕ","ᵡ":"χ","ᶿ":"θ"}),lu={"́":{text:"\\'",math:"\\acute"},"̀":{text:"\\`",math:"\\grave"},"̈":{text:'\\"',math:"\\ddot"},"̃":{text:"\\~",math:"\\tilde"},"̄":{text:"\\=",math:"\\bar"},"̆":{text:"\\u",math:"\\breve"},"̌":{text:"\\v",math:"\\check"},"̂":{text:"\\^",math:"\\hat"},"̇":{text:"\\.",math:"\\dot"},"̊":{text:"\\r",math:"\\mathring"},"̋":{text:"\\H"},"̧":{text:"\\c"}},d1={á:"á",à:"à",ä:"ä",ǟ:"ǟ",ã:"ã",ā:"ā",ă:"ă",ắ:"ắ",ằ:"ằ",ẵ:"ẵ",ǎ:"ǎ",â:"â",ấ:"ấ",ầ:"ầ",ẫ:"ẫ",ȧ:"ȧ",ǡ:"ǡ",å:"å",ǻ:"ǻ",ḃ:"ḃ",ć:"ć",ḉ:"ḉ",č:"č",ĉ:"ĉ",ċ:"ċ",ç:"ç",ď:"ď",ḋ:"ḋ",ḑ:"ḑ",é:"é",è:"è",ë:"ë",ẽ:"ẽ",ē:"ē",ḗ:"ḗ",ḕ:"ḕ",ĕ:"ĕ",ḝ:"ḝ",ě:"ě",ê:"ê",ế:"ế",ề:"ề",ễ:"ễ",ė:"ė",ȩ:"ȩ",ḟ:"ḟ",ǵ:"ǵ",ḡ:"ḡ",ğ:"ğ",ǧ:"ǧ",ĝ:"ĝ",ġ:"ġ",ģ:"ģ",ḧ:"ḧ",ȟ:"ȟ",ĥ:"ĥ",ḣ:"ḣ",ḩ:"ḩ",í:"í",ì:"ì",ï:"ï",ḯ:"ḯ",ĩ:"ĩ",ī:"ī",ĭ:"ĭ",ǐ:"ǐ",î:"î",ǰ:"ǰ",ĵ:"ĵ",ḱ:"ḱ",ǩ:"ǩ",ķ:"ķ",ĺ:"ĺ",ľ:"ľ",ļ:"ļ",ḿ:"ḿ",ṁ:"ṁ",ń:"ń",ǹ:"ǹ",ñ:"ñ",ň:"ň",ṅ:"ṅ",ņ:"ņ",ó:"ó",ò:"ò",ö:"ö",ȫ:"ȫ",õ:"õ",ṍ:"ṍ",ṏ:"ṏ",ȭ:"ȭ",ō:"ō",ṓ:"ṓ",ṑ:"ṑ",ŏ:"ŏ",ǒ:"ǒ",ô:"ô",ố:"ố",ồ:"ồ",ỗ:"ỗ",ȯ:"ȯ",ȱ:"ȱ",ő:"ő",ṕ:"ṕ",ṗ:"ṗ",ŕ:"ŕ",ř:"ř",ṙ:"ṙ",ŗ:"ŗ",ś:"ś",ṥ:"ṥ",š:"š",ṧ:"ṧ",ŝ:"ŝ",ṡ:"ṡ",ş:"ş",ẗ:"ẗ",ť:"ť",ṫ:"ṫ",ţ:"ţ",ú:"ú",ù:"ù",ü:"ü",ǘ:"ǘ",ǜ:"ǜ",ǖ:"ǖ",ǚ:"ǚ",ũ:"ũ",ṹ:"ṹ",ū:"ū",ṻ:"ṻ",ŭ:"ŭ",ǔ:"ǔ",û:"û",ů:"ů",ű:"ű",ṽ:"ṽ",ẃ:"ẃ",ẁ:"ẁ",ẅ:"ẅ",ŵ:"ŵ",ẇ:"ẇ",ẘ:"ẘ",ẍ:"ẍ",ẋ:"ẋ",ý:"ý",ỳ:"ỳ",ÿ:"ÿ",ỹ:"ỹ",ȳ:"ȳ",ŷ:"ŷ",ẏ:"ẏ",ẙ:"ẙ",ź:"ź",ž:"ž",ẑ:"ẑ",ż:"ż",Á:"Á",À:"À",Ä:"Ä",Ǟ:"Ǟ",Ã:"Ã",Ā:"Ā",Ă:"Ă",Ắ:"Ắ",Ằ:"Ằ",Ẵ:"Ẵ",Ǎ:"Ǎ",Â:"Â",Ấ:"Ấ",Ầ:"Ầ",Ẫ:"Ẫ",Ȧ:"Ȧ",Ǡ:"Ǡ",Å:"Å",Ǻ:"Ǻ",Ḃ:"Ḃ",Ć:"Ć",Ḉ:"Ḉ",Č:"Č",Ĉ:"Ĉ",Ċ:"Ċ",Ç:"Ç",Ď:"Ď",Ḋ:"Ḋ",Ḑ:"Ḑ",É:"É",È:"È",Ë:"Ë",Ẽ:"Ẽ",Ē:"Ē",Ḗ:"Ḗ",Ḕ:"Ḕ",Ĕ:"Ĕ",Ḝ:"Ḝ",Ě:"Ě",Ê:"Ê",Ế:"Ế",Ề:"Ề",Ễ:"Ễ",Ė:"Ė",Ȩ:"Ȩ",Ḟ:"Ḟ",Ǵ:"Ǵ",Ḡ:"Ḡ",Ğ:"Ğ",Ǧ:"Ǧ",Ĝ:"Ĝ",Ġ:"Ġ",Ģ:"Ģ",Ḧ:"Ḧ",Ȟ:"Ȟ",Ĥ:"Ĥ",Ḣ:"Ḣ",Ḩ:"Ḩ",Í:"Í",Ì:"Ì",Ï:"Ï",Ḯ:"Ḯ",Ĩ:"Ĩ",Ī:"Ī",Ĭ:"Ĭ",Ǐ:"Ǐ",Î:"Î",İ:"İ",Ĵ:"Ĵ",Ḱ:"Ḱ",Ǩ:"Ǩ",Ķ:"Ķ",Ĺ:"Ĺ",Ľ:"Ľ",Ļ:"Ļ",Ḿ:"Ḿ",Ṁ:"Ṁ",Ń:"Ń",Ǹ:"Ǹ",Ñ:"Ñ",Ň:"Ň",Ṅ:"Ṅ",Ņ:"Ņ",Ó:"Ó",Ò:"Ò",Ö:"Ö",Ȫ:"Ȫ",Õ:"Õ",Ṍ:"Ṍ",Ṏ:"Ṏ",Ȭ:"Ȭ",Ō:"Ō",Ṓ:"Ṓ",Ṑ:"Ṑ",Ŏ:"Ŏ",Ǒ:"Ǒ",Ô:"Ô",Ố:"Ố",Ồ:"Ồ",Ỗ:"Ỗ",Ȯ:"Ȯ",Ȱ:"Ȱ",Ő:"Ő",Ṕ:"Ṕ",Ṗ:"Ṗ",Ŕ:"Ŕ",Ř:"Ř",Ṙ:"Ṙ",Ŗ:"Ŗ",Ś:"Ś",Ṥ:"Ṥ",Š:"Š",Ṧ:"Ṧ",Ŝ:"Ŝ",Ṡ:"Ṡ",Ş:"Ş",Ť:"Ť",Ṫ:"Ṫ",Ţ:"Ţ",Ú:"Ú",Ù:"Ù",Ü:"Ü",Ǘ:"Ǘ",Ǜ:"Ǜ",Ǖ:"Ǖ",Ǚ:"Ǚ",Ũ:"Ũ",Ṹ:"Ṹ",Ū:"Ū",Ṻ:"Ṻ",Ŭ:"Ŭ",Ǔ:"Ǔ",Û:"Û",Ů:"Ů",Ű:"Ű",Ṽ:"Ṽ",Ẃ:"Ẃ",Ẁ:"Ẁ",Ẅ:"Ẅ",Ŵ:"Ŵ",Ẇ:"Ẇ",Ẍ:"Ẍ",Ẋ:"Ẋ",Ý:"Ý",Ỳ:"Ỳ",Ÿ:"Ÿ",Ỹ:"Ỹ",Ȳ:"Ȳ",Ŷ:"Ŷ",Ẏ:"Ẏ",Ź:"Ź",Ž:"Ž",Ẑ:"Ẑ",Ż:"Ż",ά:"ά",ὰ:"ὰ",ᾱ:"ᾱ",ᾰ:"ᾰ",έ:"έ",ὲ:"ὲ",ή:"ή",ὴ:"ὴ",ί:"ί",ὶ:"ὶ",ϊ:"ϊ",ΐ:"ΐ",ῒ:"ῒ",ῑ:"ῑ",ῐ:"ῐ",ό:"ό",ὸ:"ὸ",ύ:"ύ",ὺ:"ὺ",ϋ:"ϋ",ΰ:"ΰ",ῢ:"ῢ",ῡ:"ῡ",ῠ:"ῠ",ώ:"ώ",ὼ:"ὼ",Ύ:"Ύ",Ὺ:"Ὺ",Ϋ:"Ϋ",Ῡ:"Ῡ",Ῠ:"Ῠ",Ώ:"Ώ",Ὼ:"Ὼ"};class Nt{constructor(t,u){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new Xo(t,u,this.mode),this.settings=u,this.leftrightDepth=0,this.nextToken=null}expect(t,u){if(u===void 0&&(u=!0),this.fetch().text!==t)throw new z("Expected '"+t+"', got '"+this.fetch().text+"'",this.fetch());u&&this.consume()}consume(){this.nextToken=null}fetch(){return this.nextToken==null&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(t){this.mode=t,this.gullet.switchMode(t)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{var t=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),t}finally{this.gullet.endGroups()}}subparse(t){var u=this.nextToken;this.consume(),this.gullet.pushToken(new _0("}")),this.gullet.pushTokens(t);var r=this.parseExpression(!1);return this.expect("}"),this.nextToken=u,r}parseExpression(t,u){for(var r=[];;){this.mode==="math"&&this.consumeSpaces();var n=this.fetch();if(Nt.endOfExpression.has(n.text)||u&&n.text===u||t&&oe[n.text]&&oe[n.text].infix)break;var a=this.parseAtom(u);if(a){if(a.type==="internal")continue}else break;r.push(a)}return this.mode==="text"&&this.formLigatures(r),this.handleInfixNodes(r)}handleInfixNodes(t){for(var u=-1,r,n=0;n<t.length;n++){var a=t[n];if(a.type==="infix"){if(u!==-1)throw new z("only one infix operator per group",a.token);u=n,r=a.replaceWith}}if(u!==-1&&r){var i,s,o=t.slice(0,u),h=t.slice(u+1);o.length===1&&o[0].type==="ordgroup"?i=o[0]:i={type:"ordgroup",mode:this.mode,body:o},h.length===1&&h[0].type==="ordgroup"?s=h[0]:s={type:"ordgroup",mode:this.mode,body:h};var f;return r==="\\\\abovefrac"?f=this.callFunction(r,[i,t[u],s],[]):f=this.callFunction(r,[i,s],[]),[f]}else return t}handleSupSubscript(t){var u=this.fetch(),r=u.text;this.consume(),this.consumeSpaces();var n;do{var a;n=this.parseGroup(t)}while(((a=n)==null?void 0:a.type)==="internal");if(!n)throw new z("Expected group after '"+r+"'",u);return n}formatUnsupportedCmd(t){for(var u=[],r=0;r<t.length;r++)u.push({type:"textord",mode:"text",text:t[r]});var n={type:"text",mode:this.mode,body:u},a={type:"color",mode:this.mode,color:this.settings.errorColor,body:[n]};return a}parseAtom(t){var u=this.parseGroup("atom",t);if((u==null?void 0:u.type)==="internal"||this.mode==="text")return u;for(var r,n;;){this.consumeSpaces();var a=this.fetch();if(a.text==="\\limits"||a.text==="\\nolimits"){if(u&&u.type==="op")u.limits=a.text==="\\limits",u.alwaysHandleSupSub=!0;else if(u&&u.type==="operatorname")u.alwaysHandleSupSub&&(u.limits=a.text==="\\limits");else throw new z("Limit controls must follow a math operator",a);this.consume()}else if(a.text==="^"){if(r)throw new z("Double superscript",a);r=this.handleSupSubscript("superscript")}else if(a.text==="_"){if(n)throw new z("Double subscript",a);n=this.handleSupSubscript("subscript")}else if(a.text==="'"){if(r)throw new z("Double superscript",a);var i={type:"textord",mode:this.mode,text:"\\prime"},s=[i];for(this.consume();this.fetch().text==="'";)s.push(i),this.consume();this.fetch().text==="^"&&s.push(this.handleSupSubscript("superscript")),r={type:"ordgroup",mode:this.mode,body:s}}else if(ht[a.text]){var o=h1.test(a.text),h=[];for(h.push(new _0(ht[a.text])),this.consume();;){var f=this.fetch().text;if(!ht[f]||h1.test(f)!==o)break;h.unshift(new _0(ht[f])),this.consume()}var p=this.subparse(h);o?n={type:"ordgroup",mode:"math",body:p}:r={type:"ordgroup",mode:"math",body:p}}else break}return r&&n?{type:"supsub",mode:this.mode,base:u,sup:r,sub:n}:r?{type:"supsub",mode:this.mode,base:u,sup:r}:n?{type:"supsub",mode:this.mode,base:u,sub:n}:u}parseFunction(t,u){var r=this.fetch(),n=r.text,a=oe[n];if(!a)return null;if(this.consume(),u&&u!=="atom"&&!a.allowedInArgument)throw new z("Got function '"+n+"' with no arguments"+(u?" as "+u:""),r);if(this.mode==="text"&&!a.allowedInText)throw new z("Can't use function '"+n+"' in text mode",r);if(this.mode==="math"&&a.allowedInMath===!1)throw new z("Can't use function '"+n+"' in math mode",r);var{args:i,optArgs:s}=this.parseArguments(n,a);return this.callFunction(n,i,s,r,t)}callFunction(t,u,r,n,a){var i={funcName:t,parser:this,token:n,breakOnTokenText:a},s=oe[t];if(s&&s.handler)return s.handler(i,u,r);throw new z("No function handler for "+t)}parseArguments(t,u){var r,n=(r=u.numOptionalArgs)!=null?r:0,a=u.numArgs+n;if(a===0)return{args:[],optArgs:[]};for(var i=[],s=[],o=0;o<a;o++){var h,f=(h=u.argTypes)==null?void 0:h[o],p=o<n;("primitive"in u&&u.primitive&&f==null||u.type==="sqrt"&&o===1&&s[0]==null)&&(f="primitive");var x=this.parseGroupOfType("argument to '"+t+"'",f,p);if(p)s.push(x);else if(x!=null)i.push(x);else throw new z("Null argument, please report this as a bug")}return{args:i,optArgs:s}}parseGroupOfType(t,u,r){switch(u){case"color":return this.parseColorGroup(r);case"size":return this.parseSizeGroup(r);case"url":return this.parseUrlGroup(r);case"math":case"text":return this.parseArgumentGroup(r,u);case"hbox":{var n=this.parseArgumentGroup(r,"text");return n!=null?{type:"styling",mode:n.mode,body:[n],style:"text",resetFont:!0}:null}case"raw":{var a=this.parseStringGroup(r);return a!=null?{type:"raw",mode:"text",string:a.text}:null}case"primitive":{if(r)throw new z("A primitive argument cannot be optional");var i=this.parseGroup(t);if(i==null)throw new z("Expected group as "+t,this.fetch());return i}case"original":case void 0:return this.parseArgumentGroup(r);default:throw new z("Unknown group type as "+t,this.fetch())}}consumeSpaces(){for(;this.fetch().text===" ";)this.consume()}parseStringGroup(t){var u=this.gullet.scanArgument(t);if(u==null)return null;for(var r="",n;(n=this.fetch()).text!=="EOF";)r+=n.text,this.consume();return this.consume(),u.text=r,u}parseRegexGroup(t,u){for(var r=this.fetch(),n=r,a="",i;(i=this.fetch()).text!=="EOF"&&t.test(a+i.text);)n=i,a+=n.text,this.consume();if(a==="")throw new z("Invalid "+u+": '"+r.text+"'",r);return r.range(n,a)}parseColorGroup(t){var u=this.parseStringGroup(t);if(u==null)return null;var r=/^(#[a-f0-9]{3,4}|#[a-f0-9]{6}|#[a-f0-9]{8}|[a-f0-9]{6}|[a-z]+)$/i.exec(u.text);if(!r)throw new z("Invalid color: '"+u.text+"'",u);var n=r[0];return/^[0-9a-f]{6}$/i.test(n)&&(n="#"+n),{type:"color-token",mode:this.mode,color:n}}parseSizeGroup(t){var u,r=!1;if(this.gullet.consumeSpaces(),!t&&this.gullet.future().text!=="{"?u=this.parseRegexGroup(/^[-+]? *(?:$|\d+|\d+\.\d*|\.\d*) *[a-z]{0,2} *$/,"size"):u=this.parseStringGroup(t),!u)return null;!t&&u.text.length===0&&(u.text="0pt",r=!0);var n=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(u.text);if(!n)throw new z("Invalid size: '"+u.text+"'",u);var a={number:+(n[1]+n[2]),unit:n[3]};if(!K1(a))throw new z("Invalid unit: '"+a.unit+"'",u);return{type:"size",mode:this.mode,value:a,isBlank:r}}parseUrlGroup(t){this.gullet.lexer.setCatcode("%",13),this.gullet.lexer.setCatcode("~",12);var u=this.parseStringGroup(t);if(this.gullet.lexer.setCatcode("%",14),this.gullet.lexer.setCatcode("~",13),u==null)return null;var r=u.text.replace(/\\([#$%&~_^{}])/g,"$1");return{type:"url",mode:this.mode,url:r}}parseArgumentGroup(t,u){var r=this.gullet.scanArgument(t);if(r==null)return null;var n=this.mode;u&&this.switchMode(u),this.gullet.beginGroup();var a=this.parseExpression(!1,"EOF");this.expect("EOF"),this.gullet.endGroup();var i={type:"ordgroup",mode:this.mode,loc:r.loc,body:a};return u&&this.switchMode(n),i}parseGroup(t,u){var r=this.fetch(),n=r.text,a;if(n==="{"||n==="\\begingroup"){this.consume();var i=n==="{"?"}":"\\endgroup";this.gullet.beginGroup();var s=this.parseExpression(!1,i),o=this.fetch();this.expect(i),this.gullet.endGroup(),a={type:"ordgroup",mode:this.mode,loc:C0.range(r,o),body:s,semisimple:n==="\\begingroup"||void 0}}else if(a=this.parseFunction(u,t)||this.parseSymbol(),a==null&&n[0]==="\\"&&!Ln.hasOwnProperty(n)){if(this.settings.throwOnError)throw new z("Undefined control sequence: "+n,r);a=this.formatUnsupportedCmd(n),this.consume()}return a}formLigatures(t){for(var u=t.length-1,r=0;r<u;++r){var n=t[r];if(n.type==="textord"){var a=n.text,i=t[r+1];if(!(!i||i.type!=="textord")){if(a==="-"&&i.text==="-"){var s=t[r+2];r+1<u&&s&&s.type==="textord"&&s.text==="-"?(t.splice(r,3,{type:"textord",mode:"text",loc:C0.range(n,s),text:"---"}),u-=2):(t.splice(r,2,{type:"textord",mode:"text",loc:C0.range(n,i),text:"--"}),u-=1)}(a==="'"||a==="`")&&i.text===a&&(t.splice(r,2,{type:"textord",mode:"text",loc:C0.range(n,i),text:a+a}),u-=1)}}}}parseSymbol(){var t=this.fetch(),u=t.text;if(/^\\verb[^a-zA-Z]/.test(u)){this.consume();var r=u.slice(5),n=r.charAt(0)==="*";if(n&&(r=r.slice(1)),r.length<2||r.charAt(0)!==r.slice(-1))throw new z(`\\verb assertion failed --
272
- please report what input caused this bug`);return r=r.slice(1,-1),{type:"verb",mode:"text",body:r,star:n}}d1.hasOwnProperty(u[0])&&!n0[this.mode][u[0]]&&(this.settings.strict&&this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Accented Unicode text character "'+u[0]+'" used in math mode',t),u=d1[u[0]]+u.slice(1));var a=Uo.exec(u);a&&(u=u.substring(0,a.index),u==="i"?u="ı":u==="j"&&(u="ȷ"));var i;if(n0[this.mode][u]){this.settings.strict&&this.mode==="math"&&vu.includes(u)&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+u[0]+'" used in math mode',t);var s=n0[this.mode][u].group,o=C0.range(t),h;eo(s)?h={type:"atom",mode:this.mode,family:s,loc:o,text:u}:h={type:s,mode:this.mode,loc:o,text:u},i=h}else if(u.charCodeAt(0)>=128)this.settings.strict&&(Y1(u.charCodeAt(0))?this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+u[0]+'" used in math mode',t):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+u[0]+'"'+(" ("+u.charCodeAt(0)+")"),t)),i={type:"textord",mode:"text",loc:C0.range(t),text:u};else return null;if(this.consume(),a)for(var f=0;f<a[0].length;f++){var p=a[0][f];if(!lu[p])throw new z("Unknown accent ' "+p+"'",t);var x=lu[p][this.mode]||lu[p].text;if(!x)throw new z("Accent "+p+" unsupported in "+this.mode+" mode",t);i={type:"accent",mode:this.mode,loc:C0.range(t),label:x,isStretchy:!1,isShifty:!0,base:i}}return i}}Nt.endOfExpression=new Set(["}","\\endgroup","\\end","\\right","&"]);var Qu=function(t,u){if(!(typeof t=="string"||t instanceof String))throw new TypeError("KaTeX can only parse string typed expression");var r=new Nt(t,u);delete r.gullet.macros.current["\\df@tag"];var n=r.parse();if(delete r.gullet.macros.current["\\current@color"],delete r.gullet.macros.current["\\color"],r.gullet.macros.get("\\df@tag")){if(!u.displayMode)throw new z("\\tag works only in display equations");n=[{type:"tag",mode:"text",body:n,tag:r.subparse([new _0("\\df@tag")])}]}return n},Pn=function(t,u,r){u.textContent="";var n=er(t,r).toNode();u.appendChild(n)};typeof document<"u"&&document.compatMode!=="CSS1Compat"&&(typeof console<"u"&&console.warn("Warning: KaTeX doesn't work in quirks mode. Make sure your website has a suitable doctype."),Pn=function(){throw new z("KaTeX doesn't work in quirks mode.")});var Yo=function(t,u){var r=er(t,u).toMarkup();return r},Ko=function(t,u){var r=new Pu(u);return Qu(t,r)},Hn=function(t,u,r){if(r.throwOnError||!(t instanceof z))throw t;var n=E(["katex-error"],[new F0(u)]);return n.setAttribute("title",t.toString()),n.setAttribute("style","color:"+r.errorColor),n},er=function(t,u){var r=new Pu(u);try{var n=Qu(t,r);return Vl(n,t,r)}catch(a){return Hn(a,t,r)}},Jo=function(t,u){var r=new Pu(u);try{var n=Qu(t,r);return Wl(n,t,r)}catch(a){return Hn(a,t,r)}},Qo="0.17.0",e2={Span:Be,Anchor:Et,SymbolNode:F0,SvgNode:J0,PathNode:de,LineNode:bu},t2={version:Qo,render:Pn,renderToString:Yo,ParseError:z,SETTINGS_SCHEMA:fu,__parse:Ko,__renderToDomTree:er,__renderToHTMLTree:Jo,__setFontMetrics:El,__defineSymbol:l,__defineFunction:R,__defineMacro:m,__domTree:e2};const u2=Object.freeze({throwOnError:!1,strict:"ignore"}),pt=(e,t)=>{let u=0;for(let r=t-1;r>=0&&e[r]==="\\";r-=1)u+=1;return u%2===1},r2=(e,t,u)=>{for(let r=t;r<e.length;r+=1){if(e[r]===`
273
- `||e[r]==="`")return-1;if(!(!e.startsWith(u,r)||pt(e,r))&&!(u==="$"&&(e[r+1]==="$"||/\d/.test(e[r+1]||""))))return r}return-1},f1=(e,t,u)=>{try{const r=t2.renderToString(e,{...u2,displayMode:t}),n=u(e);return t?`<div class="katex-block" data-math-source="${n}">${r}</div>`:`<span data-math-source="${n}">${r}</span>`}catch(r){return console.error("[rich-text] math render failed; showing source text",r),`<span class="katex-error">${u(e)}</span>`}},n2=e=>{e.inline.ruler.before("escape","rich_math_inline",(t,u)=>{const r=t.pos;let n=null,a=null;if(t.src[r]==="$"&&t.src[r+1]!=="$"&&t.src[r-1]!=="$"&&!pt(t.src,r)?(n="$",a="$"):t.src.startsWith("\\(",r)&&!pt(t.src,r)&&(n="\\(",a="\\)"),!n||/\s/.test(t.src[r+n.length]||""))return!1;const i=r2(t.src,r+n.length,a);if(i<0||/\s/.test(t.src[i-1]||""))return!1;if(!u){const s=t.push("rich_math_inline","math",0);s.content=t.src.slice(r+n.length,i),s.markup=n}return t.pos=i+a.length,!0}),e.block.ruler.after("blockquote","rich_math_block",(t,u,r,n)=>{if(t.sCount[u]-t.blkIndent>=4)return!1;const a=t.bMarks[u]+t.tShift[u],i=t.eMarks[u],s=t.src.startsWith("$$",a)?"$$":t.src.startsWith("\\[",a)?"\\[":null;if(!s)return!1;const o=s==="$$"?"$$":"\\]",h=[t.src.slice(a+s.length,i)];let f=-1;for(let b=u;b<r;b+=1){const y=b===u?h[0]:t.src.slice(t.bMarks[b]+t.tShift[b],t.eMarks[b]),k=y.lastIndexOf(o);if(k>=0&&!pt(y,k)&&y.slice(k+o.length).trim()===""){b===u?h[0]=y.slice(0,k):h.push(y.slice(0,k)),f=b;break}b!==u&&h.push(y)}const p=h.join(`
274
- `).trim();if(f<0||!p)return!1;if(n)return!0;const x=t.push("rich_math_block","math",0);return x.block=!0,x.content=p,x.map=[u,f+1],x.markup=s,t.line=f+1,!0},{alt:["paragraph","reference","blockquote","list"]}),e.renderer.rules.rich_math_inline=(t,u)=>f1(t[u].content,!1,e.utils.escapeHtml),e.renderer.rules.rich_math_block=(t,u)=>`${f1(t[u].content,!0,e.utils.escapeHtml)}
275
- `},m1=new q0({breaks:!0,linkify:!0}).use(n2),p1=e=>{const t=document.createRange();return t.selectNode(e),t};function a2(e,t){if(!e||e.collapsed||!t)return"";const u=[...t.querySelectorAll("[data-math-source]")].filter(o=>e.intersectsNode(o));if(!u.length)return e.toString();const r=[];let n=e.startContainer,a=e.startOffset;for(const[o,h]of u.entries()){const f=p1(h),p=e.compareBoundaryPoints(Range.START_TO_START,f)<=0;if(o>0||p){const b=document.createRange();b.setStart(n,a),b.setEndBefore(h),r.push(b.toString())}r.push(h.getAttribute("data-math-source")||"");const x=document.createRange();x.setStartAfter(h),x.collapse(!0),n=x.startContainer,a=x.startOffset}const i=p1(u[u.length-1]);if(e.compareBoundaryPoints(Range.END_TO_END,i)>=0){const o=document.createRange();o.setStart(n,a),o.setEnd(e.endContainer,e.endOffset),r.push(o.toString())}return r.join("")}function i2(e){const t=e==null?"":String(e);try{return m1.render(t)}catch(u){return console.error("[rich-text] render failed; showing source text",u),`<p>${m1.utils.escapeHtml(t).replace(/\n/g,`<br>
276
- `)}</p>`}}function ou({children:e,className:t=""}){const u=Y.useMemo(()=>i2(e),[e]);return Y.createElement("div",{className:`rich-text${t?` ${t}`:""}`,dangerouslySetInnerHTML:{__html:u}})}const cu=e=>new Date(e).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"}),b1=e=>new Date(e).toLocaleDateString([],{month:"short",day:"numeric"}),v1=e=>new Date(e).toDateString(),s2=(e,t)=>e!=null&&e.length===t.length&&(e.length===0||JSON.stringify(e[e.length-1])===JSON.stringify(t[t.length-1])),l2='button, summary, a, input, textarea, select, option, label, [role], [contenteditable]:not([contenteditable="false"])',o2=new Set(["Backspace","Delete","Enter","ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"]),O0=Object.freeze({NORMAL:0,WORD:1,LINE:2}),tr=()=>typeof Highlight<"u"&&typeof CSS<"u"&&!!CSS.highlights,c2=()=>{tr()&&CSS.highlights.delete("timeline-sel")},g1=e=>!tr()||!e||e.collapsed?!1:(CSS.highlights.set("timeline-sel",new Highlight(e)),!0),h2=e=>{let t=!1;const u=n=>{if(n.clipboardData)try{n.clipboardData.setData("text/plain",e),n.preventDefault(),t=!0}catch{}};document.addEventListener("copy",u,!0);let r=!1;try{r=document.execCommand("copy")===!0}catch{}return document.removeEventListener("copy",u,!0),t&&r},d2=async e=>{var t;try{if(typeof((t=navigator.clipboard)==null?void 0:t.writeText)=="function")return await navigator.clipboard.writeText(e),!0}catch{}return h2(e)},wt=(e,t,u)=>{var n;const r=(n=document.caretRangeFromPoint)==null?void 0:n.call(document,t,u);return r&&e.contains(r.startContainer)?r:null},x1=(e,t,u)=>{const r=wt(e,t,u),n=r==null?void 0:r.startContainer;if(!n||n.nodeType!==Node.TEXT_NODE||!n.data)return null;const a=Math.min(r.startOffset,n.data.length);let i=null;if(typeof Intl.Segmenter=="function"){const o=[...new Intl.Segmenter(void 0,{granularity:"word"}).segment(n.data)];i=o.find(({index:h,segment:f,isWordLike:p})=>p&&h<=a&&a<h+f.length)||o.findLast(({index:h,segment:f,isWordLike:p})=>p&&h<a&&a<=h+f.length),i&&(i=[i.index,i.index+i.segment.length])}if(!i){const o=p=>/[\p{L}\p{M}\p{N}_]/u.test(p);let h=Math.min(a,n.data.length-1);if(!o(n.data[h])&&h>0&&o(n.data[h-1])&&(h-=1),!o(n.data[h]))return null;let f=h+1;for(;h>0&&o(n.data[h-1]);)h-=1;for(;f<n.data.length&&o(n.data[f]);)f+=1;i=[h,f]}const s=document.createRange();return s.setStart(n,i[0]),s.setEnd(n,i[1]),s},y1=(e,t,u)=>{const r=wt(e,t,u),n=r==null?void 0:r.startContainer,a=(n==null?void 0:n.nodeType)===Node.ELEMENT_NODE?n:n==null?void 0:n.parentElement,i=a==null?void 0:a.closest(".m-ev-note, .m-ev-text");if(!i||!e.contains(i))return null;const s=document.createRange();return s.selectNodeContents(i),s},f2=(e,t,u)=>{const r=e.compareBoundaryPoints(Range.START_TO_START,t)<=0,n=r?e:t,a=r?t:e,i=document.createRange();return i.setStart(n.startContainer,n.startOffset),u===O0.NORMAL?i.setEnd(a.startContainer,a.startOffset):i.setEnd(a.endContainer,a.endOffset),i};function x2({s:e,sessions:t=[],active:u=!0}){const r=Xn(),n=Yn(),[a,i]=Y.useState(null),[s,o]=Y.useState(null),[h,f]=Y.useState(""),[p,x]=Y.useState(!1),[b,y]=Y.useState(null),[k,A]=Y.useState(null),S=Y.useRef(null),C=Y.useRef(null),_=Y.useRef(null),T=Y.useRef(null),B=Y.useRef(null),q=Y.useRef(!0),O=Y.useCallback(()=>ra(e.id).then(N=>{N&&i(L=>s2(L,N.events)?L:N.events)}),[e.id]);Y.useEffect(()=>{u&&(i(null),o(null),A(null),q.current=!0,O(),na(e.id).then(N=>{N&&o(N)}))},[e.id,O,u]),Y.useEffect(()=>{if(!u||n||document.visibilityState==="hidden")return;const N=requestAnimationFrame(()=>{const L=C.current;u&&!n&&document.visibilityState!=="hidden"&&(L==null?void 0:L.offsetParent)!==null&&getComputedStyle(L).visibility!=="hidden"&&document.activeElement!==L&&L.focus()});return()=>cancelAnimationFrame(N)},[e.id,u,n]),Y.useEffect(()=>{if(!u)return;const N=setInterval(O,8e3);return()=>clearInterval(N)},[O,u]),Y.useEffect(()=>{u&&O()},[e.status,e.note,O,u]);const U=()=>{const N=S.current;N&&(q.current=N.scrollHeight-N.scrollTop-N.clientHeight<48)};Y.useEffect(()=>{const N=S.current;N&&q.current&&(N.scrollTop=N.scrollHeight)},[a]);const $=()=>{T.current=null,c2(),A(null)},u0=Y.useCallback(async N=>{clearTimeout(B.current),A(null);const L=await d2(N);return A(L?"copied":"failed"),L&&(B.current=setTimeout(()=>A(null),1200)),L},[]);Y.useEffect(()=>()=>clearTimeout(B.current),[]);const f0=N=>{const L=S.current,l0=N.target;if(N.button!==0||!L||!(l0 instanceof Element))return;$();const V=l0.closest(l2);if(V&&L.contains(V))return;if(l0===L){const D0=L.getBoundingClientRect();if(N.clientX-D0.left-L.clientLeft>=L.clientWidth||N.clientY-D0.top-L.clientTop>=L.clientHeight)return}const t0=N.detail===1?O0.NORMAL:N.detail===2?O0.WORD:N.detail===3?O0.LINE:null;if(t0===null)return;const K=t0===O0.WORD?x1(L,N.clientX,N.clientY):t0===O0.LINE?y1(L,N.clientX,N.clientY):wt(L,N.clientX,N.clientY);K&&(N.preventDefault(),_.current={mode:t0,anchor:K.cloneRange(),x:N.clientX,y:N.clientY},t0!==O0.NORMAL&&(T.current=K,g1(K)))};Y.useEffect(()=>{if(!u)return;const N=V=>{const t0=_.current,K=S.current;if(!t0||!K||(V.preventDefault(),t0.mode===O0.NORMAL&&Math.hypot(V.clientX-t0.x,V.clientY-t0.y)<3))return;const D0=t0.mode===O0.WORD?x1(K,V.clientX,V.clientY):t0.mode===O0.LINE?y1(K,V.clientX,V.clientY):wt(K,V.clientX,V.clientY);if(!D0||!t0.anchor.startContainer.isConnected)return;const re=f2(t0.anchor,D0,t0.mode);T.current=re,g1(re)},L=()=>{_.current=null},l0=V=>{const t0=T.current,K=C.current;if(!t0||t0.collapsed||!K)return;const D0=V.ctrlKey||V.metaKey,re=V.key.toLowerCase();if(V.key==="Escape"){$();return}if(D0&&re==="c"){if(document.activeElement!==K||K.selectionStart!==K.selectionEnd)return;V.preventDefault(),V.stopPropagation(),u0(a2(t0,S.current));return}if(document.activeElement!==K)return;const Ot=V.key.length===1&&!D0&&!V.altKey,ne=D0&&!V.altKey&&["a","v","x","y","z"].includes(re),Ye=V.isComposing||V.key==="Process"||V.key==="Dead";(Ot||ne||Ye||o2.has(V.key))&&$()};return document.addEventListener("mousemove",N,!0),document.addEventListener("mouseup",L,!0),document.addEventListener("keydown",l0,!0),()=>{_.current=null,$(),document.removeEventListener("mousemove",N,!0),document.removeEventListener("mouseup",L,!0),document.removeEventListener("keydown",l0,!0)}},[u,u0]);const e0=()=>$(),N0=async()=>{const N=h.trim();if(!N||p)return;x(!0),y(null);const L=await aa(e.id,N,{replyVia:"note"});x(!1),L.ok?(f(""),O()):y(L.error||r("mobile.sendFailed"))},x0=N=>{if(!N)return r("mobile.you");const L=t.find(l0=>l0.id===N);return L?ua(L):N.slice(0,8)},r0=[];let E0=null;for(const[N,L]of(a||[]).entries())if(v1(L.ts)!==E0&&(E0=v1(L.ts),r0.push(X.jsx("div",{className:"m-day",children:b1(L.ts)},`d${N}`))),L.kind==="status"){const l0=L.display||L.status;r0.push(X.jsxs("div",{className:"m-ev",children:[X.jsxs("div",{className:"m-ev-head",children:[X.jsx("span",{className:"m-ev-glyph",style:{color:or[l0]},children:Qn[l0]||"·"}),X.jsx("span",{className:"m-ev-word",style:{color:or[l0]},children:r(`status.${l0}`)}),X.jsx("span",{className:"m-ev-time",children:cu(L.ts)})]}),L.note&&X.jsxs("div",{className:"m-ev-note",children:[X.jsx(ou,{children:L.note}),!tr()&&X.jsx("button",{type:"button",className:"m-copy-note",onClick:()=>u0(L.note),children:r("mobile.copy")})]})]},N))}else r0.push(X.jsxs("div",{className:"m-ev m-ev-sent",children:[X.jsxs("div",{className:"m-ev-head",children:[X.jsx("span",{className:"m-ev-from",children:x0(L.from)}),X.jsx("span",{className:"m-ev-time",children:cu(L.ts)})]}),X.jsx("div",{className:"m-ev-text",children:X.jsx(ou,{children:L.text})})]},N));const ue=e.liveness==="offline"||e.status==="offline";return X.jsxs("div",{className:"tl-chat",children:[X.jsxs("div",{className:"m-timeline",ref:S,onScroll:U,onMouseDownCapture:Kn,onMouseDown:f0,children:[(s==null?void 0:s.prompt)&&X.jsxs("details",{className:"m-ev m-ev-prompt",children:[X.jsxs("summary",{children:[r("mobile.asked"),e.created?` · ${b1(e.created)} ${cu(e.created)}`:""]}),X.jsx("div",{className:"m-ev-text",children:X.jsx(ou,{children:s.prompt})})]}),a===null?X.jsx("div",{className:"m-empty",children:r("common.loading")}):r0.length===0?X.jsx("div",{className:"m-empty",children:r("mobile.noEvents")}):r0]}),k&&X.jsx("div",{className:`m-copy-status ${k}`,role:"status","aria-live":"polite","aria-atomic":"true",children:r(`mobile.${k==="copied"?"copied":"copyFailed"}`)}),ue&&X.jsx("div",{className:"m-offline",children:r("mobile.offlineHint")}),b&&X.jsx("div",{className:"m-senderr",children:b}),X.jsx("div",{className:"m-composer",children:X.jsxs("div",{className:"m-composer-line",children:[X.jsx(ea,{ref:C,className:"m-input","data-focus-sink":u?"":void 0,rows:1,placeholder:r("mobile.inputPlaceholder"),value:h,onMouseDownCapture:e0,onChange:N=>f(N.target.value),onKeyDown:N=>{N.key==="Enter"&&!N.shiftKey&&!ta(N)&&(N.preventDefault(),N.stopPropagation(),N0())}}),X.jsx("button",{className:"m-send",disabled:!h.trim()||p,onClick:N0,children:r("mobile.send")})]})})]})}async function y2(e,t){var u,r;try{const n=((r=(u=globalThis.crypto)==null?void 0:u.randomUUID)==null?void 0:r.call(u))||`session-create-${Date.now()}-${Math.random().toString(16).slice(2)}`,a=await fetch(Jn("/api/sessions"),{method:"POST",headers:{"Content-Type":"application/json","Idempotency-Key":n},body:JSON.stringify({prompt:e,...t?{launcher:t}:{}})}),i=await a.json().catch(()=>null);return{ok:a.ok,error:i==null?void 0:i.error}}catch{return{ok:!1}}}let ye=null,dt=null;const m2=()=>ye?Promise.resolve(ye):(dt||(dt=sa().then(e=>(ye=e,e)).catch(e=>{throw dt=null,e})),dt),w1=e=>Array.isArray(e==null?void 0:e.launchers)?e.launchers:[],p2=()=>{try{return localStorage.getItem("si.launcher")||""}catch{return""}},k1=(e,t,u=p2())=>{var r;return e.some(n=>n.name===u)?u:t&&e.some(n=>n.name===t)?t:((r=e[0])==null?void 0:r.name)||u};function w2(){const e=w1(ye),[t,u]=Y.useState(e),[r,n]=Y.useState(()=>k1(e,ye==null?void 0:ye.default)),a=i=>{n(i);try{localStorage.setItem("si.launcher",i)}catch{}};return Y.useEffect(()=>{m2().then(i=>{const s=w1(i);s.length&&(u(s),n(o=>k1(s,i.default,o)))}).catch(()=>{})},[]),{launchers:t,launcher:r,pickLauncher:a}}function k2(){const[e,t]=Y.useState([]);return Y.useEffect(()=>{ia().then(u=>{Array.isArray(u)&&t(u)}).catch(()=>{})},[]),e}export{x2 as T,k2 as a,y2 as c,w2 as u};
270
+ ?)[ \r ]*`,Bu="[̀-ͯ]",Wo=new RegExp(Bu+"+$"),Zo="("+On+"+)|"+(Vo+"|")+"([!-\\[\\]-‧‪-퟿豈-￿]"+(Bu+"*")+"|[\uD800-\uDBFF][\uDC00-\uDFFF]"+(Bu+"*")+"|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5"+("|"+Go)+("|"+Uo+")");class o1{constructor(t,u){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=t,this.settings=u,this.tokenRegex=new RegExp(Zo,"g"),this.catcodes={"%":14,"~":13}}setCatcode(t,u){this.catcodes[t]=u}lex(){var t=this.input,u=this.tokenRegex.lastIndex;if(u===t.length)return new S0("EOF",new C0(this,u,u));var r=this.tokenRegex.exec(t);if(r===null||r.index!==u)throw new z("Unexpected character: '"+t[u]+"'",new S0(t[u],new C0(this,u,u+1)));var n=r[6]||r[3]||(r[2]?"\\ ":" ");if(this.catcodes[n]===14){var a=t.indexOf(`
271
+ `,this.tokenRegex.lastIndex);return a===-1?(this.tokenRegex.lastIndex=t.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=a+1,this.lex()}return new S0(n,new C0(this,u,this.tokenRegex.lastIndex))}}class Xo{constructor(t,u){t===void 0&&(t={}),u===void 0&&(u={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=u,this.builtins=t,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(this.undefStack.length===0)throw new z("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");var t=this.undefStack.pop();for(var u in t)t.hasOwnProperty(u)&&(t[u]==null?delete this.current[u]:this.current[u]=t[u])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(t){return this.current.hasOwnProperty(t)||this.builtins.hasOwnProperty(t)}get(t){return this.current.hasOwnProperty(t)?this.current[t]:this.builtins[t]}set(t,u,r){if(r===void 0&&(r=!1),r){for(var n=0;n<this.undefStack.length;n++)delete this.undefStack[n][t];this.undefStack.length>0&&(this.undefStack[this.undefStack.length-1][t]=u)}else{var a=this.undefStack[this.undefStack.length-1];a&&!a.hasOwnProperty(t)&&(a[t]=this.current[t])}u==null?delete this.current[t]:this.current[t]=u}}var Yo=_n;m("\\noexpand",function(e){var t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}});m("\\expandafter",function(e){var t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}});m("\\@firstoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[0],numArgs:0}});m("\\@secondoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[1],numArgs:0}});m("\\@ifnextchar",function(e){var t=e.consumeArgs(3);e.consumeSpaces();var u=e.future();return t[0].length===1&&t[0][0].text===u.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}});m("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}");m("\\TextOrMath",function(e){var t=e.consumeArgs(2);return e.mode==="text"?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}});var c1={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};m("\\char",function(e){var t=e.popToken(),u,r=0;if(t.text==="'")u=8,t=e.popToken();else if(t.text==='"')u=16,t=e.popToken();else if(t.text==="`")if(t=e.popToken(),t.text[0]==="\\")r=t.text.charCodeAt(1);else{if(t.text==="EOF")throw new z("\\char` missing argument");r=t.text.charCodeAt(0)}else u=10;if(u){if(r=c1[t.text],r==null||r>=u)throw new z("Invalid base-"+u+" digit "+t.text);for(var n;(n=c1[e.future().text])!=null&&n<u;)r*=u,r+=n,e.popToken()}return"\\@char{"+r+"}"});var Qu=(e,t,u,r)=>{var n=e.consumeArg().tokens;if(n.length!==1)throw new z("\\newcommand's first argument must be a macro name");var a=n[0].text,i=e.isDefined(a);if(i&&!t)throw new z("\\newcommand{"+a+"} attempting to redefine "+(a+"; use \\renewcommand"));if(!i&&!u)throw new z("\\renewcommand{"+a+"} when command "+a+" does not yet exist; use \\newcommand");var s=0;if(n=e.consumeArg().tokens,n.length===1&&n[0].text==="["){for(var o="",h=e.expandNextToken();h.text!=="]"&&h.text!=="EOF";)o+=h.text,h=e.expandNextToken();if(!o.match(/^\s*[0-9]+\s*$/))throw new z("Invalid number of arguments: "+o);s=parseInt(o),n=e.consumeArg().tokens}return i&&r||e.macros.set(a,{tokens:n,numArgs:s}),""};m("\\newcommand",e=>Qu(e,!1,!0,!1));m("\\renewcommand",e=>Qu(e,!0,!1,!1));m("\\providecommand",e=>Qu(e,!0,!0,!0));m("\\message",e=>{var t=e.consumeArgs(1)[0];return console.log(t.reverse().map(u=>u.text).join("")),""});m("\\errmessage",e=>{var t=e.consumeArgs(1)[0];return console.error(t.reverse().map(u=>u.text).join("")),""});m("\\show",e=>{var t=e.popToken(),u=t.text;return console.log(t,e.macros.get(u),ce[u],t0.math[u],t0.text[u]),""});m("\\bgroup","{");m("\\egroup","}");m("~","\\nobreakspace");m("\\lq","`");m("\\rq","'");m("\\aa","\\r a");m("\\AA","\\r A");m("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`©}");m("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}");m("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`®}");m("ℬ","\\mathscr{B}");m("ℰ","\\mathscr{E}");m("ℱ","\\mathscr{F}");m("ℋ","\\mathscr{H}");m("ℐ","\\mathscr{I}");m("ℒ","\\mathscr{L}");m("ℳ","\\mathscr{M}");m("ℛ","\\mathscr{R}");m("ℭ","\\mathfrak{C}");m("ℌ","\\mathfrak{H}");m("ℨ","\\mathfrak{Z}");m("\\Bbbk","\\Bbb{k}");m("\\llap","\\mathllap{\\textrm{#1}}");m("\\rlap","\\mathrlap{\\textrm{#1}}");m("\\clap","\\mathclap{\\textrm{#1}}");m("\\mathstrut","\\vphantom{(}");m("\\underbar","\\underline{\\text{#1}}");m("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}\\nobreak}{\\char"338}');m("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`≠}}");m("\\ne","\\neq");m("≠","\\neq");m("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`∉}}");m("∉","\\notin");m("≘","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`≘}}");m("≙","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`≘}}");m("≚","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`≚}}");m("≛","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`≛}}");m("≝","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`≝}}");m("≞","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`≞}}");m("≟","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`≟}}");m("⟂","\\perp");m("‼","\\mathclose{!\\mkern-0.8mu!}");m("∌","\\notni");m("⌜","\\ulcorner");m("⌝","\\urcorner");m("⌞","\\llcorner");m("⌟","\\lrcorner");m("©","\\copyright");m("®","\\textregistered");m("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}');m("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}');m("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}');m("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}');m("\\vdots","{\\varvdots\\rule{0pt}{15pt}}");m("⋮","\\vdots");m("\\varGamma","\\mathit{\\Gamma}");m("\\varDelta","\\mathit{\\Delta}");m("\\varTheta","\\mathit{\\Theta}");m("\\varLambda","\\mathit{\\Lambda}");m("\\varXi","\\mathit{\\Xi}");m("\\varPi","\\mathit{\\Pi}");m("\\varSigma","\\mathit{\\Sigma}");m("\\varUpsilon","\\mathit{\\Upsilon}");m("\\varPhi","\\mathit{\\Phi}");m("\\varPsi","\\mathit{\\Psi}");m("\\varOmega","\\mathit{\\Omega}");m("\\substack","\\begin{subarray}{c}#1\\end{subarray}");m("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax");m("\\boxed","\\fbox{$\\displaystyle{#1}$}");m("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;");m("\\implies","\\DOTSB\\;\\Longrightarrow\\;");m("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");m("\\dddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ...}}{#1}}");m("\\ddddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ....}}{#1}}");var h1={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"},Ko=new Set(["bin","rel"]);m("\\dots",function(e){var t="\\dotso",u=e.expandAfterFuture().text;return u in h1?t=h1[u]:(u.slice(0,4)==="\\not"||u in t0.math&&Ko.has(t0.math[u].group))&&(t="\\dotsb"),t});var er={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};m("\\dotso",function(e){var t=e.future().text;return t in er?"\\ldots\\,":"\\ldots"});m("\\dotsc",function(e){var t=e.future().text;return t in er&&t!==","?"\\ldots\\,":"\\ldots"});m("\\cdots",function(e){var t=e.future().text;return t in er?"\\@cdots\\,":"\\@cdots"});m("\\dotsb","\\cdots");m("\\dotsm","\\cdots");m("\\dotsi","\\!\\cdots");m("\\dotsx","\\ldots\\,");m("\\DOTSI","\\relax");m("\\DOTSB","\\relax");m("\\DOTSX","\\relax");m("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax");m("\\,","\\tmspace+{3mu}{.1667em}");m("\\thinspace","\\,");m("\\>","\\mskip{4mu}");m("\\:","\\tmspace+{4mu}{.2222em}");m("\\medspace","\\:");m("\\;","\\tmspace+{5mu}{.2777em}");m("\\thickspace","\\;");m("\\!","\\tmspace-{3mu}{.1667em}");m("\\negthinspace","\\!");m("\\negmedspace","\\tmspace-{4mu}{.2222em}");m("\\negthickspace","\\tmspace-{5mu}{.277em}");m("\\enspace","\\kern.5em ");m("\\enskip","\\hskip.5em\\relax");m("\\quad","\\hskip1em\\relax");m("\\qquad","\\hskip2em\\relax");m("\\tag","\\@ifstar\\tag@literal\\tag@paren");m("\\tag@paren","\\tag@literal{({#1})}");m("\\tag@literal",e=>{if(e.macros.get("\\df@tag"))throw new z("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"});m("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}");m("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)");m("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}");m("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1");m("\\newline","\\\\\\relax");m("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");var Ln=M(j0["Main-Regular"][84][1]-.7*j0["Main-Regular"][65][1]);m("\\LaTeX","\\textrm{\\html@mathml{"+("L\\kern-.36em\\raisebox{"+Ln+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{LaTeX}}");m("\\KaTeX","\\textrm{\\html@mathml{"+("K\\kern-.17em\\raisebox{"+Ln+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{KaTeX}}");m("\\hspace","\\@ifstar\\@hspacer\\@hspace");m("\\@hspace","\\hskip #1\\relax");m("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax");m("\\ordinarycolon",":");m("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}");m("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}');m("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}');m("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}');m("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}');m("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}');m("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}');m("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}');m("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}');m("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}');m("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}');m("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}');m("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}');m("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}');m("∷","\\dblcolon");m("∹","\\eqcolon");m("≔","\\coloneqq");m("≕","\\eqqcolon");m("⩴","\\Coloneqq");m("\\ratio","\\vcentcolon");m("\\coloncolon","\\dblcolon");m("\\colonequals","\\coloneqq");m("\\coloncolonequals","\\Coloneqq");m("\\equalscolon","\\eqqcolon");m("\\equalscoloncolon","\\Eqqcolon");m("\\colonminus","\\coloneq");m("\\coloncolonminus","\\Coloneq");m("\\minuscolon","\\eqcolon");m("\\minuscoloncolon","\\Eqcolon");m("\\coloncolonapprox","\\Colonapprox");m("\\coloncolonsim","\\Colonsim");m("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}");m("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}");m("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}");m("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}");m("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`∌}}");m("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}");m("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}");m("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}");m("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}");m("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}");m("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}");m("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}");m("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}");m("\\gvertneqq","\\html@mathml{\\@gvertneqq}{≩}");m("\\lvertneqq","\\html@mathml{\\@lvertneqq}{≨}");m("\\ngeqq","\\html@mathml{\\@ngeqq}{≱}");m("\\ngeqslant","\\html@mathml{\\@ngeqslant}{≱}");m("\\nleqq","\\html@mathml{\\@nleqq}{≰}");m("\\nleqslant","\\html@mathml{\\@nleqslant}{≰}");m("\\nshortmid","\\html@mathml{\\@nshortmid}{∤}");m("\\nshortparallel","\\html@mathml{\\@nshortparallel}{∦}");m("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{⊈}");m("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{⊉}");m("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{⊊}");m("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{⫋}");m("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{⊋}");m("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{⫌}");m("\\imath","\\html@mathml{\\@imath}{ı}");m("\\jmath","\\html@mathml{\\@jmath}{ȷ}");m("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`⟦}}");m("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`⟧}}");m("⟦","\\llbracket");m("⟧","\\rrbracket");m("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`⦃}}");m("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`⦄}}");m("⦃","\\lBrace");m("⦄","\\rBrace");m("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`⦵}}");m("⦵","\\minuso");m("\\darr","\\downarrow");m("\\dArr","\\Downarrow");m("\\Darr","\\Downarrow");m("\\lang","\\langle");m("\\rang","\\rangle");m("\\uarr","\\uparrow");m("\\uArr","\\Uparrow");m("\\Uarr","\\Uparrow");m("\\N","\\mathbb{N}");m("\\R","\\mathbb{R}");m("\\Z","\\mathbb{Z}");m("\\alef","\\aleph");m("\\alefsym","\\aleph");m("\\Alpha","\\mathrm{A}");m("\\Beta","\\mathrm{B}");m("\\bull","\\bullet");m("\\Chi","\\mathrm{X}");m("\\clubs","\\clubsuit");m("\\cnums","\\mathbb{C}");m("\\Complex","\\mathbb{C}");m("\\Dagger","\\ddagger");m("\\diamonds","\\diamondsuit");m("\\empty","\\emptyset");m("\\Epsilon","\\mathrm{E}");m("\\Eta","\\mathrm{H}");m("\\exist","\\exists");m("\\harr","\\leftrightarrow");m("\\hArr","\\Leftrightarrow");m("\\Harr","\\Leftrightarrow");m("\\hearts","\\heartsuit");m("\\image","\\Im");m("\\infin","\\infty");m("\\Iota","\\mathrm{I}");m("\\isin","\\in");m("\\Kappa","\\mathrm{K}");m("\\larr","\\leftarrow");m("\\lArr","\\Leftarrow");m("\\Larr","\\Leftarrow");m("\\lrarr","\\leftrightarrow");m("\\lrArr","\\Leftrightarrow");m("\\Lrarr","\\Leftrightarrow");m("\\Mu","\\mathrm{M}");m("\\natnums","\\mathbb{N}");m("\\Nu","\\mathrm{N}");m("\\Omicron","\\mathrm{O}");m("\\plusmn","\\pm");m("\\rarr","\\rightarrow");m("\\rArr","\\Rightarrow");m("\\Rarr","\\Rightarrow");m("\\real","\\Re");m("\\reals","\\mathbb{R}");m("\\Reals","\\mathbb{R}");m("\\Rho","\\mathrm{P}");m("\\sdot","\\cdot");m("\\sect","\\S");m("\\spades","\\spadesuit");m("\\sub","\\subset");m("\\sube","\\subseteq");m("\\supe","\\supseteq");m("\\Tau","\\mathrm{T}");m("\\thetasym","\\vartheta");m("\\weierp","\\wp");m("\\Zeta","\\mathrm{Z}");m("\\argmin","\\DOTSB\\operatorname*{arg\\,min}");m("\\argmax","\\DOTSB\\operatorname*{arg\\,max}");m("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits");m("\\bra","\\mathinner{\\langle{#1}|}");m("\\ket","\\mathinner{|{#1}\\rangle}");m("\\braket","\\mathinner{\\langle{#1}\\rangle}");m("\\Bra","\\left\\langle#1\\right|");m("\\Ket","\\left|#1\\right\\rangle");var Pn=e=>t=>{var u=t.consumeArg().tokens,r=t.consumeArg().tokens,n=t.consumeArg().tokens,a=t.consumeArg().tokens,i=t.macros.get("|"),s=t.macros.get("\\|");t.macros.beginGroup();var o=p=>x=>{e&&(x.macros.set("|",i),n.length&&x.macros.set("\\|",s));var b=p;if(!p&&n.length){var y=x.future();y.text==="|"&&(x.popToken(),b=!0)}return{tokens:b?n:r,numArgs:0}};t.macros.set("|",o(!1)),n.length&&t.macros.set("\\|",o(!0));var h=t.consumeArg().tokens,f=t.expandTokens([...a,...h,...u]);return t.macros.endGroup(),{tokens:f.reverse(),numArgs:0}};m("\\bra@ket",Pn(!1));m("\\bra@set",Pn(!0));m("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}");m("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}");m("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}");m("\\angln","{\\angl n}");m("\\blue","\\textcolor{##6495ed}{#1}");m("\\orange","\\textcolor{##ffa500}{#1}");m("\\pink","\\textcolor{##ff00af}{#1}");m("\\red","\\textcolor{##df0030}{#1}");m("\\green","\\textcolor{##28ae7b}{#1}");m("\\gray","\\textcolor{gray}{#1}");m("\\purple","\\textcolor{##9d38bd}{#1}");m("\\blueA","\\textcolor{##ccfaff}{#1}");m("\\blueB","\\textcolor{##80f6ff}{#1}");m("\\blueC","\\textcolor{##63d9ea}{#1}");m("\\blueD","\\textcolor{##11accd}{#1}");m("\\blueE","\\textcolor{##0c7f99}{#1}");m("\\tealA","\\textcolor{##94fff5}{#1}");m("\\tealB","\\textcolor{##26edd5}{#1}");m("\\tealC","\\textcolor{##01d1c1}{#1}");m("\\tealD","\\textcolor{##01a995}{#1}");m("\\tealE","\\textcolor{##208170}{#1}");m("\\greenA","\\textcolor{##b6ffb0}{#1}");m("\\greenB","\\textcolor{##8af281}{#1}");m("\\greenC","\\textcolor{##74cf70}{#1}");m("\\greenD","\\textcolor{##1fab54}{#1}");m("\\greenE","\\textcolor{##0d923f}{#1}");m("\\goldA","\\textcolor{##ffd0a9}{#1}");m("\\goldB","\\textcolor{##ffbb71}{#1}");m("\\goldC","\\textcolor{##ff9c39}{#1}");m("\\goldD","\\textcolor{##e07d10}{#1}");m("\\goldE","\\textcolor{##a75a05}{#1}");m("\\redA","\\textcolor{##fca9a9}{#1}");m("\\redB","\\textcolor{##ff8482}{#1}");m("\\redC","\\textcolor{##f9685d}{#1}");m("\\redD","\\textcolor{##e84d39}{#1}");m("\\redE","\\textcolor{##bc2612}{#1}");m("\\maroonA","\\textcolor{##ffbde0}{#1}");m("\\maroonB","\\textcolor{##ff92c6}{#1}");m("\\maroonC","\\textcolor{##ed5fa6}{#1}");m("\\maroonD","\\textcolor{##ca337c}{#1}");m("\\maroonE","\\textcolor{##9e034e}{#1}");m("\\purpleA","\\textcolor{##ddd7ff}{#1}");m("\\purpleB","\\textcolor{##c6b9fc}{#1}");m("\\purpleC","\\textcolor{##aa87ff}{#1}");m("\\purpleD","\\textcolor{##7854ab}{#1}");m("\\purpleE","\\textcolor{##543b78}{#1}");m("\\mintA","\\textcolor{##f5f9e8}{#1}");m("\\mintB","\\textcolor{##edf2df}{#1}");m("\\mintC","\\textcolor{##e0e5cc}{#1}");m("\\grayA","\\textcolor{##f6f7f7}{#1}");m("\\grayB","\\textcolor{##f0f1f2}{#1}");m("\\grayC","\\textcolor{##e3e5e6}{#1}");m("\\grayD","\\textcolor{##d6d8da}{#1}");m("\\grayE","\\textcolor{##babec2}{#1}");m("\\grayF","\\textcolor{##888d93}{#1}");m("\\grayG","\\textcolor{##626569}{#1}");m("\\grayH","\\textcolor{##3b3e40}{#1}");m("\\grayI","\\textcolor{##21242c}{#1}");m("\\kaBlue","\\textcolor{##314453}{#1}");m("\\kaGreen","\\textcolor{##71B307}{#1}");var Hn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class Jo{constructor(t,u,r){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=u,this.expansionCount=0,this.feed(t),this.macros=new Xo(Yo,u.macros),this.mode=r,this.stack=[]}feed(t){this.lexer=new o1(t,this.settings)}switchMode(t){this.mode=t}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return this.stack.length===0&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(t){this.stack.push(t)}pushTokens(t){this.stack.push(...t)}scanArgument(t){var u,r,n;if(t){if(this.consumeSpaces(),this.future().text!=="[")return null;u=this.popToken(),{tokens:n,end:r}=this.consumeArg(["]"])}else({tokens:n,start:u,end:r}=this.consumeArg());return this.pushToken(new S0("EOF",r.loc)),this.pushTokens(n),new S0("",C0.range(u,r))}consumeSpaces(){for(;;){var t=this.future();if(t.text===" ")this.stack.pop();else break}}consumeArg(t){var u=[],r=t&&t.length>0;r||this.consumeSpaces();var n=this.future(),a,i=0,s=0;do{if(a=this.popToken(),u.push(a),a.text==="{")++i;else if(a.text==="}"){if(--i,i===-1)throw new z("Extra }",a)}else if(a.text==="EOF")throw new z("Unexpected end of input in a macro argument, expected '"+(t&&r?t[s]:"}")+"'",a);if(t&&r)if((i===0||i===1&&t[s]==="{")&&a.text===t[s]){if(++s,s===t.length){u.splice(-s,s);break}}else s=0}while(i!==0||r);return n.text==="{"&&u[u.length-1].text==="}"&&(u.pop(),u.shift()),u.reverse(),{tokens:u,start:n,end:a}}consumeArgs(t,u){if(u){if(u.length!==t+1)throw new z("The length of delimiters doesn't match the number of args!");for(var r=u[0],n=0;n<r.length;n++){var a=this.popToken();if(r[n]!==a.text)throw new z("Use of the macro doesn't match its definition",a)}}for(var i=[],s=0;s<t;s++)i.push(this.consumeArg(u&&u[s+1]).tokens);return i}countExpansion(t){if(this.expansionCount+=t,this.expansionCount>this.settings.maxExpand)throw new z("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(t){var u=this.popToken(),r=u.text,n=u.noexpand?null:this._getExpansion(r);if(n==null||t&&n.unexpandable){if(t&&n==null&&r[0]==="\\"&&!this.isDefined(r))throw new z("Undefined control sequence: "+r);return this.pushToken(u),!1}this.countExpansion(1);var a=n.tokens,i=this.consumeArgs(n.numArgs,n.delimiters);if(n.numArgs){a=a.slice();for(var s=a.length-1;s>=0;--s){var o=a[s];if(o.text==="#"){if(s===0)throw new z("Incomplete placeholder at end of macro body",o);if(o=a[--s],o.text==="#")a.splice(s+1,1);else if(/^[1-9]$/.test(o.text))a.splice(s,2,...i[+o.text-1]);else throw new z("Not a valid argument number",o)}}}return this.pushTokens(a),a.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(this.expandOnce()===!1){var t=this.stack.pop();return t.treatAsRelax&&(t.text="\\relax"),t}}expandMacro(t){return this.macros.has(t)?this.expandTokens([new S0(t)]):void 0}expandTokens(t){var u=[],r=this.stack.length;for(this.pushTokens(t);this.stack.length>r;)if(this.expandOnce(!0)===!1){var n=this.stack.pop();n.treatAsRelax&&(n.noexpand=!1,n.treatAsRelax=!1),u.push(n)}return this.countExpansion(u.length),u}expandMacroAsText(t){var u=this.expandMacro(t);return u&&u.map(r=>r.text).join("")}_getExpansion(t){var u=this.macros.get(t);if(u==null)return u;if(t.length===1){var r=this.lexer.catcodes[t];if(r!=null&&r!==13)return}var n=typeof u=="function"?u(this):u;if(typeof n=="string"){var a=0;if(n.includes("#"))for(var i=n.replace(/##/g,"");i.includes("#"+(a+1));)++a;for(var s=new o1(n,this.settings),o=[],h=s.lex();h.text!=="EOF";)o.push(h),h=s.lex();o.reverse();var f={tokens:o,numArgs:a};return f}return n}isDefined(t){return this.macros.has(t)||ce.hasOwnProperty(t)||t0.math.hasOwnProperty(t)||t0.text.hasOwnProperty(t)||Hn.hasOwnProperty(t)}isExpandable(t){var u=this.macros.get(t);return u!=null?typeof u=="string"||typeof u=="function"||!u.unexpandable:ce.hasOwnProperty(t)&&!ce[t].primitive}}var d1=/^[₊₋₌₍₎₀₁₂₃₄₅₆₇₈₉ₐₑₕᵢⱼₖₗₘₙₒₚᵣₛₜᵤᵥₓᵦᵧᵨᵩᵪ]/,mt=Object.freeze({"₊":"+","₋":"-","₌":"=","₍":"(","₎":")","₀":"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","ᵦ":"β","ᵧ":"γ","ᵨ":"ρ","ᵩ":"ϕ","ᵪ":"χ","⁺":"+","⁻":"-","⁼":"=","⁽":"(","⁾":")","⁰":"0","¹":"1","²":"2","³":"3","⁴":"4","⁵":"5","⁶":"6","⁷":"7","⁸":"8","⁹":"9","ᴬ":"A","ᴮ":"B","ᴰ":"D","ᴱ":"E","ᴳ":"G","ᴴ":"H","ᴵ":"I","ᴶ":"J","ᴷ":"K","ᴸ":"L","ᴹ":"M","ᴺ":"N","ᴼ":"O","ᴾ":"P","ᴿ":"R","ᵀ":"T","ᵁ":"U","ⱽ":"V","ᵂ":"W","ᵃ":"a","ᵇ":"b","ᶜ":"c","ᵈ":"d","ᵉ":"e","ᶠ":"f","ᵍ":"g",ʰ:"h","ⁱ":"i",ʲ:"j","ᵏ":"k",ˡ:"l","ᵐ":"m",ⁿ:"n","ᵒ":"o","ᵖ":"p",ʳ:"r",ˢ:"s","ᵗ":"t","ᵘ":"u","ᵛ":"v",ʷ:"w",ˣ:"x",ʸ:"y","ᶻ":"z","ᵝ":"β","ᵞ":"γ","ᵟ":"δ","ᵠ":"ϕ","ᵡ":"χ","ᶿ":"θ"}),cu={"́":{text:"\\'",math:"\\acute"},"̀":{text:"\\`",math:"\\grave"},"̈":{text:'\\"',math:"\\ddot"},"̃":{text:"\\~",math:"\\tilde"},"̄":{text:"\\=",math:"\\bar"},"̆":{text:"\\u",math:"\\breve"},"̌":{text:"\\v",math:"\\check"},"̂":{text:"\\^",math:"\\hat"},"̇":{text:"\\.",math:"\\dot"},"̊":{text:"\\r",math:"\\mathring"},"̋":{text:"\\H"},"̧":{text:"\\c"}},f1={á:"á",à:"à",ä:"ä",ǟ:"ǟ",ã:"ã",ā:"ā",ă:"ă",ắ:"ắ",ằ:"ằ",ẵ:"ẵ",ǎ:"ǎ",â:"â",ấ:"ấ",ầ:"ầ",ẫ:"ẫ",ȧ:"ȧ",ǡ:"ǡ",å:"å",ǻ:"ǻ",ḃ:"ḃ",ć:"ć",ḉ:"ḉ",č:"č",ĉ:"ĉ",ċ:"ċ",ç:"ç",ď:"ď",ḋ:"ḋ",ḑ:"ḑ",é:"é",è:"è",ë:"ë",ẽ:"ẽ",ē:"ē",ḗ:"ḗ",ḕ:"ḕ",ĕ:"ĕ",ḝ:"ḝ",ě:"ě",ê:"ê",ế:"ế",ề:"ề",ễ:"ễ",ė:"ė",ȩ:"ȩ",ḟ:"ḟ",ǵ:"ǵ",ḡ:"ḡ",ğ:"ğ",ǧ:"ǧ",ĝ:"ĝ",ġ:"ġ",ģ:"ģ",ḧ:"ḧ",ȟ:"ȟ",ĥ:"ĥ",ḣ:"ḣ",ḩ:"ḩ",í:"í",ì:"ì",ï:"ï",ḯ:"ḯ",ĩ:"ĩ",ī:"ī",ĭ:"ĭ",ǐ:"ǐ",î:"î",ǰ:"ǰ",ĵ:"ĵ",ḱ:"ḱ",ǩ:"ǩ",ķ:"ķ",ĺ:"ĺ",ľ:"ľ",ļ:"ļ",ḿ:"ḿ",ṁ:"ṁ",ń:"ń",ǹ:"ǹ",ñ:"ñ",ň:"ň",ṅ:"ṅ",ņ:"ņ",ó:"ó",ò:"ò",ö:"ö",ȫ:"ȫ",õ:"õ",ṍ:"ṍ",ṏ:"ṏ",ȭ:"ȭ",ō:"ō",ṓ:"ṓ",ṑ:"ṑ",ŏ:"ŏ",ǒ:"ǒ",ô:"ô",ố:"ố",ồ:"ồ",ỗ:"ỗ",ȯ:"ȯ",ȱ:"ȱ",ő:"ő",ṕ:"ṕ",ṗ:"ṗ",ŕ:"ŕ",ř:"ř",ṙ:"ṙ",ŗ:"ŗ",ś:"ś",ṥ:"ṥ",š:"š",ṧ:"ṧ",ŝ:"ŝ",ṡ:"ṡ",ş:"ş",ẗ:"ẗ",ť:"ť",ṫ:"ṫ",ţ:"ţ",ú:"ú",ù:"ù",ü:"ü",ǘ:"ǘ",ǜ:"ǜ",ǖ:"ǖ",ǚ:"ǚ",ũ:"ũ",ṹ:"ṹ",ū:"ū",ṻ:"ṻ",ŭ:"ŭ",ǔ:"ǔ",û:"û",ů:"ů",ű:"ű",ṽ:"ṽ",ẃ:"ẃ",ẁ:"ẁ",ẅ:"ẅ",ŵ:"ŵ",ẇ:"ẇ",ẘ:"ẘ",ẍ:"ẍ",ẋ:"ẋ",ý:"ý",ỳ:"ỳ",ÿ:"ÿ",ỹ:"ỹ",ȳ:"ȳ",ŷ:"ŷ",ẏ:"ẏ",ẙ:"ẙ",ź:"ź",ž:"ž",ẑ:"ẑ",ż:"ż",Á:"Á",À:"À",Ä:"Ä",Ǟ:"Ǟ",Ã:"Ã",Ā:"Ā",Ă:"Ă",Ắ:"Ắ",Ằ:"Ằ",Ẵ:"Ẵ",Ǎ:"Ǎ",Â:"Â",Ấ:"Ấ",Ầ:"Ầ",Ẫ:"Ẫ",Ȧ:"Ȧ",Ǡ:"Ǡ",Å:"Å",Ǻ:"Ǻ",Ḃ:"Ḃ",Ć:"Ć",Ḉ:"Ḉ",Č:"Č",Ĉ:"Ĉ",Ċ:"Ċ",Ç:"Ç",Ď:"Ď",Ḋ:"Ḋ",Ḑ:"Ḑ",É:"É",È:"È",Ë:"Ë",Ẽ:"Ẽ",Ē:"Ē",Ḗ:"Ḗ",Ḕ:"Ḕ",Ĕ:"Ĕ",Ḝ:"Ḝ",Ě:"Ě",Ê:"Ê",Ế:"Ế",Ề:"Ề",Ễ:"Ễ",Ė:"Ė",Ȩ:"Ȩ",Ḟ:"Ḟ",Ǵ:"Ǵ",Ḡ:"Ḡ",Ğ:"Ğ",Ǧ:"Ǧ",Ĝ:"Ĝ",Ġ:"Ġ",Ģ:"Ģ",Ḧ:"Ḧ",Ȟ:"Ȟ",Ĥ:"Ĥ",Ḣ:"Ḣ",Ḩ:"Ḩ",Í:"Í",Ì:"Ì",Ï:"Ï",Ḯ:"Ḯ",Ĩ:"Ĩ",Ī:"Ī",Ĭ:"Ĭ",Ǐ:"Ǐ",Î:"Î",İ:"İ",Ĵ:"Ĵ",Ḱ:"Ḱ",Ǩ:"Ǩ",Ķ:"Ķ",Ĺ:"Ĺ",Ľ:"Ľ",Ļ:"Ļ",Ḿ:"Ḿ",Ṁ:"Ṁ",Ń:"Ń",Ǹ:"Ǹ",Ñ:"Ñ",Ň:"Ň",Ṅ:"Ṅ",Ņ:"Ņ",Ó:"Ó",Ò:"Ò",Ö:"Ö",Ȫ:"Ȫ",Õ:"Õ",Ṍ:"Ṍ",Ṏ:"Ṏ",Ȭ:"Ȭ",Ō:"Ō",Ṓ:"Ṓ",Ṑ:"Ṑ",Ŏ:"Ŏ",Ǒ:"Ǒ",Ô:"Ô",Ố:"Ố",Ồ:"Ồ",Ỗ:"Ỗ",Ȯ:"Ȯ",Ȱ:"Ȱ",Ő:"Ő",Ṕ:"Ṕ",Ṗ:"Ṗ",Ŕ:"Ŕ",Ř:"Ř",Ṙ:"Ṙ",Ŗ:"Ŗ",Ś:"Ś",Ṥ:"Ṥ",Š:"Š",Ṧ:"Ṧ",Ŝ:"Ŝ",Ṡ:"Ṡ",Ş:"Ş",Ť:"Ť",Ṫ:"Ṫ",Ţ:"Ţ",Ú:"Ú",Ù:"Ù",Ü:"Ü",Ǘ:"Ǘ",Ǜ:"Ǜ",Ǖ:"Ǖ",Ǚ:"Ǚ",Ũ:"Ũ",Ṹ:"Ṹ",Ū:"Ū",Ṻ:"Ṻ",Ŭ:"Ŭ",Ǔ:"Ǔ",Û:"Û",Ů:"Ů",Ű:"Ű",Ṽ:"Ṽ",Ẃ:"Ẃ",Ẁ:"Ẁ",Ẅ:"Ẅ",Ŵ:"Ŵ",Ẇ:"Ẇ",Ẍ:"Ẍ",Ẋ:"Ẋ",Ý:"Ý",Ỳ:"Ỳ",Ÿ:"Ÿ",Ỹ:"Ỹ",Ȳ:"Ȳ",Ŷ:"Ŷ",Ẏ:"Ẏ",Ź:"Ź",Ž:"Ž",Ẑ:"Ẑ",Ż:"Ż",ά:"ά",ὰ:"ὰ",ᾱ:"ᾱ",ᾰ:"ᾰ",έ:"έ",ὲ:"ὲ",ή:"ή",ὴ:"ὴ",ί:"ί",ὶ:"ὶ",ϊ:"ϊ",ΐ:"ΐ",ῒ:"ῒ",ῑ:"ῑ",ῐ:"ῐ",ό:"ό",ὸ:"ὸ",ύ:"ύ",ὺ:"ὺ",ϋ:"ϋ",ΰ:"ΰ",ῢ:"ῢ",ῡ:"ῡ",ῠ:"ῠ",ώ:"ώ",ὼ:"ὼ",Ύ:"Ύ",Ὺ:"Ὺ",Ϋ:"Ϋ",Ῡ:"Ῡ",Ῠ:"Ῠ",Ώ:"Ώ",Ὼ:"Ὼ"};class Pt{constructor(t,u){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new Jo(t,u,this.mode),this.settings=u,this.leftrightDepth=0,this.nextToken=null}expect(t,u){if(u===void 0&&(u=!0),this.fetch().text!==t)throw new z("Expected '"+t+"', got '"+this.fetch().text+"'",this.fetch());u&&this.consume()}consume(){this.nextToken=null}fetch(){return this.nextToken==null&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(t){this.mode=t,this.gullet.switchMode(t)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{var t=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),t}finally{this.gullet.endGroups()}}subparse(t){var u=this.nextToken;this.consume(),this.gullet.pushToken(new S0("}")),this.gullet.pushTokens(t);var r=this.parseExpression(!1);return this.expect("}"),this.nextToken=u,r}parseExpression(t,u){for(var r=[];;){this.mode==="math"&&this.consumeSpaces();var n=this.fetch();if(Pt.endOfExpression.has(n.text)||u&&n.text===u||t&&ce[n.text]&&ce[n.text].infix)break;var a=this.parseAtom(u);if(a){if(a.type==="internal")continue}else break;r.push(a)}return this.mode==="text"&&this.formLigatures(r),this.handleInfixNodes(r)}handleInfixNodes(t){for(var u=-1,r,n=0;n<t.length;n++){var a=t[n];if(a.type==="infix"){if(u!==-1)throw new z("only one infix operator per group",a.token);u=n,r=a.replaceWith}}if(u!==-1&&r){var i,s,o=t.slice(0,u),h=t.slice(u+1);o.length===1&&o[0].type==="ordgroup"?i=o[0]:i={type:"ordgroup",mode:this.mode,body:o},h.length===1&&h[0].type==="ordgroup"?s=h[0]:s={type:"ordgroup",mode:this.mode,body:h};var f;return r==="\\\\abovefrac"?f=this.callFunction(r,[i,t[u],s],[]):f=this.callFunction(r,[i,s],[]),[f]}else return t}handleSupSubscript(t){var u=this.fetch(),r=u.text;this.consume(),this.consumeSpaces();var n;do{var a;n=this.parseGroup(t)}while(((a=n)==null?void 0:a.type)==="internal");if(!n)throw new z("Expected group after '"+r+"'",u);return n}formatUnsupportedCmd(t){for(var u=[],r=0;r<t.length;r++)u.push({type:"textord",mode:"text",text:t[r]});var n={type:"text",mode:this.mode,body:u},a={type:"color",mode:this.mode,color:this.settings.errorColor,body:[n]};return a}parseAtom(t){var u=this.parseGroup("atom",t);if((u==null?void 0:u.type)==="internal"||this.mode==="text")return u;for(var r,n;;){this.consumeSpaces();var a=this.fetch();if(a.text==="\\limits"||a.text==="\\nolimits"){if(u&&u.type==="op")u.limits=a.text==="\\limits",u.alwaysHandleSupSub=!0;else if(u&&u.type==="operatorname")u.alwaysHandleSupSub&&(u.limits=a.text==="\\limits");else throw new z("Limit controls must follow a math operator",a);this.consume()}else if(a.text==="^"){if(r)throw new z("Double superscript",a);r=this.handleSupSubscript("superscript")}else if(a.text==="_"){if(n)throw new z("Double subscript",a);n=this.handleSupSubscript("subscript")}else if(a.text==="'"){if(r)throw new z("Double superscript",a);var i={type:"textord",mode:this.mode,text:"\\prime"},s=[i];for(this.consume();this.fetch().text==="'";)s.push(i),this.consume();this.fetch().text==="^"&&s.push(this.handleSupSubscript("superscript")),r={type:"ordgroup",mode:this.mode,body:s}}else if(mt[a.text]){var o=d1.test(a.text),h=[];for(h.push(new S0(mt[a.text])),this.consume();;){var f=this.fetch().text;if(!mt[f]||d1.test(f)!==o)break;h.unshift(new S0(mt[f])),this.consume()}var p=this.subparse(h);o?n={type:"ordgroup",mode:"math",body:p}:r={type:"ordgroup",mode:"math",body:p}}else break}return r&&n?{type:"supsub",mode:this.mode,base:u,sup:r,sub:n}:r?{type:"supsub",mode:this.mode,base:u,sup:r}:n?{type:"supsub",mode:this.mode,base:u,sub:n}:u}parseFunction(t,u){var r=this.fetch(),n=r.text,a=ce[n];if(!a)return null;if(this.consume(),u&&u!=="atom"&&!a.allowedInArgument)throw new z("Got function '"+n+"' with no arguments"+(u?" as "+u:""),r);if(this.mode==="text"&&!a.allowedInText)throw new z("Can't use function '"+n+"' in text mode",r);if(this.mode==="math"&&a.allowedInMath===!1)throw new z("Can't use function '"+n+"' in math mode",r);var{args:i,optArgs:s}=this.parseArguments(n,a);return this.callFunction(n,i,s,r,t)}callFunction(t,u,r,n,a){var i={funcName:t,parser:this,token:n,breakOnTokenText:a},s=ce[t];if(s&&s.handler)return s.handler(i,u,r);throw new z("No function handler for "+t)}parseArguments(t,u){var r,n=(r=u.numOptionalArgs)!=null?r:0,a=u.numArgs+n;if(a===0)return{args:[],optArgs:[]};for(var i=[],s=[],o=0;o<a;o++){var h,f=(h=u.argTypes)==null?void 0:h[o],p=o<n;("primitive"in u&&u.primitive&&f==null||u.type==="sqrt"&&o===1&&s[0]==null)&&(f="primitive");var x=this.parseGroupOfType("argument to '"+t+"'",f,p);if(p)s.push(x);else if(x!=null)i.push(x);else throw new z("Null argument, please report this as a bug")}return{args:i,optArgs:s}}parseGroupOfType(t,u,r){switch(u){case"color":return this.parseColorGroup(r);case"size":return this.parseSizeGroup(r);case"url":return this.parseUrlGroup(r);case"math":case"text":return this.parseArgumentGroup(r,u);case"hbox":{var n=this.parseArgumentGroup(r,"text");return n!=null?{type:"styling",mode:n.mode,body:[n],style:"text",resetFont:!0}:null}case"raw":{var a=this.parseStringGroup(r);return a!=null?{type:"raw",mode:"text",string:a.text}:null}case"primitive":{if(r)throw new z("A primitive argument cannot be optional");var i=this.parseGroup(t);if(i==null)throw new z("Expected group as "+t,this.fetch());return i}case"original":case void 0:return this.parseArgumentGroup(r);default:throw new z("Unknown group type as "+t,this.fetch())}}consumeSpaces(){for(;this.fetch().text===" ";)this.consume()}parseStringGroup(t){var u=this.gullet.scanArgument(t);if(u==null)return null;for(var r="",n;(n=this.fetch()).text!=="EOF";)r+=n.text,this.consume();return this.consume(),u.text=r,u}parseRegexGroup(t,u){for(var r=this.fetch(),n=r,a="",i;(i=this.fetch()).text!=="EOF"&&t.test(a+i.text);)n=i,a+=n.text,this.consume();if(a==="")throw new z("Invalid "+u+": '"+r.text+"'",r);return r.range(n,a)}parseColorGroup(t){var u=this.parseStringGroup(t);if(u==null)return null;var r=/^(#[a-f0-9]{3,4}|#[a-f0-9]{6}|#[a-f0-9]{8}|[a-f0-9]{6}|[a-z]+)$/i.exec(u.text);if(!r)throw new z("Invalid color: '"+u.text+"'",u);var n=r[0];return/^[0-9a-f]{6}$/i.test(n)&&(n="#"+n),{type:"color-token",mode:this.mode,color:n}}parseSizeGroup(t){var u,r=!1;if(this.gullet.consumeSpaces(),!t&&this.gullet.future().text!=="{"?u=this.parseRegexGroup(/^[-+]? *(?:$|\d+|\d+\.\d*|\.\d*) *[a-z]{0,2} *$/,"size"):u=this.parseStringGroup(t),!u)return null;!t&&u.text.length===0&&(u.text="0pt",r=!0);var n=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(u.text);if(!n)throw new z("Invalid size: '"+u.text+"'",u);var a={number:+(n[1]+n[2]),unit:n[3]};if(!Q1(a))throw new z("Invalid unit: '"+a.unit+"'",u);return{type:"size",mode:this.mode,value:a,isBlank:r}}parseUrlGroup(t){this.gullet.lexer.setCatcode("%",13),this.gullet.lexer.setCatcode("~",12);var u=this.parseStringGroup(t);if(this.gullet.lexer.setCatcode("%",14),this.gullet.lexer.setCatcode("~",13),u==null)return null;var r=u.text.replace(/\\([#$%&~_^{}])/g,"$1");return{type:"url",mode:this.mode,url:r}}parseArgumentGroup(t,u){var r=this.gullet.scanArgument(t);if(r==null)return null;var n=this.mode;u&&this.switchMode(u),this.gullet.beginGroup();var a=this.parseExpression(!1,"EOF");this.expect("EOF"),this.gullet.endGroup();var i={type:"ordgroup",mode:this.mode,loc:r.loc,body:a};return u&&this.switchMode(n),i}parseGroup(t,u){var r=this.fetch(),n=r.text,a;if(n==="{"||n==="\\begingroup"){this.consume();var i=n==="{"?"}":"\\endgroup";this.gullet.beginGroup();var s=this.parseExpression(!1,i),o=this.fetch();this.expect(i),this.gullet.endGroup(),a={type:"ordgroup",mode:this.mode,loc:C0.range(r,o),body:s,semisimple:n==="\\begingroup"||void 0}}else if(a=this.parseFunction(u,t)||this.parseSymbol(),a==null&&n[0]==="\\"&&!Hn.hasOwnProperty(n)){if(this.settings.throwOnError)throw new z("Undefined control sequence: "+n,r);a=this.formatUnsupportedCmd(n),this.consume()}return a}formLigatures(t){for(var u=t.length-1,r=0;r<u;++r){var n=t[r];if(n.type==="textord"){var a=n.text,i=t[r+1];if(!(!i||i.type!=="textord")){if(a==="-"&&i.text==="-"){var s=t[r+2];r+1<u&&s&&s.type==="textord"&&s.text==="-"?(t.splice(r,3,{type:"textord",mode:"text",loc:C0.range(n,s),text:"---"}),u-=2):(t.splice(r,2,{type:"textord",mode:"text",loc:C0.range(n,i),text:"--"}),u-=1)}(a==="'"||a==="`")&&i.text===a&&(t.splice(r,2,{type:"textord",mode:"text",loc:C0.range(n,i),text:a+a}),u-=1)}}}}parseSymbol(){var t=this.fetch(),u=t.text;if(/^\\verb[^a-zA-Z]/.test(u)){this.consume();var r=u.slice(5),n=r.charAt(0)==="*";if(n&&(r=r.slice(1)),r.length<2||r.charAt(0)!==r.slice(-1))throw new z(`\\verb assertion failed --
272
+ please report what input caused this bug`);return r=r.slice(1,-1),{type:"verb",mode:"text",body:r,star:n}}f1.hasOwnProperty(u[0])&&!t0[this.mode][u[0]]&&(this.settings.strict&&this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Accented Unicode text character "'+u[0]+'" used in math mode',t),u=f1[u[0]]+u.slice(1));var a=Wo.exec(u);a&&(u=u.substring(0,a.index),u==="i"?u="ı":u==="j"&&(u="ȷ"));var i;if(t0[this.mode][u]){this.settings.strict&&this.mode==="math"&&xu.includes(u)&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+u[0]+'" used in math mode',t);var s=t0[this.mode][u].group,o=C0.range(t),h;ro(s)?h={type:"atom",mode:this.mode,family:s,loc:o,text:u}:h={type:s,mode:this.mode,loc:o,text:u},i=h}else if(u.charCodeAt(0)>=128)this.settings.strict&&(J1(u.charCodeAt(0))?this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+u[0]+'" used in math mode',t):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+u[0]+'"'+(" ("+u.charCodeAt(0)+")"),t)),i={type:"textord",mode:"text",loc:C0.range(t),text:u};else return null;if(this.consume(),a)for(var f=0;f<a[0].length;f++){var p=a[0][f];if(!cu[p])throw new z("Unknown accent ' "+p+"'",t);var x=cu[p][this.mode]||cu[p].text;if(!x)throw new z("Accent "+p+" unsupported in "+this.mode+" mode",t);i={type:"accent",mode:this.mode,loc:C0.range(t),label:x,isStretchy:!1,isShifty:!0,base:i}}return i}}Pt.endOfExpression=new Set(["}","\\endgroup","\\end","\\right","&"]);var tr=function(t,u){if(!(typeof t=="string"||t instanceof String))throw new TypeError("KaTeX can only parse string typed expression");var r=new Pt(t,u);delete r.gullet.macros.current["\\df@tag"];var n=r.parse();if(delete r.gullet.macros.current["\\current@color"],delete r.gullet.macros.current["\\color"],r.gullet.macros.get("\\df@tag")){if(!u.displayMode)throw new z("\\tag works only in display equations");n=[{type:"tag",mode:"text",body:n,tag:r.subparse([new S0("\\df@tag")])}]}return n},$n=function(t,u,r){u.textContent="";var n=ur(t,r).toNode();u.appendChild(n)};typeof document<"u"&&document.compatMode!=="CSS1Compat"&&(typeof console<"u"&&console.warn("Warning: KaTeX doesn't work in quirks mode. Make sure your website has a suitable doctype."),$n=function(){throw new z("KaTeX doesn't work in quirks mode.")});var Qo=function(t,u){var r=ur(t,u).toMarkup();return r},e2=function(t,u){var r=new $u(u);return tr(t,r)},jn=function(t,u,r){if(r.throwOnError||!(t instanceof z))throw t;var n=E(["katex-error"],[new _0(u)]);return n.setAttribute("title",t.toString()),n.setAttribute("style","color:"+r.errorColor),n},ur=function(t,u){var r=new $u(u);try{var n=tr(t,r);return Xl(n,t,r)}catch(a){return jn(a,t,r)}},t2=function(t,u){var r=new $u(u);try{var n=tr(t,r);return Yl(n,t,r)}catch(a){return jn(a,t,r)}},u2="0.17.0",r2={Span:Be,Anchor:Ft,SymbolNode:_0,SvgNode:te,PathNode:fe,LineNode:gu},n2={version:u2,render:$n,renderToString:Qo,ParseError:z,SETTINGS_SCHEMA:pu,__parse:e2,__renderToDomTree:ur,__renderToHTMLTree:t2,__setFontMetrics:Fl,__defineSymbol:l,__defineFunction:I,__defineMacro:m,__domTree:r2};const a2=Object.freeze({throwOnError:!1,strict:"ignore"}),gt=(e,t)=>{let u=0;for(let r=t-1;r>=0&&e[r]==="\\";r-=1)u+=1;return u%2===1},i2=(e,t,u)=>{for(let r=t;r<e.length;r+=1){if(e[r]===`
273
+ `||e[r]==="`")return-1;if(!(!e.startsWith(u,r)||gt(e,r))&&!(u==="$"&&(e[r+1]==="$"||/\d/.test(e[r+1]||""))))return r}return-1},m1=(e,t,u)=>{try{const r=n2.renderToString(e,{...a2,displayMode:t}),n=u(e);return t?`<div class="katex-block" data-math-source="${n}">${r}</div>`:`<span data-math-source="${n}">${r}</span>`}catch(r){return console.error("[rich-text] math render failed; showing source text",r),`<span class="katex-error">${u(e)}</span>`}},s2=e=>{e.inline.ruler.before("escape","rich_math_inline",(t,u)=>{const r=t.pos;let n=null,a=null;if(t.src[r]==="$"&&t.src[r+1]!=="$"&&t.src[r-1]!=="$"&&!gt(t.src,r)?(n="$",a="$"):t.src.startsWith("\\(",r)&&!gt(t.src,r)&&(n="\\(",a="\\)"),!n||/\s/.test(t.src[r+n.length]||""))return!1;const i=i2(t.src,r+n.length,a);if(i<0||/\s/.test(t.src[i-1]||""))return!1;if(!u){const s=t.push("rich_math_inline","math",0);s.content=t.src.slice(r+n.length,i),s.markup=n}return t.pos=i+a.length,!0}),e.block.ruler.after("blockquote","rich_math_block",(t,u,r,n)=>{if(t.sCount[u]-t.blkIndent>=4)return!1;const a=t.bMarks[u]+t.tShift[u],i=t.eMarks[u],s=t.src.startsWith("$$",a)?"$$":t.src.startsWith("\\[",a)?"\\[":null;if(!s)return!1;const o=s==="$$"?"$$":"\\]",h=[t.src.slice(a+s.length,i)];let f=-1;for(let b=u;b<r;b+=1){const y=b===u?h[0]:t.src.slice(t.bMarks[b]+t.tShift[b],t.eMarks[b]),k=y.lastIndexOf(o);if(k>=0&&!gt(y,k)&&y.slice(k+o.length).trim()===""){b===u?h[0]=y.slice(0,k):h.push(y.slice(0,k)),f=b;break}b!==u&&h.push(y)}const p=h.join(`
274
+ `).trim();if(f<0||!p)return!1;if(n)return!0;const x=t.push("rich_math_block","math",0);return x.block=!0,x.content=p,x.map=[u,f+1],x.markup=s,t.line=f+1,!0},{alt:["paragraph","reference","blockquote","list"]}),e.renderer.rules.rich_math_inline=(t,u)=>m1(t[u].content,!1,e.utils.escapeHtml),e.renderer.rules.rich_math_block=(t,u)=>`${m1(t[u].content,!0,e.utils.escapeHtml)}
275
+ `},p1=new R0({breaks:!0,linkify:!0}).use(s2),b1=e=>{const t=document.createRange();return t.selectNode(e),t};function l2(e,t){if(!e||e.collapsed||!t)return"";const u=[...t.querySelectorAll("[data-math-source]")].filter(o=>e.intersectsNode(o));if(!u.length)return e.toString();const r=[];let n=e.startContainer,a=e.startOffset;for(const[o,h]of u.entries()){const f=b1(h),p=e.compareBoundaryPoints(Range.START_TO_START,f)<=0;if(o>0||p){const b=document.createRange();b.setStart(n,a),b.setEndBefore(h),r.push(b.toString())}r.push(h.getAttribute("data-math-source")||"");const x=document.createRange();x.setStartAfter(h),x.collapse(!0),n=x.startContainer,a=x.startOffset}const i=b1(u[u.length-1]);if(e.compareBoundaryPoints(Range.END_TO_END,i)>=0){const o=document.createRange();o.setStart(n,a),o.setEnd(e.endContainer,e.endOffset),r.push(o.toString())}return r.join("")}function o2(e){const t=e==null?"":String(e);try{return p1.render(t)}catch(u){return console.error("[rich-text] render failed; showing source text",u),`<p>${p1.utils.escapeHtml(t).replace(/\n/g,`<br>
276
+ `)}</p>`}}function hu({children:e,className:t=""}){const u=Z.useMemo(()=>o2(e),[e]);return Z.createElement("div",{className:`rich-text${t?` ${t}`:""}`,dangerouslySetInnerHTML:{__html:u}})}const c2={command:"terminal",read:"eye",write:"pencil",search:"search",tool:"command"};function h2({sessionId:e,active:t}){const u=C1(),[r,n]=Z.useState(null),[a,i]=Z.useState(!1),[s,o]=Z.useState(()=>new Set);if(Z.useEffect(()=>{if(t)return n(null),na(e,n)},[e,t]),Z.useEffect(()=>{r!=null&&r.workingNote||i(!1)},[r==null?void 0:r.workingNote]),Z.useEffect(()=>o(new Set),[r==null?void 0:r.turnId,r==null?void 0:r.workingNote]),!(r!=null&&r.workingNote))return null;const h=f=>o(p=>{const x=new Set(p);return x.has(f)?x.delete(f):x.add(f),x});return H.jsxs("div",{className:"m-execution-trace",children:[H.jsxs("button",{type:"button",className:"m-execution-entry",onClick:()=>i(!0),"aria-label":u("session.executionOpen"),children:[H.jsx(nt,{name:"list-checks",size:15}),H.jsx("span",{children:r.workingNote}),H.jsx(nt,{name:"chevron-right",size:15})]}),a&&H.jsxs(ca,{title:u("session.executionTitle"),closeLabel:u("session.executionClose"),className:"execution-trace-modal",onClose:()=>i(!1),children:[H.jsx("div",{className:"execution-note",children:r.workingNote}),H.jsx("ol",{className:"execution-steps",children:r.steps.length?r.steps.map(f=>{const p=!!f.detail,x=p&&s.has(f.id),b=`execution-step-${f.id}`,y=H.jsxs(H.Fragment,{children:[H.jsx(nt,{name:c2[f.kind]||"command",size:16}),H.jsx("span",{className:"execution-step-label",children:f.label}),H.jsx("span",{className:"execution-step-state",children:u(f.state==="running"?"session.executionRunning":"session.executionDone")}),p&&H.jsx(nt,{name:x?"chevron-down":"chevron-right",size:15})]});return H.jsxs("li",{className:`execution-step ${f.state}${x?" expanded":""}`,children:[p?H.jsx("button",{type:"button",className:"execution-step-toggle",onClick:()=>h(f.id),"aria-expanded":x,"aria-controls":b,children:y}):H.jsx("div",{className:"execution-step-row",children:y}),x&&H.jsx("div",{id:b,className:"execution-step-detail",children:f.detail})]},f.id)}):H.jsx("li",{className:"execution-empty",children:u("session.executionEmpty")})})]})]})}const du=e=>new Date(e).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"}),v1=e=>new Date(e).toLocaleDateString([],{month:"short",day:"numeric"}),g1=e=>new Date(e).toDateString(),d2=(e,t)=>e!=null&&e.length===t.length&&(e.length===0||JSON.stringify(e[e.length-1])===JSON.stringify(t[t.length-1])),f2='button, summary, a, input, textarea, select, option, label, [role], [contenteditable]:not([contenteditable="false"])',m2=new Set(["Backspace","Delete","Enter","ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Home","End","PageUp","PageDown"]),L0=Object.freeze({NORMAL:0,WORD:1,LINE:2}),rr=()=>typeof Highlight<"u"&&typeof CSS<"u"&&!!CSS.highlights,p2=()=>{rr()&&CSS.highlights.delete("timeline-sel")},x1=e=>!rr()||!e||e.collapsed?!1:(CSS.highlights.set("timeline-sel",new Highlight(e)),!0),b2=e=>{let t=!1;const u=n=>{if(n.clipboardData)try{n.clipboardData.setData("text/plain",e),n.preventDefault(),t=!0}catch{}};document.addEventListener("copy",u,!0);let r=!1;try{r=document.execCommand("copy")===!0}catch{}return document.removeEventListener("copy",u,!0),t&&r},v2=async e=>{var t;try{if(typeof((t=navigator.clipboard)==null?void 0:t.writeText)=="function")return await navigator.clipboard.writeText(e),!0}catch{}return b2(e)},Ct=(e,t,u)=>{var n;const r=(n=document.caretRangeFromPoint)==null?void 0:n.call(document,t,u);return r&&e.contains(r.startContainer)?r:null},y1=(e,t,u)=>{const r=Ct(e,t,u),n=r==null?void 0:r.startContainer;if(!n||n.nodeType!==Node.TEXT_NODE||!n.data)return null;const a=Math.min(r.startOffset,n.data.length);let i=null;if(typeof Intl.Segmenter=="function"){const o=[...new Intl.Segmenter(void 0,{granularity:"word"}).segment(n.data)];i=o.find(({index:h,segment:f,isWordLike:p})=>p&&h<=a&&a<h+f.length)||o.findLast(({index:h,segment:f,isWordLike:p})=>p&&h<a&&a<=h+f.length),i&&(i=[i.index,i.index+i.segment.length])}if(!i){const o=p=>/[\p{L}\p{M}\p{N}_]/u.test(p);let h=Math.min(a,n.data.length-1);if(!o(n.data[h])&&h>0&&o(n.data[h-1])&&(h-=1),!o(n.data[h]))return null;let f=h+1;for(;h>0&&o(n.data[h-1]);)h-=1;for(;f<n.data.length&&o(n.data[f]);)f+=1;i=[h,f]}const s=document.createRange();return s.setStart(n,i[0]),s.setEnd(n,i[1]),s},w1=(e,t,u)=>{const r=Ct(e,t,u),n=r==null?void 0:r.startContainer,a=(n==null?void 0:n.nodeType)===Node.ELEMENT_NODE?n:n==null?void 0:n.parentElement,i=a==null?void 0:a.closest(".m-ev-note, .m-ev-text");if(!i||!e.contains(i))return null;const s=document.createRange();return s.selectNodeContents(i),s},g2=(e,t,u)=>{const r=e.compareBoundaryPoints(Range.START_TO_START,t)<=0,n=r?e:t,a=r?t:e,i=document.createRange();return i.setStart(n.startContainer,n.startOffset),u===L0.NORMAL?i.setEnd(a.startContainer,a.startOffset):i.setEnd(a.endContainer,a.endOffset),i};function D2({s:e,sessions:t=[],active:u=!0}){const r=C1(),n=Kn(),[a,i]=Z.useState(null),[s,o]=Z.useState(null),[h,f]=Z.useState(""),[p,x]=Z.useState(!1),[b,y]=Z.useState(null),[k,A]=Z.useState(null),D=Z.useRef(null),S=Z.useRef(null),_=Z.useRef(null),T=Z.useRef(null),B=Z.useRef(null),q=Z.useRef(null),L=Z.useRef(!0),$=Z.useCallback(()=>aa(e.id).then(R=>{R&&i(O=>d2(O,R.events)?O:R.events)}),[e.id]);Z.useEffect(()=>{u&&(i(null),o(null),A(null),L.current=!0,$(),ia(e.id).then(R=>{R&&o(R)}))},[e.id,$,u]),Z.useEffect(()=>{if(!u||n||document.visibilityState==="hidden")return;const R=requestAnimationFrame(()=>{const O=_.current;u&&!n&&document.visibilityState!=="hidden"&&(O==null?void 0:O.offsetParent)!==null&&getComputedStyle(O).visibility!=="hidden"&&document.activeElement!==O&&O.focus()});return()=>cancelAnimationFrame(R)},[e.id,u,n]),Z.useEffect(()=>{if(!u)return;const R=setInterval($,8e3);return()=>clearInterval(R)},[$,u]),Z.useEffect(()=>{u&&$()},[e.status,e.note,$,u]);const U=Z.useCallback(()=>{const R=D.current;R&&L.current&&(R.scrollTop=R.scrollHeight)},[]),i0=()=>{const R=D.current;R&&(L.current=R.scrollHeight-R.scrollTop-R.clientHeight<48)};Z.useLayoutEffect(U,[a,U]),Z.useLayoutEffect(()=>{if(!u||typeof ResizeObserver!="function")return;const R=S.current;if(!R)return;const O=new ResizeObserver(U);return O.observe(R),()=>O.disconnect()},[u,U]);const r0=()=>{B.current=null,p2(),A(null)},K=Z.useCallback(async R=>{clearTimeout(q.current),A(null);const O=await v2(R);return A(O?"copied":"failed"),O&&(q.current=setTimeout(()=>A(null),1200)),O},[]);Z.useEffect(()=>()=>clearTimeout(q.current),[]);const X0=R=>{const O=D.current,d0=R.target;if(R.button!==0||!O||!(d0 instanceof Element))return;const W=d0.closest(f2);if(W&&O.contains(W))return;if(d0===O){const N0=O.getBoundingClientRect();if(R.clientX-N0.left-O.clientLeft>=O.clientWidth||R.clientY-N0.top-O.clientTop>=O.clientHeight)return}const e0=R.detail===1?L0.NORMAL:R.detail===2?L0.WORD:R.detail===3?L0.LINE:null;if(e0===null)return;const p0=e0===L0.WORD?y1(O,R.clientX,R.clientY):e0===L0.LINE?w1(O,R.clientX,R.clientY):Ct(O,R.clientX,R.clientY);p0&&(r0(),R.preventDefault(),T.current={mode:e0,anchor:p0.cloneRange(),x:R.clientX,y:R.clientY},e0!==L0.NORMAL&&(B.current=p0,x1(p0)))};Z.useEffect(()=>{if(!u)return;const R=W=>{const e0=T.current,p0=D.current;if(!e0||!p0||(W.preventDefault(),e0.mode===L0.NORMAL&&Math.hypot(W.clientX-e0.x,W.clientY-e0.y)<3))return;const N0=e0.mode===L0.WORD?y1(p0,W.clientX,W.clientY):e0.mode===L0.LINE?w1(p0,W.clientX,W.clientY):Ct(p0,W.clientX,W.clientY);if(!N0||!e0.anchor.startContainer.isConnected)return;const B0=g2(e0.anchor,N0,e0.mode);B.current=B0,x1(B0)},O=()=>{T.current=null},d0=W=>{const e0=B.current,p0=_.current;if(!e0||e0.collapsed||!p0)return;const N0=W.ctrlKey||W.metaKey,B0=W.key.toLowerCase();if(W.key==="Escape"){r0();return}if(N0&&B0==="c"){if(document.activeElement!==p0||p0.selectionStart!==p0.selectionEnd)return;W.preventDefault(),W.stopPropagation(),K(l2(e0,D.current));return}if(document.activeElement!==p0)return;const Ke=W.key.length===1&&!N0&&!W.altKey,ae=N0&&!W.altKey&&["a","v","x","y","z"].includes(B0),Je=W.isComposing||W.key==="Process"||W.key==="Dead";(Ke||ae||Je||m2.has(W.key))&&r0()};return document.addEventListener("mousemove",R,!0),document.addEventListener("mouseup",O,!0),document.addEventListener("keydown",d0,!0),()=>{T.current=null,r0(),document.removeEventListener("mousemove",R,!0),document.removeEventListener("mouseup",O,!0),document.removeEventListener("keydown",d0,!0)}},[u,K]);const x0=()=>r0(),l0=async()=>{const R=h.trim();if(!R||p)return;x(!0),y(null);const O=await sa(e.id,R,{replyVia:"note"});x(!1),O.ok?(f(""),$()):y(O.error||r("mobile.sendFailed"))},T0=R=>{if(!R)return r("mobile.you");const O=t.find(d0=>d0.id===R);return O?ra(O):R.slice(0,8)},M0=[];let Y0=null;for(const[R,O]of(a||[]).entries())if(g1(O.ts)!==Y0&&(Y0=g1(O.ts),M0.push(H.jsx("div",{className:"m-day",children:v1(O.ts)},`d${R}`))),O.kind==="status"){const d0=O.display||O.status;M0.push(H.jsxs("div",{className:"m-ev",children:[H.jsxs("div",{className:"m-ev-head",children:[H.jsx("span",{className:"m-ev-glyph",style:{color:cr[d0]},children:ea[d0]||"·"}),H.jsx("span",{className:"m-ev-word",style:{color:cr[d0]},children:r(`status.${d0}`)}),H.jsx("span",{className:"m-ev-time",children:du(O.ts)})]}),O.note&&H.jsxs("div",{className:"m-ev-note",children:[H.jsx(hu,{children:O.note}),!rr()&&H.jsx("button",{type:"button",className:"m-copy-note",onClick:()=>K(O.note),children:r("mobile.copy")})]})]},R))}else M0.push(H.jsxs("div",{className:"m-ev m-ev-sent",children:[H.jsxs("div",{className:"m-ev-head",children:[H.jsx("span",{className:"m-ev-from",children:T0(O.from)}),H.jsx("span",{className:"m-ev-time",children:du(O.ts)})]}),H.jsx("div",{className:"m-ev-text",children:H.jsx(hu,{children:O.text})})]},R));const Re=e.liveness==="offline"||e.status==="offline";return H.jsxs("div",{className:"tl-chat",children:[H.jsx("div",{className:"m-timeline",ref:D,onScroll:i0,onMouseDownCapture:Jn,onMouseDown:X0,children:H.jsxs("div",{ref:S,children:[(s==null?void 0:s.prompt)&&H.jsxs("details",{className:"m-ev m-ev-prompt",children:[H.jsxs("summary",{children:[r("mobile.asked"),e.created?` · ${v1(e.created)} ${du(e.created)}`:""]}),H.jsx("div",{className:"m-ev-text",children:H.jsx(hu,{children:s.prompt})})]}),a===null?H.jsx("div",{className:"m-empty",children:r("common.loading")}):M0.length===0?H.jsx("div",{className:"m-empty",children:r("mobile.noEvents")}):M0,H.jsx(h2,{sessionId:e.id,active:u})]})}),k&&H.jsx("div",{className:`m-copy-status ${k}`,role:"status","aria-live":"polite","aria-atomic":"true",children:r(`mobile.${k==="copied"?"copied":"copyFailed"}`)}),Re&&H.jsx("div",{className:"m-offline",children:r("mobile.offlineHint")}),b&&H.jsx("div",{className:"m-senderr",children:b}),H.jsx("div",{className:"m-composer",children:H.jsxs("div",{className:"m-composer-line",children:[H.jsx(ta,{ref:_,className:"m-input","data-focus-sink":u?"":void 0,rows:1,placeholder:r("mobile.inputPlaceholder"),value:h,onMouseDownCapture:x0,onChange:R=>f(R.target.value),onKeyDown:R=>{R.key==="Enter"&&!R.shiftKey&&!ua(R)&&(R.preventDefault(),R.stopPropagation(),l0())}}),H.jsx("button",{className:"m-send",disabled:!h.trim()||p,onClick:l0,children:r("mobile.send")})]})})]})}async function S2(e,t){var u,r;try{const n=((r=(u=globalThis.crypto)==null?void 0:u.randomUUID)==null?void 0:r.call(u))||`session-create-${Date.now()}-${Math.random().toString(16).slice(2)}`,a=await fetch(Qn("/api/sessions"),{method:"POST",headers:{"Content-Type":"application/json","Idempotency-Key":n},body:JSON.stringify({prompt:e,...t?{launcher:t}:{}})}),i=await a.json().catch(()=>null);return{ok:a.ok,error:i==null?void 0:i.error}}catch{return{ok:!1}}}let we=null,pt=null;const x2=()=>we?Promise.resolve(we):(pt||(pt=oa().then(e=>(we=e,e)).catch(e=>{throw pt=null,e})),pt),k1=e=>Array.isArray(e==null?void 0:e.launchers)?e.launchers:[],y2=()=>{try{return localStorage.getItem("si.launcher")||""}catch{return""}},A1=(e,t,u=y2())=>{var r;return e.some(n=>n.name===u)?u:t&&e.some(n=>n.name===t)?t:((r=e[0])==null?void 0:r.name)||u};function E2(){const e=k1(we),[t,u]=Z.useState(e),[r,n]=Z.useState(()=>A1(e,we==null?void 0:we.default)),a=i=>{n(i);try{localStorage.setItem("si.launcher",i)}catch{}};return Z.useEffect(()=>{x2().then(i=>{const s=k1(i);s.length&&(u(s),n(o=>A1(s,i.default,o)))}).catch(()=>{})},[]),{launchers:t,launcher:r,pickLauncher:a}}function _2(){const[e,t]=Z.useState([]);return Z.useEffect(()=>{la().then(u=>{Array.isArray(u)&&t(u)}).catch(()=>{})},[]),e}export{hu as R,D2 as T,_2 as a,S2 as c,E2 as u};