oasis-editor 0.0.1

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 (287) hide show
  1. package/README.md +1 -0
  2. package/dist/__tests__/app/PersistenceService.test.d.ts +1 -0
  3. package/dist/__tests__/app/footnoteUiCommands.test.d.ts +1 -0
  4. package/dist/__tests__/commands/text.test.d.ts +1 -0
  5. package/dist/__tests__/core/editorPluginIntegration.test.d.ts +1 -0
  6. package/dist/__tests__/core/editorState.test.d.ts +1 -0
  7. package/dist/__tests__/core/footnotes.test.d.ts +1 -0
  8. package/dist/__tests__/core/model.test.d.ts +1 -0
  9. package/dist/__tests__/core/pluginCollection.test.d.ts +1 -0
  10. package/dist/__tests__/core/tableCommands.test.d.ts +1 -0
  11. package/dist/__tests__/export/docxExport.test.d.ts +1 -0
  12. package/dist/__tests__/export/footnotesExport.test.d.ts +1 -0
  13. package/dist/__tests__/export/pdfWriter.test.d.ts +1 -0
  14. package/dist/__tests__/export/underlineStyle.test.d.ts +1 -0
  15. package/dist/__tests__/import/docxComplexSmoke.test.d.ts +1 -0
  16. package/dist/__tests__/import/docxImport.test.d.ts +1 -0
  17. package/dist/__tests__/import/footnotesImport.test.d.ts +1 -0
  18. package/dist/__tests__/integration/documentFlow.test.d.ts +1 -0
  19. package/dist/__tests__/ui/CanvasTableLayout.test.d.ts +1 -0
  20. package/dist/__tests__/ui/canvasHitTestService.test.d.ts +1 -0
  21. package/dist/__tests__/ui/canvasLayoutSnapshot.test.d.ts +1 -0
  22. package/dist/__tests__/ui/canvasSelectionGeometry.test.d.ts +1 -0
  23. package/dist/__tests__/ui/canvasTextRendering.test.d.ts +1 -0
  24. package/dist/__tests__/ui/composeMeasuredParagraphLines.test.d.ts +1 -0
  25. package/dist/__tests__/ui/dialog.test.d.ts +1 -0
  26. package/dist/__tests__/ui/fontDialog.test.d.ts +1 -0
  27. package/dist/__tests__/ui/footnotesLayout.test.d.ts +1 -0
  28. package/dist/__tests__/ui/layoutIdentity.test.d.ts +1 -0
  29. package/dist/__tests__/ui/layoutProjection.test.d.ts +1 -0
  30. package/dist/__tests__/ui/registry.test.d.ts +1 -0
  31. package/dist/__tests__/ui/tabs.test.d.ts +1 -0
  32. package/dist/__tests__/ui/textMeasurementAlignment.test.d.ts +1 -0
  33. package/dist/__tests__/word-parity/fixtures/corpus.d.ts +10 -0
  34. package/dist/__tests__/word-parity/fixtures/loremFixtures.d.ts +8 -0
  35. package/dist/__tests__/word-parity/wordLayout.word-parity.d.ts +1 -0
  36. package/dist/app/bootstrap/createOasisEditorApp.d.ts +6 -0
  37. package/dist/app/bootstrap/createOasisEditorContainer.d.ts +6 -0
  38. package/dist/app/clipboard/htmlClipboardParser.d.ts +3 -0
  39. package/dist/app/controllers/EditorCommandRegistry.d.ts +23 -0
  40. package/dist/app/controllers/EditorCommandsController.d.ts +53 -0
  41. package/dist/app/controllers/documentIO/DocumentExporter.d.ts +11 -0
  42. package/dist/app/controllers/documentIO/DocumentImporter.d.ts +17 -0
  43. package/dist/app/controllers/documentIO/ImageInsertionService.d.ts +14 -0
  44. package/dist/app/controllers/documentIO/downloadBlob.d.ts +1 -0
  45. package/dist/app/controllers/tableOpsCellSpanCommands.d.ts +21 -0
  46. package/dist/app/controllers/tableOpsGuards.d.ts +19 -0
  47. package/dist/app/controllers/tableOpsMutationCommands.d.ts +4 -0
  48. package/dist/app/controllers/tableOpsRowColumnCommands.d.ts +12 -0
  49. package/dist/app/controllers/tableOpsSelectionAwareCommands.d.ts +20 -0
  50. package/dist/app/controllers/tableOpsSelectionNavigation.d.ts +7 -0
  51. package/dist/app/controllers/tableOpsSelectionRanges.d.ts +34 -0
  52. package/dist/app/controllers/useEditorClipboard.d.ts +28 -0
  53. package/dist/app/controllers/useEditorDocumentIO.d.ts +31 -0
  54. package/dist/app/controllers/useEditorFindReplace.d.ts +28 -0
  55. package/dist/app/controllers/useEditorHistoryActions.d.ts +21 -0
  56. package/dist/app/controllers/useEditorImageOperations.d.ts +72 -0
  57. package/dist/app/controllers/useEditorKeyboard.d.ts +50 -0
  58. package/dist/app/controllers/useEditorLayout.d.ts +42 -0
  59. package/dist/app/controllers/useEditorNavigation.d.ts +22 -0
  60. package/dist/app/controllers/useEditorPersistence.d.ts +16 -0
  61. package/dist/app/controllers/useEditorRevision.d.ts +12 -0
  62. package/dist/app/controllers/useEditorStyle.d.ts +23 -0
  63. package/dist/app/controllers/useEditorSurfaceEvents.d.ts +44 -0
  64. package/dist/app/controllers/useEditorTableDrag.d.ts +29 -0
  65. package/dist/app/controllers/useEditorTableOperations.d.ts +45 -0
  66. package/dist/app/controllers/useEditorTableResize.d.ts +32 -0
  67. package/dist/app/controllers/useEditorTextDrag.d.ts +38 -0
  68. package/dist/app/controllers/useEditorTextInput.d.ts +27 -0
  69. package/dist/app/services/FindReplaceService.d.ts +12 -0
  70. package/dist/app/services/PersistenceService.d.ts +11 -0
  71. package/dist/assets/Arimo-Bold.ttf +0 -0
  72. package/dist/assets/Arimo-BoldItalic.ttf +0 -0
  73. package/dist/assets/Arimo-Italic.ttf +0 -0
  74. package/dist/assets/Arimo-Regular.ttf +0 -0
  75. package/dist/assets/Carlito-Bold.ttf +0 -0
  76. package/dist/assets/Carlito-BoldItalic.ttf +0 -0
  77. package/dist/assets/Carlito-Italic.ttf +0 -0
  78. package/dist/assets/Carlito-Regular.ttf +0 -0
  79. package/dist/assets/Roboto-Italic.ttf +0 -0
  80. package/dist/assets/Roboto-Medium.ttf +0 -0
  81. package/dist/assets/Roboto-MediumItalic.ttf +0 -0
  82. package/dist/assets/Roboto-Regular.ttf +0 -0
  83. package/dist/assets/Tinos-Bold.ttf +0 -0
  84. package/dist/assets/Tinos-BoldItalic.ttf +0 -0
  85. package/dist/assets/Tinos-Italic.ttf +0 -0
  86. package/dist/assets/Tinos-Regular.ttf +0 -0
  87. package/dist/assets/importDocxWorker-DIQ28Lka.js +12 -0
  88. package/dist/core/Editor.d.ts +33 -0
  89. package/dist/core/cloneState.d.ts +8 -0
  90. package/dist/core/commands/CommandBus.d.ts +9 -0
  91. package/dist/core/commands/CommandRef.d.ts +10 -0
  92. package/dist/core/commands/CommandRegistry.d.ts +10 -0
  93. package/dist/core/commands/block.d.ts +11 -0
  94. package/dist/core/commands/clipboard.d.ts +13 -0
  95. package/dist/core/commands/footnotes.d.ts +27 -0
  96. package/dist/core/commands/history.d.ts +7 -0
  97. package/dist/core/commands/image.d.ts +15 -0
  98. package/dist/core/commands/link.d.ts +4 -0
  99. package/dist/core/commands/list.d.ts +10 -0
  100. package/dist/core/commands/misc.d.ts +3 -0
  101. package/dist/core/commands/selection.d.ts +12 -0
  102. package/dist/core/commands/table.d.ts +10 -0
  103. package/dist/core/commands/text.d.ts +12 -0
  104. package/dist/core/commands/utils.d.ts +69 -0
  105. package/dist/core/editorCommands.d.ts +14 -0
  106. package/dist/core/editorState.d.ts +66 -0
  107. package/dist/core/engine.d.ts +13 -0
  108. package/dist/core/footnotes.d.ts +42 -0
  109. package/dist/core/headings.d.ts +9 -0
  110. package/dist/core/model/queries.d.ts +8 -0
  111. package/dist/core/model.d.ts +447 -0
  112. package/dist/core/plugin.d.ts +64 -0
  113. package/dist/core/plugins/PluginCollection.d.ts +16 -0
  114. package/dist/core/selection.d.ts +19 -0
  115. package/dist/core/tableLayout.d.ts +13 -0
  116. package/dist/core/textStyleMappings.d.ts +8 -0
  117. package/dist/core/wordBoundaries.d.ts +7 -0
  118. package/dist/demo/OasisSiteApp.d.ts +1 -0
  119. package/dist/export/docx/docxTypes.d.ts +66 -0
  120. package/dist/export/docx/exportEditorDocumentToDocx.d.ts +4 -0
  121. package/dist/export/docx/footnotesXml.d.ts +40 -0
  122. package/dist/export/docx/tableXml.d.ts +4 -0
  123. package/dist/export/docx/textXml.d.ts +6 -0
  124. package/dist/export/docx/xmlUtils.d.ts +10 -0
  125. package/dist/export/pdf/OasisPdfWriter.d.ts +93 -0
  126. package/dist/export/pdf/draw/drawBlockList.d.ts +5 -0
  127. package/dist/export/pdf/draw/drawFragment.d.ts +7 -0
  128. package/dist/export/pdf/draw/drawPageBackground.d.ts +3 -0
  129. package/dist/export/pdf/draw/drawParagraph.d.ts +5 -0
  130. package/dist/export/pdf/draw/drawTable.d.ts +5 -0
  131. package/dist/export/pdf/draw/fragmentGeometry.d.ts +12 -0
  132. package/dist/export/pdf/draw/lists.d.ts +6 -0
  133. package/dist/export/pdf/exportEditorDocumentToPdf.d.ts +4 -0
  134. package/dist/export/pdf/fonts/PdfFontRegistry.d.ts +28 -0
  135. package/dist/export/pdf/fonts/collectPdfFontFamilies.d.ts +3 -0
  136. package/dist/export/pdf/images.d.ts +4 -0
  137. package/dist/export/pdf/layout/PdfTextMeasurer.d.ts +24 -0
  138. package/dist/export/pdf/layout/layoutParagraph.d.ts +37 -0
  139. package/dist/export/pdf/units.d.ts +6 -0
  140. package/dist/i18n/index.d.ts +7 -0
  141. package/dist/i18n/locales/en.d.ts +251 -0
  142. package/dist/i18n/locales/pt-BR.d.ts +251 -0
  143. package/dist/import/docx/assetRegistry.d.ts +18 -0
  144. package/dist/import/docx/footnotes.d.ts +17 -0
  145. package/dist/import/docx/headerFooter.d.ts +7 -0
  146. package/dist/import/docx/importDocxInWorker.d.ts +8 -0
  147. package/dist/import/docx/importDocxToEditorDocument.d.ts +7 -0
  148. package/dist/import/docx/importDocxWorker.d.ts +1 -0
  149. package/dist/import/docx/numbering.d.ts +9 -0
  150. package/dist/import/docx/paragraphs.d.ts +12 -0
  151. package/dist/import/docx/relationships.d.ts +4 -0
  152. package/dist/import/docx/runs.d.ts +41 -0
  153. package/dist/import/docx/sectionProperties.d.ts +16 -0
  154. package/dist/import/docx/settings.d.ts +4 -0
  155. package/dist/import/docx/styles.d.ts +24 -0
  156. package/dist/import/docx/tables.d.ts +8 -0
  157. package/dist/import/docx/themeFonts.d.ts +12 -0
  158. package/dist/import/docx/units.d.ts +9 -0
  159. package/dist/import/docx/xmlHelpers.d.ts +15 -0
  160. package/dist/index.d.ts +43 -0
  161. package/dist/layoutProjection/blockHeights.d.ts +1 -0
  162. package/dist/layoutProjection/blocksPagination.d.ts +18 -0
  163. package/dist/layoutProjection/constants.d.ts +1 -0
  164. package/dist/layoutProjection/documentLayout.d.ts +7 -0
  165. package/dist/layoutProjection/footnotePagination.d.ts +21 -0
  166. package/dist/layoutProjection/headerFooterFootnotes.d.ts +4 -0
  167. package/dist/layoutProjection/headerFooterProjection.d.ts +14 -0
  168. package/dist/layoutProjection/index.d.ts +7 -0
  169. package/dist/layoutProjection/paragraphPagination.d.ts +20 -0
  170. package/dist/layoutProjection/paragraphProjection.d.ts +1 -0
  171. package/dist/layoutProjection/sectionPagination.d.ts +35 -0
  172. package/dist/layoutProjection/tablePagination.d.ts +14 -0
  173. package/dist/layoutProjection/tableProjection.d.ts +1 -0
  174. package/dist/main.d.ts +1 -0
  175. package/dist/oasis-editor.css +1 -0
  176. package/dist/oasis-editor.js +80464 -0
  177. package/dist/oasis-editor.umd.cjs +24 -0
  178. package/dist/plugins/internal/createEssentialsPlugin.d.ts +135 -0
  179. package/dist/plugins/internal/essentialsCommandBuilders.d.ts +10 -0
  180. package/dist/plugins/internal/essentialsCommandGroups.d.ts +39 -0
  181. package/dist/testing/wordLayoutParity.d.ts +62 -0
  182. package/dist/ui/OasisEditorApp.d.ts +4 -0
  183. package/dist/ui/OasisEditorAppProps.d.ts +49 -0
  184. package/dist/ui/OasisEditorContainer.d.ts +6 -0
  185. package/dist/ui/OasisEditorEditor.d.ts +103 -0
  186. package/dist/ui/app/EditorDialogsLayer.d.ts +26 -0
  187. package/dist/ui/app/EditorDragLayers.d.ts +20 -0
  188. package/dist/ui/app/EditorWorkspace.d.ts +37 -0
  189. package/dist/ui/app/buildEditorViewProps.d.ts +59 -0
  190. package/dist/ui/app/createEditorEssentialsPlugin.d.ts +42 -0
  191. package/dist/ui/app/createRuntimeCommandHost.d.ts +29 -0
  192. package/dist/ui/app/fontOptions.d.ts +5 -0
  193. package/dist/ui/app/shouldShowCaret.d.ts +9 -0
  194. package/dist/ui/app/useCanvasSurfaceHitResolver.d.ts +16 -0
  195. package/dist/ui/app/useEditorAppState.d.ts +11 -0
  196. package/dist/ui/app/useEditorContextMenuClipboard.d.ts +33 -0
  197. package/dist/ui/app/useEditorDialogs.d.ts +38 -0
  198. package/dist/ui/app/useEditorFocus.d.ts +11 -0
  199. package/dist/ui/app/useEditorFontOptions.d.ts +17 -0
  200. package/dist/ui/app/useEditorInteractionWiring.d.ts +64 -0
  201. package/dist/ui/app/useEditorRuntimeBootstrap.d.ts +33 -0
  202. package/dist/ui/app/useEditorRuntimePlugins.d.ts +14 -0
  203. package/dist/ui/app/useEditorTransactions.d.ts +20 -0
  204. package/dist/ui/app/useEditorUiOptions.d.ts +24 -0
  205. package/dist/ui/app/useFontDialogBridge.d.ts +31 -0
  206. package/dist/ui/canvas/CanvasDebug.d.ts +125 -0
  207. package/dist/ui/canvas/CanvasGeometry.d.ts +35 -0
  208. package/dist/ui/canvas/CanvasHitTestService.d.ts +37 -0
  209. package/dist/ui/canvas/CanvasLayoutSnapshot.d.ts +93 -0
  210. package/dist/ui/canvas/CanvasSelectionGeometry.d.ts +20 -0
  211. package/dist/ui/canvas/CanvasTableLayout.d.ts +65 -0
  212. package/dist/ui/canvas/canvasBlockPainter.d.ts +4 -0
  213. package/dist/ui/canvas/canvasImageCache.d.ts +1 -0
  214. package/dist/ui/canvas/canvasPageRenderer.d.ts +18 -0
  215. package/dist/ui/canvas/canvasParagraphPainter.d.ts +12 -0
  216. package/dist/ui/canvas/canvasTablePainter.d.ts +3 -0
  217. package/dist/ui/canvas/listNumbering.d.ts +3 -0
  218. package/dist/ui/caretGeometry.d.ts +30 -0
  219. package/dist/ui/clipboardImage.d.ts +2 -0
  220. package/dist/ui/components/CanvasEditorSurface.d.ts +5 -0
  221. package/dist/ui/components/CaretOverlay.d.ts +9 -0
  222. package/dist/ui/components/ContextMenu/ContextMenu.d.ts +19 -0
  223. package/dist/ui/components/Dialogs/Dialog.d.ts +17 -0
  224. package/dist/ui/components/Dialogs/FontDialog.d.ts +67 -0
  225. package/dist/ui/components/Dialogs/FontDialogModel.d.ts +15 -0
  226. package/dist/ui/components/Dialogs/ImageAltDialog.d.ts +8 -0
  227. package/dist/ui/components/Dialogs/LineSpacingDialog.d.ts +17 -0
  228. package/dist/ui/components/Dialogs/LinkDialog.d.ts +8 -0
  229. package/dist/ui/components/DropCaret.d.ts +16 -0
  230. package/dist/ui/components/FindReplace/FindReplaceDialog.d.ts +7 -0
  231. package/dist/ui/components/FloatingToolbar/FloatingTableToolbar.d.ts +11 -0
  232. package/dist/ui/components/Menubar/Menubar.d.ts +7 -0
  233. package/dist/ui/components/Menubar/defaultMenuItems.d.ts +3 -0
  234. package/dist/ui/components/Menubar/menuRegistry.d.ts +28 -0
  235. package/dist/ui/components/Outline/OutlinePanel.d.ts +10 -0
  236. package/dist/ui/components/PageBreak.d.ts +4 -0
  237. package/dist/ui/components/RevisionOverlay.d.ts +6 -0
  238. package/dist/ui/components/SelectionOverlay.d.ts +11 -0
  239. package/dist/ui/components/Tabs/Tabs.d.ts +18 -0
  240. package/dist/ui/components/TitleBar/TitleBar.d.ts +6 -0
  241. package/dist/ui/components/Toolbar/LineSpacingButton.d.ts +6 -0
  242. package/dist/ui/components/Toolbar/Toolbar.d.ts +15 -0
  243. package/dist/ui/components/Toolbar/ToolbarOverflowManager.d.ts +13 -0
  244. package/dist/ui/components/Toolbar/controls/ListOptionsControl.d.ts +7 -0
  245. package/dist/ui/components/Toolbar/controls/UnderlineControl.d.ts +10 -0
  246. package/dist/ui/components/Toolbar/groups/MetricGroup.d.ts +6 -0
  247. package/dist/ui/components/Toolbar/groups/SectionGroup.d.ts +6 -0
  248. package/dist/ui/components/Toolbar/groups/TableGroup.d.ts +6 -0
  249. package/dist/ui/components/Toolbar/presets/defaultPalette.d.ts +4 -0
  250. package/dist/ui/components/Toolbar/presets/defaultToolbar.d.ts +9 -0
  251. package/dist/ui/components/Toolbar/primitives/Button.d.ts +11 -0
  252. package/dist/ui/components/Toolbar/primitives/ColorPicker.d.ts +22 -0
  253. package/dist/ui/components/Toolbar/primitives/GridPicker.d.ts +12 -0
  254. package/dist/ui/components/Toolbar/primitives/Menu.d.ts +20 -0
  255. package/dist/ui/components/Toolbar/primitives/Popover.d.ts +34 -0
  256. package/dist/ui/components/Toolbar/primitives/Select.d.ts +12 -0
  257. package/dist/ui/components/Toolbar/primitives/Separator.d.ts +6 -0
  258. package/dist/ui/components/Toolbar/primitives/SplitButton.d.ts +30 -0
  259. package/dist/ui/components/Toolbar/primitives/useDismiss.d.ts +15 -0
  260. package/dist/ui/components/Toolbar/primitives/usePopoverPosition.d.ts +31 -0
  261. package/dist/ui/components/Toolbar/registry/ToolbarRegistry.d.ts +23 -0
  262. package/dist/ui/components/Toolbar/renderers/ToolbarItemRenderer.d.ts +13 -0
  263. package/dist/ui/components/Toolbar/renderers/renderers.d.ts +14 -0
  264. package/dist/ui/components/Toolbar/schema/items.d.ts +136 -0
  265. package/dist/ui/components/Toolbar/schema/palette.d.ts +15 -0
  266. package/dist/ui/components/Toolbar/state/bindItem.d.ts +28 -0
  267. package/dist/ui/components/Toolbar/state/createToolbarApi.d.ts +14 -0
  268. package/dist/ui/components/Toolbar/underlineStyles.d.ts +16 -0
  269. package/dist/ui/editorHistory.d.ts +25 -0
  270. package/dist/ui/editorUiTypes.d.ts +65 -0
  271. package/dist/ui/imageGeometry.d.ts +15 -0
  272. package/dist/ui/layoutIdentity.d.ts +23 -0
  273. package/dist/ui/layoutInvalidation.d.ts +9 -0
  274. package/dist/ui/mount.d.ts +10 -0
  275. package/dist/ui/shells/BalloonShell.d.ts +3 -0
  276. package/dist/ui/shells/DocumentShell.d.ts +29 -0
  277. package/dist/ui/shells/InlineShell.d.ts +3 -0
  278. package/dist/ui/tableGeometry.d.ts +16 -0
  279. package/dist/ui/tableUiUtils.d.ts +5 -0
  280. package/dist/ui/textMeasurement.d.ts +14 -0
  281. package/dist/ui/toolbarStyleState.d.ts +46 -0
  282. package/dist/ui/utils/IconManager.d.ts +2 -0
  283. package/dist/utils/indexeddb.d.ts +12 -0
  284. package/dist/utils/logger.d.ts +22 -0
  285. package/dist/utils/performanceMetrics.d.ts +58 -0
  286. package/dist/utils/throttle.d.ts +4 -0
  287. package/package.json +65 -0
@@ -0,0 +1,24 @@
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).OasisEditor={})}(this,function(e){"use strict";var t=Object.defineProperty,a=(e,a,r)=>((e,a,r)=>a in e?t(e,a,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[a]=r)(e,"symbol"!=typeof a?a+"":a,r),r="undefined"!=typeof document?document.currentScript:null;const n=Symbol("solid-proxy"),o="function"==typeof Proxy,i=Symbol("solid-track"),l=Symbol("solid-dev-component"),s={equals:(e,t)=>e===t};let d=F;const c=1,h=2,p={};var u=null;let f=null,g=null,m=null,v=null,y=0;function b(e,t){const a=g,r=u,n=0===e.length,o=void 0===t?r:t,i=n?{owned:null,cleanups:null,context:null,owner:null}:{owned:null,cleanups:null,context:o?o.context:null,owner:o},l=n?()=>e(()=>{throw new Error("Dispose method must be an explicit argument to createRoot function")}):()=>e(()=>S(()=>_(i)));u=i,g=null;try{return D(l,!0)}finally{g=a,u=r}}function M(e,t){const a={value:e,observers:null,observerSlots:null,comparator:(t=t?Object.assign({},s,t):s).equals||void 0};t.name&&(a.name=t.name),t.internal?a.internal=!0:P(a);return[L.bind(a),e=>("function"==typeof e&&(e=e(a.value)),O(a,e))]}function w(e,t,a){R(H(e,t,!1,c,a))}function x(e,t,a){d=B;const r=H(e,t,!1,c,a);a&&a.render||(r.user=!0),v?v.push(r):R(r)}function C(e,t,a){const r=H(e,t,!0,0,a=a?Object.assign({},s,a):s);return r.observers=null,r.observerSlots=null,r.comparator=a.equals||void 0,R(r),L.bind(r)}function S(e){if(null===g)return e();const t=g;g=null;try{return e()}finally{g=t}}function I(e,t,a){const r=Array.isArray(e);let n,o=a&&a.defer;return a=>{let i;if(r){i=Array(e.length);for(let t=0;t<e.length;t++)i[t]=e[t]()}else i=e();if(o)return o=!1,a;const l=S(()=>t(i,n,a));return n=i,l}}function k(e){x(()=>S(e))}function A(e){return null===u?console.warn("cleanups created outside a `createRoot` or `render` will never be run"):null===u.cleanups?u.cleanups=[e]:u.cleanups.push(e),e}function T(){return g}function P(e){u&&(u.sourceMap?u.sourceMap.push(e):u.sourceMap=[e],e.graph=u)}function E(e){const t=C(e),a=C(()=>q(t()),void 0,{name:"children"});return a.toArray=()=>{const e=a();return Array.isArray(e)?e:null!=e?[e]:[]},a}function L(){if(this.sources&&this.state)if(this.state===c)R(this);else{const e=m;m=null,D(()=>V(this),!1),m=e}if(g){const e=this.observers?this.observers.length:0;g.sources?(g.sources.push(this),g.sourceSlots.push(e)):(g.sources=[this],g.sourceSlots=[e]),this.observers?(this.observers.push(g),this.observerSlots.push(g.sources.length-1)):(this.observers=[g],this.observerSlots=[g.sources.length-1])}return this.value}function O(e,t,a){let r=e.value;return e.comparator&&e.comparator(r,t)||(e.value=t,e.observers&&e.observers.length&&D(()=>{for(let t=0;t<e.observers.length;t+=1){const a=e.observers[t],r=f&&f.running;r&&f.disposed.has(a),(r?a.tState:a.state)||(a.pure?m.push(a):v.push(a),a.observers&&z(a)),r||(a.state=c)}if(m.length>1e6)throw m=[],new Error("Potential Infinite Loop Detected.")},!1)),t}function R(e){if(!e.fn)return;_(e);const t=y;!function(e,t,a){let r;const n=u,o=g;g=u=e;try{r=e.fn(t)}catch(i){return e.pure&&(e.state=c,e.owned&&e.owned.forEach(_),e.owned=null),e.updatedAt=a+1,U(i)}finally{g=o,u=n}(!e.updatedAt||e.updatedAt<=a)&&(null!=e.updatedAt&&"observers"in e?O(e,r):e.value=r,e.updatedAt=a)}(e,e.value,t)}function H(e,t,a,r=c,n){const o={fn:e,state:r,updatedAt:null,owned:null,sources:null,sourceSlots:null,cleanups:null,value:t,owner:u,context:u?u.context:null,pure:a};return null===u?console.warn("computations created outside a `createRoot` or `render` will never be disposed"):u!==p&&(u.owned?u.owned.push(o):u.owned=[o]),n&&n.name&&(o.name=n.name),o}function N(e){if(0===e.state)return;if(e.state===h)return V(e);if(e.suspense&&S(e.suspense.inFallback))return e.suspense.effects.push(e);const t=[e];for(;(e=e.owner)&&(!e.updatedAt||e.updatedAt<y);)e.state&&t.push(e);for(let a=t.length-1;a>=0;a--)if((e=t[a]).state===c)R(e);else if(e.state===h){const a=m;m=null,D(()=>V(e,t[0]),!1),m=a}}function D(e,t){if(m)return e();let a=!1;t||(m=[]),v?a=!0:v=[],y++;try{const t=e();return function(e){m&&(F(m),m=null);if(e)return;const t=v;v=null,t.length&&D(()=>d(t),!1)}(a),t}catch(r){a||(v=null),m=null,U(r)}}function F(e){for(let t=0;t<e.length;t++)N(e[t])}function B(e){let t,a=0;for(t=0;t<e.length;t++){const r=e[t];r.user?e[a++]=r:N(r)}for(t=0;t<a;t++)N(e[t])}function V(e,t){e.state=0;for(let a=0;a<e.sources.length;a+=1){const r=e.sources[a];if(r.sources){const e=r.state;e===c?r!==t&&(!r.updatedAt||r.updatedAt<y)&&N(r):e===h&&V(r,t)}}}function z(e){for(let t=0;t<e.observers.length;t+=1){const a=e.observers[t];a.state||(a.state=h,a.pure?m.push(a):v.push(a),a.observers&&z(a))}}function _(e){let t;if(e.sources)for(;e.sources.length;){const t=e.sources.pop(),a=e.sourceSlots.pop(),r=t.observers;if(r&&r.length){const e=r.pop(),n=t.observerSlots.pop();a<r.length&&(e.sourceSlots[n]=a,r[a]=e,t.observerSlots[a]=n)}}if(e.tOwned){for(t=e.tOwned.length-1;t>=0;t--)_(e.tOwned[t]);delete e.tOwned}if(e.owned){for(t=e.owned.length-1;t>=0;t--)_(e.owned[t]);e.owned=null}if(e.cleanups){for(t=e.cleanups.length-1;t>=0;t--)e.cleanups[t]();e.cleanups=null}e.state=0,delete e.sourceMap}function U(e,t=u){const a=function(e){return e instanceof Error?e:new Error("string"==typeof e?e:"Unknown error",{cause:e})}(e);throw a}function q(e){if("function"==typeof e&&!e.length)return q(e());if(Array.isArray(e)){const t=[];for(let a=0;a<e.length;a++){const r=q(e[a]);Array.isArray(r)?t.push.apply(t,r):t.push(r)}return t}return e}const G=Symbol("fallback");function W(e){for(let t=0;t<e.length;t++)e[t]()}function j(e,t){return function(e,t){const a=H(()=>S(()=>(Object.assign(e,{[l]:!0}),e(t))),void 0,!0,0);return a.props=t,a.observers=null,a.observerSlots=null,a.name=e.name,a.component=e,R(a),void 0!==a.tValue?a.tValue:a.value}(e,t||{})}function X(){return!0}const Z={get:(e,t,a)=>t===n?a:e.get(t),has:(e,t)=>t===n||e.has(t),set:X,deleteProperty:X,getOwnPropertyDescriptor:(e,t)=>({configurable:!0,enumerable:!0,get:()=>e.get(t),set:X,deleteProperty:X}),ownKeys:e=>e.keys()};function K(e){return(e="function"==typeof e?e():e)?e:{}}function Y(){for(let e=0,t=this.length;e<t;++e){const t=this[e]();if(void 0!==t)return t}}function J(...e){let t=!1;for(let o=0;o<e.length;o++){const a=e[o];t=t||!!a&&n in a,e[o]="function"==typeof a?(t=!0,C(a)):a}if(o&&t)return new Proxy({get(t){for(let a=e.length-1;a>=0;a--){const r=K(e[a])[t];if(void 0!==r)return r}},has(t){for(let a=e.length-1;a>=0;a--)if(t in K(e[a]))return!0;return!1},keys(){const t=[];for(let a=0;a<e.length;a++)t.push(...Object.keys(K(e[a])));return[...new Set(t)]}},Z);const a={},r=Object.create(null);for(let n=e.length-1;n>=0;n--){const t=e[n];if(!t)continue;const o=Object.getOwnPropertyNames(t);for(let e=o.length-1;e>=0;e--){const n=o[e];if("__proto__"===n||"constructor"===n)continue;const i=Object.getOwnPropertyDescriptor(t,n);if(r[n]){const e=a[n];e&&(i.get?e.push(i.get.bind(t)):void 0!==i.value&&e.push(()=>i.value))}else r[n]=i.get?{enumerable:!0,configurable:!0,get:Y.bind(a[n]=[i.get.bind(t)])}:void 0!==i.value?i:void 0}}const i={},l=Object.keys(r);for(let n=l.length-1;n>=0;n--){const e=l[n],t=r[e];t&&t.get?Object.defineProperty(i,e,t):i[e]=t?t.value:void 0}return i}function Q(e,...t){const a=t.length;if(o&&n in e){const r=a>1?t.flat():t[0],n=t.map(t=>new Proxy({get:a=>t.includes(a)?e[a]:void 0,has:a=>t.includes(a)&&a in e,keys:()=>t.filter(t=>t in e)},Z));return n.push(new Proxy({get:t=>r.includes(t)?void 0:e[t],has:t=>!r.includes(t)&&t in e,keys:()=>Object.keys(e).filter(e=>!r.includes(e))},Z)),n}const r=[];for(let n=0;n<=a;n++)r[n]={};for(const n of Object.getOwnPropertyNames(e)){let o=a;for(let e=0;e<t.length;e++)if(t[e].includes(n)){o=e;break}const i=Object.getOwnPropertyDescriptor(e,n);!i.get&&!i.set&&i.enumerable&&i.writable&&i.configurable?r[o][n]=i.value:Object.defineProperty(r[o],n,i)}return r}let $=0;function ee(){return"cl-"+$++}function te(e){const t="fallback"in e&&{fallback:()=>e.fallback};return C(function(e,t,a={}){let r=[],n=[],o=[],l=0,s=t.length>1?[]:null;return A(()=>W(o)),()=>{let d,c,h=e()||[],p=h.length;return h[i],S(()=>{let e,t,i,f,g,m,v,y,M;if(0===p)0!==l&&(W(o),o=[],r=[],n=[],l=0,s&&(s=[])),a.fallback&&(r=[G],n[0]=b(e=>(o[0]=e,a.fallback())),l=1);else if(0===l){for(n=new Array(p),c=0;c<p;c++)r[c]=h[c],n[c]=b(u);l=p}else{for(i=new Array(p),f=new Array(p),s&&(g=new Array(p)),m=0,v=Math.min(l,p);m<v&&r[m]===h[m];m++);for(v=l-1,y=p-1;v>=m&&y>=m&&r[v]===h[y];v--,y--)i[y]=n[v],f[y]=o[v],s&&(g[y]=s[v]);for(e=new Map,t=new Array(y+1),c=y;c>=m;c--)M=h[c],d=e.get(M),t[c]=void 0===d?-1:d,e.set(M,c);for(d=m;d<=v;d++)M=r[d],c=e.get(M),void 0!==c&&-1!==c?(i[c]=n[d],f[c]=o[d],s&&(g[c]=s[d]),c=t[c],e.set(M,c)):o[d]();for(c=m;c<p;c++)c in i?(n[c]=i[c],o[c]=f[c],s&&(s[c]=g[c],s[c](c))):n[c]=b(u);n=n.slice(0,l=p),r=h.slice(0)}return n});function u(e){if(o[c]=e,s){const[e,a]=M(c,{name:"index"});return s[c]=a,t(h[c],e)}return t(h[c])}}}(()=>e.each,e.children,t||void 0),void 0,{name:"value"})}function ae(e){const t="fallback"in e&&{fallback:()=>e.fallback};return C(function(e,t,a={}){let r,n=[],o=[],l=[],s=[],d=0;return A(()=>W(l)),()=>{const c=e()||[],h=c.length;return c[i],S(()=>{if(0===h)return 0!==d&&(W(l),l=[],n=[],o=[],d=0,s=[]),a.fallback&&(n=[G],o[0]=b(e=>(l[0]=e,a.fallback())),d=1),o;for(n[0]===G&&(l[0](),l=[],n=[],o=[],d=0),r=0;r<h;r++)r<n.length&&n[r]!==c[r]?s[r](()=>c[r]):r>=n.length&&(o[r]=b(p));for(;r<n.length;r++)l[r]();return d=s.length=l.length=h,n=c.slice(0),o=o.slice(0,d)});function p(e){l[r]=e;const[a,n]=M(c[r],{name:"value"});return s[r]=n,t(a,r)}}}(()=>e.each,e.children,t||void 0),void 0,{name:"value"})}function re(e){const t=e.keyed,a=C(()=>e.when,void 0,{name:"condition value"}),r=t?a:C(a,void 0,{equals:(e,t)=>!e==!t,name:"condition"});return C(()=>{const n=r();if(n){const o=e.children;return"function"==typeof o&&o.length>0?S(()=>o(t?n:()=>{if(!S(r))throw`Attempting to access a stale value from <${"Show"}> that could possibly be undefined. This may occur because you are reading the accessor returned from the component at a time where it has already been unmounted. We recommend cleaning up any stale timers or async, or reading from the initial condition.`;return a()})):o}return e.fallback},void 0,{name:"value"})}const ne={hooks:{afterUpdate:null,afterCreateOwner:null,afterCreateSignal:null,afterRegisterGraph:null},writeSignal:O,registerGraph:P};globalThis&&(globalThis.Solid$$?console.warn("You appear to have multiple instances of Solid. This can lead to unexpected behavior."):globalThis.Solid$$=!0);const oe=new Set(["className","value","readOnly","noValidate","formNoValidate","isMap","noModule","playsInline","adAuctionHeaders","allowFullscreen","browsingTopics","defaultChecked","defaultMuted","defaultSelected","disablePictureInPicture","disableRemotePlayback","preservesPitch","shadowRootClonable","shadowRootCustomElementRegistry","shadowRootDelegatesFocus","shadowRootSerializable","sharedStorageWritable","allowfullscreen","async","alpha","autofocus","autoplay","checked","controls","default","disabled","formnovalidate","hidden","indeterminate","inert","ismap","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","seamless","selected","adauctionheaders","browsingtopics","credentialless","defaultchecked","defaultmuted","defaultselected","defer","disablepictureinpicture","disableremoteplayback","preservespitch","shadowrootclonable","shadowrootcustomelementregistry","shadowrootdelegatesfocus","shadowrootserializable","sharedstoragewritable"]),ie=new Set(["innerHTML","textContent","innerText","children"]),le=Object.assign(Object.create(null),{className:"class",htmlFor:"for"}),se=Object.assign(Object.create(null),{class:"className",novalidate:{$:"noValidate",FORM:1},formnovalidate:{$:"formNoValidate",BUTTON:1,INPUT:1},ismap:{$:"isMap",IMG:1},nomodule:{$:"noModule",SCRIPT:1},playsinline:{$:"playsInline",VIDEO:1},readonly:{$:"readOnly",INPUT:1,TEXTAREA:1},adauctionheaders:{$:"adAuctionHeaders",IFRAME:1},allowfullscreen:{$:"allowFullscreen",IFRAME:1},browsingtopics:{$:"browsingTopics",IMG:1},defaultchecked:{$:"defaultChecked",INPUT:1},defaultmuted:{$:"defaultMuted",AUDIO:1,VIDEO:1},defaultselected:{$:"defaultSelected",OPTION:1},disablepictureinpicture:{$:"disablePictureInPicture",VIDEO:1},disableremoteplayback:{$:"disableRemotePlayback",AUDIO:1,VIDEO:1},preservespitch:{$:"preservesPitch",AUDIO:1,VIDEO:1},shadowrootclonable:{$:"shadowRootClonable",TEMPLATE:1},shadowrootdelegatesfocus:{$:"shadowRootDelegatesFocus",TEMPLATE:1},shadowrootserializable:{$:"shadowRootSerializable",TEMPLATE:1},sharedstoragewritable:{$:"sharedStorageWritable",IFRAME:1,IMG:1}});const de=new Set(["beforeinput","click","dblclick","contextmenu","focusin","focusout","input","keydown","keyup","mousedown","mousemove","mouseout","mouseover","mouseup","pointerdown","pointermove","pointerout","pointerover","pointerup","touchend","touchmove","touchstart"]),ce=new Set(["altGlyph","altGlyphDef","altGlyphItem","animate","animateColor","animateMotion","animateTransform","circle","clipPath","color-profile","cursor","defs","desc","ellipse","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","font","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignObject","g","glyph","glyphRef","hkern","image","line","linearGradient","marker","mask","metadata","missing-glyph","mpath","path","pattern","polygon","polyline","radialGradient","rect","set","stop","svg","switch","symbol","text","textPath","tref","tspan","use","view","vkern"]),he={xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace"},pe=e=>C(()=>e());const ue="_$DX_DELEGATE";function fe(e,t,a,r={}){if(!t)throw new Error("The `element` passed to `render(..., element)` doesn't exist. Make sure `element` exists in the document.");let n;return b(r=>{n=r,t===document?e():Se(t,e(),t.firstChild?null:void 0,a)},r.owner),()=>{n(),t.textContent=""}}function ge(e,t,a,r){let n;const o=()=>(n||(n=(()=>{const t=document.createElement("template");return t.innerHTML=e,t.content.firstChild})())).cloneNode(!0);return o.cloneNode=o,o}function me(e,t=window.document){const a=t[ue]||(t[ue]=new Set);for(let r=0,n=e.length;r<n;r++){const n=e[r];a.has(n)||(a.add(n),t.addEventListener(n,Ae))}}function ve(e,t,a){null==a?e.removeAttribute(t):e.setAttribute(t,a)}function ye(e,t){null==t?e.removeAttribute("class"):e.className=t}function be(e,t,a,r){if(r)Array.isArray(a)?(e[`$$${t}`]=a[0],e[`$$${t}Data`]=a[1]):e[`$$${t}`]=a;else if(Array.isArray(a)){const r=a[0];e.addEventListener(t,a[0]=t=>r.call(e,a[1],t))}else e.addEventListener(t,a,"function"!=typeof a&&a)}function Me(e,t,a){if(!t)return a?ve(e,"style"):t;const r=e.style;if("string"==typeof t)return r.cssText=t;let n,o;for(o in"string"==typeof a&&(r.cssText=a=void 0),a||(a={}),t||(t={}),a)null==t[o]&&r.removeProperty(o),delete a[o];for(o in t)n=t[o],n!==a[o]&&(r.setProperty(o,n),a[o]=n);return a}function we(e,t,a){null!=a?e.style.setProperty(t,a):e.style.removeProperty(t)}function xe(e,t={},a,r){const n={};return r||w(()=>n.children=Te(e,t.children,n.children)),w(()=>"function"==typeof t.ref&&Ce(t.ref,e)),w(()=>function(e,t,a,r,n={},o=!1){t||(t={});for(const i in n)if(!(i in t)){if("children"===i)continue;n[i]=ke(e,i,null,n[i],a,o,t)}for(const i in t){if("children"===i)continue;const r=t[i];n[i]=ke(e,i,r,n[i],a,o,t)}}(e,t,a,0,n,!0)),n}function Ce(e,t,a){return S(()=>e(t,a))}function Se(e,t,a,r){if(void 0===a||r||(r=[]),"function"!=typeof t)return Te(e,t,r,a);w(r=>Te(e,t(),r,a),r)}function Ie(e,t,a){const r=t.trim().split(/\s+/);for(let n=0,o=r.length;n<o;n++)e.classList.toggle(r[n],a)}function ke(e,t,a,r,n,o,i){let l,s,d,c,h;if("style"===t)return Me(e,a,r);if("classList"===t)return function(e,t,a={}){const r=Object.keys(t||{}),n=Object.keys(a);let o,i;for(o=0,i=n.length;o<i;o++){const r=n[o];r&&"undefined"!==r&&!t[r]&&(Ie(e,r,!1),delete a[r])}for(o=0,i=r.length;o<i;o++){const n=r[o],i=!!t[n];n&&"undefined"!==n&&a[n]!==i&&i&&(Ie(e,n,!0),a[n]=i)}return a}(e,a,r);if(a===r)return r;if("ref"===t)o||a(e);else if("on:"===t.slice(0,3)){const n=t.slice(3);r&&e.removeEventListener(n,r,"function"!=typeof r&&r),a&&e.addEventListener(n,a,"function"!=typeof a&&a)}else if("oncapture:"===t.slice(0,10)){const n=t.slice(10);r&&e.removeEventListener(n,r,!0),a&&e.addEventListener(n,a,!0)}else if("on"===t.slice(0,2)){const n=t.slice(2).toLowerCase(),o=de.has(n);if(!o&&r){const t=Array.isArray(r)?r[0]:r;e.removeEventListener(n,t)}(o||a)&&(be(e,n,a,o),o&&me([n]))}else if("attr:"===t.slice(0,5))ve(e,t.slice(5),a);else if("bool:"===t.slice(0,5))!function(e,t,a){a?e.setAttribute(t,""):e.removeAttribute(t)}(e,t.slice(5),a);else if((h="prop:"===t.slice(0,5))||(d=ie.has(t))||!n&&((c=function(e,t){const a=se[e];return"object"==typeof a?a[t]?a.$:void 0:a}(t,e.tagName))||(s=oe.has(t)))||(l=e.nodeName.includes("-")||"is"in i))h&&(t=t.slice(5),s=!0),"class"===t||"className"===t?ye(e,a):!l||s||d?e[c||t]=a:e[p=t,p.toLowerCase().replace(/-([a-z])/g,(e,t)=>t.toUpperCase())]=a;else{const r=n&&t.indexOf(":")>-1&&he[t.split(":")[0]];r?function(e,t,a,r){null==r?e.removeAttributeNS(t,a):e.setAttributeNS(t,a,r)}(e,r,t,a):ve(e,le[t]||t,a)}var p;return a}function Ae(e){let t=e.target;const a=`$$${e.type}`,r=e.target,n=e.currentTarget,o=t=>Object.defineProperty(e,"target",{configurable:!0,value:t}),i=()=>{const r=t[a];if(r&&!t.disabled){const n=t[`${a}Data`];if(void 0!==n?r.call(t,n,e):r.call(t,e),e.cancelBubble)return}return t.host&&"string"!=typeof t.host&&!t.host._$host&&t.contains(e.target)&&o(t.host),!0},l=()=>{for(;i()&&(t=t._$host||t.parentNode||t.host););};if(Object.defineProperty(e,"currentTarget",{configurable:!0,get:()=>t||document}),e.composedPath){const a=e.composedPath();o(a[0]);for(let e=0;e<a.length-2&&(t=a[e],i());e++){if(t._$host){t=t._$host,l();break}if(t.parentNode===n)break}}else l();o(r)}function Te(e,t,a,r,n){for(;"function"==typeof a;)a=a();if(t===a)return a;const o=typeof t,i=void 0!==r;if(e=i&&a[0]&&a[0].parentNode||e,"string"===o||"number"===o){if("number"===o&&(t=t.toString())===a)return a;if(i){let n=a[0];n&&3===n.nodeType?n.data!==t&&(n.data=t):n=document.createTextNode(t),a=Le(e,a,r,n)}else a=""!==a&&"string"==typeof a?e.firstChild.data=t:e.textContent=t}else if(null==t||"boolean"===o)a=Le(e,a,r);else{if("function"===o)return w(()=>{let n=t();for(;"function"==typeof n;)n=n();a=Te(e,n,a,r)}),()=>a;if(Array.isArray(t)){const o=[],l=a&&Array.isArray(a);if(Pe(o,t,a,n))return w(()=>a=Te(e,o,a,r,!0)),()=>a;if(0===o.length){if(a=Le(e,a,r),i)return a}else l?0===a.length?Ee(e,o,r):function(e,t,a){let r=a.length,n=t.length,o=r,i=0,l=0,s=t[n-1].nextSibling,d=null;for(;i<n||l<o;)if(t[i]!==a[l]){for(;t[n-1]===a[o-1];)n--,o--;if(n===i){const t=o<r?l?a[l-1].nextSibling:a[o-l]:s;for(;l<o;)e.insertBefore(a[l++],t)}else if(o===l)for(;i<n;)d&&d.has(t[i])||t[i].remove(),i++;else if(t[i]===a[o-1]&&a[l]===t[n-1]){const r=t[--n].nextSibling;e.insertBefore(a[l++],t[i++].nextSibling),e.insertBefore(a[--o],r),t[n]=a[o]}else{if(!d){d=new Map;let e=l;for(;e<o;)d.set(a[e],e++)}const r=d.get(t[i]);if(null!=r)if(l<r&&r<o){let s,c=i,h=1;for(;++c<n&&c<o&&null!=(s=d.get(t[c]))&&s===r+h;)h++;if(h>r-l){const n=t[i];for(;l<r;)e.insertBefore(a[l++],n)}else e.replaceChild(a[l++],t[i++])}else i++;else t[i++].remove()}}else i++,l++}(e,a,o):(a&&Le(e),Ee(e,o));a=o}else if(t.nodeType){if(Array.isArray(a)){if(i)return a=Le(e,a,r,t);Le(e,a,null,t)}else null!=a&&""!==a&&e.firstChild?e.replaceChild(t,e.firstChild):e.appendChild(t);a=t}else console.warn("Unrecognized value. Skipped inserting",t)}return a}function Pe(e,t,a,r){let n=!1;for(let o=0,i=t.length;o<i;o++){let i,l=t[o],s=a&&a[e.length];if(null==l||!0===l||!1===l);else if("object"==(i=typeof l)&&l.nodeType)e.push(l);else if(Array.isArray(l))n=Pe(e,l,s)||n;else if("function"===i)if(r){for(;"function"==typeof l;)l=l();n=Pe(e,Array.isArray(l)?l:[l],Array.isArray(s)?s:[s])||n}else e.push(l),n=!0;else{const t=String(l);s&&3===s.nodeType&&s.data===t?e.push(s):e.push(document.createTextNode(t))}}return n}function Ee(e,t,a=null){for(let r=0,n=t.length;r<n;r++)e.insertBefore(t[r],a)}function Le(e,t,a,r){if(void 0===a)return e.textContent="";const n=r||document.createTextNode("");if(t.length){let r=!1;for(let o=t.length-1;o>=0;o--){const i=t[o];if(n!==i){const t=i.parentNode===e;r||o?t&&i.remove():t?e.replaceChild(n,i):e.insertBefore(n,a)}else r=!0}}else e.insertBefore(n,a);return[n]}function Oe(e,t=!1,a=void 0){return t?document.createElementNS("http://www.w3.org/2000/svg",e):document.createElement(e,{is:a})}function Re(e){const{useShadow:t}=e,a=document.createTextNode(""),r=u;let n;return x(()=>{n||(n=function(e,t){const a=u,r=g;u=e,g=null;try{return D(t,!0)}catch(n){U(n)}finally{u=a,g=r}}(r,()=>C(()=>e.children)));const o=e.mount||document.body;if(o instanceof HTMLHeadElement){const[e,t]=M(!1),a=()=>t(!0);b(t=>Se(o,()=>e()?t():n(),null)),A(a)}else{const r=Oe(e.isSVG?"g":"div",e.isSVG),i=t&&r.attachShadow?r.attachShadow({mode:"open"}):r;Object.defineProperty(r,"_$host",{get:()=>a.parentNode,configurable:!0}),Se(i,n),o.appendChild(r),e.ref&&e.ref(r),A(()=>o.removeChild(r))}},void 0,{render:!0}),a}function He(e){const[,t]=Q(e,["component"]);return function(e,t){const a=C(e);return C(()=>{const e=a();switch(typeof e){case"function":return Object.assign(e,{[l]:!0}),S(()=>e(t));case"string":const a=ce.has(e),r=Oe(e,a,S(()=>t.is));return xe(r,t,a),r}})}(()=>e.component,t)}function Ne(e){return e.runs.map(e=>e.text).join("")}function De(e){return Ne(e).length}function Fe(e,t){const a=Math.max(0,Math.min(t,De(e)));let r=0;for(const o of e.runs){const t=r+o.text.length;if(a<=t)return{paragraphId:e.id,runId:o.id,offset:a-r};r=t}const n=e.runs[e.runs.length-1];return{paragraphId:e.id,runId:n.id,offset:n.text.length}}function Be(e,t){var a;const r=function(e,t){const a=e.runs.findIndex(e=>e.id===t);return-1===a?0:a}(e,t.runId);let n=0;for(let i=0;i<r;i+=1)n+=(null==(a=e.runs[i])?void 0:a.text.length)??0;const o=e.runs[r];return n+Math.max(0,Math.min(t.offset,(null==o?void 0:o.text.length)??0))}const Ve="asset:";function ze(e,t){var a;if(!t)return"";if(!t.startsWith(Ve))return t;const r=t.slice(6),n=null==(a=null==e?void 0:e.assets)?void 0:a[r];return(null==n?void 0:n.url)??t}function _e(e,t){if(!t)return{...e};const a={...e};for(const[r,n]of Object.entries(t))void 0!==n&&(a[r]=n);return a}const Ue={styleId:void 0,bold:!1,italic:!1,underline:!1,underlineStyle:null,underlineColor:null,strike:!1,doubleStrike:!1,superscript:!1,subscript:!1,smallCaps:!1,allCaps:!1,hidden:!1,characterScale:null,characterSpacing:null,baselineShift:null,kerningThreshold:null,ligatures:null,numberSpacing:null,numberForm:null,stylisticSet:null,contextualAlternates:!1,fontFamily:"Calibri, sans-serif",fontSize:15,color:"#000000",highlight:null,link:null},qe=Ue,Ge={styleId:void 0,align:"left",spacingBefore:0,spacingAfter:8,lineHeight:1.15,lineGridPitch:null,lineGridType:null,snapToGrid:!0,indentLeft:0,indentRight:0,indentFirstLine:0,indentHanging:0,shading:null,borderTop:null,borderRight:null,borderBottom:null,borderLeft:null,tabs:null,pageBreakBefore:!1,keepWithNext:!1,keepLinesTogether:!1,widowControl:!0};function We(e){if(!e)return;const t=Object.values(e).find(e=>"paragraph"===e.type&&"normal"===e.id.toLowerCase());if(t)return t.id;const a=Object.values(e).find(e=>"paragraph"===e.type&&"normal"===e.name.toLowerCase());return a?a.id:void 0}function je(e,t){if(!e||!t||!t[e])return{};const a=t[e];return{...a.basedOn?je(a.basedOn,t):{},...a.textStyle??{}}}function Xe(e,t){if(!e||!t||!t[e])return{};const a=t[e];return{...a.basedOn?Xe(a.basedOn,t):{},...a.paragraphStyle??{}}}function Ze(e,t,a){const r=_e(je(t??We(a),a),je(null==e?void 0:e.styleId,a)),n=_e(r,e);return{...Ue,...n}}function Ke(e,t){const a=(null==e?void 0:e.styleId)??We(t),r=function(e,t){if(!t)return{...e};const a={...e};for(const[r,n]of Object.entries(t))void 0!==n&&(a[r]=n);return a}(Xe(a,t),{...e,styleId:a});return{...Ge,...r}}const Ye={width:816,height:1056,orientation:"portrait",margins:{top:96,right:96,bottom:96,left:96,header:48,footer:48,gutter:0}};function Je(e){const t=e.orientation??function(e,t){return e>t?"landscape":"portrait"}(e.width,e.height),a="landscape"===t&&e.width<e.height||"portrait"===t&&e.width>e.height;return{width:a?e.height:e.width,height:a?e.width:e.height,orientation:t,margins:{top:e.margins.top,right:e.margins.right,bottom:e.margins.bottom,left:e.margins.left,header:e.margins.header,footer:e.margins.footer,gutter:e.margins.gutter}}}function Qe(e){const t=e.pageSettings;return Je({width:(null==t?void 0:t.width)??Ye.width,height:(null==t?void 0:t.height)??Ye.height,orientation:(null==t?void 0:t.orientation)??Ye.orientation,margins:{top:(null==t?void 0:t.margins.top)??Ye.margins.top,right:(null==t?void 0:t.margins.right)??Ye.margins.right,bottom:(null==t?void 0:t.margins.bottom)??Ye.margins.bottom,left:(null==t?void 0:t.margins.left)??Ye.margins.left,header:(null==t?void 0:t.margins.header)??Ye.margins.header,footer:(null==t?void 0:t.margins.footer)??Ye.margins.footer,gutter:(null==t?void 0:t.margins.gutter)??Ye.margins.gutter}})}function $e(e){return Math.max(24,Math.floor(e.width-e.margins.left-e.margins.right-e.margins.gutter))}function et(e,t){return Number.isFinite(e)?Math.min(Math.max(0,e),t):0}function tt(e){return et(e.margins.header,e.height)}function at(e){return Math.max(et(e.margins.top,e.height),tt(e))}function rt(e){const t=e.height-et(e.margins.bottom,e.height);return Math.min(e.height,Math.max(at(e),Math.min(t,function(e){return e.height-et(e.margins.footer,e.height)}(e))))}function nt(e){return e.sections&&e.sections.length>0?e.sections.map(e=>({...e,pageSettings:Je(e.pageSettings)})):[{id:"section:default",blocks:[],pageSettings:Qe(e)}]}function ot(e){return nt(e)}function it(e,t){var a,r;if("footnote"===t){const t=e.activeFootnoteId;if(!t)return[];const n=null==(r=null==(a=e.document.footnotes)?void 0:a.items)?void 0:r[t];return n?n.blocks:[]}const n=nt(e.document),o=n[Math.max(0,Math.min(ht(e),n.length-1))];return o?"header"===t?o.header??[]:"footer"===t?o.footer??[]:o.blocks:[]}function lt(e){return"paragraph"===e.type?[e]:e.rows.flatMap(e=>e.cells.flatMap(e=>e.blocks))}function st(e){var t;let a=ft.get(e);if(a)return a;const r=nt(e).flatMap(e=>{var t,a,r,n,o,i;return[...(null==(t=e.header)?void 0:t.flatMap(lt))??[],...(null==(a=e.firstPageHeader)?void 0:a.flatMap(lt))??[],...(null==(r=e.evenPageHeader)?void 0:r.flatMap(lt))??[],...e.blocks.flatMap(lt),...(null==(n=e.footer)?void 0:n.flatMap(lt))??[],...(null==(o=e.firstPageFooter)?void 0:o.flatMap(lt))??[],...(null==(i=e.evenPageFooter)?void 0:i.flatMap(lt))??[]]}),n=null==(t=e.footnotes)?void 0:t.items;return a=[...r,...n?Object.values(n).flatMap(e=>e.blocks.flatMap(lt)):[]],ft.set(e,a),a}function dt(e){return st(e)}function ct(e){return it(e,pt(e)).flatMap(lt)}function ht(e){return e.activeSectionIndex??0}function pt(e){return e.activeZone??"main"}const ut=new WeakMap,ft=new WeakMap;function gt(e){var t;let a=ut.get(e);if(a)return a;a=new Map;const r=ot(e);for(let o=0;o<r.length;o+=1){const e=r[o];if(e.header){let t=0;for(let r=0;r<e.header.length;r+=1){const n=e.header[r];if("paragraph"===n.type)a.set(n.id,{paragraph:n,location:{sectionIndex:o,zone:"header",paragraphIndexInSection:t},tableLocation:null}),t+=1;else if("table"===n.type)for(let e=0;e<n.rows.length;e+=1){const i=n.rows[e];for(let n=0;n<i.cells.length;n+=1){const l=i.cells[n];for(let i=0;i<l.blocks.length;i+=1){const s=l.blocks[i];a.set(s.id,{paragraph:s,location:{sectionIndex:o,zone:"header",paragraphIndexInSection:t},tableLocation:{blockIndex:r,rowIndex:e,cellIndex:n,paragraphIndex:i}}),t+=1}}}}}let t=0;for(let r=0;r<e.blocks.length;r+=1){const n=e.blocks[r];if("paragraph"===n.type)a.set(n.id,{paragraph:n,location:{sectionIndex:o,zone:"main",paragraphIndexInSection:t},tableLocation:null}),t+=1;else if("table"===n.type)for(let e=0;e<n.rows.length;e+=1){const i=n.rows[e];for(let n=0;n<i.cells.length;n+=1){const l=i.cells[n];for(let i=0;i<l.blocks.length;i+=1){const s=l.blocks[i];a.set(s.id,{paragraph:s,location:{sectionIndex:o,zone:"main",paragraphIndexInSection:t},tableLocation:{blockIndex:r,rowIndex:e,cellIndex:n,paragraphIndex:i}}),t+=1}}}}if(e.footer){let t=0;for(let r=0;r<e.footer.length;r+=1){const n=e.footer[r];if("paragraph"===n.type)a.set(n.id,{paragraph:n,location:{sectionIndex:o,zone:"footer",paragraphIndexInSection:t},tableLocation:null}),t+=1;else if("table"===n.type)for(let e=0;e<n.rows.length;e+=1){const i=n.rows[e];for(let n=0;n<i.cells.length;n+=1){const l=i.cells[n];for(let i=0;i<l.blocks.length;i+=1){const s=l.blocks[i];a.set(s.id,{paragraph:s,location:{sectionIndex:o,zone:"footer",paragraphIndexInSection:t},tableLocation:{blockIndex:r,rowIndex:e,cellIndex:n,paragraphIndex:i}}),t+=1}}}}}}const n=null==(t=e.footnotes)?void 0:t.items;if(n)for(const o of Object.keys(n)){const e=n[o];if(!e)continue;let t=0;for(let r=0;r<e.blocks.length;r+=1){const n=e.blocks[r];if("paragraph"===n.type)a.set(n.id,{paragraph:n,location:{sectionIndex:0,zone:"footnote",paragraphIndexInSection:t,footnoteId:o},tableLocation:null}),t+=1;else if("table"===n.type)for(let e=0;e<n.rows.length;e+=1){const i=n.rows[e];for(let n=0;n<i.cells.length;n+=1){const l=i.cells[n];for(let i=0;i<l.blocks.length;i+=1){const s=l.blocks[i];a.set(s.id,{paragraph:s,location:{sectionIndex:0,zone:"footnote",paragraphIndexInSection:t,footnoteId:o},tableLocation:{blockIndex:r,rowIndex:e,cellIndex:n,paragraphIndex:i}}),t+=1}}}}}return ut.set(e,a),a}function mt(e,t){var a;return null==(a=gt(e).get(t))?void 0:a.paragraph}function vt(e,t){const a=gt(e).get(t);return a?a.location:null}function yt(e,t,a=0){const r=gt(e).get(t);return r&&r.tableLocation?e.sections&&e.sections.length>0&&r.location.sectionIndex!==a?null:{...r.tableLocation,zone:r.location.zone}:null}function bt(e,t){const a=e.findIndex(e=>e.id===t);return-1===a?0:a}function Mt(e,t){const a=function(e,t){return e[bt(e,t)]}(ct(e),t.paragraphId);return wt(t,a)}function wt(e,t){return Fe(t,function(e,t){return Math.max(0,Math.min(e,De(t)))}(Be(t,e),t))}function xt(e){return{anchor:e,focus:e}}function Ct(e){return e.anchor.paragraphId===e.focus.paragraphId&&e.anchor.runId===e.focus.runId&&e.anchor.offset===e.focus.offset}function St(e,t){const a=t??ct(e),r=new Map(a.map((e,t)=>[e.id,t])),n=r.get(e.selection.anchor.paragraphId)??0,o=r.get(e.selection.focus.paragraphId)??0,i=a[n]??a[0],l=a[o]??a[0],s=wt(e.selection.anchor,i),d=wt(e.selection.focus,l),c=r.get(s.paragraphId)??n,h=r.get(d.paragraphId)??o,p=c!==h?c-h:Be(a[c],s)-Be(a[h],d),u=p<=0?s:d,f=p<=0?d:s,g=a[p<=0?c:h],m=a[p<=0?h:c];return{start:u,end:f,startIndex:p<=0?c:h,endIndex:p<=0?h:c,startParagraphOffset:Be(g,u),endParagraphOffset:Be(m,f),isCollapsed:0===p}}let It=1,kt=1,At=1,Tt=1,Pt=1,Et=1,Lt=1;function Ot(e=""){const t={id:`run:${At}`,text:e};return At+=1,t}function Rt(e="",t,a){const r=Ot(e);return t&&(r.styles={...t}),a&&(r.image={...a}),r}function Ht(e=""){const t={id:`paragraph:${kt}`,type:"paragraph",runs:[Ot(e)]};return kt+=1,t}function Nt(e){const t={id:`paragraph:${kt}`,type:"paragraph",runs:e.length>0?e.map(e=>Rt(e.text,e.styles,e.image)):[Ot("")]};return kt+=1,t}function Dt(e,t=1,a){const r={id:`table-cell:${Et}`,blocks:e.length>0?e:[Ht("")]};return t>1&&(r.colSpan=t),(null==a?void 0:a.rowSpan)&&a.rowSpan>1&&(r.rowSpan=a.rowSpan),(null==a?void 0:a.vMerge)&&(r.vMerge=a.vMerge),Et+=1,r}function Ft(e,t){const a={id:`table-row:${Pt}`,cells:e};return(null==t?void 0:t.isHeader)&&(a.isHeader=!0),Pt+=1,a}function Bt(e,t){const a={id:`table:${Tt}`,type:"table",rows:e,gridCols:t};return Tt+=1,a}function Vt(){const e=`footnote:${Lt}`;return Lt+=1,e}function zt(e,t){const a=Ht(e);return t.styleId&&(a.style={styleId:t.styleId}),a}const _t={normal:{id:"normal",name:"Normal",type:"paragraph",paragraphStyle:{spacingAfter:8,lineHeight:1.15},textStyle:{fontFamily:"Calibri, sans-serif",fontSize:15}},header:{id:"header",name:"Header",type:"paragraph",basedOn:"normal",nextStyle:"header",paragraphStyle:{spacingAfter:0}},footer:{id:"footer",name:"Footer",type:"paragraph",basedOn:"normal",nextStyle:"footer",paragraphStyle:{spacingAfter:0}},heading1:{id:"heading1",name:"Heading 1",type:"paragraph",basedOn:"normal",nextStyle:"normal",paragraphStyle:{spacingBefore:24,spacingAfter:0},textStyle:{fontFamily:"Calibri Light, sans-serif",fontSize:27,color:"#2e74b5"}},heading2:{id:"heading2",name:"Heading 2",type:"paragraph",basedOn:"normal",nextStyle:"normal",paragraphStyle:{spacingBefore:13,spacingAfter:0},textStyle:{fontFamily:"Calibri Light, sans-serif",fontSize:17,color:"#2e74b5"}},heading3:{id:"heading3",name:"Heading 3",type:"paragraph",basedOn:"normal",nextStyle:"normal",paragraphStyle:{spacingBefore:13,spacingAfter:0},textStyle:{fontFamily:"Calibri Light, sans-serif",fontSize:16,color:"#1f4d78"}},footnoteText:{id:"footnoteText",name:"Footnote Text",type:"paragraph",basedOn:"normal",nextStyle:"footnoteText",paragraphStyle:{spacingAfter:0,lineHeight:1},textStyle:{fontSize:10}},footnoteReference:{id:"footnoteReference",name:"Footnote Reference",type:"character",basedOn:"normal",textStyle:{superscript:!0}}};function Ut(e,t,a,r,n,o){const i=Je(t?{width:t.width,height:t.height,orientation:t.orientation,margins:{...t.margins}}:{width:Ye.width,height:Ye.height,orientation:Ye.orientation,margins:{...Ye.margins}}),l={id:`document:${It}`,pageSettings:i,sections:a??[{id:"section:default",blocks:e,pageSettings:i}],styles:r??{..._t},metadata:n??{title:"Untitled document"},assets:o??void 0};return It+=1,l}function qt(e,t){var a,r,n;let o={...e,sections:e.sections&&e.sections.length>0?e.sections:[{id:"section:default",blocks:[Ht("")],pageSettings:(null==(a=nt(e)[0])?void 0:a.pageSettings)??Ye}]},i=st(o);if(0===i.length){const e=Ht(""),t=nt(o),a=t[0];if(a){const r=[...t];r[0]={...a,blocks:[e,...a.blocks]},o={...o,sections:r}}i=st(o)}let l=i[0],s=0,d="main";{const e=nt(o)[0],t=(null==e?void 0:e.blocks.flatMap(lt))??[];if(t.length>0)l=t[0],d="main",s=0;else{const t=(null==(r=null==e?void 0:e.header)?void 0:r.flatMap(lt))??[],a=(null==(n=null==e?void 0:e.footer)?void 0:n.flatMap(lt))??[];t.length>0?(l=t[0],d="header"):a.length>0&&(l=a[0],d="footer"),s=0}}return{document:o,selection:xt(Fe(l,Math.max(0,Math.min(0,De(l))))),activeSectionIndex:s,activeZone:d}}function Gt(e){const t=Ht("");return t.style={styleId:e},t}function Wt(){const e=Ht(""),t=e.runs[0];return{document:Ut([e]),selection:xt({paragraphId:e.id,runId:t.id,offset:0}),activeSectionIndex:0,activeZone:"main"}}function jt(e){return"double"===e||"wavyDouble"===e}function Xt(e){return"wave"===e||"wavyHeavy"===e}function Zt(e){switch(e){case"thick":case"dashedHeavy":case"dashLongHeavy":case"dashDotHeavy":case"dashDotDotHeavy":case"dottedHeavy":case"wavyHeavy":return 2;default:return 1}}function Kt(e){switch(e){case"dotted":case"dottedHeavy":return[1.5,2.5];case"dash":case"dashedHeavy":return[4,3];case"dashLong":case"dashLongHeavy":return[8,3];case"dotDash":case"dashDotHeavy":return[4,2,1,2];case"dotDotDash":case"dashDotDotHeavy":return[4,2,1,2,1,2];default:return}}function Yt(e){const t=St(e);if(t.isCollapsed)return"";const a=ct(e);if(t.startIndex===t.endIndex){return Ne(a[t.startIndex]).slice(t.startParagraphOffset,t.endParagraphOffset)}const r=[],n=a[t.startIndex],o=a[t.endIndex];r.push(Ne(n).slice(t.startParagraphOffset));for(let i=t.startIndex+1;i<t.endIndex;i+=1)r.push(Ne(a[i]));return r.push(Ne(o).slice(0,t.endParagraphOffset)),r.join("\n")}function Jt(e,t){return{...e,selection:{anchor:Mt(e,t.anchor),focus:Mt(e,t.focus)}}}function Qt(e){if(!Ct(e.selection))return Aa(e,"start");const{paragraph:t,index:a,offset:r}=ba(e),n=ct(e);if(r>0)return{document:e.document,selection:ya(Fe(t,r-1))};if(0===a)return e;const o=n[a-1];return{document:e.document,selection:ya(Fe(o,De(o)))}}function $t(e){if(!Ct(e.selection))return Aa(e,"end");const{paragraph:t,index:a,offset:r}=ba(e),n=ct(e);if(r<De(t))return{document:e.document,selection:ya(Fe(t,r+1))};if(a>=n.length-1)return e;const o=n[a+1];return{document:e.document,selection:ya(Fe(o,0))}}function ea(e){return e?{...e}:void 0}function ta(e,t){return JSON.stringify(e??null)===JSON.stringify(t??null)}function aa(e,t,a){const r={...e??{}};return a?r[t]=!0:delete r[t],Object.keys(r).length>0?r:void 0}function ra(e,t,a){const r={...e??{}};return null==a||""===a?delete r[t]:r[t]=a,Object.keys(r).length>0?r:void 0}function na(e){return{...e,styles:ea(e.styles),image:e.image?{...e.image}:void 0,field:e.field?{...e.field}:void 0,revision:e.revision?{...e.revision}:void 0,footnoteReference:e.footnoteReference?{...e.footnoteReference}:void 0}}function oa(e){return{...e,runs:e.runs.map(na),style:e.style?{...e.style}:void 0,list:e.list?{...e.list}:void 0}}function ia(e){return e?{...e}:void 0}function la(e,t,a){const r={...e??{}};return null==a?delete r[t]:r[t]=a,Object.keys(r).length>0?r:void 0}function sa(e){return e.map(oa)}function da(e){return e.map(e=>"paragraph"===e.type?oa(e):{...e,rows:e.rows.map(e=>({...e,cells:e.cells.map(e=>({...e,blocks:sa(e.blocks)}))}))})}function ca(e,t){const a=[];for(const r of e){if(0===r.text.length)continue;const e=a[a.length-1];!e||r.image||e.image||!ta(e.styles,r.styles)?a.push({...r,styles:ea(r.styles)}):e.text+=r.text}return a.length>0?a:[Rt("",t)]}function ha(e,t,a){return{...e,runs:ca(t,a),style:e.style?{...e.style}:void 0}}function pa(e){return Nt(e)}function ua(e,t){const a=pa(t);return a.style=e.style?{...e.style}:void 0,a.list=ia(e.list),a}function fa(e,t){const a=oa(e);return a.list?(a.list={...a.list,level:Math.max(0,t)},a):a}function ga(e){const t=oa(e);return delete t.list,t}function ma(e,t){if(!function(e){for(const t of e)if("table"===t.type)return!0;return!1}(e))return t;let a=0;const r=e=>e.map(e=>"paragraph"===e.type?t[a++]??e:{...e,rows:e.rows.map(e=>({...e,cells:e.cells.map(e=>({...e,blocks:r(e.blocks)}))}))});return r(e)}function va(e,t,a){const r=pt(e);if("footnote"===r){const r=e.activeFootnoteId,n=e.document.footnotes;if(!r||!n||!n.items[r])return{...e,selection:a};const o=n.items[r],i=ma(o.blocks,t);return{...e,document:{...e.document,footnotes:{...n,items:{...n.items,[r]:{...o,blocks:i}}}},selection:a}}const n=ot(e.document),o=Math.max(0,Math.min(ht(e),n.length-1)),i=n[o];if(!i)return{...e,selection:a};const l=function(e,t,a){return"header"===a?{...e,header:ma(e.header??[],t)}:"footer"===a?{...e,footer:ma(e.footer??[],t)}:{...e,blocks:ma(e.blocks,t)}}(i,t,r),s=[...n];return s[o]=l,{...e,document:{...e.document,sections:s},selection:a}}function ya(e){return xt(e)}function ba(e){const t=ct(e),a=Mt(e,e.selection.focus),r=bt(t,a.paragraphId),n=t[r];return{paragraph:n,index:r,offset:Be(n,a)}}function Ma(e,t){var a;if(0===e.runs.length)return;let r=0;for(let n=0;n<e.runs.length;n+=1){const a=e.runs[n],o=r+a.text.length;if(t<o)return ea(a.styles);if(t===o){if(a.text.length>0)return ea(a.styles);const t=e.runs[n+1];return ea((null==t?void 0:t.styles)??a.styles)}r=o}return ea(null==(a=e.runs[e.runs.length-1])?void 0:a.styles)}function wa(e,t){var a,r,n;const o=function(e,t){let a=0;for(let r=0;r<e.runs.length;r+=1){const n=e.runs[r],o=a,i=a+n.text.length;if(t<i)return{run:n,startOffset:o,endOffset:i};if(t===i){if(n.text.length>0)return{run:n,startOffset:o,endOffset:i};const t=e.runs[r+1];return t?{run:t,startOffset:i,endOffset:i+t.text.length}:{run:n,startOffset:o,endOffset:i}}a=i}return null}(e,t),i=null==(a=null==o?void 0:o.run.styles)?void 0:a.link;if(!o||!i||o.run.image)return null;let l=o.startOffset,s=o.endOffset,d=0;const c=e.runs,h=c.findIndex(e=>e.id===o.run.id);if(-1===h)return null;for(let p=0;p<h;p+=1)d+=c[p].text.length;l=d,s=d+o.run.text.length;for(let p=h-1;p>=0;p-=1){const e=c[p];if(e.image||(null==(r=e.styles)?void 0:r.link)!==i)break;l-=e.text.length}for(let p=h+1;p<c.length;p+=1){const e=c[p];if(e.image||(null==(n=e.styles)?void 0:n.link)!==i)break;s+=e.text.length}return{href:i,startOffset:l,endOffset:s}}function xa(e,t,a){const r=Math.max(0,Math.min(t,De(e))),n=Math.max(r,Math.min(a,De(e))),o=[];let i=0;for(const l of e.runs){const e=i,t=i+l.text.length,a=Math.max(r,e),s=Math.min(n,t);if(a<s){const t={id:`run:${Math.random().toString(36).slice(2,9)}`,text:l.image?"":l.text.slice(a-e,s-e)};l.styles&&(t.styles={...l.styles}),l.image&&(t.image={...l.image}),l.revision&&(t.revision={...l.revision}),l.field&&(t.field={...l.field}),l.footnoteReference&&(t.footnoteReference={...l.footnoteReference}),o.push(t)}i=t}return o}function Ca(e,t,a){const r=xa(e,0,t),n=xa(e,t,De(e)),o=Ma(e,t);return ha(e,[...r,...a.map(e=>({...e,styles:ea(e.styles??o)})),...n],o)}function Sa(e){const t=St(e);if(t.isCollapsed)return e;const a=ct(e);if(e.trackChangesEnabled){const r=`rev:${Math.random().toString(36).slice(2,9)}`,n="User",o=Date.now();return va(e,a.map((e,a)=>{if(a<t.startIndex||a>t.endIndex)return oa(e);return Ia(e,a===t.startIndex?t.startParagraphOffset:0,a===t.endIndex?t.endParagraphOffset:De(e),e=>{var t;return"insert"===(null==(t=e.revision)?void 0:t.type)?{...e,text:""}:{...e,revision:{id:r,type:"delete",author:n,date:o}}})}),ya(t.start))}const r=a[t.startIndex],n=a[t.endIndex],o=Be(r,t.start),i=Be(n,t.end),l=ha(r,[...xa(r,0,o),...xa(n,i,De(n))]);return va(e,[...sa(a.slice(0,t.startIndex)),l,...sa(a.slice(t.endIndex+1))],ya(Fe(l,o)))}function Ia(e,t,a,r){return ha(e,[...xa(e,0,t),...xa(e,t,a).map(r),...xa(e,a,De(e))])}function ka(e,t){const a=e[t.startIndex],r=e[t.endIndex];return{anchor:Fe(a,t.startParagraphOffset),focus:Fe(r,t.endParagraphOffset)}}function Aa(e,t){const a=St(e);return a.isCollapsed?e:{document:e.document,selection:ya("start"===t?a.start:a.end)}}function Ta(e){return e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#39;")}function Pa(e){if(!e)return"";const t=[];e.fontFamily&&t.push(`font-family:${e.fontFamily}`),void 0!==e.fontSize&&null!==e.fontSize&&t.push(`font-size:${e.fontSize}px`),e.color&&t.push(`color:${e.color}`),e.highlight&&t.push(`background-color:${e.highlight}`),e.superscript?(t.push("vertical-align:super"),t.push("font-size:0.75em")):e.subscript&&(t.push("vertical-align:sub"),t.push("font-size:0.75em")),e.bold&&t.push("font-weight:700"),e.italic&&t.push("font-style:italic"),e.hidden&&t.push("display:none"),e.allCaps&&t.push("text-transform:uppercase"),e.smallCaps&&t.push("font-variant:small-caps"),void 0!==e.characterScale&&null!==e.characterScale&&t.push(`font-stretch:${e.characterScale}%`),void 0!==e.characterSpacing&&null!==e.characterSpacing&&t.push(`letter-spacing:${e.characterSpacing}pt`),void 0!==e.baselineShift&&null!==e.baselineShift&&t.push(`vertical-align:${e.baselineShift}pt`);const a=function(e){switch(e){case"none":return"none";case"standard":return"common-ligatures";case"contextual":return"contextual";case"historical":return"historical-ligatures";case"standardContextual":return"common-ligatures contextual";default:return null}}(e.ligatures);a&&t.push(`font-variant-ligatures:${a}`);const r=function(e,t){const a=[];"proportional"===e&&a.push("proportional-nums");"tabular"===e&&a.push("tabular-nums");"lining"===t&&a.push("lining-nums");"oldStyle"===t&&a.push("oldstyle-nums");return a.join(" ")||null}(e.numberSpacing,e.numberForm);r&&t.push(`font-variant-numeric:${r}`);const n=function(e,t){const a=[];"number"==typeof e&&e>=1&&e<=20&&a.push(`"ss${String(e).padStart(2,"0")}" 1`);t&&a.push('"calt" 1');return a.join(", ")||null}(e.stylisticSet,e.contextualAlternates);n&&t.push(`font-feature-settings:${n}`);const o=[];if((e.underline||e.link)&&o.push("underline"),e.strike&&o.push("line-through"),e.doubleStrike&&o.push("line-through"),o.length>0&&(t.push(`text-decoration:${o.join(" ")}`),e.underline||e.link)){const a=function(e){switch(e){case"double":case"wavyDouble":return"double";case"dotted":case"dottedHeavy":return"dotted";case"dash":case"dashedHeavy":case"dashLong":case"dashLongHeavy":case"dotDash":case"dashDotHeavy":case"dotDotDash":case"dashDotDotHeavy":return"dashed";case"wave":case"wavyHeavy":return"wavy";default:return null}}(e.underlineStyle);a&&t.push(`text-decoration-style:${a}`),e.underlineColor&&t.push(`text-decoration-color:${e.underlineColor}`)}return t.join(";")}function Ea(e){if(!e)return"";const t=[];return e.align&&t.push(`text-align:${e.align}`),void 0!==e.lineHeight&&null!==e.lineHeight&&t.push(`line-height:${e.lineHeight}`),void 0!==e.spacingBefore&&null!==e.spacingBefore&&t.push(`padding-top:${e.spacingBefore}px`),void 0!==e.spacingAfter&&null!==e.spacingAfter&&t.push(`padding-bottom:${e.spacingAfter}px`),void 0!==e.indentLeft&&null!==e.indentLeft&&t.push(`padding-left:${e.indentLeft}px`),void 0!==e.indentRight&&null!==e.indentRight&&t.push(`padding-right:${e.indentRight}px`),void 0!==e.indentFirstLine&&null!==e.indentFirstLine&&t.push(`text-indent:${e.indentFirstLine}px`),t.join(";")}function La(e,t){if(e.image)return function(e,t){var a;if(!e.image)return"";const r=ze(t,e.image.src),n=void 0!==e.image.alt?` alt="${Ta(e.image.alt)}"`:"",o=`<img src="${Ta(r)}" width="${Math.max(1,Math.round(e.image.width))}" height="${Math.max(1,Math.round(e.image.height))}"${n}>`;return(null==(a=e.styles)?void 0:a.link)?`<a href="${Ta(e.styles.link)}">${o}</a>`:o}(e,t);let a=Ta(e.text).replace(/\n/g,"<br>");const r=e.styles??void 0;(null==r?void 0:r.strike)&&(a=`<s>${a}</s>`),(null==r?void 0:r.underline)&&(a=`<u>${a}</u>`),(null==r?void 0:r.italic)&&(a=`<em>${a}</em>`),(null==r?void 0:r.bold)&&(a=`<strong>${a}</strong>`),(null==r?void 0:r.superscript)?a=`<sup>${a}</sup>`:(null==r?void 0:r.subscript)&&(a=`<sub>${a}</sub>`);const n=Pa(r);return n.length>0&&(a=`<span style="${n}">${a}</span>`),(null==r?void 0:r.link)&&(a=`<a href="${Ta(r.link)}">${a}</a>`),a}function Oa(e,t){return e.map(e=>La(e,t)).join("")||"<br>"}function Ra(e){var t,a,r;const n=e.style,o={},i=n.fontFamily.trim();i&&(o.fontFamily=i);const l=n.fontSize.trim();if(l.endsWith("px")){const e=Number.parseFloat(l);Number.isFinite(e)&&(o.fontSize=e)}const s=n.color.trim();s&&(o.color=s);const d=n.backgroundColor.trim();d&&(o.highlight=d);const c=n.textDecoration.toLowerCase();if(c.includes("underline")){o.underline=!0;switch(null==(t=n.textDecorationStyle)?void 0:t.toLowerCase()){case"double":o.underlineStyle="double";break;case"dotted":o.underlineStyle="dotted";break;case"dashed":o.underlineStyle="dash";break;case"wavy":o.underlineStyle="wave"}}c.includes("line-through")&&(o.strike=!0);const h=null==(a=n.textDecorationColor)?void 0:a.trim();h&&(o.underlineColor=h);const p=n.fontWeight.trim();("bold"===p||Number.parseInt(p,10)>=600)&&(o.bold=!0);"italic"===n.fontStyle.trim()&&(o.italic=!0),"none"===n.display.trim().toLowerCase()&&(o.hidden=!0),"uppercase"===n.textTransform.trim().toLowerCase()&&(o.allCaps=!0),n.fontVariant.trim().toLowerCase().includes("small-caps")&&(o.smallCaps=!0);const u=n.letterSpacing.trim();if(u.endsWith("pt")){const e=Number.parseFloat(u);Number.isFinite(e)&&(o.characterSpacing=e)}const f=n.fontStretch.trim();if(f.endsWith("%")){const e=Number.parseFloat(f);Number.isFinite(e)&&e>0&&(o.characterScale=e)}const g=n.fontVariantLigatures.trim().toLowerCase();"none"===g?o.ligatures="none":g.includes("historical")?o.ligatures="historical":g.includes("common-ligatures")&&g.includes("contextual")?o.ligatures="standardContextual":g.includes("common-ligatures")?o.ligatures="standard":g.includes("contextual")&&(o.ligatures="contextual");const m=n.fontVariantNumeric.trim().toLowerCase();m.includes("proportional-nums")?o.numberSpacing="proportional":m.includes("tabular-nums")&&(o.numberSpacing="tabular"),m.includes("lining-nums")?o.numberForm="lining":m.includes("oldstyle-nums")&&(o.numberForm="oldStyle");const v=n.fontFeatureSettings.trim().toLowerCase(),y=v.match(/["']ss(0[1-9]|1[0-9]|20)["']\s+1/);(null==y?void 0:y[1])&&(o.stylisticSet=Number(y[1])),/["']calt["']\s+1/.test(v)&&(o.contextualAlternates=!0),"SUP"===e.tagName&&(o.superscript=!0),"SUB"===e.tagName&&(o.subscript=!0);const b=n.verticalAlign.trim();if(b.endsWith("pt")){const e=Number.parseFloat(b);Number.isFinite(e)&&(o.baselineShift=e)}const M="A"===e.tagName?(null==(r=e.getAttribute("href"))?void 0:r.trim())??"":"";return M&&(o.link=M,o.underline=!0),Object.keys(o).length>0?o:void 0}function Ha(e){const t=e.style,a={},r=t.textAlign.trim();"left"!==r&&"center"!==r&&"right"!==r&&"justify"!==r||(a.align=r);const n=t.lineHeight.trim();if(n){const e=Number.parseFloat(n);Number.isFinite(e)&&(a.lineHeight=e)}const o=t.paddingTop.trim();if(o.endsWith("px")){const e=Number.parseFloat(o);Number.isFinite(e)&&(a.spacingBefore=e)}const i=t.paddingBottom.trim();if(i.endsWith("px")){const e=Number.parseFloat(i);Number.isFinite(e)&&(a.spacingAfter=e)}const l=t.paddingLeft.trim();if(l.endsWith("px")){const e=Number.parseFloat(l);Number.isFinite(e)&&(a.indentLeft=e)}const s=t.paddingRight.trim();if(s.endsWith("px")){const e=Number.parseFloat(s);Number.isFinite(e)&&(a.indentRight=e)}const d=t.textIndent.trim();if(d.endsWith("px")){const e=Number.parseFloat(d);Number.isFinite(e)&&(a.indentFirstLine=e)}return"page"!==t.breakBefore&&"true"!==e.dataset.oasisPageBreakBefore||(a.pageBreakBefore=!0),"true"===e.dataset.oasisKeepWithNext&&(a.keepWithNext=!0),Object.keys(a).length>0?a:void 0}function Na(e,t,a){return e.map(e=>"paragraph"===e.type?e:{...e,rows:e.rows.map(e=>({...e,cells:e.cells.map(e=>e.blocks.some(e=>t.has(e.id))?a(e):e)}))})}function Da(e,t){if(!Ct(e.selection))return Aa(e,t<0?"start":"end");const{index:a,offset:r}=ba(e),n=ct(e),o=a+t;if(o<0||o>=n.length)return e;const i=n[o];return{document:e.document,selection:ya(Fe(i,Math.min(r,De(i))))}}function Fa(e,t){const a=Mt(e,e.selection.focus),r=ct(e),n=bt(r,a.paragraphId),o=r[n],i=Be(o,a),l=De(o);if(t<0&&i>0)return Jt(e,{anchor:e.selection.anchor,focus:Fe(o,i-1)});if(t>0&&i<l)return Jt(e,{anchor:e.selection.anchor,focus:Fe(o,i+1)});if(t<0&&n>0){const t=r[n-1];return Jt(e,{anchor:e.selection.anchor,focus:Fe(t,De(t))})}if(t>0&&n<r.length-1){const t=r[n+1];return Jt(e,{anchor:e.selection.anchor,focus:Fe(t,0)})}return e}function Ba(e,t){const a=Mt(e,e.selection.focus),r=ct(e),n=bt(r,a.paragraphId),o=Be(r[n],a),i=n+t;if(i<0||i>=r.length)return e;const l=r[i];return Jt(e,{anchor:e.selection.anchor,focus:Fe(l,Math.min(o,De(l)))})}function Va(e){const t=St(e);if(t.isCollapsed||t.startIndex!==t.endIndex||t.endParagraphOffset-t.startParagraphOffset!==1)return null;const a=ct(e)[t.startIndex];if(!a)return null;let r=0;for(let n=0;n<a.runs.length;n+=1){const e=a.runs[n],o=r;if(r+=e.text.length,e.image&&1===e.text.length&&o===t.startParagraphOffset)return{paragraph:a,paragraphIndex:t.startIndex,run:e,runIndex:n,offset:o}}return null}function za(e,t){const a=Va(e);if(!a)return e;const r=ct(e),{paragraphIndex:n,offset:o,run:i}=a,l=bt(r,t.paragraphId);if(l<0)return e;const s=Be(r[l],t),d=l===n&&s>o?s-1:s;if(l===n&&d===o)return e;const c=e=>ha(e,[...xa(e,0,o),...xa(e,o+1,De(e))]),h=(e,t)=>Ca(e,Math.max(0,Math.min(t,De(e))),[Rt("",Ma(e,t),i.image)]),p=r.map((e,t)=>t===n&&t===l?h(c(e),d):t===n?c(e):t===l?h(e,d):sa([e])[0]),u=p[l];return va(e,p,ya(Fe(u,Math.max(0,Math.min(d+1,De(u))))))}function _a(e){return e.map(na)}function Ua(e){return e.reduce((e,t)=>e+t.text.length,0)}function qa(e,t,a){if(0===a.length)return e;const r=ct(e),n=r.findIndex(e=>e.id===t.paragraphId);if(-1===n)return e;const o=r[n],i=Be(o,t),l=_a(a[0].runs);if(1===a.length){const t=Ca(o,i,l),a=r.map((e,a)=>a===n?t:e),s=Ua(l);return va(e,a,{anchor:Fe(t,i),focus:Fe(t,i+s)})}const s=xa(o,0,i),d=xa(o,i,De(o)),c=a[a.length-1],h=a.slice(1,-1),p=ha(oa(a[0].paragraphTemplate),[...s,...l],Ma(o,i)),u=h.map(e=>ha(oa(e.paragraphTemplate),_a(e.runs))),f=ha(oa(c.paragraphTemplate),[..._a(c.runs),...d],Ma(o,i));return va(e,[...r.slice(0,n),p,...u,f,...r.slice(n+1)],{anchor:Fe(p,Ua(s)),focus:Fe(f,Ua(c.runs))})}function Ga(e,t,a={}){if(St(e).isCollapsed)return e;if(function(e,t){const a=St(e);if(a.isCollapsed)return!1;const r=ct(e),n=r.findIndex(e=>e.id===t.paragraphId);if(-1===n)return!1;if(n<a.startIndex||n>a.endIndex)return!1;const o=Be(r[n],t);return!(n===a.startIndex&&o<a.startParagraphOffset||n===a.endIndex&&o>a.endParagraphOffset)}(e,t))return e;const r=function(e){const t=St(e);if(t.isCollapsed)return[];const a=ct(e),r=[];for(let n=t.startIndex;n<=t.endIndex;n+=1){const e=a[n],o=xa(e,n===t.startIndex?t.startParagraphOffset:0,n===t.endIndex?t.endParagraphOffset:De(e));r.push({paragraphTemplate:oa(e),runs:o})}return r}(e);if(0===r.length)return e;if(a.copy)return qa(e,t,r);const n=function(e,t){const a=St(e),r=ct(e),n=r.findIndex(e=>e.id===t.paragraphId);if(-1===n)return t;const o=Be(r[n],t);if(a.startIndex===a.endIndex)return n!==a.startIndex||o<=a.endParagraphOffset?t:Fe(r[a.startIndex],o-(a.endParagraphOffset-a.startParagraphOffset));return t}(e,t);return qa(Sa(e),n,r)}function Wa(e,t,a){if(0===t.length)return e;const r=Ct(e.selection)?e:Sa(e),{paragraph:n,index:o,offset:i}=ba(r),l=a?{...a}:Ma(n,i),s={id:`run:${Math.random().toString(36).slice(2,9)}`,text:t,styles:l};r.trackChangesEnabled&&(s.revision={id:`rev:${Math.random().toString(36).slice(2,9)}`,type:"insert",author:"User",date:Date.now()});const d=Ca(n,i,[s]);return va(r,ct(r).map((e,t)=>t===o?d:e),ya(Fe(d,i+t.length)))}function ja(e,t,a){if(0===t.length)return e;const r=t.replace(/\r\n/g,"\n").replace(/\r/g,"\n");if(!r.includes("\n"))return Wa(e,r,a);const n=Ct(e.selection)?e:Sa(e),{paragraph:o,index:i,offset:l}=ba(n),s=r.split("\n"),d=Ma(o,l),c=ha(o,[...xa(o,0,l),Rt(s[0],d)],d),h=xa(o,l,De(o)),p=s.slice(1,-1).map(e=>pa([{text:e,styles:d}])),u=pa([{text:s[s.length-1],styles:d},...h.map(e=>({text:e.text,styles:e.styles}))]),f=ct(n);return va(n,[...f.slice(0,i),c,...p,u,...f.slice(i+1)],ya(Fe(u,s[s.length-1].length)))}function Xa(e){var t;if(!Ct(e.selection))return Sa(e);const{paragraph:a,index:r,offset:n}=ba(e),o=ct(e);if(n>0){if(e.trackChangesEnabled){const i=a.runs;let l=0,s=-1,d=-1;for(let e=0;e<i.length;e+=1){const t=l+i[e].text.length;if(n<=t){s=e,d=n-l;break}l=t}if(-1!==s){const l=i[s];if("insert"===(null==(t=l.revision)?void 0:t.type)){const t=ha(a,[...xa(a,0,n-1),...xa(a,n,De(a))]);return va(e,o.map((e,a)=>a===r?t:e),ya(Fe(t,n-1)))}const c=l.text[d-1],h={id:`run:${Math.random().toString(36).slice(2,9)}`,text:c,styles:{...l.styles},revision:{id:`rev:${Math.random().toString(36).slice(2,9)}`,type:"delete",author:"User",date:Date.now()}},p=ha(a,[...xa(a,0,n-1),h,...xa(a,n,De(a))]);return va(e,o.map((e,t)=>t===r?p:e),ya(Fe(p,n-1)))}}const i=ha(a,[...xa(a,0,n-1),...xa(a,n,De(a))],Ma(a,n-1));return va(e,o.map((e,t)=>t===r?i:e),ya(Fe(i,n-1)))}if(0===r)return e;const i=o[r-1],l=ha(i,[...i.runs.map(na),...a.runs.map(na)]);return va(e,[...o.slice(0,r-1),l,...o.slice(r+1)],ya(Fe(l,De(i))))}function Za(e){var t;if(!Ct(e.selection))return Sa(e);const{paragraph:a,index:r,offset:n}=ba(e),o=ct(e);if(n<De(a)){if(e.trackChangesEnabled){const i=a.runs;let l=0,s=-1,d=-1;for(let e=0;e<i.length;e+=1){const t=l+i[e].text.length;if(n<t){s=e,d=n-l;break}l=t}if(-1!==s){const l=i[s];if("insert"===(null==(t=l.revision)?void 0:t.type)){const t=ha(a,[...xa(a,0,n),...xa(a,n+1,De(a))]);return va(e,o.map((e,a)=>a===r?t:e),ya(Fe(t,n)))}const c=l.text[d],h={id:`run:${Math.random().toString(36).slice(2,9)}`,text:c,styles:{...l.styles},revision:{id:`rev:${Math.random().toString(36).slice(2,9)}`,type:"delete",author:"User",date:Date.now()}},p=ha(a,[...xa(a,0,n),h,...xa(a,n+1,De(a))]);return va(e,o.map((e,t)=>t===r?p:e),ya(Fe(p,n)))}}const i=ha(a,[...xa(a,0,n),...xa(a,n+1,De(a))],Ma(a,n));return va(e,o.map((e,t)=>t===r?i:e),ya(Fe(i,n)))}if(r>=o.length-1)return e;const i=o[r+1],l=ha(a,[...a.runs.map(na),...i.runs.map(na)]);return va(e,[...o.slice(0,r),l,...o.slice(r+2)],ya(Fe(l,n)))}function Ka(e,t){const a=St(e);if(a.isCollapsed)return e;const r=ct(e),n=r.slice(a.startIndex,a.endIndex+1).flatMap((e,t)=>{const r=a.startIndex+t;return xa(e,r===a.startIndex?a.startParagraphOffset:0,r===a.endIndex?a.endParagraphOffset:De(e))}).filter(e=>e.text.length>0);if(0===n.length)return e;const o=!n.every(e=>{var a;return Boolean(null==(a=e.styles)?void 0:a[t])}),i=r.map((e,r)=>{if(r<a.startIndex||r>a.endIndex)return e;return Ia(e,r===a.startIndex?a.startParagraphOffset:0,r===a.endIndex?a.endParagraphOffset:De(e),e=>({...e,styles:aa(e.styles,t,o)}))});return va(e,i,ka(i,a))}function Ya(e,t,a){const r=St(e);if(r.isCollapsed)return e;const n=ct(e).map((e,n)=>{if(n<r.startIndex||n>r.endIndex)return e;return Ia(e,n===r.startIndex?r.startParagraphOffset:0,n===r.endIndex?r.endParagraphOffset:De(e),e=>({...e,styles:ra(e.styles,t,a)}))});return va(e,n,ka(n,r))}function Ja(e,t,a){var r;let n;const o=e=>{const a=e.findIndex(e=>e.id===t);return a>=0?(n=e[a],[...e.slice(0,a),...e.slice(a+1)]):e};let i={...e.document};if(i.sections&&i.sections.length>0&&(i.sections=i.sections.map(e=>({...e,blocks:o(e.blocks),header:e.header?o(e.header):void 0,footer:e.footer?o(e.footer):void 0}))),!n)return e;const l=a.paragraphId;if("table"===n.type){if(lt(n).some(e=>e.id===l))return e}const s=e=>{const t=e.findIndex(e=>e.id===l||"table"===e.type&&lt(e).some(e=>e.id===l));if(t<0)return{nextBlocks:e,found:!1};return{nextBlocks:[...e.slice(0,t),n,...e.slice(t)],found:!0}},d=ht(e),c=pt(e),h={...null==(r=i.sections)?void 0:r[d]};let p=!1;if("header"===c){const e=s(h.header??[]);h.header=e.nextBlocks,p=e.found}else if("footer"===c){const e=s(h.footer??[]);h.footer=e.nextBlocks,p=e.found}else{const e=s(h.blocks);h.blocks=e.nextBlocks,p=e.found}return p||(h.blocks=[...h.blocks,n]),i.sections=[...i.sections??[]],i.sections[d]=h,{...e,document:i}}function Qa(e){const t=Ct(e.selection)?e:Sa(e),{paragraph:a,index:r,offset:n}=ba(t),o=ha(a,xa(a,0,n),Ma(a,n)),i=xa(a,n,De(a)),l=i.length>0?ua(a,i.map(e=>({text:e.text,styles:e.styles}))):(()=>{const e=Ht("");return e.style=a.style?{...a.style}:void 0,e.list=a.list?{...a.list}:void 0,e})(),s=ct(t);return va(t,[...sa(s.slice(0,r)),o,l,...sa(s.slice(r+1))],ya(Fe(l,0)))}function $a(e){const t=Ct(e.selection)?e:Sa(e),{paragraph:a,index:r,offset:n}=ba(t),o=ha(a,xa(a,0,n),Ma(a,n)),i=xa(a,n,De(a)),l=i.length>0?ua(a,i.map(e=>({text:e.text,styles:e.styles}))):(()=>{const e=Ht("");return e.style=a.style?{...a.style}:void 0,e.list=a.list?{...a.list}:void 0,e})();l.style={...a.style??{},pageBreakBefore:!0};const s=ct(t);return va(t,[...sa(s.slice(0,r)),o,l,...sa(s.slice(r+1))],ya(Fe(l,0)))}function er(e,t,a){const r=St(e),n=ct(e),o=r.startIndex,i=r.endIndex,l=n.map((e,r)=>r<o||r>i?oa(e):{...oa(e),style:la(e.style,t,a)});return va(e,l,ka(l,r))}function tr(e){const t=St(e),a=ct(e).map((e,a)=>{if(a<t.startIndex||a>t.endIndex)return oa(e);if(!e.list)return oa(e);const r=e.list.level??0;return r<=0?ga(e):fa(e,r-1)});return va(e,a,ka(a,t))}function ar(e){const t=[],a=[];for(let r=0;r<e.rows.length;r+=1){const n=e.rows[r];let o=0;for(let e=0;e<n.cells.length;e+=1){for(;t[o]>0;)o+=1;const i=n.cells[e];if("continue"===i.vMerge)continue;const l=Math.max(1,i.colSpan??1),s=Math.max(1,i.rowSpan??1);a.push({rowIndex:r,cellIndex:e,visualRowIndex:r,visualColumnIndex:o,rowSpan:s,colSpan:l,cell:i});for(let e=0;e<l;e+=1)t[o+e]=Math.max(t[o+e]??0,s);o+=l}for(let e=0;e<t.length;e+=1)t[e]>0&&(t[e]-=1)}return a}function rr(e,t){const{startRowIndex:a,endRowIndex:r,repeatedHeaderRowCount:n}=t,o=a>0&&n>0?e.rows.slice(0,n):[],i=e.rows.slice(a,r);return{...e,rows:[...o,...i]}}function nr(e,t,a){const r=new Set,n=ht(e),o=yt(e.document,e.selection.anchor.paragraphId,n),i=yt(e.document,e.selection.focus.paragraphId,n);if(o&&i&&o.blockIndex===i.blockIndex&&o.zone===i.zone){const t=ot(e.document)[n];if(t){const e="header"===o.zone?t.header:"footer"===o.zone?t.footer:t.blocks,a=null==e?void 0:e[o.blockIndex];if(a&&"table"===a.type){const e=ar(a),t=e.find(e=>e.rowIndex===o.rowIndex&&e.cellIndex===o.cellIndex),n=e.find(e=>e.rowIndex===i.rowIndex&&e.cellIndex===i.cellIndex);if(t&&n){const a=Math.min(t.visualRowIndex,n.visualRowIndex),o=Math.max(t.visualRowIndex+t.rowSpan-1,n.visualRowIndex+n.rowSpan-1),i=Math.min(t.visualColumnIndex,n.visualColumnIndex),l=Math.max(t.visualColumnIndex+t.colSpan-1,n.visualColumnIndex+n.colSpan-1),s=e.filter(e=>e.visualRowIndex<=o&&e.visualRowIndex+e.rowSpan-1>=a&&e.visualColumnIndex<=l&&e.visualColumnIndex+e.colSpan-1>=i);for(const e of s)for(const t of e.cell.blocks)r.add(t.id)}}}}if(0===r.size){const t=St(e),a=ct(e);for(let e=t.startIndex;e<=t.endIndex;e+=1)r.add(a[e].id)}const l=e=>{const r={...e.style??{}};return null===a?delete r[t]:r[t]=a,{...e,style:Object.keys(r).length>0?r:void 0}},s=ot(e.document).map(e=>({...e,blocks:Na(e.blocks,r,l),header:e.header?Na(e.header,r,l):void 0,footer:e.footer?Na(e.footer,r,l):void 0}));return{...e,document:{...e.document,sections:s}}}function or(e,t,a){const r=St(e),n=ct(e),o=new Set;for(let s=r.startIndex;s<=r.endIndex;s+=1)o.add(n[s].id);const i=e=>e.map(e=>{if("paragraph"===e.type)return e;const r=lt(e).some(e=>o.has(e.id)),n=e.rows.map(e=>({...e,cells:e.cells.map(e=>({...e,blocks:i(e.blocks)}))})),l={...e,rows:n};return r?(e=>{const r={...e.style??{}};return r[t]=a,{...e,style:Object.keys(r).length>0?r:void 0}})(l):l}),l=ot(e.document).map(e=>({...e,blocks:i(e.blocks),header:e.header?i(e.header):void 0,footer:e.footer?i(e.footer):void 0}));return{...e,document:{...e.document,sections:l}}}function ir(e,t,a,r){const n=e=>e.map(e=>"table"===e.type?(e=>{if(e.id!==t)return e;const n=[...e.rows],o=n[a];if(o){const e={...o.style??{}};null===r?delete e.height:e.height=r,n[a]={...o,style:Object.keys(e).length>0?e:void 0}}return{...e,rows:n}})(e):e),o=ot(e.document).map(e=>({...e,blocks:n(e.blocks),header:e.header?n(e.header):void 0,footer:e.footer?n(e.footer):void 0}));return{...e,document:{...e.document,sections:o}}}function lr(e,t,a,r,n){const o=e=>{if("number"==typeof e&&Number.isFinite(e))return e;if("string"!=typeof e)return null;const t=e.trim().toLowerCase();if(!t||t.includes("%"))return null;if(t.endsWith("pt")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?e:null}if(t.endsWith("px")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?.75*e:null}if(!/^[+-]?\d+(\.\d+)?$/.test(t))return null;const a=Number.parseFloat(t);return Number.isFinite(a)?a:null},i=e=>e.map(e=>"table"===e.type?(e=>{var i;if(e.id!==t)return e;const l=ar(e),s=Math.max(1,...l.map(e=>e.visualColumnIndex+Math.max(1,e.colSpan))),d=Array(s);let c=!1,h=!0;for(let t=0;t<s;t+=1){const r=o(a[t]);if(null!==r){d[t]=Math.max(1,r),c=!0;continue}const n=null==(i=e.gridCols)?void 0:i[t];if(!("number"==typeof n&&Number.isFinite(n)&&n>0)){h=!1;break}d[t]=n}const p=e.rows.map((e,t)=>{const r=e.cells.map((e,r)=>{const n=l.find(e=>e.rowIndex===t&&e.cellIndex===r);if(!n)return e;const o=n.visualColumnIndex+n.colSpan-1,i=a[o];return void 0!==i&&1===n.colSpan?{...e,style:{...e.style??{},width:i}}:e});return{...e,cells:r}}),u={...e.style??{}};return void 0!==r&&(u.width=r),void 0!==n&&(u.indentLeft=n),{...e,rows:p,gridCols:c&&h?d:e.gridCols,style:Object.keys(u).length>0?u:void 0}})(e):e),l=ot(e.document).map(e=>({...e,blocks:i(e.blocks),header:e.header?i(e.header):void 0,footer:e.footer?i(e.footer):void 0}));return{...e,document:{...e.document,sections:l}}}function sr(e,t){let a=nr(e,"borderTop",t);return a=nr(a,"borderRight",t),a=nr(a,"borderBottom",t),a=nr(a,"borderLeft",t),a}function dr(e){var t,a,r;const n=St(e),o=ct(e);if(n.isCollapsed){const e=o[n.startIndex];return e?(null==(t=wa(e,n.startParagraphOffset))?void 0:t.href)??null:null}const i=o.slice(n.startIndex,n.endIndex+1).flatMap((e,t)=>{const a=n.startIndex+t;return xa(e,a===n.startIndex?n.startParagraphOffset:0,a===n.endIndex?n.endParagraphOffset:De(e))}).filter(e=>e.text.length>0&&!e.image);if(0===i.length)return null;const l=null==(r=null==(a=i[0])?void 0:a.styles)?void 0:r.link;return l&&i.every(e=>{var t;return(null==(t=e.styles)?void 0:t.link)===l})?l:null}function cr(e,t){const a=ct(e).map(e=>{const a=e.runs.filter(e=>{var a;return!((null==(a=e.revision)?void 0:a.id)===t&&"delete"===e.revision.type)}).map(e=>{var a;if((null==(a=e.revision)?void 0:a.id)===t&&"insert"===e.revision.type){const t={...e};return delete t.revision,t}return e});return a.length===e.runs.length&&a.every((t,a)=>t===e.runs[a])?e:ha(e,a)});return va(e,a,ka(a,St(e)))}function hr(e,t){const a=ct(e).map(e=>{const a=e.runs.filter(e=>{var a;return!((null==(a=e.revision)?void 0:a.id)===t&&"insert"===e.revision.type)}).map(e=>{var a;if((null==(a=e.revision)?void 0:a.id)===t&&"delete"===e.revision.type){const t={...e};return delete t.revision,t}return e});return a.length===e.runs.length&&a.every((t,a)=>t===e.runs[a])?e:ha(e,a)});return va(e,a,ka(a,St(e)))}function pr(e){var t;const a=St(e);if(a.isCollapsed)return"";const r=ct(e),n=[];let o=null;const i=()=>{o&&(n.push("bullet"===o?"</ul>":"</ol>"),o=null)};for(let l=a.startIndex;l<=a.endIndex;l+=1){const s=r[l];if(!s)continue;const d=xa(s,l===a.startIndex?a.startParagraphOffset:0,l===a.endIndex?a.endParagraphOffset:De(s)),c=Ea(s.style),h=c.length>0?` style="${c}"`:"",p=Oa(d,e.document);if(null==(t=s.list)?void 0:t.kind){const e="bullet"===s.list.kind?"ul":"ol";o!==s.list.kind&&(i(),n.push(`<${e}>`),o=s.list.kind),n.push(`<li${h}>${p}</li>`);continue}i(),n.push(`<p${h}>${p}</p>`)}return i(),n.join("")}function ur(e,t){if(0===t.length)return e;const a=Ct(e.selection)?e:Sa(e),{paragraph:r,index:n,offset:o}=ba(a),i=ct(a),l=xa(r,0,o),s=xa(r,o,De(r)),d=t.map(e=>{const t=Nt(e.runs.map(e=>({text:e.text,styles:ea(e.styles),image:e.image?{...e.image}:void 0})));return t.style=e.style?{...e.style}:void 0,t.list=e.list?{...e.list}:void 0,t});let c,h=ya(Fe(r,o));if(1===d.length){const e=d[0],t=e.runs.reduce((e,t)=>e+t.text.length,0),a=ha(r,[...l,...e.runs.map(na),...s],Ma(r,o));a.style=r.style?{...r.style}:e.style?{...e.style}:void 0,a.list=r.list?{...r.list}:e.list?{...e.list}:void 0,c=[...sa(i.slice(0,n)),a,...sa(i.slice(n+1))],h=ya(Fe(a,l.reduce((e,t)=>e+t.text.length,0)+t))}else{const e=d[0],t=d[d.length-1],a=t.runs.reduce((e,t)=>e+t.text.length,0),p=ha(r,[...l,...e.runs.map(na)],Ma(r,o));p.style=r.style?{...r.style}:e.style?{...e.style}:void 0,p.list=r.list?{...r.list}:e.list?{...e.list}:void 0;const u=d.slice(1,-1).map(oa),f=ha(t,[...t.runs.map(na),...s],void 0);f.list=t.list?{...t.list}:void 0,c=[...sa(i.slice(0,n)),p,...u,f,...sa(i.slice(n+1))],h=ya(Fe(f,a))}return va(a,c,h)}function*fr(e){const t=nt(e);for(const a of t){const e=[a.header??[],a.firstPageHeader??[],a.evenPageHeader??[],a.blocks,a.footer??[],a.firstPageFooter??[],a.evenPageFooter??[]];for(const t of e)for(const e of t)for(const t of lt(e))for(const e of t.runs)e.footnoteReference&&(yield{paragraph:t,run:e})}}const gr=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]];function mr(e){if(e<=0)return String(e);let t=e,a="";for(const[r,n]of gr)for(;t>=r;)a+=n,t-=r;return a}function vr(e){if(e<=0)return String(e);let t=e,a="";for(;t>0;){a="abcdefghijklmnopqrstuvwxyz"[(t-1)%26]+a,t=Math.floor((t-1)/26)}return a}const yr=["*","†","‡","§","¶","#"];function br(e,t="decimal"){switch(t){case"lowerRoman":return mr(e);case"upperRoman":return mr(e).toUpperCase();case"lowerLetter":return vr(e);case"upperLetter":return vr(e).toUpperCase();case"symbol":{const t=(e-1)%yr.length,a=Math.floor((e-1)/yr.length)+1;return yr[t].repeat(a)}default:return String(e)}}function Mr(e,t){var a;for(const r of fr(e))if((null==(a=r.run.footnoteReference)?void 0:a.footnoteId)===t)return r;return null}function wr(e){var t,a;const r=e.footnotes;if(!r||0===Object.keys(r.items).length)return e;const n=(null==(t=r.settings)?void 0:t.numberFormat)??"decimal",o=(null==(a=r.settings)?void 0:a.startAt)??1,i=new Set,l=new Map;let s=o-1;for(const{run:u}of fr(e)){const e=u.footnoteReference;e&&(i.add(e.footnoteId),e.customMark?l.set(e.footnoteId,e.customMark):l.has(e.footnoteId)||(s+=1,l.set(e.footnoteId,br(s,n))))}let d=!1;const c=nt(e).map(e=>{const t=e=>{if(!e)return e;let t=!1;const a=e.map(e=>{if("paragraph"===e.type){const a=xr(e,l);return a!==e&&(t=!0),a}let a=!1;const r=e.rows.map(e=>{let t=!1;const r=e.cells.map(e=>{let a=!1;const r=e.blocks.map(e=>{const t=xr(e,l);return t!==e&&(a=!0),t});return a?(t=!0,{...e,blocks:r}):e});return t?(a=!0,{...e,cells:r}):e});return a?(t=!0,{...e,rows:r}):e});return t?(d=!0,a):e};return{...e,blocks:t(e.blocks)??e.blocks,header:t(e.header),firstPageHeader:t(e.firstPageHeader),evenPageHeader:t(e.evenPageHeader),footer:t(e.footer),firstPageFooter:t(e.firstPageFooter),evenPageFooter:t(e.evenPageFooter)}}),h={};let p=!1;for(const[u,f]of Object.entries(r.items))i.has(u)?h[u]=f:p=!0;return d||p?{...e,sections:d?c:e.sections,footnotes:{...r,items:p?h:r.items}}:e}function xr(e,t){let a=!1;const r=e.runs.map(e=>{if(!e.footnoteReference)return e;const r=t.get(e.footnoteReference.footnoteId);return void 0===r||e.text===r?e:(a=!0,{...e,text:r})});return a?{...e,runs:r}:e}function Cr(e){if("main"!==(e.activeZone??"main"))return e;const t=Ct(e.selection)?e:Sa(e),{paragraph:a,index:r,offset:n}=ba(t),o=function(){const e=[zt("",{styleId:"footnoteText"})];return{id:Vt(),blocks:e}}(),i=function(e){var t,a;const r=e.footnotes,n=(null==(t=null==r?void 0:r.settings)?void 0:t.numberFormat)??"decimal";let o=((null==(a=null==r?void 0:r.settings)?void 0:a.startAt)??1)-1;const i=new Set;for(const{run:l}of fr(e)){const e=l.footnoteReference;e&&!e.customMark&&(i.has(e.footnoteId)||(i.add(e.footnoteId),o+=1))}return br(o+1,n)}(t.document),l=function(e,t){const a=Rt(t,{styleId:"footnoteReference",superscript:!0}),r={footnoteId:e};return a.footnoteReference=r,a}(o.id,i),s=Ca(a,n,[l]),d=va(t,ct(t).map((e,t)=>t===r?s:e),xt(Fe(s,n+i.length))),c=function(e){return e||{items:{}}}(d.document.footnotes),h=wr({...d.document,footnotes:{...c,items:{...c.items,[o.id]:o}}}),p=o.blocks.flatMap(lt).find(Boolean);return p?{...d,document:h,selection:xt(Fe(p,0)),activeZone:"footnote",activeFootnoteId:o.id}:{...d,document:h}}const Sr="oasis-editor:debug";function Ir(){var e,t;const a=(null==(t=null==(e=globalThis.window)?void 0:e.location)?void 0:t.hostname)??"";return"localhost"===a||"127.0.0.1"===a||"::1"===a}function kr(){var e,t;if(Ir())return!0;if(!0===(null==(e=globalThis.window)?void 0:e.__OASIS_EDITOR_DEBUG__))return!0;if(!1===(null==(t=globalThis.window)?void 0:t.__OASIS_EDITOR_DEBUG__))return!1;const a=function(){var e;try{const t=null==(e=globalThis.localStorage)?void 0:e.getItem(Sr);return"1"===t||"0"!==t&&null}catch{return null}}();return null!==a?a:function(){var e;try{return"1"===(null==(e=globalThis.localStorage)?void 0:e.getItem(Sr))}catch{return!1}}()}function Ar(e,t=new WeakSet){if(null==e)return e;if("object"!=typeof e)return"function"==typeof e?`[Function ${e.name??"anonymous"}]`:e;if(t.has(e))return"[Circular]";if(t.add(e),Array.isArray(e))return e.map(e=>Ar(e,t));if(e instanceof Date)return e.toISOString();if(e instanceof Error)return{name:e.name,message:e.message,stack:e.stack};if(e instanceof Map)return Array.from(e.entries()).map(([e,a])=>[Ar(e,t),Ar(a,t)]);if(e instanceof Set)return Array.from(e.values()).map(e=>Ar(e,t));const a={};for(const r of Object.keys(e))a[r]=Ar(e[r],t);return a}function Tr(e){const t=(t,a,r)=>{if(!kr()&&"debug"===t)return;const n=`[${function(){const e=new Date;return`${String(e.getHours()).padStart(2,"0")}:${String(e.getMinutes()).padStart(2,"0")}:${String(e.getSeconds()).padStart(2,"0")}.${String(e.getMilliseconds()).padStart(3,"0")}`}()} oasis-editor:${e}] ${a}`,o=Ir()?console.info:console.debug,i="error"===t?console.error:"warn"===t?console.warn:"info"===t?console.info:o;if(void 0===r)return void i(n);const l=Ar(r),s=function(e){try{const t=JSON.stringify(e);return t?t.length>240?`${t.slice(0,237)}...`:t:null}catch{return null}}(l);i(null===s?n:`${n} ${s}`,l)};return{debug:(e,a)=>t("debug",e,a),info:(e,a)=>t("info",e,a),warn:(e,a)=>t("warn",e,a),error:(e,a)=>t("error",e,a)}}function Pr(){const e=new Date;return`${String(e.getHours()).padStart(2,"0")}:${String(e.getMinutes()).padStart(2,"0")}:${String(e.getSeconds()).padStart(2,"0")}.${String(e.getMilliseconds()).padStart(3,"0")}`}const Er=[],Lr=[];let Or=null;function Rr(){var e;if("undefined"!=typeof process&&"1"===process.env.OASIS_PERF_LOG)return!0;if("undefined"==typeof window)return!1;try{return"1"===(null==(e=window.localStorage)?void 0:e.getItem("oasis:perf:log"))}catch{return!1}}function Hr(e){performance.mark(`${e}:start`)}function Nr(e){const t=`${e}:start`,a=`${e}:end`;performance.mark(a);try{const r=performance.measure(e,t,a),n=Math.round(100*r.duration)/100;Er.push({name:e,duration:n,timestamp:Math.round(r.startTime)}),Rr()&&console.info(`%c[perf] ${e}`,"color: #f59e0b;",`${Pr()} ${n}ms`),performance.clearMarks(t),performance.clearMarks(a)}catch{}}function Dr(e,t,a=1){const r=performance.now();try{return t()}finally{const t=performance.now()-r;t>=a&&function(e,t){Er.push({name:e,duration:Math.round(100*t)/100,timestamp:Date.now()}),Rr()&&console.info(`%c[perf] ${e}`,"color: #f59e0b;",`${Pr()} ${Math.round(100*t)/100}ms`)}(e,t)}}let Fr=null;function Br(e,t){if(0===e.length)return 0;const a=Math.ceil(t/100*e.length)-1;return e[Math.max(0,a)]}function Vr(e){if(0===e.length)return{p50:0,p95:0,p99:0,max:0,count:0};const t=[...e].sort((e,t)=>e-t);return{p50:Br(t,50),p95:Br(t,95),p99:Br(t,99),max:t[t.length-1]??0,count:t.length}}function zr(e){return"paragraph"===e.type?{...e,runs:e.runs.map(e=>({...e,styles:e.styles?{...e.styles}:void 0,image:e.image?{...e.image}:void 0,field:e.field?{...e.field}:void 0,revision:e.revision?{...e.revision}:void 0,footnoteReference:e.footnoteReference?{...e.footnoteReference}:void 0})),style:e.style?{...e.style}:void 0,list:e.list?{...e.list}:void 0}:{...e,rows:e.rows.map(e=>({...e,cells:e.cells.map(e=>({...e,colSpan:e.colSpan??void 0,rowSpan:e.rowSpan??void 0,vMerge:e.vMerge??void 0,blocks:e.blocks.map(e=>({...e,runs:e.runs.map(e=>({...e,styles:e.styles?{...e.styles}:void 0,image:e.image?{...e.image}:void 0,field:e.field?{...e.field}:void 0,revision:e.revision?{...e.revision}:void 0,footnoteReference:e.footnoteReference?{...e.footnoteReference}:void 0})),style:e.style?{...e.style}:void 0,list:e.list?{...e.list}:void 0}))}))}))}}function _r(e){var t,a,r,n,o,i;return{...e,blocks:e.blocks.map(zr),header:null==(t=e.header)?void 0:t.map(zr),firstPageHeader:null==(a=e.firstPageHeader)?void 0:a.map(zr),evenPageHeader:null==(r=e.evenPageHeader)?void 0:r.map(zr),footer:null==(n=e.footer)?void 0:n.map(zr),firstPageFooter:null==(o=e.firstPageFooter)?void 0:o.map(zr),evenPageFooter:null==(i=e.evenPageFooter)?void 0:i.map(zr)}}function Ur(e){return{...e,blocks:e.blocks.map(zr)}}function qr(e){var t,a;if(!e)return;const r={};for(const[n,o]of Object.entries(e.items))r[n]=Ur(o);return{items:r,settings:e.settings?{...e.settings}:void 0,separator:null==(t=e.separator)?void 0:t.map(zr),continuationSeparator:null==(a=e.continuationSeparator)?void 0:a.map(zr)}}function Gr(e){var t;return{...e,document:{...e.document,sections:null==(t=e.document.sections)?void 0:t.map(_r),footnotes:qr(e.document.footnotes)},selection:{anchor:{...e.selection.anchor},focus:{...e.selection.focus}},activeSectionIndex:e.activeSectionIndex??0,activeZone:e.activeZone??"main",activeFootnoteId:e.activeFootnoteId}}const Wr={"toolbar.file":"File","toolbar.export":"Export","toolbar.import":"Import","toolbar.undo":"Undo last change","toolbar.redo":"Redo last undone change","toolbar.insert":"Insert","toolbar.image":"Image","toolbar.table":"Table","toolbar.pageNumber":"Page #","toolbar.totalPages":"Total Pages","toolbar.link":"Link","toolbar.unlink":"Remove Link","toolbar.footnote":"Footnote","toolbar.alt":"Alt Text","toolbar.review":"Review","toolbar.trackChanges":"Track Changes","toolbar.accept":"Accept","toolbar.reject":"Reject","toolbar.bold":"Bold","toolbar.italic":"Italic","toolbar.underline":"Underline","toolbar.underlineRemove":"No underline","toolbar.strike":"Strikethrough","toolbar.superscript":"Superscript","toolbar.subscript":"Subscript","toolbar.alignLeft":"Align left","toolbar.alignCenter":"Align center","toolbar.alignRight":"Align right","toolbar.justify":"Justify","toolbar.bulletList":"Bulleted list","toolbar.numberedList":"Numbered list","toolbar.increaseIndent":"Increase indent (Tab)","toolbar.decreaseIndent":"Decrease indent (Shift+Tab)","toolbar.listFormat":"Change list numbering format","toolbar.listStartAt":"Start numbering at","toolbar.formatDecimal":"1, 2, 3","toolbar.formatLowerLetter":"a, b, c","toolbar.formatUpperLetter":"A, B, C","toolbar.formatLowerRoman":"i, ii, iii","toolbar.formatUpperRoman":"I, II, III","toolbar.formatBullet":"Bullet","toolbar.moreTools":"More tools","toolbar.style":"Paragraph Style","toolbar.fontFamily":"Font Family","toolbar.font":"Font","toolbar.fontSize":"Font Size","toolbar.size":"Size","toolbar.color":"Text Color","toolbar.highlight":"Highlight Color","toolbar.colorAutomatic":"Automatic","toolbar.noHighlight":"No highlight","toolbar.themeColors":"Theme Colors","toolbar.standardColors":"Standard Colors","toolbar.moreColors":"More Colors...","metric.pageBreak":"Page Break","metric.pageBreakBefore":"Page Break Before","metric.keepNext":"Keep Next","metric.keepWithNext":"Keep with Next","metric.lineHeight":"Line Height","metric.line":"Line","metric.spacingBefore":"Spacing Before","metric.before":"Before","metric.spacingAfter":"Spacing After","metric.after":"After","metric.leftIndent":"Left Indent","metric.indent":"Indent","metric.firstLineIndent":"First Line Indent","metric.first":"First","metric.hangingIndent":"Hanging Indent","metric.hang":"Hang","metric.paragraphBgColor":"Paragraph Background Color","metric.paraBg":"Para BG","metric.paraBorders":"Para Borders","metric.applyBorders":"Apply borders to paragraph","metric.lineSpacing":"Line and paragraph spacing","metric.lineSpacingOptions":"Line spacing options…","metric.lineSpacingOption":"Option {0}","lineSpacing.title":"Line and paragraph spacing","lineSpacing.lineSpacingLabel":"Line spacing","lineSpacing.lineSpacingValue":"Value","lineSpacing.spacingBeforeLabel":"Before (pt)","lineSpacing.spacingAfterLabel":"After (pt)","lineSpacing.preview":"Preview","lineSpacing.previewText":"Line spacing controls the vertical distance between lines of text inside a paragraph.","section.orient":"Orient","section.pageSetup":"Page Setup","section.toggleOrientation":"Toggle Orientation","section.margins":"Margins","section.marginsNormal":"Normal Margins","section.marginsNarrow":"Narrow Margins","section.secNext":"Sec Next","section.secNextTooltip":"Insert Section Break (Next Page)","section.secCont":"Sec Cont","section.secContTooltip":"Insert Section Break (Continuous)","table.merge":"Merge","table.mergeTooltip":"Merge selected cells","table.split":"Split","table.splitTooltip":"Split selected cells","table.insertColumnLeft":"Insert column left","table.insertColumnRight":"Insert column right","table.deleteColumn":"Delete column","table.insertRowAbove":"Insert row above","table.insertRowBelow":"Insert row below","table.deleteRow":"Delete row","table.cellColor":"Cell Color","table.applyBorders":"Apply borders","table.removeBorders":"Remove borders","table.width100":"100%","table.width100Tooltip":"Table Width 100%","table.alignLeft":"Align Left","table.alignCenter":"Align Center","table.alignRight":"Align Right","table.cellWidth":"Cell Width","table.cellBgColorPrompt":"Cell Background Color:","table.cellWidthPrompt":"Cell Width (e.g. 50% or 200pt):","generic.close":"Close","generic.cancel":"Cancel","generic.save":"Save","generic.apply":"Apply","generic.ok":"OK","title.untitled":"Untitled document","dialog.imageAlt.title":"Image Alt Text","dialog.imageAlt.label":"Description (Alt text)","dialog.imageAlt.placeholder":"Describe the image","dialog.link.title":"Insert Link","dialog.link.label":"Link URL","dialog.link.placeholder":"https://example.com","dialog.font.title":"Font","dialog.font.family":"Font Family","dialog.font.size":"Size","dialog.font.style":"Style","dialog.font.bold":"Bold","dialog.font.italic":"Italic","dialog.font.underline":"Underline","dialog.font.strike":"Strikethrough","dialog.font.color":"Color","dialog.font.customColor":"Custom","dialog.font.highlight":"Highlight","dialog.font.familyFilter":"Font filter","dialog.font.customSize":"Custom size","dialog.font.sizeInvalid":"Enter a number greater than 0.","dialog.font.styleList":"Font style","dialog.font.styleRegular":"Regular","dialog.font.styleItalic":"Italic","dialog.font.styleBold":"Bold","dialog.font.styleBoldItalic":"Bold Italic","dialog.font.underlineStyle":"Underline style","dialog.font.underlineColor":"Underline color","dialog.font.doubleStrike":"Double strikethrough","dialog.font.smallCaps":"Small caps","dialog.font.allCaps":"All caps","dialog.font.hidden":"Hidden","dialog.font.tabFont":"Font","dialog.font.tabAdvanced":"Advanced","dialog.font.advancedScale":"Scale","dialog.font.advancedSpacing":"Spacing","dialog.font.advancedBy":"By","dialog.font.advancedNormal":"Normal","dialog.font.advancedExpanded":"Expanded","dialog.font.advancedCondensed":"Condensed","dialog.font.advancedPosition":"Position","dialog.font.advancedRaised":"Raised","dialog.font.advancedLowered":"Lowered","dialog.font.advancedKerning":"Kerning for fonts","dialog.font.advancedKerningAbove":"points and above","dialog.font.advancedCharacterSpacingGroup":"Character Spacing","dialog.font.advancedOpenTypeGroup":"OpenType Features","dialog.font.advancedPreviewGroup":"Preview","dialog.font.advancedDefault":"Default","dialog.font.advancedLigatures":"Ligatures","dialog.font.advancedLigaturesNone":"None","dialog.font.advancedLigaturesStandard":"Standard","dialog.font.advancedLigaturesContextual":"Contextual","dialog.font.advancedLigaturesHistorical":"Historical","dialog.font.advancedLigaturesStandardContextual":"Standard and Contextual","dialog.font.advancedNumberSpacing":"Number spacing","dialog.font.advancedNumberSpacingProportional":"Proportional","dialog.font.advancedNumberSpacingTabular":"Tabular","dialog.font.advancedNumberForm":"Number forms","dialog.font.advancedNumberFormLining":"Lining","dialog.font.advancedNumberFormOldStyle":"Old-style","dialog.font.advancedStylisticSet":"Stylistic sets","dialog.font.advancedContextualAlternates":"Use Contextual Alternates","dialog.font.advancedScaleInvalid":"Scale must be a number greater than 0.","dialog.font.advancedAmountInvalid":"Amount must be 0 or greater.","dialog.font.advancedKerningInvalid":"Kerning threshold must be 0 or greater.","dialog.font.advancedStylisticSetInvalid":"Stylistic set must be between 1 and 20.","dialog.font.advancedPlaceholder":"Values use points; Normal clears spacing and position overrides.","dialog.font.preview":"Preview","dialog.font.previewText":"The quick brown fox jumps over the lazy dog","contextmenu.cut":"Cut","contextmenu.copy":"Copy","contextmenu.paste":"Paste","contextmenu.link":"Link...","contextmenu.font":"Font...","status.words":"{0} words","status.characters":"{0} characters","status.page":"Page {0} of {1}","status.zoom":"Zoom","status.saved":"Saved","status.saving":"Saving...","status.error":"Error saving","import.overlay.title":"Importing DOCX","import.phase.reading-file":"Reading file","import.phase.opening-docx":"Opening DOCX package","import.phase.parsing-document":"Parsing document structure","import.phase.applying-editor-state":"Applying editor state","import.phase.stabilizing-layout":"Stabilizing layout","import.phase.done":"Import complete","import.phase.error":"Import failed","find.title":"Find & Replace","find.placeholder":"Find","replace.placeholder":"Replace with","find.next":"Next","find.prev":"Previous","replace.one":"Replace","replace.all":"Replace All","find.matchCase":"Match case","find.noMatches":"No matches","find.prevTooltip":"Previous Match (Shift+Enter)","find.nextTooltip":"Next Match (Enter)","replace.allBtn":"All","find.wholeWord":"Whole word","menu.file":"File","menu.file.export":"Export","menu.file.new":"New","menu.file.print":"Print","menu.edit":"Edit","menu.edit.cut":"Cut","menu.edit.copy":"Copy","menu.edit.paste":"Paste","menu.edit.selectAll":"Select All","menu.view":"View","menu.view.margins":"Show Margins","menu.view.paragraphMarks":"Show ¶","menu.view.outline":"Show Outline","menu.view.fullscreen":"Full Screen","menu.insert":"Insert","menu.format":"Format","menu.format.align":"Align","menu.format.text":"Text","menu.format.lists":"Lists","menu.tools":"Tools","menu.tools.wordcount":"Word count","menu.help":"Help","menu.help.shortcuts":"Keyboard shortcuts","menu.help.about":"About","outline.toggle":"Toggle outline","outline.empty":"Headings you add to the document will appear here."},jr={en:Wr,"pt-BR":{"toolbar.file":"Arquivo","toolbar.export":"Exportar","toolbar.import":"Importar","toolbar.undo":"Desfazer última alteração","toolbar.redo":"Refazer última alteração","toolbar.insert":"Inserir","toolbar.image":"Imagem","toolbar.table":"Tabela","toolbar.pageNumber":"Nº de Página","toolbar.totalPages":"Total de Páginas","toolbar.link":"Link","toolbar.unlink":"Remover Link","toolbar.footnote":"Nota de rodapé","toolbar.alt":"Texto Alt","toolbar.review":"Revisão","toolbar.trackChanges":"Controlar Alterações","toolbar.accept":"Aceitar","toolbar.reject":"Rejeitar","toolbar.bold":"Negrito","toolbar.italic":"Itálico","toolbar.underline":"Sublinhado","toolbar.underlineRemove":"Sem sublinhado","toolbar.strike":"Tachado","toolbar.superscript":"Sobrescrito","toolbar.subscript":"Subscrito","toolbar.alignLeft":"Alinhar à esquerda","toolbar.alignCenter":"Centralizar","toolbar.alignRight":"Alinhar à direita","toolbar.justify":"Justificar","toolbar.bulletList":"Lista com marcadores","toolbar.numberedList":"Lista numerada","toolbar.increaseIndent":"Aumentar recuo (Tab)","toolbar.decreaseIndent":"Diminuir recuo (Shift+Tab)","toolbar.listFormat":"Alterar formato de numeração","toolbar.listStartAt":"Iniciar numeração em","toolbar.formatDecimal":"1, 2, 3","toolbar.formatLowerLetter":"a, b, c","toolbar.formatUpperLetter":"A, B, C","toolbar.formatLowerRoman":"i, ii, iii","toolbar.formatUpperRoman":"I, II, III","toolbar.formatBullet":"Marcador","toolbar.moreTools":"Mais ferramentas","toolbar.style":"Estilo de Parágrafo","toolbar.fontFamily":"Família da Fonte","toolbar.font":"Fonte","toolbar.fontSize":"Tamanho da Fonte","toolbar.size":"Tamanho","toolbar.color":"Cor do Texto","toolbar.highlight":"Cor de Realce","toolbar.colorAutomatic":"Automático","toolbar.noHighlight":"Sem realce","toolbar.themeColors":"Cores do Tema","toolbar.standardColors":"Cores Padrão","toolbar.moreColors":"Mais Cores...","metric.pageBreak":"Quebra de Página","metric.pageBreakBefore":"Quebra de Página Antes","metric.keepNext":"Manter Próximo","metric.keepWithNext":"Manter com o Próximo","metric.lineHeight":"Altura da Linha","metric.line":"Linha","metric.spacingBefore":"Espaçamento Antes","metric.before":"Antes","metric.spacingAfter":"Espaçamento Depois","metric.after":"Depois","metric.leftIndent":"Recuo à Esquerda","metric.indent":"Recuo","metric.firstLineIndent":"Recuo da Primeira Linha","metric.first":"Primeira","metric.hangingIndent":"Recuo Francês","metric.hang":"Francês","metric.paragraphBgColor":"Cor de Fundo do Parágrafo","metric.paraBg":"Fundo Para","metric.paraBorders":"Bordas Para","metric.applyBorders":"Aplicar bordas ao parágrafo","metric.lineSpacing":"Espaçamento de linha e parágrafo","metric.lineSpacingOptions":"Opções de espaçamento de linha…","metric.lineSpacingOption":"Opção {0}","lineSpacing.title":"Espaçamento de linha e parágrafo","lineSpacing.lineSpacingLabel":"Espaçamento entre linhas","lineSpacing.lineSpacingValue":"Valor","lineSpacing.spacingBeforeLabel":"Antes (pt)","lineSpacing.spacingAfterLabel":"Depois (pt)","lineSpacing.preview":"Pré-visualização","lineSpacing.previewText":"O espaçamento de linha define a distância vertical entre as linhas de texto dentro de um parágrafo.","section.orient":"Orient","section.pageSetup":"Configurações de Página","section.toggleOrientation":"Alternar Orientação","section.margins":"Margens","section.marginsNormal":"Margens Normais","section.marginsNarrow":"Margens Estreitas","section.secNext":"Próx Seç","section.secNextTooltip":"Inserir Quebra de Seção (Próxima Página)","section.secCont":"Seç Cont","section.secContTooltip":"Inserir Quebra de Seção (Contínua)","table.merge":"Mesclar","table.mergeTooltip":"Mesclar células selecionadas","table.split":"Dividir","table.splitTooltip":"Dividir células selecionadas","table.insertColumnLeft":"Inserir coluna à esquerda","table.insertColumnRight":"Inserir coluna à direita","table.deleteColumn":"Excluir coluna","table.insertRowAbove":"Inserir linha acima","table.insertRowBelow":"Inserir linha abaixo","table.deleteRow":"Excluir linha","table.cellColor":"Cor da Célula","table.applyBorders":"Aplicar bordas","table.removeBorders":"Remover bordas","table.width100":"100%","table.width100Tooltip":"Largura da Tabela 100%","table.alignLeft":"Alinhar à Esquerda","table.alignCenter":"Centralizar","table.alignRight":"Alinhar à Direita","table.cellWidth":"Largura da Célula","table.cellBgColorPrompt":"Cor de Fundo da Célula:","table.cellWidthPrompt":"Largura da Célula (ex: 50% ou 200pt):","generic.close":"Fechar","generic.cancel":"Cancelar","generic.save":"Salvar","generic.apply":"Aplicar","generic.ok":"OK","title.untitled":"Documento sem título","dialog.imageAlt.title":"Texto Alternativo da Imagem","dialog.imageAlt.label":"Descrição (Texto Alt)","dialog.imageAlt.placeholder":"Descreva a imagem","dialog.link.title":"Inserir Link","dialog.link.label":"URL do Link","dialog.link.placeholder":"https://exemplo.com","dialog.font.title":"Fonte","dialog.font.family":"Família da Fonte","dialog.font.size":"Tamanho","dialog.font.style":"Estilo","dialog.font.bold":"Negrito","dialog.font.italic":"Itálico","dialog.font.underline":"Sublinhado","dialog.font.strike":"Tachado","dialog.font.color":"Cor","dialog.font.customColor":"Personalizada","dialog.font.highlight":"Realce","dialog.font.familyFilter":"Filtro de fonte","dialog.font.customSize":"Tamanho personalizado","dialog.font.sizeInvalid":"Digite um número maior que 0.","dialog.font.styleList":"Estilo da fonte","dialog.font.styleRegular":"Regular","dialog.font.styleItalic":"Itálico","dialog.font.styleBold":"Negrito","dialog.font.styleBoldItalic":"Negrito Itálico","dialog.font.underlineStyle":"Estilo do sublinhado","dialog.font.underlineColor":"Cor do sublinhado","dialog.font.doubleStrike":"Tachado duplo","dialog.font.smallCaps":"Versalete","dialog.font.allCaps":"Todas maiúsculas","dialog.font.hidden":"Oculto","dialog.font.tabFont":"Fonte","dialog.font.tabAdvanced":"Avançado","dialog.font.advancedScale":"Escala","dialog.font.advancedSpacing":"Espaçamento","dialog.font.advancedBy":"Por","dialog.font.advancedNormal":"Normal","dialog.font.advancedExpanded":"Expandido","dialog.font.advancedCondensed":"Condensado","dialog.font.advancedPosition":"Posição","dialog.font.advancedRaised":"Elevado","dialog.font.advancedLowered":"Rebaixado","dialog.font.advancedKerning":"Kerning para fontes","dialog.font.advancedKerningAbove":"pontos e acima","dialog.font.advancedCharacterSpacingGroup":"Espaçamento entre Caracteres","dialog.font.advancedOpenTypeGroup":"Recursos OpenType","dialog.font.advancedPreviewGroup":"Visualização","dialog.font.advancedDefault":"Padrão","dialog.font.advancedLigatures":"Ligaduras","dialog.font.advancedLigaturesNone":"Nenhuma","dialog.font.advancedLigaturesStandard":"Padrão","dialog.font.advancedLigaturesContextual":"Contextuais","dialog.font.advancedLigaturesHistorical":"Históricas","dialog.font.advancedLigaturesStandardContextual":"Padrão e Contextuais","dialog.font.advancedNumberSpacing":"Espaçamento entre números","dialog.font.advancedNumberSpacingProportional":"Proporcional","dialog.font.advancedNumberSpacingTabular":"Tabular","dialog.font.advancedNumberForm":"Formas de número","dialog.font.advancedNumberFormLining":"Alinhamento","dialog.font.advancedNumberFormOldStyle":"Estilo antigo","dialog.font.advancedStylisticSet":"Conjuntos estilísticos","dialog.font.advancedContextualAlternates":"Usar Alternativas Contextuais","dialog.font.advancedScaleInvalid":"A escala deve ser um número maior que 0.","dialog.font.advancedAmountInvalid":"O valor deve ser 0 ou maior.","dialog.font.advancedKerningInvalid":"O limite de kerning deve ser 0 ou maior.","dialog.font.advancedStylisticSetInvalid":"O conjunto estilístico deve estar entre 1 e 20.","dialog.font.advancedPlaceholder":"Valores em pontos; Normal limpa overrides de espaçamento e posição.","dialog.font.preview":"Pré-visualização","dialog.font.previewText":"O rápido cão marrom salta sobre a raposa preguiçosa","contextmenu.cut":"Recortar","contextmenu.copy":"Copiar","contextmenu.paste":"Colar","contextmenu.link":"Link...","contextmenu.font":"Fonte...","status.words":"{0} palavras","status.characters":"{0} caracteres","status.page":"Página {0} de {1}","status.zoom":"Zoom","status.saved":"Salvo","status.saving":"Salvando...","status.error":"Erro ao salvar","import.overlay.title":"Importando DOCX","import.phase.reading-file":"Lendo arquivo","import.phase.opening-docx":"Abrindo pacote DOCX","import.phase.parsing-document":"Interpretando estrutura do documento","import.phase.applying-editor-state":"Aplicando estado no editor","import.phase.stabilizing-layout":"Estabilizando layout","import.phase.done":"Importação concluída","import.phase.error":"Falha na importação","find.title":"Localizar e Substituir","find.placeholder":"Localizar","replace.placeholder":"Substituir por","find.next":"Próximo","find.prev":"Anterior","replace.one":"Substituir","replace.all":"Substituir Tudo","find.matchCase":"Diferenciar maiúsculas/minúsculas","find.noMatches":"Nenhum resultado","find.prevTooltip":"Resultado Anterior (Shift+Enter)","find.nextTooltip":"Próximo Resultado (Enter)","replace.allBtn":"Tudo","find.wholeWord":"Palavra inteira","menu.file":"Arquivo","menu.file.export":"Exportar","menu.file.new":"Novo","menu.file.print":"Imprimir","menu.edit":"Editar","menu.edit.cut":"Recortar","menu.edit.copy":"Copiar","menu.edit.paste":"Colar","menu.edit.selectAll":"Selecionar Tudo","menu.view":"Ver","menu.view.margins":"Mostrar Margens","menu.view.paragraphMarks":"Mostrar ¶","menu.view.outline":"Mostrar Estrutura","menu.view.fullscreen":"Tela Inteira","menu.insert":"Inserir","menu.format":"Formatar","menu.format.align":"Alinhar","menu.format.text":"Texto","menu.format.lists":"Listas","menu.tools":"Ferramentas","menu.tools.wordcount":"Contagem de palavras","menu.help":"Ajuda","menu.help.shortcuts":"Atalhos de teclado","menu.help.about":"Sobre","outline.toggle":"Alternar estrutura","outline.empty":"Os títulos adicionados ao documento aparecerão aqui."}};let Xr="pt-BR";function Zr(e,t=[]){let a=(jr[Xr]||jr.en)[e]||Wr[e]||e;return t.forEach((e,t)=>{a=a.replace(`{${t}}`,String(e))}),a}var Kr=ge('<div class=oasis-editor-toolbar-overflow-manager style="display:flex;align-items:center;flex:1 1 0%;min-width:0;position:relative;margin-right:8px"><button type=button class="oasis-editor-tool-button oasis-editor-tool-button-dropdown oasis-editor-toolbar-more-measure"aria-hidden=true tabindex=-1 style=position:absolute;visibility:hidden;pointer-events:none;right:0><i data-lucide=ellipsis></i></button><div style="display:flex;align-items:center;gap:8px;flex:1 1 0;min-width:0;overflow:hidden"></div><div style=flex-shrink:0;padding-left:8px;padding-right:16px;align-items:center><button type=button class="oasis-editor-tool-button oasis-editor-tool-button-dropdown"data-testid=editor-toolbar-overflow-dropdown><i data-lucide=ellipsis></i></button></div><div class="oasis-editor-toolbar-overflow-dropdown-menu oasis-editor-toolbar-overflow-menu"style="flex-direction:row;flex-wrap:wrap;align-items:center;gap:4px;padding:8px;background:var(--oasis-paper);border:1px solid var(--oasis-toolbar-border);border-radius:var(--oasis-radius);box-shadow:0 4px 12px rgba(0, 0, 0, 0.15);max-width:calc(100vw - 16px);overflow-x:hidden;overflow-y:auto">'),Yr=ge("<div class=oasis-editor-toolbar-item-wrapper style=display:flex;align-items:center;flex-shrink:0>");function Jr(e){const[t,a]=M(0),[r,n]=M(!1),[o,i]=M(null);let l,s,d,c,h;const p=E(()=>e.children),u=C(()=>p.toArray().filter(e=>null!=e)),f=()=>{s&&l&&h&&requestAnimationFrame(()=>{(()=>{if(!s||!d)return;const e=Array.from(d.children);for(const t of e)t.style.display="",s.appendChild(t)})();const e=l.getBoundingClientRect().width,t=h.getBoundingClientRect().width||40,r=Array.from(s.children);if(0===r.length)return void a(0);r.forEach(e=>{e.style.display="flex",e.style.visibility="visible"});const n=r.map(e=>e.getBoundingClientRect().width),o=n.reduce((e,t,a)=>e+t+(a>0?8:0),0);let i=n.length;if(o>e-8){const a=e-t-16-8;i=0;let o=0;for(let e=0;e<n.length;e++){const t=n[e]+(i>0?8:0);if(!(o+t<=a))break;o+=t,i++}i>0&&r[i-1].querySelector(".oasis-editor-toolbar-separator")&&i--}a(n.length-i),r.forEach((e,t)=>{t<i?s.appendChild(e):null==d||d.appendChild(e)})})};x(()=>{u(),setTimeout(f,50),setTimeout(f,300),setTimeout(f,1e3)});const g=()=>{if(!d||!c)return;const e=d,t={flexWrap:e.style.flexWrap,width:e.style.width,maxWidth:e.style.maxWidth,display:e.style.display,visibility:e.style.visibility};e.style.display="flex",e.style.visibility="hidden",e.style.flexWrap="nowrap",e.style.width="max-content",e.style.maxWidth="none";const a=Math.ceil(e.getBoundingClientRect().width);e.style.flexWrap=t.flexWrap,e.style.width=t.width,e.style.maxWidth=t.maxWidth,e.style.display=t.display,e.style.visibility=t.visibility;const r=c.getBoundingClientRect(),n=window.innerWidth,o=Math.max(160,Math.min(n-16,r.right-8));i(Math.min(a,o))};k(()=>{const e=new ResizeObserver(()=>{f(),r()&&requestAnimationFrame(g)});e.observe(l);const t=e=>{r()&&c&&!c.contains(e.target)&&d&&!d.contains(e.target)&&n(!1)},a=()=>{r()&&requestAnimationFrame(g)};window.addEventListener("mousedown",t),window.addEventListener("resize",a),A(()=>{e.disconnect(),window.removeEventListener("mousedown",t),window.removeEventListener("resize",a)})}),x(()=>{r()&&t()>0&&requestAnimationFrame(()=>requestAnimationFrame(g))});const m=()=>{if(!c)return{};const e=c.getBoundingClientRect(),t=window.innerWidth,a=o();return{position:"fixed",top:`${e.bottom+4}px`,right:`${Math.max(8,t-e.right)}px`,"z-index":1e3,...null!==a?{width:`${a}px`}:{}}};return(()=>{var e=Kr(),a=e.firstChild,o=a.nextSibling,i=o.nextSibling,p=i.firstChild,f=i.nextSibling;"function"==typeof l?Ce(l,e):l=e;"function"==typeof h?Ce(h,a):h=a;"function"==typeof s?Ce(s,o):s=o,Se(o,j(te,{get each(){return u()},children:e=>{return Se(t=Yr(),e),t;var t}})),p.$$click=()=>n(e=>!e);"function"==typeof c?Ce(c,p):c=p,f.$$click=e=>{e.target.closest("button")&&!e.target.closest(".oasis-editor-tool-button-dropdown")&&n(!1)};return"function"==typeof d?Ce(d,f):d=f,w(e=>{var a=t()>0?"flex":"none",n=!!r(),o=Zr("toolbar.moreTools"),l=Zr("toolbar.moreTools"),s={...m(),display:r()&&t()>0?"flex":"none"};return a!==e.e&&we(i,"display",e.e=a),n!==e.t&&p.classList.toggle("oasis-editor-tool-button-active",e.t=n),o!==e.a&&ve(p,"title",e.a=o),l!==e.o&&ve(p,"aria-label",e.o=l),e.i=Me(f,s,e.i),e},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0}),e})()}me(["click"]);function Qr(e,t){const a=(e=>"command"in e?e.command:void 0)(e),r=()=>a?t.commands.state(a):{isEnabled:!0,isActive:!1,value:void 0},n="separator"===e.type?void 0:e;return{active:()=>{var e;return(null==(e=null==n?void 0:n.isActive)?void 0:e.call(n,t))??r().isActive},disabled:()=>{var e;return(null==(e=null==n?void 0:n.isDisabled)?void 0:e.call(n,t))??!r().isEnabled},value:()=>{var e;return(null==(e=null==n?void 0:n.value)?void 0:e.call(n,t))??r().value},visible:()=>{var e;return(null==(e=null==n?void 0:n.isVisible)?void 0:e.call(n,t))??!0}}}function $r(e,t){t.commands.canExecute(e.command)&&t.commands.execute(e.command)}function en(e,t){return e.tooltip?e.tooltip:e.tooltipKey?t.t(e.tooltipKey):void 0}function tn(e,t){return e.label?e.label:e.labelKey?t.t(e.labelKey):void 0}var an=ge("<i>"),rn=ge("<span>"),nn=ge("<button type=button>");function on(e){const[t,a]=Q(e,["icon","label","active","tooltip","wide","aria-label","class","classList"]);return xe(r=nn(),J({get class(){return`oasis-editor-tool-button ${t.class||""}`},get classList(){return{"oasis-editor-tool-button-active":t.active,"oasis-editor-tool-button-wide":t.wide,...t.classList}},get title(){return t.tooltip},get"aria-label"(){return t["aria-label"]||t.tooltip||t.label||""}},a),!1,!0),Se(r,j(re,{get when(){return t.icon},get children(){var e=an();return w(()=>ve(e,"data-lucide",t.icon)),e}}),null),Se(r,j(re,{get when(){return t.label},get children(){var e=rn();return Se(e,()=>t.label),e}}),null),Se(r,j(re,{get when(){return pe(()=>!t.icon)()&&!t.label},get children(){return a.children}}),null),r;var r}function ln(e){const[t,a]=M({top:0,left:0}),r=()=>{var t;const r=e.anchor();if(!r||!e.open())return;const n=r.getBoundingClientRect(),o=(null==(t=e.panel())?void 0:t.offsetWidth)||(e.fallbackWidth??240),i=e.viewportPadding??8,l=window.scrollX+window.innerWidth-o-i,s="bottom-end"===e.placement?n.right+window.scrollX-o:n.left+window.scrollX;a({top:n.bottom+window.scrollY+(e.gap??4),left:Math.max(window.scrollX+i,Math.min(s,l))})};return x(()=>{e.open()&&(r(),requestAnimationFrame(r),window.addEventListener("resize",r),window.addEventListener("scroll",r,!0),A(()=>{window.removeEventListener("resize",r),window.removeEventListener("scroll",r,!0)}))}),t}var sn=ge("<div>");function dn(e){let t,a;const r=ln({anchor:()=>t,panel:()=>a,open:()=>e.open,placement:e.placement});!function(e){const t=t=>{const a=t.target;a&&(e.refs().some(e=>null!=e&&e.contains(a))||e.onDismiss())},a=t=>{"Escape"===t.key&&e.onDismiss()};x(()=>{e.open()&&(window.addEventListener("mousedown",t),(e.closeOnEscape??1)&&window.addEventListener("keydown",a),A(()=>{window.removeEventListener("mousedown",t),window.removeEventListener("keydown",a)}))})}({refs:()=>[t,a],open:()=>e.open,onDismiss:()=>e.onOpenChange(!1),closeOnEscape:e.closeOnEscape});const n=t=>(()=>{var n=sn();be(n,"mouseleave",e.onPanelMouseLeave);return"function"==typeof a?Ce(a,n):a=n,ve(n,"aria-hidden",t?void 0:"true"),Se(n,()=>e.children),w(a=>{var o=e.panelClass,i=e.panelRole,l=e.panelTestId,s=t?{position:"absolute",top:`${r().top}px`,left:`${r().left}px`}:{display:"none"};return o!==a.e&&ye(n,a.e=o),i!==a.t&&ve(n,"role",a.t=i),l!==a.a&&ve(n,"data-testid",a.a=l),a.o=Me(n,s,a.o),a},{e:void 0,t:void 0,a:void 0,o:void 0}),n})();return[pe(()=>e.trigger({ref:e=>t=e,open:e.open,setOpen:e.onOpenChange,toggle:()=>e.onOpenChange(!e.open)})),j(re,{get when(){return e.open},get children(){return j(Re,{get children(){return n(!0)}})}}),j(re,{get when(){return pe(()=>!e.open)()&&e.keepMounted},get children(){return n(!1)}})]}var cn=ge("<div>"),hn=ge("<div class=oasis-editor-toolbar-dropdown>"),pn=ge("<i>"),un=ge("<span class=oasis-editor-tool-button-label>"),fn=ge("<i data-lucide=chevron-down class=oasis-editor-dropdown-chevron>"),gn=ge('<button type=button class="oasis-editor-tool-button oasis-editor-tool-button-dropdown"aria-haspopup=menu>');function mn(e){const[t,a]=M(!1);return Se(r=hn(),j(dn,{get open(){return t()},onOpenChange:a,get keepMounted(){return e.keepMounted},panelRole:"menu",get panelClass(){return`oasis-editor-toolbar-dropdown-menu ${e.panelClass||""}`},onPanelMouseLeave:void 0,trigger:t=>{return(a=gn()).$$click=()=>t.toggle(),Ce(e=>t.ref(e),a),Se(a,j(re,{get when(){return e.icon},get children(){var t=pn();return w(()=>ve(t,"data-lucide",e.icon)),t}}),null),Se(a,j(re,{get when(){return e.label},get children(){var t=un();return Se(t,()=>e.label),t}}),null),Se(a,j(re,{get when(){return!e.hideChevron},get children(){return fn()}}),null),w(r=>{var n=!(!e.active&&!t.open),o=e.disabled,i=e.tooltip,l=e.tooltip||e.label||"",s=t.open,d=e.testId;return n!==r.e&&a.classList.toggle("oasis-editor-tool-button-active",r.e=n),o!==r.t&&(a.disabled=r.t=o),i!==r.a&&ve(a,"title",r.a=i),l!==r.o&&ve(a,"aria-label",r.o=l),s!==r.i&&ve(a,"aria-expanded",r.i=s),d!==r.n&&ve(a,"data-testid",r.n=d),r},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0,n:void 0}),a;var a},get children(){var t=cn();return t.$$click=e=>{const t=e.target;!t.closest("button")||t.closest(".oasis-editor-tool-button-dropdown")||t.closest(".oasis-editor-toolbar-list-options")||a(!1)},Se(t,()=>e.children),t}})),r;var r}me(["click"]);var vn=ge("<select>");function yn(e){let t;const[a,r]=Q(e,["wide","small","class","tooltip","aria-label","value"]);return x(()=>{const e=a.value;if(!t||null==e)return;const r=String(e);t.value!==r&&(t.value=r)}),n=vn(),"function"==typeof t?Ce(t,n):t=n,xe(n,J({get class(){return`oasis-editor-tool-select ${a.class||""}`},get classList(){return{"oasis-editor-tool-select-wide":a.wide,"oasis-editor-tool-select-small":a.small}},get title(){return a.tooltip},get"aria-label"(){return a["aria-label"]||a.tooltip||""},get value(){return a.value}},r),!1,!0),Se(n,()=>r.children),n;var n}var bn=ge("<div class=oasis-editor-toolbar-separator>");function Mn(e){return t=bn(),w(a=>we(t,"display",e.hidden?"none":void 0)),t;var t}var wn=ge("<div><button type=button class=oasis-editor-color-split-main></button><button type=button class=oasis-editor-color-split-menu-button aria-haspopup=menu><i data-lucide=chevron-down>");function xn(e){return j(dn,{get open(){return e.open},get onOpenChange(){return e.onOpenChange},get panelClass(){return e.panelClass},get panelRole(){return e.panelRole},get onPanelMouseLeave(){return e.onPanelMouseLeave},trigger:t=>{return a=wn(),r=a.firstChild,n=r.nextSibling,Ce(e=>t.ref(e),a),r.$$click=()=>e.onMain(),Se(r,()=>e.mainContent),n.$$click=()=>t.toggle(),w(o=>{var i=e.rootClass??"oasis-editor-color-split",l=!!(e.rootActive??t.open),s=e.tooltip,d=e.mainTestId,c=e.mainAriaLabel??e.tooltip,h=e.mainPressed,p=!!t.open,u=e.menuTestId,f=e.menuAriaLabel??`${e.tooltip??""} menu`,g=t.open;return i!==o.e&&ye(a,o.e=i),l!==o.t&&a.classList.toggle("oasis-editor-color-split-active",o.t=l),s!==o.a&&ve(a,"title",o.a=s),d!==o.o&&ve(r,"data-testid",o.o=d),c!==o.i&&ve(r,"aria-label",o.i=c),h!==o.n&&ve(r,"aria-pressed",o.n=h),p!==o.s&&n.classList.toggle("oasis-editor-color-split-open",o.s=p),u!==o.h&&ve(n,"data-testid",o.h=u),f!==o.r&&ve(n,"aria-label",o.r=f),g!==o.d&&ve(n,"aria-expanded",o.d=g),o},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0,n:void 0,s:void 0,h:void 0,r:void 0,d:void 0}),a;var a,r,n},get children(){return e.children}})}me(["click"]);var Cn=ge("<i data-lucide=type>"),Sn=ge("<button type=button class=oasis-editor-color-menu-action role=menuitem><span class=oasis-editor-color-menu-action-swatch></span><span>"),In=ge("<div class=oasis-editor-color-menu-section><div class=oasis-editor-color-menu-heading></div><div class=oasis-editor-color-theme-grid>"),kn=ge("<div class=oasis-editor-color-menu-section><div class=oasis-editor-color-menu-heading></div><div class=oasis-editor-color-standard-grid>"),An=ge('<button type=button class=oasis-editor-color-menu-action role=menuitem><span class="oasis-editor-color-menu-action-swatch oasis-editor-color-menu-more-swatch"></span><span>'),Tn=ge("<input type=color class=oasis-editor-color-custom-input>"),Pn=ge("<span class=oasis-editor-color-split-icon><i></i><span class=oasis-editor-color-split-indicator>"),En=ge("<i data-lucide=slash>"),Ln=ge("<div class=oasis-editor-color-theme-column>"),On=ge("<button type=button class=oasis-editor-color-swatch>");const Rn=e=>(null==e?void 0:e.trim().toLowerCase())??"";function Hn(e){const[t,a]=M(!1),[r,n]=M(null);let o;const i=()=>Rn(e.value),l=()=>r()||e.value||null,s=()=>e.lastValue||e.value||e.defaultValue,d=()=>"highlight"===e.kind?e.noColorLabel:e.automaticLabel,c=()=>{a(!1),n(null)},h=t=>{e.onApply(t),c()};return j(xn,{get open(){return t()},onOpenChange:e=>e?a(!0):c(),get tooltip(){return e.tooltip},panelClass:"oasis-editor-color-menu",panelRole:"menu",onPanelMouseLeave:()=>n(null),get mainTestId(){return e.testId},get mainAriaLabel(){return e.tooltip},onMain:()=>h(s()),get menuTestId(){return`${e.testId}-dropdown`},get menuAriaLabel(){return`${e.tooltip} menu`},get mainContent(){return t=Pn(),a=t.firstChild,r=a.nextSibling,w(t=>{var n=e.icon,o=!l(),i=l()??void 0;return n!==t.e&&ve(a,"data-lucide",t.e=n),o!==t.t&&r.classList.toggle("oasis-editor-color-split-indicator-empty",t.t=o),i!==t.a&&we(r,"background-color",t.a=i),t},{e:void 0,t:void 0,a:void 0}),t;var t,a,r},get children(){return[j(re,{get when(){return d()},get children(){var t=Sn(),a=t.firstChild,r=a.nextSibling;return t.$$click=()=>h(null),Se(a,j(re,{get when(){return"color"===e.kind},get fallback(){return En()},get children(){return Cn()}})),Se(r,d),w(()=>ve(t,"data-testid",`${e.testId}-clear`)),t}}),(c=In(),p=c.firstChild,u=p.nextSibling,Se(p,()=>e.themeColorsLabel),Se(u,j(te,{get each(){return e.palette.themeColors},children:t=>{return Se(a=Ln(),j(te,{get each(){return t.values},children:a=>{return(r=On()).$$click=()=>h(a),r.addEventListener("blur",()=>n(null)),r.addEventListener("focus",()=>n(a)),r.addEventListener("mouseenter",()=>n(a)),we(r,"background-color",a),w(n=>{var o=!(i()!==Rn(a)),l=`${t.name} ${a}`,s=`${t.name} ${a}`,d=`${e.testId}-theme-swatch-${a.replace("#","")}`;return o!==n.e&&r.classList.toggle("oasis-editor-color-swatch-active",n.e=o),l!==n.t&&ve(r,"title",n.t=l),s!==n.a&&ve(r,"aria-label",n.a=s),d!==n.o&&ve(r,"data-testid",n.o=d),n},{e:void 0,t:void 0,a:void 0,o:void 0}),r;var r}})),a;var a}})),c),(t=kn(),a=t.firstChild,r=a.nextSibling,Se(a,()=>e.standardColorsLabel),Se(r,j(te,{get each(){return e.palette.standardColors},children:t=>{return(a=On()).$$click=()=>h(t.value),a.addEventListener("blur",()=>n(null)),a.addEventListener("focus",()=>n(t.value)),a.addEventListener("mouseenter",()=>n(t.value)),w(r=>{var n=!(i()!==Rn(t.value)),o=t.value,l=t.name,s=t.name,d=`${e.testId}-standard-swatch-${t.value.replace("#","")}`;return n!==r.e&&a.classList.toggle("oasis-editor-color-swatch-active",r.e=n),o!==r.t&&we(a,"background-color",r.t=o),l!==r.a&&ve(a,"title",r.a=l),s!==r.o&&ve(a,"aria-label",r.o=s),d!==r.i&&ve(a,"data-testid",r.i=d),r},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0}),a;var a}})),t),j(re,{get when(){return e.palette.allowCustom??!0},get children(){return[(t=An(),a=t.firstChild.nextSibling,t.$$click=()=>null==o?void 0:o.click(),Se(a,()=>e.moreColorsLabel),w(()=>ve(t,"data-testid",`${e.testId}-more-colors`)),t),(()=>{var t=Tn();t.$$input=e=>h(e.currentTarget.value);return"function"==typeof o?Ce(o,t):o=t,w(a=>{var r=`${e.testId}-custom-input`,n=e.moreColorsLabel;return r!==a.e&&ve(t,"data-testid",a.e=r),n!==a.t&&ve(t,"aria-label",a.t=n),a},{e:void 0,t:void 0}),w(()=>t.value=l()||s()),t})()];var t,a}})];var t,a,r,c,p,u}})}me(["click","input"]);var Nn=ge("<div class=oasis-editor-table-grid-picker-status>"),Dn=ge("<div class=oasis-editor-table-grid-picker-grid>"),Fn=ge("<div class=oasis-editor-toolbar-dropdown>"),Bn=ge("<button type=button class=oasis-editor-tool-button><i>"),Vn=ge("<button type=button class=oasis-editor-table-grid-picker-cell>");function zn(e){const[t,a]=M(!1),[r,n]=M({row:0,col:0}),o=()=>e.maxRows??10,i=()=>e.maxCols??10,l=()=>e.tooltip||Zr("toolbar.table"),s=()=>{a(!1),n({row:0,col:0})},d=(t,a)=>{s(),queueMicrotask(()=>e.onSelect(t,a))},c=e=>{if(!t())return;const a=r();let l=a.row||1,s=a.col||1,c=!0;switch(e.key){case"ArrowRight":s=Math.min(i(),s+1);break;case"ArrowLeft":s=Math.max(1,s-1);break;case"ArrowDown":l=Math.min(o(),l+1);break;case"ArrowUp":l=Math.max(1,l-1);break;case"Enter":return e.preventDefault(),void(a.row>0&&a.col>0&&d(a.row,a.col));default:c=!1}c&&(e.preventDefault(),n({row:l,col:s}))};x(()=>{t()&&(window.addEventListener("keydown",c),A(()=>window.removeEventListener("keydown",c)))});const h=()=>{const e=r();return 0===e.row||0===e.col?Zr("toolbar.table"):`${e.row} × ${e.col}`};return Se(p=Fn(),j(dn,{get open(){return t()},onOpenChange:e=>e?a(!0):s(),panelClass:"oasis-editor-table-grid-picker",onPanelMouseLeave:()=>n({row:0,col:0}),trigger:t=>{return a=Bn(),r=a.firstChild,a.$$click=()=>t.toggle(),Ce(e=>t.ref(e),a),w(n=>{var o=!!t.open,i=l(),s=l(),d=e.testId,c=e.icon??"table";return o!==n.e&&a.classList.toggle("oasis-editor-tool-button-active",n.e=o),i!==n.t&&ve(a,"title",n.t=i),s!==n.a&&ve(a,"aria-label",n.a=s),d!==n.o&&ve(a,"data-testid",n.o=d),c!==n.i&&ve(r,"data-lucide",n.i=c),n},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0}),a;var a,r},get children(){return[(t=Nn(),Se(t,h),t),(e=Dn(),Se(e,j(te,{get each(){return Array.from({length:o()},(e,t)=>t+1)},children:e=>j(te,{get each(){return Array.from({length:i()},(e,t)=>t+1)},children:t=>{return(a=Vn()).$$click=()=>d(e,t),a.$$mousedown=e=>e.preventDefault(),a.addEventListener("mouseenter",()=>n({row:e,col:t})),ve(a,"data-testid",`editor-toolbar-table-grid-${e}x${t}`),ve(a,"aria-label",`${e} × ${t}`),w(()=>a.classList.toggle("oasis-editor-table-grid-picker-cell-active",!!(e<=r().row&&t<=r().col))),a;var a}})})),w(t=>{var a=`repeat(${i()}, 18px)`,r=`repeat(${o()}, 18px)`;return a!==t.e&&we(e,"grid-template-columns",t.e=a),r!==t.t&&we(e,"grid-template-rows",t.t=r),t},{e:void 0,t:void 0}),e)];var e,t}})),p;var p}me(["click","mousedown"]);const _n={themeColors:[{name:"White",values:["#ffffff","#f2f2f2","#d9d9d9","#bfbfbf","#7f7f7f"]},{name:"Black",values:["#000000","#262626","#404040","#595959","#808080"]},{name:"Blue",values:["#deebf7","#bdd7ee","#9dc3e6","#5b9bd5","#2f75b5"]},{name:"Orange",values:["#fce4d6","#f8cbad","#f4b183","#ed7d31","#c55a11"]},{name:"Gray",values:["#e7e6e6","#d0cece","#a5a5a5","#7f7f7f","#595959"]},{name:"Gold",values:["#fff2cc","#ffe699","#ffd966","#ffc000","#bf9000"]},{name:"Teal",values:["#d9ead3","#b6d7a8","#93c47d","#70ad47","#548235"]},{name:"Green",values:["#e2f0d9","#c5e0b4","#a9d18e","#00b050","#385723"]},{name:"Purple",values:["#e4dfec","#d9d2e9","#b4a7d6","#7030a0","#4c1d95"]},{name:"Red",values:["#f4cccc","#ea9999","#e06666","#c00000","#990000"]}],standardColors:[{name:"Dark red",value:"#c00000"},{name:"Red",value:"#ff0000"},{name:"Orange",value:"#ffc000"},{name:"Yellow",value:"#ffff00"},{name:"Light green",value:"#92d050"},{name:"Green",value:"#00b050"},{name:"Light blue",value:"#00b0f0"},{name:"Blue",value:"#0070c0"},{name:"Dark blue",value:"#002060"},{name:"Purple",value:"#7030a0"}],allowCustom:!0};var Un=ge("<i>"),qn=ge("<option value>"),Gn=ge("<option>");function Wn(e,t){return"custom"===e.kind?e.render(t):j(te,{get each(){return e.items},children:e=>j(Kn,{item:e,api:t})})}const jn={button:function(e){const t=Qr(e.item,e.api);return j(on,{get icon(){return e.item.iconName},get label(){return tn(e.item,e.api)},get wide(){return e.item.wide},get active(){return t.active()},get disabled(){return t.disabled()},get"data-testid"(){return e.item.testId},get tooltip(){return en(e.item,e.api)},onClick:()=>$r(e.item,e.api)})},toggle:function(e){const t=Qr(e.item,e.api);return j(on,{get icon(){return e.item.iconName},get label(){return tn(e.item,e.api)},get wide(){return e.item.wide},get active(){return t.active()},get disabled(){return t.disabled()},get"data-testid"(){return e.item.testId},get tooltip(){return en(e.item,e.api)},onClick:()=>$r(e.item,e.api)})},split:function(e){const[t,a]=M(!1),r=Qr(e.item,e.api);return j(xn,{get open(){return t()},onOpenChange:a,get tooltip(){return en(e.item,e.api)},get rootActive(){return r.active()||t()},get mainTestId(){return e.item.testId},get mainPressed(){return r.active()},onMain:()=>$r(e.item,e.api),get menuTestId(){return pe(()=>!!e.item.testId)()?`${e.item.testId}-dropdown`:void 0},panelClass:"oasis-editor-color-menu",panelRole:"menu",get mainContent(){return t=Un(),w(()=>ve(t,"data-lucide",e.item.iconName)),t;var t},get children(){return Wn(e.item.menu,e.api)}})},menu:function(e){const t=Qr(e.item,e.api);return j(mn,{get icon(){return e.item.iconName},get label(){return tn(e.item,e.api)},get tooltip(){return en(e.item,e.api)},get testId(){return e.item.testId},get active(){return t.active()},get disabled(){return t.disabled()},get hideChevron(){return e.item.hideChevron},get panelClass(){return e.item.panelClass},get keepMounted(){return e.item.keepMounted},get children(){return Wn(e.item.content,e.api)}})},select:function(e){const t=Qr(e.item,e.api);return j(yn,{get wide(){return"wide"===e.item.width},get small(){return"small"===e.item.width},get value(){return t.value()??""},get"data-testid"(){return e.item.testId},get tooltip(){return en(e.item,e.api)},onChange:t=>{const a=t.currentTarget.value;e.api.commands.execute(e.item.command,a)},get children(){return[j(re,{get when(){return void 0!==e.item.placeholder},get children(){var t=qn();return Se(t,()=>e.item.placeholder),t}}),j(te,{get each(){return e.item.options(e.api)},children:e=>{return Se(t=Gn(),()=>e.label),w(()=>t.value=e.value),t;var t}})]}})},colorPicker:function(e){const[t,a]=M(e.item.defaultValue),r=Qr(e.item,e.api);return j(Hn,{get kind(){return e.item.kind},get icon(){return e.item.iconName??("highlight"===e.item.kind?"highlighter":"type")},get value(){return r.value()??null},get defaultValue(){return e.item.defaultValue},get lastValue(){return t()},get tooltip(){return en(e.item,e.api)??""},get testId(){return e.item.testId??e.item.id},get palette(){return e.item.palette??_n},get automaticLabel(){return e.api.t("toolbar.colorAutomatic")},get noColorLabel(){return e.api.t("toolbar.noHighlight")},get themeColorsLabel(){return e.api.t("toolbar.themeColors")},get standardColorsLabel(){return e.api.t("toolbar.standardColors")},get moreColorsLabel(){return e.api.t("toolbar.moreColors")},onApply:t=>{t&&a(t),e.api.commands.execute(e.item.command,t)}})},gridPicker:function(e){return j(zn,{get testId(){return e.item.testId},get tooltip(){return en(e.item,e.api)},get icon(){return e.item.iconName},get maxRows(){return e.item.maxRows},get maxCols(){return e.item.maxCols},onSelect:(t,a)=>{e.api.commands.execute(e.item.command,{rows:t,cols:a})}})},separator:function(e){return j(Mn,{})},group:function(e){return j(te,{get each(){return e.item.items},children:t=>j(Kn,{item:t,get api(){return e.api}})})},custom:function(e){return e.item.render(e.api)}},Xn=new Map;var Zn=ge("<div class=oasis-editor-toolbar-item style=align-items:center>");function Kn(e){const t=Qr(e.item,e.api),a=()=>{return t=e.item.type,jn[t]??Xn.get(t);var t};return Se(r=Zn(),j(re,{get when(){return a()},children:t=>j(He,{get component(){return t()},get item(){return e.item},get api(){return e.api}})})),w(e=>we(r,"display",t.visible()?"flex":"none")),r;var r}var Yn=ge("<section class=oasis-editor-toolbar>");function Jn(e){const t={commands:(a=e.host)().commands,t:Zr,focusEditor:()=>a().focusEditor()};var a;const[r,n]=M(0);k(()=>{A(e.registry.onChange(()=>n(e=>e+1)))});const o=C(()=>{r();const t=e.registry.getOrdered();return!1===e.showFileGroup?t.filter(e=>"file"!==e.group):t});return(i=Yn()).$$mousedown=e=>{var t;(t=e.target)instanceof Element&&null!==t.closest("select, input, textarea, label")||e.preventDefault()},Se(i,j(Jr,{get children(){return j(te,{get each(){return o()},children:e=>j(Kn,{item:e,api:t})})}})),i;var i}function Qn(e){const{state:t,logger:a,applyState:r,applyTransactionalState:n,applySelectionAwareTextCommand:o,applySelectionAwareParagraphCommand:i,applyTableAwareParagraphEdit:l,focusInput:s,clearPreferredColumn:d,resetTransactionGrouping:c,toolbarStyleState:h,selectionCollapsed:p,selectedImageRun:u}=e,f=()=>(()=>{const e=St(t);return ct(t).slice(e.startIndex,e.endIndex+1)})().some(e=>Boolean(e.list)),g=()=>{const e=t.selection.focus.paragraphId;return ct(t).find(t=>t.id===e)??null},m=()=>{const e=t.selection,a=ht(t),r=yt(t.document,e.anchor.paragraphId,a),n=yt(t.document,e.focus.paragraphId,a);return r&&n&&r.blockIndex===n.blockIndex?` [table b${r.blockIndex} r${r.rowIndex}:c${r.cellIndex}→r${n.rowIndex}:c${n.cellIndex}]`:""},v=(e,t)=>{d(),c(),i(a=>er(a,e,t)),s()},y=()=>"main"===(t.activeZone??"main"),b=e=>{const a=dr(t);p()&&!a||(d(),c(),n(t=>function(e,t){const a=St(e);if(!a.isCollapsed)return Ya(e,"link",t);const r=ct(e)[a.startIndex];if(!r)return e;const n=wa(r,a.startParagraphOffset);if(!n)return e;const o=Ya(Jt(e,{anchor:Fe(r,n.startOffset),focus:Fe(r,n.endOffset)}),"link",t),i=ct(o)[a.startIndex];return i?{...o,selection:{anchor:Fe(i,n.startOffset),focus:Fe(i,n.endOffset)}}:o}(t,e),{mergeKey:"link"}),s())};return{applyBooleanStyleCommand:e=>{if(p())return;const r=t.selection;a.info(`toggleStyle:${e} at ${r.anchor.paragraphId}:${r.anchor.runId}[${r.anchor.offset}..${r.focus.offset}]${m()}`),d(),c(),o(t=>Ka(t,e)),s()},applyValueStyleCommand:(e,r)=>{if(p())return;const n=t.selection;a.info(`setStyle:${e}=${JSON.stringify(r)} at ${n.anchor.paragraphId}:${n.anchor.runId}[${n.anchor.offset}..${n.focus.offset}]${m()}`),d(),c(),o(t=>Ya(t,e,r)),s()},applyParagraphStyleCommand:v,toggleParagraphFlagCommand:e=>{const t=!h()[e];v(e,!!t||null)},applyParagraphListCommand:e=>{d(),c(),i(t=>function(e,t){const a=St(e),r=ct(e),n=a.startIndex,o=a.endIndex,i=r.slice(n,o+1),l=i.length>0&&i.every(e=>{var a;return(null==(a=e.list)?void 0:a.kind)===t}),s=r.map((e,a)=>{var r,i,s;if(a<n||a>o)return oa(e);const d=oa(e);return l?(delete d.list,d):(d.list={kind:t,level:(null==(r=e.list)?void 0:r.level)??0,format:null==(i=e.list)?void 0:i.format,startAt:null==(s=e.list)?void 0:s.startAt},d)});return va(e,s,ka(s,a))}(t,e)),s()},handleListFormatChange:e=>{d(),c(),i(t=>function(e,t){const a=St(e),r=ct(e).map((e,r)=>r<a.startIndex||r>a.endIndex?oa(e):e.list?{...oa(e),list:{...e.list,format:t||void 0}}:oa(e));return va(e,r,ka(r,a))}(t,e)),s()},handleListStartAtChange:e=>{d(),c(),i(t=>function(e,t){const a=St(e),r=ct(e).map((e,r)=>r<a.startIndex||r>a.endIndex?oa(e):e.list?{...oa(e),list:{...e.list,startAt:null!==t?t:void 0}}:oa(e));return va(e,r,ka(r,a))}(t,e)),s()},applyInsertSectionBreakCommand:e=>{d(),c(),r(function(e,t){const a=Ct(e.selection)?e:Sa(e),{paragraph:r,offset:n}=ba(a),o=ot(a.document),i=ht(a);if("main"!==pt(a))return e;const l=o[i];if(!l)return e;const s=l.blocks.findIndex(e=>"paragraph"===e.type&&e.id===r.id);if(-1===s)return e;const d=l.blocks.slice(0,s),c=l.blocks.slice(s+1),h=ha(r,xa(r,0,n),Ma(r,n)),p=xa(r,n,De(r)),u=p.length>0?ua(r,p.map(e=>({text:e.text,styles:e.styles}))):(()=>{const e=Ht("");return e.style=r.style?{...r.style}:void 0,e.list=r.list?{...r.list}:void 0,e})(),f={id:`section:${Math.random().toString(36).slice(2,9)}`,blocks:[u,...c],pageSettings:{...l.pageSettings},header:l.header?da(l.header):void 0,footer:l.footer?da(l.footer):void 0,breakType:t},g={...l,blocks:[...d,h]},m=[...o.slice(0,i),g,f,...o.slice(i+1)];return{...a,document:{...a.document,sections:m},activeSectionIndex:i+1,selection:ya(Fe(u,0))}}(t,e)),s()},applyInsertPageBreakCommand:()=>{d(),c(),n(e=>l(e,e=>$a(e))),s()},canInsertFootnoteCommand:y,applyInsertFootnoteCommand:()=>{y()&&(d(),c(),n(e=>Cr(e)),s())},handleStyleChange:e=>{d(),c(),i(t=>function(e,t){return er(e,"styleId",t)}(t,e||null)),s()},applyUpdateSectionSettingsCommand:(e,a)=>{d(),c(),r(function(e,t,a){var r;const n=ot(e.document);if(t<0||t>=n.length)return e;const o=[...n];return o[t]={...o[t],...a,pageSettings:{...o[t].pageSettings,...a.pageSettings??{},margins:{...o[t].pageSettings.margins,...(null==(r=a.pageSettings)?void 0:r.margins)??{}}}},{...e,document:{...e.document,sections:o}}}(t,e,a)),s()},applyToggleTrackChangesCommand:()=>{d(),c(),r(function(e){return{...e,trackChangesEnabled:!e.trackChangesEnabled}}(t)),s()},applyToggleShowMarginsCommand:()=>{r({...t,showMargins:!t.showMargins}),s()},applyToggleShowParagraphMarksCommand:()=>{r({...t,showParagraphMarks:!t.showParagraphMarks}),s()},applyAcceptRevisionsCommand:()=>{d(),c(),r(function(e){var t;const a=St(e),r=ct(e),n=new Set;for(let i=a.startIndex;i<=a.endIndex;i+=1){const e=r[i],o=xa(e,i===a.startIndex?a.startParagraphOffset:0,i===a.endIndex?a.endParagraphOffset:De(e));for(const a of o)(null==(t=a.revision)?void 0:t.id)&&n.add(a.revision.id)}let o=e;for(const i of n)o=cr(o,i);return o}(t)),s()},applyRejectRevisionsCommand:()=>{d(),c(),r(function(e){var t;const a=St(e),r=ct(e),n=new Set;for(let i=a.startIndex;i<=a.endIndex;i+=1){const e=r[i],o=xa(e,i===a.startIndex?a.startParagraphOffset:0,i===a.endIndex?a.endParagraphOffset:De(e));for(const a of o)(null==(t=a.revision)?void 0:t.id)&&n.add(a.revision.id)}let o=e;for(const i of n)o=hr(o,i);return o}(t)),s()},applyLinkCommand:b,promptForLink:()=>{const a=dr(t)??"";p()&&!a||e.openLinkDialog(a)},removeLinkCommand:()=>{b(null)},applyImageAltCommand:e=>{u()&&(d(),c(),n(t=>function(e,t){const a=Va(e);if(!(null==a?void 0:a.run.image))return e;const r=ct(e).map((e,r)=>r!==a.paragraphIndex?oa(e):{...oa(e),runs:e.runs.map(e=>e.id===a.run.id&&e.image?{...e,image:{...e.image,alt:t??void 0}}:na(e))});return va(e,r,ka(r,St(e)))}(t,e),{mergeKey:"imageAlt"}),s())},promptForImageAlt:()=>{var t;const a=u();if(!a)return;const r=(null==(t=a.run.image)?void 0:t.alt)??"";e.openImageAltDialog(r)},handleListTab:e=>!yt(t.document,t.selection.focus.paragraphId,ht(t))&&(!!f()&&(d(),c(),i(t=>"indent"===e?function(e){const t=St(e),a=ct(e).map((e,a)=>a<t.startIndex||a>t.endIndex?oa(e):e.list?fa(e,(e.list.level??0)+1):oa(e));return va(e,a,ka(a,t))}(t):tr(t)),s(),!0)),handleListEnter:()=>{const e=g();return!!(null==e?void 0:e.list)&&(d(),c(),p()&&0===Ne(e).length?i(e=>function(e){const t=St(e),a=ct(e).map((e,a)=>a<t.startIndex||a>t.endIndex?oa(e):ga(e));return va(e,a,ka(a,t))}(e)):n(e=>l(e,e=>function(e){const t=Ct(e.selection)?e:Sa(e),{paragraph:a,index:r,offset:n}=ba(t),o=ha(a,xa(a,0,n),Ma(a,n)),i=xa(a,n,De(a)),l=i.length>0?ua(a,i.map(e=>({text:e.text,styles:e.styles}))):(()=>{const e=Ht("");return e.style=a.style?{...a.style}:void 0,e.list=ia(a.list),e})(),s=ct(t);return va(t,[...sa(s.slice(0,r)),o,l,...sa(s.slice(r+1))],ya(Fe(l,0)))}(e)),{mergeKey:"splitListItem"}),s(),!0)},handleListBoundaryBackspace:e=>{const a=g();if(!(null==a?void 0:a.list)||!p())return!1;return 0===Be(a,t.selection.focus)&&(d(),c(),i(e=>tr(e)),e.currentTarget.value="",s(),!0)}}}function $n(e){return/[\p{L}\p{N}_]/u.test(e)}function eo(e,t){if(0===e.length)return{start:0,end:0};const a=Math.max(0,Math.min(t,e.length)),r=a===e.length?Math.max(0,a-1):a,n=e[r];if(!n||!$n(n))return{start:a,end:Math.min(e.length,a+1)};let o=r,i=r+1;for(;o>0&&$n(e[o-1]);)o-=1;for(;i<e.length&&$n(e[i]);)i+=1;return{start:o,end:i}}me(["mousedown"]);class to{constructor(){a(this,"bindings",new Map)}register(e){this.bindings.set(e.id,e)}unregister(e){this.bindings.delete(e)}getBindings(){return Array.from(this.bindings.values())}execute(e,t,a){var r;const n=e.ctrlKey||e.metaKey,o=e.key.toLowerCase();for(const i of this.bindings.values())if(i.key.toLowerCase()===o&&Boolean(i.ctrlOrMeta)===n&&Boolean(i.shift)===e.shiftKey&&Boolean(i.alt)===e.altKey){if(i.command&&a){if((null==(r=a.canExecuteCommand)?void 0:r.call(a,i.command))??!0)return a.executeCommand(i.command),e.preventDefault(),!0}if(!1!==i.execute(t,e))return e.preventDefault(),!0}return!1}}const ao=[{id:"selectAll",command:"selectAll",key:"a",ctrlOrMeta:!0,execute:e=>{const t=e.state(),a=ct(t);if(0===a.length)return!1;const r=a[0],n=a[a.length-1];return e.clearPreferredColumn(),e.applyState(Jt(t,{anchor:Fe(r,0),focus:Fe(n,Ne(n).length)})),e.focusInput(),!0}},{id:"editImageAlt",command:"editImageAlt",key:"a",ctrlOrMeta:!0,alt:!0,execute:e=>!!e.selectedImageRun()&&(e.commandsController.promptForImageAlt(),!0)},{id:"insertFootnote",command:"insertFootnote",key:"f",ctrlOrMeta:!0,alt:!0,execute:e=>(e.commandsController.applyInsertFootnoteCommand(),!0)},{id:"pastePlainText",command:"pastePlainText",key:"v",ctrlOrMeta:!0,shift:!0,execute:e=>(e.setForcePlainTextPaste(!0),e.focusInput(),!0)},{id:"bold",command:"bold",key:"b",ctrlOrMeta:!0,execute:e=>(e.commandsController.applyBooleanStyleCommand("bold"),!0)},{id:"italic",command:"italic",key:"i",ctrlOrMeta:!0,execute:e=>(e.commandsController.applyBooleanStyleCommand("italic"),!0)},{id:"underline",command:"underline",key:"u",ctrlOrMeta:!0,execute:e=>(e.commandsController.applyBooleanStyleCommand("underline"),!0)},{id:"link",command:"link",key:"k",ctrlOrMeta:!0,execute:e=>(e.commandsController.promptForLink(),!0)},{id:"orderedList",command:"orderedList",key:"7",ctrlOrMeta:!0,shift:!0,execute:e=>(e.commandsController.applyParagraphListCommand("ordered"),!0)},{id:"bulletList",command:"bulletList",key:"8",ctrlOrMeta:!0,shift:!0,execute:e=>(e.commandsController.applyParagraphListCommand("bullet"),!0)},{id:"find",command:"find",key:"f",ctrlOrMeta:!0,execute:e=>(e.toggleFindReplace(!0),!0)},{id:"replace",command:"replace",key:"h",ctrlOrMeta:!0,execute:e=>(e.toggleReplace(!0),!0)},{id:"undo",command:"undo",key:"z",ctrlOrMeta:!0,execute:e=>(e.performUndo(),!0)},{id:"redo",command:"redo",key:"z",ctrlOrMeta:!0,shift:!0,execute:e=>(e.performRedo(),!0)},{id:"redoAlternative",command:"redo",key:"y",ctrlOrMeta:!0,execute:e=>(e.performRedo(),!0)},{id:"pageBreak",command:"pageBreak",key:"Enter",ctrlOrMeta:!0,execute:e=>(e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>$a(e))),e.focusInput(),!0)},{id:"lineBreak",command:"lineBreak",key:"Enter",shift:!0,execute:e=>(e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Wa(e,"\n"))),e.focusInput(),!0)},{id:"splitBlock",command:"splitBlock",key:"Enter",execute:e=>(e.commandsController.handleListEnter()||(e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Qa(e))),e.focusInput()),!0)}];function ro(e){const t=new to;ao.forEach(e=>t.register(e));return{handleKeyDown:a=>{const r=e.state();if(e.isReadOnly()){const e=a.key,t=e.toLowerCase(),r="ArrowLeft"===e||"ArrowRight"===e||"ArrowUp"===e||"ArrowDown"===e||"Home"===e||"End"===e||"PageUp"===e||"PageDown"===e,n="Shift"===e||"Control"===e||"Meta"===e||"Alt"===e,o=(a.ctrlKey||a.metaKey)&&("a"===t||"c"===t);return void(r||n||o||a.preventDefault())}const n=e.executeCommand?{executeCommand:(t,a)=>{var r;return null==(r=e.executeCommand)?void 0:r.call(e,t,a)},canExecuteCommand:(t,a)=>{var r;return null==(r=e.canExecuteCommand)?void 0:r.call(e,t,a)}}:void 0;if(!t.execute(a,e,n)){if((a.ctrlKey||a.metaKey)&&!a.altKey){if(("ArrowLeft"===a.key||"ArrowRight"===a.key)&&(a.preventDefault(),e.resetTransactionGrouping(),e.moveSelectionByWord("ArrowLeft"===a.key?"left":"right",a.shiftKey)))return void e.focusInput();if("Backspace"===a.key||"Delete"===a.key){if(a.preventDefault(),e.clearPreferredColumn(),e.resetTransactionGrouping(),!Ct(r.selection))return e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Xa(e))),a.currentTarget.value="",void e.focusInput();const t=ct(r),n=t.findIndex(e=>e.id===r.selection.focus.paragraphId),o=t[n];if(!o)return a.currentTarget.value="",void e.focusInput();if("Backspace"===a.key&&o.list){if(0===Be(o,r.selection.focus))return e.applySelectionAwareParagraphCommand(e=>tr(e)),a.currentTarget.value="",void e.focusInput()}const i=r.selection.focus.offset,l=Ne(o),s=eo(l,i);return"Backspace"===a.key?0===i||s.start===i?e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Xa(e))):e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(Jt(t,{anchor:Fe(o,s.start),focus:Fe(o,i)}),e=>Xa(e))):i>=l.length?e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Za(e))):s.end>i?e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(Jt(t,{anchor:Fe(o,i),focus:Fe(o,s.end)}),e=>Xa(e))):e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Za(e))),a.currentTarget.value="",void e.focusInput()}}if("Home"===a.key||"End"===a.key){a.preventDefault(),e.resetTransactionGrouping();const t="Home"===a.key?"start":"end";return a.ctrlKey||a.metaKey?e.moveSelectionToDocumentBoundary(t,a.shiftKey):e.moveSelectionToParagraphBoundary(t,a.shiftKey),void e.focusInput()}if(!a.altKey||a.ctrlKey||a.metaKey||"ArrowUp"!==a.key&&"ArrowDown"!==a.key||(a.preventDefault(),e.resetTransactionGrouping(),e.clearPreferredColumn(),!e.moveSelectedImageByParagraph("ArrowUp"===a.key?-1:1)))switch(a.key){case"Backspace":return e.commandsController.handleListBoundaryBackspace(a)?void a.preventDefault():(a.preventDefault(),e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Xa(e))),a.currentTarget.value="",void e.focusInput());case"Delete":return a.preventDefault(),e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Za(e))),a.currentTarget.value="",void e.focusInput();case"Tab":{if(e.commandsController.handleListTab(a.shiftKey?"outdent":"indent"))return void a.preventDefault();const t=e.resolveAdjacentTableCellPosition(r.document,r.selection.focus.paragraphId,a.shiftKey?-1:1);if(t)return a.preventDefault(),e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applySelectionPreservingStructure({anchor:t,focus:t}),void e.focusInput();break}case"ArrowLeft":return a.preventDefault(),e.resetTransactionGrouping(),a.shiftKey?(e.clearPreferredColumn(),e.applyState(Fa(r,-1))):(e.clearPreferredColumn(),e.applyState(Qt(r))),void e.focusInput();case"ArrowRight":return a.preventDefault(),e.resetTransactionGrouping(),a.shiftKey?(e.clearPreferredColumn(),e.applyState(function(e){return Fa(e,1)}(r))):(e.clearPreferredColumn(),e.applyState($t(r))),void e.focusInput();case"ArrowUp":return a.preventDefault(),e.resetTransactionGrouping(),void(a.shiftKey?e.moveVerticalSelection(-1,!0)||(e.applyState(function(e){return Ba(e,-1)}(r)),e.focusInput()):e.moveVerticalByBlock(-1)||(e.applyState(function(e){return Da(e,-1)}(r)),e.focusInput()));case"ArrowDown":return a.preventDefault(),e.resetTransactionGrouping(),void(a.shiftKey?e.moveVerticalSelection(1,!0)||(e.applyState(function(e){return Ba(e,1)}(r)),e.focusInput()):e.moveVerticalByBlock(1)||(e.applyState(function(e){return Da(e,1)}(r)),e.focusInput()));default:return}}},registry:t}}const no=24;function oo(e){return e&&0!==e.length?e.reduce((e,t)=>e+t.estimatedHeight,0):0}function io(e){var t,a;const r=[],n=(e,t,a)=>{let n=0;for(const o of e.runs){const e=n+o.text.length;o.footnoteReference&&e>t&&n<a&&r.push(o.footnoteReference.footnoteId),n=e}};if("paragraph"===e.sourceBlock.type)return n(e.sourceBlock,(null==(t=e.layout)?void 0:t.startOffset)??0,(null==(a=e.layout)?void 0:a.endOffset)??Ne(e.sourceBlock).length),r;for(const o of lt(e.sourceBlock))n(o,0,Ne(o).length);return r}function lo(e){const t=new Set,a=[];for(const r of e.blocks)for(const e of io(r))t.has(e)||(t.add(e),a.push(e));return a}function so(e,t,a,r,n,o,i,l,s){var d,c;const h=Math.max(24,$e(a.pageSettings)-no),p=[];for(const u of t){const t=null==(c=null==(d=e.footnotes)?void 0:d.items)?void 0:c[u];if(!t)continue;const f=s(t.blocks,a.index,r,n,o,e.styles,h,i,l);for(const e of f)p.push({...e,blockId:`${u}:${e.blockId}`})}return p}function co(e,t){const a=new Map;for(const r of e){const e=lo(r);if(0===e.length)continue;const n=so(t.document,e,r,t.totalPages,t.measuredHeights,t.measuredParagraphLayouts,t.layoutMode,t.measurer,t.projectBlocks);if(0===n.length)continue;const o=2*Math.max(0,n.length-1);a.set(r.index,10+oo(n)+o)}return a}function ho(e){return[...e.entries()].sort(([e],[t])=>e-t).map(([e,t])=>`${e}:${Math.round(t)}`).join("|")}function po(e,t){return e.map(e=>{const a=lo(e);if(0===a.length)return{...e,footnoteBlocks:void 0,footnoteReferenceIds:void 0,footnoteTop:void 0,footnoteSeparatorTop:void 0};const r=so(t.document,a,e,t.totalPages,t.measuredHeights,t.measuredParagraphLayouts,t.layoutMode,t.measurer,t.projectBlocks),n=e.bodyBottom??rt(e.pageSettings),o=Math.max(e.bodyTop??at(e.pageSettings),n),i=o+10;return{...e,footnoteBlocks:r,footnoteReferenceIds:a,footnoteSeparatorTop:o,footnoteTop:i,bodyBottom:n}})}function uo(e){if(!e.list)return 0;return 24+24*(e.list.level??0)}const fo=96/72,go=new Set(["calibri","times new roman","arial","cambria","courier new","georgia","verdana"]),mo=new Map;let vo;function yo(){if(void 0!==vo)return vo;if("undefined"==typeof document)return vo=null,vo;if("undefined"!=typeof navigator&&/jsdom/i.test(navigator.userAgent))return vo=null,vo;const e=document.createElement("canvas");try{vo=e.getContext("2d")}catch{vo=null}return vo}function bo(e,t){const a=(null==e?void 0:e.fontSize)??t;return(null==e?void 0:e.smallCaps)?.8*a:a}function Mo(e,t){const a=bo(e,t),r=(null==e?void 0:e.fontFamily)??"Calibri, sans-serif",n=(null==e?void 0:e.bold)?"700":"400";return`${(null==e?void 0:e.italic)?"italic":"normal"} ${n} ${a}px ${r}`}const wo=new Map;function xo(e,t){const a=function(e,t){const a=Mo(e,t),r=wo.get(a);if(void 0!==r)return r;const n=1.223*bo(e,t),o=yo();let i=n;if(o){o.font=a;const e=o.measureText("Hg"),t=(e.actualBoundingBoxAscent??e.fontBoundingBoxAscent??0)+(e.actualBoundingBoxDescent??e.fontBoundingBoxDescent??0);t>0&&(i=t)}const l=Math.max(i,n);return wo.set(a,l),l}(e,(null==e?void 0:e.fontSize)??15);return a*t}function Co(e,t,a,r){var n;if("\n"===e)return 0;const o=(null==t?void 0:t.fontSize)??a,i=Mo(t,a),l=function(e,t){return(null==t?void 0:t.allCaps)?e.toUpperCase():e}(e,t),s=(null==t?void 0:t.characterScale)&&t.characterScale>0?t.characterScale/100:1,d=((null==t?void 0:t.characterSpacing)??0)*fo,c=`${i}|${l}|${s}|${d}`,h=mo.get(c);if(void 0!==h)return h;const p=yo();let u;if(p){p.font=i;const e="\t"===l?" ".repeat(4):l;u=p.measureText(e).width}else u=function(e,t){return" "===e?.35*t:"\t"===e?.35*t*4:".,;:!'`|ilI".includes(e)?.3*t:"mwMW@#%&".includes(e)?.92*t:"0123456789".includes(e)?.6*t:/[A-Z]/.test(e)?.72*t:/[a-z]/.test(e)?.62*t:/[^\u0000-\u00ff]/.test(e)?t:.66*t}(l,o);if("wordParity"!==r&&(null==t?void 0:t.fontFamily)){const e=null==(n=t.fontFamily.toLowerCase().replace(/['"]/g,"").split(",")[0])?void 0:n.trim();e&&go.has(e)&&(u*=1)}return u=Math.max(0,u*s+d),mo.set(c,u),u}function So(e){const t=[];let a=[],r=null;const n=()=>{0!==a.length&&r&&(t.push({kind:r,chars:a,width:a.reduce((e,t)=>e+t.width,0)}),a=[],r=null)};for(const o of e){if("\n"===o.char){n(),t.push({kind:"newline",chars:[o],width:0});continue}const e=/\s/.test(o.char)?"whitespace":"text";r&&r!==e&&n(),r=e,a.push(o)}return n(),t}function Io(e,t,a,r){var n;const o=[],i=new Map(e.runs.map(e=>[e.id,e])),l=Math.max(15,...e.runs.map(t=>{var r;return Ze(t.styles,null==(r=e.style)?void 0:r.styleId,a).fontSize??15}));for(const s of t){const t=i.get(s.runId),d=Ze(null==t?void 0:t.styles,null==(n=e.style)?void 0:n.styleId,a);for(const e of s.chars){const t=""===e.char&&s.image?s.image.width:Co(e.char,d,l,r);o.push({char:e.char,offset:e.paragraphOffset,width:t})}}return o}function ko(e,t,a,r){const n=Ke(e.style,t),o=uo(e),i=(n.indentLeft??0)+o,l=n.indentHanging?-Math.abs(n.indentHanging):n.indentFirstLine??0,s=i+(r?l:0),d=n.indentRight??0;return Math.max(1,a-d-s)}function Ao(e,t,a){const r=Ke(e.style,t),n=uo(e),o=(r.indentLeft??0)+n,i=r.indentHanging?-Math.abs(r.indentHanging):r.indentFirstLine??0;return o+(a?i:0)}function To(e,t,a,r,n){return Array.from({length:t-e+1},(t,o)=>({paragraphId:"",offset:e+o,left:a[o]??a[a.length-1]??0,top:r,height:n}))}function Po(e,t){return Math.abs(t)<.01?e:{...e,slots:e.slots.map(e=>({...e,left:e.left+t}))}}function Eo(e,t,a,r,n,o){if(0===r.length)return r;const i=Ke(e.style,t).align??"left";return"left"===i?r:r.map((l,s)=>{const d=ko(e,t,a,0===s),c=function(e,t){const a=e.slots[0];if(!a)return 0;let r=e.slots.length-1;for(;r>0;){const a=e.slots[r];if(!a)break;const n=a.offset-1,o=t.get(n);if(" "!==o&&"\t"!==o&&"\n"!==o)break;r--}const n=e.slots[r];if(!n)return 0;let o=Math.max(0,n.left-a.left);if(r>0){const a=n.offset-1,i=t.get(a);if(i&&/^[.,;:?!'"\-\)\]]$/.test(i)){const t=e.slots[r-1];t&&(o-=.5*(n.left-t.left))}}return o}(l,o),h=Math.max(0,d-c);if(h<=0)return l;if("center"===i)return Po(l,h/2);if("right"===i)return Po(l,h);const p=s===r.length-1,u=!0===n[s];return"justify"!==i||p||u?l:function(e,t,a){if(t<=0||e.endOffset<=e.startOffset)return e;let r=e.endOffset-1;for(;r>=e.startOffset;){const e=a.get(r);if(e&&" "!==e&&"\t"!==e&&"\n"!==e)break;r-=1}if(r<e.startOffset)return e;const n=[];for(let s=e.startOffset;s<=r;s+=1)" "===a.get(s)&&n.push(s);if(0===n.length)return e;const o=t/n.length;let i=0,l=0;return{...e,slots:e.slots.map(e=>{for(;i<n.length&&e.offset>n[i];)l+=o,i+=1;return{...e,left:e.left+l}})}}(l,h,o)})}function Lo(e,t,a,r){if(r||"text"!==e.kind)return!1;const n=e.chars.map(e=>e.char).join("");if(n.length<4||n.length>6||!/^[A-Za-z]+$/.test(n))return!1;const o=t+e.width-a;return o>0&&o<=0}function Oo(e,t,a="wordParity"){const r=function(e){let t=0;return e.runs.map(a=>{const r=Array.from(a.text).map((e,a)=>({char:e,paragraphOffset:t+a,runOffset:a})),n={paragraphId:e.id,runId:a.id,startOffset:t,endOffset:t+a.text.length,text:a.text,styles:a.styles?{...a.styles}:void 0,image:a.image?{...a.image}:void 0,revision:a.revision?{...a.revision}:void 0,chars:r};return t+=a.text.length,n})}(e),n=So(Io(e,r,t,a)),o=Math.max(0,Ao(e,t,!0)),i=Math.max(0,Ao(e,t,!1)),l=Math.max(o,i),s=n.reduce((e,t)=>"text"!==t.kind?e:Math.max(e,t.width),0),d=e.runs.reduce((e,t)=>{var a;return Math.max(e,(null==(a=t.image)?void 0:a.width)??0)},0);return Math.max(1,l+s,d)}const Ro={composeMeasuredParagraphLines:function(e){const{paragraph:t,fragments:a,styles:r,contentWidth:n,layoutMode:o="fast"}=e,i=Io(t,a,r,o),l=So(i),s=new Map(i.map(e=>[e.offset,e.char])),d=Math.max(15,...t.runs.map(e=>{var a;return Ze(e.styles,null==(a=t.style)?void 0:a.styleId,r).fontSize??15})),c=function(e,t,a,r){var n;const o=Ke(e.style,t),i=o.lineHeight??1.15,l=o.lineGridPitch,s=!1!==o.snapToGrid,d=Ze(void 0,null==(n=e.style)?void 0:n.styleId,t),c=e.runs.reduce((r,n)=>{var o,l;const s=Ze(n.styles,null==(o=e.style)?void 0:o.styleId,t),c=s.fontSize??d.fontSize??a,h=Math.abs(s.baselineShift??0)*fo,p=xo({...s,fontSize:c},i),u=(null==(l=n.image)?void 0:l.height)??0;return Math.max(r,p+h,u)},0),h=Math.max(xo({...d,fontSize:d.fontSize??a},i),c);if(l&&l>0&&s){if("implicit"===o.lineGridType){const e="wordParity"===r?l:.86*l;return Math.max(h,e)}return Math.ceil(h/l)*l}return h}(t,r,d,o),h=void 0===n?Math.max(120,624):Math.max(1,n);if(0===l.length){const e=Ao(t,r,!0);return[{paragraphId:t.id,index:0,startOffset:0,endOffset:0,top:0,height:c,slots:[{paragraphId:t.id,offset:0,left:e,top:0,height:c}],fragments:[]}]}const p=[],u=[];let f="newline"===l[0].kind?l[0].chars[0].offset+1:l[0].chars[0].offset,g=0,m=Ao(t,r,!0),v=[m],y=f,b=0,M=!0;const w=(e=!1)=>{!function(e,t,a,r,n,o,i){e.push({paragraphId:t,index:e.length,startOffset:a,endOffset:r,top:o,height:i,slots:To(a,r,n,o,i).map(e=>({...e,paragraphId:t})),fragments:[]})}(p,t.id,f,y,v,b,c),u.push(e),b+=c,M=!1},x=e=>{f=e,y=e,g=0,m=Ao(t,r,M),v=[m]},C=e=>{for(const t of e)g+=t.width,y=t.offset+1,v.push(m+g)};for(let S=0;S<l.length;S+=1){const e=l[S];if("newline"===e.kind){w(!0),x(e.chars[0].offset+1);continue}const a=ko(t,r,h,M),n=g+e.width<=a,i=f===y;if(n||i&&"whitespace"===e.kind||"wordParity"!==o&&Lo(e,g,a,i)){C(e.chars);continue}if("whitespace"===e.kind){w(),x(e.chars[e.chars.length-1].offset+1);continue}w(),x(e.chars[0].offset);let s=ko(t,r,h,M),d=[],c=0;for(const o of e.chars)d.length>0&&c+o.width>s&&(C(d),w(),x(o.offset),s=ko(t,r,h,M),d=[],c=0),d.push(o),c+=o.width;d.length>0&&C(d)}return(0===p.length||f!==y||v.length>1)&&w(),Eo(t,r,h,p,u,s)},resolveRenderedLineHeightPx:xo};function Ho(e,t,a){const r=Math.max(t,e.startOffset),n=Math.min(a,e.endOffset);if(r>=n)return null;const o=e.chars.filter(e=>e.paragraphOffset>=r&&e.paragraphOffset<n);return{paragraphId:e.paragraphId,runId:e.runId,startOffset:r,endOffset:n,text:o.map(e=>e.char).join(""),styles:e.styles?{...e.styles}:void 0,image:e.image?{...e.image}:void 0,revision:e.revision?{...e.revision}:void 0,chars:o}}const No=new WeakMap,Do=new WeakMap;function Fo(e,t,a,r,n,o="fast",i=Ro){const{dependsOnPageIndex:l,dependsOnTotalPages:s}=function(e){var t,a;const r=Do.get(e);if(r)return r;let n=!1,o=!1;for(const l of e.runs)if("PAGE"===(null==(t=l.field)?void 0:t.type)?n=!0:"NUMPAGES"===(null==(a=l.field)?void 0:a.type)&&(o=!0),n&&o)break;const i={dependsOnPageIndex:n,dependsOnTotalPages:o};return Do.set(e,i),i}(e),d=`${l?t??"":""}:${s?a??"":""}:${n??""}:${o}`;let c=No.get(e);if(c){const e=c.get(d);if(e)return e}const h=Dr("layout:projectParagraphLayout",()=>{let l=0;const s=e.runs.map(r=>{let n=r.text;r.field&&("PAGE"===r.field.type?n="number"==typeof t?String(t+1):"1":"NUMPAGES"===r.field.type&&(n="number"==typeof a?String(a):"1"));const o=Array.from(n).map((e,t)=>({char:e,paragraphOffset:l+t,runOffset:t})),i={paragraphId:e.id,runId:r.id,startOffset:l,endOffset:l+n.length,text:n,styles:r.styles?{...r.styles}:void 0,image:r.image?{...r.image}:void 0,revision:r.revision?{...r.revision}:void 0,chars:o};return l+=n.length,i}),d=function(e,t){const a=e.runs.map(a=>{var r;return Ze(a.styles,null==(r=e.style)?void 0:r.styleId,t).fontSize}).filter(e=>"number"==typeof e&&Number.isFinite(e));return a.length>0?Math.max(...a):15}(e,r),c=function(e,t,a,r){var n;const o=zo(e,a),i=o.lineHeight??1.15,l=o.lineGridPitch,s=!1!==o.snapToGrid,d=Ze(void 0,null==(n=e.style)?void 0:n.styleId,a),c=xo({...d,fontSize:d.fontSize??t},i);if(l&&l>0&&s){if("implicit"===o.lineGridType){const e="wordParity"===r?l:.86*l;return Math.max(c,e)}return Math.ceil(c/l)*l}return c}(e,d,r,o),h=i.composeMeasuredParagraphLines({paragraph:e,fragments:s,styles:r,contentWidth:n,layoutMode:o}).map(e=>({...e,height:e.height||c,fragments:s.map(t=>Ho(t,e.startOffset,e.endOffset)).filter(e=>null!==e)}));return{paragraphId:e.id,text:s.map(e=>e.text).join(""),fragments:s,lines:h,startOffset:0,endOffset:l,contentWidth:n}},0);return c||(c=new Map,No.set(e,c)),c.set(d,h),h}function Bo(e,t){return{...e,startOffset:t.startOffset??e.startOffset,endOffset:t.endOffset??e.endOffset,lines:t.lines.map(t=>({paragraphId:e.paragraphId,index:t.index,startOffset:t.startOffset,endOffset:t.endOffset,top:t.top,height:t.height,slots:t.slots.map(t=>({paragraphId:e.paragraphId,offset:t.offset,left:t.left,top:t.top,height:t.height})),fragments:e.fragments.map(e=>Ho(e,t.startOffset,t.endOffset)).filter(e=>null!==e)}))}}function Vo(e,t){if(e.paragraphId!==t.paragraphId)return!1;if(e.text!==t.text)return!1;const a=e.startOffset??0,r=t.startOffset??0,n=e.endOffset??e.text.length,o=t.endOffset??t.text.length;return a===r&&n===o&&e.contentWidth===t.contentWidth}function zo(e,t){return Ke(e.style,t)}function _o(e,t,a,r,n,o=!0){const i=t.reduce((e,t)=>e+t.height,0),l=zo(e,n);return(a&&o?l.spacingBefore??0:0)+(r?l.spacingAfter??0:0)+i}function Uo(e,t,a,r,n){if(!a)return t;const o=zo(e,r);return Math.max(0,t-(o.spacingAfter??0))}function qo(e,t,a,r=!0){return _o(e,t.lines,!0,!0,a,r)}function Go(e,t,a,r,n){return(null==e?void 0:e[a])??(r?null==e?void 0:e[t]:void 0)??n}function Wo(e,t,a){var r,n,o;const i=e.lines.slice(t,a),l=(null==(r=i[0])?void 0:r.startOffset)??0,s=(null==(n=i[i.length-1])?void 0:n.endOffset)??l,d=(null==(o=i[0])?void 0:o.top)??0;return{paragraphId:e.paragraphId,text:e.text.slice(l,s),fragments:e.fragments.map(e=>Ho(e,l,s)).filter(e=>null!==e),lines:i.map((e,t)=>({...e,index:t,top:e.top-d,slots:e.slots.map(e=>({...e,top:e.top-d}))})),startOffset:l,endOffset:s,contentWidth:e.contentWidth}}function jo(e,t,a,r,n,o=!0){if(!1===zo(e,n).widowControl)return{endLineIndexExclusive:r,height:_o(e,t.slice(a,r),0===a,r===t.length,n,o)};let i=r;const l=i-a;return 1===t.length-i&&l>1&&(i-=1),{endLineIndexExclusive:i,height:_o(e,t.slice(a,i),0===a,i===t.length,n,o)}}function Xo(e,t,a,r="fast",n=Ro){const o=Fo(e,void 0,void 0,t,a,r,n).lines.reduce((e,t)=>e+t.height,0),i=zo(e,t);return(i.spacingBefore??0)+(i.spacingAfter??0)+o}const Zo=96/72;function Ko(e){return e*Zo}function Yo(e,t){const a=function(e,t){var a;const r=null==(a=e.style)?void 0:a.width;if("number"==typeof r&&Number.isFinite(r))return Math.max(24,r);if("string"==typeof r&&r.trim().endsWith("%")){const e=Number.parseFloat(r.trim().slice(0,-1));if(Number.isFinite(e))return Math.max(24,t*(e/100))}return t}(e,t),r=ar(e),n=Math.max(1,...r.map(e=>e.visualColumnIndex+Math.max(1,e.colSpan)));if(e.gridCols&&e.gridCols.length>=n){const t=e.gridCols.reduce((e,t)=>e+t,0),r=t>0?a/t:1;return e.gridCols.map(e=>e*r)}const o=a/n;return Array(n).fill(o)}function Jo(e,t,a){const r=yt(e,t,a);if(!r)return null;const n=ot(e),o=n[Math.max(0,Math.min(a,n.length-1))];if(!o)return null;const i=("header"===r.zone?o.header??[]:"footer"===r.zone?o.footer??[]:o.blocks)[r.blockIndex];if(!i||"table"!==i.type)return null;const l=i.rows[r.rowIndex];if(!l)return null;const s=l.cells[r.cellIndex];if(!s)return null;const d=Yo(i,$e(Qe(e))),c=ar(i).find(e=>e.rowIndex===r.rowIndex&&e.cellIndex===r.cellIndex),h=(null==c?void 0:c.visualColumnIndex)??0,p=Math.max(1,(null==c?void 0:c.colSpan)??s.colSpan??1);let u=0;for(let g=h;g<Math.min(h+p,d.length);g+=1)u+=d[g]??0;if(u<=0)return null;const f=function(e){var t,a;const r=null==(t=e.style)?void 0:t.borderLeft,n=null==(a=e.style)?void 0:a.borderRight;return(r?Math.max(0,Ko(r.width)):1)+(n?Math.max(0,Ko(n.width)):1)}(s)+function(e){var t,a,r;if("number"==typeof(null==(t=e.style)?void 0:t.padding)&&Number.isFinite(e.style.padding))return 2*Math.max(0,Ko(e.style.padding));const n=void 0!==(null==(a=e.style)?void 0:a.paddingLeft)?Ko(e.style.paddingLeft):7.2,o=void 0!==(null==(r=e.style)?void 0:r.paddingRight)?Ko(e.style.paddingRight):7.2;return Math.max(0,n+o)}(s);return Math.max(24,u-f)}const Qo=96/72,$o=14.4;function ei(e,t,a){var r;if("number"==typeof a&&Number.isFinite(a)&&a>0)return Math.max(24,a-function(e){var t,a,r,n,o,i;const l=void 0!==(null==(t=e.style)?void 0:t.padding)?e.style.padding*Qo:void 0!==(null==(a=e.style)?void 0:a.paddingLeft)?e.style.paddingLeft*Qo:7.2,s=void 0!==(null==(r=e.style)?void 0:r.padding)?e.style.padding*Qo:void 0!==(null==(n=e.style)?void 0:n.paddingRight)?e.style.paddingRight*Qo:7.2,d=(null==(o=e.style)?void 0:o.borderLeft)?Math.max(0,e.style.borderLeft.width*Qo):1,c=(null==(i=e.style)?void 0:i.borderRight)?Math.max(0,e.style.borderRight.width*Qo):1;return Math.max(0,l+s+d+c)}(e));if("number"!=typeof(null==(r=e.style)?void 0:r.width))return t;const n=e.style.width*Qo,o=void 0!==e.style.padding?e.style.padding*Qo*2:$o;return Math.max(24,n-o)}const ti=new WeakMap;function ai(e,t,a,r,n,o){var i;const l=n&&"number"==typeof r?function(e,t){let a=ti.get(e);a||(a=new Map,ti.set(e,a));const r=Math.round(t);let n=a.get(r);if(n)return n;const o=Yo(e,t),i=ar(e),l=new Map;for(const s of i){let e=0;for(let t=s.visualColumnIndex;t<Math.min(s.visualColumnIndex+s.colSpan,o.length);t+=1)e+=o[t]??0;l.set(`${s.rowIndex}:${s.cellIndex}`,e)}return n={columnWidths:o,cellColumnWidth:l},a.set(r,n),n}(n,r):null,s=e.cells.map((e,n)=>{if("continue"===e.vMerge)return 0;let i;if(l&&"number"==typeof o){const e=l.cellColumnWidth.get(`${o}:${n}`);void 0!==e&&e>0&&(i=e)}const s=ei(e,r,i);let d=0;for(const r of e.blocks)d+=Xo(r,t,s,a);let c=0;for(const t of e.blocks)for(const e of t.runs)if(e.image&&e.image.height>c){const t=void 0!==s&&e.image.width>s?Math.floor(e.image.height*(s/e.image.width)):e.image.height;t>c&&(c=t)}return Math.max(d,c)+function(e){var t,a,r,n,o,i;const l=void 0!==(null==(t=e.style)?void 0:t.padding)?e.style.padding*Qo:void 0!==(null==(a=e.style)?void 0:a.paddingTop)?e.style.paddingTop*Qo:0,s=void 0!==(null==(r=e.style)?void 0:r.padding)?e.style.padding*Qo:void 0!==(null==(n=e.style)?void 0:n.paddingBottom)?e.style.paddingBottom*Qo:0,d=(null==(o=e.style)?void 0:o.borderTop)?Math.max(0,e.style.borderTop.width*Qo):1,c=(null==(i=e.style)?void 0:i.borderBottom)?Math.max(0,e.style.borderBottom.width*Qo):1;return Math.max(0,l+s+d+c)}(e)}),d=Math.max(...s,17.25),c=function(e){if("number"==typeof e&&Number.isFinite(e))return Math.max(0,e*Qo);if("string"!=typeof e)return null;const t=e.trim().toLowerCase();if(!t||t.includes("%"))return null;if(t.endsWith("pt")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?Math.max(0,e*Qo):null}if(t.endsWith("px")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?Math.max(0,e):null}if(!/^[+-]?\d+(\.\d+)?$/.test(t))return null;const a=Number.parseFloat(t);return Number.isFinite(a)?Math.max(0,a*Qo):null}(null==(i=e.style)?void 0:i.height);return Math.max(d,c??0)+0}function ri(e){let t=0;for(const a of e.rows){if(!a.isHeader)break;t+=1}return t}function ni(e,t){const a=e.rows[t];if(!a)return t+1;let r=t+1;for(const n of a.cells){const e=Math.max(1,n.rowSpan??(n.vMerge,1));r=Math.max(r,t+e)}return Math.min(e.rows.length,r)}function oi(e){const t=[];let a=0,r=0;for(let n=0;n<e.rows.length;n+=1)n>=r&&(a=n,r=n+1),r=Math.max(r,ni(e,n)),n===r-1&&t.push({startRowIndex:a,endRowIndexExclusive:r});return t}function ii(e,t,a){for(const r of a){if(r.startRowIndex>=t)break;if(r.endRowIndexExclusive>t)return 0}return t}function li(e,t,a,r,n,o,i,l=Ro){return(r>0?e.rows.slice(0,r).reduce((t,a,r)=>t+ai(a,n,o,i,e,r),0):0)+e.rows.slice(t,a).reduce((a,r,l)=>a+ai(r,n,o,i,e,t+l),0)+0}function si(e,t,a,r="fast",n=Ro){return li(e,0,e.rows.length,0,t,r,a,n)}function di(e,t,a,r,n,o,i,l="fast",s=Ro){return function(e,t,a,r,n,o,i,l,s="fast",d){return e.map((e,o)=>{if("paragraph"===e.type){const c=t.projectParagraphLayout(e,a,r,i,l,s,d);return{blockId:e.id,sourceBlockId:e.id,blockType:e.type,paragraphId:e.id,globalIndex:o,estimatedHeight:(null==n?void 0:n[e.id])??t.getProjectedParagraphBlockHeight(e,c,i),layout:c,sourceBlock:e}}return{blockId:e.id,sourceBlockId:e.id,blockType:e.type,globalIndex:o,estimatedHeight:(null==n?void 0:n[e.id])??t.estimateTableBlockHeight(e,i,l,s,d),sourceBlock:e}})}(e,{projectParagraphLayout:Fo,estimateTableBlockHeight:si,getProjectedParagraphBlockHeight:qo},t,a,r,0,o,i,l,s)}function ci(e){var t;const{blocks:a,pageSettings:r,maxPageHeight:n,measuredHeights:o,measuredParagraphLayouts:i,styles:l,pageOffset:s=0,totalPages:d,existingPages:c=[],layoutMode:h="fast",measurer:p=Ro,reservedHeightByPageIndex:u}=e,f=$e(r),g=[...c];let m=g[g.length-1],v=m?[...m.blocks]:[],y=m?m.height:0;const b=()=>s+g.length,M=e=>Math.max(24,n-((null==u?void 0:u.get(e))??0));m&&g.pop();const w=()=>{if(0===v.length&&g.length>0)return;const e=b(),t=M(e);g.push({id:`page:${e+1}`,index:e,height:y,maxHeight:t,blocks:v,pageSettings:r}),v=[],y=0};for(let x=0;x<a.length;x+=1){const e=a[x],r=a[x+1];if(v.length>0&&("paragraph"===e.type?zo(e,l).pageBreakBefore:null==(t=e.style)?void 0:t.pageBreakBefore)&&w(),"paragraph"===e.type){const t=Fo(e,s+g.length,d,l,f,h,p),a=null==i?void 0:i[e.id],n=a&&Vo(t,a)?Bo(t,a):t,c=(null==o?void 0:o[e.id])??qo(e,n,l),u=zo(e,l),m="paragraph"===(null==r?void 0:r.type)?(null==o?void 0:o[r.id])??Xo(r,l,f,h):r?(null==o?void 0:o[r.id])??si(r,l,f,h):0;if(u.keepWithNext&&v.length>0&&y+c+m>M(b())&&c+m<=M(b())&&w(),u.keepLinesTogether&&c<=M(b())){v.length>0&&y+c>M(b())&&w();const t=`${e.id}:segment:0`,a=Go(o,e.id,t,!0,c);v.push({blockId:t,sourceBlockId:e.id,blockType:e.type,paragraphId:e.id,globalIndex:x,estimatedHeight:a,layout:n,sourceBlock:e}),y+=a;continue}let C=0,S=0;for(;C<n.lines.length;){const t=M(b())-y;let a=C,r=0;for(;a<n.lines.length;){const o=_o(e,n.lines.slice(C,a+1),0===C,a===n.lines.length-1,l),i=Uo(e,o,a===n.lines.length-1,l),s="wordParity"===h?1.5:0;if(i>t+s&&a===C&&v.length>0)break;if(i>t+s&&a>C)break;r=o,a+=1}if(a===C&&v.length>0){w();continue}if(a===C&&(a=Math.min(n.lines.length,C+1),r=_o(e,n.lines.slice(C,a),0===C,a===n.lines.length,l)),a<n.lines.length){const t=jo(e,n.lines,C,a,l);a=t.endLineIndexExclusive,r=t.height}const i=Wo(n,C,a),s=`${e.id}:segment:${S}`,d=0===C&&a===n.lines.length,c=Go(o,e.id,s,d,r);v.push({blockId:s,sourceBlockId:e.id,blockType:e.type,paragraphId:e.id,globalIndex:x,estimatedHeight:c,layout:i,sourceBlock:e}),y+=c,C=a,S+=1,C<n.lines.length&&w()}continue}const n=(null==o?void 0:o[e.id])??si(e,l,f,h),c=M(b());if(e.rows.length<=1||y+n<=c){v.length>0&&y+n>c&&w(),v.push({blockId:e.id,sourceBlockId:e.id,blockType:e.type,globalIndex:x,estimatedHeight:n,sourceBlock:e}),y+=n;continue}const u=oi(e),m=ii(0,ri(e),u);let C=0,S=0;for(;C<u.length;){const t=u[C].startRowIndex,a=t>0?m:0,r=M(b())-y;let n=C,i=t,s=0;for(;n<u.length;){const o=u[n].endRowIndexExclusive,d=li(e,t,o,a,l,h,f);if(d>r&&n===C&&v.length>0)break;if(d>r&&n>C)break;s=d,i=o,n+=1}if(n===C&&v.length>0){w();continue}n===C&&(i=u[C].endRowIndexExclusive,s=li(e,t,i,a,l,h,f));const d=`${e.id}:segment:${S}`,c=(null==o?void 0:o[d])??s;v.push({blockId:d,sourceBlockId:e.id,blockType:e.type,globalIndex:x,estimatedHeight:c,tableSegment:{startRowIndex:t,endRowIndex:i,repeatedHeaderRowCount:a},sourceBlock:e}),y+=c,C=Math.max(C+1,n),S+=1,C<u.length&&w()}}if(w(),0===g.length){const e=s,t=M(e);g.push({id:`page:${e+1}`,index:e,height:0,maxHeight:t,blocks:[],pageSettings:r})}return g}function hi(e){return e&&0!==e.length?e.reduce((e,t)=>e+t.estimatedHeight,0):0}function pi(e,t,a){const r=(a+1)%2==0;return 0===t&&e.firstPageHeader?e.firstPageHeader:r&&e.evenPageHeader?e.evenPageHeader:e.header}function ui(e,t,a){const r=(a+1)%2==0;return 0===t&&e.firstPageFooter?e.firstPageFooter:r&&e.evenPageFooter?e.evenPageFooter:e.footer}function fi(e,t,a){const r=at(e),n=rt(e),o=hi(t),i=hi(a),l=e.margins.header,s=e.height-e.margins.footer-i,d=o>0?Math.min(e.height,l+o):0,c=i>0?Math.max(0,s):e.height,h=Math.max(r,d),p=Math.max(h,Math.min(n,c));return{bodyTop:h,bodyBottom:p,headerTop:l,footerTop:s,contentHeight:Math.max(24,Math.floor(p-h))}}function gi(e,t,a){return[e.header,e.firstPageHeader,e.evenPageHeader].map(e=>a(e,t)).filter(e=>!!e).sort((e,t)=>hi(t)-hi(e))[0]}function mi(e,t,a){return[e.footer,e.firstPageFooter,e.evenPageFooter].map(e=>a(e,t)).filter(e=>!!e).sort((e,t)=>hi(t)-hi(e))[0]}function vi(e,t,a,r){const n=[];for(const o of e.sections){const i=$e(o.pageSettings),l=gi(o,i,a),s=mi(o,i,a),d=fi(o.pageSettings,l,s),c=e.maxPageHeightOverride??d.contentHeight,h="continuous"===o.breakType&&n.length>0,p=h?n.length-1:n.length,u=e.projectBlocks({blocks:o.blocks,pageSettings:o.pageSettings,maxPageHeight:c,measuredHeights:e.measuredHeights,measuredParagraphLayouts:e.measuredParagraphLayouts,styles:e.documentStyles,pageOffset:p,totalPages:t,existingPages:h?[n[n.length-1]]:[],layoutMode:e.layoutMode,measurer:e.measurer,reservedHeightByPageIndex:r});h&&n.pop();for(const f of u){const i=f.index-p,l=$e(f.pageSettings),s=a(pi(o,Math.max(0,i),f.index),l,f.index,t)??f.headerBlocks,d=a(ui(o,Math.max(0,i),f.index),l,f.index,t)??f.footerBlocks,c=fi(f.pageSettings,s,d),h=(null==r?void 0:r.get(f.index))??0;f.headerBlocks=s,f.footerBlocks=d,f.bodyTop=c.bodyTop,f.bodyBottom=Math.max(c.bodyTop,c.bodyBottom-h),f.headerTop=c.headerTop,f.footerTop=c.footerTop,f.maxHeight=Math.max(24,(e.maxPageHeightOverride??c.contentHeight)-h),n.push(f)}}return n}function yi(e,t){const a=function(e){return(t,a,r,n)=>t?e.projectHeaderFooterBlocks(t,r,n,e.measuredHeights,e.measuredParagraphLayouts,e.documentStyles,a,e.layoutMode,e.measurer):void 0}(e),r=e.needsTotalPages?function(e,t){let a=0,r=[];for(const n of e.sections){const o=$e(n.pageSettings),i=gi(n,o,t),l=mi(n,o,t),s=fi(n.pageSettings,i,l),d=e.maxPageHeightOverride??s.contentHeight,c="continuous"===n.breakType&&r.length>0,h=e.projectBlocks({blocks:n.blocks,pageSettings:n.pageSettings,maxPageHeight:d,measuredHeights:e.measuredHeights,measuredParagraphLayouts:e.measuredParagraphLayouts,pageOffset:c?a-1:a,existingPages:c?[r[r.length-1]]:[],layoutMode:e.layoutMode,measurer:e.measurer});c?(r.pop(),r.push(...h),a=r.length):(r.push(...h),a=r.length)}return a}(e,a):void 0;return{totalPages:r,pages:vi(e,r,a,t)}}function bi(e){return"paragraph"===e.type?e.runs.some(e=>{var t;return"NUMPAGES"===(null==(t=e.field)?void 0:t.type)}):e.rows.some(e=>e.cells.some(e=>e.blocks.some(bi)))}function Mi(e,t,a,r,n={}){const o=n.layoutMode??"fast",i=n.measurer??Ro,l=ot(e),s=function(e){return ot(e).some(e=>[...e.header??[],...e.firstPageHeader??[],...e.evenPageHeader??[],...e.blocks,...e.footer??[],...e.firstPageFooter??[],...e.evenPageFooter??[]].some(bi))}(e),d={sections:l,documentStyles:e.styles,maxPageHeightOverride:t,measuredHeights:a,measuredParagraphLayouts:r,layoutMode:o,measurer:i,needsTotalPages:s,projectBlocks:ci,projectHeaderFooterBlocks:di};let{pages:c,totalPages:h}=yi(d);if(!e.footnotes||0===Object.keys(e.footnotes.items).length)return{pages:c};const p={document:e,totalPages:h,measuredHeights:a,measuredParagraphLayouts:r,layoutMode:o,measurer:i,projectBlocks:di};let u=co(c,p),f="";for(let g=0;g<4;g+=1){const e=ho(u);if(e===f)break;f=e,c=yi(d,u).pages,u=co(c,p)}return{pages:po(c,p)}}const wi=96/72;function xi(e){return e*wi}function Ci(e){if(!e)return{width:1,color:"#6f6f6f",type:"solid"};return{width:Math.max(0,Number.isFinite(e.width)?xi(e.width):1),color:e.color??"#6f6f6f",type:e.type??"solid"}}function Si(e){var t,a,r,n,o;const i=null==(t=e.style)?void 0:t.padding;if("number"==typeof i&&Number.isFinite(i)){const e=Math.max(0,xi(i));return{top:e,right:e,bottom:e,left:e}}return{top:void 0!==(null==(a=e.style)?void 0:a.paddingTop)?xi(e.style.paddingTop):0,right:void 0!==(null==(r=e.style)?void 0:r.paddingRight)?xi(e.style.paddingRight):7.2,bottom:void 0!==(null==(n=e.style)?void 0:n.paddingBottom)?xi(e.style.paddingBottom):0,left:void 0!==(null==(o=e.style)?void 0:o.paddingLeft)?xi(e.style.paddingLeft):7.2}}function Ii(e,t){if(!Number.isFinite(t)||t<=0)return e;let a=!1;const r=e.runs.map(e=>{if(!e.image)return e;const{width:r,height:n}=e.image;if(r<=t)return e;const o=t/r;return a=!0,{...e,image:{...e.image,width:Math.max(1,Math.floor(r*o)),height:Math.max(1,Math.floor(n*o))}}});return a?{...e,runs:r}:e}function ki(e,t,a){var r,n;const o=Math.max(0,t-a);return"bottom"===(null==(r=e.style)?void 0:r.verticalAlign)?o:"middle"===(null==(n=e.style)?void 0:n.verticalAlign)?o/2:0}function Ai(e){var t,a,r,n,o;const{table:i,state:l,pageIndex:s,layoutMode:d,originX:c,originY:h,contentWidth:p,estimatedHeight:u}=e,f=function(e,t){var a;const r=null==(a=e.style)?void 0:a.width;if("number"==typeof r)return Math.max(24,r);if("string"==typeof r&&r.trim().endsWith("%")){const e=Number.parseFloat(r.trim().slice(0,-1));if(Number.isFinite(e))return Math.max(24,t*(e/100))}return t}(i,p),g=c+function(e){var t;const a=null==(t=e.style)?void 0:t.indentLeft;return"number"==typeof a&&Number.isFinite(a)?Math.max(0,xi(a)):0}(i),m=ar(i),v=[],y=Math.max(1,...m.map(e=>e.visualColumnIndex+Math.max(1,e.colSpan)));let b=[];if(i.gridCols&&i.gridCols.length>=y){const e=i.gridCols.reduce((e,t)=>e+t,0),t=e>0?f/e:1;b=i.gridCols.map(e=>e*t)}else{const e=f/y;b=Array(y).fill(e)}const M=[0];for(let E=0;E<b.length;E++)M[E+1]=M[E]+b[E];const w=new Map(m.map(e=>[`${e.rowIndex}:${e.cellIndex}`,e])),x=[];for(let E=0;E<i.rows.length;E+=1){const e=i.rows[E];for(let o=0;o<e.cells.length;o+=1){const i=e.cells[o],c=w.get(`${E}:${o}`),h=Math.max(1,i.rowSpan??1);if(h>1&&v.push("unsupported:v-span"),"continue"!==i.vMerge&&"restart"!==i.vMerge||v.push("unsupported:v-merge"),!c)continue;const p=c.visualColumnIndex,u=Math.max(1,c.colSpan),g=Math.max(1,(M[p+u]??f)-(M[p]??0)),m=Si(i),y={top:Ci(null==(t=i.style)?void 0:t.borderTop),right:Ci(null==(a=i.style)?void 0:a.borderRight),bottom:Ci(null==(r=i.style)?void 0:r.borderBottom),left:Ci(null==(n=i.style)?void 0:n.borderLeft)},b=Math.max(24,g-y.left.width-y.right.width-m.left-m.right),C=[];let S=0;for(const e of i.blocks){const t=Ii(e,b),a=Fo(t,s,void 0,l.document.styles,b,d),r=a.lines.length>0?Math.max(...a.lines.map(e=>e.top+e.height)):1,n=Ke(t.style,l.document.styles),o=n.spacingBefore??0,i=n.spacingAfter??0,c=Math.max(1,o+r+i);C.push({paragraph:t,lines:a.lines,height:c,spacingBefore:o}),S+=c}x.push({rowIndex:E,cellIndex:o,cell:i,visualCol:p,colSpan:u,rowSpan:h,width:g,padding:m,borders:y,contentWidthPx:b,projectedParagraphs:C,contentNaturalHeightPx:S})}}const C=Math.max(1,i.rows.length),S=i.rows.map(e=>{var t;const a=function(e){if("number"==typeof e&&Number.isFinite(e))return xi(e);if("string"!=typeof e)return null;const t=e.trim().toLowerCase();if(t.endsWith("pt")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?xi(e):null}const a=Number.parseFloat(t);return Number.isFinite(a)?a:null}(null==(t=e.style)?void 0:t.height);return null!==a&&a>0?a:null}),I=u>0?u/C:14,k=[];for(let E=0;E<i.rows.length;E+=1){let e=0;for(const r of x){if(r.rowIndex!==E)continue;const t=r.contentNaturalHeightPx+r.padding.top+r.padding.bottom+r.borders.top.width+r.borders.bottom.width,a=r.rowSpan>1?t/r.rowSpan:t;a>e&&(e=a)}const t=S[E],a=null!==t?t:Math.max(1,.25*I);k[E]=Math.max(a,e,1)}const A=[];let T=0;for(let E=0;E<i.rows.length;E+=1)A[E]=T,T+=k[E]??14;const P=[];for(const E of x){const{rowIndex:e,cellIndex:t,cell:a,visualCol:r,colSpan:n,rowSpan:l,width:s,padding:d,borders:c,contentWidthPx:p}=E,u=g+(M[r]??0),f=h+(A[e]??0),m=Math.max(1,k.slice(e,e+l).reduce((e,t)=>e+t,0)),v=u+c.left.width+d.left,y=f+c.top.width+d.top,b=Math.max(1,m-c.top.width-c.bottom.width-d.top-d.bottom),w=a.blocks[0],x=Fe(w||{id:`table:${i.id}:r${e}:c${t}:empty`,runs:[{id:"run:empty",text:""}]},0);let C=0;const S=ki(a,b,E.contentNaturalHeightPx),I=[];for(const o of E.projectedParagraphs)I.push({paragraph:o.paragraph,lines:o.lines,originX:v,originY:y+S+C+o.spacingBefore,width:p,height:o.height}),C+=o.height;P.push({tableId:i.id,rowIndex:e,cellIndex:t,left:u,top:f,width:s,height:m,contentLeft:v,contentTop:y,contentWidth:p,contentHeight:b,shading:null==(o=a.style)?void 0:o.shading,anchorPosition:x,padding:d,borders:c,paragraphs:I})}return{tableId:i.id,left:g,top:h,width:f,height:k.reduce((e,t)=>e+t,0),rowHeights:k,cells:P,unsupported:Array.from(new Set(v))}}function Ti(e){const t=[];for(const a of e.lines)for(const r of a.fragments){if(!r.image)continue;const n=r.startOffset,o=r.endOffset>n?r.endOffset:n+1,i=a.slots.find(e=>e.offset===n)??a.slots.find(e=>e.offset>=n);i&&t.push({paragraphId:e.paragraphId,paragraphIndex:e.paragraphIndex,zone:e.zone,footnoteId:e.footnoteId,pageIndex:e.pageIndex,startOffset:n,endOffset:o,left:e.lineLeftOffset+i.left,top:e.lineTopOffset+a.top+a.height-r.image.height,width:r.image.width,height:r.image.height})}return t}function Pi(e){const{surface:t,state:a}=e,r=e.layoutMode??"wordParity",n=Mi(a.document,void 0,e.measuredBlockHeights,e.measuredParagraphLayouts,{layoutMode:r}),o=function(e){return Array.from(e.querySelectorAll('[data-renderer="canvas"][data-page-index]')).sort((e,t)=>Number(e.dataset.pageIndex??"0")-Number(t.dataset.pageIndex??"0"))}(t);if(0===n.pages.length||0===o.length)return null;const i=dt(a.document),l=new Map(i.map((e,t)=>[e.id,t])),s=t.getBoundingClientRect(),d=[],c=[],h=[],p=[];for(const f of n.pages){const e=o.find(e=>Number(e.dataset.pageIndex??"-1")===f.index)??null;if(!e)continue;const t=e.getBoundingClientRect(),n=f.bodyTop??at(f.pageSettings),i=f.bodyBottom??rt(f.pageSettings),s=f.headerTop??tt(f.pageSettings),u=f.footerTop??f.bodyBottom??rt(f.pageSettings),g={index:f.index,left:t.left,top:t.top,width:t.width,height:t.height,bodyTop:n,bodyBottom:i,footerTop:u,footnoteTop:f.footnoteTop,footnoteSeparatorTop:f.footnoteSeparatorTop};d.push(g);const m=t.left+f.pageSettings.margins.left+f.pageSettings.margins.gutter,v=$e(f.pageSettings),y=(e,t,n,o={})=>{var i;let s=n;const d=o.contentLeft??m,u=o.contentWidth??v;for(const g of t){const t=(null==(i=o.footnoteIdForBlock)?void 0:i.call(o,g))??o.footnoteId;if("paragraph"===g.sourceBlock.type&&g.layout){const r=g.sourceBlock,n=r.id,o=l.get(n)??0,i=Ke(r.style,a.document.styles),p=s+(0===g.layout.startOffset?i.spacingBefore??0:0);c.push({paragraph:r,paragraphId:n,paragraphIndex:o,zone:e,footnoteId:t,pageIndex:f.index,startOffset:g.layout.startOffset??0,endOffset:g.layout.endOffset??Ne(r).length,textLength:Ne(r).length,left:d,top:s,width:u,height:Math.max(0,g.estimatedHeight),lines:g.layout.lines.map(e=>({startOffset:e.startOffset,endOffset:e.endOffset,top:p+e.top,height:e.height,slots:e.slots.map(e=>({offset:e.offset,left:d+e.left,top:p+e.top,height:e.height}))}))}),h.push(...Ti({lines:g.layout.lines,paragraphId:n,paragraphIndex:o,zone:e,footnoteId:t,pageIndex:f.index,lineTopOffset:p,lineLeftOffset:d}))}else if("table"===g.sourceBlock.type){const n=Ai({table:g.tableSegment?rr(g.sourceBlock,g.tableSegment):g.sourceBlock,state:a,pageIndex:f.index,layoutMode:r,originX:d,originY:s,contentWidth:u,estimatedHeight:g.estimatedHeight});for(const a of n.unsupported)p.push({pageIndex:f.index,zone:e,footnoteId:t,left:n.left,top:n.top,width:n.width,height:n.height,reason:a});const o=g.tableSegment,i=o&&o.startRowIndex>0?o.repeatedHeaderRowCount:0,m=e=>o?e<i?e:o.startRowIndex+(e-i):e;for(const a of n.cells)for(const r of a.paragraphs){const n=r.paragraph.id,o=l.get(n)??0,i=Ne(r.paragraph).length;c.push({paragraph:r.paragraph,paragraphId:n,paragraphIndex:o,zone:e,footnoteId:t,pageIndex:f.index,startOffset:0,endOffset:i,textLength:i,left:r.originX,top:r.originY,width:r.width,height:r.height,lines:r.lines.map(e=>({startOffset:e.startOffset,endOffset:e.endOffset,top:r.originY+e.top,height:e.height,slots:e.slots.map(e=>({offset:e.offset,left:r.originX+e.left,top:r.originY+e.top,height:e.height}))})),tableCell:{tableId:a.tableId,rowIndex:m(a.rowIndex),cellIndex:a.cellIndex,left:a.left,top:a.top,width:a.width,height:a.height,anchorPosition:a.anchorPosition}}),h.push(...Ti({lines:r.lines,paragraphId:n,paragraphIndex:o,zone:e,footnoteId:t,pageIndex:f.index,lineTopOffset:r.originY,lineLeftOffset:r.originX}))}}s+=Math.max(0,g.estimatedHeight)+(o.blockGap??0)}};if(y("header",f.headerBlocks??[],t.top+s),y("main",f.blocks,t.top+n),f.footnoteBlocks&&void 0!==f.footnoteTop){const e=f.footnoteReferenceIds??[];y("footnote",f.footnoteBlocks,t.top+f.footnoteTop,{footnoteIdForBlock:t=>e.find(e=>t.blockId.startsWith(`${e}:`)),contentLeft:m+no,contentWidth:Math.max(24,v-no),blockGap:2})}y("footer",f.footerBlocks??[],t.top+u)}const u=new Map;for(const f of c){const e=u.get(f.paragraphId)??[];e.push(f),u.set(f.paragraphId,e)}for(const[f,g]of u.entries())g.sort((e,t)=>e.pageIndex!==t.pageIndex?e.pageIndex-t.pageIndex:e.startOffset!==t.startOffset?e.startOffset-t.startOffset:e.top-t.top),u.set(f,g);return{surfaceRect:s,pages:d,paragraphs:c,paragraphsById:u,inlineImages:h,unsupportedRegions:p}}function Ei(e,t){return e.paragraph.runs.map(e=>e.text).join("")[t]??""}function Li(e){return" "===e||"\t"===e||"\n"===e}function Oi(e,t,a){if(a.isCollapsed)return null;const r=t.get(e);return void 0===r||r<a.startIndex||r>a.endIndex?null:a.startIndex===a.endIndex?{start:a.startParagraphOffset,end:a.endParagraphOffset}:e===a.start.paragraphId?{start:a.startParagraphOffset,end:Number.POSITIVE_INFINITY}:e===a.end.paragraphId?{start:0,end:a.endParagraphOffset}:{start:0,end:Number.POSITIVE_INFINITY}}function Ri(e,t){var a,r,n,o;const i=St(t),l=[],s=e.surfaceRect,d=new Map(ct(t).map((e,t)=>[e.id,t]));let c=null;if(!i.isCollapsed&&i.startIndex===i.endIndex&&i.endParagraphOffset-i.startParagraphOffset===1){const t=e.inlineImages.find(e=>e.paragraphId===i.start.paragraphId&&e.startOffset===i.startParagraphOffset&&e.endOffset===i.endParagraphOffset);t&&(c={paragraphId:t.paragraphId,startOffset:t.startOffset,endOffset:t.endOffset,left:t.left-s.left,top:t.top-s.top,width:t.width,height:t.height})}const h=ht(t),p=yt(t.document,t.selection.anchor.paragraphId,h),u=yt(t.document,t.selection.focus.paragraphId,h);let f=!1;if(p&&u&&p.blockIndex===u.blockIndex&&p.zone===u.zone&&(p.rowIndex!==u.rowIndex||p.cellIndex!==u.cellIndex)){const o=ot(t.document)[h];let i;if(i="header"===p.zone?null==(a=null==o?void 0:o.header)?void 0:a[p.blockIndex]:"footer"===p.zone?null==(r=null==o?void 0:o.footer)?void 0:r[p.blockIndex]:null==(n=null==o?void 0:o.blocks)?void 0:n[p.blockIndex],i&&"table"===i.type){f=!0;const t=ar(i),a=t.find(e=>e.rowIndex===p.rowIndex&&e.cellIndex===p.cellIndex),r=t.find(e=>e.rowIndex===u.rowIndex&&e.cellIndex===u.cellIndex);if(a&&r){const n=Math.min(a.visualRowIndex,r.visualRowIndex),o=Math.max(a.visualRowIndex+a.rowSpan-1,r.visualRowIndex+r.rowSpan-1),d=Math.min(a.visualColumnIndex,r.visualColumnIndex),c=Math.max(a.visualColumnIndex+a.colSpan-1,r.visualColumnIndex+r.colSpan-1),h=new Set;for(const a of e.paragraphs)if(a.tableCell&&a.tableCell.tableId===i.id){const e=t.find(e=>e.rowIndex===a.tableCell.rowIndex&&e.cellIndex===a.tableCell.cellIndex);if(e){const t=e.visualRowIndex<=o&&e.visualRowIndex+e.rowSpan-1>=n,r=e.visualColumnIndex<=c&&e.visualColumnIndex+e.colSpan-1>=d;if(t&&r){const t=`${e.rowIndex}:${e.cellIndex}`;h.has(t)||(h.add(t),l.push({left:a.tableCell.left-s.left,top:a.tableCell.top-s.top,width:a.tableCell.width,height:a.tableCell.height}))}}}}}}if(!f&&!i.isCollapsed&&!c)for(const x of e.paragraphs){const e=Oi(x.paragraphId,d,i);if(!e)continue;const t=Math.max(e.start,x.startOffset),a=Math.min(e.end,x.endOffset);if(!(t>=a))for(const r of x.lines){let e=Math.max(t,r.startOffset),n=Math.min(a,r.endOffset);for(;e<n&&Li(Ei(x,e));)e+=1;for(;n>e&&Li(Ei(x,n-1));)n-=1;if(e>=n)continue;const o=r.slots.find(t=>t.offset===e),i=r.slots.find(e=>e.offset===n)??r.slots[r.slots.length-1];if(!o||!i)continue;const d=0===x.startOffset&&r.startOffset===x.startOffset&&r.top>x.top,c=d?x.top:r.top,h=d?r.top+r.height-x.top:r.height;l.push({left:o.left-s.left+1,top:c-s.top,width:Math.max(1,i.left-o.left+1-1),height:h})}}const g=t.selection.focus.paragraphId,m=e.paragraphsById.get(g)??[],v=null==(o=m[0])?void 0:o.paragraph,y=function(e,t){if(0===e.length)return null;const a=e.find(e=>t>=e.startOffset&&t<=e.endOffset)??e[e.length-1],r=a.lines.flatMap(e=>e.slots);if(0===r.length)return{left:a.left,top:a.top,height:Math.max(18,a.height)};let n=r[0],o=Math.abs(t-n.offset);for(const l of r){const e=Math.abs(t-l.offset);e<o&&(n=l,o=e)}const i=a.lines[0];return 0===a.startOffset&&void 0!==i&&t>=i.startOffset&&t<=i.endOffset&&n.top>a.top?{left:n.left,top:a.top,height:n.top+n.height-a.top}:{left:n.left,top:n.top,height:n.height}}(m,v?Be(v,t.selection.focus):t.selection.focus.offset),b=((null==y?void 0:y.left)??s.left)-s.left,M=((null==y?void 0:y.top)??s.top)-s.top,w=Math.max(18,(null==y?void 0:y.height)??28);return{selectionBoxes:l,inputBox:{left:b,top:M,height:w},caretBox:{left:b,top:M,height:w,visible:m.length>0&&!f},selectedImageBox:c}}function Hi(e,t){if(0===t.length)return e;const a={...e};for(const r of t)delete a[r];return a}function Ni(e){const[t,a]=M({}),[r,n]=M({}),[o,i]=M({left:0,top:0,height:28}),[l,s]=M([]),[d,c]=M(null),[h,p]=M({left:0,top:0,height:28,visible:!1}),[u,f]=M(null);let g=0;const m=(a="selection")=>{const n=e.surfaceRef();if(!n)return s([]),c(null),void p(e=>({...e,visible:!1}));const o=Pi({surface:n,state:e.state,measuredBlockHeights:t(),measuredParagraphLayouts:r(),layoutMode:e.layoutMode??"wordParity"});if(!o)return s([]),c(null),void p(e=>({...e,visible:!1}));const l=Ri(o,e.state);s(l.selectionBoxes),c(l.selectedImageBox),i(l.inputBox),p(l.caretBox)},v=(e="selection")=>{const t=++g;queueMicrotask(()=>{t===g&&m(e)})};x(()=>{e.state.selection.anchor.paragraphId,e.state.selection.anchor.runId,e.state.selection.anchor.offset,e.state.selection.focus.paragraphId,e.state.selection.focus.runId,e.state.selection.focus.offset,v("selection")}),x(()=>{var t;e.state.document,e.state.activeSectionIndex,e.state.activeZone,(null==(t=e.isImporting)?void 0:t.call(e))||v("content-change")}),x(()=>{const t=e.viewportRef();if(!t)return;const a=()=>{v("scroll")},r=()=>{v("resize")};t.addEventListener("scroll",a,{passive:!0}),window.addEventListener("resize",r),A(()=>{t.removeEventListener("scroll",a),window.removeEventListener("resize",r)})});return{measuredBlockHeights:t,measuredParagraphLayouts:r,inputBox:o,selectionBoxes:l,selectedImageBox:d,caretBox:h,preferredColumnX:u,setPreferredColumnX:f,clearPreferredColumn:()=>f(null),requestInputBoxSync:v,scheduleDeferredLayoutMeasurement:(e,t={})=>(t.paragraphIds&&t.paragraphIds.length>0&&n(e=>Hi(e,t.paragraphIds??[])),v(e),t.resolveWhenDone?Promise.resolve():null),stabilizeLayoutAfterImport:async()=>{a({}),n({}),await new Promise(e=>{var t;t=()=>e(),"undefined"!=typeof window&&"function"==typeof window.requestAnimationFrame?window.requestAnimationFrame(()=>t()):globalThis.setTimeout(t,16)}),v("import")},syncMeasuredLayoutMetrics:(e="content-change")=>(v(e),!1),syncInputBox:m,setMeasuredBlockHeights:a,setMeasuredParagraphLayouts:n,applyInvalidation:t=>{var r,o;if(!(null==(r=e.isImporting)?void 0:r.call(e))){if(t.dirtyAll||t.structureChanged)a({}),n({});else if(((null==(o=t.dirtyParagraphIds)?void 0:o.length)??0)>0){const e=t.dirtyParagraphIds??[];n(t=>Hi(t,e))}v("content-change")}},onCleanupHook:()=>{g+=1}}}const Di=Symbol("store-raw"),Fi=Symbol("store-node"),Bi=Symbol("store-has"),Vi=Symbol("store-self");function zi(e){let t=e[n];if(!t&&(Object.defineProperty(e,n,{value:t=new Proxy(e,ji)}),!Array.isArray(e))){const a=Object.keys(e),r=Object.getOwnPropertyDescriptors(e);for(let n=0,o=a.length;n<o;n++){const o=a[n];r[o].get&&Object.defineProperty(e,o,{enumerable:r[o].enumerable,get:r[o].get.bind(t)})}}return t}function _i(e){let t;return null!=e&&"object"==typeof e&&(e[n]||!(t=Object.getPrototypeOf(e))||t===Object.prototype||Array.isArray(e))}function Ui(e,t=new Set){let a,r,n,o;if(a=null!=e&&e[Di])return a;if(!_i(e)||t.has(e))return e;if(Array.isArray(e)){Object.isFrozen(e)?e=e.slice(0):t.add(e);for(let a=0,o=e.length;a<o;a++)n=e[a],(r=Ui(n,t))!==n&&(e[a]=r)}else{Object.isFrozen(e)?e=Object.assign({},e):t.add(e);const a=Object.keys(e),i=Object.getOwnPropertyDescriptors(e);for(let l=0,s=a.length;l<s;l++)o=a[l],i[o].get||(n=e[o],(r=Ui(n,t))!==n&&(e[o]=r))}return e}function qi(e,t){let a=e[t];return a||Object.defineProperty(e,t,{value:a=Object.create(null)}),a}function Gi(e,t,a){if(e[t])return e[t];const[r,n]=M(a,{equals:!1,internal:!0});return r.$=n,e[t]=r}function Wi(e){T()&&Gi(qi(e,Fi),Vi)()}const ji={get(e,t,a){if(t===Di)return e;if(t===n)return a;if(t===i)return Wi(e),a;const r=qi(e,Fi),o=r[t];let l=o?o():e[t];if(t===Fi||t===Bi||"__proto__"===t)return l;if(!o){const a=Object.getOwnPropertyDescriptor(e,t);!T()||"function"==typeof l&&!e.hasOwnProperty(t)||a&&a.get||(l=Gi(r,t,l)())}return _i(l)?zi(l):l},has:(e,t)=>t===Di||t===n||t===i||t===Fi||t===Bi||"__proto__"===t||(T()&&Gi(qi(e,Bi),t)(),t in e),set:()=>(console.warn("Cannot mutate a Store directly"),!0),deleteProperty:()=>(console.warn("Cannot mutate a Store directly"),!0),ownKeys:function(e){return Wi(e),Reflect.ownKeys(e)},getOwnPropertyDescriptor:function(e,t){const a=Reflect.getOwnPropertyDescriptor(e,t);return a&&!a.get&&a.configurable&&t!==n&&t!==Fi?(delete a.value,delete a.writable,a.get=()=>e[n][t],a):a}};function Xi(e,t,a,r=!1){if(!r&&e[t]===a)return;const n=e[t],o=e.length;void 0===a?(delete e[t],e[Bi]&&e[Bi][t]&&void 0!==n&&e[Bi][t].$()):(e[t]=a,e[Bi]&&e[Bi][t]&&void 0===n&&e[Bi][t].$());let i,l=qi(e,Fi);if((i=Gi(l,t,n))&&i.$(()=>a),Array.isArray(e)&&e.length!==o){for(let t=e.length;t<o;t++)(i=l[t])&&i.$();(i=Gi(l,"length",o))&&i.$(e.length)}(i=l[Vi])&&i.$()}function Zi(e,t){const a=Object.keys(t);for(let r=0;r<a.length;r+=1){const n=a[r];Xi(e,n,t[n])}}function Ki(e,t,a=[]){let r,n=e;if(t.length>1){r=t.shift();const o=typeof r,i=Array.isArray(e);if(Array.isArray(r)){for(let n=0;n<r.length;n++)Ki(e,[r[n]].concat(t),a);return}if(i&&"function"===o){for(let n=0;n<e.length;n++)r(e[n],n)&&Ki(e,[n].concat(t),a);return}if(i&&"object"===o){const{from:n=0,to:o=e.length-1,by:i=1}=r;for(let r=n;r<=o;r+=i)Ki(e,[r].concat(t),a);return}if(t.length>1)return void Ki(e[r],t,[r].concat(a));n=e[r],a=[r].concat(a)}let o=t[0];"function"==typeof o&&(o=o(n,a),o===n)||void 0===r&&null==o||(o=Ui(o),void 0===r||_i(n)&&_i(o)&&!Array.isArray(o)?Zi(n,o):Xi(e,r,o))}function Yi(...[e,t]){const a=Ui(e||{}),r=Array.isArray(a);if("object"!=typeof a&&"function"!=typeof a)throw new Error(`Unexpected type ${typeof a} received when initializing 'createStore'. Expected an object.`);const n=zi(a);return ne.registerGraph({value:a,name:t&&t.name}),[n,function(...e){D(()=>{r&&1===e.length?function(e,t){if("function"==typeof t&&(t=t(e)),t=Ui(t),Array.isArray(t)){if(e===t)return;let a=0,r=t.length;for(;a<r;a++){const r=t[a];e[a]!==r&&Xi(e,a,r)}Xi(e,"length",r)}else Zi(e,t)}(a,e[0]):Ki(a,e)},!1)}]}function Ji(e,t){let a=null;return(...r)=>{null!==a&&clearTimeout(a),a=setTimeout(()=>{a=null,e(...r)},t)}}const Qi="documents",$i="current-document";const el=new class{constructor(){a(this,"db",null)}async getDB(){return this.db||(this.db=await(e={name:"oasis-editor-db",version:1,onUpgrade:e=>{e.objectStoreNames.contains(Qi)||e.createObjectStore(Qi)}},new Promise((t,a)=>{const r=indexedDB.open(e.name,e.version);r.onerror=()=>{var e;a(new Error(`Failed to open IndexedDB: ${null==(e=r.error)?void 0:e.message}`))},r.onsuccess=()=>{t(r.result)},r.onupgradeneeded=t=>{const a=r.result;e.onUpgrade(a,t.oldVersion,t.newVersion)}}))),this.db;var e}async saveDocument(e){const t=await this.getDB();await function(e,t,a,r){return new Promise((n,o)=>{try{const i=e.transaction([t],"readwrite").objectStore(t).put(r,a);i.onerror=()=>{var e;o(new Error(`Failed to put item in ${t}: ${null==(e=i.error)?void 0:e.message}`))},i.onsuccess=()=>{n()}}catch(i){o(i)}})}(t,Qi,$i,e)}async loadDocument(){const e=await this.getDB();return await function(e,t,a){return new Promise((r,n)=>{try{const o=e.transaction([t],"readonly").objectStore(t).get(a);o.onerror=()=>{var e;n(new Error(`Failed to get item from ${t}: ${null==(e=o.error)?void 0:e.message}`))},o.onsuccess=()=>{r(o.result??null)}}catch(o){n(o)}})}(e,Qi,$i)}async clearDocument(){const e=await this.getDB();await function(e,t,a){return new Promise((r,n)=>{try{const o=e.transaction([t],"readwrite").objectStore(t).delete(a);o.onerror=()=>{var e;n(new Error(`Failed to delete item from ${t}: ${null==(e=o.error)?void 0:e.message}`))},o.onsuccess=()=>{r()}}catch(o){n(o)}})}(e,Qi,$i)}close(){this.db&&(this.db.close(),this.db=null)}};function tl(e){const[t,a]=M(""),[r,n]=M(""),[o,i]=M({matchCase:!1,wholeWord:!1}),[l,s]=M([]),[d,c]=M(-1),[h,p]=M(!1);x(I([()=>e.state.document,t,o],([e,t,a])=>{const r=function(e,t,a={}){if(!t)return[];const r=[],n=dt(e),{matchCase:o=!1,wholeWord:i=!1}=a,l=o?"g":"gi";let s=t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");i&&(s=`\\b${s}\\b`);const d=new RegExp(s,l);return n.forEach((e,t)=>{const a=Ne(e);let n;for(d.lastIndex=0;null!==(n=d.exec(a));){const a=n.index,o=n.index+n[0].length;r.push({anchor:Fe(e,a),focus:Fe(e,o),paragraphIndex:t}),n.index===d.lastIndex&&d.lastIndex++}}),r}(e,t,a);s(r),0===r.length?c(-1):(d()>=r.length||-1===d())&&c(0)}));const u=t=>{const a=l()[t];a&&e.applyState(Jt(e.state,{anchor:a.anchor,focus:a.focus}))};return{searchTerm:t,setSearchTerm:a,replaceTerm:r,setReplaceTerm:n,findOptions:o,setFindOptions:i,matches:l,currentIndex:d,findNext:()=>{const e=l().length;if(0===e)return;const t=(d()+1)%e;c(t),u(t)},findPrevious:()=>{const e=l().length;if(0===e)return;const t=(d()-1+e)%e;c(t),u(t)},replace:()=>{if(0===l().length||-1===d())return;const t=l()[d()];e.applyTransactionalState(e=>Wa(Jt(e,{anchor:t.anchor,focus:t.focus}),r()),{mergeKey:"findReplace"})},replaceAll:()=>{const t=l();0!==t.length&&(e.applyTransactionalState(e=>{let a=e;for(let n=t.length-1;n>=0;n--){const e=t[n];a=Jt(a,{anchor:e.anchor,focus:e.focus}),a=Wa(a,r())}return a},{mergeKey:"findReplaceAll"}),p(!1),e.focusInput())},isOpen:h,setIsOpen:p}}const al=e=>e.cells.reduce((e,t)=>e+Math.max(1,t.colSpan??1),0),rl=e=>e.rows.reduce((e,t)=>Math.max(e,al(t)),0),nl=(e,t)=>{let a=0;for(const r of e.cells){const e=Math.max(1,r.colSpan??1);if(t>=a&&t<a+e)return r;a+=e}return null},ol=e=>{for(const t of e.rows)for(const e of t.cells){if("continue"===e.vMerge)continue;const t=e.blocks[0];if(t)return t}return null},il=(e,t,a)=>{const r=ot(e);for(const n of r){const e=[...n.header||[],...n.blocks,...n.footer||[]];for(const r of e){if("table"!==r.type)continue;const e=r.rows.flatMap(e=>e.cells.filter(e=>"continue"!==e.vMerge&&e.blocks.length>0)),n=e.findIndex(e=>e.blocks.some(e=>e.id===t));if(-1===n)continue;const o=e[n+a],i=null==o?void 0:o.blocks[0];return i?Fe(i,0):null}}return null},ll=(e,t,a="main")=>{const r=ht(e),n=nt(e.document),o=Math.max(0,Math.min(r,n.length-1)),i=n[o];if(!i)return e;const l=[...n];return l[o]="header"===a?{...i,header:t}:"footer"===a?{...i,footer:t}:{...i,blocks:t},{...e,document:{...e.document,sections:l}}};function sl(e,t){return e.visualRowIndex!==t.visualRowIndex?e.visualRowIndex-t.visualRowIndex:e.visualColumnIndex!==t.visualColumnIndex?e.visualColumnIndex-t.visualColumnIndex:0}function dl(e,t){const a=e.selection,r=ht(e),n=yt(e.document,a.anchor.paragraphId,r),o=yt(e.document,a.focus.paragraphId,r);if(!n||!o||n.blockIndex!==o.blockIndex||n.zone!==o.zone)return null;const i=t.getTargetBlocks(e,n.zone)[n.blockIndex];if(!i||"table"!==i.type)return null;const l=ar(i),s=l.find(e=>e.rowIndex===n.rowIndex&&e.cellIndex===n.cellIndex),d=l.find(e=>e.rowIndex===o.rowIndex&&e.cellIndex===o.cellIndex);return s&&d?{anchorLocation:n,focusLocation:o,anchorCell:s,focusCell:d,tableBlock:i,tableLayout:l}:null}function cl(e){const t=(e,t)=>{const a=nt(e.document),r=ht(e),n=a[Math.max(0,Math.min(r,a.length-1))];return n?"header"===t?n.header||[]:"footer"===t?n.footer||[]:n.blocks:[]},{resolveTableCellRangeSelection:a,resolveSelectedTableCells:r,resolveHorizontalTableCellRange:n,resolveVerticalTableCellRange:o}=function(e){return{resolveTableCellRangeSelection:t=>{var a,r,n,o,i;const l=t.selection,s=dl(t,e);if(!s||s.anchorLocation.rowIndex===s.focusLocation.rowIndex&&s.anchorLocation.cellIndex===s.focusLocation.cellIndex)return null==(a=e.logger)||a.debug(`resolveTableCellRangeSelection: no expansion (anchor=${l.anchor.paragraphId} focus=${l.focus.paragraphId})`),null;const d=Math.min(s.anchorLocation.rowIndex,s.focusLocation.rowIndex),c=Math.max(s.anchorLocation.rowIndex,s.focusLocation.rowIndex),h=Math.min(s.anchorLocation.cellIndex,s.focusLocation.cellIndex),p=Math.max(s.anchorLocation.cellIndex,s.focusLocation.cellIndex);null==(r=e.logger)||r.info(`resolveTableCellRangeSelection: expanding r${s.anchorLocation.rowIndex}:c${s.anchorLocation.cellIndex}->r${s.focusLocation.rowIndex}:c${s.focusLocation.cellIndex} (anchor=${l.anchor.paragraphId} focus=${l.focus.paragraphId}) range=[rows ${d}..${c}, cells ${h}..${p}]`);const u=sl(s.anchorCell,s.focusCell)<=0?s.anchorLocation:s.focusLocation,f=sl(s.anchorCell,s.focusCell)<=0?s.focusLocation:s.anchorLocation,g=null==(o=null==(n=s.tableBlock.rows[u.rowIndex])?void 0:n.cells[u.cellIndex])?void 0:o.blocks[0],m=null==(i=s.tableBlock.rows[f.rowIndex])?void 0:i.cells[f.cellIndex],v=null==m?void 0:m.blocks[m.blocks.length-1];return g&&v?{anchor:Fe(g,0),focus:Fe(v,Ne(v).length)}:null},resolveSelectedTableCells:t=>{const a=dl(t,e);if(!a)return null;const r=Math.min(a.anchorCell.visualRowIndex,a.focusCell.visualRowIndex),n=Math.max(a.anchorCell.visualRowIndex+a.anchorCell.rowSpan-1,a.focusCell.visualRowIndex+a.focusCell.rowSpan-1),o=Math.min(a.anchorCell.visualColumnIndex,a.focusCell.visualColumnIndex),i=Math.max(a.anchorCell.visualColumnIndex+a.anchorCell.colSpan-1,a.focusCell.visualColumnIndex+a.focusCell.colSpan-1),l=a.tableLayout.filter(e=>e.visualRowIndex<=n&&e.visualRowIndex+e.rowSpan-1>=r&&e.visualColumnIndex<=i&&e.visualColumnIndex+e.colSpan-1>=o);return{blockIndex:a.anchorLocation.blockIndex,cells:l,zone:a.anchorLocation.zone}},resolveHorizontalTableCellRange:t=>{const a=dl(t,e);if(!a||a.anchorCell.visualRowIndex!==a.focusCell.visualRowIndex)return null;const r=sl(a.anchorCell,a.focusCell);if(0===r)return null;const n=r<=0?a.anchorLocation:a.focusLocation,o=r<=0?a.focusLocation:a.anchorLocation;return{blockIndex:a.anchorLocation.blockIndex,rowIndex:n.rowIndex,startCellIndex:n.cellIndex,endCellIndex:o.cellIndex,zone:a.anchorLocation.zone}},resolveVerticalTableCellRange:t=>{const a=dl(t,e);if(!a||a.anchorLocation.cellIndex!==a.focusLocation.cellIndex)return null;const r=Math.min(a.anchorCell.visualRowIndex,a.focusCell.visualRowIndex),n=Math.max(a.anchorCell.visualRowIndex,a.focusCell.visualRowIndex);return r===n?null:{blockIndex:a.anchorLocation.blockIndex,startRowIndex:r,endRowIndex:n,cellIndex:a.anchorLocation.cellIndex,zone:a.anchorLocation.zone}}}}({getTargetBlocks:t,logger:e.logger}),{canMergeSelectedTableCells:i,canSplitSelectedTableCell:l,canMergeSelectedTableRows:s,canMergeSelectedTable:d,canSplitSelectedTableCellVertically:c,canSplitSelectedTable:h,canEditSelectedTableRow:p,canEditSelectedTableColumn:u}=function(e){const t=t=>{const a=e.resolveHorizontalTableCellRange(t);return Boolean(a&&a.endCellIndex>a.startCellIndex)},a=t=>{var a;const r=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!r)return!1;const n=e.getTargetBlocks(t,r.zone)[r.blockIndex];if(!n||"table"!==n.type)return!1;const o=null==(a=n.rows[r.rowIndex])?void 0:a.cells[r.cellIndex];return Boolean(((null==o?void 0:o.colSpan)??1)>1)},r=t=>{var a;const r=e.resolveVerticalTableCellRange(t);if(!r)return!1;const n=e.getTargetBlocks(t,r.zone)[r.blockIndex];if(!n||"table"!==n.type)return!1;for(let e=r.startRowIndex;e<=r.endRowIndex;e+=1){const t=null==(a=n.rows[e])?void 0:a.cells[r.cellIndex];if(!t||"continue"===t.vMerge||1!==t.blocks.length)return!1}return!0},n=t=>{var a;const r=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!r)return!1;const n=e.getTargetBlocks(t,r.zone)[r.blockIndex];if(!n||"table"!==n.type)return!1;const o=null==(a=n.rows[r.rowIndex])?void 0:a.cells[r.cellIndex];return Boolean(((null==o?void 0:o.rowSpan)??1)>1&&"restart"===(null==o?void 0:o.vMerge))};return{canMergeSelectedTableCells:t,canSplitSelectedTableCell:a,canMergeSelectedTableRows:r,canMergeSelectedTable:e=>t(e)||r(e),canSplitSelectedTableCellVertically:n,canSplitSelectedTable:e=>a(e)||n(e),canEditSelectedTableRow:t=>{const a=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!a)return!1;const r=e.getTargetBlocks(t,a.zone)[a.blockIndex];return Boolean(r&&"table"===r.type)},canEditSelectedTableColumn:t=>{const a=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!a)return!1;const r=e.getTargetBlocks(t,a.zone)[a.blockIndex];return!(!r||"table"!==r.type)&&rl(r)>1}}}({getTargetBlocks:t,resolveHorizontalTableCellRange:n,resolveVerticalTableCellRange:o}),{mergeSelectedTableCells:f,mergeSelectedTableRows:g,mergeSelectedTable:m,splitSelectedTableCellVertically:v,splitSelectedTableCell:y,splitSelectedTable:b}=function(e){const t=t=>{const a=e.resolveHorizontalTableCellRange(t);if(!a)return t;const r=e.getTargetBlocks(t,a.zone).map(zr),n=r[a.blockIndex];if(!n||"table"!==n.type)return t;const o=n.rows[a.rowIndex];if(!o)return t;const i=o.cells.slice(a.startCellIndex,a.endCellIndex+1);if(i.length<2)return t;const l={...i[0],colSpan:i.reduce((e,t)=>e+Math.max(1,t.colSpan??1),0),blocks:i.flatMap(e=>e.blocks.map(e=>zr(e)))};o.cells.splice(a.startCellIndex,i.length,l);const s=l.blocks[0];return s?{...ll(t,r,a.zone),selection:{anchor:Fe(s,0),focus:Fe(s,0)}}:t},a=t=>{const a=e.resolveVerticalTableCellRange(t);if(!a)return t;const r=e.getTargetBlocks(t,a.zone).map(zr),n=r[a.blockIndex];if(!n||"table"!==n.type)return t;const o=[];for(let e=a.startRowIndex;e<=a.endRowIndex;e+=1){const r=n.rows[e],i=null==r?void 0:r.cells[a.cellIndex];if(!r||!i||"continue"===i.vMerge||1!==i.blocks.length)return t;o.push(i)}if(o.length<2)return t;const i=Math.max(1,o[0].colSpan??1);if(!o.every(e=>Math.max(1,e.colSpan??1)===i))return t;const l={...o[0],rowSpan:o.length,vMerge:"restart",blocks:o.flatMap(e=>e.blocks.map(e=>zr(e)))};n.rows[a.startRowIndex].cells[a.cellIndex]=l;for(let e=a.startRowIndex+1;e<=a.endRowIndex;e+=1){const t=Dt([Ht("")],i);t.blocks=[],t.vMerge="continue",n.rows[e].cells[a.cellIndex]=t}const s=l.blocks[0];return s?{...ll(t,r,a.zone),selection:{anchor:Fe(s,0),focus:Fe(s,0)}}:t},r=t=>{var a;const r=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!r)return t;const n=e.getTargetBlocks(t,r.zone).map(zr),o=n[r.blockIndex];if(!o||"table"!==o.type)return t;const i=null==(a=o.rows[r.rowIndex])?void 0:a.cells[r.cellIndex],l=Math.max(1,(null==i?void 0:i.rowSpan)??1);if(!i||l<=1||"restart"!==i.vMerge)return t;i.rowSpan=void 0,i.vMerge=void 0;const s=Math.max(1,i.colSpan??1);for(let e=1;e<l;e+=1){const t=o.rows[r.rowIndex+e];if(!t)break;const a=Dt([Ht("")],s);t.cells[r.cellIndex]=a}const d=i.blocks[0];return d?{...ll(t,n,r.zone),selection:{anchor:Fe(d,0),focus:Fe(d,0)}}:t},n=t=>{var a;const r=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!r)return t;const n=e.getTargetBlocks(t,r.zone).map(zr),o=n[r.blockIndex];if(!o||"table"!==o.type)return t;const i=o.rows[r.rowIndex],l=null==i?void 0:i.cells[r.cellIndex],s=Math.max(1,(null==l?void 0:l.colSpan)??1);if(!i||!l||s<=1)return t;const d=[{...l,colSpan:1,blocks:l.blocks.map(e=>zr(e))},...Array.from({length:s-1},()=>Dt([Ht("")]))];i.cells.splice(r.cellIndex,1,...d);const c=null==(a=d[0])?void 0:a.blocks[0];return c?{...ll(t,n,r.zone),selection:{anchor:Fe(c,0),focus:Fe(c,0)}}:t};return{mergeSelectedTableCells:t,mergeSelectedTableRows:a,mergeSelectedTable:r=>e.canMergeSelectedTableCells(r)?t(r):e.canMergeSelectedTableRows(r)?a(r):r,splitSelectedTableCellVertically:r,splitSelectedTableCell:n,splitSelectedTable:t=>e.canSplitSelectedTableCellVertically(t)?r(t):e.canSplitSelectedTableCell(t)?n(t):t}}({getTargetBlocks:t,resolveHorizontalTableCellRange:n,resolveVerticalTableCellRange:o,canMergeSelectedTableCells:i,canMergeSelectedTableRows:s,canSplitSelectedTableCell:l,canSplitSelectedTableCellVertically:c}),{insertSelectedTableRow:M,deleteSelectedTableRow:w,insertSelectedTableColumn:x,deleteSelectedTableColumn:C}=function(e){return{insertSelectedTableRow:(t,a)=>{var r,n;const o=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!o)return t;const i=e.getTargetBlocks(t,o.zone).map(zr),l=i[o.blockIndex];if(!l||"table"!==l.type)return t;const s=l.rows[o.rowIndex];if(!s)return t;const d=Math.max(0,Math.min(l.rows.length,o.rowIndex+(a>0?1:0)));let c;if(l.rows.some(e=>e.cells.some(e=>Math.max(1,e.rowSpan??1)>1||void 0!==e.vMerge))){const e=ar(l),a=e.find(e=>e.rowIndex===o.rowIndex&&e.cellIndex===o.cellIndex),n=e.filter(e=>e.rowIndex===o.rowIndex);c=Ft((n.length>0?n:e.filter(e=>e.rowIndex===Math.max(0,o.rowIndex-1))).map(t=>{const a=e.find(e=>e.visualColumnIndex===t.visualColumnIndex&&e.visualRowIndex<d&&e.visualRowIndex+e.rowSpan>d);if(a){a.cell.rowSpan=Math.max(1,a.cell.rowSpan??1)+1,a.cell.vMerge="restart";const e=Dt([Ht("")],t.colSpan);return e.blocks=[],e.vMerge="continue",e}return Dt([Ht("")],t.colSpan)})),l.rows.splice(d,0,c);const s=(null==a?void 0:a.visualColumnIndex)??o.cellIndex,h=nl(c,s),p=(null==h?void 0:h.blocks[0])??(null==(r=c.cells.find(e=>"continue"!==e.vMerge&&e.blocks[0]))?void 0:r.blocks[0])??ol(l);return p?{...ll(t,i,o.zone),selection:{anchor:Fe(p,0),focus:Fe(p,0)}}:ll(t,i,o.zone)}c=Ft(s.cells.map(e=>Dt([Ht("")],Math.max(1,e.colSpan??1)))),l.rows.splice(d,0,c);const h=c.cells[Math.min(o.cellIndex,c.cells.length-1)],p=(null==h?void 0:h.blocks[0])??(null==(n=c.cells.find(e=>"continue"!==e.vMerge&&e.blocks[0]))?void 0:n.blocks[0])??ol(l);return p?{...ll(t,i,o.zone),selection:{anchor:Fe(p,0),focus:Fe(p,0)}}:ll(t,i,o.zone)},deleteSelectedTableRow:t=>{const a=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!a)return t;const r=e.getTargetBlocks(t,a.zone).map(zr),n=r[a.blockIndex];if(!n||"table"!==n.type)return t;if(n.rows.length<=1)return t;const o=n.rows[a.rowIndex];if(!o)return t;if(o.cells.some(e=>"continue"!==e.vMerge&&Math.max(1,e.rowSpan??1)>1))return t;const i=n.rows.some(e=>e.cells.some(e=>Math.max(1,e.rowSpan??1)>1||void 0!==e.vMerge)),l=i?ar(n).find(e=>e.rowIndex===a.rowIndex&&e.cellIndex===a.cellIndex):null;if(i){const e=ar(n);for(const t of e)t.visualRowIndex<a.rowIndex&&t.visualRowIndex+t.rowSpan>a.rowIndex&&(t.cell.rowSpan=Math.max(1,t.cell.rowSpan??1)-1,t.cell.rowSpan<=1?(t.cell.rowSpan=void 0,t.cell.vMerge=void 0):t.cell.vMerge="restart")}n.rows.splice(a.rowIndex,1);const s=n.rows[Math.min(a.rowIndex,n.rows.length-1)],d=s?nl(s,Math.min((null==l?void 0:l.visualColumnIndex)??a.cellIndex,Math.max(0,al(s)-1))):null,c=(null==d?void 0:d.blocks[0])??ol(n);return c?{...ll(t,r,a.zone),selection:{anchor:Fe(c,0),focus:Fe(c,0)}}:ll(t,r,a.zone)},insertSelectedTableColumn:(t,a)=>{var r;const n=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!n)return t;const o=e.getTargetBlocks(t,n.zone).map(zr),i=o[n.blockIndex];if(!i||"table"!==i.type)return t;if(i.rows.some(e=>e.cells.some(e=>Math.max(1,e.colSpan??1)>1))){const e=ar(i).find(e=>e.rowIndex===n.rowIndex&&e.cellIndex===n.cellIndex),r=((null==e?void 0:e.visualColumnIndex)??n.cellIndex)+(a>0?Math.max(1,(null==e?void 0:e.colSpan)??1):0);for(const t of i.rows){const e=[];let a=0,n=!1;for(const o of t.cells){const t=Math.max(1,o.colSpan??1);!n&&r<=a&&(e.push(Dt([Ht("")])),n=!0),!n&&a<r&&r<a+t?(e.push({...o,colSpan:t+1}),n=!0):e.push(o),a+=t}n||e.push(Dt([Ht("")])),t.cells=e}const l=i.rows[n.rowIndex],s=l?nl(l,r):null,d=(null==s?void 0:s.blocks[0])??ol(i);return d?{...ll(t,o,n.zone),selection:{anchor:Fe(d,0),focus:Fe(d,0)}}:ll(t,o,n.zone)}const l=Math.max(0,Math.min((null==(r=i.rows[0])?void 0:r.cells.length)??0,n.cellIndex+(a>0?1:0)));for(const e of i.rows)e.cells.splice(l,0,Dt([Ht("")]));const s=i.rows[n.rowIndex],d=null==s?void 0:s.cells[l],c=(null==d?void 0:d.blocks[0])??ol(i);return c?{...ll(t,o,n.zone),selection:{anchor:Fe(c,0),focus:Fe(c,0)}}:ll(t,o,n.zone)},deleteSelectedTableColumn:t=>{var a;const r=yt(t.document,t.selection.focus.paragraphId,ht(t));if(!r)return t;const n=e.getTargetBlocks(t,r.zone).map(zr),o=n[r.blockIndex];if(!o||"table"!==o.type)return t;if(rl(o)<=1)return t;if(o.rows.some(e=>e.cells.some(e=>Math.max(1,e.colSpan??1)>1))){const e=ar(o).find(e=>e.rowIndex===r.rowIndex&&e.cellIndex===r.cellIndex),a=(null==e?void 0:e.visualColumnIndex)??r.cellIndex;for(const t of o.rows){const e=[];let r=0;for(const n of t.cells){const t=Math.max(1,n.colSpan??1);a>=r&&a<r+t?t>1&&e.push({...n,colSpan:t-1>1?t-1:void 0}):e.push(n),r+=t}t.cells=e}const i=o.rows[r.rowIndex],l=i&&nl(i,Math.min(a,Math.max(0,al(i)-1))),s=(null==l?void 0:l.blocks[0])??ol(o);return s?{...ll(t,n,r.zone),selection:{anchor:Fe(s,0),focus:Fe(s,0)}}:ll(t,n,r.zone)}if((null==(a=o.rows[0])?void 0:a.cells.length)<=1)return t;for(const e of o.rows)e.cells.splice(r.cellIndex,1);const i=o.rows[r.rowIndex],l=null==i?void 0:i.cells[Math.min(r.cellIndex,i.cells.length-1)],s=(null==l?void 0:l.blocks[0])??ol(o);return s?{...ll(t,n,r.zone),selection:{anchor:Fe(s,0),focus:Fe(s,0)}}:ll(t,n,r.zone)}}}({getTargetBlocks:t}),{withExpandedTableCellSelection:S,applySelectionAwareTextCommand:I,applySelectionAwareParagraphCommand:k}=function(e){const t=t=>{const a=e.resolveTableCellRangeSelection(t);return a?e.applySelectionToStatePreservingStructure(t,a):t},a=(a,r)=>{e.applyTransactionalState(n=>{var o,i,l;const s=e.resolveSelectedTableCells(n);if(!s||s.cells.length<=1){const i=t(n);return i!==n&&(null==(o=e.logger)||o.info(`${r}: expanded selection to ${i.selection.anchor.paragraphId}[${i.selection.anchor.offset}]..${i.selection.focus.paragraphId}[${i.selection.focus.offset}]`)),a(i)}const{blockIndex:d,cells:c,zone:h}=s;null==(i=e.logger)||i.info(`${r}: multi-cell selection in table block ${d} (${c.length} cells) in zone ${h}`);const p=[],u=[];for(const e of c)p.push(...e.cell.blocks),u.push(e.cell.blocks.length);if(0===p.length)return n;const f={...n,document:Ut(p,void 0,void 0,void 0,void 0,n.document.assets),selection:{anchor:Fe(p[0],0),focus:Fe(p[p.length-1],Ne(p[p.length-1]).length)}},g=ct(a(f)),m=e.getTargetBlocks(n,h).map(zr),v=m[d];if(!v)return n;let y=0;for(let e=0;e<c.length;e+=1){const t=c[e],a=u[e],r=g.slice(y,y+a);y+=a;const n=null==(l=v.rows[t.rowIndex])?void 0:l.cells[t.cellIndex];n&&(n.blocks=r)}return ll(n,m,h)})};return{withExpandedTableCellSelection:t,applySelectionAwareTextCommand:e=>{a(e,"applySelectionAwareTextCommand")},applySelectionAwareParagraphCommand:e=>{a(e,"applySelectionAwareParagraphCommand")}}}({applyTransactionalState:e.applyTransactionalState,applySelectionToStatePreservingStructure:e.applySelectionToStatePreservingStructure,getTargetBlocks:t,resolveTableCellRangeSelection:a,resolveSelectedTableCells:r,logger:e.logger});return{resolveTableCellRangeSelection:a,resolveHorizontalTableCellRange:n,resolveVerticalTableCellRange:o,canMergeSelectedTableCells:i,canSplitSelectedTableCell:l,canMergeSelectedTableRows:s,canMergeSelectedTable:d,canSplitSelectedTableCellVertically:c,canSplitSelectedTable:h,canEditSelectedTableRow:p,canEditSelectedTableColumn:u,mergeSelectedTableCells:f,mergeSelectedTableRows:g,mergeSelectedTable:m,splitSelectedTableCellVertically:v,splitSelectedTableCell:y,splitSelectedTable:b,insertSelectedTableRow:M,deleteSelectedTableRow:w,insertSelectedTableColumn:x,deleteSelectedTableColumn:C,getRowVisualWidth:al,getTableVisualWidth:rl,findCellAtVisualColumn:nl,findFirstNavigableParagraphInTable:ol,updateBlocksInCurrentSection:ll,resolveAdjacentTableCellPosition:il,applyTableAwareParagraphEdit:(e,a)=>((e,t,a)=>{var r;const n=yt(e.document,e.selection.focus.paragraphId,ht(e));if(!n||e.selection.anchor.paragraphId!==e.selection.focus.paragraphId)return a(e);const o=n.zone,i=t(e,o).map(zr),l=i[n.blockIndex];if(!l||"table"!==l.type)return a(e);const s=null==(r=l.rows[n.rowIndex])?void 0:r.cells[n.cellIndex];if(!s)return a(e);const d=a({...e,document:Ut(s.blocks,void 0,void 0,void 0,void 0,e.document.assets),selection:{anchor:{...e.selection.anchor},focus:{...e.selection.focus}}}),c=dt(d.document).filter(e=>"paragraph"===e.type);return s.blocks.splice(0,s.blocks.length,...c),{...ll(e,i,o),selection:d.selection}})(e,t,a),withExpandedTableCellSelection:S,applySelectionAwareTextCommand:I,applySelectionAwareParagraphCommand:k,insertTableCommand:(t,a)=>{var r;null==(r=e.logger)||r.info(`insertTableCommand: ${t}x${a}`),e.applyTransactionalState(e=>function(e,t,a){const r=100/Math.max(1,a)+"%",n=[];for(let g=0;g<t;g+=1){const e=[];for(let t=0;t<a;t+=1)e.push({...Dt([Ht("")]),style:{width:r}});n.push(Ft(e))}const o={...Bt(n),style:{width:"100%"}},i=Mt(e,e.selection.focus),l=ot(e.document),s=ht(e),d=pt(e),c=e=>{const t=e.findIndex(e=>e.id===i.paragraphId||"paragraph"!==e.type&&lt(e).some(e=>e.id===i.paragraphId));return-1===t?{nextBlocks:e,found:!1}:{nextBlocks:[...e.slice(0,t+1),o,...e.slice(t+1)],found:!0}},h=l[s];if(!h)return e;const p={...h};let u=!1;if("header"===d){const e=c(h.header??[]);p.header=e.nextBlocks,u=e.found}else if("footer"===d){const e=c(h.footer??[]);p.footer=e.nextBlocks,u=e.found}else{const e=c(h.blocks);p.blocks=e.nextBlocks,u=e.found}if(!u)return e;const f=[...l];return f[s]=p,{...e,document:{...e.document,sections:f},selection:ya(Fe(o.rows[0].cells[0].blocks[0],0))}}(e,t,a),{mergeKey:"insertTable"}),e.focusInput()}}}function hl(e,t,a,r=0){const n=$e(Qe(t));if(!a)return n;const o=Jo(t,a,r);return null!==o&&Number.isFinite(o)&&o>0?Math.min(n,o):n}function pl(e){const[t,a]=M(!1),[r,n]=M(null),[o,i]=M({x:0,y:0}),[l,s]=M(null);let d=null,c=null,h=null,p=null;const u=(e,t,a)=>{const r=Math.max(t,e);return void 0===a?r:Math.min(a,r)},f=(e,t)=>"x"===t?e.includes("e")?1:e.includes("w")?-1:0:e.includes("s")?1:e.includes("n")?-1:0,g=e=>{const t=St(e);if(t.isCollapsed||t.startIndex!==t.endIndex||t.endParagraphOffset-t.startParagraphOffset!==1)return null;const a=ct(e)[t.startIndex];if(!a)return null;let r=0;for(const n of a.runs){const o=r;if(r+=n.text.length,n.image&&1===n.text.length&&o===t.startParagraphOffset)return{paragraph:a,run:n,startOffset:o,width:n.image.width,height:n.image.height,src:ze(e.document,n.image.src)}}return null},m=(t,a)=>e.resolvePositionAtSurfacePoint(t,a),v=()=>{p&&(p.remove(),p=null),document.body.style.cursor="",h=null,d=null,a(!1),n(null),s(null),window.removeEventListener("mousemove",b),window.removeEventListener("mouseup",w)},y=()=>{c=null,window.removeEventListener("mousemove",x),window.removeEventListener("mouseup",C)},b=t=>{let r=d;if(!r){const n=h;if(!n)return;if(Math.abs(t.clientX-n.startClientX)+Math.abs(t.clientY-n.startClientY)<4)return;r={paragraphId:n.paragraphId,paragraphOffset:n.paragraphOffset,src:n.src,width:n.width,height:n.height,offsetX:n.offsetX,offsetY:n.offsetY},d=r,h=null,a(!0),p||(p=document.createElement("style"),p.setAttribute("data-oasis-image-drag-cursor",""),p.textContent="*, *::before, *::after { cursor: grabbing !important; }",document.head.appendChild(p)),e.logger.info(`image drag:start ${r.paragraphId}@${r.paragraphOffset} client=(${t.clientX},${t.clientY})`)}i({x:t.clientX,y:t.clientY}),n({...r}),s(m(t.clientX,t.clientY))},w=t=>{const a=d;if(a||h){if(a){const r=m(t.clientX,t.clientY);r?(e.logger.info(`image drag:done ${a.paragraphId} -> ${r.paragraphId}:${r.runId}[${r.offset}]`),e.applyTransactionalState(e=>za(e,r),{mergeKey:"moveImage"})):e.logger.warn(`image drag:cancel ${a.paragraphId} no target at (${t.clientX},${t.clientY})`)}v(),e.focusInput()}else e.focusInput()},x=t=>{const a=c;if(!a)return;const r=t.clientX-a.startClientX,n=t.clientY-a.startClientY,o=hl(e.surfaceRef(),e.state.document,a.paragraphId,e.state.activeSectionIndex??0),{width:i,height:l}=((e,t,a,r,n)=>{const o=f(e.handleDirection,"x"),i=f(e.handleDirection,"y"),l=0===o?e.startWidth:e.startWidth+t*o,s=0===i?e.startHeight:e.startHeight+a*i;let d=u(l,24,n),c=u(s,24);if(!r)return{width:d,height:c};const h=e.aspectRatio||1,p=0!==o;if(p&&0!==i){const t=d/e.startWidth,a=c/e.startHeight,r=Math.abs(t-1)>=Math.abs(a-1)?t:a;return d=u(e.startWidth*r,24,n),c=u(d/h,24),{width:d,height:c}}return p?(d=u(d,24,n),c=u(d/h,24),{width:d,height:c}):(c=u(c,24),d=u(c*h,24,n),c=u(d/h,24),{width:d,height:c})})(a,r,n,t.shiftKey,o),s=ct(e.state).find(e=>e.id===a.paragraphId);if(!s)return void e.logger.warn("image resize:missing paragraph",a);e.logger.debug("image resize:move",{paragraphId:a.paragraphId,paragraphOffset:a.paragraphOffset,handleDirection:a.handleDirection,deltaX:r,deltaY:n,nextWidth:i,nextHeight:l,maxWidth:o,preserveAspectRatio:t.shiftKey});var d,h;e.applyState(function(e,t,a){const r=Va(e);if(!r)return e;const n=ct(e),{paragraphIndex:o,run:i}=r,l=n.map((e,r)=>r!==o?oa(e):{...oa(e),runs:e.runs.map(e=>e.id===i.id&&e.image?{...e,image:{...e.image,width:Math.max(24,Math.round(t)),height:Math.max(24,Math.round(a))}}:na(e))});return va(e,l,ka(l,St(e)))}((d=e.state,h={anchor:Fe(s,a.paragraphOffset),focus:Fe(s,a.paragraphOffset+1)},{...d,selection:{anchor:{...h.anchor},focus:{...h.focus}}}),i,l))},C=()=>{const t=c;if(t){const a=g(e.state);e.logger.info("image resize:done",{paragraphId:t.paragraphId,startWidth:t.startWidth,startHeight:t.startHeight,current:a?{width:a.width,height:a.height}:null}),e.updateHistoryState(a=>({...a,undoStack:[...a.undoStack,e.cloneState(t.initialState)],redoStack:[]}))}y(),e.focusInput()},S=(t,r,o,l)=>{const c=o.currentTarget,p=l?{left:l.left,top:l.top,width:l.width,height:l.height}:null==c?void 0:c.getBoundingClientRect();if(!p)return;const u=g(e.state);h={paragraphId:t,paragraphOffset:r,startClientX:o.clientX,startClientY:o.clientY,src:(null==u?void 0:u.src)??"",width:(null==u?void 0:u.width)??p.width,height:(null==u?void 0:u.height)??p.height,offsetX:o.clientX-p.left,offsetY:o.clientY-p.top},d=null,i({x:o.clientX,y:o.clientY}),a(!1),n(null),s(null),window.addEventListener("mousemove",b),window.addEventListener("mouseup",w)},I=(t,a,r,n,o)=>{const i=ct(o).find(e=>e.id===t);if(!i)return;const l=g((s=o,d={anchor:Fe(i,a),focus:Fe(i,a+1)},{...s,selection:{anchor:{...d.anchor},focus:{...d.focus}}}));var s,d;l&&(c={paragraphId:t,paragraphOffset:a,handleDirection:r,startClientX:n.clientX,startClientY:n.clientY,startWidth:l.width,startHeight:l.height,aspectRatio:l.width/l.height,initialState:e.cloneState(o)},window.addEventListener("mousemove",x),window.addEventListener("mouseup",C))};return{dragging:t,draggedImageInfo:r,mousePos:o,dropTargetPos:l,getSelectedImageInfo:g,startImageDrag:S,startImageResize:I,stopImageDrag:()=>{v()},stopImageResize:y,handleImageMouseDown:(t,a,r)=>{r.preventDefault(),r.stopPropagation();const n=dt(e.state.document).find(e=>e.id===t);n&&e.applyState(Jt(e.state,{anchor:Fe(n,a),focus:Fe(n,a+1)})),S(t,a,r),e.focusInputAfterPointerSelection()},handleImageResizeHandleMouseDown:(t,a,r,n)=>{n.preventDefault(),n.stopPropagation(),I(t,a,r,n,e.state)}}}var ul="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function fl(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function gl(e){throw new Error('Could not dynamically require "'+e+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var ml={exports:{}};
2
+ /*!
3
+
4
+ JSZip v3.10.1 - A JavaScript class for generating and reading zip files
5
+ <http://stuartk.com/jszip>
6
+
7
+ (c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
8
+ Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/main/LICENSE.markdown.
9
+
10
+ JSZip uses the library pako released under the MIT license :
11
+ https://github.com/nodeca/pako/blob/main/LICENSE
12
+ */ml.exports=function e(t,a,r){function n(i,l){if(!a[i]){if(!t[i]){if(!l&&gl)return gl(i);if(o)return o(i,!0);var s=new Error("Cannot find module '"+i+"'");throw s.code="MODULE_NOT_FOUND",s}var d=a[i]={exports:{}};t[i][0].call(d.exports,function(e){return n(t[i][1][e]||e)},d,d.exports,e,t,a,r)}return a[i].exports}for(var o=gl,i=0;i<r.length;i++)n(r[i]);return n}({1:[function(e,t,a){var r=e("./utils"),n=e("./support"),o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";a.encode=function(e){for(var t,a,n,i,l,s,d,c=[],h=0,p=e.length,u=p,f="string"!==r.getTypeOf(e);h<e.length;)u=p-h,n=f?(t=e[h++],a=h<p?e[h++]:0,h<p?e[h++]:0):(t=e.charCodeAt(h++),a=h<p?e.charCodeAt(h++):0,h<p?e.charCodeAt(h++):0),i=t>>2,l=(3&t)<<4|a>>4,s=1<u?(15&a)<<2|n>>6:64,d=2<u?63&n:64,c.push(o.charAt(i)+o.charAt(l)+o.charAt(s)+o.charAt(d));return c.join("")},a.decode=function(e){var t,a,r,i,l,s,d=0,c=0,h="data:";if(e.substr(0,h.length)===h)throw new Error("Invalid base64 input, it looks like a data url.");var p,u=3*(e=e.replace(/[^A-Za-z0-9+/=]/g,"")).length/4;if(e.charAt(e.length-1)===o.charAt(64)&&u--,e.charAt(e.length-2)===o.charAt(64)&&u--,u%1!=0)throw new Error("Invalid base64 input, bad content length.");for(p=n.uint8array?new Uint8Array(0|u):new Array(0|u);d<e.length;)t=o.indexOf(e.charAt(d++))<<2|(i=o.indexOf(e.charAt(d++)))>>4,a=(15&i)<<4|(l=o.indexOf(e.charAt(d++)))>>2,r=(3&l)<<6|(s=o.indexOf(e.charAt(d++))),p[c++]=t,64!==l&&(p[c++]=a),64!==s&&(p[c++]=r);return p}},{"./support":30,"./utils":32}],2:[function(e,t,a){var r=e("./external"),n=e("./stream/DataWorker"),o=e("./stream/Crc32Probe"),i=e("./stream/DataLengthProbe");function l(e,t,a,r,n){this.compressedSize=e,this.uncompressedSize=t,this.crc32=a,this.compression=r,this.compressedContent=n}l.prototype={getContentWorker:function(){var e=new n(r.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new i("data_length")),t=this;return e.on("end",function(){if(this.streamInfo.data_length!==t.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),e},getCompressedWorker:function(){return new n(r.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},l.createWorkerFrom=function(e,t,a){return e.pipe(new o).pipe(new i("uncompressedSize")).pipe(t.compressWorker(a)).pipe(new i("compressedSize")).withStreamInfo("compression",t)},t.exports=l},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(e,t,a){var r=e("./stream/GenericWorker");a.STORE={magic:"\0\0",compressWorker:function(){return new r("STORE compression")},uncompressWorker:function(){return new r("STORE decompression")}},a.DEFLATE=e("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(e,t,a){var r=e("./utils"),n=function(){for(var e,t=[],a=0;a<256;a++){e=a;for(var r=0;r<8;r++)e=1&e?3988292384^e>>>1:e>>>1;t[a]=e}return t}();t.exports=function(e,t){return void 0!==e&&e.length?"string"!==r.getTypeOf(e)?function(e,t,a,r){var o=n,i=r+a;e^=-1;for(var l=r;l<i;l++)e=e>>>8^o[255&(e^t[l])];return-1^e}(0|t,e,e.length,0):function(e,t,a,r){var o=n,i=r+a;e^=-1;for(var l=r;l<i;l++)e=e>>>8^o[255&(e^t.charCodeAt(l))];return-1^e}(0|t,e,e.length,0):0}},{"./utils":32}],5:[function(e,t,a){a.base64=!1,a.binary=!1,a.dir=!1,a.createFolders=!0,a.date=null,a.compression=null,a.compressionOptions=null,a.comment=null,a.unixPermissions=null,a.dosPermissions=null},{}],6:[function(e,t,a){var r=null;r="undefined"!=typeof Promise?Promise:e("lie"),t.exports={Promise:r}},{lie:37}],7:[function(e,t,a){var r="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,n=e("pako"),o=e("./utils"),i=e("./stream/GenericWorker"),l=r?"uint8array":"array";function s(e,t){i.call(this,"FlateWorker/"+e),this._pako=null,this._pakoAction=e,this._pakoOptions=t,this.meta={}}a.magic="\b\0",o.inherits(s,i),s.prototype.processChunk=function(e){this.meta=e.meta,null===this._pako&&this._createPako(),this._pako.push(o.transformTo(l,e.data),!1)},s.prototype.flush=function(){i.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},s.prototype.cleanUp=function(){i.prototype.cleanUp.call(this),this._pako=null},s.prototype._createPako=function(){this._pako=new n[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},a.compressWorker=function(e){return new s("Deflate",e)},a.uncompressWorker=function(){return new s("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(e,t,a){function r(e,t){var a,r="";for(a=0;a<t;a++)r+=String.fromCharCode(255&e),e>>>=8;return r}function n(e,t,a,n,i,c){var h,p,u=e.file,f=e.compression,g=c!==l.utf8encode,m=o.transformTo("string",c(u.name)),v=o.transformTo("string",l.utf8encode(u.name)),y=u.comment,b=o.transformTo("string",c(y)),M=o.transformTo("string",l.utf8encode(y)),w=v.length!==u.name.length,x=M.length!==y.length,C="",S="",I="",k=u.dir,A=u.date,T={crc32:0,compressedSize:0,uncompressedSize:0};t&&!a||(T.crc32=e.crc32,T.compressedSize=e.compressedSize,T.uncompressedSize=e.uncompressedSize);var P=0;t&&(P|=8),g||!w&&!x||(P|=2048);var E,L,O,R=0,H=0;k&&(R|=16),"UNIX"===i?(H=798,R|=(E=u.unixPermissions,L=k,O=E,E||(O=L?16893:33204),(65535&O)<<16)):(H=20,R|=function(e){return 63&(e||0)}(u.dosPermissions)),h=A.getUTCHours(),h<<=6,h|=A.getUTCMinutes(),h<<=5,h|=A.getUTCSeconds()/2,p=A.getUTCFullYear()-1980,p<<=4,p|=A.getUTCMonth()+1,p<<=5,p|=A.getUTCDate(),w&&(S=r(1,1)+r(s(m),4)+v,C+="up"+r(S.length,2)+S),x&&(I=r(1,1)+r(s(b),4)+M,C+="uc"+r(I.length,2)+I);var N="";return N+="\n\0",N+=r(P,2),N+=f.magic,N+=r(h,2),N+=r(p,2),N+=r(T.crc32,4),N+=r(T.compressedSize,4),N+=r(T.uncompressedSize,4),N+=r(m.length,2),N+=r(C.length,2),{fileRecord:d.LOCAL_FILE_HEADER+N+m+C,dirRecord:d.CENTRAL_FILE_HEADER+r(H,2)+N+r(b.length,2)+"\0\0\0\0"+r(R,4)+r(n,4)+m+C+b}}var o=e("../utils"),i=e("../stream/GenericWorker"),l=e("../utf8"),s=e("../crc32"),d=e("../signature");function c(e,t,a,r){i.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=t,this.zipPlatform=a,this.encodeFileName=r,this.streamFiles=e,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}o.inherits(c,i),c.prototype.push=function(e){var t=e.meta.percent||0,a=this.entriesCount,r=this._sources.length;this.accumulate?this.contentBuffer.push(e):(this.bytesWritten+=e.data.length,i.prototype.push.call(this,{data:e.data,meta:{currentFile:this.currentFile,percent:a?(t+100*(a-r-1))/a:100}}))},c.prototype.openedSource=function(e){this.currentSourceOffset=this.bytesWritten,this.currentFile=e.file.name;var t=this.streamFiles&&!e.file.dir;if(t){var a=n(e,t,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:a.fileRecord,meta:{percent:0}})}else this.accumulate=!0},c.prototype.closedSource=function(e){this.accumulate=!1;var t,a=this.streamFiles&&!e.file.dir,o=n(e,a,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(o.dirRecord),a)this.push({data:(t=e,d.DATA_DESCRIPTOR+r(t.crc32,4)+r(t.compressedSize,4)+r(t.uncompressedSize,4)),meta:{percent:100}});else for(this.push({data:o.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},c.prototype.flush=function(){for(var e=this.bytesWritten,t=0;t<this.dirRecords.length;t++)this.push({data:this.dirRecords[t],meta:{percent:100}});var a,n,i,l,s,c,h=this.bytesWritten-e,p=(a=this.dirRecords.length,n=h,i=e,l=this.zipComment,s=this.encodeFileName,c=o.transformTo("string",s(l)),d.CENTRAL_DIRECTORY_END+"\0\0\0\0"+r(a,2)+r(a,2)+r(n,4)+r(i,4)+r(c.length,2)+c);this.push({data:p,meta:{percent:100}})},c.prototype.prepareNextSource=function(){this.previous=this._sources.shift(),this.openedSource(this.previous.streamInfo),this.isPaused?this.previous.pause():this.previous.resume()},c.prototype.registerPrevious=function(e){this._sources.push(e);var t=this;return e.on("data",function(e){t.processChunk(e)}),e.on("end",function(){t.closedSource(t.previous.streamInfo),t._sources.length?t.prepareNextSource():t.end()}),e.on("error",function(e){t.error(e)}),this},c.prototype.resume=function(){return!!i.prototype.resume.call(this)&&(!this.previous&&this._sources.length?(this.prepareNextSource(),!0):this.previous||this._sources.length||this.generatedError?void 0:(this.end(),!0))},c.prototype.error=function(e){var t=this._sources;if(!i.prototype.error.call(this,e))return!1;for(var a=0;a<t.length;a++)try{t[a].error(e)}catch(r){}return!0},c.prototype.lock=function(){i.prototype.lock.call(this);for(var e=this._sources,t=0;t<e.length;t++)e[t].lock()},t.exports=c},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(e,t,a){var r=e("../compressions"),n=e("./ZipFileWorker");a.generateWorker=function(e,t,a){var o=new n(t.streamFiles,a,t.platform,t.encodeFileName),i=0;try{e.forEach(function(e,a){i++;var n=function(e,t){var a=e||t,n=r[a];if(!n)throw new Error(a+" is not a valid compression method !");return n}(a.options.compression,t.compression),l=a.options.compressionOptions||t.compressionOptions||{},s=a.dir,d=a.date;a._compressWorker(n,l).withStreamInfo("file",{name:e,dir:s,date:d,comment:a.comment||"",unixPermissions:a.unixPermissions,dosPermissions:a.dosPermissions}).pipe(o)}),o.entriesCount=i}catch(l){o.error(l)}return o}},{"../compressions":3,"./ZipFileWorker":8}],10:[function(e,t,a){function r(){if(!(this instanceof r))return new r;if(arguments.length)throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");this.files=Object.create(null),this.comment=null,this.root="",this.clone=function(){var e=new r;for(var t in this)"function"!=typeof this[t]&&(e[t]=this[t]);return e}}(r.prototype=e("./object")).loadAsync=e("./load"),r.support=e("./support"),r.defaults=e("./defaults"),r.version="3.10.1",r.loadAsync=function(e,t){return(new r).loadAsync(e,t)},r.external=e("./external"),t.exports=r},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(e,t,a){var r=e("./utils"),n=e("./external"),o=e("./utf8"),i=e("./zipEntries"),l=e("./stream/Crc32Probe"),s=e("./nodejsUtils");function d(e){return new n.Promise(function(t,a){var r=e.decompressed.getContentWorker().pipe(new l);r.on("error",function(e){a(e)}).on("end",function(){r.streamInfo.crc32!==e.decompressed.crc32?a(new Error("Corrupted zip : CRC32 mismatch")):t()}).resume()})}t.exports=function(e,t){var a=this;return t=r.extend(t||{},{base64:!1,checkCRC32:!1,optimizedBinaryString:!1,createFolders:!1,decodeFileName:o.utf8decode}),s.isNode&&s.isStream(e)?n.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")):r.prepareContent("the loaded zip file",e,!0,t.optimizedBinaryString,t.base64).then(function(e){var a=new i(t);return a.load(e),a}).then(function(e){var a=[n.Promise.resolve(e)],r=e.files;if(t.checkCRC32)for(var o=0;o<r.length;o++)a.push(d(r[o]));return n.Promise.all(a)}).then(function(e){for(var n=e.shift(),o=n.files,i=0;i<o.length;i++){var l=o[i],s=l.fileNameStr,d=r.resolve(l.fileNameStr);a.file(d,l.decompressed,{binary:!0,optimizedBinaryString:!0,date:l.date,dir:l.dir,comment:l.fileCommentStr.length?l.fileCommentStr:null,unixPermissions:l.unixPermissions,dosPermissions:l.dosPermissions,createFolders:t.createFolders}),l.dir||(a.file(d).unsafeOriginalName=s)}return n.zipComment.length&&(a.comment=n.zipComment),a})}},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(e,t,a){var r=e("../utils"),n=e("../stream/GenericWorker");function o(e,t){n.call(this,"Nodejs stream input adapter for "+e),this._upstreamEnded=!1,this._bindStream(t)}r.inherits(o,n),o.prototype._bindStream=function(e){var t=this;(this._stream=e).pause(),e.on("data",function(e){t.push({data:e,meta:{percent:0}})}).on("error",function(e){t.isPaused?this.generatedError=e:t.error(e)}).on("end",function(){t.isPaused?t._upstreamEnded=!0:t.end()})},o.prototype.pause=function(){return!!n.prototype.pause.call(this)&&(this._stream.pause(),!0)},o.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(this._upstreamEnded?this.end():this._stream.resume(),!0)},t.exports=o},{"../stream/GenericWorker":28,"../utils":32}],13:[function(e,t,a){var r=e("readable-stream").Readable;function n(e,t,a){r.call(this,t),this._helper=e;var n=this;e.on("data",function(e,t){n.push(e)||n._helper.pause(),a&&a(t)}).on("error",function(e){n.emit("error",e)}).on("end",function(){n.push(null)})}e("../utils").inherits(n,r),n.prototype._read=function(){this._helper.resume()},t.exports=n},{"../utils":32,"readable-stream":16}],14:[function(e,t,a){t.exports={isNode:"undefined"!=typeof Buffer,newBufferFrom:function(e,t){if(Buffer.from&&Buffer.from!==Uint8Array.from)return Buffer.from(e,t);if("number"==typeof e)throw new Error('The "data" argument must not be a number');return new Buffer(e,t)},allocBuffer:function(e){if(Buffer.alloc)return Buffer.alloc(e);var t=new Buffer(e);return t.fill(0),t},isBuffer:function(e){return Buffer.isBuffer(e)},isStream:function(e){return e&&"function"==typeof e.on&&"function"==typeof e.pause&&"function"==typeof e.resume}}},{}],15:[function(e,t,a){function r(e,t,a){var r,n=o.getTypeOf(t),l=o.extend(a||{},s);l.date=l.date||new Date,null!==l.compression&&(l.compression=l.compression.toUpperCase()),"string"==typeof l.unixPermissions&&(l.unixPermissions=parseInt(l.unixPermissions,8)),l.unixPermissions&&16384&l.unixPermissions&&(l.dir=!0),l.dosPermissions&&16&l.dosPermissions&&(l.dir=!0),l.dir&&(e=g(e)),l.createFolders&&(r=f(e))&&m.call(this,r,!0);var h="string"===n&&!1===l.binary&&!1===l.base64;a&&void 0!==a.binary||(l.binary=!h),(t instanceof d&&0===t.uncompressedSize||l.dir||!t||0===t.length)&&(l.base64=!1,l.binary=!0,t="",l.compression="STORE",n="string");var v=null;v=t instanceof d||t instanceof i?t:p.isNode&&p.isStream(t)?new u(e,t):o.prepareContent(e,t,l.binary,l.optimizedBinaryString,l.base64);var y=new c(e,v,l);this.files[e]=y}var n=e("./utf8"),o=e("./utils"),i=e("./stream/GenericWorker"),l=e("./stream/StreamHelper"),s=e("./defaults"),d=e("./compressedObject"),c=e("./zipObject"),h=e("./generate"),p=e("./nodejsUtils"),u=e("./nodejs/NodejsStreamInputAdapter"),f=function(e){"/"===e.slice(-1)&&(e=e.substring(0,e.length-1));var t=e.lastIndexOf("/");return 0<t?e.substring(0,t):""},g=function(e){return"/"!==e.slice(-1)&&(e+="/"),e},m=function(e,t){return t=void 0!==t?t:s.createFolders,e=g(e),this.files[e]||r.call(this,e,null,{dir:!0,createFolders:t}),this.files[e]};function v(e){return"[object RegExp]"===Object.prototype.toString.call(e)}var y={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(e){var t,a,r;for(t in this.files)r=this.files[t],(a=t.slice(this.root.length,t.length))&&t.slice(0,this.root.length)===this.root&&e(a,r)},filter:function(e){var t=[];return this.forEach(function(a,r){e(a,r)&&t.push(r)}),t},file:function(e,t,a){if(1!==arguments.length)return e=this.root+e,r.call(this,e,t,a),this;if(v(e)){var n=e;return this.filter(function(e,t){return!t.dir&&n.test(e)})}var o=this.files[this.root+e];return o&&!o.dir?o:null},folder:function(e){if(!e)return this;if(v(e))return this.filter(function(t,a){return a.dir&&e.test(t)});var t=this.root+e,a=m.call(this,t),r=this.clone();return r.root=a.name,r},remove:function(e){e=this.root+e;var t=this.files[e];if(t||("/"!==e.slice(-1)&&(e+="/"),t=this.files[e]),t&&!t.dir)delete this.files[e];else for(var a=this.filter(function(t,a){return a.name.slice(0,e.length)===e}),r=0;r<a.length;r++)delete this.files[a[r].name];return this},generate:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},generateInternalStream:function(e){var t,a={};try{if((a=o.extend(e||{},{streamFiles:!1,compression:"STORE",compressionOptions:null,type:"",platform:"DOS",comment:null,mimeType:"application/zip",encodeFileName:n.utf8encode})).type=a.type.toLowerCase(),a.compression=a.compression.toUpperCase(),"binarystring"===a.type&&(a.type="string"),!a.type)throw new Error("No output type specified.");o.checkSupport(a.type),"darwin"!==a.platform&&"freebsd"!==a.platform&&"linux"!==a.platform&&"sunos"!==a.platform||(a.platform="UNIX"),"win32"===a.platform&&(a.platform="DOS");var r=a.comment||this.comment||"";t=h.generateWorker(this,a,r)}catch(s){(t=new i("error")).error(s)}return new l(t,a.type||"string",a.mimeType)},generateAsync:function(e,t){return this.generateInternalStream(e).accumulate(t)},generateNodeStream:function(e,t){return(e=e||{}).type||(e.type="nodebuffer"),this.generateInternalStream(e).toNodejsStream(t)}};t.exports=y},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(e,t,a){t.exports=e("stream")},{stream:void 0}],17:[function(e,t,a){var r=e("./DataReader");function n(e){r.call(this,e);for(var t=0;t<this.data.length;t++)e[t]=255&e[t]}e("../utils").inherits(n,r),n.prototype.byteAt=function(e){return this.data[this.zero+e]},n.prototype.lastIndexOfSignature=function(e){for(var t=e.charCodeAt(0),a=e.charCodeAt(1),r=e.charCodeAt(2),n=e.charCodeAt(3),o=this.length-4;0<=o;--o)if(this.data[o]===t&&this.data[o+1]===a&&this.data[o+2]===r&&this.data[o+3]===n)return o-this.zero;return-1},n.prototype.readAndCheckSignature=function(e){var t=e.charCodeAt(0),a=e.charCodeAt(1),r=e.charCodeAt(2),n=e.charCodeAt(3),o=this.readData(4);return t===o[0]&&a===o[1]&&r===o[2]&&n===o[3]},n.prototype.readData=function(e){if(this.checkOffset(e),0===e)return[];var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./DataReader":18}],18:[function(e,t,a){var r=e("../utils");function n(e){this.data=e,this.length=e.length,this.index=0,this.zero=0}n.prototype={checkOffset:function(e){this.checkIndex(this.index+e)},checkIndex:function(e){if(this.length<this.zero+e||e<0)throw new Error("End of data reached (data length = "+this.length+", asked index = "+e+"). Corrupted zip ?")},setIndex:function(e){this.checkIndex(e),this.index=e},skip:function(e){this.setIndex(this.index+e)},byteAt:function(){},readInt:function(e){var t,a=0;for(this.checkOffset(e),t=this.index+e-1;t>=this.index;t--)a=(a<<8)+this.byteAt(t);return this.index+=e,a},readString:function(e){return r.transformTo("string",this.readData(e))},readData:function(){},lastIndexOfSignature:function(){},readAndCheckSignature:function(){},readDate:function(){var e=this.readInt(4);return new Date(Date.UTC(1980+(e>>25&127),(e>>21&15)-1,e>>16&31,e>>11&31,e>>5&63,(31&e)<<1))}},t.exports=n},{"../utils":32}],19:[function(e,t,a){var r=e("./Uint8ArrayReader");function n(e){r.call(this,e)}e("../utils").inherits(n,r),n.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(e,t,a){var r=e("./DataReader");function n(e){r.call(this,e)}e("../utils").inherits(n,r),n.prototype.byteAt=function(e){return this.data.charCodeAt(this.zero+e)},n.prototype.lastIndexOfSignature=function(e){return this.data.lastIndexOf(e)-this.zero},n.prototype.readAndCheckSignature=function(e){return e===this.readData(4)},n.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./DataReader":18}],21:[function(e,t,a){var r=e("./ArrayReader");function n(e){r.call(this,e)}e("../utils").inherits(n,r),n.prototype.readData=function(e){if(this.checkOffset(e),0===e)return new Uint8Array(0);var t=this.data.subarray(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./ArrayReader":17}],22:[function(e,t,a){var r=e("../utils"),n=e("../support"),o=e("./ArrayReader"),i=e("./StringReader"),l=e("./NodeBufferReader"),s=e("./Uint8ArrayReader");t.exports=function(e){var t=r.getTypeOf(e);return r.checkSupport(t),"string"!==t||n.uint8array?"nodebuffer"===t?new l(e):n.uint8array?new s(r.transformTo("uint8array",e)):new o(r.transformTo("array",e)):new i(e)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(e,t,a){a.LOCAL_FILE_HEADER="PK",a.CENTRAL_FILE_HEADER="PK",a.CENTRAL_DIRECTORY_END="PK",a.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",a.ZIP64_CENTRAL_DIRECTORY_END="PK",a.DATA_DESCRIPTOR="PK\b"},{}],24:[function(e,t,a){var r=e("./GenericWorker"),n=e("../utils");function o(e){r.call(this,"ConvertWorker to "+e),this.destType=e}n.inherits(o,r),o.prototype.processChunk=function(e){this.push({data:n.transformTo(this.destType,e.data),meta:e.meta})},t.exports=o},{"../utils":32,"./GenericWorker":28}],25:[function(e,t,a){var r=e("./GenericWorker"),n=e("../crc32");function o(){r.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}e("../utils").inherits(o,r),o.prototype.processChunk=function(e){this.streamInfo.crc32=n(e.data,this.streamInfo.crc32||0),this.push(e)},t.exports=o},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(e,t,a){var r=e("../utils"),n=e("./GenericWorker");function o(e){n.call(this,"DataLengthProbe for "+e),this.propName=e,this.withStreamInfo(e,0)}r.inherits(o,n),o.prototype.processChunk=function(e){if(e){var t=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=t+e.data.length}n.prototype.processChunk.call(this,e)},t.exports=o},{"../utils":32,"./GenericWorker":28}],27:[function(e,t,a){var r=e("../utils"),n=e("./GenericWorker");function o(e){n.call(this,"DataWorker");var t=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,e.then(function(e){t.dataIsReady=!0,t.data=e,t.max=e&&e.length||0,t.type=r.getTypeOf(e),t.isPaused||t._tickAndRepeat()},function(e){t.error(e)})}r.inherits(o,n),o.prototype.cleanUp=function(){n.prototype.cleanUp.call(this),this.data=null},o.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,r.delay(this._tickAndRepeat,[],this)),!0)},o.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(r.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},o.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var e=null,t=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":e=this.data.substring(this.index,t);break;case"uint8array":e=this.data.subarray(this.index,t);break;case"array":case"nodebuffer":e=this.data.slice(this.index,t)}return this.index=t,this.push({data:e,meta:{percent:this.max?this.index/this.max*100:0}})},t.exports=o},{"../utils":32,"./GenericWorker":28}],28:[function(e,t,a){function r(e){this.name=e||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}r.prototype={push:function(e){this.emit("data",e)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(e){this.emit("error",e)}return!0},error:function(e){return!this.isFinished&&(this.isPaused?this.generatedError=e:(this.isFinished=!0,this.emit("error",e),this.previous&&this.previous.error(e),this.cleanUp()),!0)},on:function(e,t){return this._listeners[e].push(t),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(e,t){if(this._listeners[e])for(var a=0;a<this._listeners[e].length;a++)this._listeners[e][a].call(this,t)},pipe:function(e){return e.registerPrevious(this)},registerPrevious:function(e){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.streamInfo=e.streamInfo,this.mergeStreamInfo(),this.previous=e;var t=this;return e.on("data",function(e){t.processChunk(e)}),e.on("end",function(){t.end()}),e.on("error",function(e){t.error(e)}),this},pause:function(){return!this.isPaused&&!this.isFinished&&(this.isPaused=!0,this.previous&&this.previous.pause(),!0)},resume:function(){if(!this.isPaused||this.isFinished)return!1;var e=this.isPaused=!1;return this.generatedError&&(this.error(this.generatedError),e=!0),this.previous&&this.previous.resume(),!e},flush:function(){},processChunk:function(e){this.push(e)},withStreamInfo:function(e,t){return this.extraStreamInfo[e]=t,this.mergeStreamInfo(),this},mergeStreamInfo:function(){for(var e in this.extraStreamInfo)Object.prototype.hasOwnProperty.call(this.extraStreamInfo,e)&&(this.streamInfo[e]=this.extraStreamInfo[e])},lock:function(){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.isLocked=!0,this.previous&&this.previous.lock()},toString:function(){var e="Worker "+this.name;return this.previous?this.previous+" -> "+e:e}},t.exports=r},{}],29:[function(e,t,a){var r=e("../utils"),n=e("./ConvertWorker"),o=e("./GenericWorker"),i=e("../base64"),l=e("../support"),s=e("../external"),d=null;if(l.nodestream)try{d=e("../nodejs/NodejsStreamOutputAdapter")}catch(p){}function c(e,t){return new s.Promise(function(a,n){var o=[],l=e._internalType,s=e._outputType,d=e._mimeType;e.on("data",function(e,a){o.push(e),t&&t(a)}).on("error",function(e){o=[],n(e)}).on("end",function(){try{var e=function(e,t,a){switch(e){case"blob":return r.newBlob(r.transformTo("arraybuffer",t),a);case"base64":return i.encode(t);default:return r.transformTo(e,t)}}(s,function(e,t){var a,r=0,n=null,o=0;for(a=0;a<t.length;a++)o+=t[a].length;switch(e){case"string":return t.join("");case"array":return Array.prototype.concat.apply([],t);case"uint8array":for(n=new Uint8Array(o),a=0;a<t.length;a++)n.set(t[a],r),r+=t[a].length;return n;case"nodebuffer":return Buffer.concat(t);default:throw new Error("concat : unsupported type '"+e+"'")}}(l,o),d);a(e)}catch(t){n(t)}o=[]}).resume()})}function h(e,t,a){var i=t;switch(t){case"blob":case"arraybuffer":i="uint8array";break;case"base64":i="string"}try{this._internalType=i,this._outputType=t,this._mimeType=a,r.checkSupport(i),this._worker=e.pipe(new n(i)),e.lock()}catch(l){this._worker=new o("error"),this._worker.error(l)}}h.prototype={accumulate:function(e){return c(this,e)},on:function(e,t){var a=this;return"data"===e?this._worker.on(e,function(e){t.call(a,e.data,e.meta)}):this._worker.on(e,function(){r.delay(t,arguments,a)}),this},resume:function(){return r.delay(this._worker.resume,[],this._worker),this},pause:function(){return this._worker.pause(),this},toNodejsStream:function(e){if(r.checkSupport("nodestream"),"nodebuffer"!==this._outputType)throw new Error(this._outputType+" is not supported by this method");return new d(this,{objectMode:"nodebuffer"!==this._outputType},e)}},t.exports=h},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(e,t,a){if(a.base64=!0,a.array=!0,a.string=!0,a.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,a.nodebuffer="undefined"!=typeof Buffer,a.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)a.blob=!1;else{var r=new ArrayBuffer(0);try{a.blob=0===new Blob([r],{type:"application/zip"}).size}catch(o){try{var n=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);n.append(r),a.blob=0===n.getBlob("application/zip").size}catch(i){a.blob=!1}}}try{a.nodestream=!!e("readable-stream").Readable}catch(o){a.nodestream=!1}},{"readable-stream":16}],31:[function(e,t,a){for(var r=e("./utils"),n=e("./support"),o=e("./nodejsUtils"),i=e("./stream/GenericWorker"),l=new Array(256),s=0;s<256;s++)l[s]=252<=s?6:248<=s?5:240<=s?4:224<=s?3:192<=s?2:1;function d(){i.call(this,"utf-8 decode"),this.leftOver=null}function c(){i.call(this,"utf-8 encode")}l[254]=l[254]=1,a.utf8encode=function(e){return n.nodebuffer?o.newBufferFrom(e,"utf-8"):function(e){var t,a,r,o,i,l=e.length,s=0;for(o=0;o<l;o++)55296==(64512&(a=e.charCodeAt(o)))&&o+1<l&&56320==(64512&(r=e.charCodeAt(o+1)))&&(a=65536+(a-55296<<10)+(r-56320),o++),s+=a<128?1:a<2048?2:a<65536?3:4;for(t=n.uint8array?new Uint8Array(s):new Array(s),o=i=0;i<s;o++)55296==(64512&(a=e.charCodeAt(o)))&&o+1<l&&56320==(64512&(r=e.charCodeAt(o+1)))&&(a=65536+(a-55296<<10)+(r-56320),o++),a<128?t[i++]=a:(a<2048?t[i++]=192|a>>>6:(a<65536?t[i++]=224|a>>>12:(t[i++]=240|a>>>18,t[i++]=128|a>>>12&63),t[i++]=128|a>>>6&63),t[i++]=128|63&a);return t}(e)},a.utf8decode=function(e){return n.nodebuffer?r.transformTo("nodebuffer",e).toString("utf-8"):function(e){var t,a,n,o,i=e.length,s=new Array(2*i);for(t=a=0;t<i;)if((n=e[t++])<128)s[a++]=n;else if(4<(o=l[n]))s[a++]=65533,t+=o-1;else{for(n&=2===o?31:3===o?15:7;1<o&&t<i;)n=n<<6|63&e[t++],o--;1<o?s[a++]=65533:n<65536?s[a++]=n:(n-=65536,s[a++]=55296|n>>10&1023,s[a++]=56320|1023&n)}return s.length!==a&&(s.subarray?s=s.subarray(0,a):s.length=a),r.applyFromCharCode(s)}(e=r.transformTo(n.uint8array?"uint8array":"array",e))},r.inherits(d,i),d.prototype.processChunk=function(e){var t=r.transformTo(n.uint8array?"uint8array":"array",e.data);if(this.leftOver&&this.leftOver.length){if(n.uint8array){var o=t;(t=new Uint8Array(o.length+this.leftOver.length)).set(this.leftOver,0),t.set(o,this.leftOver.length)}else t=this.leftOver.concat(t);this.leftOver=null}var i=function(e,t){var a;for((t=t||e.length)>e.length&&(t=e.length),a=t-1;0<=a&&128==(192&e[a]);)a--;return a<0||0===a?t:a+l[e[a]]>t?a:t}(t),s=t;i!==t.length&&(n.uint8array?(s=t.subarray(0,i),this.leftOver=t.subarray(i,t.length)):(s=t.slice(0,i),this.leftOver=t.slice(i,t.length))),this.push({data:a.utf8decode(s),meta:e.meta})},d.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:a.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},a.Utf8DecodeWorker=d,r.inherits(c,i),c.prototype.processChunk=function(e){this.push({data:a.utf8encode(e.data),meta:e.meta})},a.Utf8EncodeWorker=c},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(e,t,a){var r=e("./support"),n=e("./base64"),o=e("./nodejsUtils"),i=e("./external");function l(e){return e}function s(e,t){for(var a=0;a<e.length;++a)t[a]=255&e.charCodeAt(a);return t}e("setimmediate"),a.newBlob=function(e,t){a.checkSupport("blob");try{return new Blob([e],{type:t})}catch(n){try{var r=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);return r.append(e),r.getBlob(t)}catch(o){throw new Error("Bug : can't construct the Blob.")}}};var d={stringifyByChunk:function(e,t,a){var r=[],n=0,o=e.length;if(o<=a)return String.fromCharCode.apply(null,e);for(;n<o;)"array"===t||"nodebuffer"===t?r.push(String.fromCharCode.apply(null,e.slice(n,Math.min(n+a,o)))):r.push(String.fromCharCode.apply(null,e.subarray(n,Math.min(n+a,o)))),n+=a;return r.join("")},stringifyByChar:function(e){for(var t="",a=0;a<e.length;a++)t+=String.fromCharCode(e[a]);return t},applyCanBeUsed:{uint8array:function(){try{return r.uint8array&&1===String.fromCharCode.apply(null,new Uint8Array(1)).length}catch(e){return!1}}(),nodebuffer:function(){try{return r.nodebuffer&&1===String.fromCharCode.apply(null,o.allocBuffer(1)).length}catch(e){return!1}}()}};function c(e){var t=65536,r=a.getTypeOf(e),n=!0;if("uint8array"===r?n=d.applyCanBeUsed.uint8array:"nodebuffer"===r&&(n=d.applyCanBeUsed.nodebuffer),n)for(;1<t;)try{return d.stringifyByChunk(e,r,t)}catch(o){t=Math.floor(t/2)}return d.stringifyByChar(e)}function h(e,t){for(var a=0;a<e.length;a++)t[a]=e[a];return t}a.applyFromCharCode=c;var p={};p.string={string:l,array:function(e){return s(e,new Array(e.length))},arraybuffer:function(e){return p.string.uint8array(e).buffer},uint8array:function(e){return s(e,new Uint8Array(e.length))},nodebuffer:function(e){return s(e,o.allocBuffer(e.length))}},p.array={string:c,array:l,arraybuffer:function(e){return new Uint8Array(e).buffer},uint8array:function(e){return new Uint8Array(e)},nodebuffer:function(e){return o.newBufferFrom(e)}},p.arraybuffer={string:function(e){return c(new Uint8Array(e))},array:function(e){return h(new Uint8Array(e),new Array(e.byteLength))},arraybuffer:l,uint8array:function(e){return new Uint8Array(e)},nodebuffer:function(e){return o.newBufferFrom(new Uint8Array(e))}},p.uint8array={string:c,array:function(e){return h(e,new Array(e.length))},arraybuffer:function(e){return e.buffer},uint8array:l,nodebuffer:function(e){return o.newBufferFrom(e)}},p.nodebuffer={string:c,array:function(e){return h(e,new Array(e.length))},arraybuffer:function(e){return p.nodebuffer.uint8array(e).buffer},uint8array:function(e){return h(e,new Uint8Array(e.length))},nodebuffer:l},a.transformTo=function(e,t){if(t=t||"",!e)return t;a.checkSupport(e);var r=a.getTypeOf(t);return p[r][e](t)},a.resolve=function(e){for(var t=e.split("/"),a=[],r=0;r<t.length;r++){var n=t[r];"."===n||""===n&&0!==r&&r!==t.length-1||(".."===n?a.pop():a.push(n))}return a.join("/")},a.getTypeOf=function(e){return"string"==typeof e?"string":"[object Array]"===Object.prototype.toString.call(e)?"array":r.nodebuffer&&o.isBuffer(e)?"nodebuffer":r.uint8array&&e instanceof Uint8Array?"uint8array":r.arraybuffer&&e instanceof ArrayBuffer?"arraybuffer":void 0},a.checkSupport=function(e){if(!r[e.toLowerCase()])throw new Error(e+" is not supported by this platform")},a.MAX_VALUE_16BITS=65535,a.MAX_VALUE_32BITS=-1,a.pretty=function(e){var t,a,r="";for(a=0;a<(e||"").length;a++)r+="\\x"+((t=e.charCodeAt(a))<16?"0":"")+t.toString(16).toUpperCase();return r},a.delay=function(e,t,a){setImmediate(function(){e.apply(a||null,t||[])})},a.inherits=function(e,t){function a(){}a.prototype=t.prototype,e.prototype=new a},a.extend=function(){var e,t,a={};for(e=0;e<arguments.length;e++)for(t in arguments[e])Object.prototype.hasOwnProperty.call(arguments[e],t)&&void 0===a[t]&&(a[t]=arguments[e][t]);return a},a.prepareContent=function(e,t,o,l,d){return i.Promise.resolve(t).then(function(e){return r.blob&&(e instanceof Blob||-1!==["[object File]","[object Blob]"].indexOf(Object.prototype.toString.call(e)))&&"undefined"!=typeof FileReader?new i.Promise(function(t,a){var r=new FileReader;r.onload=function(e){t(e.target.result)},r.onerror=function(e){a(e.target.error)},r.readAsArrayBuffer(e)}):e}).then(function(t){var c,h=a.getTypeOf(t);return h?("arraybuffer"===h?t=a.transformTo("uint8array",t):"string"===h&&(d?t=n.decode(t):o&&!0!==l&&(t=s(c=t,r.uint8array?new Uint8Array(c.length):new Array(c.length)))),t):i.Promise.reject(new Error("Can't read the data of '"+e+"'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?"))})}},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,setimmediate:54}],33:[function(e,t,a){var r=e("./reader/readerFor"),n=e("./utils"),o=e("./signature"),i=e("./zipEntry"),l=e("./support");function s(e){this.files=[],this.loadOptions=e}s.prototype={checkSignature:function(e){if(!this.reader.readAndCheckSignature(e)){this.reader.index-=4;var t=this.reader.readString(4);throw new Error("Corrupted zip or bug: unexpected signature ("+n.pretty(t)+", expected "+n.pretty(e)+")")}},isSignature:function(e,t){var a=this.reader.index;this.reader.setIndex(e);var r=this.reader.readString(4)===t;return this.reader.setIndex(a),r},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2);var e=this.reader.readData(this.zipCommentLength),t=l.uint8array?"uint8array":"array",a=n.transformTo(t,e);this.zipComment=this.loadOptions.decodeFileName(a)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.reader.skip(4),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var e,t,a,r=this.zip64EndOfCentralSize-44;0<r;)e=this.reader.readInt(2),t=this.reader.readInt(4),a=this.reader.readData(t),this.zip64ExtensibleData[e]={id:e,length:t,value:a}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),1<this.disksCount)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var e,t;for(e=0;e<this.files.length;e++)t=this.files[e],this.reader.setIndex(t.localHeaderOffset),this.checkSignature(o.LOCAL_FILE_HEADER),t.readLocalPart(this.reader),t.handleUTF8(),t.processAttributes()},readCentralDir:function(){var e;for(this.reader.setIndex(this.centralDirOffset);this.reader.readAndCheckSignature(o.CENTRAL_FILE_HEADER);)(e=new i({zip64:this.zip64},this.loadOptions)).readCentralPart(this.reader),this.files.push(e);if(this.centralDirRecords!==this.files.length&&0!==this.centralDirRecords&&0===this.files.length)throw new Error("Corrupted zip or bug: expected "+this.centralDirRecords+" records in central dir, got "+this.files.length)},readEndOfCentral:function(){var e=this.reader.lastIndexOfSignature(o.CENTRAL_DIRECTORY_END);if(e<0)throw this.isSignature(0,o.LOCAL_FILE_HEADER)?new Error("Corrupted zip: can't find end of central directory"):new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html");this.reader.setIndex(e);var t=e;if(this.checkSignature(o.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===n.MAX_VALUE_16BITS||this.diskWithCentralDirStart===n.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===n.MAX_VALUE_16BITS||this.centralDirRecords===n.MAX_VALUE_16BITS||this.centralDirSize===n.MAX_VALUE_32BITS||this.centralDirOffset===n.MAX_VALUE_32BITS){if(this.zip64=!0,(e=this.reader.lastIndexOfSignature(o.ZIP64_CENTRAL_DIRECTORY_LOCATOR))<0)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(e),this.checkSignature(o.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,o.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(o.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(o.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var a=this.centralDirOffset+this.centralDirSize;this.zip64&&(a+=20,a+=12+this.zip64EndOfCentralSize);var r=t-a;if(0<r)this.isSignature(t,o.CENTRAL_FILE_HEADER)||(this.reader.zero=r);else if(r<0)throw new Error("Corrupted zip: missing "+Math.abs(r)+" bytes.")},prepareReader:function(e){this.reader=r(e)},load:function(e){this.prepareReader(e),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},t.exports=s},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utils":32,"./zipEntry":34}],34:[function(e,t,a){var r=e("./reader/readerFor"),n=e("./utils"),o=e("./compressedObject"),i=e("./crc32"),l=e("./utf8"),s=e("./compressions"),d=e("./support");function c(e,t){this.options=e,this.loadOptions=t}c.prototype={isEncrypted:function(){return!(1&~this.bitFlag)},useUTF8:function(){return!(2048&~this.bitFlag)},readLocalPart:function(e){var t,a;if(e.skip(22),this.fileNameLength=e.readInt(2),a=e.readInt(2),this.fileName=e.readData(this.fileNameLength),e.skip(a),-1===this.compressedSize||-1===this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough information from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(null===(t=function(e){for(var t in s)if(Object.prototype.hasOwnProperty.call(s,t)&&s[t].magic===e)return s[t];return null}(this.compressionMethod)))throw new Error("Corrupted zip : compression "+n.pretty(this.compressionMethod)+" unknown (inner file : "+n.transformTo("string",this.fileName)+")");this.decompressed=new o(this.compressedSize,this.uncompressedSize,this.crc32,t,e.readData(this.compressedSize))},readCentralPart:function(e){this.versionMadeBy=e.readInt(2),e.skip(2),this.bitFlag=e.readInt(2),this.compressionMethod=e.readString(2),this.date=e.readDate(),this.crc32=e.readInt(4),this.compressedSize=e.readInt(4),this.uncompressedSize=e.readInt(4);var t=e.readInt(2);if(this.extraFieldsLength=e.readInt(2),this.fileCommentLength=e.readInt(2),this.diskNumberStart=e.readInt(2),this.internalFileAttributes=e.readInt(2),this.externalFileAttributes=e.readInt(4),this.localHeaderOffset=e.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");e.skip(t),this.readExtraFields(e),this.parseZIP64ExtraField(e),this.fileComment=e.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var e=this.versionMadeBy>>8;this.dir=!!(16&this.externalFileAttributes),0==e&&(this.dosPermissions=63&this.externalFileAttributes),3==e&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(){if(this.extraFields[1]){var e=r(this.extraFields[1].value);this.uncompressedSize===n.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===n.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===n.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===n.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4))}},readExtraFields:function(e){var t,a,r,n=e.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});e.index+4<n;)t=e.readInt(2),a=e.readInt(2),r=e.readData(a),this.extraFields[t]={id:t,length:a,value:r};e.setIndex(n)},handleUTF8:function(){var e=d.uint8array?"uint8array":"array";if(this.useUTF8())this.fileNameStr=l.utf8decode(this.fileName),this.fileCommentStr=l.utf8decode(this.fileComment);else{var t=this.findExtraFieldUnicodePath();if(null!==t)this.fileNameStr=t;else{var a=n.transformTo(e,this.fileName);this.fileNameStr=this.loadOptions.decodeFileName(a)}var r=this.findExtraFieldUnicodeComment();if(null!==r)this.fileCommentStr=r;else{var o=n.transformTo(e,this.fileComment);this.fileCommentStr=this.loadOptions.decodeFileName(o)}}},findExtraFieldUnicodePath:function(){var e=this.extraFields[28789];if(e){var t=r(e.value);return 1!==t.readInt(1)||i(this.fileName)!==t.readInt(4)?null:l.utf8decode(t.readData(e.length-5))}return null},findExtraFieldUnicodeComment:function(){var e=this.extraFields[25461];if(e){var t=r(e.value);return 1!==t.readInt(1)||i(this.fileComment)!==t.readInt(4)?null:l.utf8decode(t.readData(e.length-5))}return null}},t.exports=c},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(e,t,a){function r(e,t,a){this.name=e,this.dir=a.dir,this.date=a.date,this.comment=a.comment,this.unixPermissions=a.unixPermissions,this.dosPermissions=a.dosPermissions,this._data=t,this._dataBinary=a.binary,this.options={compression:a.compression,compressionOptions:a.compressionOptions}}var n=e("./stream/StreamHelper"),o=e("./stream/DataWorker"),i=e("./utf8"),l=e("./compressedObject"),s=e("./stream/GenericWorker");r.prototype={internalStream:function(e){var t=null,a="string";try{if(!e)throw new Error("No output type specified.");var r="string"===(a=e.toLowerCase())||"text"===a;"binarystring"!==a&&"text"!==a||(a="string"),t=this._decompressWorker();var o=!this._dataBinary;o&&!r&&(t=t.pipe(new i.Utf8EncodeWorker)),!o&&r&&(t=t.pipe(new i.Utf8DecodeWorker))}catch(l){(t=new s("error")).error(l)}return new n(t,a,"")},async:function(e,t){return this.internalStream(e).accumulate(t)},nodeStream:function(e,t){return this.internalStream(e||"nodebuffer").toNodejsStream(t)},_compressWorker:function(e,t){if(this._data instanceof l&&this._data.compression.magic===e.magic)return this._data.getCompressedWorker();var a=this._decompressWorker();return this._dataBinary||(a=a.pipe(new i.Utf8EncodeWorker)),l.createWorkerFrom(a,e,t)},_decompressWorker:function(){return this._data instanceof l?this._data.getContentWorker():this._data instanceof s?this._data:new o(this._data)}};for(var d=["asText","asBinary","asNodeBuffer","asUint8Array","asArrayBuffer"],c=function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},h=0;h<d.length;h++)r.prototype[d[h]]=c;t.exports=r},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(e,t,a){(function(e){var a,r,n=e.MutationObserver||e.WebKitMutationObserver;if(n){var o=0,i=new n(c),l=e.document.createTextNode("");i.observe(l,{characterData:!0}),a=function(){l.data=o=++o%2}}else if(e.setImmediate||void 0===e.MessageChannel)a="document"in e&&"onreadystatechange"in e.document.createElement("script")?function(){var t=e.document.createElement("script");t.onreadystatechange=function(){c(),t.onreadystatechange=null,t.parentNode.removeChild(t),t=null},e.document.documentElement.appendChild(t)}:function(){setTimeout(c,0)};else{var s=new e.MessageChannel;s.port1.onmessage=c,a=function(){s.port2.postMessage(0)}}var d=[];function c(){var e,t;r=!0;for(var a=d.length;a;){for(t=d,d=[],e=-1;++e<a;)t[e]();a=d.length}r=!1}t.exports=function(e){1!==d.push(e)||r||a()}}).call(this,void 0!==ul?ul:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],37:[function(e,t,a){var r=e("immediate");function n(){}var o={},i=["REJECTED"],l=["FULFILLED"],s=["PENDING"];function d(e){if("function"!=typeof e)throw new TypeError("resolver must be a function");this.state=s,this.queue=[],this.outcome=void 0,e!==n&&u(this,e)}function c(e,t,a){this.promise=e,"function"==typeof t&&(this.onFulfilled=t,this.callFulfilled=this.otherCallFulfilled),"function"==typeof a&&(this.onRejected=a,this.callRejected=this.otherCallRejected)}function h(e,t,a){r(function(){var r;try{r=t(a)}catch(n){return o.reject(e,n)}r===e?o.reject(e,new TypeError("Cannot resolve promise with itself")):o.resolve(e,r)})}function p(e){var t=e&&e.then;if(e&&("object"==typeof e||"function"==typeof e)&&"function"==typeof t)return function(){t.apply(e,arguments)}}function u(e,t){var a=!1;function r(t){a||(a=!0,o.reject(e,t))}function n(t){a||(a=!0,o.resolve(e,t))}var i=f(function(){t(n,r)});"error"===i.status&&r(i.value)}function f(e,t){var a={};try{a.value=e(t),a.status="success"}catch(r){a.status="error",a.value=r}return a}(t.exports=d).prototype.finally=function(e){if("function"!=typeof e)return this;var t=this.constructor;return this.then(function(a){return t.resolve(e()).then(function(){return a})},function(a){return t.resolve(e()).then(function(){throw a})})},d.prototype.catch=function(e){return this.then(null,e)},d.prototype.then=function(e,t){if("function"!=typeof e&&this.state===l||"function"!=typeof t&&this.state===i)return this;var a=new this.constructor(n);return this.state!==s?h(a,this.state===l?e:t,this.outcome):this.queue.push(new c(a,e,t)),a},c.prototype.callFulfilled=function(e){o.resolve(this.promise,e)},c.prototype.otherCallFulfilled=function(e){h(this.promise,this.onFulfilled,e)},c.prototype.callRejected=function(e){o.reject(this.promise,e)},c.prototype.otherCallRejected=function(e){h(this.promise,this.onRejected,e)},o.resolve=function(e,t){var a=f(p,t);if("error"===a.status)return o.reject(e,a.value);var r=a.value;if(r)u(e,r);else{e.state=l,e.outcome=t;for(var n=-1,i=e.queue.length;++n<i;)e.queue[n].callFulfilled(t)}return e},o.reject=function(e,t){e.state=i,e.outcome=t;for(var a=-1,r=e.queue.length;++a<r;)e.queue[a].callRejected(t);return e},d.resolve=function(e){return e instanceof this?e:o.resolve(new this(n),e)},d.reject=function(e){var t=new this(n);return o.reject(t,e)},d.all=function(e){var t=this;if("[object Array]"!==Object.prototype.toString.call(e))return this.reject(new TypeError("must be an array"));var a=e.length,r=!1;if(!a)return this.resolve([]);for(var i=new Array(a),l=0,s=-1,d=new this(n);++s<a;)c(e[s],s);return d;function c(e,n){t.resolve(e).then(function(e){i[n]=e,++l!==a||r||(r=!0,o.resolve(d,i))},function(e){r||(r=!0,o.reject(d,e))})}},d.race=function(e){var t=this;if("[object Array]"!==Object.prototype.toString.call(e))return this.reject(new TypeError("must be an array"));var a=e.length,r=!1;if(!a)return this.resolve([]);for(var i,l=-1,s=new this(n);++l<a;)i=e[l],t.resolve(i).then(function(e){r||(r=!0,o.resolve(s,e))},function(e){r||(r=!0,o.reject(s,e))});return s}},{immediate:36}],38:[function(e,t,a){var r={};(0,e("./lib/utils/common").assign)(r,e("./lib/deflate"),e("./lib/inflate"),e("./lib/zlib/constants")),t.exports=r},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(e,t,a){var r=e("./zlib/deflate"),n=e("./utils/common"),o=e("./utils/strings"),i=e("./zlib/messages"),l=e("./zlib/zstream"),s=Object.prototype.toString,d=0,c=-1,h=0,p=8;function u(e){if(!(this instanceof u))return new u(e);this.options=n.assign({level:c,method:p,chunkSize:16384,windowBits:15,memLevel:8,strategy:h,to:""},e||{});var t=this.options;t.raw&&0<t.windowBits?t.windowBits=-t.windowBits:t.gzip&&0<t.windowBits&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new l,this.strm.avail_out=0;var a=r.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(a!==d)throw new Error(i[a]);if(t.header&&r.deflateSetHeader(this.strm,t.header),t.dictionary){var f;if(f="string"==typeof t.dictionary?o.string2buf(t.dictionary):"[object ArrayBuffer]"===s.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,(a=r.deflateSetDictionary(this.strm,f))!==d)throw new Error(i[a]);this._dict_set=!0}}function f(e,t){var a=new u(t);if(a.push(e,!0),a.err)throw a.msg||i[a.err];return a.result}u.prototype.push=function(e,t){var a,i,l=this.strm,c=this.options.chunkSize;if(this.ended)return!1;i=t===~~t?t:!0===t?4:0,"string"==typeof e?l.input=o.string2buf(e):"[object ArrayBuffer]"===s.call(e)?l.input=new Uint8Array(e):l.input=e,l.next_in=0,l.avail_in=l.input.length;do{if(0===l.avail_out&&(l.output=new n.Buf8(c),l.next_out=0,l.avail_out=c),1!==(a=r.deflate(l,i))&&a!==d)return this.onEnd(a),!(this.ended=!0);0!==l.avail_out&&(0!==l.avail_in||4!==i&&2!==i)||("string"===this.options.to?this.onData(o.buf2binstring(n.shrinkBuf(l.output,l.next_out))):this.onData(n.shrinkBuf(l.output,l.next_out)))}while((0<l.avail_in||0===l.avail_out)&&1!==a);return 4===i?(a=r.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===d):2!==i||(this.onEnd(d),!(l.avail_out=0))},u.prototype.onData=function(e){this.chunks.push(e)},u.prototype.onEnd=function(e){e===d&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=n.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},a.Deflate=u,a.deflate=f,a.deflateRaw=function(e,t){return(t=t||{}).raw=!0,f(e,t)},a.gzip=function(e,t){return(t=t||{}).gzip=!0,f(e,t)}},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(e,t,a){var r=e("./zlib/inflate"),n=e("./utils/common"),o=e("./utils/strings"),i=e("./zlib/constants"),l=e("./zlib/messages"),s=e("./zlib/zstream"),d=e("./zlib/gzheader"),c=Object.prototype.toString;function h(e){if(!(this instanceof h))return new h(e);this.options=n.assign({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&0<=t.windowBits&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(0<=t.windowBits&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),15<t.windowBits&&t.windowBits<48&&!(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;var a=r.inflateInit2(this.strm,t.windowBits);if(a!==i.Z_OK)throw new Error(l[a]);this.header=new d,r.inflateGetHeader(this.strm,this.header)}function p(e,t){var a=new h(t);if(a.push(e,!0),a.err)throw a.msg||l[a.err];return a.result}h.prototype.push=function(e,t){var a,l,s,d,h,p,u=this.strm,f=this.options.chunkSize,g=this.options.dictionary,m=!1;if(this.ended)return!1;l=t===~~t?t:!0===t?i.Z_FINISH:i.Z_NO_FLUSH,"string"==typeof e?u.input=o.binstring2buf(e):"[object ArrayBuffer]"===c.call(e)?u.input=new Uint8Array(e):u.input=e,u.next_in=0,u.avail_in=u.input.length;do{if(0===u.avail_out&&(u.output=new n.Buf8(f),u.next_out=0,u.avail_out=f),(a=r.inflate(u,i.Z_NO_FLUSH))===i.Z_NEED_DICT&&g&&(p="string"==typeof g?o.string2buf(g):"[object ArrayBuffer]"===c.call(g)?new Uint8Array(g):g,a=r.inflateSetDictionary(this.strm,p)),a===i.Z_BUF_ERROR&&!0===m&&(a=i.Z_OK,m=!1),a!==i.Z_STREAM_END&&a!==i.Z_OK)return this.onEnd(a),!(this.ended=!0);u.next_out&&(0!==u.avail_out&&a!==i.Z_STREAM_END&&(0!==u.avail_in||l!==i.Z_FINISH&&l!==i.Z_SYNC_FLUSH)||("string"===this.options.to?(s=o.utf8border(u.output,u.next_out),d=u.next_out-s,h=o.buf2string(u.output,s),u.next_out=d,u.avail_out=f-d,d&&n.arraySet(u.output,u.output,s,d,0),this.onData(h)):this.onData(n.shrinkBuf(u.output,u.next_out)))),0===u.avail_in&&0===u.avail_out&&(m=!0)}while((0<u.avail_in||0===u.avail_out)&&a!==i.Z_STREAM_END);return a===i.Z_STREAM_END&&(l=i.Z_FINISH),l===i.Z_FINISH?(a=r.inflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===i.Z_OK):l!==i.Z_SYNC_FLUSH||(this.onEnd(i.Z_OK),!(u.avail_out=0))},h.prototype.onData=function(e){this.chunks.push(e)},h.prototype.onEnd=function(e){e===i.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=n.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},a.Inflate=h,a.inflate=p,a.inflateRaw=function(e,t){return(t=t||{}).raw=!0,p(e,t)},a.ungzip=p},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(e,t,a){var r="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;a.assign=function(e){for(var t=Array.prototype.slice.call(arguments,1);t.length;){var a=t.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(var r in a)a.hasOwnProperty(r)&&(e[r]=a[r])}}return e},a.shrinkBuf=function(e,t){return e.length===t?e:e.subarray?e.subarray(0,t):(e.length=t,e)};var n={arraySet:function(e,t,a,r,n){if(t.subarray&&e.subarray)e.set(t.subarray(a,a+r),n);else for(var o=0;o<r;o++)e[n+o]=t[a+o]},flattenChunks:function(e){var t,a,r,n,o,i;for(t=r=0,a=e.length;t<a;t++)r+=e[t].length;for(i=new Uint8Array(r),t=n=0,a=e.length;t<a;t++)o=e[t],i.set(o,n),n+=o.length;return i}},o={arraySet:function(e,t,a,r,n){for(var o=0;o<r;o++)e[n+o]=t[a+o]},flattenChunks:function(e){return[].concat.apply([],e)}};a.setTyped=function(e){e?(a.Buf8=Uint8Array,a.Buf16=Uint16Array,a.Buf32=Int32Array,a.assign(a,n)):(a.Buf8=Array,a.Buf16=Array,a.Buf32=Array,a.assign(a,o))},a.setTyped(r)},{}],42:[function(e,t,a){var r=e("./common"),n=!0,o=!0;try{String.fromCharCode.apply(null,[0])}catch(d){n=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(d){o=!1}for(var i=new r.Buf8(256),l=0;l<256;l++)i[l]=252<=l?6:248<=l?5:240<=l?4:224<=l?3:192<=l?2:1;function s(e,t){if(t<65537&&(e.subarray&&o||!e.subarray&&n))return String.fromCharCode.apply(null,r.shrinkBuf(e,t));for(var a="",i=0;i<t;i++)a+=String.fromCharCode(e[i]);return a}i[254]=i[254]=1,a.string2buf=function(e){var t,a,n,o,i,l=e.length,s=0;for(o=0;o<l;o++)55296==(64512&(a=e.charCodeAt(o)))&&o+1<l&&56320==(64512&(n=e.charCodeAt(o+1)))&&(a=65536+(a-55296<<10)+(n-56320),o++),s+=a<128?1:a<2048?2:a<65536?3:4;for(t=new r.Buf8(s),o=i=0;i<s;o++)55296==(64512&(a=e.charCodeAt(o)))&&o+1<l&&56320==(64512&(n=e.charCodeAt(o+1)))&&(a=65536+(a-55296<<10)+(n-56320),o++),a<128?t[i++]=a:(a<2048?t[i++]=192|a>>>6:(a<65536?t[i++]=224|a>>>12:(t[i++]=240|a>>>18,t[i++]=128|a>>>12&63),t[i++]=128|a>>>6&63),t[i++]=128|63&a);return t},a.buf2binstring=function(e){return s(e,e.length)},a.binstring2buf=function(e){for(var t=new r.Buf8(e.length),a=0,n=t.length;a<n;a++)t[a]=e.charCodeAt(a);return t},a.buf2string=function(e,t){var a,r,n,o,l=t||e.length,d=new Array(2*l);for(a=r=0;a<l;)if((n=e[a++])<128)d[r++]=n;else if(4<(o=i[n]))d[r++]=65533,a+=o-1;else{for(n&=2===o?31:3===o?15:7;1<o&&a<l;)n=n<<6|63&e[a++],o--;1<o?d[r++]=65533:n<65536?d[r++]=n:(n-=65536,d[r++]=55296|n>>10&1023,d[r++]=56320|1023&n)}return s(d,r)},a.utf8border=function(e,t){var a;for((t=t||e.length)>e.length&&(t=e.length),a=t-1;0<=a&&128==(192&e[a]);)a--;return a<0||0===a?t:a+i[e[a]]>t?a:t}},{"./common":41}],43:[function(e,t,a){t.exports=function(e,t,a,r){for(var n=65535&e,o=e>>>16&65535,i=0;0!==a;){for(a-=i=2e3<a?2e3:a;o=o+(n=n+t[r++]|0)|0,--i;);n%=65521,o%=65521}return n|o<<16}},{}],44:[function(e,t,a){t.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],45:[function(e,t,a){var r=function(){for(var e,t=[],a=0;a<256;a++){e=a;for(var r=0;r<8;r++)e=1&e?3988292384^e>>>1:e>>>1;t[a]=e}return t}();t.exports=function(e,t,a,n){var o=r,i=n+a;e^=-1;for(var l=n;l<i;l++)e=e>>>8^o[255&(e^t[l])];return-1^e}},{}],46:[function(e,t,a){var r,n=e("../utils/common"),o=e("./trees"),i=e("./adler32"),l=e("./crc32"),s=e("./messages"),d=0,c=4,h=0,p=-2,u=-1,f=4,g=2,m=8,v=9,y=286,b=30,M=19,w=2*y+1,x=15,C=3,S=258,I=S+C+1,k=42,A=113,T=1,P=2,E=3,L=4;function O(e,t){return e.msg=s[t],t}function R(e){return(e<<1)-(4<e?9:0)}function H(e){for(var t=e.length;0<=--t;)e[t]=0}function N(e){var t=e.state,a=t.pending;a>e.avail_out&&(a=e.avail_out),0!==a&&(n.arraySet(e.output,t.pending_buf,t.pending_out,a,e.next_out),e.next_out+=a,t.pending_out+=a,e.total_out+=a,e.avail_out-=a,t.pending-=a,0===t.pending&&(t.pending_out=0))}function D(e,t){o._tr_flush_block(e,0<=e.block_start?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,N(e.strm)}function F(e,t){e.pending_buf[e.pending++]=t}function B(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function V(e,t){var a,r,n=e.max_chain_length,o=e.strstart,i=e.prev_length,l=e.nice_match,s=e.strstart>e.w_size-I?e.strstart-(e.w_size-I):0,d=e.window,c=e.w_mask,h=e.prev,p=e.strstart+S,u=d[o+i-1],f=d[o+i];e.prev_length>=e.good_match&&(n>>=2),l>e.lookahead&&(l=e.lookahead);do{if(d[(a=t)+i]===f&&d[a+i-1]===u&&d[a]===d[o]&&d[++a]===d[o+1]){o+=2,a++;do{}while(d[++o]===d[++a]&&d[++o]===d[++a]&&d[++o]===d[++a]&&d[++o]===d[++a]&&d[++o]===d[++a]&&d[++o]===d[++a]&&d[++o]===d[++a]&&d[++o]===d[++a]&&o<p);if(r=S-(p-o),o=p-S,i<r){if(e.match_start=t,l<=(i=r))break;u=d[o+i-1],f=d[o+i]}}}while((t=h[t&c])>s&&0!=--n);return i<=e.lookahead?i:e.lookahead}function z(e){var t,a,r,o,s,d,c,h,p,u,f=e.w_size;do{if(o=e.window_size-e.lookahead-e.strstart,e.strstart>=f+(f-I)){for(n.arraySet(e.window,e.window,f,f,0),e.match_start-=f,e.strstart-=f,e.block_start-=f,t=a=e.hash_size;r=e.head[--t],e.head[t]=f<=r?r-f:0,--a;);for(t=a=f;r=e.prev[--t],e.prev[t]=f<=r?r-f:0,--a;);o+=f}if(0===e.strm.avail_in)break;if(d=e.strm,c=e.window,h=e.strstart+e.lookahead,u=void 0,(p=o)<(u=d.avail_in)&&(u=p),a=0===u?0:(d.avail_in-=u,n.arraySet(c,d.input,d.next_in,u,h),1===d.state.wrap?d.adler=i(d.adler,c,u,h):2===d.state.wrap&&(d.adler=l(d.adler,c,u,h)),d.next_in+=u,d.total_in+=u,u),e.lookahead+=a,e.lookahead+e.insert>=C)for(s=e.strstart-e.insert,e.ins_h=e.window[s],e.ins_h=(e.ins_h<<e.hash_shift^e.window[s+1])&e.hash_mask;e.insert&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[s+C-1])&e.hash_mask,e.prev[s&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=s,s++,e.insert--,!(e.lookahead+e.insert<C)););}while(e.lookahead<I&&0!==e.strm.avail_in)}function _(e,t){for(var a,r;;){if(e.lookahead<I){if(z(e),e.lookahead<I&&t===d)return T;if(0===e.lookahead)break}if(a=0,e.lookahead>=C&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+C-1])&e.hash_mask,a=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!==a&&e.strstart-a<=e.w_size-I&&(e.match_length=V(e,a)),e.match_length>=C)if(r=o._tr_tally(e,e.strstart-e.match_start,e.match_length-C),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=C){for(e.match_length--;e.strstart++,e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+C-1])&e.hash_mask,a=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart,0!=--e.match_length;);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+1])&e.hash_mask;else r=o._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(r&&(D(e,!1),0===e.strm.avail_out))return T}return e.insert=e.strstart<C-1?e.strstart:C-1,t===c?(D(e,!0),0===e.strm.avail_out?E:L):e.last_lit&&(D(e,!1),0===e.strm.avail_out)?T:P}function U(e,t){for(var a,r,n;;){if(e.lookahead<I){if(z(e),e.lookahead<I&&t===d)return T;if(0===e.lookahead)break}if(a=0,e.lookahead>=C&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+C-1])&e.hash_mask,a=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=C-1,0!==a&&e.prev_length<e.max_lazy_match&&e.strstart-a<=e.w_size-I&&(e.match_length=V(e,a),e.match_length<=5&&(1===e.strategy||e.match_length===C&&4096<e.strstart-e.match_start)&&(e.match_length=C-1)),e.prev_length>=C&&e.match_length<=e.prev_length){for(n=e.strstart+e.lookahead-C,r=o._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-C),e.lookahead-=e.prev_length-1,e.prev_length-=2;++e.strstart<=n&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+C-1])&e.hash_mask,a=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!=--e.prev_length;);if(e.match_available=0,e.match_length=C-1,e.strstart++,r&&(D(e,!1),0===e.strm.avail_out))return T}else if(e.match_available){if((r=o._tr_tally(e,0,e.window[e.strstart-1]))&&D(e,!1),e.strstart++,e.lookahead--,0===e.strm.avail_out)return T}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(r=o._tr_tally(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart<C-1?e.strstart:C-1,t===c?(D(e,!0),0===e.strm.avail_out?E:L):e.last_lit&&(D(e,!1),0===e.strm.avail_out)?T:P}function q(e,t,a,r,n){this.good_length=e,this.max_lazy=t,this.nice_length=a,this.max_chain=r,this.func=n}function G(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=m,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new n.Buf16(2*w),this.dyn_dtree=new n.Buf16(2*(2*b+1)),this.bl_tree=new n.Buf16(2*(2*M+1)),H(this.dyn_ltree),H(this.dyn_dtree),H(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new n.Buf16(x+1),this.heap=new n.Buf16(2*y+1),H(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new n.Buf16(2*y+1),H(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function W(e){var t;return e&&e.state?(e.total_in=e.total_out=0,e.data_type=g,(t=e.state).pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?k:A,e.adler=2===t.wrap?0:1,t.last_flush=d,o._tr_init(t),h):O(e,p)}function j(e){var t,a=W(e);return a===h&&((t=e.state).window_size=2*t.w_size,H(t.head),t.max_lazy_match=r[t.level].max_lazy,t.good_match=r[t.level].good_length,t.nice_match=r[t.level].nice_length,t.max_chain_length=r[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=C-1,t.match_available=0,t.ins_h=0),a}function X(e,t,a,r,o,i){if(!e)return p;var l=1;if(t===u&&(t=6),r<0?(l=0,r=-r):15<r&&(l=2,r-=16),o<1||v<o||a!==m||r<8||15<r||t<0||9<t||i<0||f<i)return O(e,p);8===r&&(r=9);var s=new G;return(e.state=s).strm=e,s.wrap=l,s.gzhead=null,s.w_bits=r,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=o+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+C-1)/C),s.window=new n.Buf8(2*s.w_size),s.head=new n.Buf16(s.hash_size),s.prev=new n.Buf16(s.w_size),s.lit_bufsize=1<<o+6,s.pending_buf_size=4*s.lit_bufsize,s.pending_buf=new n.Buf8(s.pending_buf_size),s.d_buf=1*s.lit_bufsize,s.l_buf=3*s.lit_bufsize,s.level=t,s.strategy=i,s.method=a,j(e)}r=[new q(0,0,0,0,function(e,t){var a=65535;for(a>e.pending_buf_size-5&&(a=e.pending_buf_size-5);;){if(e.lookahead<=1){if(z(e),0===e.lookahead&&t===d)return T;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var r=e.block_start+a;if((0===e.strstart||e.strstart>=r)&&(e.lookahead=e.strstart-r,e.strstart=r,D(e,!1),0===e.strm.avail_out))return T;if(e.strstart-e.block_start>=e.w_size-I&&(D(e,!1),0===e.strm.avail_out))return T}return e.insert=0,t===c?(D(e,!0),0===e.strm.avail_out?E:L):(e.strstart>e.block_start&&(D(e,!1),e.strm.avail_out),T)}),new q(4,4,8,4,_),new q(4,5,16,8,_),new q(4,6,32,32,_),new q(4,4,16,16,U),new q(8,16,32,32,U),new q(8,16,128,128,U),new q(8,32,128,256,U),new q(32,128,258,1024,U),new q(32,258,258,4096,U)],a.deflateInit=function(e,t){return X(e,t,m,15,8,0)},a.deflateInit2=X,a.deflateReset=j,a.deflateResetKeep=W,a.deflateSetHeader=function(e,t){return e&&e.state?2!==e.state.wrap?p:(e.state.gzhead=t,h):p},a.deflate=function(e,t){var a,n,i,s;if(!e||!e.state||5<t||t<0)return e?O(e,p):p;if(n=e.state,!e.output||!e.input&&0!==e.avail_in||666===n.status&&t!==c)return O(e,0===e.avail_out?-5:p);if(n.strm=e,a=n.last_flush,n.last_flush=t,n.status===k)if(2===n.wrap)e.adler=0,F(n,31),F(n,139),F(n,8),n.gzhead?(F(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),F(n,255&n.gzhead.time),F(n,n.gzhead.time>>8&255),F(n,n.gzhead.time>>16&255),F(n,n.gzhead.time>>24&255),F(n,9===n.level?2:2<=n.strategy||n.level<2?4:0),F(n,255&n.gzhead.os),n.gzhead.extra&&n.gzhead.extra.length&&(F(n,255&n.gzhead.extra.length),F(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(e.adler=l(e.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=69):(F(n,0),F(n,0),F(n,0),F(n,0),F(n,0),F(n,9===n.level?2:2<=n.strategy||n.level<2?4:0),F(n,3),n.status=A);else{var u=m+(n.w_bits-8<<4)<<8;u|=(2<=n.strategy||n.level<2?0:n.level<6?1:6===n.level?2:3)<<6,0!==n.strstart&&(u|=32),u+=31-u%31,n.status=A,B(n,u),0!==n.strstart&&(B(n,e.adler>>>16),B(n,65535&e.adler)),e.adler=1}if(69===n.status)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(65535&n.gzhead.extra.length)&&(n.pending!==n.pending_buf_size||(n.gzhead.hcrc&&n.pending>i&&(e.adler=l(e.adler,n.pending_buf,n.pending-i,i)),N(e),i=n.pending,n.pending!==n.pending_buf_size));)F(n,255&n.gzhead.extra[n.gzindex]),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(e.adler=l(e.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=73)}else n.status=73;if(73===n.status)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(e.adler=l(e.adler,n.pending_buf,n.pending-i,i)),N(e),i=n.pending,n.pending===n.pending_buf_size)){s=1;break}s=n.gzindex<n.gzhead.name.length?255&n.gzhead.name.charCodeAt(n.gzindex++):0,F(n,s)}while(0!==s);n.gzhead.hcrc&&n.pending>i&&(e.adler=l(e.adler,n.pending_buf,n.pending-i,i)),0===s&&(n.gzindex=0,n.status=91)}else n.status=91;if(91===n.status)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(e.adler=l(e.adler,n.pending_buf,n.pending-i,i)),N(e),i=n.pending,n.pending===n.pending_buf_size)){s=1;break}s=n.gzindex<n.gzhead.comment.length?255&n.gzhead.comment.charCodeAt(n.gzindex++):0,F(n,s)}while(0!==s);n.gzhead.hcrc&&n.pending>i&&(e.adler=l(e.adler,n.pending_buf,n.pending-i,i)),0===s&&(n.status=103)}else n.status=103;if(103===n.status&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&N(e),n.pending+2<=n.pending_buf_size&&(F(n,255&e.adler),F(n,e.adler>>8&255),e.adler=0,n.status=A)):n.status=A),0!==n.pending){if(N(e),0===e.avail_out)return n.last_flush=-1,h}else if(0===e.avail_in&&R(t)<=R(a)&&t!==c)return O(e,-5);if(666===n.status&&0!==e.avail_in)return O(e,-5);if(0!==e.avail_in||0!==n.lookahead||t!==d&&666!==n.status){var f=2===n.strategy?function(e,t){for(var a;;){if(0===e.lookahead&&(z(e),0===e.lookahead)){if(t===d)return T;break}if(e.match_length=0,a=o._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,a&&(D(e,!1),0===e.strm.avail_out))return T}return e.insert=0,t===c?(D(e,!0),0===e.strm.avail_out?E:L):e.last_lit&&(D(e,!1),0===e.strm.avail_out)?T:P}(n,t):3===n.strategy?function(e,t){for(var a,r,n,i,l=e.window;;){if(e.lookahead<=S){if(z(e),e.lookahead<=S&&t===d)return T;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=C&&0<e.strstart&&(r=l[n=e.strstart-1])===l[++n]&&r===l[++n]&&r===l[++n]){i=e.strstart+S;do{}while(r===l[++n]&&r===l[++n]&&r===l[++n]&&r===l[++n]&&r===l[++n]&&r===l[++n]&&r===l[++n]&&r===l[++n]&&n<i);e.match_length=S-(i-n),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=C?(a=o._tr_tally(e,1,e.match_length-C),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(a=o._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),a&&(D(e,!1),0===e.strm.avail_out))return T}return e.insert=0,t===c?(D(e,!0),0===e.strm.avail_out?E:L):e.last_lit&&(D(e,!1),0===e.strm.avail_out)?T:P}(n,t):r[n.level].func(n,t);if(f!==E&&f!==L||(n.status=666),f===T||f===E)return 0===e.avail_out&&(n.last_flush=-1),h;if(f===P&&(1===t?o._tr_align(n):5!==t&&(o._tr_stored_block(n,0,0,!1),3===t&&(H(n.head),0===n.lookahead&&(n.strstart=0,n.block_start=0,n.insert=0))),N(e),0===e.avail_out))return n.last_flush=-1,h}return t!==c?h:n.wrap<=0?1:(2===n.wrap?(F(n,255&e.adler),F(n,e.adler>>8&255),F(n,e.adler>>16&255),F(n,e.adler>>24&255),F(n,255&e.total_in),F(n,e.total_in>>8&255),F(n,e.total_in>>16&255),F(n,e.total_in>>24&255)):(B(n,e.adler>>>16),B(n,65535&e.adler)),N(e),0<n.wrap&&(n.wrap=-n.wrap),0!==n.pending?h:1)},a.deflateEnd=function(e){var t;return e&&e.state?(t=e.state.status)!==k&&69!==t&&73!==t&&91!==t&&103!==t&&t!==A&&666!==t?O(e,p):(e.state=null,t===A?O(e,-3):h):p},a.deflateSetDictionary=function(e,t){var a,r,o,l,s,d,c,u,f=t.length;if(!e||!e.state)return p;if(2===(l=(a=e.state).wrap)||1===l&&a.status!==k||a.lookahead)return p;for(1===l&&(e.adler=i(e.adler,t,f,0)),a.wrap=0,f>=a.w_size&&(0===l&&(H(a.head),a.strstart=0,a.block_start=0,a.insert=0),u=new n.Buf8(a.w_size),n.arraySet(u,t,f-a.w_size,a.w_size,0),t=u,f=a.w_size),s=e.avail_in,d=e.next_in,c=e.input,e.avail_in=f,e.next_in=0,e.input=t,z(a);a.lookahead>=C;){for(r=a.strstart,o=a.lookahead-(C-1);a.ins_h=(a.ins_h<<a.hash_shift^a.window[r+C-1])&a.hash_mask,a.prev[r&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=r,r++,--o;);a.strstart=r,a.lookahead=C-1,z(a)}return a.strstart+=a.lookahead,a.block_start=a.strstart,a.insert=a.lookahead,a.lookahead=0,a.match_length=a.prev_length=C-1,a.match_available=0,e.next_in=d,e.input=c,e.avail_in=s,a.wrap=l,h},a.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(e,t,a){t.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},{}],48:[function(e,t,a){t.exports=function(e,t){var a,r,n,o,i,l,s,d,c,h,p,u,f,g,m,v,y,b,M,w,x,C,S,I,k;a=e.state,r=e.next_in,I=e.input,n=r+(e.avail_in-5),o=e.next_out,k=e.output,i=o-(t-e.avail_out),l=o+(e.avail_out-257),s=a.dmax,d=a.wsize,c=a.whave,h=a.wnext,p=a.window,u=a.hold,f=a.bits,g=a.lencode,m=a.distcode,v=(1<<a.lenbits)-1,y=(1<<a.distbits)-1;e:do{f<15&&(u+=I[r++]<<f,f+=8,u+=I[r++]<<f,f+=8),b=g[u&v];t:for(;;){if(u>>>=M=b>>>24,f-=M,0==(M=b>>>16&255))k[o++]=65535&b;else{if(!(16&M)){if(!(64&M)){b=g[(65535&b)+(u&(1<<M)-1)];continue t}if(32&M){a.mode=12;break e}e.msg="invalid literal/length code",a.mode=30;break e}w=65535&b,(M&=15)&&(f<M&&(u+=I[r++]<<f,f+=8),w+=u&(1<<M)-1,u>>>=M,f-=M),f<15&&(u+=I[r++]<<f,f+=8,u+=I[r++]<<f,f+=8),b=m[u&y];a:for(;;){if(u>>>=M=b>>>24,f-=M,!(16&(M=b>>>16&255))){if(!(64&M)){b=m[(65535&b)+(u&(1<<M)-1)];continue a}e.msg="invalid distance code",a.mode=30;break e}if(x=65535&b,f<(M&=15)&&(u+=I[r++]<<f,(f+=8)<M&&(u+=I[r++]<<f,f+=8)),s<(x+=u&(1<<M)-1)){e.msg="invalid distance too far back",a.mode=30;break e}if(u>>>=M,f-=M,(M=o-i)<x){if(c<(M=x-M)&&a.sane){e.msg="invalid distance too far back",a.mode=30;break e}if(S=p,(C=0)===h){if(C+=d-M,M<w){for(w-=M;k[o++]=p[C++],--M;);C=o-x,S=k}}else if(h<M){if(C+=d+h-M,(M-=h)<w){for(w-=M;k[o++]=p[C++],--M;);if(C=0,h<w){for(w-=M=h;k[o++]=p[C++],--M;);C=o-x,S=k}}}else if(C+=h-M,M<w){for(w-=M;k[o++]=p[C++],--M;);C=o-x,S=k}for(;2<w;)k[o++]=S[C++],k[o++]=S[C++],k[o++]=S[C++],w-=3;w&&(k[o++]=S[C++],1<w&&(k[o++]=S[C++]))}else{for(C=o-x;k[o++]=k[C++],k[o++]=k[C++],k[o++]=k[C++],2<(w-=3););w&&(k[o++]=k[C++],1<w&&(k[o++]=k[C++]))}break}}break}}while(r<n&&o<l);r-=w=f>>3,u&=(1<<(f-=w<<3))-1,e.next_in=r,e.next_out=o,e.avail_in=r<n?n-r+5:5-(r-n),e.avail_out=o<l?l-o+257:257-(o-l),a.hold=u,a.bits=f}},{}],49:[function(e,t,a){var r=e("../utils/common"),n=e("./adler32"),o=e("./crc32"),i=e("./inffast"),l=e("./inftrees"),s=1,d=2,c=0,h=-2,p=1,u=852,f=592;function g(e){return(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function m(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new r.Buf16(320),this.work=new r.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function v(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=p,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new r.Buf32(u),t.distcode=t.distdyn=new r.Buf32(f),t.sane=1,t.back=-1,c):h}function y(e){var t;return e&&e.state?((t=e.state).wsize=0,t.whave=0,t.wnext=0,v(e)):h}function b(e,t){var a,r;return e&&e.state?(r=e.state,t<0?(a=0,t=-t):(a=1+(t>>4),t<48&&(t&=15)),t&&(t<8||15<t)?h:(null!==r.window&&r.wbits!==t&&(r.window=null),r.wrap=a,r.wbits=t,y(e))):h}function M(e,t){var a,r;return e?(r=new m,(e.state=r).window=null,(a=b(e,t))!==c&&(e.state=null),a):h}var w,x,C=!0;function S(e){if(C){var t;for(w=new r.Buf32(512),x=new r.Buf32(32),t=0;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(l(s,e.lens,0,288,w,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;l(d,e.lens,0,32,x,0,e.work,{bits:5}),C=!1}e.lencode=w,e.lenbits=9,e.distcode=x,e.distbits=5}function I(e,t,a,n){var o,i=e.state;return null===i.window&&(i.wsize=1<<i.wbits,i.wnext=0,i.whave=0,i.window=new r.Buf8(i.wsize)),n>=i.wsize?(r.arraySet(i.window,t,a-i.wsize,i.wsize,0),i.wnext=0,i.whave=i.wsize):(n<(o=i.wsize-i.wnext)&&(o=n),r.arraySet(i.window,t,a-n,o,i.wnext),(n-=o)?(r.arraySet(i.window,t,a-n,n,0),i.wnext=n,i.whave=i.wsize):(i.wnext+=o,i.wnext===i.wsize&&(i.wnext=0),i.whave<i.wsize&&(i.whave+=o))),0}a.inflateReset=y,a.inflateReset2=b,a.inflateResetKeep=v,a.inflateInit=function(e){return M(e,15)},a.inflateInit2=M,a.inflate=function(e,t){var a,u,f,m,v,y,b,M,w,x,C,k,A,T,P,E,L,O,R,H,N,D,F,B,V=0,z=new r.Buf8(4),_=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!e||!e.state||!e.output||!e.input&&0!==e.avail_in)return h;12===(a=e.state).mode&&(a.mode=13),v=e.next_out,f=e.output,b=e.avail_out,m=e.next_in,u=e.input,y=e.avail_in,M=a.hold,w=a.bits,x=y,C=b,D=c;e:for(;;)switch(a.mode){case p:if(0===a.wrap){a.mode=13;break}for(;w<16;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(2&a.wrap&&35615===M){z[a.check=0]=255&M,z[1]=M>>>8&255,a.check=o(a.check,z,2,0),w=M=0,a.mode=2;break}if(a.flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&M)<<8)+(M>>8))%31){e.msg="incorrect header check",a.mode=30;break}if(8!=(15&M)){e.msg="unknown compression method",a.mode=30;break}if(w-=4,N=8+(15&(M>>>=4)),0===a.wbits)a.wbits=N;else if(N>a.wbits){e.msg="invalid window size",a.mode=30;break}a.dmax=1<<N,e.adler=a.check=1,a.mode=512&M?10:12,w=M=0;break;case 2:for(;w<16;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(a.flags=M,8!=(255&a.flags)){e.msg="unknown compression method",a.mode=30;break}if(57344&a.flags){e.msg="unknown header flags set",a.mode=30;break}a.head&&(a.head.text=M>>8&1),512&a.flags&&(z[0]=255&M,z[1]=M>>>8&255,a.check=o(a.check,z,2,0)),w=M=0,a.mode=3;case 3:for(;w<32;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}a.head&&(a.head.time=M),512&a.flags&&(z[0]=255&M,z[1]=M>>>8&255,z[2]=M>>>16&255,z[3]=M>>>24&255,a.check=o(a.check,z,4,0)),w=M=0,a.mode=4;case 4:for(;w<16;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}a.head&&(a.head.xflags=255&M,a.head.os=M>>8),512&a.flags&&(z[0]=255&M,z[1]=M>>>8&255,a.check=o(a.check,z,2,0)),w=M=0,a.mode=5;case 5:if(1024&a.flags){for(;w<16;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}a.length=M,a.head&&(a.head.extra_len=M),512&a.flags&&(z[0]=255&M,z[1]=M>>>8&255,a.check=o(a.check,z,2,0)),w=M=0}else a.head&&(a.head.extra=null);a.mode=6;case 6:if(1024&a.flags&&(y<(k=a.length)&&(k=y),k&&(a.head&&(N=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Array(a.head.extra_len)),r.arraySet(a.head.extra,u,m,k,N)),512&a.flags&&(a.check=o(a.check,u,k,m)),y-=k,m+=k,a.length-=k),a.length))break e;a.length=0,a.mode=7;case 7:if(2048&a.flags){if(0===y)break e;for(k=0;N=u[m+k++],a.head&&N&&a.length<65536&&(a.head.name+=String.fromCharCode(N)),N&&k<y;);if(512&a.flags&&(a.check=o(a.check,u,k,m)),y-=k,m+=k,N)break e}else a.head&&(a.head.name=null);a.length=0,a.mode=8;case 8:if(4096&a.flags){if(0===y)break e;for(k=0;N=u[m+k++],a.head&&N&&a.length<65536&&(a.head.comment+=String.fromCharCode(N)),N&&k<y;);if(512&a.flags&&(a.check=o(a.check,u,k,m)),y-=k,m+=k,N)break e}else a.head&&(a.head.comment=null);a.mode=9;case 9:if(512&a.flags){for(;w<16;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(M!==(65535&a.check)){e.msg="header crc mismatch",a.mode=30;break}w=M=0}a.head&&(a.head.hcrc=a.flags>>9&1,a.head.done=!0),e.adler=a.check=0,a.mode=12;break;case 10:for(;w<32;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}e.adler=a.check=g(M),w=M=0,a.mode=11;case 11:if(0===a.havedict)return e.next_out=v,e.avail_out=b,e.next_in=m,e.avail_in=y,a.hold=M,a.bits=w,2;e.adler=a.check=1,a.mode=12;case 12:if(5===t||6===t)break e;case 13:if(a.last){M>>>=7&w,w-=7&w,a.mode=27;break}for(;w<3;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}switch(a.last=1&M,w-=1,3&(M>>>=1)){case 0:a.mode=14;break;case 1:if(S(a),a.mode=20,6!==t)break;M>>>=2,w-=2;break e;case 2:a.mode=17;break;case 3:e.msg="invalid block type",a.mode=30}M>>>=2,w-=2;break;case 14:for(M>>>=7&w,w-=7&w;w<32;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if((65535&M)!=(M>>>16^65535)){e.msg="invalid stored block lengths",a.mode=30;break}if(a.length=65535&M,w=M=0,a.mode=15,6===t)break e;case 15:a.mode=16;case 16:if(k=a.length){if(y<k&&(k=y),b<k&&(k=b),0===k)break e;r.arraySet(f,u,m,k,v),y-=k,m+=k,b-=k,v+=k,a.length-=k;break}a.mode=12;break;case 17:for(;w<14;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(a.nlen=257+(31&M),M>>>=5,w-=5,a.ndist=1+(31&M),M>>>=5,w-=5,a.ncode=4+(15&M),M>>>=4,w-=4,286<a.nlen||30<a.ndist){e.msg="too many length or distance symbols",a.mode=30;break}a.have=0,a.mode=18;case 18:for(;a.have<a.ncode;){for(;w<3;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}a.lens[_[a.have++]]=7&M,M>>>=3,w-=3}for(;a.have<19;)a.lens[_[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,F={bits:a.lenbits},D=l(0,a.lens,0,19,a.lencode,0,a.work,F),a.lenbits=F.bits,D){e.msg="invalid code lengths set",a.mode=30;break}a.have=0,a.mode=19;case 19:for(;a.have<a.nlen+a.ndist;){for(;E=(V=a.lencode[M&(1<<a.lenbits)-1])>>>16&255,L=65535&V,!((P=V>>>24)<=w);){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(L<16)M>>>=P,w-=P,a.lens[a.have++]=L;else{if(16===L){for(B=P+2;w<B;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(M>>>=P,w-=P,0===a.have){e.msg="invalid bit length repeat",a.mode=30;break}N=a.lens[a.have-1],k=3+(3&M),M>>>=2,w-=2}else if(17===L){for(B=P+3;w<B;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}w-=P,N=0,k=3+(7&(M>>>=P)),M>>>=3,w-=3}else{for(B=P+7;w<B;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}w-=P,N=0,k=11+(127&(M>>>=P)),M>>>=7,w-=7}if(a.have+k>a.nlen+a.ndist){e.msg="invalid bit length repeat",a.mode=30;break}for(;k--;)a.lens[a.have++]=N}}if(30===a.mode)break;if(0===a.lens[256]){e.msg="invalid code -- missing end-of-block",a.mode=30;break}if(a.lenbits=9,F={bits:a.lenbits},D=l(s,a.lens,0,a.nlen,a.lencode,0,a.work,F),a.lenbits=F.bits,D){e.msg="invalid literal/lengths set",a.mode=30;break}if(a.distbits=6,a.distcode=a.distdyn,F={bits:a.distbits},D=l(d,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,F),a.distbits=F.bits,D){e.msg="invalid distances set",a.mode=30;break}if(a.mode=20,6===t)break e;case 20:a.mode=21;case 21:if(6<=y&&258<=b){e.next_out=v,e.avail_out=b,e.next_in=m,e.avail_in=y,a.hold=M,a.bits=w,i(e,C),v=e.next_out,f=e.output,b=e.avail_out,m=e.next_in,u=e.input,y=e.avail_in,M=a.hold,w=a.bits,12===a.mode&&(a.back=-1);break}for(a.back=0;E=(V=a.lencode[M&(1<<a.lenbits)-1])>>>16&255,L=65535&V,!((P=V>>>24)<=w);){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(E&&!(240&E)){for(O=P,R=E,H=L;E=(V=a.lencode[H+((M&(1<<O+R)-1)>>O)])>>>16&255,L=65535&V,!(O+(P=V>>>24)<=w);){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}M>>>=O,w-=O,a.back+=O}if(M>>>=P,w-=P,a.back+=P,a.length=L,0===E){a.mode=26;break}if(32&E){a.back=-1,a.mode=12;break}if(64&E){e.msg="invalid literal/length code",a.mode=30;break}a.extra=15&E,a.mode=22;case 22:if(a.extra){for(B=a.extra;w<B;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}a.length+=M&(1<<a.extra)-1,M>>>=a.extra,w-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=23;case 23:for(;E=(V=a.distcode[M&(1<<a.distbits)-1])>>>16&255,L=65535&V,!((P=V>>>24)<=w);){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(!(240&E)){for(O=P,R=E,H=L;E=(V=a.distcode[H+((M&(1<<O+R)-1)>>O)])>>>16&255,L=65535&V,!(O+(P=V>>>24)<=w);){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}M>>>=O,w-=O,a.back+=O}if(M>>>=P,w-=P,a.back+=P,64&E){e.msg="invalid distance code",a.mode=30;break}a.offset=L,a.extra=15&E,a.mode=24;case 24:if(a.extra){for(B=a.extra;w<B;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}a.offset+=M&(1<<a.extra)-1,M>>>=a.extra,w-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){e.msg="invalid distance too far back",a.mode=30;break}a.mode=25;case 25:if(0===b)break e;if(k=C-b,a.offset>k){if((k=a.offset-k)>a.whave&&a.sane){e.msg="invalid distance too far back",a.mode=30;break}A=k>a.wnext?(k-=a.wnext,a.wsize-k):a.wnext-k,k>a.length&&(k=a.length),T=a.window}else T=f,A=v-a.offset,k=a.length;for(b<k&&(k=b),b-=k,a.length-=k;f[v++]=T[A++],--k;);0===a.length&&(a.mode=21);break;case 26:if(0===b)break e;f[v++]=a.length,b--,a.mode=21;break;case 27:if(a.wrap){for(;w<32;){if(0===y)break e;y--,M|=u[m++]<<w,w+=8}if(C-=b,e.total_out+=C,a.total+=C,C&&(e.adler=a.check=a.flags?o(a.check,f,C,v-C):n(a.check,f,C,v-C)),C=b,(a.flags?M:g(M))!==a.check){e.msg="incorrect data check",a.mode=30;break}w=M=0}a.mode=28;case 28:if(a.wrap&&a.flags){for(;w<32;){if(0===y)break e;y--,M+=u[m++]<<w,w+=8}if(M!==(4294967295&a.total)){e.msg="incorrect length check",a.mode=30;break}w=M=0}a.mode=29;case 29:D=1;break e;case 30:D=-3;break e;case 31:return-4;default:return h}return e.next_out=v,e.avail_out=b,e.next_in=m,e.avail_in=y,a.hold=M,a.bits=w,(a.wsize||C!==e.avail_out&&a.mode<30&&(a.mode<27||4!==t))&&I(e,e.output,e.next_out,C-e.avail_out)?(a.mode=31,-4):(x-=e.avail_in,C-=e.avail_out,e.total_in+=x,e.total_out+=C,a.total+=C,a.wrap&&C&&(e.adler=a.check=a.flags?o(a.check,f,C,e.next_out-C):n(a.check,f,C,e.next_out-C)),e.data_type=a.bits+(a.last?64:0)+(12===a.mode?128:0)+(20===a.mode||15===a.mode?256:0),(0==x&&0===C||4===t)&&D===c&&(D=-5),D)},a.inflateEnd=function(e){if(!e||!e.state)return h;var t=e.state;return t.window&&(t.window=null),e.state=null,c},a.inflateGetHeader=function(e,t){var a;return e&&e.state&&2&(a=e.state).wrap?((a.head=t).done=!1,c):h},a.inflateSetDictionary=function(e,t){var a,r=t.length;return e&&e.state?0!==(a=e.state).wrap&&11!==a.mode?h:11===a.mode&&n(1,t,r,0)!==a.check?-3:I(e,t,r,r)?(a.mode=31,-4):(a.havedict=1,c):h},a.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(e,t,a){var r=e("../utils/common"),n=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],o=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],i=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],l=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];t.exports=function(e,t,a,s,d,c,h,p){var u,f,g,m,v,y,b,M,w,x=p.bits,C=0,S=0,I=0,k=0,A=0,T=0,P=0,E=0,L=0,O=0,R=null,H=0,N=new r.Buf16(16),D=new r.Buf16(16),F=null,B=0;for(C=0;C<=15;C++)N[C]=0;for(S=0;S<s;S++)N[t[a+S]]++;for(A=x,k=15;1<=k&&0===N[k];k--);if(k<A&&(A=k),0===k)return d[c++]=20971520,d[c++]=20971520,p.bits=1,0;for(I=1;I<k&&0===N[I];I++);for(A<I&&(A=I),C=E=1;C<=15;C++)if(E<<=1,(E-=N[C])<0)return-1;if(0<E&&(0===e||1!==k))return-1;for(D[1]=0,C=1;C<15;C++)D[C+1]=D[C]+N[C];for(S=0;S<s;S++)0!==t[a+S]&&(h[D[t[a+S]]++]=S);if(y=0===e?(R=F=h,19):1===e?(R=n,H-=257,F=o,B-=257,256):(R=i,F=l,-1),C=I,v=c,P=S=O=0,g=-1,m=(L=1<<(T=A))-1,1===e&&852<L||2===e&&592<L)return 1;for(;;){for(b=C-P,w=h[S]<y?(M=0,h[S]):h[S]>y?(M=F[B+h[S]],R[H+h[S]]):(M=96,0),u=1<<C-P,I=f=1<<T;d[v+(O>>P)+(f-=u)]=b<<24|M<<16|w,0!==f;);for(u=1<<C-1;O&u;)u>>=1;if(0!==u?(O&=u-1,O+=u):O=0,S++,0==--N[C]){if(C===k)break;C=t[a+h[S]]}if(A<C&&(O&m)!==g){for(0===P&&(P=A),v+=I,E=1<<(T=C-P);T+P<k&&!((E-=N[T+P])<=0);)T++,E<<=1;if(L+=1<<T,1===e&&852<L||2===e&&592<L)return 1;d[g=O&m]=A<<24|T<<16|v-c}}return 0!==O&&(d[v+O]=C-P<<24|64<<16),p.bits=A,0}},{"../utils/common":41}],51:[function(e,t,a){t.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],52:[function(e,t,a){var r=e("../utils/common"),n=0,o=1;function i(e){for(var t=e.length;0<=--t;)e[t]=0}var l=0,s=29,d=256,c=d+1+s,h=30,p=19,u=2*c+1,f=15,g=16,m=7,v=256,y=16,b=17,M=18,w=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],x=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],C=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],S=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],I=new Array(2*(c+2));i(I);var k=new Array(2*h);i(k);var A=new Array(512);i(A);var T=new Array(256);i(T);var P=new Array(s);i(P);var E,L,O,R=new Array(h);function H(e,t,a,r,n){this.static_tree=e,this.extra_bits=t,this.extra_base=a,this.elems=r,this.max_length=n,this.has_stree=e&&e.length}function N(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}function D(e){return e<256?A[e]:A[256+(e>>>7)]}function F(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function B(e,t,a){e.bi_valid>g-a?(e.bi_buf|=t<<e.bi_valid&65535,F(e,e.bi_buf),e.bi_buf=t>>g-e.bi_valid,e.bi_valid+=a-g):(e.bi_buf|=t<<e.bi_valid&65535,e.bi_valid+=a)}function V(e,t,a){B(e,a[2*t],a[2*t+1])}function z(e,t){for(var a=0;a|=1&e,e>>>=1,a<<=1,0<--t;);return a>>>1}function _(e,t,a){var r,n,o=new Array(f+1),i=0;for(r=1;r<=f;r++)o[r]=i=i+a[r-1]<<1;for(n=0;n<=t;n++){var l=e[2*n+1];0!==l&&(e[2*n]=z(o[l]++,l))}}function U(e){var t;for(t=0;t<c;t++)e.dyn_ltree[2*t]=0;for(t=0;t<h;t++)e.dyn_dtree[2*t]=0;for(t=0;t<p;t++)e.bl_tree[2*t]=0;e.dyn_ltree[2*v]=1,e.opt_len=e.static_len=0,e.last_lit=e.matches=0}function q(e){8<e.bi_valid?F(e,e.bi_buf):0<e.bi_valid&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0}function G(e,t,a,r){var n=2*t,o=2*a;return e[n]<e[o]||e[n]===e[o]&&r[t]<=r[a]}function W(e,t,a){for(var r=e.heap[a],n=a<<1;n<=e.heap_len&&(n<e.heap_len&&G(t,e.heap[n+1],e.heap[n],e.depth)&&n++,!G(t,r,e.heap[n],e.depth));)e.heap[a]=e.heap[n],a=n,n<<=1;e.heap[a]=r}function j(e,t,a){var r,n,o,i,l=0;if(0!==e.last_lit)for(;r=e.pending_buf[e.d_buf+2*l]<<8|e.pending_buf[e.d_buf+2*l+1],n=e.pending_buf[e.l_buf+l],l++,0===r?V(e,n,t):(V(e,(o=T[n])+d+1,t),0!==(i=w[o])&&B(e,n-=P[o],i),V(e,o=D(--r),a),0!==(i=x[o])&&B(e,r-=R[o],i)),l<e.last_lit;);V(e,v,t)}function X(e,t){var a,r,n,o=t.dyn_tree,i=t.stat_desc.static_tree,l=t.stat_desc.has_stree,s=t.stat_desc.elems,d=-1;for(e.heap_len=0,e.heap_max=u,a=0;a<s;a++)0!==o[2*a]?(e.heap[++e.heap_len]=d=a,e.depth[a]=0):o[2*a+1]=0;for(;e.heap_len<2;)o[2*(n=e.heap[++e.heap_len]=d<2?++d:0)]=1,e.depth[n]=0,e.opt_len--,l&&(e.static_len-=i[2*n+1]);for(t.max_code=d,a=e.heap_len>>1;1<=a;a--)W(e,o,a);for(n=s;a=e.heap[1],e.heap[1]=e.heap[e.heap_len--],W(e,o,1),r=e.heap[1],e.heap[--e.heap_max]=a,e.heap[--e.heap_max]=r,o[2*n]=o[2*a]+o[2*r],e.depth[n]=(e.depth[a]>=e.depth[r]?e.depth[a]:e.depth[r])+1,o[2*a+1]=o[2*r+1]=n,e.heap[1]=n++,W(e,o,1),2<=e.heap_len;);e.heap[--e.heap_max]=e.heap[1],function(e,t){var a,r,n,o,i,l,s=t.dyn_tree,d=t.max_code,c=t.stat_desc.static_tree,h=t.stat_desc.has_stree,p=t.stat_desc.extra_bits,g=t.stat_desc.extra_base,m=t.stat_desc.max_length,v=0;for(o=0;o<=f;o++)e.bl_count[o]=0;for(s[2*e.heap[e.heap_max]+1]=0,a=e.heap_max+1;a<u;a++)m<(o=s[2*s[2*(r=e.heap[a])+1]+1]+1)&&(o=m,v++),s[2*r+1]=o,d<r||(e.bl_count[o]++,i=0,g<=r&&(i=p[r-g]),l=s[2*r],e.opt_len+=l*(o+i),h&&(e.static_len+=l*(c[2*r+1]+i)));if(0!==v){do{for(o=m-1;0===e.bl_count[o];)o--;e.bl_count[o]--,e.bl_count[o+1]+=2,e.bl_count[m]--,v-=2}while(0<v);for(o=m;0!==o;o--)for(r=e.bl_count[o];0!==r;)d<(n=e.heap[--a])||(s[2*n+1]!==o&&(e.opt_len+=(o-s[2*n+1])*s[2*n],s[2*n+1]=o),r--)}}(e,t),_(o,d,e.bl_count)}function Z(e,t,a){var r,n,o=-1,i=t[1],l=0,s=7,d=4;for(0===i&&(s=138,d=3),t[2*(a+1)+1]=65535,r=0;r<=a;r++)n=i,i=t[2*(r+1)+1],++l<s&&n===i||(l<d?e.bl_tree[2*n]+=l:0!==n?(n!==o&&e.bl_tree[2*n]++,e.bl_tree[2*y]++):l<=10?e.bl_tree[2*b]++:e.bl_tree[2*M]++,o=n,d=(l=0)===i?(s=138,3):n===i?(s=6,3):(s=7,4))}function K(e,t,a){var r,n,o=-1,i=t[1],l=0,s=7,d=4;for(0===i&&(s=138,d=3),r=0;r<=a;r++)if(n=i,i=t[2*(r+1)+1],!(++l<s&&n===i)){if(l<d)for(;V(e,n,e.bl_tree),0!=--l;);else 0!==n?(n!==o&&(V(e,n,e.bl_tree),l--),V(e,y,e.bl_tree),B(e,l-3,2)):l<=10?(V(e,b,e.bl_tree),B(e,l-3,3)):(V(e,M,e.bl_tree),B(e,l-11,7));o=n,d=(l=0)===i?(s=138,3):n===i?(s=6,3):(s=7,4)}}i(R);var Y=!1;function J(e,t,a,n){var o,i,s;B(e,(l<<1)+(n?1:0),3),i=t,s=a,q(o=e),F(o,s),F(o,~s),r.arraySet(o.pending_buf,o.window,i,s,o.pending),o.pending+=s}a._tr_init=function(e){Y||(function(){var e,t,a,r,n,o=new Array(f+1);for(r=a=0;r<s-1;r++)for(P[r]=a,e=0;e<1<<w[r];e++)T[a++]=r;for(T[a-1]=r,r=n=0;r<16;r++)for(R[r]=n,e=0;e<1<<x[r];e++)A[n++]=r;for(n>>=7;r<h;r++)for(R[r]=n<<7,e=0;e<1<<x[r]-7;e++)A[256+n++]=r;for(t=0;t<=f;t++)o[t]=0;for(e=0;e<=143;)I[2*e+1]=8,e++,o[8]++;for(;e<=255;)I[2*e+1]=9,e++,o[9]++;for(;e<=279;)I[2*e+1]=7,e++,o[7]++;for(;e<=287;)I[2*e+1]=8,e++,o[8]++;for(_(I,c+1,o),e=0;e<h;e++)k[2*e+1]=5,k[2*e]=z(e,5);E=new H(I,w,d+1,c,f),L=new H(k,x,0,h,f),O=new H(new Array(0),C,0,p,m)}(),Y=!0),e.l_desc=new N(e.dyn_ltree,E),e.d_desc=new N(e.dyn_dtree,L),e.bl_desc=new N(e.bl_tree,O),e.bi_buf=0,e.bi_valid=0,U(e)},a._tr_stored_block=J,a._tr_flush_block=function(e,t,a,r){var i,l,s=0;0<e.level?(2===e.strm.data_type&&(e.strm.data_type=function(e){var t,a=4093624447;for(t=0;t<=31;t++,a>>>=1)if(1&a&&0!==e.dyn_ltree[2*t])return n;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return o;for(t=32;t<d;t++)if(0!==e.dyn_ltree[2*t])return o;return n}(e)),X(e,e.l_desc),X(e,e.d_desc),s=function(e){var t;for(Z(e,e.dyn_ltree,e.l_desc.max_code),Z(e,e.dyn_dtree,e.d_desc.max_code),X(e,e.bl_desc),t=p-1;3<=t&&0===e.bl_tree[2*S[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t}(e),i=e.opt_len+3+7>>>3,(l=e.static_len+3+7>>>3)<=i&&(i=l)):i=l=a+5,a+4<=i&&-1!==t?J(e,t,a,r):4===e.strategy||l===i?(B(e,2+(r?1:0),3),j(e,I,k)):(B(e,4+(r?1:0),3),function(e,t,a,r){var n;for(B(e,t-257,5),B(e,a-1,5),B(e,r-4,4),n=0;n<r;n++)B(e,e.bl_tree[2*S[n]+1],3);K(e,e.dyn_ltree,t-1),K(e,e.dyn_dtree,a-1)}(e,e.l_desc.max_code+1,e.d_desc.max_code+1,s+1),j(e,e.dyn_ltree,e.dyn_dtree)),U(e),r&&q(e)},a._tr_tally=function(e,t,a){return e.pending_buf[e.d_buf+2*e.last_lit]=t>>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&a,e.last_lit++,0===t?e.dyn_ltree[2*a]++:(e.matches++,t--,e.dyn_ltree[2*(T[a]+d+1)]++,e.dyn_dtree[2*D(t)]++),e.last_lit===e.lit_bufsize-1},a._tr_align=function(e){var t;B(e,2,3),V(e,v,I),16===(t=e).bi_valid?(F(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):8<=t.bi_valid&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}},{"../utils/common":41}],53:[function(e,t,a){t.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(e,t,a){(function(e){!function(e,t){if(!e.setImmediate){var a,r,n,o,i=1,l={},s=!1,d=e.document,c=Object.getPrototypeOf&&Object.getPrototypeOf(e);c=c&&c.setTimeout?c:e,a="[object process]"==={}.toString.call(e.process)?function(e){process.nextTick(function(){p(e)})}:function(){if(e.postMessage&&!e.importScripts){var t=!0,a=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=a,t}}()?(o="setImmediate$"+Math.random()+"$",e.addEventListener?e.addEventListener("message",u,!1):e.attachEvent("onmessage",u),function(t){e.postMessage(o+t,"*")}):e.MessageChannel?((n=new MessageChannel).port1.onmessage=function(e){p(e.data)},function(e){n.port2.postMessage(e)}):d&&"onreadystatechange"in d.createElement("script")?(r=d.documentElement,function(e){var t=d.createElement("script");t.onreadystatechange=function(){p(e),t.onreadystatechange=null,r.removeChild(t),t=null},r.appendChild(t)}):function(e){setTimeout(p,0,e)},c.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),r=0;r<t.length;r++)t[r]=arguments[r+1];var n={callback:e,args:t};return l[i]=n,a(i),i++},c.clearImmediate=h}function h(e){delete l[e]}function p(e){if(s)setTimeout(p,0,e);else{var a=l[e];if(a){s=!0;try{!function(e){var a=e.callback,r=e.args;switch(r.length){case 0:a();break;case 1:a(r[0]);break;case 2:a(r[0],r[1]);break;case 3:a(r[0],r[1],r[2]);break;default:a.apply(t,r)}}(a)}finally{h(e),s=!1}}}}function u(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(o)&&p(+t.data.slice(o.length))}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,void 0!==ul?ul:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}]},{},[10])(10);const vl=fl(ml.exports),yl="http://schemas.openxmlformats.org/wordprocessingml/2006/main",bl="http://schemas.openxmlformats.org/package/2006/relationships",Ml="http://schemas.openxmlformats.org/officeDocument/2006/relationships",wl="http://schemas.microsoft.com/office/word/2010/wordml";function xl(e){return e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&apos;")}function Cl(e,t){return Number.isFinite(e)?Math.max(0,Math.round(e/96*1440)):t}function Sl(e){return null!=e&&Number.isFinite(e)?Math.round(e/96*1440):null}function Il(e){return null!=e&&Number.isFinite(e)?Math.max(0,Math.round(20*e)):null}function kl(e,t="000000"){const a=null==e?void 0:e.trim().replace(/^#/,"");return a&&/^[0-9a-fA-F]{6}$/.test(a)?a.toUpperCase():t}const Al="6F6F6F";function Tl(e){const t=e??{width:.75,type:"solid",color:`#${Al}`};if("none"===t.type||t.width<=0)return'w:val="nil"/>';return`w:val="${"dotted"===t.type?"dotted":"dashed"===t.type?"dashed":"single"}" w:sz="${Math.max(1,Math.round(8*t.width))}" w:space="0" w:color="${kl(t.color,Al)}"/>`}function Pl(e,t){var a,r,n;const o=Math.max(1,Math.floor(e.colSpan??1)),i=[],l=function(e){if("number"==typeof e&&Number.isFinite(e))return`<w:tcW w:w="${Il(e)??0}" w:type="dxa"/>`;if("string"==typeof e){const t=e.trim();if(t.endsWith("%")){const e=Number.parseFloat(t.slice(0,-1));if(Number.isFinite(e))return`<w:tcW w:w="${Math.round(50*e)}" w:type="pct"/>`}const a=Number.parseFloat(t);if(Number.isFinite(a))return`<w:tcW w:w="${Math.round(a)}" w:type="dxa"/>`}return""}((null==(a=e.style)?void 0:a.width)??t);if(l&&i.push(l),o>1&&i.push(`<w:gridSpan w:val="${o}"/>`),"restart"===e.vMerge?i.push('<w:vMerge w:val="restart"/>'):"continue"===e.vMerge&&i.push("<w:vMerge/>"),(null==(r=e.style)?void 0:r.shading)&&i.push(`<w:shd w:val="clear" w:color="auto" w:fill="${kl(e.style.shading,"FFFFFF")}"/>`),null==(n=e.style)?void 0:n.verticalAlign){const t="middle"===e.style.verticalAlign?"center":e.style.verticalAlign;i.push(`<w:vAlign w:val="${t}"/>`)}return i.push(function(e){const t=e.style,a=null==t?void 0:t.padding,r=Il(a??(null==t?void 0:t.paddingTop)??0),n=Il(a??(null==t?void 0:t.paddingBottom)??0);return`<w:tcMar><w:top w:w="${r??0}" w:type="dxa"/><w:left w:w="${Il(a??(null==t?void 0:t.paddingLeft)??5.4)??0}" w:type="dxa"/><w:bottom w:w="${n??0}" w:type="dxa"/><w:right w:w="${Il(a??(null==t?void 0:t.paddingRight)??5.4)??0}" w:type="dxa"/></w:tcMar>`}(e)),i.push(function(e){var t,a,r,n;return`<w:tcBorders>${[`<w:top ${Tl(null==(t=e.style)?void 0:t.borderTop)}`,`<w:left ${Tl(null==(a=e.style)?void 0:a.borderLeft)}`,`<w:bottom ${Tl(null==(r=e.style)?void 0:r.borderBottom)}`,`<w:right ${Tl(null==(n=e.style)?void 0:n.borderRight)}`].join("")}</w:tcBorders>`}(e)),i.length>0?`<w:tcPr>${i.join("")}</w:tcPr>`:""}function El(e){var t,a,r,n;const o=[];(null==(t=e.style)?void 0:t.styleId)&&o.push(`<w:tblStyle w:val="${xl(e.style.styleId)}"/>`);const i=e.gridCols&&e.gridCols.length>0?e.gridCols.reduce((e,t)=>e+t,0):void 0;return o.push(function(e,t=!0){if("number"==typeof e&&Number.isFinite(e))return`<w:tblW w:w="${Il(e)??0}" w:type="dxa"/>`;if("string"==typeof e){const t=e.trim();if(t.endsWith("%")){const e=Number.parseFloat(t.slice(0,-1));if(Number.isFinite(e))return`<w:tblW w:w="${Math.round(50*e)}" w:type="pct"/>`}const a=Number.parseFloat(t);if(Number.isFinite(a))return`<w:tblW w:w="${Math.round(a)}" w:type="dxa"/>`}return t?'<w:tblW w:w="0" w:type="auto"/>':""}((null==(a=e.style)?void 0:a.width)??i)),"number"==typeof(null==(r=e.style)?void 0:r.indentLeft)&&Number.isFinite(e.style.indentLeft)&&o.push(`<w:tblInd w:w="${Il(e.style.indentLeft)??0}" w:type="dxa"/>`),(null==(n=e.style)?void 0:n.align)&&o.push(`<w:jc w:val="${e.style.align}"/>`),o.push('<w:tblLayout w:type="fixed"/>'),`<w:tblPr>${o.join("")}</w:tblPr>`}function Ll(e,t){const a=ar(e),r=new Map(a.map(e=>[`${e.rowIndex}:${e.cellIndex}`,e])),n=e.rows.map((a,n)=>{const o=a.cells.map((a,o)=>{const i=r.get(`${n}:${o}`),l=i&&e.gridCols?e.gridCols.slice(i.visualColumnIndex,i.visualColumnIndex+Math.max(1,i.colSpan)).reduce((e,t)=>e+t,0):void 0,s=(a.blocks.length>0?a.blocks:[{id:"",type:"paragraph",runs:[{id:"",text:""}]}]).map(e=>t(e,a)).join(""),d="continue"===a.vMerge?"<w:p/>":s;return`<w:tc>${Pl(a,l)}${d}</w:tc>`}).join("");return`<w:tr>${function(e){var t;const a=[];if(e.isHeader&&a.push("<w:tblHeader/>"),void 0!==(null==(t=e.style)?void 0:t.height)){const t="number"==typeof e.style.height?Il(e.style.height):Number.parseFloat(e.style.height);null!==t&&Number.isFinite(t)&&a.push(`<w:trHeight w:val="${Math.round(t)}" w:hRule="atLeast"/>`)}return a.length>0?`<w:trPr>${a.join("")}</w:trPr>`:""}(a)}${o}</w:tr>`}).join(""),o=e.gridCols?`<w:tblGrid>${e.gridCols.map(e=>`<w:gridCol w:w="${Il(e)??0}"/>`).join("")}</w:tblGrid>`:"";return`<w:tbl>${El(e)}${o}${n}</w:tbl>`}const Ol={black:[0,0,0],blue:[0,0,255],cyan:[0,255,255],green:[0,128,0],magenta:[255,0,255],red:[255,0,0],yellow:[255,255,0],white:[255,255,255],darkBlue:[0,0,139],darkCyan:[0,139,139],darkGreen:[0,100,0],darkMagenta:[139,0,139],darkRed:[139,0,0],darkYellow:[184,134,11],darkGray:[169,169,169],lightGray:[211,211,211]},Rl={ffff00:"yellow",fef08a:"yellow",ff0000:"red","00ff00":"green","0000ff":"blue","00ffff":"cyan",ff00ff:"magenta","000000":"black",ffffff:"white"};function Hl(e){if(e in Ol)return e;const t=e.trim().replace(/^#/,"").toLowerCase(),a=Rl[t];if(a)return a;const r=function(e){const t=e.trim().replace(/^#/,"");return/^[0-9a-fA-F]{6}$/.test(t)?[Number.parseInt(t.slice(0,2),16),Number.parseInt(t.slice(2,4),16),Number.parseInt(t.slice(4,6),16)]:null}(e);if(!r)return"yellow";let n="yellow",o=Number.POSITIVE_INFINITY;for(const[i,l]of Object.entries(Ol)){const e=(l[0]-r[0])**2+(l[1]-r[1])**2+(l[2]-r[2])**2;e<o&&(o=e,n=i)}return n}function Nl(e){if(0===e.length)return"";var t;return`<w:t${/^\s|\s$/.test(t=e)||t.includes(" ")?' xml:space="preserve"':""}>${xl(e)}</w:t>`}function Dl(e){if(!e)return"";const t=[];if(e.bold&&t.push("<w:b/>"),e.italic&&t.push("<w:i/>"),e.underline){const a=e.underlineStyle??"single",r=e.underlineColor?` w:color="${xl(e.underlineColor.replace(/^#/,""))}"`:"";t.push(`<w:u w:val="${xl(a)}"${r}/>`)}if(e.strike&&t.push("<w:strike/>"),e.doubleStrike&&t.push("<w:dstrike/>"),e.smallCaps&&t.push("<w:smallCaps/>"),e.allCaps&&t.push("<w:caps/>"),e.hidden&&t.push("<w:vanish/>"),void 0!==e.characterScale&&null!==e.characterScale&&Number.isFinite(e.characterScale)&&t.push(`<w:w w:val="${Math.max(1,Math.round(e.characterScale))}"/>`),void 0!==e.characterSpacing&&null!==e.characterSpacing){const r=null!=(a=e.characterSpacing)&&Number.isFinite(a)?Math.round(20*a):null;null!==r&&t.push(`<w:spacing w:val="${r}"/>`)}var a;void 0!==e.baselineShift&&null!==e.baselineShift&&Number.isFinite(e.baselineShift)&&t.push(`<w:position w:val="${Math.round(2*e.baselineShift)}"/>`),void 0!==e.kerningThreshold&&null!==e.kerningThreshold&&Number.isFinite(e.kerningThreshold)&&t.push(`<w:kern w:val="${Math.max(0,Math.round(2*e.kerningThreshold))}"/>`);const r=function(e){switch(e){case"none":return"none";case"standard":return"standard";case"contextual":return"contextual";case"historical":return"historical";case"standardContextual":return"standardContextual";default:return null}}(e.ligatures);r&&t.push(`<w14:ligatures w14:val="${r}"/>`);const n=function(e){switch(e){case"proportional":return"proportional";case"tabular":return"tabular";default:return null}}(e.numberSpacing);n&&t.push(`<w14:numSpacing w14:val="${n}"/>`);const o=function(e){switch(e){case"lining":return"lining";case"oldStyle":return"oldStyle";default:return null}}(e.numberForm);o&&t.push(`<w14:numForm w14:val="${o}"/>`);const i=function(e){return"number"!=typeof e||e<1||e>20?null:(1<<e-1).toString(16).toUpperCase().padStart(8,"0")}(e.stylisticSet);if(i&&t.push(`<w14:stylisticSets w14:val="${i}"/>`),e.contextualAlternates&&t.push('<w14:cntxtAlts w14:val="1"/>'),e.superscript?t.push('<w:vertAlign w:val="superscript"/>'):e.subscript&&t.push('<w:vertAlign w:val="subscript"/>'),e.fontFamily&&t.push(`<w:rFonts w:ascii="${xl(e.fontFamily)}" w:hAnsi="${xl(e.fontFamily)}" w:cs="${xl(e.fontFamily)}"/>`),void 0!==e.fontSize&&null!==e.fontSize){const a=function(e){return null!=e&&Number.isFinite(e)?Math.round(e/96*72*2):null}(e.fontSize);null!==a&&t.push(`<w:sz w:val="${a}"/>`)}return e.color&&t.push(`<w:color w:val="${xl(e.color.replace(/^#/,""))}"/>`),e.highlight&&t.push(`<w:highlight w:val="${xl(Hl(e.highlight))}"/>`),t.length>0?`<w:rPr>${t.join("")}</w:rPr>`:""}function Fl(e,t,a,r){var n;if(e.__isFootnoteRefMarker)return'<w:r><w:rPr><w:rStyle w:val="FootnoteReference"/><w:vertAlign w:val="superscript"/></w:rPr><w:footnoteRef/></w:r>';const o=function(e,t,a){var r;const n=Ze(e.styles,t,a),o={bold:n.bold,italic:n.italic,underline:n.underline,underlineStyle:n.underlineStyle,underlineColor:n.underlineColor,strike:n.strike,doubleStrike:n.doubleStrike,superscript:n.superscript,subscript:n.subscript,smallCaps:n.smallCaps,allCaps:n.allCaps,hidden:n.hidden,characterScale:n.characterScale,characterSpacing:n.characterSpacing,baselineShift:n.baselineShift,kerningThreshold:n.kerningThreshold,ligatures:n.ligatures,numberSpacing:n.numberSpacing,numberForm:n.numberForm,stylisticSet:n.stylisticSet,contextualAlternates:n.contextualAlternates,fontFamily:n.fontFamily,fontSize:n.fontSize,color:n.color,highlight:n.highlight};return(null==(r=e.styles)?void 0:r.link)&&(o.link=e.styles.link),o}(e,a,r);if(e.footnoteReference){const a=null==(n=t.footnoteIdMap)?void 0:n.get(e.footnoteReference.footnoteId);if(void 0!==a){const t={...o??{},superscript:!0},r=e.footnoteReference.customMark?' w:customMarkFollows="1"':"",n=e.footnoteReference.customMark?`<w:t xml:space="preserve">${xl(e.footnoteReference.customMark)}</w:t>`:"";return`<w:r>${Dl(t)}<w:footnoteReference${r} w:id="${a}"/>${n}</w:r>`}}if(e.field){return`<w:fldSimple w:instr="${"PAGE"===e.field.type?" PAGE ":" NUMPAGES "}"><w:r>${Dl(o)}<w:t>1</w:t></w:r></w:fldSimple>`}if(e.image){const a=t.imageMap.get(e.id);if(a){const e=t.images.find(e=>e.rId===a);if(e){const t=Math.floor(1e4*Math.random())+1,r=void 0!==e.alt?` descr="${xl(e.alt)}" title="${xl(e.alt)}"`:"",n=`<w:drawing><wp:inline distT="0" distB="0" distL="0" distR="0"><wp:extent cx="${e.cx}" cy="${e.cy}"/><wp:effectExtent l="0" t="0" r="0" b="0"/><wp:docPr id="${t}" name="Picture"${r}/><a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"><a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:nvPicPr><pic:cNvPr id="0" name="Picture"${r}/><pic:cNvPicPr/></pic:nvPicPr><pic:blipFill><a:blip r:embed="${a}" xmlns:r="${Ml}"/><a:stretch><a:fillRect/></a:stretch></pic:blipFill><pic:spPr><a:xfrm><a:off x="0" y="0"/><a:ext cx="${e.cx}" cy="${e.cy}"/></a:xfrm><a:prstGeom prst="rect"><a:avLst/></a:prstGeom></pic:spPr></pic:pic></a:graphicData></a:graphic></wp:inline></w:drawing>`;return`<w:r>${Dl(o)}${n}</w:r>`}}}return`<w:r>${Dl(o)}${function(e){if(0===e.length)return"<w:t></w:t>";let t="",a="";for(const r of e)"\n"!==r?"\t"!==r?a+=r:(t+=Nl(a),a="",t+="<w:tab/>"):(t+=Nl(a),a="",t+="<w:br/>");return t+=Nl(a),t||"<w:t></w:t>"}(e.text)}</w:r>`}function Bl(e,t,a,r){var n;const o=[],i=function(e,t){const a=Ke(e.style,t);return{align:a.align,spacingBefore:a.spacingBefore,spacingAfter:a.spacingAfter,lineHeight:a.lineHeight,indentLeft:a.indentLeft,indentRight:a.indentRight,indentFirstLine:a.indentFirstLine,indentHanging:a.indentHanging,pageBreakBefore:a.pageBreakBefore,keepWithNext:a.keepWithNext,keepLinesTogether:a.keepLinesTogether,widowControl:a.widowControl}}(e,a),l=(null==(n=e.style)?void 0:n.align)??(null==r?void 0:r.align)??i.align;if(l&&o.push(`<w:jc w:val="${l}"/>`),void 0!==i.spacingBefore||void 0!==i.spacingAfter||void 0!==i.lineHeight){const e=[],t=Sl(i.spacingBefore),a=Sl(i.spacingAfter),r=void 0!==i.lineHeight&&null!==i.lineHeight&&Number.isFinite(i.lineHeight)?Math.round(240*i.lineHeight):null;null!==t&&e.push(`w:before="${t}"`),null!==a&&e.push(`w:after="${a}"`),null!==r&&e.push(`w:line="${r}"`),e.length>0&&o.push(`<w:spacing ${e.join(" ")}/>`)}if(void 0!==i.indentLeft||void 0!==i.indentRight||void 0!==i.indentFirstLine||void 0!==i.indentHanging){const e=[],t=Sl(i.indentLeft),a=Sl(i.indentRight),r=Sl(i.indentFirstLine),n=Sl(i.indentHanging);null!==t&&e.push(`w:left="${t}"`),null!==a&&e.push(`w:right="${a}"`),null!==r&&e.push(`w:firstLine="${r}"`),null!==n&&e.push(`w:hanging="${n}"`),e.length>0&&o.push(`<w:ind ${e.join(" ")}/>`)}i.pageBreakBefore&&o.push("<w:pageBreakBefore/>"),i.keepWithNext&&o.push("<w:keepNext/>"),i.keepLinesTogether&&o.push("<w:keepLines/>"),!1===i.widowControl&&o.push('<w:widowControl w:val="0"/>');const s=t.get(e.id);return s&&o.push(`<w:numPr><w:ilvl w:val="${s.level}"/><w:numId w:val="${s.numId}"/></w:numPr>`),o.length>0?`<w:pPr>${o.join("")}</w:pPr>`:""}function Vl(e,t,a,r){const n=e.runs.length>0?e.runs:[{id:"",text:""}];return`<w:p>${Bl(e,t.numberingInfo,a,r)}${n.map(r=>{var n;return function(e,t,a,r){var n;const o=Fl(e,t,a,r),i=null==(n=e.styles)?void 0:n.link;if(!i)return o;const l=t.hyperlinkMap.get(i);return l?`<w:hyperlink r:id="${l}">${o}</w:hyperlink>`:o}(r,t,null==(n=e.style)?void 0:n.styleId,a)}).join("")}</w:p>`}function zl(e){if(0===e.length)return[_l()];const[t,...a]=e;return"paragraph"!==t.type?[_l(!0),t,...a]:[(r=t,{...r,runs:[{id:"synthetic:footnoteRef",text:"",styles:{styleId:"FootnoteReference",superscript:!0},__isFootnoteRefMarker:!0},...r.runs],style:(null==(n=r.style)?void 0:n.styleId)?r.style:{...r.style??{},styleId:"FootnoteText"}}),...a];var r,n}function _l(e=!0){return{id:"synthetic:footnote-body-empty",type:"paragraph",runs:[...e?[{id:"synthetic:footnoteRef",text:"",styles:{styleId:"FootnoteReference",superscript:!0},__isFootnoteRefMarker:!0}]:[],{id:"synthetic:footnote-body-empty-text",text:""}],style:{styleId:"FootnoteText"}}}const Ul=`xmlns:w="${yl}" xmlns:w14="${wl}" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:r="${Ml}"`;function ql(e,t){for(const a of e)if("paragraph"!==a.type)for(const e of a.rows)for(const a of e.cells)for(const e of a.blocks)t(e);else t(a)}function Gl(e,t,a,r){const n=[],o=new Map,i=[],l=new Map;return ql(e,e=>{var t;for(const s of e.runs){if((null==(t=s.styles)?void 0:t.link)&&!l.has(s.styles.link)){const e=`rIdLink${i.length+1}`;l.set(s.styles.link,e),i.push({rId:e,href:s.styles.link})}if(!s.image)continue;const e=ze(r,s.image.src).match(/^data:image\/(png|jpeg|jpg);base64,(.*)$/);if(!e)continue;const d=a.nextImageId,c="jpeg"===e[1]?"jpg":e[1],h=e[2],p=`media/image${d}.${c}`,u=`rIdImg${d}`;n.push({rId:u,target:p,base64:h,runId:s.id,cx:Math.round(9525*s.image.width),cy:Math.round(9525*s.image.height),alt:s.image.alt}),o.set(s.id,u),a.nextImageId+=1}}),{numberingInfo:t.numberingInfo,definitions:t.definitions,images:n,imageMap:o,hyperlinks:i,hyperlinkMap:l}}function Wl(e,t,a){return e.map(e=>{var r;if("table"===e.type){return((null==(r=e.style)?void 0:r.pageBreakBefore)?'<w:p><w:r><w:br w:type="page"/></w:r></w:p>':"")+Ll(e,(e,r)=>{var n;return Vl(e,t,a,{align:null==(n=r.style)?void 0:n.horizontalAlign})})}return Vl(e,t,a)}).join("")}function jl(e,t,a){const r=ot(e).map((r,n)=>Wl(r.blocks,t,e.styles)+function(e,t){var a,r,n,o,i,l,s,d;const c=Cl(e.width,12240),h=Cl(e.height,15840),p=e.margins,u="landscape"===e.orientation?' w:orient="landscape"':"";return`<w:sectPr>${[(null==(a=null==t?void 0:t.header)?void 0:a.first)?`<w:headerReference w:type="first" r:id="${t.header.first.relId}"/>`:"",(null==(r=null==t?void 0:t.header)?void 0:r.even)?`<w:headerReference w:type="even" r:id="${t.header.even.relId}"/>`:"",(null==(n=null==t?void 0:t.header)?void 0:n.default)?`<w:headerReference w:type="default" r:id="${t.header.default.relId}"/>`:"",(null==(o=null==t?void 0:t.footer)?void 0:o.first)?`<w:footerReference w:type="first" r:id="${t.footer.first.relId}"/>`:"",(null==(i=null==t?void 0:t.footer)?void 0:i.even)?`<w:footerReference w:type="even" r:id="${t.footer.even.relId}"/>`:"",(null==(l=null==t?void 0:t.footer)?void 0:l.default)?`<w:footerReference w:type="default" r:id="${t.footer.default.relId}"/>`:""].join("")}${(null==(s=null==t?void 0:t.header)?void 0:s.first)||(null==(d=null==t?void 0:t.footer)?void 0:d.first)?"<w:titlePg/>":""}<w:pgSz w:w="${c}" w:h="${h}"${u}/><w:pgMar w:top="${Cl(p.top,1440)}" w:right="${Cl(p.right,1440)}" w:bottom="${Cl(p.bottom,1440)}" w:left="${Cl(p.left,1440)}" w:header="${Cl(p.header,720)}" w:footer="${Cl(p.footer,720)}" w:gutter="${Cl(p.gutter,0)}"/></w:sectPr>`}(r.pageSettings,a[n])).join("");return`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><w:document ${Ul}><w:body>${r}</w:body></w:document>`}function Xl(e,t,a,r){const n="header"===e?"hdr":"ftr";return`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><w:${n} ${Ul}>${Wl(t,a,r)}</w:${n}>`}function Zl(e,t){let a="";for(const r of t)a+=`<Relationship Id="${r.rId}" Type="${Ml}/hyperlink" Target="${xl(r.href)}" TargetMode="External"/>`;for(const r of e)a+=`<Relationship Id="${r.rId}" Type="${Ml}/image" Target="${r.target}"/>`;return`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Relationships xmlns="${bl}">${a}</Relationships>`}async function Kl(e){const t=new vl,a=function(e){const t=new Map,a=new Map,r=[];let n=1,o=1;const i=e=>{if(!e.list)return;const i=Math.max(0,e.list.level??0),l=`${e.list.kind}:${i}`;let s=a.get(l);s||(s={abstractNumId:n++,numId:o++},a.set(l,s),r.push({kind:e.list.kind,level:i,abstractNumId:s.abstractNumId,numId:s.numId})),t.set(e.id,{numId:s.numId,level:i})};for(const l of ot(e))ql(l.blocks,i),l.header&&ql(l.header,i),l.firstPageHeader&&ql(l.firstPageHeader,i),l.evenPageHeader&&ql(l.evenPageHeader,i),l.footer&&ql(l.footer,i),l.firstPageFooter&&ql(l.firstPageFooter,i),l.evenPageFooter&&ql(l.evenPageFooter,i);return{numberingInfo:t,definitions:r}}(e),r={nextImageId:1},n=ot(e),o=function(e){var t;const a=null==(t=e.footnotes)?void 0:t.items;if(!a)return[];const r=new Map;let n=1;for(const{run:o}of fr(e)){const e=o.footnoteReference;if(!e)continue;if(r.has(e.footnoteId))continue;const t=a[e.footnoteId];t&&(r.set(e.footnoteId,{footnoteId:e.footnoteId,docxId:n,footnote:t}),n+=1)}return Array.from(r.values())}(e),i=function(e){const t=new Map;for(const a of e)t.set(a.footnoteId,a.docxId);return t}(o),l=o.length>0,s=Gl(n.flatMap(e=>e.blocks),a,r,e);s.footnoteIdMap=i;const d=[],c=n.map(()=>({}));let h=1,p=1;n.forEach((t,n)=>{const o=(t,o,l)=>{var s;if(!l||0===l.length)return;const u="header"===t?h:p,f=`${t}${u}.xml`,g=`rId${"header"===t?"Header":"Footer"}${u}`,m=Gl(l,a,r,e);m.footnoteIdMap=i,d.push({kind:t,type:o,path:f,relId:g,blocks:l,context:m});const v="header"===t?"header":"footer";((s=c[n])[v]??(s[v]={}))[o]={relId:g},"header"===t?h+=1:p+=1};o("header","first",t.firstPageHeader),o("header","even",t.evenPageHeader),o("header","default",t.header),o("footer","first",t.firstPageFooter),o("footer","even",t.evenPageFooter),o("footer","default",t.footer)});const u=a.definitions.length>0,f=n.some(e=>{var t,a;return((null==(t=e.evenPageHeader)?void 0:t.length)??0)>0||((null==(a=e.evenPageFooter)?void 0:a.length)??0)>0}),g=[...s.images,...d.flatMap(e=>e.context.images)],m=l?function(e,t,a,r,n,o,i){const l=n(t.flatMap(e=>zl(e.footnote.blocks)));l.footnoteIdMap=i;const s=t.map(e=>{const t=zl(e.footnote.blocks).map(e=>"paragraph"===e.type?Vl(e,l,o):Ll(e,(e,t)=>{var a;return Vl(e,l,o,{align:null==(a=t.style)?void 0:a.horizontalAlign})})).join("");return`<w:footnote w:id="${e.docxId}">${t}</w:footnote>`}).join("");return{xml:`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><w:footnotes xmlns:w="${yl}" xmlns:w14="${wl}" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:r="${Ml}"><w:footnote w:type="separator" w:id="-1"><w:p><w:r><w:separator/></w:r></w:p></w:footnote><w:footnote w:type="continuationSeparator" w:id="0"><w:p><w:r><w:continuationSeparator/></w:r></w:p></w:footnote>${s}</w:footnotes>`,partContext:l}}(0,o,0,0,t=>Gl(t,a,r,e),e.styles,i):null;m&&g.push(...m.partContext.images);const v=g.length>0;t.file("[Content_Types].xml",function(e,t,a,r,n){return`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/>${t?'<Default Extension="png" ContentType="image/png"/><Default Extension="jpg" ContentType="image/jpeg"/><Default Extension="jpeg" ContentType="image/jpeg"/>':""}<Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/>${e?'<Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"/>':""}${a?'<Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/>':""}${n?'<Override PartName="/word/footnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"/>':""}${r.map(e=>{const t="header"===e.kind?"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml":"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml";return`<Override PartName="/word/${e.path}" ContentType="${t}"/>`}).join("")}</Types>`}(u,v,f,d,l)),t.file("_rels/.rels",`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Relationships xmlns="${bl}"><Relationship Id="rId1" Type="${Ml}/officeDocument" Target="word/document.xml"/></Relationships>`),t.file("word/document.xml",jl(e,s,c)),u&&t.file("word/numbering.xml",function(e){const t=e.map(({kind:e,level:t,abstractNumId:a})=>{const r="bullet"===e?'<w:rPr><w:rFonts w:ascii="Symbol" w:hAnsi="Symbol" w:hint="default"/></w:rPr>':"";return`<w:abstractNum w:abstractNumId="${a}"><w:lvl w:ilvl="${t}"><w:start w:val="1"/><w:numFmt w:val="${"bullet"===e?"bullet":"decimal"}"/><w:lvlText w:val="${xl("bullet"===e?"":`%${t+1}.`)}"/><w:lvlJc w:val="left"/>${r}</w:lvl></w:abstractNum>`}).join(""),a=e.map(({abstractNumId:e,numId:t})=>`<w:num w:numId="${t}"><w:abstractNumId w:val="${e}"/></w:num>`).join("");return`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><w:numbering xmlns:w="${yl}">${t}${a}</w:numbering>`}(a.definitions)),(u||f||s.images.length>0||s.hyperlinks.length>0||d.length>0||l)&&t.file("word/_rels/document.xml.rels",function(e,t,a,r,n,o){let i="";e&&(i+=`<Relationship Id="rIdNum" Type="${Ml}/numbering" Target="numbering.xml"/>`),t&&(i+=`<Relationship Id="rIdSettings" Type="${Ml}/settings" Target="settings.xml"/>`);for(const l of r)i+=`<Relationship Id="${l.rId}" Type="${Ml}/hyperlink" Target="${xl(l.href)}" TargetMode="External"/>`;for(const l of a)i+=`<Relationship Id="${l.rId}" Type="${Ml}/image" Target="${l.target}"/>`;for(const l of n){const e="header"===l.kind?"header":"footer";i+=`<Relationship Id="${l.relId}" Type="${Ml}/${e}" Target="${l.path}"/>`}return o&&(i+=`<Relationship Id="rIdFootnotes" Type="${Ml}/footnotes" Target="footnotes.xml"/>`),`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Relationships xmlns="${bl}">${i}</Relationships>`}(u,f,s.images,s.hyperlinks,d,l)),f&&t.file("word/settings.xml",function(e){return`<?xml version="1.0" encoding="UTF-8" standalone="yes"?><w:settings xmlns:w="${yl}">${e?"<w:evenAndOddHeaders/>":""}</w:settings>`}(f));for(const y of d)t.file(`word/${y.path}`,Xl(y.kind,y.blocks,y.context,e.styles)),(y.context.images.length>0||y.context.hyperlinks.length>0)&&t.file(`word/_rels/${y.path}.rels`,Zl(y.context.images,y.context.hyperlinks));m&&(t.file("word/footnotes.xml",m.xml),(m.partContext.images.length>0||m.partContext.hyperlinks.length>0)&&t.file("word/_rels/footnotes.xml.rels",Zl(m.partContext.images,m.partContext.hyperlinks)));for(const y of g)t.file(`word/${y.target}`,y.base64,{base64:!0});return t.generateAsync({type:"arraybuffer"})}const Yl=new WeakMap;function Jl(e){const t=/^data:([^;,]+)(;base64)?,(.*)$/i.exec(e);if(!t)return null;const a=t[1].toLowerCase(),r=Boolean(t[2]),n=t[3]??"";if(!r)return{mediaType:a,data:(new TextEncoder).encode(decodeURIComponent(n))};const o="function"==typeof atob?atob(n):Buffer.from(n,"base64").toString("binary");return{mediaType:a,data:Uint8Array.from(o,e=>e.charCodeAt(0))}}async function Ql(e){if("undefined"==typeof document)return null;const t=await async function(e){return"undefined"==typeof Image?null:await new Promise(t=>{const a=new Image;a.crossOrigin="anonymous",a.onload=()=>t(a),a.onerror=()=>t(null),a.src=e})}(e);if(!t||t.naturalWidth<=0||t.naturalHeight<=0)return null;const a=document.createElement("canvas");a.width=t.naturalWidth,a.height=t.naturalHeight;const r=a.getContext("2d");return r?(r.fillStyle="#ffffff",r.fillRect(0,0,a.width,a.height),r.drawImage(t,0,0),a.toDataURL("image/jpeg",.92)):null}async function $l(e,t,a){let r=e;r.startsWith("data:")||(r=await async function(e){if("function"!=typeof fetch)return null;const t=await fetch(e);if(!t.ok)return null;const a=await t.blob(),r=new Uint8Array(await a.arrayBuffer()),n=Array.from(r,e=>String.fromCharCode(e)).join(""),o="function"==typeof btoa?btoa(n):Buffer.from(r).toString("base64");return`data:${a.type||"application/octet-stream"};base64,${o}`}(r)??r);let n=Jl(r);if(!n)return null;if("image/jpeg"!==n.mediaType&&"image/jpg"!==n.mediaType){const e=await Ql(r);if(n=e?Jl(e):null,!n)return null}return{width:Math.max(1,Math.round(t)),height:Math.max(1,Math.round(a)),data:n.data}}function es(e){return Number.isFinite(e)?.75*e:0}function ts(e){return es(e.fontSize??15)}function as(e,t){const a=new Map(e.slots.map(e=>[e.offset,e])),r=[];for(const n of t.chars){if("\n"===n.char||"\t"===n.char)continue;const e=a.get(n.paragraphOffset);e&&r.push({char:n.char,left:e.left,offset:n.paragraphOffset})}return r}function rs(e,t,a){const r=as(e,t);if(0===r.length)return null;const n=new Map(e.slots.map(e=>[e.offset,e])),o=r[0],i=r[r.length-1],l=n.get(i.offset+1);return{left:o.left,right:(null==l?void 0:l.left)??i.left+.55*a}}const ns=96/72;function os(e,t,a,r,n,o,i,l){const s=rs(a,r,i.fontSize??15);if(!s)return;const d="underline"===l?o+a.top+a.height-2:"doubleStrike"===l?o+a.top+.5*a.height:o+a.top+.52*a.height,c=n+s.left,h=n+s.right,p="underline"===l?i.underlineColor??i.color??"#000000":i.color??"#000000";if("strike"!==l){if("doubleStrike"===l){const a=1.3;return e.drawLine(t,{x1:es(c),y1:es(d-a),x2:es(h),y2:es(d-a),stroke:p,lineWidth:es(1)}),void e.drawLine(t,{x1:es(c),y1:es(d+a),x2:es(h),y2:es(d+a),stroke:p,lineWidth:es(1)})}!function(e,t,a,r,n,o,i){const l=Zt(i),s=(n,i)=>{e.drawLine(t,{x1:es(a),y1:es(n),x2:es(r),y2:es(n),stroke:o,lineWidth:es(l),dashArray:i})};if(jt(i))return s(n-1.5),void s(n+1.5);if(Xt(i))return void function(e,t,a,r,n,o,i){const l=4,s=1.5;let d=a,c=n;for(let h=a;h<=r;h+=1){const r=n+Math.sin((h-a)/l*Math.PI)*s;e.drawLine(t,{x1:es(d),y1:es(c),x2:es(h),y2:es(r),stroke:o,lineWidth:es(i)}),d=h,c=r}}(e,t,a,r,n,o,l);s(n,Kt(i))}(e,t,c,h,d,p,i.underlineStyle)}else e.drawLine(t,{x1:es(c),y1:es(d),x2:es(h),y2:es(d),stroke:p,lineWidth:es(1)})}async function is(e,t,a,r,n,o,i,l,s){var d;if(n.image){const a=r.slots.find(e=>e.offset===n.startOffset)??r.slots.find(e=>e.offset>=n.startOffset);if(!a)return;const s=await async function(e,t,a){const r=ze(t,a.src);if(!r)return null;let n=Yl.get(e);n||(n=new Map,Yl.set(e,n));const o=n.get(r);if(o)return o;const i=$l(r,a.width,a.height).then(t=>t?e.registerImageResource({width:t.width,height:t.height,data:t.data,filter:"DCTDecode"}):null);return n.set(r,i),i}(e,o,n.image);if(!s)return;return void e.drawImage(t,{resourceName:s,x:es(i+a.left),y:es(l+r.top+r.height-n.image.height),width:es(n.image.width),height:es(n.image.height)})}const c=Ze(n.styles,null==(d=a.style)?void 0:d.styleId,o.styles);if(c.hidden)return;const h=s.resolveFontFace({fontFamily:c.fontFamily,bold:c.bold,italic:c.italic}),p=c.smallCaps?.8*ts(c):ts(c),u=(c.baselineShift??0)*ns,f=l+r.top+.8*r.height-u,g=as(r,n),m=g.map(e=>c.allCaps?e.char.toUpperCase():e.char).join(""),v=g[0];if(!v||0===m.length)return;!function(e,t,a,r,n,o,i){if(!i.highlight)return;const l=rs(a,r,i.fontSize??15);l&&e.drawRect(t,{x:es(n+l.left),y:es(o+a.top+2),width:es(Math.max(0,l.right-l.left)),height:es(Math.max(2,a.height-4)),fill:i.highlight})}(e,t,r,n,i,l,c);if("justify"===(Ke(a.style,o.styles).align??"left")){const a=function(e){const t=[];let a=[];for(const r of e)" "!==r.char?a.push(r):a.length>0&&(t.push(a),a=[]);return a.length>0&&t.push(a),t}(g);for(const r of a){const a=r.map(e=>c.allCaps?e.char.toUpperCase():e.char).join("");0!==a.length&&e.drawText(t,{x:es(i+r[0].left),y:es(f),text:a,fontSize:p,color:c.color??"#000000",bold:c.bold,italic:c.italic,fontResourceName:h.writerResourceName,characterSpacing:c.characterSpacing??0,horizontalScale:c.characterScale??100})}}else e.drawText(t,{x:es(i+v.left),y:es(f),text:m,fontSize:p,color:c.color??"#000000",bold:c.bold,italic:c.italic,fontResourceName:h.writerResourceName,characterSpacing:c.characterSpacing??0,horizontalScale:c.characterScale??100});c.underline&&os(e,t,r,n,i,l,c,"underline"),c.strike&&os(e,t,r,n,i,l,c,"strike"),c.doubleStrike&&os(e,t,r,n,i,l,c,"doubleStrike")}const ls=["•","○","▪","•","○","▪"],ss=["decimal","lowerLetter","lowerRoman","decimal","lowerLetter","lowerRoman"];function ds(e){if(e<=0)return String(e);let t=e,a="";for(;t>0;){const e=(t-1)%26;a=String.fromCharCode(65+e)+a,t=Math.floor((t-1)/26)}return a}function cs(e){if(e<=0||e>=4e3)return String(e);const t=[[1e3,"M"],[900,"CM"],[500,"D"],[400,"CD"],[100,"C"],[90,"XC"],[50,"L"],[40,"XL"],[10,"X"],[9,"IX"],[5,"V"],[4,"IV"],[1,"I"]];let a=e,r="";for(const[n,o]of t)for(;a>=n;)r+=o,a-=n;return r}function hs(e,t){if(!e.list)return"";const a=Math.max(0,e.list.level??0);if("bullet"===e.list.kind)return ls[a%ls.length];return`${function(e,t){switch(t){case"lowerLetter":return ds(e).toLowerCase();case"upperLetter":return ds(e).toUpperCase();case"lowerRoman":return cs(e).toLowerCase();case"upperRoman":return cs(e).toUpperCase();default:return String(e)}}(t.get(e.id)??e.list.startAt??1,e.list.format&&"bullet"!==e.list.format?e.list.format:ss[a%ss.length])}.`}function ps(e,t,a,r,n,o,i,l,s){var d;if(0!==r.index)return;const c=hs(a,s);if(!c)return;const h=r.slots[0];if(!h)return;const p=Ze(void 0,null==(d=a.style)?void 0:d.styleId,n.styles),u=l.resolveFontFace({fontFamily:p.fontFamily,bold:p.bold,italic:p.italic});e.drawText(t,{x:es(o+Math.max(0,h.left-24)),y:es(i+r.top+.8*r.height),text:c,fontSize:ts(p),color:p.color??"#000000",bold:p.bold,italic:p.italic,fontResourceName:u.writerResourceName})}async function us(e,t,a,r,n,o,i,l,s){for(const d of r){ps(e,t,a,d,n,o,i,l,s);for(const r of d.fragments)await is(e,t,a,d,r,n,o,i,l)}}function fs(e,t,a,r,n,o,i){"none"===a.type||a.width<=0||e.drawLine(t,{x1:es(r),y1:es(n),x2:es(o),y2:es(i),stroke:a.color,lineWidth:es(a.width)})}function gs(e,t,a,r,n){const o=r+a.left,i=n+a.top,l=o+a.width,s=i+a.height;fs(e,t,a.borders.top,o,i,l,i),fs(e,t,a.borders.right,l,i,l,s),fs(e,t,a.borders.bottom,o,s,l,s),fs(e,t,a.borders.left,o,i,o,s)}async function ms(e,t,a,r,n,o,i,l,s){if("table"!==a.sourceBlock.type)return;const d=a.sourceBlock,c=a.tableSegment?rr(d,a.tableSegment):d;if(0===c.rows.length)return;const h=Ai({table:c,state:{document:r},pageIndex:0,layoutMode:"wordParity",originX:0,originY:0,contentWidth:i,estimatedHeight:a.estimatedHeight});for(const p of h.cells)p.shading&&e.drawRect(t,{x:es(n+p.left),y:es(o+p.top),width:es(p.width),height:es(p.height),fill:p.shading});for(const p of h.cells)gs(e,t,p,n,o);for(const p of h.cells)for(const a of p.paragraphs)await us(e,t,a.paragraph,a.lines,r,n+a.originX,o+a.originY,l,s)}async function vs(e,t,a,r,n,o,i,l,s){if(!a||0===a.length)return;let d=o;for(const c of a){if("paragraph"===c.sourceBlock.type&&c.layout){const a=Ke(c.sourceBlock.style,r.styles),i=0===c.layout.startOffset&&d>o?a.spacingBefore??0:0;await us(e,t,c.sourceBlock,c.layout.lines,r,n,d+i,l,s)}else"table"===c.sourceBlock.type&&await ms(e,t,c,r,n,d,i,l,s);d+=Math.max(0,c.estimatedHeight)}}function ys(e,t,a,r){e.drawRect(t,{x:0,y:0,width:a,height:r,fill:"#ffffff"})}function bs(e){var t,a;const r=new Set([qe.fontFamily]);for(const n of dt(e)){r.add(Ze(void 0,null==(t=n.style)?void 0:t.styleId,e.styles).fontFamily);for(const e of n.runs)r.add(null==(a=e.styles)?void 0:a.fontFamily)}return r}const Ms=[{key:"helvetica:regular",family:"Helvetica",bold:!1,italic:!1,writerResourceName:"F1",pdfResource:{kind:"base14",resourceName:"F1",baseFont:"Helvetica"}},{key:"helvetica:bold",family:"Helvetica",bold:!0,italic:!1,writerResourceName:"F2",pdfResource:{kind:"base14",resourceName:"F2",baseFont:"Helvetica-Bold"}},{key:"helvetica:italic",family:"Helvetica",bold:!1,italic:!0,writerResourceName:"F3",pdfResource:{kind:"base14",resourceName:"F3",baseFont:"Helvetica-Oblique"}},{key:"helvetica:bolditalic",family:"Helvetica",bold:!0,italic:!0,writerResourceName:"F4",pdfResource:{kind:"base14",resourceName:"F4",baseFont:"Helvetica-BoldOblique"}}],ws={regular:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italic:"Roboto-Italic.ttf",bolditalic:"Roboto-MediumItalic.ttf"},xs=[{family:"Carlito",aliases:["Calibri","Calibri Light","Aptos","Aptos Display","Aptos Narrow"],files:{regular:"Carlito-Regular.ttf",bold:"Carlito-Bold.ttf",italic:"Carlito-Italic.ttf",bolditalic:"Carlito-BoldItalic.ttf"}},{family:"Arimo",aliases:["Arial"],files:{regular:"Arimo-Regular.ttf",bold:"Arimo-Bold.ttf",italic:"Arimo-Italic.ttf",bolditalic:"Arimo-BoldItalic.ttf"}},{family:"Tinos",aliases:["Times New Roman","Times"],files:{regular:"Tinos-Regular.ttf",bold:"Tinos-Bold.ttf",italic:"Tinos-Italic.ttf",bolditalic:"Tinos-BoldItalic.ttf"}}];function Cs(e){var t;const a=null==(t=(e??"Helvetica").split(",")[0])?void 0:t.trim().replace(/^['\"]|['\"]$/g,"");return a&&a.length>0?a:"Helvetica"}function Ss(e,t,a){return`${e.toLowerCase()}:${t?"bold":"regular"}${a?"italic":""}`}const Is=new Map;function ks(e){const t=Is.get(e);if(t)return t;const a=async function(e){var t;const a=function(e){return`${("undefined"==typeof document&&"undefined"==typeof location?require("url").pathToFileURL(__filename).href:"undefined"==typeof document?location.href:r&&"SCRIPT"===r.tagName.toUpperCase()&&r.src||new URL("oasis-editor.umd.cjs",document.baseURI).href).replace(/[^/]*$/,"")}assets/${encodeURIComponent(e)}`}(e);try{if(a.startsWith("file:")){const e=new Function("return typeof process === 'object' ? process : undefined")(),t=new Function("return typeof require === 'function' ? require : undefined")(),r=(a=>{var r;return(null==(r=null==e?void 0:e.getBuiltinModule)?void 0:r.call(e,a))??(null==t?void 0:t(a))})("node:fs");return(null==r?void 0:r.readFileSync(new URL(a)))??null}if("function"==typeof fetch){const e=await fetch(a);return e.ok?new Uint8Array(await e.arrayBuffer()):null}const e=new Function("return typeof process === 'object' ? process : undefined")(),r=new Function("return typeof require === 'function' ? require : undefined")(),n=t=>{var a;return(null==(a=null==e?void 0:e.getBuiltinModule)?void 0:a.call(e,t))??(null==r?void 0:r(t))},o=n("node:fs"),i=null==(t=n("node:url"))?void 0:t.fileURLToPath;return o&&i?o.readFileSync(i(a)):null}catch{return null}}(e);return Is.set(e,a),a}class As{constructor(){a(this,"faces",new Map),a(this,"fallbackFamily","Helvetica");for(const e of Ms)this.registerFontFace(e)}registerFontFace(e){this.faces.set(Ss(e.family,e.bold,e.italic),e)}resolveFontFace(e){const t=Cs(e.fontFamily),a=Boolean(e.bold),r=Boolean(e.italic);return this.faces.get(Ss(t,a,r))??this.faces.get(Ss(this.fallbackFamily,a,r))??this.faces.get(Ss(this.fallbackFamily,!1,!1))}getPdfFontResources(){const e=new Map;for(const t of this.faces.values())e.set(t.pdfResource.resourceName,t.pdfResource);return Array.from(e.values())}async loadBundledUnicodeFaces(e={}){const t=e.families?new Set(Array.from(e.families).map(Cs).map(e=>e.toLowerCase())):null,a=await this.registerOfficeCompatibleFaces(t);if(!t||t.has("roboto")||Array.from(t).some(e=>"helvetica"!==e&&!a.has(e)))for(const[r,n]of Object.entries(ws)){const e=await ks(n);if(!e)continue;const t="bold"===r||"bolditalic"===r,a="italic"===r||"bolditalic"===r,o=`Roboto${r[0].toUpperCase()}${r.slice(1)}`;this.registerFontFace({key:`roboto:${r}`,family:"Roboto",bold:t,italic:a,writerResourceName:o,pdfResource:{kind:"unicode",resourceName:o,family:"Roboto",fontData:e}}),this.fallbackFamily="Roboto"}}async registerOfficeCompatibleFaces(e){const t=new Set;for(const a of xs){const r=[a.family,...a.aliases].map(e=>e.toLowerCase());if(!(!e||r.some(t=>e.has(t))))continue;for(const e of r)t.add(e);const n=[];for(const[e,t]of Object.entries(a.files)){const r=await ks(t);if(!r)continue;const o="bold"===e||"bolditalic"===e,i="italic"===e||"bolditalic"===e,l=`${a.family}${e[0].toUpperCase()}${e.slice(1)}`,s={key:`${a.family.toLowerCase()}:${e}`,family:a.family,bold:o,italic:i,writerResourceName:l,pdfResource:{kind:"unicode",resourceName:l,family:a.family,fontData:r}};this.registerFontFace(s),n.push(s)}for(const e of a.aliases)for(const t of n)this.registerFontFace({...t,key:`${e.toLowerCase()}:${t.key.split(":")[1]}`,family:e})}return t}}const Ts={utf16le:"utf-16le",ucs2:"utf-16le",utf16be:"utf-16be"};class Ps{constructor(e){this.buffer=e,this.view=new DataView(e.buffer,e.byteOffset,e.byteLength),this.pos=0,this.length=this.buffer.length}readString(e,t="ascii"){t=Ts[t]||t;let a=this.readBuffer(e);try{return new TextDecoder(t).decode(a)}catch(r){return a}}readBuffer(e){return this.buffer.slice(this.pos,this.pos+=e)}readUInt24BE(){return(this.readUInt16BE()<<8)+this.readUInt8()}readUInt24LE(){return this.readUInt16LE()+(this.readUInt8()<<16)}readInt24BE(){return(this.readInt16BE()<<8)+this.readUInt8()}readInt24LE(){return this.readUInt16LE()+(this.readInt8()<<16)}}Ps.TYPES={UInt8:1,UInt16:2,UInt24:3,UInt32:4,Int8:1,Int16:2,Int24:3,Int32:4,Float:4,Double:8};for(let gR of Object.getOwnPropertyNames(DataView.prototype))if("get"===gR.slice(0,3)){let e=gR.slice(3).replace("Ui","UI");"Float32"===e?e="Float":"Float64"===e&&(e="Double");let t=Ps.TYPES[e];Ps.prototype["read"+e+(1===t?"":"BE")]=function(){const e=this.view[gR](this.pos,!1);return this.pos+=t,e},1!==t&&(Ps.prototype["read"+e+"LE"]=function(){const e=this.view[gR](this.pos,!0);return this.pos+=t,e})}const Es=new TextEncoder,Ls=18==new Uint8Array(new Uint16Array([4660]).buffer)[0];class Os{constructor(e){this.buffer=e,this.view=new DataView(this.buffer.buffer,this.buffer.byteOffset,this.buffer.byteLength),this.pos=0}writeBuffer(e){this.buffer.set(e,this.pos),this.pos+=e.length}writeString(e,t="ascii"){let a;switch(t){case"utf16le":case"utf16-le":case"ucs2":a=Rs(e,Ls);break;case"utf16be":case"utf16-be":a=Rs(e,!Ls);break;case"utf8":a=Es.encode(e);break;case"ascii":a=function(e){let t=new Uint8Array(e.length);for(let a=0;a<e.length;a++)t[a]=e.charCodeAt(a);return t}(e);break;default:throw new Error(`Unsupported encoding: ${t}`)}this.writeBuffer(a)}writeUInt24BE(e){this.buffer[this.pos++]=e>>>16&255,this.buffer[this.pos++]=e>>>8&255,this.buffer[this.pos++]=255&e}writeUInt24LE(e){this.buffer[this.pos++]=255&e,this.buffer[this.pos++]=e>>>8&255,this.buffer[this.pos++]=e>>>16&255}writeInt24BE(e){e>=0?this.writeUInt24BE(e):this.writeUInt24BE(e+16777215+1)}writeInt24LE(e){e>=0?this.writeUInt24LE(e):this.writeUInt24LE(e+16777215+1)}fill(e,t){if(t<this.buffer.length)this.buffer.fill(e,this.pos,this.pos+t),this.pos+=t;else{const a=new Uint8Array(t);a.fill(e),this.writeBuffer(a)}}}function Rs(e,t){let a=new Uint16Array(e.length);for(let r=0;r<e.length;r++){let n=e.charCodeAt(r);t&&(n=n>>8|(255&n)<<8),a[r]=n}return new Uint8Array(a.buffer)}for(let gR of Object.getOwnPropertyNames(DataView.prototype))if("set"===gR.slice(0,3)){let e=gR.slice(3).replace("Ui","UI");"Float32"===e?e="Float":"Float64"===e&&(e="Double");let t=Ps.TYPES[e];Os.prototype["write"+e+(1===t?"":"BE")]=function(e){this.view[gR](this.pos,e,!1),this.pos+=t},1!==t&&(Os.prototype["write"+e+"LE"]=function(e){this.view[gR](this.pos,e,!0),this.pos+=t})}class Hs{fromBuffer(e){let t=new Ps(e);return this.decode(t)}toBuffer(e){let t=this.size(e),a=new Uint8Array(t),r=new Os(a);return this.encode(r,e),a}}class Ns extends Hs{constructor(e,t="BE"){super(),this.type=e,this.endian=t,this.fn=this.type,"8"!==this.type[this.type.length-1]&&(this.fn+=this.endian)}size(){return Ps.TYPES[this.type]}decode(e){return e[`read${this.fn}`]()}encode(e,t){return e[`write${this.fn}`](t)}}const Ds=new Ns("UInt8"),Fs=new Ns("UInt16","BE");new Ns("UInt16","LE");const Bs=new Ns("UInt24","BE");new Ns("UInt24","LE");const Vs=new Ns("UInt32","BE");new Ns("UInt32","LE");const zs=new Ns("Int8"),_s=new Ns("Int16","BE");new Ns("Int16","LE"),new Ns("Int24","BE"),new Ns("Int24","LE");const Us=new Ns("Int32","BE");new Ns("Int32","LE"),new Ns("Float","BE"),new Ns("Float","LE"),new Ns("Double","BE"),new Ns("Double","LE");class qs extends Ns{constructor(e,t,a=e>>1){super(`Int${e}`,t),this._point=1<<a}decode(e){return super.decode(e)/this._point}encode(e,t){return super.encode(e,t*this._point|0)}}const Gs=new qs(16,"BE");new qs(16,"LE");const Ws=new qs(32,"BE");function js(e,t,a){let r;if("number"==typeof e?r=e:"function"==typeof e?r=e.call(a,a):a&&"string"==typeof e?r=a[e]:t&&e instanceof Ns&&(r=e.decode(t)),isNaN(r))throw new Error("Not a fixed size");return r}new qs(32,"LE");class Xs{constructor(e={}){this.enumerable=!0,this.configurable=!0;for(let t in e){const a=e[t];this[t]=a}}}class Zs extends Hs{constructor(e,t,a="count"){super(),this.type=e,this.length=t,this.lengthType=a}decode(e,t){let a;const{pos:r}=e,n=[];let o=t;if(null!=this.length&&(a=js(this.length,e,t)),this.length instanceof Ns&&(Object.defineProperties(n,{parent:{value:t},_startOffset:{value:r},_currentOffset:{value:0,writable:!0},_length:{value:a}}),o=n),null==a||"bytes"===this.lengthType){const r=null!=a?e.pos+a:(null!=t?t._length:void 0)?t._startOffset+t._length:e.length;for(;e.pos<r;)n.push(this.type.decode(e,o))}else for(let i=0,l=a;i<l;i++)n.push(this.type.decode(e,o));return n}size(e,t,a=!0){if(!e)return this.type.size(null,t)*js(this.length,null,t);let r=0;this.length instanceof Ns&&(r+=this.length.size(),t={parent:t,pointerSize:0});for(let n of e)r+=this.type.size(n,t);return t&&a&&this.length instanceof Ns&&(r+=t.pointerSize),r}encode(e,t,a){let r=a;this.length instanceof Ns&&(r={pointers:[],startOffset:e.pos,parent:a},r.pointerOffset=e.pos+this.size(t,r,!1),this.length.encode(e,t.length));for(let n of t)this.type.encode(e,n,r);if(this.length instanceof Ns){let t=0;for(;t<r.pointers.length;){const a=r.pointers[t++];a.type.encode(e,a.val,a.parent)}}}}class Ks extends Zs{decode(e,t){const{pos:a}=e,r=js(this.length,e,t);this.length instanceof Ns&&(t={parent:t,_startOffset:a,_currentOffset:0,_length:r});const n=new Ys(this.type,r,e,t);return e.pos+=r*this.type.size(null,t),n}size(e,t){return e instanceof Ys&&(e=e.toArray()),super.size(e,t)}encode(e,t,a){return t instanceof Ys&&(t=t.toArray()),super.encode(e,t,a)}}class Ys{constructor(e,t,a,r){this.type=e,this.length=t,this.stream=a,this.ctx=r,this.base=this.stream.pos,this.items=[]}get(e){if(!(e<0||e>=this.length)){if(null==this.items[e]){const{pos:t}=this.stream;this.stream.pos=this.base+this.type.size(null,this.ctx)*e,this.items[e]=this.type.decode(this.stream,this.ctx),this.stream.pos=t}return this.items[e]}}toArray(){const e=[];for(let t=0,a=this.length;t<a;t++)e.push(this.get(t));return e}}class Js extends Hs{constructor(e,t=[]){super(),this.type=e,this.flags=t}decode(e){const t=this.type.decode(e),a={};for(let r=0;r<this.flags.length;r++){const e=this.flags[r];null!=e&&(a[e]=!!(t&1<<r))}return a}size(){return this.type.size()}encode(e,t){let a=0;for(let r=0;r<this.flags.length;r++){const e=this.flags[r];null!=e&&t[e]&&(a|=1<<r)}return this.type.encode(e,a)}}class Qs extends Hs{constructor(e){super(),this.length=e}decode(e,t){const a=js(this.length,e,t);return e.readBuffer(a)}size(e,t){if(!e)return js(this.length,null,t);let a=e.length;return this.length instanceof Ns&&(a+=this.length.size()),a}encode(e,t,a){return this.length instanceof Ns&&this.length.encode(e,t.length),e.writeBuffer(t)}}class $s extends Hs{constructor(e,t=!0){super(),this.type=e,this.condition=t}decode(e,t){let{condition:a}=this;if("function"==typeof a&&(a=a.call(t,t)),a)return this.type.decode(e,t)}size(e,t){let{condition:a}=this;return"function"==typeof a&&(a=a.call(t,t)),a?this.type.size(e,t):0}encode(e,t,a){let{condition:r}=this;if("function"==typeof r&&(r=r.call(a,a)),r)return this.type.encode(e,t,a)}}class ed extends Hs{constructor(e,t=1){super(),this.type=e,this.count=t}decode(e,t){e.pos+=this.size(null,t)}size(e,t){const a=js(this.count,null,t);return this.type.size()*a}encode(e,t,a){return e.fill(0,this.size(t,a))}}class td extends Hs{constructor(e,t="ascii"){super(),this.length=e,this.encoding=t}decode(e,t){let a,r,{encoding:n}=this;"function"==typeof n&&(n=n.call(t,t)||"ascii");let o=ad(n);if(null!=this.length)a=js(this.length,e,t);else{let t;for(({buffer:t,length:a,pos:r}=e);r<a-o+1&&(0!==t[r]||2===o&&0!==t[r+1]);)r+=o;a=r-e.pos}const i=e.readString(a,n);return null==this.length&&e.pos<e.length&&(e.pos+=o),i}size(e,t){if(null==e)return js(this.length,null,t);let{encoding:a}=this;"function"==typeof a&&(a=a.call(null!=t?t.val:void 0,null!=t?t.val:void 0)||"ascii"),"utf16be"===a&&(a="utf16le");let r=rd(e,a);return this.length instanceof Ns&&(r+=this.length.size()),null==this.length&&(r+=ad(a)),r}encode(e,t,a){let{encoding:r}=this;if("function"==typeof r&&(r=r.call(null!=a?a.val:void 0,null!=a?a.val:void 0)||"ascii"),this.length instanceof Ns&&this.length.encode(e,rd(t,r)),e.writeString(t,r),null==this.length)return 2==ad(r)?e.writeUInt16LE(0):e.writeUInt8(0)}}function ad(e){switch(e){case"ascii":case"utf8":default:return 1;case"utf16le":case"utf16-le":case"utf-16be":case"utf-16le":case"utf16be":case"utf16-be":case"ucs2":return 2}}function rd(e,t){switch(t){case"ascii":return e.length;case"utf8":let a=0;for(let t=0;t<e.length;t++){let r=e.charCodeAt(t);if(r>=55296&&r<=56319&&t<e.length-1){let a=e.charCodeAt(++t);56320==(64512&a)?r=((1023&r)<<10)+(1023&a)+65536:t--}4294967168&r?4294965248&r?4294901760&r?4292870144&r||(a+=4):a+=3:a+=2:a++}return a;case"utf16le":case"utf16-le":case"utf16be":case"utf16-be":case"ucs2":return 2*e.length;default:throw new Error("Unknown encoding "+t)}}class nd extends Hs{constructor(e={}){super(),this.fields=e}decode(e,t,a=0){const r=this._setup(e,t,a);return this._parseFields(e,r,this.fields),null!=this.process&&this.process.call(r,e),r}_setup(e,t,a){const r={};return Object.defineProperties(r,{parent:{value:t},_startOffset:{value:e.pos},_currentOffset:{value:0,writable:!0},_length:{value:a}}),r}_parseFields(e,t,a){for(let n in a){var r;const o=a[n];void 0!==(r="function"==typeof o?o.call(t,t):o.decode(e,t))&&(r instanceof Xs?Object.defineProperty(t,n,r):t[n]=r),t._currentOffset=e.pos-t._startOffset}}size(e,t,a=!0){null==e&&(e={});const r={parent:t,val:e,pointerSize:0};null!=this.preEncode&&this.preEncode.call(e);let n=0;for(let o in this.fields){const t=this.fields[o];null!=t.size&&(n+=t.size(e[o],r))}return a&&(n+=r.pointerSize),n}encode(e,t,a){let r;null!=this.preEncode&&this.preEncode.call(t,e);const n={pointers:[],startOffset:e.pos,parent:a,val:t,pointerSize:0};n.pointerOffset=e.pos+this.size(t,n,!1);for(let i in this.fields)r=this.fields[i],null!=r.encode&&r.encode(e,t[i],n);let o=0;for(;o<n.pointers.length;){const t=n.pointers[o++];t.type.encode(e,t.val,t.parent)}}}class od extends nd{constructor(e,t={}){super(),this.type=e,this.versions=t,"string"==typeof e&&(this.versionPath=e.split("."))}decode(e,t,a=0){const r=this._setup(e,t,a);var n;"string"==typeof this.type?r.version=(n=t,this.versionPath.reduce((e,t)=>e&&e[t],n)):r.version=this.type.decode(e),this.versions.header&&this._parseFields(e,r,this.versions.header);const o=this.versions[r.version];if(null==o)throw new Error(`Unknown version ${r.version}`);return o instanceof od?o.decode(e,t):(this._parseFields(e,r,o),null!=this.process&&this.process.call(r,e),r)}size(e,t,a=!0){let r,n;if(!e)throw new Error("Not a fixed size");null!=this.preEncode&&this.preEncode.call(e);const o={parent:t,val:e,pointerSize:0};let i=0;if("string"!=typeof this.type&&(i+=this.type.size(e.version,o)),this.versions.header)for(r in this.versions.header)n=this.versions.header[r],null!=n.size&&(i+=n.size(e[r],o));const l=this.versions[e.version];if(null==l)throw new Error(`Unknown version ${e.version}`);for(r in l)n=l[r],null!=n.size&&(i+=n.size(e[r],o));return a&&(i+=o.pointerSize),i}encode(e,t,a){let r,n;null!=this.preEncode&&this.preEncode.call(t,e);const o={pointers:[],startOffset:e.pos,parent:a,val:t,pointerSize:0};if(o.pointerOffset=e.pos+this.size(t,o,!1),"string"!=typeof this.type&&this.type.encode(e,t.version),this.versions.header)for(r in this.versions.header)n=this.versions.header[r],null!=n.encode&&n.encode(e,t[r],o);const i=this.versions[t.version];for(r in i)n=i[r],null!=n.encode&&n.encode(e,t[r],o);let l=0;for(;l<o.pointers.length;){const t=o.pointers[l++];t.type.encode(e,t.val,t.parent)}}}let id=class extends Hs{constructor(e,t,a={}){if(super(),this.offsetType=e,this.type=t,this.options=a,"void"===this.type&&(this.type=null),null==this.options.type&&(this.options.type="local"),null==this.options.allowNull&&(this.options.allowNull=!0),null==this.options.nullValue&&(this.options.nullValue=0),null==this.options.lazy&&(this.options.lazy=!1),this.options.relativeTo){if("function"!=typeof this.options.relativeTo)throw new Error("relativeTo option must be a function");this.relativeToGetter=a.relativeTo}}decode(e,t){const a=this.offsetType.decode(e,t);if(a===this.options.nullValue&&this.options.allowNull)return null;let r;switch(this.options.type){case"local":r=t._startOffset;break;case"immediate":r=e.pos-this.offsetType.size();break;case"parent":r=t.parent._startOffset;break;default:for(var n=t;n.parent;)n=n.parent;r=n._startOffset||0}this.options.relativeTo&&(r+=this.relativeToGetter(t));const o=a+r;if(null!=this.type){let a=null;const r=()=>{if(null!=a)return a;const{pos:r}=e;return e.pos=o,a=this.type.decode(e,t),e.pos=r,a};return this.options.lazy?new Xs({get:r}):r()}return o}size(e,t){const a=t;switch(this.options.type){case"local":case"immediate":break;case"parent":t=t.parent;break;default:for(;t.parent;)t=t.parent}let{type:r}=this;if(null==r){if(!(e instanceof ld))throw new Error("Must be a VoidPointer");({type:r}=e),e=e.value}if(e&&t){let n=r.size(e,a);t.pointerSize+=n}return this.offsetType.size()}encode(e,t,a){let r;const n=a;if(null==t)return void this.offsetType.encode(e,this.options.nullValue);switch(this.options.type){case"local":r=a.startOffset;break;case"immediate":r=e.pos+this.offsetType.size(t,n);break;case"parent":r=(a=a.parent).startOffset;break;default:for(r=0;a.parent;)a=a.parent}this.options.relativeTo&&(r+=this.relativeToGetter(n.val)),this.offsetType.encode(e,a.pointerOffset-r);let{type:o}=this;if(null==o){if(!(t instanceof ld))throw new Error("Must be a VoidPointer");({type:o}=t),t=t.value}return a.pointers.push({type:o,val:t,parent:n}),a.pointerOffset+=o.size(t,n)}};class ld{constructor(e,t){this.type=e,this.value=t}}function sd(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}function dd(e,t,a,r){var n,o=arguments.length,i=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,a):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,a,r);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,a,i):n(t,a))||i);return o>3&&i&&Object.defineProperty(t,a,i),i}"function"==typeof SuppressedError&&SuppressedError;const cd=fl(function e(t,a){if(t===a)return!0;if(t&&a&&"object"==typeof t&&"object"==typeof a){if(t.constructor!==a.constructor)return!1;var r,n,o;if(Array.isArray(t)){if((r=t.length)!=a.length)return!1;for(n=r;0!==n--;)if(!e(t[n],a[n]))return!1;return!0}if(t.constructor===RegExp)return t.source===a.source&&t.flags===a.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===a.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===a.toString();if((r=(o=Object.keys(t)).length)!==Object.keys(a).length)return!1;for(n=r;0!==n--;)if(!Object.prototype.hasOwnProperty.call(a,o[n]))return!1;for(n=r;0!==n--;){var i=o[n];if(!e(t[i],a[i]))return!1}return!0}return t!=t&&a!=a});for(var hd={byteLength:function(e){var t=vd(e),a=t[0],r=t[1];return 3*(a+r)/4-r},toByteArray:function(e){var t,a,r=vd(e),n=r[0],o=r[1],i=new fd(function(e,t,a){return 3*(t+a)/4-a}(0,n,o)),l=0,s=o>0?n-4:n;for(a=0;a<s;a+=4)t=ud[e.charCodeAt(a)]<<18|ud[e.charCodeAt(a+1)]<<12|ud[e.charCodeAt(a+2)]<<6|ud[e.charCodeAt(a+3)],i[l++]=t>>16&255,i[l++]=t>>8&255,i[l++]=255&t;2===o&&(t=ud[e.charCodeAt(a)]<<2|ud[e.charCodeAt(a+1)]>>4,i[l++]=255&t);1===o&&(t=ud[e.charCodeAt(a)]<<10|ud[e.charCodeAt(a+1)]<<4|ud[e.charCodeAt(a+2)]>>2,i[l++]=t>>8&255,i[l++]=255&t);return i},fromByteArray:function(e){for(var t,a=e.length,r=a%3,n=[],o=16383,i=0,l=a-r;i<l;i+=o)n.push(bd(e,i,i+o>l?l:i+o));1===r?(t=e[a-1],n.push(pd[t>>2]+pd[t<<4&63]+"==")):2===r&&(t=(e[a-2]<<8)+e[a-1],n.push(pd[t>>10]+pd[t>>4&63]+pd[t<<2&63]+"="));return n.join("")}},pd=[],ud=[],fd="undefined"!=typeof Uint8Array?Uint8Array:Array,gd="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",md=0;md<64;++md)pd[md]=gd[md],ud[gd.charCodeAt(md)]=md;function vd(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var a=e.indexOf("=");return-1===a&&(a=t),[a,a===t?0:4-a%4]}function yd(e){return pd[e>>18&63]+pd[e>>12&63]+pd[e>>6&63]+pd[63&e]}function bd(e,t,a){for(var r,n=[],o=t;o<a;o+=3)r=(e[o]<<16&16711680)+(e[o+1]<<8&65280)+(255&e[o+2]),n.push(yd(r));return n.join("")}ud["-".charCodeAt(0)]=62,ud["_".charCodeAt(0)]=63;function Md(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function wd(e,t){this.source=e,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=t,this.destLen=0,this.ltree=new Md,this.dtree=new Md}var xd=new Md,Cd=new Md,Sd=new Uint8Array(30),Id=new Uint16Array(30),kd=new Uint8Array(30),Ad=new Uint16Array(30),Td=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Pd=new Md,Ed=new Uint8Array(320);function Ld(e,t,a,r){var n,o;for(n=0;n<a;++n)e[n]=0;for(n=0;n<30-a;++n)e[n+a]=n/a|0;for(o=r,n=0;n<30;++n)t[n]=o,o+=1<<e[n]}var Od=new Uint16Array(16);function Rd(e,t,a,r){var n,o;for(n=0;n<16;++n)e.table[n]=0;for(n=0;n<r;++n)e.table[t[a+n]]++;for(e.table[0]=0,o=0,n=0;n<16;++n)Od[n]=o,o+=e.table[n];for(n=0;n<r;++n)t[a+n]&&(e.trans[Od[t[a+n]]++]=n)}function Hd(e){e.bitcount--||(e.tag=e.source[e.sourceIndex++],e.bitcount=7);var t=1&e.tag;return e.tag>>>=1,t}function Nd(e,t,a){if(!t)return a;for(;e.bitcount<24;)e.tag|=e.source[e.sourceIndex++]<<e.bitcount,e.bitcount+=8;var r=e.tag&65535>>>16-t;return e.tag>>>=t,e.bitcount-=t,r+a}function Dd(e,t){for(;e.bitcount<24;)e.tag|=e.source[e.sourceIndex++]<<e.bitcount,e.bitcount+=8;var a=0,r=0,n=0,o=e.tag;do{r=2*r+(1&o),o>>>=1,++n,a+=t.table[n],r-=t.table[n]}while(r>=0);return e.tag=o,e.bitcount-=n,t.trans[a+r]}function Fd(e,t,a){var r,n,o,i,l,s;for(r=Nd(e,5,257),n=Nd(e,5,1),o=Nd(e,4,4),i=0;i<19;++i)Ed[i]=0;for(i=0;i<o;++i){var d=Nd(e,3,0);Ed[Td[i]]=d}for(Rd(Pd,Ed,0,19),l=0;l<r+n;){var c=Dd(e,Pd);switch(c){case 16:var h=Ed[l-1];for(s=Nd(e,2,3);s;--s)Ed[l++]=h;break;case 17:for(s=Nd(e,3,3);s;--s)Ed[l++]=0;break;case 18:for(s=Nd(e,7,11);s;--s)Ed[l++]=0;break;default:Ed[l++]=c}}Rd(t,Ed,0,r),Rd(a,Ed,r,n)}function Bd(e,t,a){for(;;){var r,n,o,i,l=Dd(e,t);if(256===l)return 0;if(l<256)e.dest[e.destLen++]=l;else for(r=Nd(e,Sd[l-=257],Id[l]),n=Dd(e,a),i=o=e.destLen-Nd(e,kd[n],Ad[n]);i<o+r;++i)e.dest[e.destLen++]=e.dest[i]}}function Vd(e){for(var t,a;e.bitcount>8;)e.sourceIndex--,e.bitcount-=8;if((t=256*(t=e.source[e.sourceIndex+1])+e.source[e.sourceIndex])!==(65535&~(256*e.source[e.sourceIndex+3]+e.source[e.sourceIndex+2])))return-3;for(e.sourceIndex+=4,a=t;a;--a)e.dest[e.destLen++]=e.source[e.sourceIndex++];return e.bitcount=0,0}!function(e,t){var a;for(a=0;a<7;++a)e.table[a]=0;for(e.table[7]=24,e.table[8]=152,e.table[9]=112,a=0;a<24;++a)e.trans[a]=256+a;for(a=0;a<144;++a)e.trans[24+a]=a;for(a=0;a<8;++a)e.trans[168+a]=280+a;for(a=0;a<112;++a)e.trans[176+a]=144+a;for(a=0;a<5;++a)t.table[a]=0;for(t.table[5]=32,a=0;a<32;++a)t.trans[a]=a}(xd,Cd),Ld(Sd,Id,4,3),Ld(kd,Ad,2,1),Sd[28]=0,Id[28]=258;var zd=function(e,t){var a,r,n=new wd(e,t);do{switch(a=Hd(n),Nd(n,2,0)){case 0:r=Vd(n);break;case 1:r=Bd(n,xd,Cd);break;case 2:Fd(n,n.ltree,n.dtree),r=Bd(n,n.ltree,n.dtree);break;default:r=-3}if(0!==r)throw new Error("Data error")}while(!a);return n.destLen<n.dest.length?"function"==typeof n.dest.slice?n.dest.slice(0,n.destLen):n.dest.subarray(0,n.destLen):n.dest};const _d=fl(zd),Ud=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],qd=(e,t,a)=>{let r=e[t];e[t]=e[a],e[a]=r};var Gd={swap32LE:e=>{Ud&&(e=>{const t=e.length;for(let a=0;a<t;a+=4)qd(e,a,a+3),qd(e,a+1,a+2)})(e)}};const Wd=zd,{swap32LE:jd}=Gd;const Xd=fl(class{constructor(e){const t="function"==typeof e.readUInt32BE&&"function"==typeof e.slice;if(t||e instanceof Uint8Array){let a;if(t)this.highStart=e.readUInt32LE(0),this.errorValue=e.readUInt32LE(4),a=e.readUInt32LE(8),e=e.slice(12);else{const t=new DataView(e.buffer);this.highStart=t.getUint32(0,!0),this.errorValue=t.getUint32(4,!0),a=t.getUint32(8,!0),e=e.subarray(12)}e=Wd(e,new Uint8Array(a)),e=Wd(e,new Uint8Array(a)),jd(e),this.data=new Uint32Array(e.buffer)}else({data:this.data,highStart:this.highStart,errorValue:this.errorValue}=e)}get(e){let t;return e<0||e>1114111?this.errorValue:e<55296||e>56319&&e<=65535?(t=(this.data[e>>5]<<2)+(31&e),this.data[t]):e<=65535?(t=(this.data[2048+(e-55296>>5)]<<2)+(31&e),this.data[t]):e<this.highStart?(t=this.data[2080+(e>>11)],t=this.data[t+(e>>5&63)],t=(t<<2)+(31&e),this.data[t]):this.data[this.data.length-4]}});function Zd(e){return e&&e.__esModule?e.default:e}var Kd;Kd=JSON.parse('{"categories":["Cc","Zs","Po","Sc","Ps","Pe","Sm","Pd","Nd","Lu","Sk","Pc","Ll","So","Lo","Pi","Cf","No","Pf","Lt","Lm","Mn","Me","Mc","Nl","Zl","Zp","Cs","Co"],"combiningClasses":["Not_Reordered","Above","Above_Right","Below","Attached_Above_Right","Attached_Below","Overlay","Iota_Subscript","Double_Below","Double_Above","Below_Right","Above_Left","CCC10","CCC11","CCC12","CCC13","CCC14","CCC15","CCC16","CCC17","CCC18","CCC19","CCC20","CCC21","CCC22","CCC23","CCC24","CCC25","CCC30","CCC31","CCC32","CCC27","CCC28","CCC29","CCC33","CCC34","CCC35","CCC36","Nukta","Virama","CCC84","CCC91","CCC103","CCC107","CCC118","CCC122","CCC129","CCC130","CCC132","Attached_Above","Below_Left","Left","Kana_Voicing","CCC26","Right"],"scripts":["Common","Latin","Bopomofo","Inherited","Greek","Coptic","Cyrillic","Armenian","Hebrew","Arabic","Syriac","Thaana","Nko","Samaritan","Mandaic","Devanagari","Bengali","Gurmukhi","Gujarati","Oriya","Tamil","Telugu","Kannada","Malayalam","Sinhala","Thai","Lao","Tibetan","Myanmar","Georgian","Hangul","Ethiopic","Cherokee","Canadian_Aboriginal","Ogham","Runic","Tagalog","Hanunoo","Buhid","Tagbanwa","Khmer","Mongolian","Limbu","Tai_Le","New_Tai_Lue","Buginese","Tai_Tham","Balinese","Sundanese","Batak","Lepcha","Ol_Chiki","Braille","Glagolitic","Tifinagh","Han","Hiragana","Katakana","Yi","Lisu","Vai","Bamum","Syloti_Nagri","Phags_Pa","Saurashtra","Kayah_Li","Rejang","Javanese","Cham","Tai_Viet","Meetei_Mayek","null","Linear_B","Lycian","Carian","Old_Italic","Gothic","Old_Permic","Ugaritic","Old_Persian","Deseret","Shavian","Osmanya","Osage","Elbasan","Caucasian_Albanian","Linear_A","Cypriot","Imperial_Aramaic","Palmyrene","Nabataean","Hatran","Phoenician","Lydian","Meroitic_Hieroglyphs","Meroitic_Cursive","Kharoshthi","Old_South_Arabian","Old_North_Arabian","Manichaean","Avestan","Inscriptional_Parthian","Inscriptional_Pahlavi","Psalter_Pahlavi","Old_Turkic","Old_Hungarian","Hanifi_Rohingya","Old_Sogdian","Sogdian","Elymaic","Brahmi","Kaithi","Sora_Sompeng","Chakma","Mahajani","Sharada","Khojki","Multani","Khudawadi","Grantha","Newa","Tirhuta","Siddham","Modi","Takri","Ahom","Dogra","Warang_Citi","Nandinagari","Zanabazar_Square","Soyombo","Pau_Cin_Hau","Bhaiksuki","Marchen","Masaram_Gondi","Gunjala_Gondi","Makasar","Cuneiform","Egyptian_Hieroglyphs","Anatolian_Hieroglyphs","Mro","Bassa_Vah","Pahawh_Hmong","Medefaidrin","Miao","Tangut","Nushu","Duployan","SignWriting","Nyiakeng_Puachue_Hmong","Wancho","Mende_Kikakui","Adlam"],"eaw":["N","Na","A","W","H","F"]}');const Yd=new Xd(hd.toByteArray("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")),Jd=Math.log2||(e=>Math.log(e)/Math.LN2),Qd=e=>Jd(e)+1|0,$d=Qd(Zd(Kd).categories.length-1),ec=Qd(Zd(Kd).combiningClasses.length-1),tc=Qd(Zd(Kd).scripts.length-1),ac=Qd(Zd(Kd).eaw.length-1),rc=ec+tc+ac+10,nc=tc+ac+10,oc=ac+10,ic=(1<<$d)-1,lc=(1<<ec)-1,sc=(1<<tc)-1;function dc(e){const t=Yd.get(e);return Zd(Kd).categories[t>>rc&ic]}function cc(e){const t=Yd.get(e);return Zd(Kd).scripts[t>>oc&sc]}function hc(e){return"Nd"===dc(e)}function pc(e){const t=dc(e);return"Mn"===t||"Me"===t||"Mc"===t}const uc=fl(class{constructor(e){this.stateTable=e.stateTable,this.accepting=e.accepting,this.tags=e.tags}match(e){var t=this;return{*[Symbol.iterator](){for(var a=1,r=null,n=null,o=null,i=0;i<e.length;i++){var l=e[i];o=a,0===(a=t.stateTable[a][l])&&(null!=r&&null!=n&&n>=r&&(yield[r,n,t.tags[o]]),a=t.stateTable[1][l],r=null),0!==a&&null==r&&(r=i),t.accepting[a]&&(n=i),0===a&&(a=1)}null!=r&&null!=n&&n>=r&&(yield[r,n,t.tags[a]])}}}apply(e,t){for(var[a,r,n]of this.match(e))for(var o of n)"function"==typeof t[o]&&t[o](a,r,e.slice(a,r+1))}});var fc={exports:{}};!function(e){var t=function(){function e(e,t){return null!=t&&e instanceof t}var t,a,r;try{t=Map}catch(l){t=function(){}}try{a=Set}catch(l){a=function(){}}try{r=Promise}catch(l){r=function(){}}function n(o,l,s,d,c){"object"==typeof l&&(s=l.depth,d=l.prototype,c=l.includeNonEnumerable,l=l.circular);var h=[],p=[],u="undefined"!=typeof Buffer;return void 0===l&&(l=!0),void 0===s&&(s=1/0),function o(s,f){if(null===s)return null;if(0===f)return s;var g,m;if("object"!=typeof s)return s;if(e(s,t))g=new t;else if(e(s,a))g=new a;else if(e(s,r))g=new r(function(e,t){s.then(function(t){e(o(t,f-1))},function(e){t(o(e,f-1))})});else if(n.__isArray(s))g=[];else if(n.__isRegExp(s))g=new RegExp(s.source,i(s)),s.lastIndex&&(g.lastIndex=s.lastIndex);else if(n.__isDate(s))g=new Date(s.getTime());else{if(u&&Buffer.isBuffer(s))return g=Buffer.allocUnsafe?Buffer.allocUnsafe(s.length):new Buffer(s.length),s.copy(g),g;e(s,Error)?g=Object.create(s):void 0===d?(m=Object.getPrototypeOf(s),g=Object.create(m)):(g=Object.create(d),m=d)}if(l){var v=h.indexOf(s);if(-1!=v)return p[v];h.push(s),p.push(g)}for(var y in e(s,t)&&s.forEach(function(e,t){var a=o(t,f-1),r=o(e,f-1);g.set(a,r)}),e(s,a)&&s.forEach(function(e){var t=o(e,f-1);g.add(t)}),s){var b;m&&(b=Object.getOwnPropertyDescriptor(m,y)),b&&null==b.set||(g[y]=o(s[y],f-1))}if(Object.getOwnPropertySymbols){var M=Object.getOwnPropertySymbols(s);for(y=0;y<M.length;y++){var w=M[y];(!(C=Object.getOwnPropertyDescriptor(s,w))||C.enumerable||c)&&(g[w]=o(s[w],f-1),C.enumerable||Object.defineProperty(g,w,{enumerable:!1}))}}if(c){var x=Object.getOwnPropertyNames(s);for(y=0;y<x.length;y++){var C,S=x[y];(C=Object.getOwnPropertyDescriptor(s,S))&&C.enumerable||(g[S]=o(s[S],f-1),Object.defineProperty(g,S,{enumerable:!1}))}}return g}(o,s)}function o(e){return Object.prototype.toString.call(e)}function i(e){var t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),t}return n.clonePrototype=function(e){if(null===e)return null;var t=function(){};return t.prototype=e,new t},n.__objToStr=o,n.__isDate=function(e){return"object"==typeof e&&"[object Date]"===o(e)},n.__isArray=function(e){return"object"==typeof e&&"[object Array]"===o(e)},n.__isRegExp=function(e){return"object"==typeof e&&"[object RegExp]"===o(e)},n.__getRegExpFlags=i,n}();e.exports&&(e.exports=t)}(fc);const gc=fl(fc.exports);var mc={},vc={};function yc(e){this.buffer=e,this.pos=0}function bc(e){this.buffer=e,this.pos=0}yc.prototype.read=function(e,t,a){this.pos+a>this.buffer.length&&(a=this.buffer.length-this.pos);for(var r=0;r<a;r++)e[t+r]=this.buffer[this.pos+r];return this.pos+=a,a},vc.BrotliInput=yc,bc.prototype.write=function(e,t){if(this.pos+t>this.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(e.subarray(0,t),this.pos),this.pos+=t,t},vc.BrotliOutput=bc;var Mc=4096,wc=new Uint32Array([0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535,131071,262143,524287,1048575,2097151,4194303,8388607,16777215]);function xc(e){this.buf_=new Uint8Array(8224),this.input_=e,this.reset()}xc.READ_SIZE=Mc,xc.IBUF_MASK=8191,xc.prototype.reset=function(){this.buf_ptr_=0,this.val_=0,this.pos_=0,this.bit_pos_=0,this.bit_end_pos_=0,this.eos_=0,this.readMoreInput();for(var e=0;e<4;e++)this.val_|=this.buf_[this.pos_]<<8*e,++this.pos_;return this.bit_end_pos_>0},xc.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var e=this.buf_ptr_,t=this.input_.read(this.buf_,e,Mc);if(t<0)throw new Error("Unexpected end of input");if(t<Mc){this.eos_=1;for(var a=0;a<32;a++)this.buf_[e+t+a]=0}if(0===e){for(a=0;a<32;a++)this.buf_[8192+a]=this.buf_[a];this.buf_ptr_=Mc}else this.buf_ptr_=0;this.bit_end_pos_+=t<<3}},xc.prototype.fillBitWindow=function(){for(;this.bit_pos_>=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},xc.prototype.readBits=function(e){32-this.bit_pos_<e&&this.fillBitWindow();var t=this.val_>>>this.bit_pos_&wc[e];return this.bit_pos_+=e,t};var Cc,Sc,Ic,kc,Ac=xc,Tc={},Pc={};function Ec(){if(Ic)return Pc;Ic=1;var e=hd;return Pc.init=function(){return(0,Gc().BrotliDecompressBuffer)(e.toByteArray(Sc?Cc:(Sc=1,Cc="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")))},Pc}function Lc(){if(kc)return Tc;kc=1;var e=Ec();return Tc.init=function(){Tc.dictionary=e.init()},Tc.offsetsByLength=new Uint32Array([0,0,0,0,0,4096,9216,21504,35840,44032,53248,63488,74752,87040,93696,100864,104704,106752,108928,113536,115968,118528,119872,121280,122016]),Tc.sizeBitsByLength=new Uint8Array([0,0,0,0,10,10,11,11,10,10,10,10,10,9,9,8,7,7,8,7,7,6,6,5,5]),Tc.minDictionaryWordLength=4,Tc.maxDictionaryWordLength=24,Tc}var Oc={};function Rc(e,t){this.bits=e,this.value=t}Oc.HuffmanCode=Rc;var Hc=15;function Nc(e,t){for(var a=1<<t-1;e&a;)a>>=1;return(e&a-1)+a}function Dc(e,t,a,r,n){do{e[t+(r-=a)]=new Rc(n.bits,n.value)}while(r>0)}function Fc(e,t,a){for(var r=1<<t-a;t<Hc&&!((r-=e[t])<=0);)++t,r<<=1;return t-a}Oc.BrotliBuildHuffmanTable=function(e,t,a,r,n){var o,i,l,s,d,c,h,p,u,f,g=t,m=new Int32Array(16),v=new Int32Array(16);for(f=new Int32Array(n),i=0;i<n;i++)m[r[i]]++;for(v[1]=0,o=1;o<Hc;o++)v[o+1]=v[o]+m[o];for(i=0;i<n;i++)0!==r[i]&&(f[v[r[i]]++]=i);if(u=p=1<<(h=a),1===v[15]){for(l=0;l<u;++l)e[t+l]=new Rc(0,65535&f[0]);return u}for(l=0,i=0,o=1,s=2;o<=a;++o,s<<=1)for(;m[o]>0;--m[o])Dc(e,t+l,s,p,new Rc(255&o,65535&f[i++])),l=Nc(l,o);for(c=u-1,d=-1,o=a+1,s=2;o<=Hc;++o,s<<=1)for(;m[o]>0;--m[o])(l&c)!==d&&(t+=p,u+=p=1<<(h=Fc(m,o,a)),e[g+(d=l&c)]=new Rc(h+a&255,t-g-d&65535)),Dc(e,t+(l>>a),s,p,new Rc(o-a&255,65535&f[i++])),l=Nc(l,o);return u};var Bc={};Bc.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),Bc.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512]);var Vc={};function zc(e,t){this.offset=e,this.nbits=t}Vc.kBlockLengthPrefixCode=[new zc(1,2),new zc(5,2),new zc(9,2),new zc(13,2),new zc(17,3),new zc(25,3),new zc(33,3),new zc(41,3),new zc(49,4),new zc(65,4),new zc(81,4),new zc(97,4),new zc(113,5),new zc(145,5),new zc(177,5),new zc(209,5),new zc(241,6),new zc(305,6),new zc(369,7),new zc(497,8),new zc(753,9),new zc(1265,10),new zc(2289,11),new zc(4337,12),new zc(8433,13),new zc(16625,24)],Vc.kInsertLengthPrefixCode=[new zc(0,0),new zc(1,0),new zc(2,0),new zc(3,0),new zc(4,0),new zc(5,0),new zc(6,1),new zc(8,1),new zc(10,2),new zc(14,2),new zc(18,3),new zc(26,3),new zc(34,4),new zc(50,4),new zc(66,5),new zc(98,5),new zc(130,6),new zc(194,7),new zc(322,8),new zc(578,9),new zc(1090,10),new zc(2114,12),new zc(6210,14),new zc(22594,24)],Vc.kCopyLengthPrefixCode=[new zc(2,0),new zc(3,0),new zc(4,0),new zc(5,0),new zc(6,0),new zc(7,0),new zc(8,0),new zc(9,0),new zc(10,1),new zc(12,1),new zc(14,2),new zc(18,2),new zc(22,3),new zc(30,3),new zc(38,4),new zc(54,4),new zc(70,5),new zc(102,5),new zc(134,6),new zc(198,7),new zc(326,8),new zc(582,9),new zc(1094,10),new zc(2118,24)],Vc.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],Vc.kCopyRangeLut=[0,8,0,8,16,0,16,8,16];var _c,Uc,qc={};function Gc(){if(Uc)return mc;Uc=1;var e=vc.BrotliInput,t=vc.BrotliOutput,a=Ac,r=Lc(),n=Oc.HuffmanCode,o=Oc.BrotliBuildHuffmanTable,i=Bc,l=Vc,s=function(){if(_c)return qc;_c=1;var e=Lc(),t=10,a=11;function r(e,t,a){this.prefix=new Uint8Array(e.length),this.transform=t,this.suffix=new Uint8Array(a.length);for(var r=0;r<e.length;r++)this.prefix[r]=e.charCodeAt(r);for(r=0;r<a.length;r++)this.suffix[r]=a.charCodeAt(r)}var n=[new r("",0,""),new r("",0," "),new r(" ",0," "),new r("",12,""),new r("",t," "),new r("",0," the "),new r(" ",0,""),new r("s ",0," "),new r("",0," of "),new r("",t,""),new r("",0," and "),new r("",13,""),new r("",1,""),new r(", ",0," "),new r("",0,", "),new r(" ",t," "),new r("",0," in "),new r("",0," to "),new r("e ",0," "),new r("",0,'"'),new r("",0,"."),new r("",0,'">'),new r("",0,"\n"),new r("",3,""),new r("",0,"]"),new r("",0," for "),new r("",14,""),new r("",2,""),new r("",0," a "),new r("",0," that "),new r(" ",t,""),new r("",0,". "),new r(".",0,""),new r(" ",0,", "),new r("",15,""),new r("",0," with "),new r("",0,"'"),new r("",0," from "),new r("",0," by "),new r("",16,""),new r("",17,""),new r(" the ",0,""),new r("",4,""),new r("",0,". The "),new r("",a,""),new r("",0," on "),new r("",0," as "),new r("",0," is "),new r("",7,""),new r("",1,"ing "),new r("",0,"\n\t"),new r("",0,":"),new r(" ",0,". "),new r("",0,"ed "),new r("",20,""),new r("",18,""),new r("",6,""),new r("",0,"("),new r("",t,", "),new r("",8,""),new r("",0," at "),new r("",0,"ly "),new r(" the ",0," of "),new r("",5,""),new r("",9,""),new r(" ",t,", "),new r("",t,'"'),new r(".",0,"("),new r("",a," "),new r("",t,'">'),new r("",0,'="'),new r(" ",0,"."),new r(".com/",0,""),new r(" the ",0," of the "),new r("",t,"'"),new r("",0,". This "),new r("",0,","),new r(".",0," "),new r("",t,"("),new r("",t,"."),new r("",0," not "),new r(" ",0,'="'),new r("",0,"er "),new r(" ",a," "),new r("",0,"al "),new r(" ",a,""),new r("",0,"='"),new r("",a,'"'),new r("",t,". "),new r(" ",0,"("),new r("",0,"ful "),new r(" ",t,". "),new r("",0,"ive "),new r("",0,"less "),new r("",a,"'"),new r("",0,"est "),new r(" ",t,"."),new r("",a,'">'),new r(" ",0,"='"),new r("",t,","),new r("",0,"ize "),new r("",a,"."),new r(" ",0,""),new r(" ",0,","),new r("",t,'="'),new r("",a,'="'),new r("",0,"ous "),new r("",a,", "),new r("",t,"='"),new r(" ",t,","),new r(" ",a,'="'),new r(" ",a,", "),new r("",a,","),new r("",a,"("),new r("",a,". "),new r(" ",a,"."),new r("",a,"='"),new r(" ",a,". "),new r(" ",t,'="'),new r(" ",a,"='"),new r(" ",t,"='")];function o(e,t){return e[t]<192?(e[t]>=97&&e[t]<=122&&(e[t]^=32),1):e[t]<224?(e[t+1]^=32,2):(e[t+2]^=5,3)}return qc.kTransforms=n,qc.kNumTransforms=n.length,qc.transformDictionaryWord=function(r,i,l,s,d){var c,h=n[d].prefix,p=n[d].suffix,u=n[d].transform,f=u<12?0:u-11,g=0,m=i;f>s&&(f=s);for(var v=0;v<h.length;)r[i++]=h[v++];for(l+=f,s-=f,u<=9&&(s-=u),g=0;g<s;g++)r[i++]=e.dictionary[l+g];if(c=i-s,u===t)o(r,c);else if(u===a)for(;s>0;){var y=o(r,c);c+=y,s-=y}for(var b=0;b<p.length;)r[i++]=p[b++];return i-m},qc}(),d=1080,c=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),h=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),p=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),u=new Uint16Array([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]);function f(e){var t;return 0===e.readBits(1)?16:(t=e.readBits(3))>0?17+t:(t=e.readBits(3))>0?8+t:17}function g(e){if(e.readBits(1)){var t=e.readBits(3);return 0===t?1:e.readBits(t)+(1<<t)}return 0}function m(){this.meta_block_length=0,this.input_end=0,this.is_uncompressed=0,this.is_metadata=!1}function v(e){var t,a,r,n=new m;if(n.input_end=e.readBits(1),n.input_end&&e.readBits(1))return n;if(7===(t=e.readBits(2)+4)){if(n.is_metadata=!0,0!==e.readBits(1))throw new Error("Invalid reserved bit");if(0===(a=e.readBits(2)))return n;for(r=0;r<a;r++){var o=e.readBits(8);if(r+1===a&&a>1&&0===o)throw new Error("Invalid size byte");n.meta_block_length|=o<<8*r}}else for(r=0;r<t;++r){var i=e.readBits(4);if(r+1===t&&t>4&&0===i)throw new Error("Invalid size nibble");n.meta_block_length|=i<<4*r}return++n.meta_block_length,n.input_end||n.is_metadata||(n.is_uncompressed=e.readBits(1)),n}function y(e,t,a){var r;return a.fillBitWindow(),(r=e[t+=a.val_>>>a.bit_pos_&255].bits-8)>0&&(a.bit_pos_+=8,t+=e[t].value,t+=a.val_>>>a.bit_pos_&(1<<r)-1),a.bit_pos_+=e[t].bits,e[t].value}function b(e,t,a,r){var i,l,s=new Uint8Array(e);if(r.readMoreInput(),1===(l=r.readBits(2))){for(var d=e-1,h=0,p=new Int32Array(4),u=r.readBits(2)+1;d;)d>>=1,++h;for(f=0;f<u;++f)p[f]=r.readBits(h)%e,s[p[f]]=2;switch(s[p[0]]=1,u){case 1:break;case 3:if(p[0]===p[1]||p[0]===p[2]||p[1]===p[2])throw new Error("[ReadHuffmanCode] invalid symbols");break;case 2:if(p[0]===p[1])throw new Error("[ReadHuffmanCode] invalid symbols");s[p[1]]=1;break;case 4:if(p[0]===p[1]||p[0]===p[2]||p[0]===p[3]||p[1]===p[2]||p[1]===p[3]||p[2]===p[3])throw new Error("[ReadHuffmanCode] invalid symbols");r.readBits(1)?(s[p[2]]=3,s[p[3]]=3):s[p[0]]=2}}else{var f,g=new Uint8Array(18),m=32,v=0,y=[new n(2,0),new n(2,4),new n(2,3),new n(3,2),new n(2,0),new n(2,4),new n(2,3),new n(4,1),new n(2,0),new n(2,4),new n(2,3),new n(3,2),new n(2,0),new n(2,4),new n(2,3),new n(4,5)];for(f=l;f<18&&m>0;++f){var b,M=c[f],w=0;r.fillBitWindow(),w+=r.val_>>>r.bit_pos_&15,r.bit_pos_+=y[w].bits,b=y[w].value,g[M]=b,0!==b&&(m-=32>>b,++v)}if(1!==v&&0!==m)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function(e,t,a,r){for(var i=0,l=8,s=0,d=0,c=32768,h=[],p=0;p<32;p++)h.push(new n(0,0));for(o(h,0,5,e,18);i<t&&c>0;){var u,f=0;if(r.readMoreInput(),r.fillBitWindow(),f+=r.val_>>>r.bit_pos_&31,r.bit_pos_+=h[f].bits,(u=255&h[f].value)<16)s=0,a[i++]=u,0!==u&&(l=u,c-=32768>>u);else{var g,m,v=u-14,y=0;if(16===u&&(y=l),d!==y&&(s=0,d=y),g=s,s>0&&(s-=2,s<<=v),i+(m=(s+=r.readBits(v)+3)-g)>t)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var b=0;b<m;b++)a[i+b]=d;i+=m,0!==d&&(c-=m<<15-d)}}if(0!==c)throw new Error("[ReadHuffmanCodeLengths] space = "+c);for(;i<t;i++)a[i]=0}(g,e,s,r)}if(0===(i=o(t,a,8,s,e)))throw new Error("[ReadHuffmanCode] BuildHuffmanTable failed: ");return i}function M(e,t,a){var r,n;return r=y(e,t,a),n=l.kBlockLengthPrefixCode[r].nbits,l.kBlockLengthPrefixCode[r].offset+a.readBits(n)}function w(e,t,a){var r;return e<16?(a+=h[e],r=t[a&=3]+p[e]):r=e-16+1,r}function x(e,t){for(var a=e[t],r=t;r;--r)e[r]=e[r-1];e[0]=a}function C(e,t){this.alphabet_size=e,this.num_htrees=t,this.codes=new Array(t+t*u[e+31>>>5]),this.htrees=new Uint32Array(t)}function S(e,t){var a,r,o={num_htrees:null,context_map:null},i=0;t.readMoreInput();var l=o.num_htrees=g(t)+1,s=o.context_map=new Uint8Array(e);if(l<=1)return o;for(t.readBits(1)&&(i=t.readBits(4)+1),a=[],r=0;r<d;r++)a[r]=new n(0,0);for(b(l+i,a,0,t),r=0;r<e;){var c;if(t.readMoreInput(),0===(c=y(a,0,t)))s[r]=0,++r;else if(c<=i)for(var h=1+(1<<c)+t.readBits(c);--h;){if(r>=e)throw new Error("[DecodeContextMap] i >= context_map_size");s[r]=0,++r}else s[r]=c-i,++r}return t.readBits(1)&&function(e,t){var a,r=new Uint8Array(256);for(a=0;a<256;++a)r[a]=a;for(a=0;a<t;++a){var n=e[a];e[a]=r[n],n&&x(r,n)}}(s,e),o}function I(e,t,a,r,n,o,i){var l,s=2*a,c=a,h=y(t,a*d,i);(l=0===h?n[s+(1&o[c])]:1===h?n[s+(o[c]-1&1)]+1:h-2)>=e&&(l-=e),r[a]=l,n[s+(1&o[c])]=l,++o[c]}function k(e,t,r,n,o,i){var l,s=o+1,d=r&o,c=i.pos_&a.IBUF_MASK;if(t<8||i.bit_pos_+(t<<3)<i.bit_end_pos_)for(;t-- >0;)i.readMoreInput(),n[d++]=i.readBits(8),d===s&&(e.write(n,s),d=0);else{if(i.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;i.bit_pos_<32;)n[d]=i.val_>>>i.bit_pos_,i.bit_pos_+=8,++d,--t;if(c+(l=i.bit_end_pos_-i.bit_pos_>>3)>a.IBUF_MASK){for(var h=a.IBUF_MASK+1-c,p=0;p<h;p++)n[d+p]=i.buf_[c+p];l-=h,d+=h,t-=h,c=0}for(p=0;p<l;p++)n[d+p]=i.buf_[c+p];if(t-=l,(d+=l)>=s){e.write(n,s),d-=s;for(p=0;p<d;p++)n[p]=n[s+p]}for(;d+t>=s;){if(l=s-d,i.input_.read(n,d,l)<l)throw new Error("[CopyUncompressedBlockToOutput] not enough bytes");e.write(n,s),t-=l,d=0}if(i.input_.read(n,d,t)<t)throw new Error("[CopyUncompressedBlockToOutput] not enough bytes");i.reset()}}function A(e){var t=e.bit_pos_+7&-8;return 0==e.readBits(t-e.bit_pos_)}function T(t){var r=new e(t),n=new a(r);return f(n),v(n).meta_block_length}function P(e,t){var o,c,h,p,u,m,x,T,P,E,L=0,O=0,R=0,H=[16,15,11,4],N=0,D=0,F=0,B=[new C(0,0),new C(0,0),new C(0,0)],V=128+a.READ_SIZE;h=(1<<(c=f(E=new a(e))))-16,u=(p=1<<c)-1,m=new Uint8Array(p+V+r.maxDictionaryWordLength),x=p,T=[],P=[];for(var z=0;z<3240;z++)T[z]=new n(0,0),P[z]=new n(0,0);for(;!O;){var _,U,q,G,W,j,X,Z,K,Y,J,Q=0,$=[1<<28,1<<28,1<<28],ee=[0],te=[1,1,1],ae=[0,1,0,1,0,1],re=[0],ne=null,oe=null,ie=0,le=null,se=0,de=0,ce=0;for(o=0;o<3;++o)B[o].codes=null,B[o].htrees=null;E.readMoreInput();var he=v(E);if(L+(Q=he.meta_block_length)>t.buffer.length){var pe=new Uint8Array(L+Q);pe.set(t.buffer),t.buffer=pe}if(O=he.input_end,_=he.is_uncompressed,he.is_metadata)for(A(E);Q>0;--Q)E.readMoreInput(),E.readBits(8);else if(0!==Q)if(_)E.bit_pos_=E.bit_pos_+7&-8,k(t,Q,L,m,u,E),L+=Q;else{for(o=0;o<3;++o)te[o]=g(E)+1,te[o]>=2&&(b(te[o]+2,T,o*d,E),b(26,P,o*d,E),$[o]=M(P,o*d,E),re[o]=1);for(E.readMoreInput(),G=(1<<(U=E.readBits(2)))-1,W=(q=16+(E.readBits(4)<<U))+(48<<U),ne=new Uint8Array(te[0]),o=0;o<te[0];++o)E.readMoreInput(),ne[o]=E.readBits(2)<<1;var ue=S(te[0]<<6,E);X=ue.num_htrees,j=ue.context_map;var fe=S(te[2]<<2,E);for(K=fe.num_htrees,Z=fe.context_map,B[0]=new C(256,X),B[1]=new C(704,te[1]),B[2]=new C(W,K),o=0;o<3;++o)B[o].decode(E);for(oe=0,le=0,Y=ne[ee[0]],de=i.lookupOffsets[Y],ce=i.lookupOffsets[Y+1],J=B[1].htrees[0];Q>0;){var ge,me,ve,ye,be,Me,we,xe,Ce,Se,Ie,ke;for(E.readMoreInput(),0===$[1]&&(I(te[1],T,1,ee,ae,re,E),$[1]=M(P,d,E),J=B[1].htrees[ee[1]]),--$[1],(me=(ge=y(B[1].codes,J,E))>>6)>=2?(me-=2,we=-1):we=0,ve=l.kInsertRangeLut[me]+(ge>>3&7),ye=l.kCopyRangeLut[me]+(7&ge),be=l.kInsertLengthPrefixCode[ve].offset+E.readBits(l.kInsertLengthPrefixCode[ve].nbits),Me=l.kCopyLengthPrefixCode[ye].offset+E.readBits(l.kCopyLengthPrefixCode[ye].nbits),D=m[L-1&u],F=m[L-2&u],Ce=0;Ce<be;++Ce)E.readMoreInput(),0===$[0]&&(I(te[0],T,0,ee,ae,re,E),$[0]=M(P,0,E),oe=ee[0]<<6,Y=ne[ee[0]],de=i.lookupOffsets[Y],ce=i.lookupOffsets[Y+1]),ie=j[oe+(i.lookup[de+D]|i.lookup[ce+F])],--$[0],F=D,D=y(B[0].codes,B[0].htrees[ie],E),m[L&u]=D,(L&u)===u&&t.write(m,p),++L;if((Q-=be)<=0)break;if(we<0)if(E.readMoreInput(),0===$[2]&&(I(te[2],T,2,ee,ae,re,E),$[2]=M(P,2160,E),le=ee[2]<<2),--$[2],se=Z[le+(255&(Me>4?3:Me-2))],(we=y(B[2].codes,B[2].htrees[se],E))>=q)ke=(we-=q)&G,we=q+((Ae=(2+(1&(we>>=U))<<(Ie=1+(we>>1)))-4)+E.readBits(Ie)<<U)+ke;if((xe=w(we,H,N))<0)throw new Error("[BrotliDecompress] invalid distance");if(Se=L&u,xe>(R=L<h&&R!==h?L:h)){if(!(Me>=r.minDictionaryWordLength&&Me<=r.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+L+" distance: "+xe+" len: "+Me+" bytes left: "+Q);var Ae=r.offsetsByLength[Me],Te=xe-R-1,Pe=r.sizeBitsByLength[Me],Ee=Te>>Pe;if(Ae+=(Te&(1<<Pe)-1)*Me,!(Ee<s.kNumTransforms))throw new Error("Invalid backward reference. pos: "+L+" distance: "+xe+" len: "+Me+" bytes left: "+Q);var Le=s.transformDictionaryWord(m,Se,Ae,Me,Ee);if(L+=Le,Q-=Le,(Se+=Le)>=x){t.write(m,p);for(var Oe=0;Oe<Se-x;Oe++)m[Oe]=m[x+Oe]}}else{if(we>0&&(H[3&N]=xe,++N),Me>Q)throw new Error("Invalid backward reference. pos: "+L+" distance: "+xe+" len: "+Me+" bytes left: "+Q);for(Ce=0;Ce<Me;++Ce)m[L&u]=m[L-xe&u],(L&u)===u&&t.write(m,p),++L,--Q}D=m[L-1&u],F=m[L-2&u]}L&=1073741823}}t.write(m,L&u)}return C.prototype.decode=function(e){var t,a=0;for(t=0;t<this.num_htrees;++t)this.htrees[t]=a,a+=b(this.alphabet_size,this.codes,a,e)},mc.BrotliDecompressedSize=T,mc.BrotliDecompressBuffer=function(a,r){var n=new e(a);null==r&&(r=T(a));var o=new Uint8Array(r),i=new t(o);return P(n,i),i.pos<i.buffer.length&&(i.buffer=i.buffer.subarray(0,i.pos)),i.buffer},mc.BrotliDecompress=P,r.init(),mc}const Wc=fl(Gc().BrotliDecompressBuffer);function jc(e,t,a,r){Object.defineProperty(e,t,{get:a,set:r,enumerable:!0,configurable:!0})}function Xc(e){return e&&e.__esModule?e.default:e}var Zc={};jc(Zc,"logErrors",()=>Kc),jc(Zc,"registerFormat",()=>Jc),jc(Zc,"create",()=>Qc),jc(Zc,"defaultLanguage",()=>$c),jc(Zc,"setDefaultLanguage",()=>eh);let Kc=!1,Yc=[];function Jc(e){Yc.push(e)}function Qc(e,t){for(let a=0;a<Yc.length;a++){let r=Yc[a];if(r.probe(e)){let a=new r(new Ps(e));return t?a.getFont(t):a}}throw new Error("Unknown font format")}let $c="en";function eh(e="en"){$c=e}function th(e,t,a){if(a.get){let e=a.get;a.get=function(){let a=e.call(this);return Object.defineProperty(this,t,{value:a}),a}}else if("function"==typeof a.value){let e=a.value;return{get(){let a=new Map;function r(...t){let r=t.length>0?t[0]:"value";if(a.has(r))return a.get(r);let n=e.apply(this,t);return a.set(r,n),n}return Object.defineProperty(this,t,{value:r}),r}}}}let ah=new nd({firstCode:Fs,entryCount:Fs,idDelta:_s,idRangeOffset:Fs}),rh=new nd({startCharCode:Vs,endCharCode:Vs,glyphID:Vs}),nh=new nd({startUnicodeValue:Bs,additionalCount:Ds}),oh=new nd({unicodeValue:Bs,glyphID:Fs}),ih=new Zs(nh,Vs),lh=new Zs(oh,Vs),sh=new nd({varSelector:Bs,defaultUVS:new id(Vs,ih,{type:"parent"}),nonDefaultUVS:new id(Vs,lh,{type:"parent"})}),dh=new od(Fs,{0:{length:Fs,language:Fs,codeMap:new Ks(Ds,256)},2:{length:Fs,language:Fs,subHeaderKeys:new Zs(Fs,256),subHeaderCount:e=>Math.max.apply(Math,e.subHeaderKeys),subHeaders:new Ks(ah,"subHeaderCount"),glyphIndexArray:new Ks(Fs,"subHeaderCount")},4:{length:Fs,language:Fs,segCountX2:Fs,segCount:e=>e.segCountX2>>1,searchRange:Fs,entrySelector:Fs,rangeShift:Fs,endCode:new Ks(Fs,"segCount"),reservedPad:new ed(Fs),startCode:new Ks(Fs,"segCount"),idDelta:new Ks(_s,"segCount"),idRangeOffset:new Ks(Fs,"segCount"),glyphIndexArray:new Ks(Fs,e=>(e.length-e._currentOffset)/2)},6:{length:Fs,language:Fs,firstCode:Fs,entryCount:Fs,glyphIndices:new Ks(Fs,"entryCount")},8:{reserved:new ed(Fs),length:Vs,language:Fs,is32:new Ks(Ds,8192),nGroups:Vs,groups:new Ks(rh,"nGroups")},10:{reserved:new ed(Fs),length:Vs,language:Vs,firstCode:Vs,entryCount:Vs,glyphIndices:new Ks(Fs,"numChars")},12:{reserved:new ed(Fs),length:Vs,language:Vs,nGroups:Vs,groups:new Ks(rh,"nGroups")},13:{reserved:new ed(Fs),length:Vs,language:Vs,nGroups:Vs,groups:new Ks(rh,"nGroups")},14:{length:Vs,numRecords:Vs,varSelectors:new Ks(sh,"numRecords")}}),ch=new nd({platformID:Fs,encodingID:Fs,table:new id(Vs,dh,{type:"parent",lazy:!0})});var hh=new nd({version:Fs,numSubtables:Fs,tables:new Zs(ch,"numSubtables")}),ph=new nd({version:Us,revision:Us,checkSumAdjustment:Vs,magicNumber:Vs,flags:Fs,unitsPerEm:Fs,created:new Zs(Us,2),modified:new Zs(Us,2),xMin:_s,yMin:_s,xMax:_s,yMax:_s,macStyle:new Js(Fs,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:Fs,fontDirectionHint:_s,indexToLocFormat:_s,glyphDataFormat:_s}),uh=new nd({version:Us,ascent:_s,descent:_s,lineGap:_s,advanceWidthMax:Fs,minLeftSideBearing:_s,minRightSideBearing:_s,xMaxExtent:_s,caretSlopeRise:_s,caretSlopeRun:_s,caretOffset:_s,reserved:new ed(_s,4),metricDataFormat:_s,numberOfMetrics:Fs});let fh=new nd({advance:Fs,bearing:_s});var gh=new nd({metrics:new Ks(fh,e=>e.parent.hhea.numberOfMetrics),bearings:new Ks(_s,e=>e.parent.maxp.numGlyphs-e.parent.hhea.numberOfMetrics)}),mh=new nd({version:Us,numGlyphs:Fs,maxPoints:Fs,maxContours:Fs,maxComponentPoints:Fs,maxComponentContours:Fs,maxZones:Fs,maxTwilightPoints:Fs,maxStorage:Fs,maxFunctionDefs:Fs,maxInstructionDefs:Fs,maxStackElements:Fs,maxSizeOfInstructions:Fs,maxComponentElements:Fs,maxComponentDepth:Fs});function vh(e,t,a=0){return 1===e&&Ch[a]?Ch[a]:xh[e][t]}const yh=new Set(["x-mac-roman","x-mac-cyrillic","iso-8859-6","iso-8859-8"]),bh={"x-mac-croatian":"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊©⁄€‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ","x-mac-gaelic":"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØḂ±≤≥ḃĊċḊḋḞḟĠġṀæøṁṖṗɼƒſṠ«»… ÀÃÕŒœ–—“”‘’ṡẛÿŸṪ€‹›Ŷŷṫ·Ỳỳ⁊ÂÊÁËÈÍÎÏÌÓÔ♣ÒÚÛÙıÝýŴŵẄẅẀẁẂẃ","x-mac-greek":"Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦€ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ­","x-mac-icelandic":"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄€ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ","x-mac-inuit":"ᐃᐄᐅᐆᐊᐋᐱᐲᐳᐴᐸᐹᑉᑎᑏᑐᑑᑕᑖᑦᑭᑮᑯᑰᑲᑳᒃᒋᒌᒍᒎᒐᒑ°ᒡᒥᒦ•¶ᒧ®©™ᒨᒪᒫᒻᓂᓃᓄᓅᓇᓈᓐᓯᓰᓱᓲᓴᓵᔅᓕᓖᓗᓘᓚᓛᓪᔨᔩᔪᔫᔭ… ᔮᔾᕕᕖᕗ–—“”‘’ᕘᕙᕚᕝᕆᕇᕈᕉᕋᕌᕐᕿᖀᖁᖂᖃᖄᖅᖏᖐᖑᖒᖓᖔᖕᙱᙲᙳᙴᙵᙶᖖᖠᖡᖢᖣᖤᖥᖦᕼŁł","x-mac-ce":"ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ","x-mac-romanian":"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂȘ∞±≤≥¥µ∂∑∏π∫ªºΩăș¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄€‹›Țț‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ","x-mac-turkish":"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙˆ˜¯˘˙˚¸˝˛ˇ"},Mh=new Map;function wh(e){let t=Mh.get(e);if(t)return t;let a=bh[e];if(a){let t=new Map;for(let e=0;e<a.length;e++)t.set(a.charCodeAt(e),128+e);return Mh.set(e,t),t}if(yh.has(e)){let t=new TextDecoder(e),a=new Uint8Array(128);for(let e=0;e<128;e++)a[e]=128+e;let r=new Map,n=t.decode(a);for(let e=0;e<128;e++)r.set(n.charCodeAt(e),128+e);return Mh.set(e,r),r}}const xh=[["utf-16be","utf-16be","utf-16be","utf-16be","utf-16be","utf-16be","utf-16be"],["x-mac-roman","shift-jis","big5","euc-kr","iso-8859-6","iso-8859-8","x-mac-greek","x-mac-cyrillic","x-mac-symbol","x-mac-devanagari","x-mac-gurmukhi","x-mac-gujarati","Oriya","Bengali","Tamil","Telugu","Kannada","Malayalam","Sinhalese","Burmese","Khmer","iso-8859-11","Laotian","Georgian","Armenian","gbk","Tibetan","Mongolian","Geez","x-mac-ce","Vietnamese","Sindhi"],["ascii",null,"iso-8859-1"],["symbol","utf-16be","shift-jis","gb18030","big5","euc-kr","johab",null,null,null,"utf-16be"]],Ch={15:"x-mac-icelandic",17:"x-mac-turkish",18:"x-mac-croatian",24:"x-mac-ce",25:"x-mac-ce",26:"x-mac-ce",27:"x-mac-ce",28:"x-mac-ce",30:"x-mac-icelandic",37:"x-mac-romanian",38:"x-mac-ce",39:"x-mac-ce",40:"x-mac-ce",143:"x-mac-inuit",146:"x-mac-gaelic"},Sh=[[],{0:"en",30:"fo",60:"ks",90:"rw",1:"fr",31:"fa",61:"ku",91:"rn",2:"de",32:"ru",62:"sd",92:"ny",3:"it",33:"zh",63:"bo",93:"mg",4:"nl",34:"nl-BE",64:"ne",94:"eo",5:"sv",35:"ga",65:"sa",128:"cy",6:"es",36:"sq",66:"mr",129:"eu",7:"da",37:"ro",67:"bn",130:"ca",8:"pt",38:"cz",68:"as",131:"la",9:"no",39:"sk",69:"gu",132:"qu",10:"he",40:"si",70:"pa",133:"gn",11:"ja",41:"yi",71:"or",134:"ay",12:"ar",42:"sr",72:"ml",135:"tt",13:"fi",43:"mk",73:"kn",136:"ug",14:"el",44:"bg",74:"ta",137:"dz",15:"is",45:"uk",75:"te",138:"jv",16:"mt",46:"be",76:"si",139:"su",17:"tr",47:"uz",77:"my",140:"gl",18:"hr",48:"kk",78:"km",141:"af",19:"zh-Hant",49:"az-Cyrl",79:"lo",142:"br",20:"ur",50:"az-Arab",80:"vi",143:"iu",21:"hi",51:"hy",81:"id",144:"gd",22:"th",52:"ka",82:"tl",145:"gv",23:"ko",53:"mo",83:"ms",146:"ga",24:"lt",54:"ky",84:"ms-Arab",147:"to",25:"pl",55:"tg",85:"am",148:"el-polyton",26:"hu",56:"tk",86:"ti",149:"kl",27:"es",57:"mn-CN",87:"om",150:"az",28:"lv",58:"mn",88:"so",151:"nn",29:"se",59:"ps",89:"sw"},[],{1078:"af",16393:"en-IN",1159:"rw",1074:"tn",1052:"sq",6153:"en-IE",1089:"sw",1115:"si",1156:"gsw",8201:"en-JM",1111:"kok",1051:"sk",1118:"am",17417:"en-MY",1042:"ko",1060:"sl",5121:"ar-DZ",5129:"en-NZ",1088:"ky",11274:"es-AR",15361:"ar-BH",13321:"en-PH",1108:"lo",16394:"es-BO",3073:"ar",18441:"en-SG",1062:"lv",13322:"es-CL",2049:"ar-IQ",7177:"en-ZA",1063:"lt",9226:"es-CO",11265:"ar-JO",11273:"en-TT",2094:"dsb",5130:"es-CR",13313:"ar-KW",2057:"en-GB",1134:"lb",7178:"es-DO",12289:"ar-LB",1033:"en",1071:"mk",12298:"es-EC",4097:"ar-LY",12297:"en-ZW",2110:"ms-BN",17418:"es-SV",6145:"ary",1061:"et",1086:"ms",4106:"es-GT",8193:"ar-OM",1080:"fo",1100:"ml",18442:"es-HN",16385:"ar-QA",1124:"fil",1082:"mt",2058:"es-MX",1025:"ar-SA",1035:"fi",1153:"mi",19466:"es-NI",10241:"ar-SY",2060:"fr-BE",1146:"arn",6154:"es-PA",7169:"aeb",3084:"fr-CA",1102:"mr",15370:"es-PY",14337:"ar-AE",1036:"fr",1148:"moh",10250:"es-PE",9217:"ar-YE",5132:"fr-LU",1104:"mn",20490:"es-PR",1067:"hy",6156:"fr-MC",2128:"mn-CN",3082:"es",1101:"as",4108:"fr-CH",1121:"ne",1034:"es",2092:"az-Cyrl",1122:"fy",1044:"nb",21514:"es-US",1068:"az",1110:"gl",2068:"nn",14346:"es-UY",1133:"ba",1079:"ka",1154:"oc",8202:"es-VE",1069:"eu",3079:"de-AT",1096:"or",2077:"sv-FI",1059:"be",1031:"de",1123:"ps",1053:"sv",2117:"bn",5127:"de-LI",1045:"pl",1114:"syr",1093:"bn-IN",4103:"de-LU",1046:"pt",1064:"tg",8218:"bs-Cyrl",2055:"de-CH",2070:"pt-PT",2143:"tzm",5146:"bs",1032:"el",1094:"pa",1097:"ta",1150:"br",1135:"kl",1131:"qu-BO",1092:"tt",1026:"bg",1095:"gu",2155:"qu-EC",1098:"te",1027:"ca",1128:"ha",3179:"qu",1054:"th",3076:"zh-HK",1037:"he",1048:"ro",1105:"bo",5124:"zh-MO",1081:"hi",1047:"rm",1055:"tr",2052:"zh",1038:"hu",1049:"ru",1090:"tk",4100:"zh-SG",1039:"is",9275:"smn",1152:"ug",1028:"zh-TW",1136:"ig",4155:"smj-NO",1058:"uk",1155:"co",1057:"id",5179:"smj",1070:"hsb",1050:"hr",1117:"iu",3131:"se-FI",1056:"ur",4122:"hr-BA",2141:"iu-Latn",1083:"se",2115:"uz-Cyrl",1029:"cs",2108:"ga",2107:"se-SE",1091:"uz",1030:"da",1076:"xh",8251:"sms",1066:"vi",1164:"prs",1077:"zu",6203:"sma-NO",1106:"cy",1125:"dv",1040:"it",7227:"sms",1160:"wo",2067:"nl-BE",2064:"it-CH",1103:"sa",1157:"sah",1043:"nl",1041:"ja",7194:"sr-Cyrl-BA",1144:"ii",3081:"en-AU",1099:"kn",3098:"sr",1130:"yo",10249:"en-BZ",1087:"kk",6170:"sr-Latn-BA",4105:"en-CA",1107:"km",2074:"sr-Latn",9225:"en-029",1158:"quc",1132:"nso"}];let Ih=new nd({platformID:Fs,encodingID:Fs,languageID:Fs,nameID:Fs,length:Fs,string:new id(Fs,new td("length",e=>vh(e.platformID,e.encodingID,e.languageID)),{type:"parent",relativeTo:e=>e.parent.stringOffset,allowNull:!1})}),kh=new nd({length:Fs,tag:new id(Fs,new td("length","utf16be"),{type:"parent",relativeTo:e=>e.stringOffset})});var Ah=new od(Fs,{0:{count:Fs,stringOffset:Fs,records:new Zs(Ih,"count")},1:{count:Fs,stringOffset:Fs,records:new Zs(Ih,"count"),langTagCount:Fs,langTags:new Zs(kh,"langTagCount")}}),Th=Ah;const Ph=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];Ah.process=function(e){var t={};for(let a of this.records){let e=Sh[a.platformID][a.languageID];null==e&&null!=this.langTags&&a.languageID>=32768&&(e=this.langTags[a.languageID-32768].tag),null==e&&(e=a.platformID+"-"+a.languageID);let r=a.nameID>=256?"fontFeatures":Ph[a.nameID]||a.nameID;null==t[r]&&(t[r]={});let n=t[r];a.nameID>=256&&(n=n[a.nameID]||(n[a.nameID]={})),"string"!=typeof a.string&&"string"==typeof n[e]||(n[e]=a.string)}this.records=t},Ah.preEncode=function(){if(Array.isArray(this.records))return;this.version=0;let e=[];for(let t in this.records){let a=this.records[t];"fontFeatures"!==t&&(e.push({platformID:3,encodingID:1,languageID:1033,nameID:Ph.indexOf(t),length:2*a.en.length,string:a.en}),"postscriptName"===t&&e.push({platformID:1,encodingID:0,languageID:0,nameID:Ph.indexOf(t),length:a.en.length,string:a.en}))}this.records=e,this.count=e.length,this.stringOffset=Ah.size(this,null,!1)};var Eh=new od(Fs,{header:{xAvgCharWidth:_s,usWeightClass:Fs,usWidthClass:Fs,fsType:new Js(Fs,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:_s,ySubscriptYSize:_s,ySubscriptXOffset:_s,ySubscriptYOffset:_s,ySuperscriptXSize:_s,ySuperscriptYSize:_s,ySuperscriptXOffset:_s,ySuperscriptYOffset:_s,yStrikeoutSize:_s,yStrikeoutPosition:_s,sFamilyClass:_s,panose:new Zs(Ds,10),ulCharRange:new Zs(Vs,4),vendorID:new td(4),fsSelection:new Js(Fs,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:Fs,usLastCharIndex:Fs},0:{},1:{typoAscender:_s,typoDescender:_s,typoLineGap:_s,winAscent:Fs,winDescent:Fs,codePageRange:new Zs(Vs,2)},2:{typoAscender:_s,typoDescender:_s,typoLineGap:_s,winAscent:Fs,winDescent:Fs,codePageRange:new Zs(Vs,2),xHeight:_s,capHeight:_s,defaultChar:Fs,breakChar:Fs,maxContent:Fs},5:{typoAscender:_s,typoDescender:_s,typoLineGap:_s,winAscent:Fs,winDescent:Fs,codePageRange:new Zs(Vs,2),xHeight:_s,capHeight:_s,defaultChar:Fs,breakChar:Fs,maxContent:Fs,usLowerOpticalPointSize:Fs,usUpperOpticalPointSize:Fs}});let Lh=Eh.versions;Lh[3]=Lh[4]=Lh[2];var Oh=Eh,Rh=new od(Ws,{header:{italicAngle:Ws,underlinePosition:_s,underlineThickness:_s,isFixedPitch:Vs,minMemType42:Vs,maxMemType42:Vs,minMemType1:Vs,maxMemType1:Vs},1:{},2:{numberOfGlyphs:Fs,glyphNameIndex:new Zs(Fs,"numberOfGlyphs"),names:new Zs(new td(Ds))},2.5:{numberOfGlyphs:Fs,offsets:new Zs(Ds,"numberOfGlyphs")},3:{},4:{map:new Zs(Vs,e=>e.parent.maxp.numGlyphs)}}),Hh=new nd({controlValues:new Zs(_s)}),Nh=new nd({instructions:new Zs(Ds)});let Dh=new od("head.indexToLocFormat",{0:{offsets:new Zs(Fs)},1:{offsets:new Zs(Vs)}});Dh.process=function(){if(0===this.version&&!this._processed){for(let e=0;e<this.offsets.length;e++)this.offsets[e]<<=1;this._processed=!0}},Dh.preEncode=function(){if(0===this.version&&!1!==this._processed){for(let e=0;e<this.offsets.length;e++)this.offsets[e]>>>=1;this._processed=!1}};var Fh=Dh,Bh=new nd({controlValueProgram:new Zs(Ds)}),Vh=new Zs(new Qs);class zh{getCFFVersion(e){for(;e&&!e.hdrSize;)e=e.parent;return e?e.version:-1}decode(e,t){let a=this.getCFFVersion(t)>=2?e.readUInt32BE():e.readUInt16BE();if(0===a)return[];let r,n=e.readUInt8();if(1===n)r=Ds;else if(2===n)r=Fs;else if(3===n)r=Bs;else{if(4!==n)throw new Error(`Bad offset size in CFFIndex: ${n} ${e.pos}`);r=Vs}let o=[],i=e.pos+(a+1)*n-1,l=r.decode(e);for(let s=0;s<a;s++){let a=r.decode(e);if(null!=this.type){let r=e.pos;e.pos=i+l,t.length=a-l,o.push(this.type.decode(e,t)),e.pos=r}else o.push({offset:i+l,length:a-l});l=a}return e.pos=i+l,o}size(e,t){let a=2;if(0===e.length)return a;let r,n=this.type||new Qs,o=1;for(let i=0;i<e.length;i++){let a=e[i];o+=n.size(a,t)}if(o<=255)r=Ds;else if(o<=65535)r=Fs;else if(o<=16777215)r=Bs;else{if(!(o<=4294967295))throw new Error("Bad offset in CFFIndex");r=Vs}return a+=1+r.size()*(e.length+1),a+=o-1,a}encode(e,t,a){if(e.writeUInt16BE(t.length),0===t.length)return;let r,n=this.type||new Qs,o=[],i=1;for(let l of t){let e=n.size(l,a);o.push(e),i+=e}if(i<=255)r=Ds;else if(i<=65535)r=Fs;else if(i<=16777215)r=Bs;else{if(!(i<=4294967295))throw new Error("Bad offset in CFFIndex");r=Vs}e.writeUInt8(r.size()),i=1,r.encode(e,i);for(let l of o)i+=l,r.encode(e,i);for(let l of t)n.encode(e,l,a)}constructor(e){this.type=e}}const _h=["0","1","2","3","4","5","6","7","8","9",".","E","E-",null,"-"],Uh={".":10,E:11,"E-":12,"-":14};class qh{static decode(e,t){if(32<=t&&t<=246)return t-139;if(247<=t&&t<=250)return 256*(t-247)+e.readUInt8()+108;if(251<=t&&t<=254)return 256*-(t-251)-e.readUInt8()-108;if(28===t)return e.readInt16BE();if(29===t)return e.readInt32BE();if(30===t){let t="";for(;;){let a=e.readUInt8(),r=a>>4;if(15===r)break;t+=_h[r];let n=15&a;if(15===n)break;t+=_h[n]}return parseFloat(t)}return null}static size(e){if(e.forceLarge&&(e=32768),(0|e)!==e){let t=""+e;return 1+Math.ceil((t.length+1)/2)}return-107<=e&&e<=107?1:108<=e&&e<=1131||-1131<=e&&e<=-108?2:-32768<=e&&e<=32767?3:5}static encode(e,t){let a=Number(t);if(t.forceLarge)return e.writeUInt8(29),e.writeInt32BE(a);if((0|a)===a)return-107<=a&&a<=107?e.writeUInt8(a+139):108<=a&&a<=1131?(a-=108,e.writeUInt8(247+(a>>8)),e.writeUInt8(255&a)):-1131<=a&&a<=-108?(a=-a-108,e.writeUInt8(251+(a>>8)),e.writeUInt8(255&a)):-32768<=a&&a<=32767?(e.writeUInt8(28),e.writeInt16BE(a)):(e.writeUInt8(29),e.writeInt32BE(a));{e.writeUInt8(30);let t=""+a;for(let a=0;a<t.length;a+=2){let n=t[a],o=Uh[n]||+n;if(a===t.length-1)var r=15;else{let e=t[a+1];r=Uh[e]||+e}e.writeUInt8(o<<4|15&r)}if(15!==r)return e.writeUInt8(240)}}}class Gh{decodeOperands(e,t,a,r){if(Array.isArray(e))return r.map((r,n)=>this.decodeOperands(e[n],t,a,[r]));if(null!=e.decode)return e.decode(t,a,r);switch(e){case"number":case"offset":case"sid":return r[0];case"boolean":return!!r[0];default:return r}}encodeOperands(e,t,a,r){return Array.isArray(e)?r.map((r,n)=>this.encodeOperands(e[n],t,a,r)[0]):null!=e.encode?e.encode(t,r,a):"number"==typeof r?[r]:"boolean"==typeof r?[+r]:Array.isArray(r)?r:[r]}decode(e,t){let a=e.pos+t.length,r={},n=[];Object.defineProperties(r,{parent:{value:t},_startOffset:{value:e.pos}});for(let o in this.fields){let e=this.fields[o];r[e[1]]=e[3]}for(;e.pos<a;){let t=e.readUInt8();if(t<28){12===t&&(t=t<<8|e.readUInt8());let a=this.fields[t];if(!a)throw new Error(`Unknown operator ${t}`);let o=this.decodeOperands(a[2],e,r,n);null!=o&&(o instanceof Xs?Object.defineProperty(r,a[1],o):r[a[1]]=o),n=[]}else n.push(qh.decode(e,t))}return r}size(e,t,a=!0){let r={parent:t,val:e,pointerSize:0,startOffset:t.startOffset||0},n=0;for(let o in this.fields){let t=this.fields[o],a=e[t[1]];if(null==a||cd(a,t[3]))continue;let i=this.encodeOperands(t[2],null,r,a);for(let e of i)n+=qh.size(e);n+=(Array.isArray(t[0])?t[0]:[t[0]]).length}return a&&(n+=r.pointerSize),n}encode(e,t,a){let r={pointers:[],startOffset:e.pos,parent:a,val:t,pointerSize:0};r.pointerOffset=e.pos+this.size(t,r,!1);for(let o of this.ops){let a=t[o[1]];if(null==a||cd(a,o[3]))continue;let n=this.encodeOperands(o[2],e,r,a);for(let t of n)qh.encode(e,t);let i=Array.isArray(o[0])?o[0]:[o[0]];for(let t of i)e.writeUInt8(t)}let n=0;for(;n<r.pointers.length;){let t=r.pointers[n++];t.type.encode(e,t.val,t.parent)}}constructor(e=[]){this.ops=e,this.fields={};for(let t of e){let e=Array.isArray(t[0])?t[0][0]<<8|t[0][1]:t[0];this.fields[e]=t}}}class Wh extends id{decode(e,t,a){return this.offsetType={decode:()=>a[0]},super.decode(e,t,a)}encode(e,t,a){if(!e)return this.offsetType={size:()=>0},this.size(t,a),[new jh(0)];let r=null;return this.offsetType={encode:(e,t)=>r=t},super.encode(e,t,a),[new jh(r)]}constructor(e,t={}){null==t.type&&(t.type="global"),super(null,e,t)}}class jh{valueOf(){return this.val}constructor(e){this.val=e,this.forceLarge=!0}}var Xh=new Gh([[6,"BlueValues","delta",null],[7,"OtherBlues","delta",null],[8,"FamilyBlues","delta",null],[9,"FamilyOtherBlues","delta",null],[[12,9],"BlueScale","number",.039625],[[12,10],"BlueShift","number",7],[[12,11],"BlueFuzz","number",1],[10,"StdHW","number",null],[11,"StdVW","number",null],[[12,12],"StemSnapH","delta",null],[[12,13],"StemSnapV","delta",null],[[12,14],"ForceBold","boolean",!1],[[12,17],"LanguageGroup","number",0],[[12,18],"ExpansionFactor","number",.06],[[12,19],"initialRandomSeed","number",0],[20,"defaultWidthX","number",0],[21,"nominalWidthX","number",0],[22,"vsindex","number",0],[23,"blend",class{static decode(e,t,a){let r=a.pop();for(;a.length>r;)a.pop()}},null],[19,"Subrs",new Wh(new zh,{type:"local"}),null]]),Zh=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","001.000","001.001","001.002","001.003","Black","Bold","Book","Light","Medium","Regular","Roman","Semibold"];let Kh=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","","endash","dagger","daggerdbl","periodcentered","","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","","questiondown","","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","","ring","cedilla","","hungarumlaut","ogonek","caron","emdash","","","","","","","","","","","","","","","","","AE","","ordfeminine","","","","","Lslash","Oslash","OE","ordmasculine","","","","","","ae","","","","dotlessi","","","lslash","oslash","oe","germandbls"],Yh=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron"],Jh=new nd({reserved:new ed(Fs),reqFeatureIndex:Fs,featureCount:Fs,featureIndexes:new Zs(Fs,"featureCount")}),Qh=new nd({tag:new td(4),langSys:new id(Fs,Jh,{type:"parent"})}),$h=new nd({defaultLangSys:new id(Fs,Jh),count:Fs,langSysRecords:new Zs(Qh,"count")}),ep=new nd({tag:new td(4),script:new id(Fs,$h,{type:"parent"})}),tp=new Zs(ep,Fs),ap=new nd({version:Fs,nameID:Fs}),rp=new nd({featureParams:new id(Fs,ap),lookupCount:Fs,lookupListIndexes:new Zs(Fs,"lookupCount")}),np=new nd({tag:new td(4),feature:new id(Fs,rp,{type:"parent"})}),op=new Zs(np,Fs),ip=new nd({markAttachmentType:Ds,flags:new Js(Ds,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function lp(e){let t=new nd({lookupType:Fs,flags:ip,subTableCount:Fs,subTables:new Zs(new id(Fs,e),"subTableCount"),markFilteringSet:new $s(Fs,e=>e.flags.flags.useMarkFilteringSet)});return new Ks(new id(Fs,t),Fs)}let sp=new nd({start:Fs,end:Fs,startCoverageIndex:Fs}),dp=new od(Fs,{1:{glyphCount:Fs,glyphs:new Zs(Fs,"glyphCount")},2:{rangeCount:Fs,rangeRecords:new Zs(sp,"rangeCount")}}),cp=new nd({start:Fs,end:Fs,class:Fs}),hp=new od(Fs,{1:{startGlyph:Fs,glyphCount:Fs,classValueArray:new Zs(Fs,"glyphCount")},2:{classRangeCount:Fs,classRangeRecord:new Zs(cp,"classRangeCount")}}),pp=new nd({a:Fs,b:Fs,deltaFormat:Fs}),up=new nd({sequenceIndex:Fs,lookupListIndex:Fs}),fp=new nd({glyphCount:Fs,lookupCount:Fs,input:new Zs(Fs,e=>e.glyphCount-1),lookupRecords:new Zs(up,"lookupCount")}),gp=new Zs(new id(Fs,fp),Fs),mp=new nd({glyphCount:Fs,lookupCount:Fs,classes:new Zs(Fs,e=>e.glyphCount-1),lookupRecords:new Zs(up,"lookupCount")}),vp=new Zs(new id(Fs,mp),Fs),yp=new od(Fs,{1:{coverage:new id(Fs,dp),ruleSetCount:Fs,ruleSets:new Zs(new id(Fs,gp),"ruleSetCount")},2:{coverage:new id(Fs,dp),classDef:new id(Fs,hp),classSetCnt:Fs,classSet:new Zs(new id(Fs,vp),"classSetCnt")},3:{glyphCount:Fs,lookupCount:Fs,coverages:new Zs(new id(Fs,dp),"glyphCount"),lookupRecords:new Zs(up,"lookupCount")}}),bp=new nd({backtrackGlyphCount:Fs,backtrack:new Zs(Fs,"backtrackGlyphCount"),inputGlyphCount:Fs,input:new Zs(Fs,e=>e.inputGlyphCount-1),lookaheadGlyphCount:Fs,lookahead:new Zs(Fs,"lookaheadGlyphCount"),lookupCount:Fs,lookupRecords:new Zs(up,"lookupCount")}),Mp=new Zs(new id(Fs,bp),Fs),wp=new od(Fs,{1:{coverage:new id(Fs,dp),chainCount:Fs,chainRuleSets:new Zs(new id(Fs,Mp),"chainCount")},2:{coverage:new id(Fs,dp),backtrackClassDef:new id(Fs,hp),inputClassDef:new id(Fs,hp),lookaheadClassDef:new id(Fs,hp),chainCount:Fs,chainClassSet:new Zs(new id(Fs,Mp),"chainCount")},3:{backtrackGlyphCount:Fs,backtrackCoverage:new Zs(new id(Fs,dp),"backtrackGlyphCount"),inputGlyphCount:Fs,inputCoverage:new Zs(new id(Fs,dp),"inputGlyphCount"),lookaheadGlyphCount:Fs,lookaheadCoverage:new Zs(new id(Fs,dp),"lookaheadGlyphCount"),lookupCount:Fs,lookupRecords:new Zs(up,"lookupCount")}}),xp=new qs(16,"BE",14),Cp=new nd({startCoord:xp,peakCoord:xp,endCoord:xp}),Sp=new nd({axisCount:Fs,regionCount:Fs,variationRegions:new Zs(new Zs(Cp,"axisCount"),"regionCount")}),Ip=new nd({shortDeltas:new Zs(_s,e=>e.parent.shortDeltaCount),regionDeltas:new Zs(zs,e=>e.parent.regionIndexCount-e.parent.shortDeltaCount),deltas:e=>e.shortDeltas.concat(e.regionDeltas)}),kp=new nd({itemCount:Fs,shortDeltaCount:Fs,regionIndexCount:Fs,regionIndexes:new Zs(Fs,"regionIndexCount"),deltaSets:new Zs(Ip,"itemCount")}),Ap=new nd({format:Fs,variationRegionList:new id(Vs,Sp),variationDataCount:Fs,itemVariationData:new Zs(new id(Vs,kp),"variationDataCount")}),Tp=new od(Fs,{1:{axisIndex:Fs,axisIndex:Fs,filterRangeMinValue:xp,filterRangeMaxValue:xp}}),Pp=new nd({conditionCount:Fs,conditionTable:new Zs(new id(Vs,Tp),"conditionCount")}),Ep=new nd({featureIndex:Fs,alternateFeatureTable:new id(Vs,rp,{type:"parent"})}),Lp=new nd({version:Ws,substitutionCount:Fs,substitutions:new Zs(Ep,"substitutionCount")}),Op=new nd({conditionSet:new id(Vs,Pp,{type:"parent"}),featureTableSubstitution:new id(Vs,Lp,{type:"parent"})}),Rp=new nd({majorVersion:Fs,minorVersion:Fs,featureVariationRecordCount:Vs,featureVariationRecords:new Zs(Op,"featureVariationRecordCount")});class Hp{decode(e,t,a){return this.predefinedOps[a[0]]?this.predefinedOps[a[0]]:this.type.decode(e,t,a)}size(e,t){return this.type.size(e,t)}encode(e,t,a){let r=this.predefinedOps.indexOf(t);return-1!==r?r:this.type.encode(e,t,a)}constructor(e,t){this.predefinedOps=e,this.type=t}}let Np=new nd({first:Fs,nLeft:Ds}),Dp=new nd({first:Fs,nLeft:Fs}),Fp=new Hp([Kh,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","","asuperior","bsuperior","centsuperior","dsuperior","esuperior","","","isuperior","","","lsuperior","msuperior","nsuperior","osuperior","","","rsuperior","ssuperior","tsuperior","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdownsmall","centoldstyle","Lslashsmall","","","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","","Dotaccentsmall","","","Macronsmall","","","figuredash","hypheninferior","","","Ogoneksmall","Ringsmall","Cedillasmall","","","","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"]],new Wh(new od(new class extends Ns{decode(e){return 127&Ds.decode(e)}constructor(){super("UInt8")}},{0:{nCodes:Ds,codes:new Zs(Ds,"nCodes")},1:{nRanges:Ds,ranges:new Zs(Np,"nRanges")}}),{lazy:!0}));class Bp extends Zs{decode(e,t){let a=js(this.length,e,t),r=0,n=[];for(;r<a;){let a=this.type.decode(e,t);a.offset=r,r+=a.nLeft+1,n.push(a)}return n}}let Vp=new Hp([Yh,[".notdef","space","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","fi","fl","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"],[".notdef","space","dollaroldstyle","dollarsuperior","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","fi","fl","ffi","ffl","parenleftinferior","parenrightinferior","hyphensuperior","colonmonetary","onefitted","rupiah","centoldstyle","figuredash","hypheninferior","onequarter","onehalf","threequarters","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior"]],new Wh(new od(Ds,{0:{glyphs:new Zs(Fs,e=>e.parent.CharStrings.length-1)},1:{ranges:new Bp(Np,e=>e.parent.CharStrings.length-1)},2:{ranges:new Bp(Dp,e=>e.parent.CharStrings.length-1)}}),{lazy:!0})),zp=new nd({first:Fs,fd:Ds}),_p=new nd({first:Vs,fd:Fs}),Up=new od(Ds,{0:{fds:new Zs(Ds,e=>e.parent.CharStrings.length)},3:{nRanges:Fs,ranges:new Zs(zp,"nRanges"),sentinel:Fs},4:{nRanges:Vs,ranges:new Zs(_p,"nRanges"),sentinel:Vs}}),qp=new Wh(Xh);class Gp{decode(e,t,a){return t.length=a[0],qp.decode(e,t,[a[1]])}size(e,t){return[Xh.size(e,t,!1),qp.size(e,t)[0]]}encode(e,t,a){return[Xh.size(t,a,!1),qp.encode(e,t,a)[0]]}}let Wp=new Gh([[18,"Private",new Gp,null],[[12,38],"FontName","sid",null],[[12,7],"FontMatrix","array",[.001,0,0,.001,0,0]],[[12,5],"PaintType","number",0]]),jp=new Gh([[[12,30],"ROS",["sid","sid","number"],null],[0,"version","sid",null],[1,"Notice","sid",null],[[12,0],"Copyright","sid",null],[2,"FullName","sid",null],[3,"FamilyName","sid",null],[4,"Weight","sid",null],[[12,1],"isFixedPitch","boolean",!1],[[12,2],"ItalicAngle","number",0],[[12,3],"UnderlinePosition","number",-100],[[12,4],"UnderlineThickness","number",50],[[12,5],"PaintType","number",0],[[12,6],"CharstringType","number",2],[[12,7],"FontMatrix","array",[.001,0,0,.001,0,0]],[13,"UniqueID","number",null],[5,"FontBBox","array",[0,0,0,0]],[[12,8],"StrokeWidth","number",0],[14,"XUID","array",null],[15,"charset",Vp,Yh],[16,"Encoding",Fp,Kh],[17,"CharStrings",new Wh(new zh),null],[18,"Private",new Gp,null],[[12,20],"SyntheticBase","number",null],[[12,21],"PostScript","sid",null],[[12,22],"BaseFontName","sid",null],[[12,23],"BaseFontBlend","delta",null],[[12,31],"CIDFontVersion","number",0],[[12,32],"CIDFontRevision","number",0],[[12,33],"CIDFontType","number",0],[[12,34],"CIDCount","number",8720],[[12,35],"UIDBase","number",null],[[12,37],"FDSelect",new Wh(Up),null],[[12,36],"FDArray",new Wh(new zh(Wp)),null],[[12,38],"FontName","sid",null]]),Xp=new nd({length:Fs,itemVariationStore:Ap}),Zp=new Gh([[[12,7],"FontMatrix","array",[.001,0,0,.001,0,0]],[17,"CharStrings",new Wh(new zh),null],[[12,37],"FDSelect",new Wh(Up),null],[[12,36],"FDArray",new Wh(new zh(Wp)),null],[24,"vstore",new Wh(Xp),null],[25,"maxstack","number",193]]);var Kp=new od(Gs,{1:{hdrSize:Ds,offSize:Ds,nameIndex:new zh(new td("length")),topDictIndex:new zh(jp),stringIndex:new zh(new td("length")),globalSubrIndex:new zh},2:{hdrSize:Ds,length:Fs,topDict:Zp,globalSubrIndex:new zh}});class Yp{static decode(e){return new Yp(e)}decode(){this.stream.pos;let e=Kp.decode(this.stream);for(let t in e){let a=e[t];this[t]=a}if(this.version<2){if(1!==this.topDictIndex.length)throw new Error("Only a single font is allowed in CFF");this.topDict=this.topDictIndex[0]}return this.isCIDFont=null!=this.topDict.ROS,this}string(e){return this.version>=2?null:e<Zh.length?Zh[e]:this.stringIndex[e-Zh.length]}get postscriptName(){return this.version<2?this.nameIndex[0]:null}get fullName(){return this.string(this.topDict.FullName)}get familyName(){return this.string(this.topDict.FamilyName)}getCharString(e){return this.stream.pos=this.topDict.CharStrings[e].offset,this.stream.readBuffer(this.topDict.CharStrings[e].length)}getGlyphName(e){if(this.version>=2)return null;if(this.isCIDFont)return null;let{charset:t}=this.topDict;if(Array.isArray(t))return t[e];if(0===e)return".notdef";switch(e-=1,t.version){case 0:return this.string(t.glyphs[e]);case 1:case 2:for(let a=0;a<t.ranges.length;a++){let r=t.ranges[a];if(r.offset<=e&&e<=r.offset+r.nLeft)return this.string(r.first+(e-r.offset))}}return null}fdForGlyph(e){if(!this.topDict.FDSelect)return null;switch(this.topDict.FDSelect.version){case 0:return this.topDict.FDSelect.fds[e];case 3:case 4:let{ranges:t}=this.topDict.FDSelect,a=0,r=t.length-1;for(;a<=r;){let n=a+r>>1;if(e<t[n].first)r=n-1;else{if(!(n<r&&e>=t[n+1].first))return t[n].fd;a=n+1}}default:throw new Error(`Unknown FDSelect version: ${this.topDict.FDSelect.version}`)}}privateDictForGlyph(e){if(this.topDict.FDSelect){let t=this.fdForGlyph(e);return this.topDict.FDArray[t]?this.topDict.FDArray[t].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private}constructor(e){this.stream=e,this.decode()}}var Jp=Yp;let Qp=new nd({glyphIndex:Fs,vertOriginY:_s});var $p=new nd({majorVersion:Fs,minorVersion:Fs,defaultVertOriginY:_s,numVertOriginYMetrics:Fs,metrics:new Zs(Qp,"numVertOriginYMetrics")});let eu=new nd({height:Ds,width:Ds,horiBearingX:zs,horiBearingY:zs,horiAdvance:Ds,vertBearingX:zs,vertBearingY:zs,vertAdvance:Ds}),tu=new nd({height:Ds,width:Ds,bearingX:zs,bearingY:zs,advance:Ds}),au=new nd({glyph:Fs,xOffset:zs,yOffset:zs});class ru{}class nu{}new od("version",{1:{metrics:tu,data:ru},2:{metrics:tu,data:nu},5:{data:nu},6:{metrics:eu,data:ru},7:{metrics:eu,data:nu},8:{metrics:tu,pad:new ed(Ds),numComponents:Fs,components:new Zs(au,"numComponents")},9:{metrics:eu,pad:new ed(Ds),numComponents:Fs,components:new Zs(au,"numComponents")},17:{metrics:tu,dataLen:Vs,data:new Qs("dataLen")},18:{metrics:eu,dataLen:Vs,data:new Qs("dataLen")},19:{dataLen:Vs,data:new Qs("dataLen")}});let ou=new nd({ascender:zs,descender:zs,widthMax:Ds,caretSlopeNumerator:zs,caretSlopeDenominator:zs,caretOffset:zs,minOriginSB:zs,minAdvanceSB:zs,maxBeforeBL:zs,minAfterBL:zs,pad:new ed(zs,2)}),iu=new nd({glyphCode:Fs,offset:Fs}),lu=new od(Fs,{header:{imageFormat:Fs,imageDataOffset:Vs},1:{offsetArray:new Zs(Vs,e=>e.parent.lastGlyphIndex-e.parent.firstGlyphIndex+1)},2:{imageSize:Vs,bigMetrics:eu},3:{offsetArray:new Zs(Fs,e=>e.parent.lastGlyphIndex-e.parent.firstGlyphIndex+1)},4:{numGlyphs:Vs,glyphArray:new Zs(iu,e=>e.numGlyphs+1)},5:{imageSize:Vs,bigMetrics:eu,numGlyphs:Vs,glyphCodeArray:new Zs(Fs,"numGlyphs")}}),su=new nd({firstGlyphIndex:Fs,lastGlyphIndex:Fs,subtable:new id(Vs,lu)}),du=new nd({indexSubTableArray:new id(Vs,new Zs(su,1),{type:"parent"}),indexTablesSize:Vs,numberOfIndexSubTables:Vs,colorRef:Vs,hori:ou,vert:ou,startGlyphIndex:Fs,endGlyphIndex:Fs,ppemX:Ds,ppemY:Ds,bitDepth:Ds,flags:new Js(Ds,["horizontal","vertical"])});var cu=new nd({version:Vs,numSizes:Vs,sizes:new Zs(du,"numSizes")});let hu=new nd({ppem:Fs,resolution:Fs,imageOffsets:new Zs(new id(Vs,"void"),e=>e.parent.parent.maxp.numGlyphs+1)});var pu=new nd({version:Fs,flags:new Js(Fs,["renderOutlines"]),numImgTables:Vs,imageTables:new Zs(new id(Vs,hu),"numImgTables")});let uu=new nd({gid:Fs,paletteIndex:Fs}),fu=new nd({gid:Fs,firstLayerIndex:Fs,numLayers:Fs});var gu=new nd({version:Fs,numBaseGlyphRecords:Fs,baseGlyphRecord:new id(Vs,new Zs(fu,"numBaseGlyphRecords")),layerRecords:new id(Vs,new Zs(uu,"numLayerRecords"),{lazy:!0}),numLayerRecords:Fs});let mu=new nd({blue:Ds,green:Ds,red:Ds,alpha:Ds});var vu=new od(Fs,{header:{numPaletteEntries:Fs,numPalettes:Fs,numColorRecords:Fs,colorRecords:new id(Vs,new Zs(mu,"numColorRecords")),colorRecordIndices:new Zs(Fs,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new id(Vs,new Zs(Vs,"numPalettes")),offsetPaletteLabelArray:new id(Vs,new Zs(Fs,"numPalettes")),offsetPaletteEntryLabelArray:new id(Vs,new Zs(Fs,"numPaletteEntries"))}});let yu=new od(Fs,{1:{coordinate:_s},2:{coordinate:_s,referenceGlyph:Fs,baseCoordPoint:Fs},3:{coordinate:_s,deviceTable:new id(Fs,pp)}}),bu=new nd({defaultIndex:Fs,baseCoordCount:Fs,baseCoords:new Zs(new id(Fs,yu),"baseCoordCount")}),Mu=new nd({tag:new td(4),minCoord:new id(Fs,yu,{type:"parent"}),maxCoord:new id(Fs,yu,{type:"parent"})}),wu=new nd({minCoord:new id(Fs,yu),maxCoord:new id(Fs,yu),featMinMaxCount:Fs,featMinMaxRecords:new Zs(Mu,"featMinMaxCount")}),xu=new nd({tag:new td(4),minMax:new id(Fs,wu,{type:"parent"})}),Cu=new nd({baseValues:new id(Fs,bu),defaultMinMax:new id(Fs,wu),baseLangSysCount:Fs,baseLangSysRecords:new Zs(xu,"baseLangSysCount")}),Su=new nd({tag:new td(4),script:new id(Fs,Cu,{type:"parent"})}),Iu=new Zs(Su,Fs),ku=new Zs(new td(4),Fs),Au=new nd({baseTagList:new id(Fs,ku),baseScriptList:new id(Fs,Iu)});var Tu=new od(Vs,{header:{horizAxis:new id(Fs,Au),vertAxis:new id(Fs,Au)},65536:{},65537:{itemVariationStore:new id(Vs,Ap)}});let Pu=new Zs(Fs,Fs),Eu=new nd({coverage:new id(Fs,dp),glyphCount:Fs,attachPoints:new Zs(new id(Fs,Pu),"glyphCount")}),Lu=new od(Fs,{1:{coordinate:_s},2:{caretValuePoint:Fs},3:{coordinate:_s,deviceTable:new id(Fs,pp)}}),Ou=new Zs(new id(Fs,Lu),Fs),Ru=new nd({coverage:new id(Fs,dp),ligGlyphCount:Fs,ligGlyphs:new Zs(new id(Fs,Ou),"ligGlyphCount")}),Hu=new nd({markSetTableFormat:Fs,markSetCount:Fs,coverage:new Zs(new id(Vs,dp),"markSetCount")});var Nu=new od(Vs,{header:{glyphClassDef:new id(Fs,hp),attachList:new id(Fs,Eu),ligCaretList:new id(Fs,Ru),markAttachClassDef:new id(Fs,hp)},65536:{},65538:{markGlyphSetsDef:new id(Fs,Hu)},65539:{markGlyphSetsDef:new id(Fs,Hu),itemVariationStore:new id(Vs,Ap)}});let Du=new Js(Fs,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Fu={xPlacement:_s,yPlacement:_s,xAdvance:_s,yAdvance:_s,xPlaDevice:new id(Fs,pp,{type:"global",relativeTo:e=>e.rel}),yPlaDevice:new id(Fs,pp,{type:"global",relativeTo:e=>e.rel}),xAdvDevice:new id(Fs,pp,{type:"global",relativeTo:e=>e.rel}),yAdvDevice:new id(Fs,pp,{type:"global",relativeTo:e=>e.rel})};class Bu{buildStruct(e){let t=e;for(;!t[this.key]&&t.parent;)t=t.parent;if(!t[this.key])return;let a={rel:()=>t._startOffset},r=t[this.key];for(let n in r)r[n]&&(a[n]=Fu[n]);return new nd(a)}size(e,t){return this.buildStruct(t).size(e,t)}decode(e,t){let a=this.buildStruct(t).decode(e,t);return delete a.rel,a}constructor(e="valueFormat"){this.key=e}}let Vu=new nd({secondGlyph:Fs,value1:new Bu("valueFormat1"),value2:new Bu("valueFormat2")}),zu=new Zs(Vu,Fs),_u=new nd({value1:new Bu("valueFormat1"),value2:new Bu("valueFormat2")}),Uu=new od(Fs,{1:{xCoordinate:_s,yCoordinate:_s},2:{xCoordinate:_s,yCoordinate:_s,anchorPoint:Fs},3:{xCoordinate:_s,yCoordinate:_s,xDeviceTable:new id(Fs,pp),yDeviceTable:new id(Fs,pp)}}),qu=new nd({entryAnchor:new id(Fs,Uu,{type:"parent"}),exitAnchor:new id(Fs,Uu,{type:"parent"})}),Gu=new nd({class:Fs,markAnchor:new id(Fs,Uu,{type:"parent"})}),Wu=new Zs(Gu,Fs),ju=new Zs(new id(Fs,Uu),e=>e.parent.classCount),Xu=new Zs(ju,Fs),Zu=new Zs(new id(Fs,Uu),e=>e.parent.parent.classCount),Ku=new Zs(Zu,Fs),Yu=new Zs(new id(Fs,Ku),Fs),Ju=new od("lookupType",{1:new od(Fs,{1:{coverage:new id(Fs,dp),valueFormat:Du,value:new Bu},2:{coverage:new id(Fs,dp),valueFormat:Du,valueCount:Fs,values:new Ks(new Bu,"valueCount")}}),2:new od(Fs,{1:{coverage:new id(Fs,dp),valueFormat1:Du,valueFormat2:Du,pairSetCount:Fs,pairSets:new Ks(new id(Fs,zu),"pairSetCount")},2:{coverage:new id(Fs,dp),valueFormat1:Du,valueFormat2:Du,classDef1:new id(Fs,hp),classDef2:new id(Fs,hp),class1Count:Fs,class2Count:Fs,classRecords:new Ks(new Ks(_u,"class2Count"),"class1Count")}}),3:{format:Fs,coverage:new id(Fs,dp),entryExitCount:Fs,entryExitRecords:new Zs(qu,"entryExitCount")},4:{format:Fs,markCoverage:new id(Fs,dp),baseCoverage:new id(Fs,dp),classCount:Fs,markArray:new id(Fs,Wu),baseArray:new id(Fs,Xu)},5:{format:Fs,markCoverage:new id(Fs,dp),ligatureCoverage:new id(Fs,dp),classCount:Fs,markArray:new id(Fs,Wu),ligatureArray:new id(Fs,Yu)},6:{format:Fs,mark1Coverage:new id(Fs,dp),mark2Coverage:new id(Fs,dp),classCount:Fs,mark1Array:new id(Fs,Wu),mark2Array:new id(Fs,Xu)},7:yp,8:wp,9:{posFormat:Fs,lookupType:Fs,extension:new id(Vs,null)}});Ju.versions[9].extension.type=Ju;var Qu=new od(Vs,{header:{scriptList:new id(Fs,tp),featureList:new id(Fs,op),lookupList:new id(Fs,new lp(Ju))},65536:{},65537:{featureVariations:new id(Vs,Rp)}});let $u=new Zs(Fs,Fs),ef=$u,tf=new nd({glyph:Fs,compCount:Fs,components:new Zs(Fs,e=>e.compCount-1)}),af=new Zs(new id(Fs,tf),Fs),rf=new od("lookupType",{1:new od(Fs,{1:{coverage:new id(Fs,dp),deltaGlyphID:_s},2:{coverage:new id(Fs,dp),glyphCount:Fs,substitute:new Ks(Fs,"glyphCount")}}),2:{substFormat:Fs,coverage:new id(Fs,dp),count:Fs,sequences:new Ks(new id(Fs,$u),"count")},3:{substFormat:Fs,coverage:new id(Fs,dp),count:Fs,alternateSet:new Ks(new id(Fs,ef),"count")},4:{substFormat:Fs,coverage:new id(Fs,dp),count:Fs,ligatureSets:new Ks(new id(Fs,af),"count")},5:yp,6:wp,7:{substFormat:Fs,lookupType:Fs,extension:new id(Vs,null)},8:{substFormat:Fs,coverage:new id(Fs,dp),backtrackCoverage:new Zs(new id(Fs,dp),"backtrackGlyphCount"),lookaheadGlyphCount:Fs,lookaheadCoverage:new Zs(new id(Fs,dp),"lookaheadGlyphCount"),glyphCount:Fs,substitutes:new Zs(Fs,"glyphCount")}});rf.versions[7].extension.type=rf;var nf=new od(Vs,{header:{scriptList:new id(Fs,tp),featureList:new id(Fs,op),lookupList:new id(Fs,new lp(rf))},65536:{},65537:{featureVariations:new id(Vs,Rp)}});let of=new Zs(Fs,Fs),lf=new nd({shrinkageEnableGSUB:new id(Fs,of),shrinkageDisableGSUB:new id(Fs,of),shrinkageEnableGPOS:new id(Fs,of),shrinkageDisableGPOS:new id(Fs,of),shrinkageJstfMax:new id(Fs,new lp(Ju)),extensionEnableGSUB:new id(Fs,of),extensionDisableGSUB:new id(Fs,of),extensionEnableGPOS:new id(Fs,of),extensionDisableGPOS:new id(Fs,of),extensionJstfMax:new id(Fs,new lp(Ju))}),sf=new Zs(new id(Fs,lf),Fs),df=new nd({tag:new td(4),jstfLangSys:new id(Fs,sf)}),cf=new nd({extenderGlyphs:new id(Fs,new Zs(Fs,Fs)),defaultLangSys:new id(Fs,sf),langSysCount:Fs,langSysRecords:new Zs(df,"langSysCount")}),hf=new nd({tag:new td(4),script:new id(Fs,cf,{type:"parent"})});var pf=new nd({version:Vs,scriptCount:Fs,scriptList:new Zs(hf,"scriptCount")});let uf=new nd({entry:new class{decode(e,t){switch(this.size(0,t)){case 1:return e.readUInt8();case 2:return e.readUInt16BE();case 3:return e.readUInt24BE();case 4:return e.readUInt32BE()}}size(e,t){return js(this._size,null,t)}constructor(e){this._size=e}}(e=>1+((48&e.parent.entryFormat)>>4)),outerIndex:e=>e.entry>>1+(15&e.parent.entryFormat),innerIndex:e=>e.entry&(1<<1+(15&e.parent.entryFormat))-1}),ff=new nd({entryFormat:Fs,mapCount:Fs,mapData:new Zs(uf,"mapCount")});var gf=new nd({majorVersion:Fs,minorVersion:Fs,itemVariationStore:new id(Vs,Ap),advanceWidthMapping:new id(Vs,ff),LSBMapping:new id(Vs,ff),RSBMapping:new id(Vs,ff)});let mf=new nd({format:Vs,length:Vs,offset:Vs}),vf=new nd({reserved:new ed(Fs,2),cbSignature:Vs,signature:new Qs("cbSignature")});var yf=new nd({ulVersion:Vs,usNumSigs:Fs,usFlag:Fs,signatures:new Zs(mf,"usNumSigs"),signatureBlocks:new Zs(vf,"usNumSigs")});let bf=new nd({rangeMaxPPEM:Fs,rangeGaspBehavior:new Js(Fs,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])});var Mf=new nd({version:Fs,numRanges:Fs,gaspRanges:new Zs(bf,"numRanges")});let wf=new nd({pixelSize:Ds,maximumWidth:Ds,widths:new Zs(Ds,e=>e.parent.parent.maxp.numGlyphs)});var xf=new nd({version:Fs,numRecords:_s,sizeDeviceRecord:Us,records:new Zs(wf,"numRecords")});let Cf=new nd({left:Fs,right:Fs,value:_s}),Sf=new nd({firstGlyph:Fs,nGlyphs:Fs,offsets:new Zs(Fs,"nGlyphs"),max:e=>e.offsets.length&&Math.max.apply(Math,e.offsets)}),If=new nd({off:e=>e._startOffset-e.parent.parent._startOffset,len:e=>((e.parent.leftTable.max-e.off)/e.parent.rowWidth+1)*(e.parent.rowWidth/2),values:new Ks(_s,"len")}),kf=new od("format",{0:{nPairs:Fs,searchRange:Fs,entrySelector:Fs,rangeShift:Fs,pairs:new Zs(Cf,"nPairs")},2:{rowWidth:Fs,leftTable:new id(Fs,Sf,{type:"parent"}),rightTable:new id(Fs,Sf,{type:"parent"}),array:new id(Fs,If,{type:"parent"})},3:{glyphCount:Fs,kernValueCount:Ds,leftClassCount:Ds,rightClassCount:Ds,flags:Ds,kernValue:new Zs(_s,"kernValueCount"),leftClass:new Zs(Ds,"glyphCount"),rightClass:new Zs(Ds,"glyphCount"),kernIndex:new Zs(Ds,e=>e.leftClassCount*e.rightClassCount)}}),Af=new od("version",{0:{subVersion:Fs,length:Fs,format:Ds,coverage:new Js(Ds,["horizontal","minimum","crossStream","override"]),subtable:kf,padding:new ed(Ds,e=>e.length-e._currentOffset)},1:{length:Vs,coverage:new Js(Ds,[null,null,null,null,null,"variation","crossStream","vertical"]),format:Ds,tupleIndex:Fs,subtable:kf,padding:new ed(Ds,e=>e.length-e._currentOffset)}});var Tf=new od(Fs,{0:{nTables:Fs,tables:new Zs(Af,"nTables")},1:{reserved:new ed(Fs),nTables:Vs,tables:new Zs(Af,"nTables")}}),Pf=new nd({version:Fs,numGlyphs:Fs,yPels:new Zs(Ds,"numGlyphs")}),Ef=new nd({version:Fs,fontNumber:Vs,pitch:Fs,xHeight:Fs,style:Fs,typeFamily:Fs,capHeight:Fs,symbolSet:Fs,typeface:new td(16),characterComplement:new td(8),fileName:new td(6),strokeWeight:new td(1),widthType:new td(1),serifStyle:Ds,reserved:new ed(Ds)});let Lf=new nd({bCharSet:Ds,xRatio:Ds,yStartRatio:Ds,yEndRatio:Ds}),Of=new nd({yPelHeight:Fs,yMax:_s,yMin:_s}),Rf=new nd({recs:Fs,startsz:Ds,endsz:Ds,entries:new Zs(Of,"recs")});var Hf=new nd({version:Fs,numRecs:Fs,numRatios:Fs,ratioRanges:new Zs(Lf,"numRatios"),offsets:new Zs(Fs,"numRatios"),groups:new Zs(Rf,"numRecs")}),Nf=new nd({version:Fs,ascent:_s,descent:_s,lineGap:_s,advanceHeightMax:_s,minTopSideBearing:_s,minBottomSideBearing:_s,yMaxExtent:_s,caretSlopeRise:_s,caretSlopeRun:_s,caretOffset:_s,reserved:new ed(_s,4),metricDataFormat:_s,numberOfMetrics:Fs});let Df=new nd({advance:Fs,bearing:_s});var Ff=new nd({metrics:new Ks(Df,e=>e.parent.vhea.numberOfMetrics),bearings:new Ks(_s,e=>e.parent.maxp.numGlyphs-e.parent.vhea.numberOfMetrics)});let Bf=new qs(16,"BE",14),Vf=new nd({fromCoord:Bf,toCoord:Bf}),zf=new nd({pairCount:Fs,correspondence:new Zs(Vf,"pairCount")});var _f=new nd({version:Ws,axisCount:Vs,segment:new Zs(zf,"axisCount")});class Uf{getItem(e){if(null==this._items[e]){let t=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*e,this._items[e]=this.type.decode(this.stream,this.parent),this.stream.pos=t}return this._items[e]}inspect(){return`[UnboundedArray ${this.type.constructor.name}]`}constructor(e,t,a){this.type=e,this.stream=t,this.parent=a,this.base=this.stream.pos,this._items=[]}}class qf extends Zs{decode(e,t){return new Uf(this.type,e,t)}constructor(e){super(e,0)}}let Gf=function(e=Fs){e=new class{decode(e,t){return t=t.parent.parent,this.type.decode(e,t)}size(e,t){return t=t.parent.parent,this.type.size(e,t)}encode(e,t,a){return a=a.parent.parent,this.type.encode(e,t,a)}constructor(e){this.type=e}}(e);let t=new nd({unitSize:Fs,nUnits:Fs,searchRange:Fs,entrySelector:Fs,rangeShift:Fs}),a=new nd({lastGlyph:Fs,firstGlyph:Fs,value:e}),r=new nd({lastGlyph:Fs,firstGlyph:Fs,values:new id(Fs,new Zs(e,e=>e.lastGlyph-e.firstGlyph+1),{type:"parent"})}),n=new nd({glyph:Fs,value:e});return new od(Fs,{0:{values:new qf(e)},2:{binarySearchHeader:t,segments:new Zs(a,e=>e.binarySearchHeader.nUnits)},4:{binarySearchHeader:t,segments:new Zs(r,e=>e.binarySearchHeader.nUnits)},6:{binarySearchHeader:t,segments:new Zs(n,e=>e.binarySearchHeader.nUnits)},8:{firstGlyph:Fs,count:Fs,values:new Zs(e,"count")}})};function Wf(e={},t=Fs){let a=Object.assign({newState:Fs,flags:Fs},e),r=new nd(a),n=new qf(new Zs(Fs,e=>e.nClasses));return new nd({nClasses:Vs,classTable:new id(Vs,new Gf(t)),stateArray:new id(Vs,n),entryTable:new id(Vs,new qf(r))})}let jf=new od("format",{0:{deltas:new Zs(_s,32)},1:{deltas:new Zs(_s,32),mappingData:new Gf(Fs)},2:{standardGlyph:Fs,controlPoints:new Zs(Fs,32)},3:{standardGlyph:Fs,controlPoints:new Zs(Fs,32),mappingData:new Gf(Fs)}});var Xf=new nd({version:Ws,format:Fs,defaultBaseline:Fs,subtable:jf});let Zf=new nd({setting:Fs,nameIndex:_s,name:e=>e.parent.parent.parent.name.records.fontFeatures[e.nameIndex]}),Kf=new nd({feature:Fs,nSettings:Fs,settingTable:new id(Vs,new Zs(Zf,"nSettings"),{type:"parent"}),featureFlags:new Js(Ds,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:Ds,nameIndex:_s,name:e=>e.parent.parent.name.records.fontFeatures[e.nameIndex]});var Yf=new nd({version:Ws,featureNameCount:Fs,reserved1:new ed(Fs),reserved2:new ed(Vs),featureNames:new Zs(Kf,"featureNameCount")});let Jf=new nd({axisTag:new td(4),minValue:Ws,defaultValue:Ws,maxValue:Ws,flags:Fs,nameID:Fs,name:e=>e.parent.parent.name.records.fontFeatures[e.nameID]}),Qf=new nd({nameID:Fs,name:e=>e.parent.parent.name.records.fontFeatures[e.nameID],flags:Fs,coord:new Zs(Ws,e=>e.parent.axisCount),postscriptNameID:new $s(Fs,e=>e.parent.instanceSize-e._currentOffset>0)});var $f=new nd({version:Ws,offsetToData:Fs,countSizePairs:Fs,axisCount:Fs,axisSize:Fs,instanceCount:Fs,instanceSize:Fs,axis:new Zs(Jf,"axisCount"),instance:new Zs(Qf,"instanceCount")});let eg=new qs(16,"BE",14);var tg=new nd({version:Fs,reserved:new ed(Fs),axisCount:Fs,globalCoordCount:Fs,globalCoords:new id(Vs,new Zs(new Zs(eg,"axisCount"),"globalCoordCount")),glyphCount:Fs,flags:Fs,offsetToData:Vs,offsets:new Zs(new id(class{static decode(e,t){return t.flags?e.readUInt32BE():2*e.readUInt16BE()}},"void",{relativeTo:e=>e.offsetToData,allowNull:!1}),e=>e.glyphCount+1)});let ag=new nd({length:Fs,coverage:Fs,subFeatureFlags:Vs,stateTable:new function(e={}){let t=new nd({version:()=>8,firstGlyph:Fs,values:new Zs(Ds,Fs)}),a=Object.assign({newStateOffset:Fs,newState:e=>(e.newStateOffset-(e.parent.stateArray.base-e.parent._startOffset))/e.parent.nClasses,flags:Fs},e),r=new nd(a),n=new qf(new Zs(Ds,e=>e.nClasses));return new nd({nClasses:Fs,classTable:new id(Fs,t),stateArray:new id(Fs,n),entryTable:new id(Fs,new qf(r))})}}),rg=new nd({justClass:Vs,beforeGrowLimit:Ws,beforeShrinkLimit:Ws,afterGrowLimit:Ws,afterShrinkLimit:Ws,growFlags:Fs,shrinkFlags:Fs}),ng=new Zs(rg,Vs),og=new od("actionType",{0:{lowerLimit:Ws,upperLimit:Ws,order:Fs,glyphs:new Zs(Fs,Fs)},1:{addGlyph:Fs},2:{substThreshold:Ws,addGlyph:Fs,substGlyph:Fs},3:{},4:{variationAxis:Vs,minimumLimit:Ws,noStretchValue:Ws,maximumLimit:Ws},5:{flags:Fs,glyph:Fs}}),ig=new nd({actionClass:Fs,actionType:Fs,actionLength:Vs,actionData:og,padding:new ed(Ds,e=>e.actionLength-e._currentOffset)}),lg=new Zs(ig,Vs),sg=new nd({lookupTable:new Gf(new id(Fs,lg))}),dg=new nd({classTable:new id(Fs,ag,{type:"parent"}),wdcOffset:Fs,postCompensationTable:new id(Fs,sg,{type:"parent"}),widthDeltaClusters:new Gf(new id(Fs,ng,{type:"parent",relativeTo:e=>e.wdcOffset}))});var cg=new nd({version:Vs,format:Fs,horizontal:new id(Fs,dg),vertical:new id(Fs,dg)});let hg={action:Fs},pg={markIndex:Fs,currentIndex:Fs},ug={currentInsertIndex:Fs,markedInsertIndex:Fs},fg=new nd({items:new qf(new id(Vs,new Gf))}),gg=new od("type",{0:{stateTable:new Wf},1:{stateTable:new Wf(pg),substitutionTable:new id(Vs,fg)},2:{stateTable:new Wf(hg),ligatureActions:new id(Vs,new qf(Vs)),components:new id(Vs,new qf(Fs)),ligatureList:new id(Vs,new qf(Fs))},4:{lookupTable:new Gf},5:{stateTable:new Wf(ug),insertionActions:new id(Vs,new qf(Fs))}}),mg=new nd({length:Vs,coverage:Bs,type:Ds,subFeatureFlags:Vs,table:gg,padding:new ed(Ds,e=>e.length-e._currentOffset)}),vg=new nd({featureType:Fs,featureSetting:Fs,enableFlags:Vs,disableFlags:Vs}),yg=new nd({defaultFlags:Vs,chainLength:Vs,nFeatureEntries:Vs,nSubtables:Vs,features:new Zs(vg,"nFeatureEntries"),subtables:new Zs(mg,"nSubtables")});var bg=new nd({version:Fs,unused:new ed(Fs),nChains:Vs,chains:new Zs(yg,"nChains")});let Mg=new nd({left:_s,top:_s,right:_s,bottom:_s});var wg=new nd({version:Ws,format:Fs,lookupTable:new Gf(Mg)});let xg={};var Cg=xg;xg.cmap=hh,xg.head=ph,xg.hhea=uh,xg.hmtx=gh,xg.maxp=mh,xg.name=Th,xg["OS/2"]=Oh,xg.post=Rh,xg.fpgm=Nh,xg.loca=Fh,xg.prep=Bh,xg["cvt "]=Hh,xg.glyf=Vh,xg["CFF "]=Jp,xg.CFF2=Jp,xg.VORG=$p,xg.EBLC=cu,xg.CBLC=xg.EBLC,xg.sbix=pu,xg.COLR=gu,xg.CPAL=vu,xg.BASE=Tu,xg.GDEF=Nu,xg.GPOS=Qu,xg.GSUB=nf,xg.JSTF=pf,xg.HVAR=gf,xg.DSIG=yf,xg.gasp=Mf,xg.hdmx=xf,xg.kern=Tf,xg.LTSH=Pf,xg.PCLT=Ef,xg.VDMX=Hf,xg.vhea=Nf,xg.vmtx=Ff,xg.avar=_f,xg.bsln=Xf,xg.feat=Yf,xg.fvar=$f,xg.gvar=tg,xg.just=cg,xg.morx=bg,xg.opbd=wg;let Sg=new nd({tag:new td(4),checkSum:Vs,offset:new id(Vs,"void",{type:"global"}),length:Vs}),Ig=new nd({tag:new td(4),numTables:Fs,searchRange:Fs,entrySelector:Fs,rangeShift:Fs,tables:new Zs(Sg,"numTables")});Ig.process=function(){let e={};for(let t of this.tables)e[t.tag]=t;this.tables=e},Ig.preEncode=function(){if(!Array.isArray(this.tables)){let e=[];for(let t in this.tables){let a=this.tables[t];a&&e.push({tag:t,checkSum:0,offset:new ld(Cg[t],a),length:Cg[t].size(a)})}this.tables=e}this.tag="true",this.numTables=this.tables.length;let e=Math.floor(Math.log(this.numTables)/Math.LN2),t=Math.pow(2,e);this.searchRange=16*t,this.entrySelector=Math.log(t)/Math.LN2,this.rangeShift=16*this.numTables-this.searchRange};var kg=Ig;function Ag(e,t){let a=0,r=e.length-1;for(;a<=r;){let n=a+r>>1,o=t(e[n]);if(o<0)r=n-1;else{if(!(o>0))return n;a=n+1}}return-1}function Tg(e,t){let a=[];for(;e<t;)a.push(e++);return a}const Pg=new TextDecoder("ascii"),Eg="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Lg=new Uint8Array(256);for(let gR=0;gR<64;gR++)Lg[Eg.charCodeAt(gR)]=gR;function Og(e){let t=.75*e.length;"="===e[e.length-1]&&(t--,"="===e[e.length-2]&&t--);let a=new Uint8Array(t),r=0;for(let n=0,o=e.length;n<o;n+=4){let t=Lg[e.charCodeAt(n)],o=Lg[e.charCodeAt(n+1)],i=Lg[e.charCodeAt(n+2)],l=Lg[e.charCodeAt(n+3)];a[r++]=t<<2|o>>4,a[r++]=(15&o)<<4|i>>2,a[r++]=(3&i)<<6|63&l}return a}class Rg{findSubtable(e,t){for(let[a,r]of t)for(let t of e.tables)if(t.platformID===a&&t.encodingID===r)return t.table;return null}lookup(e,t){if(this.encoding)e=this.encoding.get(e)||e;else if(t){let a=this.getVariationSelector(e,t);if(a)return a}let a=this.cmap;switch(a.version){case 0:return a.codeMap.get(e)||0;case 4:{let t=0,r=a.segCount-1;for(;t<=r;){let n=t+r>>1;if(e<a.startCode.get(n))r=n-1;else{if(!(e>a.endCode.get(n))){let t,r=a.idRangeOffset.get(n);if(0===r)t=e+a.idDelta.get(n);else{let o=r/2+(e-a.startCode.get(n))-(a.segCount-n);t=a.glyphIndexArray.get(o)||0,0!==t&&(t+=a.idDelta.get(n))}return 65535&t}t=n+1}}return 0}case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return a.glyphIndices.get(e-a.firstCode)||0;case 12:case 13:{let t=0,r=a.nGroups-1;for(;t<=r;){let n=t+r>>1,o=a.groups.get(n);if(e<o.startCharCode)r=n-1;else{if(!(e>o.endCharCode))return 12===a.version?o.glyphID+(e-o.startCharCode):o.glyphID;t=n+1}}return 0}case 14:throw new Error("TODO: cmap format 14");default:throw new Error(`Unknown cmap format ${a.version}`)}}getVariationSelector(e,t){if(!this.uvs)return 0;let a=this.uvs.varSelectors.toArray(),r=Ag(a,e=>t-e.varSelector),n=a[r];return-1!==r&&n.defaultUVS&&(r=Ag(n.defaultUVS,t=>e<t.startUnicodeValue?-1:e>t.startUnicodeValue+t.additionalCount?1:0)),-1!==r&&n.nonDefaultUVS&&(r=Ag(n.nonDefaultUVS,t=>e-t.unicodeValue),-1!==r)?n.nonDefaultUVS[r].glyphID:0}getCharacterSet(){let e=this.cmap;switch(e.version){case 0:return Tg(0,e.codeMap.length);case 4:{let t=[],a=e.endCode.toArray();for(let r=0;r<a.length;r++){let n=a[r]+1,o=e.startCode.get(r);t.push(...Tg(o,n))}return t}case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return Tg(e.firstCode,e.firstCode+e.glyphIndices.length);case 12:case 13:{let t=[];for(let a of e.groups.toArray())t.push(...Tg(a.startCharCode,a.endCharCode+1));return t}case 14:throw new Error("TODO: cmap format 14");default:throw new Error(`Unknown cmap format ${e.version}`)}}codePointsForGlyph(e){let t=this.cmap;switch(t.version){case 0:{let a=[];for(let r=0;r<256;r++)t.codeMap.get(r)===e&&a.push(r);return a}case 4:{let r=[];for(let n=0;n<t.segCount;n++){let o=t.endCode.get(n),i=t.startCode.get(n),l=t.idRangeOffset.get(n),s=t.idDelta.get(n);for(var a=i;a<=o;a++){let o=0;if(0===l)o=a+s;else{let e=l/2+(a-i)-(t.segCount-n);o=t.glyphIndexArray.get(e)||0,0!==o&&(o+=s)}o===e&&r.push(a)}}return r}case 12:{let a=[];for(let r of t.groups.toArray())e>=r.glyphID&&e<=r.glyphID+(r.endCharCode-r.startCharCode)&&a.push(r.startCharCode+(e-r.glyphID));return a}case 13:{let a=[];for(let r of t.groups.toArray())e===r.glyphID&&a.push(...Tg(r.startCharCode,r.endCharCode+1));return a}default:throw new Error(`Unknown cmap format ${t.version}`)}}constructor(e){if(this.encoding=null,this.cmap=this.findSubtable(e,[[3,10],[0,6],[0,4],[3,1],[0,3],[0,2],[0,1],[0,0]]),!this.cmap)for(let t of e.tables){let e=wh(vh(t.platformID,t.encodingID,t.table.language-1));e&&(this.cmap=t.table,this.encoding=e)}if(!this.cmap)throw new Error("Could not find a supported cmap table");this.uvs=this.findSubtable(e,[[0,5]]),this.uvs&&14!==this.uvs.version&&(this.uvs=null)}}dd([th],Rg.prototype,"getCharacterSet",null),dd([th],Rg.prototype,"codePointsForGlyph",null);class Hg{process(e,t){for(let a=0;a<e.length-1;a++){let r=e[a].id,n=e[a+1].id;t[a].xAdvance+=this.getKerning(r,n)}}getKerning(e,t){let a=0;for(let r of this.kern.tables){if(r.coverage.crossStream)continue;switch(r.version){case 0:if(!r.coverage.horizontal)continue;break;case 1:if(r.coverage.vertical||r.coverage.variation)continue;break;default:throw new Error(`Unsupported kerning table version ${r.version}`)}let n=0,o=r.subtable;switch(r.format){case 0:let a=Ag(o.pairs,function(a){return e-a.left||t-a.right});a>=0&&(n=o.pairs[a].value);break;case 2:let i=0,l=0;i=e>=o.leftTable.firstGlyph&&e<o.leftTable.firstGlyph+o.leftTable.nGlyphs?o.leftTable.offsets[e-o.leftTable.firstGlyph]:o.array.off,t>=o.rightTable.firstGlyph&&t<o.rightTable.firstGlyph+o.rightTable.nGlyphs&&(l=o.rightTable.offsets[t-o.rightTable.firstGlyph]);let s=(i+l-o.array.off)/2;n=o.array.values.get(s);break;case 3:if(e>=o.glyphCount||t>=o.glyphCount)return 0;n=o.kernValue[o.kernIndex[o.leftClass[e]*o.rightClassCount+o.rightClass[t]]];break;default:throw new Error(`Unsupported kerning sub-table format ${r.format}`)}r.coverage.override?a=n:a+=n}return a}constructor(e){this.kern=e.kern}}class Ng{positionGlyphs(e,t){let a=0,r=0;for(let n=0;n<e.length;n++){e[n].isMark?r=n:(a!==r&&this.positionCluster(e,t,a,r),a=r=n)}return a!==r&&this.positionCluster(e,t,a,r),t}positionCluster(e,t,a,r){let n=e[a],o=n.cbox.copy();n.codePoints.length>1&&(o.minX+=(n.codePoints.length-1)*o.width/n.codePoints.length);let i=-t[a].xAdvance,l=0,s=this.font.unitsPerEm/16;for(let d=a+1;d<=r;d++){let a=e[d],r=a.cbox,n=t[d],c=this.getCombiningClass(a.codePoints[0]);if("Not_Reordered"!==c){switch(n.xOffset=n.yOffset=0,c){case"Double_Above":case"Double_Below":n.xOffset+=o.minX-r.width/2-r.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":n.xOffset+=o.minX-r.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":n.xOffset+=o.maxX-r.width-r.minX;break;default:n.xOffset+=o.minX+(o.width-r.width)/2-r.minX}switch(c){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":"Attached_Below_Left"!==c&&"Attached_Below"!==c||(o.minY+=s),n.yOffset=-o.minY-r.maxY,o.minY+=r.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":"Attached_Above"!==c&&"Attached_Above_Right"!==c||(o.maxY+=s),n.yOffset=o.maxY-r.minY,o.maxY+=r.height}n.xAdvance=n.yAdvance=0,n.xOffset+=i,n.yOffset+=l}else i-=n.xAdvance,l-=n.yAdvance}}getCombiningClass(e){let t=function(e){const t=Yd.get(e);return Zd(Kd).combiningClasses[t>>nc&lc]}(e);if(3584==(-256&e))if("Not_Reordered"===t)switch(e){case 3633:case 3636:case 3637:case 3638:case 3639:case 3655:case 3660:case 3645:case 3662:return"Above_Right";case 3761:case 3764:case 3765:case 3766:case 3767:case 3771:case 3788:case 3789:return"Above";case 3772:return"Below"}else if(3642===e)return"Below_Right";switch(t){case"CCC10":case"CCC11":case"CCC12":case"CCC13":case"CCC14":case"CCC15":case"CCC16":case"CCC17":case"CCC18":case"CCC20":case"CCC22":case"CCC29":case"CCC32":case"CCC118":case"CCC129":case"CCC132":return"Below";case"CCC23":return"Attached_Above";case"CCC24":case"CCC107":return"Above_Right";case"CCC25":case"CCC19":return"Above_Left";case"CCC26":case"CCC27":case"CCC28":case"CCC30":case"CCC31":case"CCC33":case"CCC34":case"CCC35":case"CCC36":case"CCC122":case"CCC130":return"Above";case"CCC21":break;case"CCC103":return"Below_Right"}return t}constructor(e){this.font=e}}class Dg{get width(){return this.maxX-this.minX}get height(){return this.maxY-this.minY}addPoint(e,t){Math.abs(e)!==1/0&&(e<this.minX&&(this.minX=e),e>this.maxX&&(this.maxX=e)),Math.abs(t)!==1/0&&(t<this.minY&&(this.minY=t),t>this.maxY&&(this.maxY=t))}copy(){return new Dg(this.minX,this.minY,this.maxX,this.maxY)}constructor(e=1/0,t=1/0,a=-1/0,r=-1/0){this.minX=e,this.minY=t,this.maxX=a,this.maxY=r}}const Fg={Caucasian_Albanian:"aghb",Arabic:"arab",Imperial_Aramaic:"armi",Armenian:"armn",Avestan:"avst",Balinese:"bali",Bamum:"bamu",Bassa_Vah:"bass",Batak:"batk",Bengali:["bng2","beng"],Bopomofo:"bopo",Brahmi:"brah",Braille:"brai",Buginese:"bugi",Buhid:"buhd",Chakma:"cakm",Canadian_Aboriginal:"cans",Carian:"cari",Cham:"cham",Cherokee:"cher",Coptic:"copt",Cypriot:"cprt",Cyrillic:"cyrl",Devanagari:["dev2","deva"],Deseret:"dsrt",Duployan:"dupl",Egyptian_Hieroglyphs:"egyp",Elbasan:"elba",Ethiopic:"ethi",Georgian:"geor",Glagolitic:"glag",Gothic:"goth",Grantha:"gran",Greek:"grek",Gujarati:["gjr2","gujr"],Gurmukhi:["gur2","guru"],Hangul:"hang",Han:"hani",Hanunoo:"hano",Hebrew:"hebr",Hiragana:"hira",Pahawh_Hmong:"hmng",Katakana_Or_Hiragana:"hrkt",Old_Italic:"ital",Javanese:"java",Kayah_Li:"kali",Katakana:"kana",Kharoshthi:"khar",Khmer:"khmr",Khojki:"khoj",Kannada:["knd2","knda"],Kaithi:"kthi",Tai_Tham:"lana",Lao:"lao ",Latin:"latn",Lepcha:"lepc",Limbu:"limb",Linear_A:"lina",Linear_B:"linb",Lisu:"lisu",Lycian:"lyci",Lydian:"lydi",Mahajani:"mahj",Mandaic:"mand",Manichaean:"mani",Mende_Kikakui:"mend",Meroitic_Cursive:"merc",Meroitic_Hieroglyphs:"mero",Malayalam:["mlm2","mlym"],Modi:"modi",Mongolian:"mong",Mro:"mroo",Meetei_Mayek:"mtei",Myanmar:["mym2","mymr"],Old_North_Arabian:"narb",Nabataean:"nbat",Nko:"nko ",Ogham:"ogam",Ol_Chiki:"olck",Old_Turkic:"orkh",Oriya:["ory2","orya"],Osmanya:"osma",Palmyrene:"palm",Pau_Cin_Hau:"pauc",Old_Permic:"perm",Phags_Pa:"phag",Inscriptional_Pahlavi:"phli",Psalter_Pahlavi:"phlp",Phoenician:"phnx",Miao:"plrd",Inscriptional_Parthian:"prti",Rejang:"rjng",Runic:"runr",Samaritan:"samr",Old_South_Arabian:"sarb",Saurashtra:"saur",Shavian:"shaw",Sharada:"shrd",Siddham:"sidd",Khudawadi:"sind",Sinhala:"sinh",Sora_Sompeng:"sora",Sundanese:"sund",Syloti_Nagri:"sylo",Syriac:"syrc",Tagbanwa:"tagb",Takri:"takr",Tai_Le:"tale",New_Tai_Lue:"talu",Tamil:["tml2","taml"],Tai_Viet:"tavt",Telugu:["tel2","telu"],Tifinagh:"tfng",Tagalog:"tglg",Thaana:"thaa",Thai:"thai",Tibetan:"tibt",Tirhuta:"tirh",Ugaritic:"ugar",Vai:"vai ",Warang_Citi:"wara",Old_Persian:"xpeo",Cuneiform:"xsux",Yi:"yi ",Inherited:"zinh",Common:"zyyy",Unknown:"zzzz"},Bg={};for(let gR in Fg){let e=Fg[gR];if(Array.isArray(e))for(let t of e)Bg[t]=gR;else Bg[e]=gR}const Vg={arab:!0,hebr:!0,syrc:!0,thaa:!0,cprt:!0,khar:!0,phnx:!0,"nko ":!0,lydi:!0,avst:!0,armi:!0,phli:!0,prti:!0,sarb:!0,orkh:!0,samr:!0,mand:!0,merc:!0,mero:!0,mani:!0,mend:!0,nbat:!0,narb:!0,palm:!0,phlp:!0};function zg(e){return Vg[e]?"rtl":"ltr"}class _g{get advanceWidth(){let e=0;for(let t of this.positions)e+=t.xAdvance;return e}get advanceHeight(){let e=0;for(let t of this.positions)e+=t.yAdvance;return e}get bbox(){let e=new Dg,t=0,a=0;for(let r=0;r<this.glyphs.length;r++){let n=this.glyphs[r],o=this.positions[r],i=n.bbox;e.addPoint(i.minX+t+o.xOffset,i.minY+a+o.yOffset),e.addPoint(i.maxX+t+o.xOffset,i.maxY+a+o.yOffset),t+=o.xAdvance,a+=o.yAdvance}return e}constructor(e,t,a,r,n){if(this.glyphs=e,this.positions=null,this.script=a,this.language=r||null,this.direction=n||zg(a),this.features={},Array.isArray(t))for(let o of t)this.features[o]=!0;else"object"==typeof t&&(this.features=t)}}class Ug{constructor(e=0,t=0,a=0,r=0){this.xAdvance=e,this.yAdvance=t,this.xOffset=a,this.yOffset=r}}const qg={allTypographicFeatures:{code:0,exclusive:!1,allTypeFeatures:0},ligatures:{code:1,exclusive:!1,requiredLigatures:0,commonLigatures:2,rareLigatures:4,rebusPictures:8,diphthongLigatures:10,squaredLigatures:12,abbrevSquaredLigatures:14,symbolLigatures:16,contextualLigatures:18,historicalLigatures:20},cursiveConnection:{code:2,exclusive:!0,unconnected:0,partiallyConnected:1,cursive:2},letterCase:{code:3,exclusive:!0},verticalSubstitution:{code:4,exclusive:!1,substituteVerticalForms:0},linguisticRearrangement:{code:5,exclusive:!1,linguisticRearrangement:0},numberSpacing:{code:6,exclusive:!0,monospacedNumbers:0,proportionalNumbers:1,thirdWidthNumbers:2,quarterWidthNumbers:3},smartSwash:{code:8,exclusive:!1,wordInitialSwashes:0,wordFinalSwashes:2,nonFinalSwashes:8},diacritics:{code:9,exclusive:!0,showDiacritics:0,hideDiacritics:1,decomposeDiacritics:2},verticalPosition:{code:10,exclusive:!0,normalPosition:0,superiors:1,inferiors:2,ordinals:3,scientificInferiors:4},fractions:{code:11,exclusive:!0,noFractions:0,verticalFractions:1,diagonalFractions:2},overlappingCharacters:{code:13,exclusive:!1,preventOverlap:0},typographicExtras:{code:14,exclusive:!1,slashedZero:4},mathematicalExtras:{code:15,exclusive:!1,mathematicalGreek:10},ornamentSets:{code:16,exclusive:!0,noOrnaments:0,dingbats:1,piCharacters:2,fleurons:3,decorativeBorders:4,internationalSymbols:5,mathSymbols:6},characterAlternatives:{code:17,exclusive:!0,noAlternates:0},designComplexity:{code:18,exclusive:!0,designLevel1:0,designLevel2:1,designLevel3:2,designLevel4:3,designLevel5:4},styleOptions:{code:19,exclusive:!0,noStyleOptions:0,displayText:1,engravedText:2,illuminatedCaps:3,titlingCaps:4,tallCaps:5},characterShape:{code:20,exclusive:!0,traditionalCharacters:0,simplifiedCharacters:1,JIS1978Characters:2,JIS1983Characters:3,JIS1990Characters:4,traditionalAltOne:5,traditionalAltTwo:6,traditionalAltThree:7,traditionalAltFour:8,traditionalAltFive:9,expertCharacters:10,JIS2004Characters:11,hojoCharacters:12,NLCCharacters:13,traditionalNamesCharacters:14},numberCase:{code:21,exclusive:!0,lowerCaseNumbers:0,upperCaseNumbers:1},textSpacing:{code:22,exclusive:!0,proportionalText:0,monospacedText:1,halfWidthText:2,thirdWidthText:3,quarterWidthText:4,altProportionalText:5,altHalfWidthText:6},transliteration:{code:23,exclusive:!0,noTransliteration:0},annotation:{code:24,exclusive:!0,noAnnotation:0,boxAnnotation:1,roundedBoxAnnotation:2,circleAnnotation:3,invertedCircleAnnotation:4,parenthesisAnnotation:5,periodAnnotation:6,romanNumeralAnnotation:7,diamondAnnotation:8,invertedBoxAnnotation:9,invertedRoundedBoxAnnotation:10},kanaSpacing:{code:25,exclusive:!0,fullWidthKana:0,proportionalKana:1},ideographicSpacing:{code:26,exclusive:!0,fullWidthIdeographs:0,proportionalIdeographs:1,halfWidthIdeographs:2},unicodeDecomposition:{code:27,exclusive:!1,canonicalComposition:0,compatibilityComposition:2,transcodingComposition:4},rubyKana:{code:28,exclusive:!1,rubyKana:2},CJKSymbolAlternatives:{code:29,exclusive:!0,noCJKSymbolAlternatives:0,CJKSymbolAltOne:1,CJKSymbolAltTwo:2,CJKSymbolAltThree:3,CJKSymbolAltFour:4,CJKSymbolAltFive:5},ideographicAlternatives:{code:30,exclusive:!0,noIdeographicAlternatives:0,ideographicAltOne:1,ideographicAltTwo:2,ideographicAltThree:3,ideographicAltFour:4,ideographicAltFive:5},CJKVerticalRomanPlacement:{code:31,exclusive:!0,CJKVerticalRomanCentered:0,CJKVerticalRomanHBaseline:1},italicCJKRoman:{code:32,exclusive:!1,CJKItalicRoman:2},caseSensitiveLayout:{code:33,exclusive:!1,caseSensitiveLayout:0,caseSensitiveSpacing:2},alternateKana:{code:34,exclusive:!1,alternateHorizKana:0,alternateVertKana:2},stylisticAlternatives:{code:35,exclusive:!1,noStylisticAlternates:0,stylisticAltOne:2,stylisticAltTwo:4,stylisticAltThree:6,stylisticAltFour:8,stylisticAltFive:10,stylisticAltSix:12,stylisticAltSeven:14,stylisticAltEight:16,stylisticAltNine:18,stylisticAltTen:20,stylisticAltEleven:22,stylisticAltTwelve:24,stylisticAltThirteen:26,stylisticAltFourteen:28,stylisticAltFifteen:30,stylisticAltSixteen:32,stylisticAltSeventeen:34,stylisticAltEighteen:36,stylisticAltNineteen:38,stylisticAltTwenty:40},contextualAlternates:{code:36,exclusive:!1,contextualAlternates:0,swashAlternates:2,contextualSwashAlternates:4},lowerCase:{code:37,exclusive:!0,defaultLowerCase:0,lowerCaseSmallCaps:1,lowerCasePetiteCaps:2},upperCase:{code:38,exclusive:!0,defaultUpperCase:0,upperCaseSmallCaps:1,upperCasePetiteCaps:2},languageTag:{code:39,exclusive:!0},CJKRomanSpacing:{code:103,exclusive:!0,halfWidthCJKRoman:0,proportionalCJKRoman:1,defaultCJKRoman:2,fullWidthCJKRoman:3}},Gg=(e,t)=>[qg[e].code,qg[e][t]],Wg={rlig:Gg("ligatures","requiredLigatures"),clig:Gg("ligatures","contextualLigatures"),dlig:Gg("ligatures","rareLigatures"),hlig:Gg("ligatures","historicalLigatures"),liga:Gg("ligatures","commonLigatures"),hist:Gg("ligatures","historicalLigatures"),smcp:Gg("lowerCase","lowerCaseSmallCaps"),pcap:Gg("lowerCase","lowerCasePetiteCaps"),frac:Gg("fractions","diagonalFractions"),dnom:Gg("fractions","diagonalFractions"),numr:Gg("fractions","diagonalFractions"),afrc:Gg("fractions","verticalFractions"),case:Gg("caseSensitiveLayout","caseSensitiveLayout"),ccmp:Gg("unicodeDecomposition","canonicalComposition"),cpct:Gg("CJKVerticalRomanPlacement","CJKVerticalRomanCentered"),valt:Gg("CJKVerticalRomanPlacement","CJKVerticalRomanCentered"),swsh:Gg("contextualAlternates","swashAlternates"),cswh:Gg("contextualAlternates","contextualSwashAlternates"),curs:Gg("cursiveConnection","cursive"),c2pc:Gg("upperCase","upperCasePetiteCaps"),c2sc:Gg("upperCase","upperCaseSmallCaps"),init:Gg("smartSwash","wordInitialSwashes"),fin2:Gg("smartSwash","wordFinalSwashes"),medi:Gg("smartSwash","nonFinalSwashes"),med2:Gg("smartSwash","nonFinalSwashes"),fin3:Gg("smartSwash","wordFinalSwashes"),fina:Gg("smartSwash","wordFinalSwashes"),pkna:Gg("kanaSpacing","proportionalKana"),half:Gg("textSpacing","halfWidthText"),halt:Gg("textSpacing","altHalfWidthText"),hkna:Gg("alternateKana","alternateHorizKana"),vkna:Gg("alternateKana","alternateVertKana"),ital:Gg("italicCJKRoman","CJKItalicRoman"),lnum:Gg("numberCase","upperCaseNumbers"),onum:Gg("numberCase","lowerCaseNumbers"),mgrk:Gg("mathematicalExtras","mathematicalGreek"),calt:Gg("contextualAlternates","contextualAlternates"),vrt2:Gg("verticalSubstitution","substituteVerticalForms"),vert:Gg("verticalSubstitution","substituteVerticalForms"),tnum:Gg("numberSpacing","monospacedNumbers"),pnum:Gg("numberSpacing","proportionalNumbers"),sups:Gg("verticalPosition","superiors"),subs:Gg("verticalPosition","inferiors"),ordn:Gg("verticalPosition","ordinals"),pwid:Gg("textSpacing","proportionalText"),hwid:Gg("textSpacing","halfWidthText"),qwid:Gg("textSpacing","quarterWidthText"),twid:Gg("textSpacing","thirdWidthText"),fwid:Gg("textSpacing","proportionalText"),palt:Gg("textSpacing","altProportionalText"),trad:Gg("characterShape","traditionalCharacters"),smpl:Gg("characterShape","simplifiedCharacters"),jp78:Gg("characterShape","JIS1978Characters"),jp83:Gg("characterShape","JIS1983Characters"),jp90:Gg("characterShape","JIS1990Characters"),jp04:Gg("characterShape","JIS2004Characters"),expt:Gg("characterShape","expertCharacters"),hojo:Gg("characterShape","hojoCharacters"),nlck:Gg("characterShape","NLCCharacters"),tnam:Gg("characterShape","traditionalNamesCharacters"),ruby:Gg("rubyKana","rubyKana"),titl:Gg("styleOptions","titlingCaps"),zero:Gg("typographicExtras","slashedZero"),ss01:Gg("stylisticAlternatives","stylisticAltOne"),ss02:Gg("stylisticAlternatives","stylisticAltTwo"),ss03:Gg("stylisticAlternatives","stylisticAltThree"),ss04:Gg("stylisticAlternatives","stylisticAltFour"),ss05:Gg("stylisticAlternatives","stylisticAltFive"),ss06:Gg("stylisticAlternatives","stylisticAltSix"),ss07:Gg("stylisticAlternatives","stylisticAltSeven"),ss08:Gg("stylisticAlternatives","stylisticAltEight"),ss09:Gg("stylisticAlternatives","stylisticAltNine"),ss10:Gg("stylisticAlternatives","stylisticAltTen"),ss11:Gg("stylisticAlternatives","stylisticAltEleven"),ss12:Gg("stylisticAlternatives","stylisticAltTwelve"),ss13:Gg("stylisticAlternatives","stylisticAltThirteen"),ss14:Gg("stylisticAlternatives","stylisticAltFourteen"),ss15:Gg("stylisticAlternatives","stylisticAltFifteen"),ss16:Gg("stylisticAlternatives","stylisticAltSixteen"),ss17:Gg("stylisticAlternatives","stylisticAltSeventeen"),ss18:Gg("stylisticAlternatives","stylisticAltEighteen"),ss19:Gg("stylisticAlternatives","stylisticAltNineteen"),ss20:Gg("stylisticAlternatives","stylisticAltTwenty")};for(let gR=1;gR<=99;gR++)Wg[`cv${`00${gR}`.slice(-2)}`]=[qg.characterAlternatives.code,gR];let jg={};for(let gR in Wg){let e=Wg[gR];null==jg[e[0]]&&(jg[e[0]]={}),jg[e[0]][e[1]]=gR}function Xg(e){let[t,a]=e;if(isNaN(t))var r=qg[t]&&qg[t].code;else r=t;if(isNaN(a))var n=qg[t]&&qg[t][a];else n=a;return[r,n]}class Zg{lookup(e){switch(this.table.version){case 0:return this.table.values.getItem(e);case 2:case 4:{let r=0,n=this.table.binarySearchHeader.nUnits-1;for(;r<=n;){var t=r+n>>1;if(65535===(a=this.table.segments[t]).firstGlyph)return null;if(e<a.firstGlyph)n=t-1;else{if(!(e>a.lastGlyph))return 2===this.table.version?a.value:a.values[e-a.firstGlyph];r=t+1}}return null}case 6:{let r=0,n=this.table.binarySearchHeader.nUnits-1;for(;r<=n;){var a;t=r+n>>1;if(65535===(a=this.table.segments[t]).glyph)return null;if(e<a.glyph)n=t-1;else{if(!(e>a.glyph))return a.value;r=t+1}}return null}case 8:return this.table.values[e-this.table.firstGlyph];default:throw new Error(`Unknown lookup table format: ${this.table.version}`)}}glyphsForValue(e){let t=[];switch(this.table.version){case 2:case 4:for(let a of this.table.segments)if(2===this.table.version&&a.value===e)t.push(...Tg(a.firstGlyph,a.lastGlyph+1));else for(let r=0;r<a.values.length;r++)a.values[r]===e&&t.push(a.firstGlyph+r);break;case 6:for(let a of this.table.segments)a.value===e&&t.push(a.glyph);break;case 8:for(let a=0;a<this.table.values.length;a++)this.table.values[a]===e&&t.push(this.table.firstGlyph+a);break;default:throw new Error(`Unknown lookup table format: ${this.table.version}`)}return t}constructor(e){this.table=e}}dd([th],Zg.prototype,"glyphsForValue",null);class Kg{process(e,t,a){let r=0,n=t?e.length-1:0,o=t?-1:1;for(;1===o&&n<=e.length||-1===o&&n>=-1;){let t=null,i=1,l=!0;n===e.length||-1===n?i=0:(t=e[n],65535===t.id?i=2:(i=this.lookupTable.lookup(t.id),null==i&&(i=1)));let s=this.stateTable.stateArray.getItem(r)[i],d=this.stateTable.entryTable.getItem(s);0!==i&&2!==i&&(a(t,d,n),l=!(16384&d.flags)),r=d.newState,l&&(n+=o)}return e}traverse(e,t=0,a=new Set){if(a.has(t))return;a.add(t);let{nClasses:r,stateArray:n,entryTable:o}=this.stateTable,i=n.getItem(t);for(let l=4;l<r;l++){let t=i[l],r=o.getItem(t);for(let n of this.lookupTable.glyphsForValue(l))e.enter&&e.enter(n,r),0!==r.newState&&this.traverse(e,r.newState,a),e.exit&&e.exit(n,r)}}constructor(e){this.stateTable=e,this.lookupTable=new Zg(e.classTable)}}const Yg=4194304;class Jg{process(e,t={}){for(let r of this.morx.chains){let a=r.defaultFlags;for(let e of r.features){let r;(r=t[e.featureType])&&(r[e.featureSetting]?(a&=e.disableFlags,a|=e.enableFlags):!1===r[e.featureSetting]&&(a|=~e.disableFlags,a&=~e.enableFlags))}for(let t of r.subtables)t.subFeatureFlags&a&&this.processSubtable(t,e)}let a=e.length-1;for(;a>=0;)65535===e[a].id&&e.splice(a,1),a--;return e}processSubtable(e,t){if(this.subtable=e,this.glyphs=t,4===this.subtable.type)return void this.processNoncontextualSubstitutions(this.subtable,this.glyphs);this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;let a=this.getStateMachine(e),r=this.getProcessor(),n=!!(this.subtable.coverage&Yg);return a.process(this.glyphs,n,r)}getStateMachine(e){return new Kg(e.table.stateTable)}getProcessor(){switch(this.subtable.type){case 0:return this.processIndicRearragement;case 1:return this.processContextualSubstitution;case 2:return this.processLigature;case 4:return this.processNoncontextualSubstitutions;case 5:return this.processGlyphInsertion;default:throw new Error(`Invalid morx subtable type: ${this.subtable.type}`)}}processIndicRearragement(e,t,a){32768&t.flags&&(this.firstGlyph=a),8192&t.flags&&(this.lastGlyph=a),function(e,t,a,r){switch(t){case 0:return e;case 1:return Qg(e,[a,1],[r,0]);case 2:return Qg(e,[a,0],[r,1]);case 3:return Qg(e,[a,1],[r,1]);case 4:return Qg(e,[a,2],[r,0]);case 5:return Qg(e,[a,2],[r,0],!0,!1);case 6:return Qg(e,[a,0],[r,2]);case 7:return Qg(e,[a,0],[r,2],!1,!0);case 8:return Qg(e,[a,1],[r,2]);case 9:return Qg(e,[a,1],[r,2],!1,!0);case 10:return Qg(e,[a,2],[r,1]);case 11:return Qg(e,[a,2],[r,1],!0,!1);case 12:return Qg(e,[a,2],[r,2]);case 13:return Qg(e,[a,2],[r,2],!0,!1);case 14:return Qg(e,[a,2],[r,2],!1,!0);case 15:return Qg(e,[a,2],[r,2],!0,!0);default:throw new Error(`Unknown verb: ${t}`)}}(this.glyphs,15&t.flags,this.firstGlyph,this.lastGlyph)}processContextualSubstitution(e,t,a){let r=this.subtable.table.substitutionTable.items;if(65535!==t.markIndex){let a=r.getItem(t.markIndex),o=new Zg(a);e=this.glyphs[this.markedGlyph],(n=o.lookup(e.id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(n,e.codePoints))}if(65535!==t.currentIndex){let o=r.getItem(t.currentIndex),i=new Zg(o);var n;e=this.glyphs[a],(n=i.lookup(e.id))&&(this.glyphs[a]=this.font.getGlyph(n,e.codePoints))}32768&t.flags&&(this.markedGlyph=a)}processLigature(e,t,a){if(32768&t.flags&&this.ligatureStack.push(a),8192&t.flags){let e=this.subtable.table.ligatureActions,a=this.subtable.table.components,r=this.subtable.table.ligatureList,n=t.action,o=!1,i=0,l=[],s=[];for(;!o;){let t=this.ligatureStack.pop();l.unshift(...this.glyphs[t].codePoints);let d=e.getItem(n++);o=!!(2147483648&d);let c=!!(1073741824&d),h=(1073741823&d)<<2>>2;if(h+=this.glyphs[t].id,i+=a.getItem(h),o||c){let e=r.getItem(i);this.glyphs[t]=this.font.getGlyph(e,l),s.push(t),i=0,l=[]}else this.glyphs[t]=this.font.getGlyph(65535)}this.ligatureStack.push(...s)}}processNoncontextualSubstitutions(e,t,a){let r=new Zg(e.table.lookupTable);for(a=0;a<t.length;a++){let e=t[a];if(65535!==e.id){let n=r.lookup(e.id);n&&(t[a]=this.font.getGlyph(n,e.codePoints))}}}_insertGlyphs(e,t,a,r){let n=[];for(;a--;){let e=this.subtable.table.insertionActions.getItem(t++);n.push(this.font.getGlyph(e))}r||e++,this.glyphs.splice(e,0,...n)}processGlyphInsertion(e,t,a){if(32768&t.flags&&(this.markedIndex=a),65535!==t.markedInsertIndex){let e=(31&t.flags)>>>5,a=!!(1024&t.flags);this._insertGlyphs(this.markedIndex,t.markedInsertIndex,e,a)}if(65535!==t.currentInsertIndex){let e=(992&t.flags)>>>5,r=!!(2048&t.flags);this._insertGlyphs(a,t.currentInsertIndex,e,r)}}getSupportedFeatures(){let e=[];for(let t of this.morx.chains)for(let a of t.features)e.push([a.featureType,a.featureSetting]);return e}generateInputs(e){return this.inputCache||this.generateInputCache(),this.inputCache[e]||[]}generateInputCache(){this.inputCache={};for(let e of this.morx.chains){let t=e.defaultFlags;for(let a of e.subtables)a.subFeatureFlags&t&&this.generateInputsForSubtable(a)}}generateInputsForSubtable(e){if(2!==e.type)return;if(!!(e.coverage&Yg))throw new Error("Reverse subtable, not supported.");this.subtable=e,this.ligatureStack=[];let t=this.getStateMachine(e),a=this.getProcessor(),r=[],n=[];this.glyphs=[],t.traverse({enter:(e,t)=>{let o=this.glyphs;n.push({glyphs:o.slice(),ligatureStack:this.ligatureStack.slice()});let i=this.font.getGlyph(e);r.push(i),o.push(r[r.length-1]),a(o[o.length-1],t,o.length-1);let l=0,s=0;for(let a=0;a<o.length&&l<=1;a++)65535!==o[a].id&&(l++,s=o[a].id);if(1===l){let e=r.map(e=>e.id),t=this.inputCache[s];t?t.push(e):this.inputCache[s]=[e]}},exit:()=>{({glyphs:this.glyphs,ligatureStack:this.ligatureStack}=n.pop()),r.pop()}})}constructor(e){this.processIndicRearragement=this.processIndicRearragement.bind(this),this.processContextualSubstitution=this.processContextualSubstitution.bind(this),this.processLigature=this.processLigature.bind(this),this.processNoncontextualSubstitutions=this.processNoncontextualSubstitutions.bind(this),this.processGlyphInsertion=this.processGlyphInsertion.bind(this),this.font=e,this.morx=e.morx,this.inputCache=null}}function Qg(e,t,a,r=!1,n=!1){let o=e.splice(a[0]-(a[1]-1),a[1]);n&&o.reverse();let i=e.splice(t[0],t[1],...o);return r&&i.reverse(),e.splice(a[0]-(t[1]-1),0,...i),e}dd([th],Jg.prototype,"getStateMachine",null);class $g{substitute(e){"rtl"===e.direction&&e.glyphs.reverse(),this.morxProcessor.process(e.glyphs,function(e){let t={};for(let a in e){let r;(r=Wg[a])&&(null==t[r[0]]&&(t[r[0]]={}),t[r[0]][r[1]]=e[a])}return t}(e.features))}getAvailableFeatures(e,t){return function(e){let t={};if(Array.isArray(e))for(let a=0;a<e.length;a++){let r,n=Xg(e[a]);(r=jg[n[0]]&&jg[n[0]][n[1]])&&(t[r]=!0)}else if("object"==typeof e)for(let a in e){let r=e[a];for(let e in r){let n,o=Xg([a,e]);r[e]&&(n=jg[o[0]]&&jg[o[0]][o[1]])&&(t[n]=!0)}}return Object.keys(t)}(this.morxProcessor.getSupportedFeatures())}stringsForGlyph(e){let t=this.morxProcessor.generateInputs(e),a=new Set;for(let r of t)this._addStrings(r,0,a,"");return a}_addStrings(e,t,a,r){let n=this.font._cmapProcessor.codePointsForGlyph(e[t]);for(let o of n){let n=r+String.fromCodePoint(o);t<e.length-1?this._addStrings(e,t+1,a,n):a.add(n)}}constructor(e){this.font=e,this.morxProcessor=new Jg(e),this.fallbackPosition=!1}}class em{_addFeatures(e,t){let a=this.stages.length-1,r=this.stages[a];for(let n of e)null==this.allFeatures[n]&&(r.push(n),this.allFeatures[n]=a,t&&(this.globalFeatures[n]=!0))}add(e,t=!0){if(0===this.stages.length&&this.stages.push([]),"string"==typeof e&&(e=[e]),Array.isArray(e))this._addFeatures(e,t);else{if("object"!=typeof e)throw new Error("Unsupported argument to ShapingPlan#add");this._addFeatures(e.global||[],!0),this._addFeatures(e.local||[],!1)}}addStage(e,t){"function"==typeof e?this.stages.push(e,[]):(this.stages.push([]),this.add(e,t))}setFeatureOverrides(e){if(Array.isArray(e))this.add(e);else if("object"==typeof e)for(let t in e)if(e[t])this.add(t);else if(null!=this.allFeatures[t]){let e=this.stages[this.allFeatures[t]];e.splice(e.indexOf(t),1),delete this.allFeatures[t],delete this.globalFeatures[t]}}assignGlobalFeatures(e){for(let t of e)for(let e in this.globalFeatures)t.features[e]=!0}process(e,t,a){for(let r of this.stages)"function"==typeof r?a||r(this.font,t,this):r.length>0&&e.applyFeatures(r,t,a)}constructor(e,t,a){this.font=e,this.script=t,this.direction=a,this.stages=[],this.globalFeatures={},this.allFeatures={}}}const tm=["rvrn"],am=["ccmp","locl","rlig","mark","mkmk"],rm=["frac","numr","dnom"],nm=["calt","clig","liga","rclt","curs","kern"],om={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]};class im{static plan(e,t,a){this.planPreprocessing(e),this.planFeatures(e),this.planPostprocessing(e,a),e.assignGlobalFeatures(t),this.assignFeatures(e,t)}static planPreprocessing(e){e.add({global:[...tm,...om[e.direction]],local:rm})}static planFeatures(e){}static planPostprocessing(e,t){e.add([...am,...nm]),e.setFeatureOverrides(t)}static assignFeatures(e,t){for(let a=0;a<t.length;a++){let e=t[a];if(8260===e.codePoints[0]){let r=a,n=a+1;for(;r>0&&hc(t[r-1].codePoints[0]);)t[r-1].features.numr=!0,t[r-1].features.frac=!0,r--;for(;n<t.length&&hc(t[n].codePoints[0]);)t[n].features.dnom=!0,t[n].features.frac=!0,n++;e.features.frac=!0,a=n-1}}}}sd(im,"zeroMarkWidths","AFTER_GPOS");const lm=new Xd(Og("APABAAAAAAAAOAAAAf0BAv7tmi1MxDAUx7vtvjhAgcDgkEgEAnmXEBIMCYaEcygEiqBQ4FAkCE4ikUgMiiBJSAgSiUQSDMn9L9eSl6bddddug9t7yS/trevre+3r27pcNxZiG+yCfdCVv/9LeQxOwRm4AJegD27ALbgD9+ABPJF+z+BN/h7yDj5k/VOWX6SdmU5+wLWknggxDxaS8u0qiiX4uiz9XamQ3wzDMAzDMAzDMAzDVI/h959V/v7BMAzDMAzDMLlyNTNiMSdewVxbiA44B4/guz1qW58VYlMI0WsJ0W+N6kXw0spvPtdwhtkwnGM6uLaV4Xyzg3v3PM9DPfQ/sOg4xPWjipy31P8LTqbU304c/cLCUmWJLNB2Uz2U1KTeRKNmKHVMfbJC+/0loTZRH/W5cvEvBJPMbREkWt3FD1NcqXZBSpuE2Ad0PBehPtNrPtIEdYP+hiRt/V1jIiE69X4NT/uVZI3PUHE9bm5M7ePGdZWy951v7Nn6j8v1WWKP3mt6ttnsigx6VN7Vc0VomSSGqW2mGNP1muZPl7LfjNUaKNFtDGVf2fvE9O7VlBS5j333c5p/eeoOqcs1R/hIqDWLJ7TTlksirVT1SI7l8k4Yp+g3jafGcrU1RM6l9th80XOpnlN97bDNY4i4s61B0Si/ipa0uHMl6zqEjlFfCZm/TM8KmzQDjmuTAQ==")),sm=["isol","fina","fin2","fin3","medi","med2","init"],dm=0,cm=6,hm="isol",pm="fina",um="fin2",fm="medi",gm="med2",mm="init",vm=null,ym=[[[vm,vm,0],[vm,hm,2],[vm,hm,1],[vm,hm,2],[vm,hm,1],[vm,hm,6]],[[vm,vm,0],[vm,hm,2],[vm,hm,1],[vm,hm,2],[vm,um,5],[vm,hm,6]],[[vm,vm,0],[vm,hm,2],[mm,pm,1],[mm,pm,3],[mm,pm,4],[mm,pm,6]],[[vm,vm,0],[vm,hm,2],[fm,pm,1],[fm,pm,3],[fm,pm,4],[fm,pm,6]],[[vm,vm,0],[vm,hm,2],[gm,hm,1],[gm,hm,2],[gm,um,5],[gm,hm,6]],[[vm,vm,0],[vm,hm,2],[hm,hm,1],[hm,hm,2],[hm,um,5],[hm,hm,6]],[[vm,vm,0],[vm,hm,2],[vm,hm,1],[vm,hm,2],[vm,"fin3",5],[vm,hm,6]]];class bm extends im{static planFeatures(e){e.add(["ccmp","locl"]);for(let t=0;t<sm.length;t++){let a=sm[t];e.addStage(a,!1)}e.addStage("mset")}static assignFeatures(e,t){super.assignFeatures(e,t);let a=-1,r=0,n=[];for(let i=0;i<t.length;i++){let e,l;let s=Mm((o=t[i]).codePoints[0]);s!==cm?([l,e,r]=ym[r][s],l!==vm&&-1!==a&&(n[a]=l),n[i]=e,a=i):n[i]=vm}for(let i=0;i<t.length;i++){let e;var o=t[i];(e=n[i])&&(o.features[e]=!0)}}}function Mm(e){let t=lm.get(e);if(t)return t-1;let a=dc(e);return"Mn"===a||"Me"===a||"Cf"===a?cm:dm}class wm{reset(e={},t=0){this.options=e,this.flags=e.flags||{},this.markAttachmentType=e.markAttachmentType||0,this.index=t}get cur(){return this.glyphs[this.index]||null}shouldIgnore(e){return this.flags.ignoreMarks&&e.isMark||this.flags.ignoreBaseGlyphs&&e.isBase||this.flags.ignoreLigatures&&e.isLigature||this.markAttachmentType&&e.isMark&&e.markAttachmentType!==this.markAttachmentType}move(e){for(this.index+=e;0<=this.index&&this.index<this.glyphs.length&&this.shouldIgnore(this.glyphs[this.index]);)this.index+=e;return 0>this.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]}next(){return this.move(1)}prev(){return this.move(-1)}peek(e=1){let t=this.index,a=this.increment(e);return this.index=t,a}peekIndex(e=1){let t=this.index;this.increment(e);let a=this.index;return this.index=t,a}increment(e=1){let t=e<0?-1:1;for(e=Math.abs(e);e--;)this.move(t);return this.glyphs[this.index]}constructor(e,t){this.glyphs=e,this.reset(t)}}const xm=["DFLT","dflt","latn"];class Cm{findScript(e){if(null==this.table.scriptList)return null;Array.isArray(e)||(e=[e]);for(let t of e)for(let e of this.table.scriptList)if(e.tag===t)return e;return null}selectScript(e,t,a){let r,n=!1;if(!this.script||e!==this.scriptTag){if(r=this.findScript(e),r||(r=this.findScript(xm)),!r)return this.scriptTag;this.scriptTag=r.tag,this.script=r.script,this.language=null,this.languageTag=null,n=!0}if(a&&a===this.direction||(this.direction=a||zg(e)),t&&t.length<4&&(t+=" ".repeat(4-t.length)),!t||t!==this.languageTag){this.language=null;for(let e of this.script.langSysRecords)if(e.tag===t){this.language=e.langSys,this.languageTag=e.tag;break}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),n=!0}if(n&&(this.features={},this.language))for(let o of this.language.featureIndexes){let e=this.table.featureList[o],t=this.substituteFeatureForVariations(o);this.features[e.tag]=t||e.feature}return this.scriptTag}lookupsForFeatures(e=[],t){let a=[];for(let r of e){let e=this.features[r];if(e)for(let n of e.lookupListIndexes)t&&-1!==t.indexOf(n)||a.push({feature:r,index:n,lookup:this.table.lookupList.get(n)})}return a.sort((e,t)=>e.index-t.index),a}substituteFeatureForVariations(e){if(-1===this.variationsIndex)return null;let t=this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions;for(let a of t)if(a.featureIndex===e)return a.alternateFeatureTable;return null}findVariationsIndex(e){let t=this.table.featureVariations;if(!t)return-1;let a=t.featureVariationRecords;for(let r=0;r<a.length;r++){let t=a[r].conditionSet.conditionTable;if(this.variationConditionsMatch(t,e))return r}return-1}variationConditionsMatch(e,t){return e.every(e=>{let a=e.axisIndex<t.length?t[e.axisIndex]:0;return e.filterRangeMinValue<=a&&a<=e.filterRangeMaxValue})}applyFeatures(e,t,a){let r=this.lookupsForFeatures(e);this.applyLookups(r,t,a)}applyLookups(e,t,a){this.glyphs=t,this.positions=a,this.glyphIterator=new wm(t);for(let{feature:r,lookup:n}of e)for(this.currentFeature=r,this.glyphIterator.reset(n.flags);this.glyphIterator.index<t.length;)if(r in this.glyphIterator.cur.features){for(let e of n.subTables){if(this.applyLookup(n.lookupType,e))break}this.glyphIterator.next()}else this.glyphIterator.next()}applyLookup(e,t){throw new Error("applyLookup must be implemented by subclasses")}applyLookupList(e){let t=this.glyphIterator.options,a=this.glyphIterator.index;for(let r of e){this.glyphIterator.reset(t,a),this.glyphIterator.increment(r.sequenceIndex);let e=this.table.lookupList.get(r.lookupListIndex);this.glyphIterator.reset(e.flags,this.glyphIterator.index);for(let t of e.subTables)if(this.applyLookup(e.lookupType,t))break}return this.glyphIterator.reset(t,a),!0}coverageIndex(e,t){switch(null==t&&(t=this.glyphIterator.cur.id),e.version){case 1:return e.glyphs.indexOf(t);case 2:for(let a of e.rangeRecords)if(a.start<=t&&t<=a.end)return a.startCoverageIndex+t-a.start}return-1}match(e,t,a,r){let n=this.glyphIterator.index,o=this.glyphIterator.increment(e),i=0;for(;i<t.length&&o&&a(t[i],o);)r&&r.push(this.glyphIterator.index),i++,o=this.glyphIterator.next();return this.glyphIterator.index=n,!(i<t.length)&&(r||!0)}sequenceMatches(e,t){return this.match(e,t,(e,t)=>e===t.id)}sequenceMatchIndices(e,t){return this.match(e,t,(e,t)=>this.currentFeature in t.features&&e===t.id,[])}coverageSequenceMatches(e,t){return this.match(e,t,(e,t)=>this.coverageIndex(e,t.id)>=0)}getClassID(e,t){switch(t.version){case 1:let a=e-t.startGlyph;if(a>=0&&a<t.classValueArray.length)return t.classValueArray[a];break;case 2:for(let r of t.classRangeRecord)if(r.start<=e&&e<=r.end)return r.class}return 0}classSequenceMatches(e,t,a){return this.match(e,t,(e,t)=>e===this.getClassID(t.id,a))}applyContext(e){let t,a;switch(e.version){case 1:if(t=this.coverageIndex(e.coverage),-1===t)return!1;a=e.ruleSets[t];for(let e of a)if(this.sequenceMatches(1,e.input))return this.applyLookupList(e.lookupRecords);break;case 2:if(-1===this.coverageIndex(e.coverage))return!1;if(t=this.getClassID(this.glyphIterator.cur.id,e.classDef),-1===t)return!1;a=e.classSet[t];for(let t of a)if(this.classSequenceMatches(1,t.classes,e.classDef))return this.applyLookupList(t.lookupRecords);break;case 3:if(this.coverageSequenceMatches(0,e.coverages))return this.applyLookupList(e.lookupRecords)}return!1}applyChainingContext(e){let t;switch(e.version){case 1:if(t=this.coverageIndex(e.coverage),-1===t)return!1;let a=e.chainRuleSets[t];for(let e of a)if(this.sequenceMatches(-e.backtrack.length,e.backtrack)&&this.sequenceMatches(1,e.input)&&this.sequenceMatches(1+e.input.length,e.lookahead))return this.applyLookupList(e.lookupRecords);break;case 2:if(-1===this.coverageIndex(e.coverage))return!1;t=this.getClassID(this.glyphIterator.cur.id,e.inputClassDef);let r=e.chainClassSet[t];if(!r)return!1;for(let t of r)if(this.classSequenceMatches(-t.backtrack.length,t.backtrack,e.backtrackClassDef)&&this.classSequenceMatches(1,t.input,e.inputClassDef)&&this.classSequenceMatches(1+t.input.length,t.lookahead,e.lookaheadClassDef))return this.applyLookupList(t.lookupRecords);break;case 3:if(this.coverageSequenceMatches(-e.backtrackGlyphCount,e.backtrackCoverage)&&this.coverageSequenceMatches(0,e.inputCoverage)&&this.coverageSequenceMatches(e.inputGlyphCount,e.lookaheadCoverage))return this.applyLookupList(e.lookupRecords)}return!1}constructor(e,t){this.font=e,this.table=t,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=e._variationProcessor?this.findVariationsIndex(e._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}}class Sm{get id(){return this._id}set id(e){this._id=e,this.substituted=!0;let t=this._font.GDEF;if(t&&t.glyphClassDef){let a=Cm.prototype.getClassID(e,t.glyphClassDef);this.isBase=1===a,this.isLigature=2===a,this.isMark=3===a,this.markAttachmentType=t.markAttachClassDef?Cm.prototype.getClassID(e,t.markAttachClassDef):0}else this.isMark=this.codePoints.length>0&&this.codePoints.every(pc),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}copy(){return new Sm(this._font,this.id,this.codePoints,this.features)}constructor(e,t,a=[],r){if(this._font=e,this.codePoints=a,this.id=t,this.features={},Array.isArray(r))for(let n=0;n<r.length;n++){let e=r[n];this.features[e]=!0}else"object"==typeof r&&Object.assign(this.features,r);this.ligatureID=null,this.ligatureComponent=null,this.isLigated=!1,this.cursiveAttachment=null,this.markAttachment=null,this.shaperInfo=null,this.substituted=!1,this.isMultiplied=!1}}class Im extends im{static planFeatures(e){e.add(["ljmo","vjmo","tjmo"],!1)}static assignFeatures(e,t){let a=0,r=0;for(;r<t.length;){let n,o=t[r].codePoints[0],i=$m(o);switch([n,a]=nv[a][i],n){case ev:e.font.hasGlyphForCodePoint(o)||(r=iv(t,r,e.font));break;case tv:r=lv(t,r,e.font);break;case av:sv(t,r,e.font);break;case rv:r=dv(t,r,e.font)}r++}}}sd(Im,"zeroMarkWidths","NONE");const km=44032,Am=55204-km+1,Tm=4352,Pm=4449,Em=4519,Lm=21,Om=28,Rm=Tm+19-1,Hm=Pm+Lm-1,Nm=Em+Om-1,Dm=9676,Fm=e=>4352<=e&&e<=4447||43360<=e&&e<=43388,Bm=e=>4448<=e&&e<=4519||55216<=e&&e<=55238,Vm=e=>4520<=e&&e<=4607||55243<=e&&e<=55291,zm=e=>12334<=e&&e<=12335,_m=e=>km<=e&&e<=55204,Um=e=>e-km<Am&&(e-km)%Om===0,qm=e=>Tm<=e&&e<=Rm,Gm=e=>Pm<=e&&e<=Hm,Wm=e=>1<=e&&e<=Nm,jm=0,Xm=1,Zm=2,Km=3,Ym=4,Jm=5,Qm=6;function $m(e){return Fm(e)?Xm:Bm(e)?Zm:Vm(e)?Km:Um(e)?Ym:_m(e)?Jm:zm(e)?Qm:jm}const ev=1,tv=2,av=4,rv=5,nv=[[[0,0],[0,1],[0,0],[0,0],[ev,2],[ev,3],[rv,0]],[[0,0],[0,1],[tv,2],[0,0],[ev,2],[ev,3],[rv,0]],[[0,0],[0,1],[0,0],[tv,3],[ev,2],[ev,3],[av,0]],[[0,0],[0,1],[0,0],[0,0],[ev,2],[ev,3],[av,0]]];function ov(e,t,a){return new Sm(e,e.glyphForCodePoint(t).id,[t],a)}function iv(e,t,a){let r=e[t],n=r.codePoints[0]-km,o=Em+n%Om;n=n/Om|0;let i=Tm+n/Lm|0,l=Pm+n%Lm;if(!a.hasGlyphForCodePoint(i)||!a.hasGlyphForCodePoint(l)||o!==Em&&!a.hasGlyphForCodePoint(o))return t;let s=ov(a,i,r.features);s.features.ljmo=!0;let d=ov(a,l,r.features);d.features.vjmo=!0;let c=[s,d];if(o>Em){let e=ov(a,o,r.features);e.features.tjmo=!0,c.push(e)}return e.splice(t,1,...c),t+c.length-1}function lv(e,t,a){let r,n,o,i,l=e[t],s=$m(e[t].codePoints[0]),d=e[t-1].codePoints[0],c=$m(d);if(c===Ym&&s===Km)r=d,i=l;else{s===Zm?(n=e[t-1],o=l):(n=e[t-2],o=e[t-1],i=l);let a=n.codePoints[0],d=o.codePoints[0];qm(a)&&Gm(d)&&(r=km+((a-Tm)*Lm+(d-Pm))*Om)}let h=i&&i.codePoints[0]||Em;if(null!=r&&(h===Em||Wm(h))){let n=r+(h-Em);if(a.hasGlyphForCodePoint(n)){let r=c===Zm?3:2;return e.splice(t-r+1,r,ov(a,n,l.features)),t-r+1}}return n&&(n.features.ljmo=!0),o&&(o.features.vjmo=!0),i&&(i.features.tjmo=!0),c===Ym?(iv(e,t-1,a),t+1):t}function sv(e,t,a){let r=e[t],n=e[t].codePoints[0];if(0===a.glyphForCodePoint(n).advanceWidth)return;let o=function(e){switch($m(e)){case Ym:case Jm:return 1;case Zm:return 2;case Km:return 3}}(e[t-1].codePoints[0]);return e.splice(t,1),e.splice(t-o,0,r)}function dv(e,t,a){let r=e[t],n=e[t].codePoints[0];if(a.hasGlyphForCodePoint(Dm)){let o=ov(a,Dm,r.features),i=0===a.glyphForCodePoint(n).advanceWidth?t:t+1;e.splice(i,0,o),t++}return t}var cv;cv=JSON.parse('{"stateTable":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,14,15,16,17],[0,0,0,18,19,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,28,29,30,31,32,33,0,34,0,0,35,36,0,0,37,0],[0,0,0,38,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,39,0,0,0,40,41,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,12,43,0,0,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,0,43,0,0,0,0],[0,0,0,45,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,50,0,0,51,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0],[0,0,0,53,54,55,56,57,58,0,59,0,0,60,61,0,0,62,0],[0,0,0,4,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,63,64,0,0,40,41,0,9,0,10,0,0,0,42,0,63,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,0,2,16,0],[0,0,0,18,65,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,0,0],[0,0,0,69,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,73,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,75,0,0,0,76,77,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,25,79,0,0,0,0],[0,0,0,18,19,20,74,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,81,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,86,0,0,87,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0],[0,0,0,18,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,89,90,0,0,76,77,0,23,0,24,0,0,0,78,0,89,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,0,0],[0,0,0,94,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,96,0,0,0,97,98,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,35,100,0,0,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,102,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,107,0,0,108,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0],[0,0,0,28,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,110,111,0,0,97,98,0,33,0,34,0,0,0,99,0,110,0,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,0,0],[0,0,0,0,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,0,0,115,116,117,118,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,39,0,122,0,123,123,8,9,0,10,0,0,0,42,0,39,0,0],[0,124,64,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0],[0,39,0,0,0,121,125,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,126,126,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,47,47,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,128,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,129,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,50,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0],[0,0,0,135,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,136,0,0,0,137,138,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,60,140,0,0,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,0,140,0,0,0,0],[0,0,0,142,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,147,0,0,148,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0],[0,0,0,53,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,150,151,0,0,137,138,0,58,0,59,0,0,0,139,0,150,0,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,0,0],[0,0,0,155,116,156,157,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,75,3,4,5,159,160,8,161,0,162,0,11,12,163,0,75,16,0],[0,0,0,0,0,40,164,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,0,165,0,0,0,0],[0,124,64,0,0,40,164,0,9,0,10,0,0,0,42,0,124,0,0],[0,0,0,0,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,167,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0],[0,0,0,0,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,0,79,0,0,0,0],[0,0,0,169,170,171,172,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,75,0,176,0,177,177,22,23,0,24,0,0,0,78,0,75,0,0],[0,178,90,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0],[0,75,0,0,0,175,179,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,180,180,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,83,83,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,182,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,183,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0],[0,0,0,189,170,190,191,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,76,193,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,0,194,0,0,0,0],[0,178,90,0,0,76,193,0,23,0,24,0,0,0,78,0,178,0,0],[0,0,0,0,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,195,196,197,198,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,96,0,202,0,203,203,32,33,0,34,0,0,0,99,0,96,0,0],[0,204,111,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0],[0,96,0,0,0,201,205,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,206,206,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,104,104,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,208,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,209,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,107,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0],[0,0,0,215,196,216,217,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,97,219,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,0,220,0,0,0,0],[0,204,111,0,0,97,219,0,33,0,34,0,0,0,99,0,204,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,223,0,0,0,40,224,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,119,225,0,0,0,0],[0,0,0,115,116,117,222,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,115,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,226,64,0,0,40,224,0,9,0,10,0,0,0,42,0,226,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,39,0,0,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,44,44,8,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,227,0,228,229,0,9,0,10,0,0,230,0,0,0,0,0],[0,39,0,122,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,231,231,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,131,131,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,234,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,235,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,0,0,240,241,242,243,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,136,0,247,0,248,248,57,58,0,59,0,0,0,139,0,136,0,0],[0,249,151,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0],[0,136,0,0,0,246,250,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,251,251,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,144,144,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,253,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,254,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,147,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0],[0,0,0,260,241,261,262,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,137,264,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,0,265,0,0,0,0],[0,249,151,0,0,137,264,0,58,0,59,0,0,0,139,0,249,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,158,225,0,0,0,0],[0,0,0,155,116,156,222,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,155,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,43,266,266,8,161,0,24,0,0,12,267,0,0,0,0],[0,75,0,176,43,268,268,269,161,0,24,0,0,0,267,0,75,0,0],[0,0,0,0,0,270,0,0,271,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0],[0,273,274,0,0,40,41,0,9,0,10,0,0,0,42,0,273,0,0],[0,0,0,40,0,123,123,8,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,121,275,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,279,0,0,0,76,280,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,173,281,0,0,0,0],[0,0,0,169,170,171,278,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,169,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,282,90,0,0,76,280,0,23,0,24,0,0,0,78,0,282,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,75,0,0,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,80,80,22,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,283,0,284,285,0,23,0,24,0,0,286,0,0,0,0,0],[0,75,0,176,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,287,287,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,185,185,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,290,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,291,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,192,281,0,0,0,0],[0,0,0,189,170,190,278,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,189,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,76,0,177,177,22,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,175,296,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,299,0,0,0,97,300,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,199,301,0,0,0,0],[0,0,0,195,196,197,298,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,195,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,302,111,0,0,97,300,0,33,0,34,0,0,0,99,0,302,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,96,0,0,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,101,101,32,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,303,0,304,305,0,33,0,34,0,0,306,0,0,0,0,0],[0,96,0,202,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,307,307,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,211,211,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,310,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,311,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,218,301,0,0,0,0],[0,0,0,215,196,216,298,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,215,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,97,0,203,203,32,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,201,316,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,0,225,0,0,0,0],[0,0,0,317,318,319,320,8,9,0,10,0,0,321,322,0,0,16,0],[0,223,0,323,0,123,123,8,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,0,0,121,324,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,325,318,326,327,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,64,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,230,0,0,0,0,0],[0,0,0,227,0,228,121,0,9,0,10,0,0,230,0,0,0,0,0],[0,0,0,227,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0],[0,0,0,0,0,329,329,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,237,237,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,332,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,333,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,337,0,0,0,137,338,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,244,339,0,0,0,0],[0,0,0,240,241,242,336,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,240,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,340,151,0,0,137,338,0,58,0,59,0,0,0,139,0,340,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,136,0,0,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,141,141,57,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,341,0,342,343,0,58,0,59,0,0,344,0,0,0,0,0],[0,136,0,247,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,345,345,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,256,256,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,348,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,349,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,263,339,0,0,0,0],[0,0,0,260,241,261,336,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,260,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,137,0,248,248,57,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,246,354,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,126,126,8,23,0,0,0,0,0,0,0,0,0,0],[0,355,90,0,0,121,125,0,9,0,10,0,0,0,42,0,355,0,0],[0,0,0,0,0,356,356,269,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,357,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0],[0,0,0,364,116,365,366,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,40,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,0,281,0,0,0,0],[0,0,0,369,370,371,372,22,23,0,24,0,0,373,374,0,0,27,0],[0,279,0,375,0,177,177,22,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,0,0,175,376,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,377,370,378,379,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,90,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,286,0,0,0,0,0],[0,0,0,283,0,284,175,0,23,0,24,0,0,286,0,0,0,0,0],[0,0,0,283,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0],[0,0,0,0,0,381,381,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,293,293,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,384,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,385,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,76,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,0,301,0,0,0,0],[0,0,0,387,388,389,390,32,33,0,34,0,0,391,392,0,0,37,0],[0,299,0,393,0,203,203,32,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,0,0,201,394,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,395,388,396,397,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,111,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,306,0,0,0,0,0],[0,0,0,303,0,304,201,0,33,0,34,0,0,306,0,0,0,0,0],[0,0,0,303,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0],[0,0,0,0,0,399,399,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,313,313,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,402,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,403,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,97,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,407,0,0,0,40,408,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,321,409,0,0,0,0],[0,0,0,317,318,319,406,8,9,0,10,0,0,321,322,0,0,16,0],[0,0,0,317,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,410,64,0,0,40,408,0,9,0,10,0,0,0,42,0,410,0,0],[0,223,0,0,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,323,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,328,409,0,0,0,0],[0,0,0,325,318,326,406,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,325,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0],[0,0,0,0,0,411,411,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,413,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,0,339,0,0,0,0],[0,0,0,414,415,416,417,57,58,0,59,0,0,418,419,0,0,62,0],[0,337,0,420,0,248,248,57,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,0,0,246,421,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,422,415,423,424,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,151,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,344,0,0,0,0,0],[0,0,0,341,0,342,246,0,58,0,59,0,0,344,0,0,0,0,0],[0,0,0,341,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0],[0,0,0,0,0,426,426,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,351,351,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,429,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,430,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,137,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,432,116,433,434,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,0,0,180,180,269,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,359,359,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,437,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,438,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,443,274,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,367,225,0,0,0,0],[0,0,0,364,116,365,445,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,364,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,448,0,0,0,76,449,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,373,450,0,0,0,0],[0,0,0,369,370,371,447,22,23,0,24,0,0,373,374,0,0,27,0],[0,0,0,369,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,451,90,0,0,76,449,0,23,0,24,0,0,0,78,0,451,0,0],[0,279,0,0,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,375,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,380,450,0,0,0,0],[0,0,0,377,370,378,447,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,377,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0],[0,0,0,0,0,452,452,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,454,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,457,0,0,0,97,458,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,391,459,0,0,0,0],[0,0,0,387,388,389,456,32,33,0,34,0,0,391,392,0,0,37,0],[0,0,0,387,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,460,111,0,0,97,458,0,33,0,34,0,0,0,99,0,460,0,0],[0,299,0,0,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,393,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,398,459,0,0,0,0],[0,0,0,395,388,396,456,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,395,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0],[0,0,0,0,0,461,461,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,463,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,0,409,0,0,0,0],[0,0,0,464,465,466,467,8,9,0,10,0,0,468,469,0,0,16,0],[0,407,0,470,0,123,123,8,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,0,0,121,471,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,472,465,473,474,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0],[0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,479,0,0,0,137,480,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,418,481,0,0,0,0],[0,0,0,414,415,416,478,57,58,0,59,0,0,418,419,0,0,62,0],[0,0,0,414,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,482,151,0,0,137,480,0,58,0,59,0,0,0,139,0,482,0,0],[0,337,0,0,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,420,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,425,481,0,0,0,0],[0,0,0,422,415,423,478,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,422,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0],[0,0,0,0,0,483,483,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,485,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,435,225,0,0,0,0],[0,0,0,432,116,433,445,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,432,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,486,486,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,440,440,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,489,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,490,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,495,0,496,497,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,0,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,0,225,0,0,0,0],[0,0,0,0,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,0,450,0,0,0,0],[0,0,0,499,500,501,502,22,23,0,24,0,0,503,504,0,0,27,0],[0,448,0,505,0,177,177,22,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,0,0,175,506,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,507,500,508,509,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0],[0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,0,459,0,0,0,0],[0,0,0,512,513,514,515,32,33,0,34,0,0,516,517,0,0,37,0],[0,457,0,518,0,203,203,32,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,0,0,201,519,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,520,513,521,522,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0],[0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,527,0,0,0,40,528,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,468,529,0,0,0,0],[0,0,0,464,465,466,526,8,9,0,10,0,0,468,469,0,0,16,0],[0,0,0,464,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,530,64,0,0,40,528,0,9,0,10,0,0,0,42,0,530,0,0],[0,407,0,0,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,470,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,475,529,0,0,0,0],[0,0,0,472,465,473,526,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,472,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0],[0,0,0,0,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,0,481,0,0,0,0],[0,0,0,531,532,533,534,57,58,0,59,0,0,535,536,0,0,62,0],[0,479,0,537,0,248,248,57,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,0,0,246,538,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,539,532,540,541,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0],[0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0],[0,0,0,0,0,544,544,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,492,492,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,547,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,548,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,274,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,498,0,0,0,0,0],[0,0,0,495,0,496,368,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,495,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,553,0,0,0,76,554,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,503,555,0,0,0,0],[0,0,0,499,500,501,552,22,23,0,24,0,0,503,504,0,0,27,0],[0,0,0,499,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,556,90,0,0,76,554,0,23,0,24,0,0,0,78,0,556,0,0],[0,448,0,0,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,505,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,510,555,0,0,0,0],[0,0,0,507,500,508,552,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,507,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,559,0,0,0,97,560,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,516,561,0,0,0,0],[0,0,0,512,513,514,558,32,33,0,34,0,0,516,517,0,0,37,0],[0,0,0,512,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,562,111,0,0,97,560,0,33,0,34,0,0,0,99,0,562,0,0],[0,457,0,0,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,518,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,523,561,0,0,0,0],[0,0,0,520,513,521,558,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,520,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0],[0,0,0,0,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,0,529,0,0,0,0],[0,0,0,563,66,564,565,8,9,0,10,0,0,566,68,0,0,16,0],[0,527,0,567,0,123,123,8,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,0,0,121,568,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,569,66,570,571,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,575,0,0,0,137,576,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,535,577,0,0,0,0],[0,0,0,531,532,533,574,57,58,0,59,0,0,535,536,0,0,62,0],[0,0,0,531,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,578,151,0,0,137,576,0,58,0,59,0,0,0,139,0,578,0,0],[0,479,0,0,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,537,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,542,577,0,0,0,0],[0,0,0,539,532,540,574,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,539,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0],[0,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0],[0,0,0,0,0,579,579,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,581,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,0,555,0,0,0,0],[0,0,0,582,91,583,584,22,23,0,24,0,0,585,93,0,0,27,0],[0,553,0,586,0,177,177,22,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,0,0,175,587,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,588,91,589,590,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,0,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,0,561,0,0,0,0],[0,0,0,592,112,593,594,32,33,0,34,0,0,595,114,0,0,37,0],[0,559,0,596,0,203,203,32,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,0,0,201,597,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,598,112,599,600,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,566,165,0,0,0,0],[0,0,0,563,66,564,67,8,9,0,10,0,0,566,68,0,0,16,0],[0,0,0,563,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,527,0,0,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,567,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,572,165,0,0,0,0],[0,0,0,569,66,570,67,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,569,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,0,577,0,0,0,0],[0,0,0,603,152,604,605,57,58,0,59,0,0,606,154,0,0,62,0],[0,575,0,607,0,248,248,57,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,0,0,246,608,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,609,152,610,611,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0],[0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,585,194,0,0,0,0],[0,0,0,582,91,583,92,22,23,0,24,0,0,585,93,0,0,27,0],[0,0,0,582,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,553,0,0,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,586,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,591,194,0,0,0,0],[0,0,0,588,91,589,92,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,588,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,595,220,0,0,0,0],[0,0,0,592,112,593,113,32,33,0,34,0,0,595,114,0,0,37,0],[0,0,0,592,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,559,0,0,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,596,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,601,220,0,0,0,0],[0,0,0,598,112,599,113,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,598,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,606,265,0,0,0,0],[0,0,0,603,152,604,153,57,58,0,59,0,0,606,154,0,0,62,0],[0,0,0,603,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,575,0,0,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,607,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,612,265,0,0,0,0],[0,0,0,609,152,610,153,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,609,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0]],"accepting":[false,true,true,true,true,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,false,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,true,false,true,true,false,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,false,true,false,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,false,true,true,false,false,true,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,false,true,true,true,true,false,false,false,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,false,true,true,false,false,true,true,false,false,true,true,true,false,true,false,true,true,true,true,false,false,false,true,false,true,true,true,true,false,false,false,true,true,false,true,true,true,true,true,true,false,true,true,false,true,false,true,true,true,true,false,false,false,false,false,false,false,true,true,false,false,true,true,false,true,true,true,true,false,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,true,true,false,true,false,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,false,true,true,false,true,false,true,true,true,true,true,false,true,true,true,true,true,false,true,true,true,true,true,false,true,true,true,false,true,true,true,true,false,false,false,true,false,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,false,true,true,true,true,false,true,true,true,true,true,false,true,true,false,true,true,true],"tags":[[],["broken_cluster"],["consonant_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],[],["broken_cluster"],["symbol_cluster"],[],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["symbol_cluster"],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],[],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],[],[],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],["consonant_syllable"],["vowel_syllable"],["standalone_cluster"]]}');var hv;hv=JSON.parse('{"categories":["O","IND","S","GB","B","FM","CGJ","VMAbv","VMPst","VAbv","VPst","CMBlw","VPre","VBlw","H","VMBlw","CMAbv","MBlw","CS","R","SUB","MPst","MPre","FAbv","FPst","FBlw","null","SMAbv","SMBlw","VMPre","ZWNJ","ZWJ","WJ","M","VS","N","HN","MAbv"],"decompositions":{"2507":[2503,2494],"2508":[2503,2519],"2888":[2887,2902],"2891":[2887,2878],"2892":[2887,2903],"3018":[3014,3006],"3019":[3015,3006],"3020":[3014,3031],"3144":[3142,3158],"3264":[3263,3285],"3271":[3270,3285],"3272":[3270,3286],"3274":[3270,3266],"3275":[3270,3266,3285],"3402":[3398,3390],"3403":[3399,3390],"3404":[3398,3415],"3546":[3545,3530],"3548":[3545,3535],"3549":[3545,3535,3530],"3550":[3545,3551],"3635":[3661,3634],"3763":[3789,3762],"3955":[3953,3954],"3957":[3953,3956],"3958":[4018,3968],"3959":[4018,3953,3968],"3960":[4019,3968],"3961":[4019,3953,3968],"3969":[3953,3968],"6971":[6970,6965],"6973":[6972,6965],"6976":[6974,6965],"6977":[6975,6965],"6979":[6978,6965],"69934":[69937,69927],"69935":[69938,69927],"70475":[70471,70462],"70476":[70471,70487],"70843":[70841,70842],"70844":[70841,70832],"70846":[70841,70845],"71098":[71096,71087],"71099":[71097,71087]},"stateTable":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,2,3,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,17,18,11,19,20,21,22,0,0,0,23,0,0,2,0,0,24,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,27,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,39,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,49,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,53,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0]],"accepting":[false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],"tags":[[],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["symbol_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["virama_terminated_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["number_joiner_terminated_cluster"],["standard_cluster"],["standard_cluster"],["numeral_cluster"]]}');const pv=1,uv=8,fv=16,gv=32,mv=64,vv=128,yv=8192,bv=32768,Mv=65536,wv=131072,xv={Start:1,Ra_To_Become_Reph:2,Pre_M:4,Pre_C:8,Base_C:16,After_Main:32,Before_Sub:128,Below_C:256,After_Sub:512,Before_Post:1024,Post_C:2048,After_Post:4096,Final_C:8192,SMVD:16384,End:32768},Cv=2|Mv|wv|4|2048|4096,Sv=mv|gv,Iv=fv|16384,kv={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:xv.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:xv.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:xv.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:xv.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:xv.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:xv.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:xv.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:xv.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:xv.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:xv.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:xv.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},Av={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},{decompositions:Tv}=Xc(hv),Pv=new Xd(Og("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")),Ev=new uc(Xc(cv));class Lv extends im{static planFeatures(e){var t;e.addStage(Nv),e.addStage(["locl","ccmp"]),e.addStage(_v),e.addStage("nukt"),e.addStage("akhn"),e.addStage("rphf",!1),e.addStage("rkrf"),e.addStage("pref",!1),e.addStage("blwf",!1),e.addStage("abvf",!1),e.addStage("half",!1),e.addStage("pstf",!1),e.addStage("vatu"),e.addStage("cjct"),e.addStage("cfar",!1),e.addStage(Uv),e.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),e.unicodeScript=(t=e.script,Bg[t]),e.indicConfig=kv[e.unicodeScript]||kv.Default,e.isOldSpec=e.indicConfig.hasOldSpec&&"2"!==e.script[e.script.length-1]}static assignFeatures(e,t){for(let a=t.length-1;a>=0;a--){let r=t[a].codePoints[0],n=Av[r]||Tv[r];if(n){let r=n.map(r=>{let n=e.font.glyphForCodePoint(r);return new Sm(e.font,n.id,[r],t[a].features)});t.splice(a,1,...r)}}}}function Ov(e){return Pv.get(e.codePoints[0])>>8}function Rv(e){return 1<<(255&Pv.get(e.codePoints[0]))}sd(Lv,"zeroMarkWidths","NONE");class Hv{constructor(e,t,a,r){this.category=e,this.position=t,this.syllableType=a,this.syllable=r}}function Nv(e,t){let a=0,r=0;for(let[n,o,i]of Ev.match(t.map(Ov))){if(n>r){++a;for(let e=r;e<n;e++)t[e].shaperInfo=new Hv(pv,xv.End,"non_indic_cluster",a)}++a;for(let e=n;e<=o;e++)t[e].shaperInfo=new Hv(1<<Ov(t[e]),Rv(t[e]),i[0],a);r=o+1}if(r<t.length){++a;for(let e=r;e<t.length;e++)t[e].shaperInfo=new Hv(pv,xv.End,"non_indic_cluster",a)}}function Dv(e){return e.shaperInfo.category&Cv}function Fv(e){return e.shaperInfo.category&Sv}function Bv(e){return e.shaperInfo.category&Iv}function Vv(e,t){for(let a of e)a.features={[t]:!0};return e[0]._font._layoutEngine.engine.GSUBProcessor.applyFeatures([t],e),1===e.length}function zv(e,t,a){let r=[a,t,a];return Vv(r.slice(0,2),"blwf")||Vv(r.slice(1,3),"blwf")?xv.Below_C:Vv(r.slice(0,2),"pstf")||Vv(r.slice(1,3),"pstf")||Vv(r.slice(0,2),"pref")||Vv(r.slice(1,3),"pref")?xv.Post_C:xv.Base_C}function _v(e,t,a){let r=a.indicConfig,n=e._layoutEngine.engine.GSUBProcessor.features,o=e.glyphForCodePoint(9676).id,i=e.glyphForCodePoint(r.virama).id;if(i){let a=new Sm(e,i,[r.virama]);for(let e=0;e<t.length;e++)t[e].shaperInfo.position===xv.Base_C&&(t[e].shaperInfo.position=zv(0,t[e].copy(),a))}for(let l=0,s=qv(t,0);l<t.length;l=s,s=qv(t,l)){let{category:i,syllableType:d}=t[l].shaperInfo;if("symbol_cluster"===d||"non_indic_cluster"===d)continue;if("broken_cluster"===d&&o){let a=new Sm(e,o,[9676]);a.shaperInfo=new Hv(1<<Ov(a),Rv(a),t[l].shaperInfo.syllableType,t[l].shaperInfo.syllable);let r=l;for(;r<s&&t[r].shaperInfo.category===bv;)r++;t.splice(r++,0,a),s++}let c=s,h=l,p=!1;if(r.rephPos!==xv.Ra_To_Become_Reph&&n.rphf&&l+3<=s&&("Implicit"===r.rephMode&&!Fv(t[l+2])||"Explicit"===r.rephMode&&t[l+2].shaperInfo.category===mv)){let e=[t[l].copy(),t[l+1].copy(),t[l+2].copy()];if(Vv(e.slice(0,2),"rphf")||"Explicit"===r.rephMode&&Vv(e,"rphf")){for(h+=2;h<s&&Fv(t[h]);)h++;c=l,p=!0}}else if("Log_Repha"===r.rephMode&&t[l].shaperInfo.category===bv){for(h++;h<s&&Fv(t[h]);)h++;c=l,p=!0}switch(r.basePos){case"Last":{let e=s,a=!1;do{let r=t[--e].shaperInfo;if(Dv(t[e])){if(r.position!==xv.Below_C&&(r.position!==xv.Post_C||a)){c=e;break}r.position===xv.Below_C&&(a=!0),c=e}else if(l<e&&r.category===mv&&t[e-1].shaperInfo.category===fv)break}while(e>h);break}case"First":c=l;for(let e=c+1;e<s;e++)Dv(t[e])&&(t[e].shaperInfo.position=xv.Below_C)}p&&c===l&&h-c<=2&&(p=!1);for(let e=l;e<c;e++){let a=t[e].shaperInfo;a.position=Math.min(xv.Pre_C,a.position)}c<s&&(t[c].shaperInfo.position=xv.Base_C);for(let e=c+1;e<s;e++)if(t[e].shaperInfo.category===vv){for(let a=e+1;a<s;a++)if(Dv(t[a])){t[a].shaperInfo.position=xv.Final_C;break}break}if(p&&(t[l].shaperInfo.position=xv.Ra_To_Become_Reph),a.isOldSpec){let e="Malayalam"!==a.unicodeScript;for(let a=c+1;a<s;a++)if(t[a].shaperInfo.category===fv){let r;for(r=s-1;r>a&&!(Dv(t[r])||e&&t[r].shaperInfo.category===fv);r--);if(t[r].shaperInfo.category!==fv&&r>a){let e=t[a];t.splice(a,0,...t.splice(a+1,r-a)),t[r]=e}break}}let u=xv.Start;for(let e=l;e<s;e++){let a=t[e].shaperInfo;if(a.category&(Sv|uv|yv|wv|Iv&a.category)){if(a.position=u,a.category===fv&&a.position===xv.Pre_M)for(let r=e;r>l;r--)if(t[r-1].shaperInfo.position!==xv.Pre_M){a.position=t[r-1].shaperInfo.position;break}}else a.position!==xv.SMVD&&(u=a.position)}let f=c;for(let e=c+1;e<s;e++)if(Dv(t[e])){for(let a=f+1;a<e;a++)t[a].shaperInfo.position<xv.SMVD&&(t[a].shaperInfo.position=t[e].shaperInfo.position);f=e}else t[e].shaperInfo.category===vv&&(f=e);let g=t.slice(l,s);g.sort((e,t)=>e.shaperInfo.position-t.shaperInfo.position),t.splice(l,g.length,...g);for(let e=l;e<s;e++)if(t[e].shaperInfo.position===xv.Base_C){c=e;break}for(let e=l;e<s&&t[e].shaperInfo.position===xv.Ra_To_Become_Reph;e++)t[e].features.rphf=!0;let m=!a.isOldSpec&&"Pre_And_Post"===r.blwfMode;for(let e=l;e<c;e++)t[e].features.half=!0,m&&(t[e].features.blwf=!0);for(let e=c+1;e<s;e++)t[e].features.abvf=!0,t[e].features.pstf=!0,t[e].features.blwf=!0;if(a.isOldSpec&&"Devanagari"===a.unicodeScript)for(let e=l;e+1<c;e++)t[e].shaperInfo.category!==Mv||t[e+1].shaperInfo.category!==fv||e+1!==c&&t[e+2].shaperInfo.category!==mv||(t[e].features.blwf=!0,t[e+1].features.blwf=!0);let v=2;if(n.pref&&c+v<s)for(let e=c+1;e+v-1<s;e++){if(Vv([t[e].copy(),t[e+1].copy()],"pref")){for(let a=0;a<v;a++)t[e++].features.pref=!0;if(n.cfar)for(;e<s;e++)t[e].features.cfar=!0;break}}for(let e=l+1;e<s;e++)if(Fv(t[e])){let a=t[e].shaperInfo.category===gv,r=e;do{r--,a&&delete t[r].features.half}while(r>l&&!Dv(t[r]))}}}function Uv(e,t,a){let r=a.indicConfig,n=e._layoutEngine.engine.GSUBProcessor.features;for(let o=0,i=qv(t,0);o<t.length;o=i,i=qv(t,o)){let e=!!n.pref,l=o;for(;l<i;l++)if(t[l].shaperInfo.position>=xv.Base_C){if(e&&l+1<i)for(let a=l+1;a<i;a++)if(t[a].features.pref){if(!t[a].substituted||!t[a].isLigated||t[a].isMultiplied){for(l=a;l<i&&Bv(t[l]);)l++;t[l].shaperInfo.position=xv.BASE_C,e=!1}break}if("Malayalam"===a.unicodeScript)for(let e=l+1;e<i;e++){for(;e<i&&Fv(t[e]);)e++;if(e===i||!Bv(t[e]))break;for(e++;e<i&&Fv(t[e]);)e++;e<i&&Dv(t[e])&&t[e].shaperInfo.position===xv.Below_C&&(l=e,t[l].shaperInfo.position=xv.Base_C)}o<l&&t[l].shaperInfo.position>xv.Base_C&&l--;break}if(l===i&&o<l&&t[l-1].shaperInfo.category===mv&&l--,l<i)for(;o<l&&t[l].shaperInfo.category&(uv|Iv);)l--;if(o+1<i&&o<l){let e=l===i?l-2:l-1;if("Malayalam"!==a.unicodeScript&&"Tamil"!==a.unicodeScript){for(;e>o&&!(t[e].shaperInfo.category&(vv|Iv));)e--;Bv(t[e])&&t[e].shaperInfo.position!==xv.Pre_M?e+1<i&&Fv(t[e+1])&&e++:e=o}if(o<e&&t[e].shaperInfo.position!==xv.Pre_M)for(let a=e;a>o;a--)if(t[a-1].shaperInfo.position===xv.Pre_M){let r=a-1;r<l&&l<=e&&l--;let n=t[r];t.splice(r,0,...t.splice(r+1,e-r)),t[e]=n,e--}}if(o+1<i&&t[o].shaperInfo.position===xv.Ra_To_Become_Reph&&t[o].shaperInfo.category===bv!==(t[o].isLigated&&!t[o].isMultiplied)){let e,a=r.rephPos,n=!1;if(a!==xv.After_Post){for(e=o+1;e<l&&!Bv(t[e]);)e++;if(e<l&&Bv(t[e])&&(e+1<l&&Fv(t[e+1])&&e++,n=!0),!n&&a===xv.After_Main){for(e=l;e+1<i&&t[e+1].shaperInfo.position<=xv.After_Main;)e++;n=e<i}if(!n&&a===xv.After_Sub){for(e=l;e+1<i&&!(t[e+1].shaperInfo.position&(xv.Post_C|xv.After_Post|xv.SMVD));)e++;n=e<i}}if(!n){for(e=o+1;e<l&&!Bv(t[e]);)e++;e<l&&Bv(t[e])&&(e+1<l&&Fv(t[e+1])&&e++,n=!0)}if(!n){for(e=i-1;e>o&&t[e].shaperInfo.position===xv.SMVD;)e--;if(Bv(t[e]))for(let a=l+1;a<e;a++)t[a].shaperInfo.category===vv&&e--}let s=t[o];t.splice(o,0,...t.splice(o+1,e-o)),t[e]=s,o<l&&l<=e&&l--}if(e&&l+1<i)for(let r=l+1;r<i;r++)if(t[r].features.pref){if(t[r].isLigated&&!t[r].isMultiplied){let e=l;if("Malayalam"!==a.unicodeScript&&"Tamil"!==a.unicodeScript){for(;e>o&&!(t[e-1].shaperInfo.category&(vv|Iv));)e--;if(e>o&&t[e-1].shaperInfo.category===vv){let a=r;for(let r=l+1;r<a;r++)if(t[r].shaperInfo.category===vv){e--;break}}}e>o&&Bv(t[e-1])&&e<i&&Fv(t[e])&&e++;let n=r,s=t[n];t.splice(e+1,0,...t.splice(e,n-e)),t[e]=s,e<=l&&l<n&&l++}break}t[o].shaperInfo.position!==xv.Pre_M||o&&/Cf|Mn/.test(dc(t[o-1].codePoints[0]))||(t[o].features.init=!0)}}function qv(e,t){if(t>=e.length)return t;let a=e[t].shaperInfo.syllable;for(;++t<e.length&&e[t].shaperInfo.syllable===a;);return t}const{categories:Gv,decompositions:Wv}=Xc(hv),jv=new Xd(Og("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")),Xv=new uc(Xc(hv));class Zv extends im{static planFeatures(e){e.addStage(Jv),e.addStage(["locl","ccmp","nukt","akhn"]),e.addStage(Qv),e.addStage(["rphf"],!1),e.addStage($v),e.addStage(Qv),e.addStage(["pref"]),e.addStage(ey),e.addStage(["rkrf","abvf","blwf","half","pstf","vatu","cjct"]),e.addStage(ty),e.addStage(["abvs","blws","pres","psts","dist","abvm","blwm"])}static assignFeatures(e,t){for(let a=t.length-1;a>=0;a--){let r=t[a].codePoints[0];if(Wv[r]){let n=Wv[r].map(r=>{let n=e.font.glyphForCodePoint(r);return new Sm(e.font,n.id,[r],t[a].features)});t.splice(a,1,...n)}}}}function Kv(e){return jv.get(e.codePoints[0])}sd(Zv,"zeroMarkWidths","BEFORE_GPOS");class Yv{constructor(e,t,a){this.category=e,this.syllableType=t,this.syllable=a}}function Jv(e,t){let a=0;for(let[r,n,o]of Xv.match(t.map(Kv))){++a;for(let i=r;i<=n;i++)t[i].shaperInfo=new Yv(Gv[Kv(t[i])],o[0],a);let e="R"===t[r].shaperInfo.category?1:Math.min(3,n-r);for(let a=r;a<r+e;a++)t[a].features.rphf=!0}}function Qv(e,t){for(let a of t)a.substituted=!1}function $v(e,t){for(let a of t)a.substituted&&a.features.rphf&&(a.shaperInfo.category="R")}function ey(e,t){for(let a of t)a.substituted&&(a.shaperInfo.category="VPre")}function ty(e,t){let a=e.glyphForCodePoint(9676).id;for(let r=0,n=ay(t,0);r<t.length;r=n,n=ay(t,r)){let o,i,l=t[r].shaperInfo,s=l.syllableType;if("virama_terminated_cluster"===s||"standard_cluster"===s||"broken_cluster"===s){if("broken_cluster"===s&&a){let i=new Sm(e,a,[9676]);for(i.shaperInfo=l,o=r;o<n&&"R"===t[o].shaperInfo.category;o++);t.splice(++o,0,i),n++}if("R"===l.category&&n-r>1)for(o=r+1;o<n;o++)if(l=t[o].shaperInfo,ny(l)||ry(t[o])){ry(t[o])&&o--,t.splice(r,0,...t.splice(r+1,o-r),t[o]);break}for(o=r,i=n;o<n;o++)l=t[o].shaperInfo,ny(l)||ry(t[o])?i=ry(t[o])?o+1:o:("VPre"===l.category||"VMPre"===l.category)&&i<o&&t.splice(i,1,t[o],...t.splice(i,o-i))}}}function ay(e,t){if(t>=e.length)return t;let a=e[t].shaperInfo.syllable;for(;++t<e.length&&e[t].shaperInfo.syllable===a;);return t}function ry(e){return"H"===e.shaperInfo.category&&!e.isLigated}function ny(e){return"B"===e.category||"GB"===e.category}const oy={arab:bm,mong:bm,syrc:bm,"nko ":bm,phag:bm,mand:bm,mani:bm,phlp:bm,hang:Im,bng2:Lv,beng:Lv,dev2:Lv,deva:Lv,gjr2:Lv,gujr:Lv,guru:Lv,gur2:Lv,knda:Lv,knd2:Lv,mlm2:Lv,mlym:Lv,ory2:Lv,orya:Lv,taml:Lv,tml2:Lv,telu:Lv,tel2:Lv,khmr:Lv,bali:Zv,batk:Zv,brah:Zv,bugi:Zv,buhd:Zv,cakm:Zv,cham:Zv,dupl:Zv,egyp:Zv,gran:Zv,hano:Zv,java:Zv,kthi:Zv,kali:Zv,khar:Zv,khoj:Zv,sind:Zv,lepc:Zv,limb:Zv,mahj:Zv,mtei:Zv,modi:Zv,hmng:Zv,rjng:Zv,saur:Zv,shrd:Zv,sidd:Zv,sinh:Lv,sund:Zv,sylo:Zv,tglg:Zv,tagb:Zv,tale:Zv,lana:Zv,tavt:Zv,takr:Zv,tibt:Zv,tfng:Zv,tirh:Zv,latn:im,DFLT:im};class iy extends Cm{applyLookup(e,t){switch(e){case 1:{let e=this.coverageIndex(t.coverage);if(-1===e)return!1;let a=this.glyphIterator.cur;switch(t.version){case 1:a.id=a.id+t.deltaGlyphID&65535;break;case 2:a.id=t.substitute.get(e)}return!0}case 2:{let e=this.coverageIndex(t.coverage);if(-1!==e){let a=t.sequences.get(e);if(0===a.length)return this.glyphs.splice(this.glyphIterator.index,1),!0;this.glyphIterator.cur.id=a[0],this.glyphIterator.cur.ligatureComponent=0;let r=this.glyphIterator.cur.features,n=this.glyphIterator.cur,o=a.slice(1).map((e,t)=>{let a=new Sm(this.font,e,void 0,r);return a.shaperInfo=n.shaperInfo,a.isLigated=n.isLigated,a.ligatureComponent=t+1,a.substituted=!0,a.isMultiplied=!0,a});return this.glyphs.splice(this.glyphIterator.index+1,0,...o),!0}return!1}case 3:{let e=this.coverageIndex(t.coverage);if(-1!==e){let a=0;return this.glyphIterator.cur.id=t.alternateSet.get(e)[a],!0}return!1}case 4:{let e=this.coverageIndex(t.coverage);if(-1===e)return!1;for(let r of t.ligatureSets.get(e)){let e=this.sequenceMatchIndices(1,r.components);if(!e)continue;let t=this.glyphIterator.cur,n=t.codePoints.slice();for(let a of e)n.push(...this.glyphs[a].codePoints);let o=new Sm(this.font,r.glyph,n,t.features);o.shaperInfo=t.shaperInfo,o.isLigated=!0,o.substituted=!0;let i=t.isMark;for(let a=0;a<e.length&&i;a++)i=this.glyphs[e[a]].isMark;o.ligatureID=i?null:this.ligatureID++;let l=t.ligatureID,s=t.codePoints.length,d=s,c=this.glyphIterator.index+1;for(let r of e){if(i)c=r;else for(;c<r;){var a=d-s+Math.min(this.glyphs[c].ligatureComponent||1,s);this.glyphs[c].ligatureID=o.ligatureID,this.glyphs[c].ligatureComponent=a,c++}l=this.glyphs[c].ligatureID,s=this.glyphs[c].codePoints.length,d+=s,c++}if(l&&!i)for(let r=c;r<this.glyphs.length&&this.glyphs[r].ligatureID===l;r++){a=d-s+Math.min(this.glyphs[r].ligatureComponent||1,s);this.glyphs[r].ligatureComponent=a}for(let a=e.length-1;a>=0;a--)this.glyphs.splice(e[a],1);return this.glyphs[this.glyphIterator.index]=o,!0}return!1}case 5:return this.applyContext(t);case 6:return this.applyChainingContext(t);case 7:return this.applyLookup(t.lookupType,t.extension);default:throw new Error(`GSUB lookupType ${e} is not supported`)}}}class ly extends Cm{applyPositionValue(e,t){let a=this.positions[this.glyphIterator.peekIndex(e)];null!=t.xAdvance&&(a.xAdvance+=t.xAdvance),null!=t.yAdvance&&(a.yAdvance+=t.yAdvance),null!=t.xPlacement&&(a.xOffset+=t.xPlacement),null!=t.yPlacement&&(a.yOffset+=t.yPlacement);let r=this.font._variationProcessor,n=this.font.GDEF&&this.font.GDEF.itemVariationStore;r&&n&&(t.xPlaDevice&&(a.xOffset+=r.getDelta(n,t.xPlaDevice.a,t.xPlaDevice.b)),t.yPlaDevice&&(a.yOffset+=r.getDelta(n,t.yPlaDevice.a,t.yPlaDevice.b)),t.xAdvDevice&&(a.xAdvance+=r.getDelta(n,t.xAdvDevice.a,t.xAdvDevice.b)),t.yAdvDevice&&(a.yAdvance+=r.getDelta(n,t.yAdvDevice.a,t.yAdvDevice.b)))}applyLookup(e,t){switch(e){case 1:{let e=this.coverageIndex(t.coverage);if(-1===e)return!1;switch(t.version){case 1:this.applyPositionValue(0,t.value);break;case 2:this.applyPositionValue(0,t.values.get(e))}return!0}case 2:{let e=this.glyphIterator.peek();if(!e)return!1;let r=this.coverageIndex(t.coverage);if(-1===r)return!1;switch(t.version){case 1:let n=t.pairSets.get(r);for(let t of n)if(t.secondGlyph===e.id)return this.applyPositionValue(0,t.value1),this.applyPositionValue(1,t.value2),!0;return!1;case 2:let o=this.getClassID(this.glyphIterator.cur.id,t.classDef1),i=this.getClassID(e.id,t.classDef2);if(-1===o||-1===i)return!1;var a=t.classRecords.get(o).get(i);return this.applyPositionValue(0,a.value1),this.applyPositionValue(1,a.value2),!0}}case 3:{let e=this.glyphIterator.peekIndex(),a=this.glyphs[e];if(!a)return!1;let r=t.entryExitRecords[this.coverageIndex(t.coverage)];if(!r||!r.exitAnchor)return!1;let n=t.entryExitRecords[this.coverageIndex(t.coverage,a.id)];if(!n||!n.entryAnchor)return!1;let o,i=this.getAnchor(n.entryAnchor),l=this.getAnchor(r.exitAnchor),s=this.positions[this.glyphIterator.index],d=this.positions[e];switch(this.direction){case"ltr":s.xAdvance=l.x+s.xOffset,o=i.x+d.xOffset,d.xAdvance-=o,d.xOffset-=o;break;case"rtl":o=l.x+s.xOffset,s.xAdvance-=o,s.xOffset-=o,d.xAdvance=i.x+d.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=e,s.yOffset=i.y-l.y):(a.cursiveAttachment=this.glyphIterator.index,s.yOffset=l.y-i.y),!0}case 4:{let e=this.coverageIndex(t.markCoverage);if(-1===e)return!1;let a=this.glyphIterator.index;for(;--a>=0&&(this.glyphs[a].isMark||this.glyphs[a].ligatureComponent>0););if(a<0)return!1;let r=this.coverageIndex(t.baseCoverage,this.glyphs[a].id);if(-1===r)return!1;let n=t.markArray[e],o=t.baseArray[r][n.class];return this.applyAnchor(n,o,a),!0}case 5:{let e=this.coverageIndex(t.markCoverage);if(-1===e)return!1;let a=this.glyphIterator.index;for(;--a>=0&&this.glyphs[a].isMark;);if(a<0)return!1;let r=this.coverageIndex(t.ligatureCoverage,this.glyphs[a].id);if(-1===r)return!1;let n=t.ligatureArray[r],o=this.glyphIterator.cur,i=this.glyphs[a],l=i.ligatureID&&i.ligatureID===o.ligatureID&&o.ligatureComponent>0?Math.min(o.ligatureComponent,i.codePoints.length)-1:i.codePoints.length-1,s=t.markArray[e],d=n[l][s.class];return this.applyAnchor(s,d,a),!0}case 6:{let e=this.coverageIndex(t.mark1Coverage);if(-1===e)return!1;let a=this.glyphIterator.peekIndex(-1),r=this.glyphs[a];if(!r||!r.isMark)return!1;let n=this.glyphIterator.cur,o=!1;if(n.ligatureID===r.ligatureID?n.ligatureID?n.ligatureComponent===r.ligatureComponent&&(o=!0):o=!0:(n.ligatureID&&!n.ligatureComponent||r.ligatureID&&!r.ligatureComponent)&&(o=!0),!o)return!1;let i=this.coverageIndex(t.mark2Coverage,r.id);if(-1===i)return!1;let l=t.mark1Array[e],s=t.mark2Array[i][l.class];return this.applyAnchor(l,s,a),!0}case 7:return this.applyContext(t);case 8:return this.applyChainingContext(t);case 9:return this.applyLookup(t.lookupType,t.extension);default:throw new Error(`Unsupported GPOS table: ${e}`)}}applyAnchor(e,t,a){let r=this.getAnchor(t),n=this.getAnchor(e.markAnchor);this.positions[a];let o=this.positions[this.glyphIterator.index];o.xOffset=r.x-n.x,o.yOffset=r.y-n.y,this.glyphIterator.cur.markAttachment=a}getAnchor(e){let t=e.xCoordinate,a=e.yCoordinate,r=this.font._variationProcessor,n=this.font.GDEF&&this.font.GDEF.itemVariationStore;return r&&n&&(e.xDeviceTable&&(t+=r.getDelta(n,e.xDeviceTable.a,e.xDeviceTable.b)),e.yDeviceTable&&(a+=r.getDelta(n,e.yDeviceTable.a,e.yDeviceTable.b))),{x:t,y:a}}applyFeatures(e,t,a){super.applyFeatures(e,t,a);for(var r=0;r<this.glyphs.length;r++)this.fixCursiveAttachment(r);this.fixMarkAttachment()}fixCursiveAttachment(e){let t=this.glyphs[e];if(null!=t.cursiveAttachment){let a=t.cursiveAttachment;t.cursiveAttachment=null,this.fixCursiveAttachment(a),this.positions[e].yOffset+=this.positions[a].yOffset}}fixMarkAttachment(){for(let e=0;e<this.glyphs.length;e++){let t=this.glyphs[e];if(null!=t.markAttachment){let a=t.markAttachment;if(this.positions[e].xOffset+=this.positions[a].xOffset,this.positions[e].yOffset+=this.positions[a].yOffset,"ltr"===this.direction)for(let t=a;t<e;t++)this.positions[e].xOffset-=this.positions[t].xAdvance,this.positions[e].yOffset-=this.positions[t].yAdvance;else for(let t=a+1;t<e+1;t++)this.positions[e].xOffset+=this.positions[t].xAdvance,this.positions[e].yOffset+=this.positions[t].yAdvance}}}}class sy{setup(e){this.glyphInfos=e.glyphs.map(e=>new Sm(this.font,e.id,[...e.codePoints]));let t=null;this.GPOSProcessor&&(t=this.GPOSProcessor.selectScript(e.script,e.language,e.direction)),this.GSUBProcessor&&(t=this.GSUBProcessor.selectScript(e.script,e.language,e.direction)),this.shaper=function(e){Array.isArray(e)||(e=[e]);for(let t of e){let e=oy[t];if(e)return e}return im}(t),this.plan=new em(this.font,t,e.direction),this.shaper.plan(this.plan,this.glyphInfos,e.features);for(let a in this.plan.allFeatures)e.features[a]=!0}substitute(e){this.GSUBProcessor&&(this.plan.process(this.GSUBProcessor,this.glyphInfos),e.glyphs=this.glyphInfos.map(e=>this.font.getGlyph(e.id,e.codePoints)))}position(e){return"BEFORE_GPOS"===this.shaper.zeroMarkWidths&&this.zeroMarkAdvances(e.positions),this.GPOSProcessor&&this.plan.process(this.GPOSProcessor,this.glyphInfos,e.positions),"AFTER_GPOS"===this.shaper.zeroMarkWidths&&this.zeroMarkAdvances(e.positions),"rtl"===e.direction&&(e.glyphs.reverse(),e.positions.reverse()),this.GPOSProcessor&&this.GPOSProcessor.features}zeroMarkAdvances(e){for(let t=0;t<this.glyphInfos.length;t++)this.glyphInfos[t].isMark&&(e[t].xAdvance=0,e[t].yAdvance=0)}cleanup(){this.glyphInfos=null,this.plan=null,this.shaper=null}getAvailableFeatures(e,t){let a=[];return this.GSUBProcessor&&(this.GSUBProcessor.selectScript(e,t),a.push(...Object.keys(this.GSUBProcessor.features))),this.GPOSProcessor&&(this.GPOSProcessor.selectScript(e,t),a.push(...Object.keys(this.GPOSProcessor.features))),a}constructor(e){this.font=e,this.glyphInfos=null,this.plan=null,this.GSUBProcessor=null,this.GPOSProcessor=null,this.fallbackPosition=!0,e.GSUB&&(this.GSUBProcessor=new iy(e,e.GSUB)),e.GPOS&&(this.GPOSProcessor=new ly(e,e.GPOS))}}class dy{layout(e,t,a,r,n){if("string"==typeof t&&(n=r,r=a,a=t,t=[]),"string"==typeof e){null==a&&(a=function(e){let t=e.length,a=0;for(;a<t;){let r=e.charCodeAt(a++);if(55296<=r&&r<=56319&&a<t){let t=e.charCodeAt(a);56320<=t&&t<=57343&&(a++,r=((1023&r)<<10)+(1023&t)+65536)}let n=cc(r);if("Common"!==n&&"Inherited"!==n&&"Unknown"!==n)return Fg[n]}return Fg.Unknown}(e));var o=this.font.glyphsForString(e)}else{if(null==a){let t=[];for(let a of e)t.push(...a.codePoints);a=function(e){for(let t=0;t<e.length;t++){let a=cc(e[t]);if("Common"!==a&&"Inherited"!==a&&"Unknown"!==a)return Fg[a]}return Fg.Unknown}(t)}o=e}let i=new _g(o,t,a,r,n);return 0===o.length?(i.positions=[],i):(this.engine&&this.engine.setup&&this.engine.setup(i),this.substitute(i),this.position(i),this.hideDefaultIgnorables(i.glyphs,i.positions),this.engine&&this.engine.cleanup&&this.engine.cleanup(),i)}substitute(e){this.engine&&this.engine.substitute&&this.engine.substitute(e)}position(e){e.positions=e.glyphs.map(e=>new Ug(e.advanceWidth));let t=null;this.engine&&this.engine.position&&(t=this.engine.position(e)),t||this.engine&&!this.engine.fallbackPosition||(this.unicodeLayoutEngine||(this.unicodeLayoutEngine=new Ng(this.font)),this.unicodeLayoutEngine.positionGlyphs(e.glyphs,e.positions)),t&&t.kern||!1===e.features.kern||!this.font.kern||(this.kernProcessor||(this.kernProcessor=new Hg(this.font)),this.kernProcessor.process(e.glyphs,e.positions),e.features.kern=!0)}hideDefaultIgnorables(e,t){let a=this.font.glyphForCodePoint(32);for(let r=0;r<e.length;r++)this.isDefaultIgnorable(e[r].codePoints[0])&&(e[r]=a,t[r].xAdvance=0,t[r].yAdvance=0)}isDefaultIgnorable(e){let t=e>>16;if(0===t)switch(e>>8){case 0:return 173===e;case 3:return 847===e;case 6:return 1564===e;case 23:return 6068<=e&&e<=6069;case 24:return 6155<=e&&e<=6158;case 32:return 8203<=e&&e<=8207||8234<=e&&e<=8238||8288<=e&&e<=8303;case 254:return 65024<=e&&e<=65039||65279===e;case 255:return 65520<=e&&e<=65528;default:return!1}else switch(t){case 1:return 113824<=e&&e<=113827||119155<=e&&e<=119162;case 14:return 917504<=e&&e<=921599;default:return!1}}getAvailableFeatures(e,t){let a=[];return this.engine&&a.push(...this.engine.getAvailableFeatures(e,t)),this.font.kern&&-1===a.indexOf("kern")&&a.push("kern"),a}stringsForGlyph(e){let t=new Set,a=this.font._cmapProcessor.codePointsForGlyph(e);for(let r of a)t.add(String.fromCodePoint(r));if(this.engine&&this.engine.stringsForGlyph)for(let r of this.engine.stringsForGlyph(e))t.add(r);return Array.from(t)}constructor(e){this.font=e,this.unicodeLayoutEngine=null,this.kernProcessor=null,this.font.morx?this.engine=new $g(this.font):(this.font.GSUB||this.font.GPOS)&&(this.engine=new sy(this.font))}}const cy={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"};class hy{toFunction(){return e=>{this.commands.forEach(t=>e[t.command].apply(e,t.args))}}toSVG(){return this.commands.map(e=>{let t=e.args.map(e=>Math.round(100*e)/100);return`${cy[e.command]}${t.join(" ")}`}).join("")}get cbox(){if(!this._cbox){let e=new Dg;for(let t of this.commands)for(let a=0;a<t.args.length;a+=2)e.addPoint(t.args[a],t.args[a+1]);this._cbox=Object.freeze(e)}return this._cbox}get bbox(){if(this._bbox)return this._bbox;let e=new Dg,t=0,a=0,r=e=>Math.pow(1-e,3)*p[m]+3*Math.pow(1-e,2)*e*u[m]+3*(1-e)*Math.pow(e,2)*f[m]+Math.pow(e,3)*g[m];for(let v of this.commands)switch(v.command){case"moveTo":case"lineTo":let[y,b]=v.args;e.addPoint(y,b),t=y,a=b;break;case"quadraticCurveTo":case"bezierCurveTo":if("quadraticCurveTo"===v.command)var[n,o,i,l]=v.args,s=t+2/3*(n-t),d=a+2/3*(o-a),c=i+2/3*(n-i),h=l+2/3*(o-l);else var[s,d,c,h,i,l]=v.args;e.addPoint(i,l);for(var p=[t,a],u=[s,d],f=[c,h],g=[i,l],m=0;m<=1;m++){let t=6*p[m]-12*u[m]+6*f[m],a=-3*p[m]+9*u[m]-9*f[m]+3*g[m];if(v=3*u[m]-3*p[m],0===a){if(0===t)continue;let a=-v/t;0<a&&a<1&&(0===m?e.addPoint(r(a),e.maxY):1===m&&e.addPoint(e.maxX,r(a)));continue}let n=Math.pow(t,2)-4*v*a;if(n<0)continue;let o=(-t+Math.sqrt(n))/(2*a);0<o&&o<1&&(0===m?e.addPoint(r(o),e.maxY):1===m&&e.addPoint(e.maxX,r(o)));let i=(-t-Math.sqrt(n))/(2*a);0<i&&i<1&&(0===m?e.addPoint(r(i),e.maxY):1===m&&e.addPoint(e.maxX,r(i)))}t=i,a=l}return this._bbox=Object.freeze(e)}mapPoints(e){let t=new hy;for(let a of this.commands){let r=[];for(let t=0;t<a.args.length;t+=2){let[n,o]=e(a.args[t],a.args[t+1]);r.push(n,o)}t[a.command](...r)}return t}transform(e,t,a,r,n,o){return this.mapPoints((i,l)=>[e*i+a*l+n,t*i+r*l+o])}translate(e,t){return this.transform(1,0,0,1,e,t)}rotate(e){let t=Math.cos(e),a=Math.sin(e);return this.transform(t,a,-a,t,0,0)}scale(e,t=e){return this.transform(e,0,0,t,0,0)}constructor(){this.commands=[],this._bbox=null,this._cbox=null}}for(let gR of["moveTo","lineTo","quadraticCurveTo","bezierCurveTo","closePath"])hy.prototype[gR]=function(...e){return this._bbox=this._cbox=null,this.commands.push({command:gR,args:e}),this};var py=[".notdef",".null","nonmarkingreturn","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quotesingle","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","grave","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","Adieresis","Aring","Ccedilla","Eacute","Ntilde","Odieresis","Udieresis","aacute","agrave","acircumflex","adieresis","atilde","aring","ccedilla","eacute","egrave","ecircumflex","edieresis","iacute","igrave","icircumflex","idieresis","ntilde","oacute","ograve","ocircumflex","odieresis","otilde","uacute","ugrave","ucircumflex","udieresis","dagger","degree","cent","sterling","section","bullet","paragraph","germandbls","registered","copyright","trademark","acute","dieresis","notequal","AE","Oslash","infinity","plusminus","lessequal","greaterequal","yen","mu","partialdiff","summation","product","pi","integral","ordfeminine","ordmasculine","Omega","ae","oslash","questiondown","exclamdown","logicalnot","radical","florin","approxequal","Delta","guillemotleft","guillemotright","ellipsis","nonbreakingspace","Agrave","Atilde","Otilde","OE","oe","endash","emdash","quotedblleft","quotedblright","quoteleft","quoteright","divide","lozenge","ydieresis","Ydieresis","fraction","currency","guilsinglleft","guilsinglright","fi","fl","daggerdbl","periodcentered","quotesinglbase","quotedblbase","perthousand","Acircumflex","Ecircumflex","Aacute","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Oacute","Ocircumflex","apple","Ograve","Uacute","Ucircumflex","Ugrave","dotlessi","circumflex","tilde","macron","breve","dotaccent","ring","cedilla","hungarumlaut","ogonek","caron","Lslash","lslash","Scaron","scaron","Zcaron","zcaron","brokenbar","Eth","eth","Yacute","yacute","Thorn","thorn","minus","multiply","onesuperior","twosuperior","threesuperior","onehalf","onequarter","threequarters","franc","Gbreve","gbreve","Idotaccent","Scedilla","scedilla","Cacute","cacute","Ccaron","ccaron","dcroat"];class uy{_getPath(){return new hy}_getCBox(){return this.path.cbox}_getBBox(){return this.path.bbox}_getTableMetrics(e){if(this.id<e.metrics.length)return e.metrics.get(this.id);let t=e.metrics.get(e.metrics.length-1);return{advance:t?t.advance:0,bearing:e.bearings.get(this.id-e.metrics.length)||0}}_getMetrics(e){if(this._metrics)return this._metrics;let{advance:t,bearing:a}=this._getTableMetrics(this._font.hmtx);if(this._font.vmtx)var{advance:r,bearing:n}=this._getTableMetrics(this._font.vmtx);else{let t;if(null==e&&({cbox:e}=this),(t=this._font["OS/2"])&&t.version>0)r=Math.abs(t.typoAscender-t.typoDescender),n=t.typoAscender-e.maxY;else{let{hhea:t}=this._font;var r=Math.abs(t.ascent-t.descent),n=t.ascent-e.maxY}}return this._font._variationProcessor&&this._font.HVAR&&(t+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:t,advanceHeight:r,leftBearing:a,topBearing:n}}get cbox(){return this._getCBox()}get bbox(){return this._getBBox()}get path(){return this._getPath()}getScaledPath(e){let t=1/this._font.unitsPerEm*e;return this.path.scale(t)}get advanceWidth(){return this._getMetrics().advanceWidth}get advanceHeight(){return this._getMetrics().advanceHeight}get ligatureCaretPositions(){}_getName(){let{post:e}=this._font;if(!e)return null;switch(e.version){case 1:return py[this.id];case 2:let t=e.glyphNameIndex[this.id];return t<py.length?py[t]:e.names[t-py.length];case 2.5:return py[this.id+e.offsets[this.id]];case 4:return String.fromCharCode(e.map[this.id])}}get name(){return this._getName()}render(e,t){e.save();let a=1/this._font.head.unitsPerEm*t;e.scale(a,a),this.path.toFunction()(e),e.fill(),e.restore()}constructor(e,t,a){this.id=e,this.codePoints=t,this._font=a,this.isMark=this.codePoints.length>0&&this.codePoints.every(pc),this.isLigature=this.codePoints.length>1}}dd([th],uy.prototype,"cbox",null),dd([th],uy.prototype,"bbox",null),dd([th],uy.prototype,"path",null),dd([th],uy.prototype,"advanceWidth",null),dd([th],uy.prototype,"advanceHeight",null),dd([th],uy.prototype,"name",null);let fy=new nd({numberOfContours:_s,xMin:_s,yMin:_s,xMax:_s,yMax:_s});class gy{copy(){return new gy(this.onCurve,this.endContour,this.x,this.y)}constructor(e,t,a=0,r=0){this.onCurve=e,this.endContour=t,this.x=a,this.y=r}}class my{constructor(e,t,a){this.glyphID=e,this.dx=t,this.dy=a,this.pos=0,this.scaleX=this.scaleY=1,this.scale01=this.scale10=0}}class vy extends uy{_getCBox(e){if(this._font._variationProcessor&&!e)return this.path.cbox;let t=this._font._getTableStream("glyf");t.pos+=this._font.loca.offsets[this.id];let a=fy.decode(t),r=new Dg(a.xMin,a.yMin,a.xMax,a.yMax);return Object.freeze(r)}_parseGlyphCoord(e,t,a,r){if(a){var n=e.readUInt8();r||(n=-n),n+=t}else if(r)n=t;else n=t+e.readInt16BE();return n}_decode(){let e=this._font.loca.offsets[this.id];if(e===this._font.loca.offsets[this.id+1])return null;let t=this._font._getTableStream("glyf");t.pos+=e;let a=t.pos,r=fy.decode(t);return r.numberOfContours>0?this._decodeSimple(r,t):r.numberOfContours<0&&this._decodeComposite(r,t,a),r}_decodeSimple(e,t){e.points=[];let a=new Zs(Fs,e.numberOfContours).decode(t);e.instructions=new Zs(Ds,Fs).decode(t);let r=[],n=a[a.length-1]+1;for(;r.length<n;){var o=t.readUInt8();if(r.push(o),8&o){let e=t.readUInt8();for(let t=0;t<e;t++)r.push(o)}}for(var i=0;i<r.length;i++){o=r[i];let t=new gy(!!(1&o),a.indexOf(i)>=0,0,0);e.points.push(t)}let l=0;for(i=0;i<r.length;i++){o=r[i];e.points[i].x=l=this._parseGlyphCoord(t,l,2&o,16&o)}let s=0;for(i=0;i<r.length;i++){o=r[i];e.points[i].y=s=this._parseGlyphCoord(t,s,4&o,32&o)}if(this._font._variationProcessor){let t=e.points.slice();t.push(...this._getPhantomPoints(e)),this._font._variationProcessor.transformPoints(this.id,t),e.phantomPoints=t.slice(-4)}}_decodeComposite(e,t,a=0){e.components=[];let r=!1,n=32;for(;32&n;){n=t.readUInt16BE();let s=t.pos-a,d=t.readUInt16BE();if(r||(r=!!(256&n)),1&n)var o=t.readInt16BE(),i=t.readInt16BE();else o=t.readInt8(),i=t.readInt8();(l=new my(d,o,i)).pos=s,8&n?l.scaleX=l.scaleY=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824:64&n?(l.scaleX=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824,l.scaleY=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824):128&n&&(l.scaleX=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824,l.scale01=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824,l.scale10=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824,l.scaleY=(t.readUInt8()<<24|t.readUInt8()<<16)/1073741824),e.components.push(l)}if(this._font._variationProcessor){let t=[];for(let a=0;a<e.components.length;a++){var l=e.components[a];t.push(new gy(!0,!0,l.dx,l.dy))}t.push(...this._getPhantomPoints(e)),this._font._variationProcessor.transformPoints(this.id,t),e.phantomPoints=t.splice(-4,4);for(let a=0;a<t.length;a++){let r=t[a];e.components[a].dx=r.x,e.components[a].dy=r.y}}return r}_getPhantomPoints(e){let t=this._getCBox(!0);null==this._metrics&&(this._metrics=uy.prototype._getMetrics.call(this,t));let{advanceWidth:a,advanceHeight:r,leftBearing:n,topBearing:o}=this._metrics;return[new gy(!1,!0,e.xMin-n,0),new gy(!1,!0,e.xMin-n+a,0),new gy(!1,!0,0,e.yMax+o),new gy(!1,!0,0,e.yMax+o+r)]}_getContours(){let e=this._decode();if(!e)return[];let t=[];if(e.numberOfContours<0)for(let o of e.components){let e=this._font.getGlyph(o.glyphID)._getContours();for(let a=0;a<e.length;a++){let r=e[a];for(let e=0;e<r.length;e++){let a=r[e],n=a.x*o.scaleX+a.y*o.scale01+o.dx,i=a.y*o.scaleY+a.x*o.scale10+o.dy;t.push(new gy(a.onCurve,a.endContour,n,i))}}}else t=e.points||[];e.phantomPoints&&!this._font.directory.tables.HVAR&&(this._metrics.advanceWidth=e.phantomPoints[1].x-e.phantomPoints[0].x,this._metrics.advanceHeight=e.phantomPoints[3].y-e.phantomPoints[2].y,this._metrics.leftBearing=e.xMin-e.phantomPoints[0].x,this._metrics.topBearing=e.phantomPoints[2].y-e.yMax);let a=[],r=[];for(let o=0;o<t.length;o++){var n=t[o];r.push(n),n.endContour&&(a.push(r),r=[])}return a}_getMetrics(){if(this._metrics)return this._metrics;let e=this._getCBox(!0);return super._getMetrics(e),this._font._variationProcessor&&!this._font.HVAR&&this.path,this._metrics}_getPath(){let e=this._getContours(),t=new hy;for(let r=0;r<e.length;r++){let n=e[r],o=n[0],i=n[n.length-1],l=0;if(o.onCurve){var a=null;l=1}else{o=i.onCurve?i:new gy(!1,!1,(o.x+i.x)/2,(o.y+i.y)/2);a=o}t.moveTo(o.x,o.y);for(let e=l;e<n.length;e++){let r=n[e],i=0===e?o:n[e-1];if(i.onCurve&&r.onCurve)t.lineTo(r.x,r.y);else if(i.onCurve&&!r.onCurve)a=r;else if(i.onCurve||r.onCurve){if(i.onCurve||!r.onCurve)throw new Error("Unknown TTF path state");t.quadraticCurveTo(a.x,a.y,r.x,r.y);a=null}else{let e=(i.x+r.x)/2,n=(i.y+r.y)/2;t.quadraticCurveTo(i.x,i.y,e,n);var a=r}}a&&t.quadraticCurveTo(a.x,a.y,o.x,o.y),t.closePath()}return t}constructor(...e){super(...e),sd(this,"type","TTF")}}class yy extends uy{_getName(){return this._font.CFF2?super._getName():this._font["CFF "].getGlyphName(this.id)}bias(e){return e.length<1240?107:e.length<33900?1131:32768}_getPath(){let e=this._font.CFF2||this._font["CFF "],{stream:t}=e,a=e.topDict.CharStrings[this.id],r=a.offset+a.length;t.pos=a.offset;let n,o,i=new hy,l=[],s=[],d=null,c=0,h=0,p=0,u=!1;this._usedGsubrs=n={},this._usedSubrs=o={};let f=e.globalSubrIndex||[],g=this.bias(f),m=e.privateDictForGlyph(this.id)||{},v=m.Subrs||[],y=this.bias(v),b=e.topDict.vstore&&e.topDict.vstore.itemVariationStore,M=m.vsindex,w=this._font._variationProcessor;function x(){null==d&&(d=l.shift()+m.nominalWidthX)}function C(){return l.length%2!=0&&x(),c+=l.length>>1,l.length=0}function S(e,t){u&&i.closePath(),i.moveTo(e,t),u=!0}let I=function(){for(;t.pos<r;){let m=t.readUInt8();if(m<32){let d,k,A,T,P,E,L,O,R,H,N,D,F,B,V,z;switch(m){case 1:case 3:case 18:case 23:C();break;case 4:l.length>1&&x(),p+=l.shift(),S(h,p);break;case 5:for(;l.length>=2;)h+=l.shift(),p+=l.shift(),i.lineTo(h,p);break;case 6:case 7:for(A=6===m;l.length>=1;)A?h+=l.shift():p+=l.shift(),i.lineTo(h,p),A=!A;break;case 8:for(;l.length>0;)T=h+l.shift(),P=p+l.shift(),E=T+l.shift(),L=P+l.shift(),h=E+l.shift(),p=L+l.shift(),i.bezierCurveTo(T,P,E,L,h,p);break;case 10:if(d=l.pop()+y,k=v[d],k){o[d]=!0;let e=t.pos,a=r;t.pos=k.offset,r=k.offset+k.length,I(),t.pos=e,r=a}break;case 11:if(e.version>=2)break;return;case 14:if(e.version>=2)break;l.length>0&&x(),u&&(i.closePath(),u=!1);break;case 15:if(e.version<2)throw new Error("vsindex operator not supported in CFF v1");M=l.pop();break;case 16:{if(e.version<2)throw new Error("blend operator not supported in CFF v1");if(!w)throw new Error("blend operator in non-variation font");let t=w.getBlendVector(b,M),a=l.pop(),r=a*t.length,n=l.length-r,o=n-a;for(let e=0;e<a;e++){let a=l[o+e];for(let e=0;e<t.length;e++)a+=t[e]*l[n++];l[o+e]=a}for(;r--;)l.pop();break}case 19:case 20:C(),t.pos+=c+7>>3;break;case 21:l.length>2&&x(),h+=l.shift(),p+=l.shift(),S(h,p);break;case 22:l.length>1&&x(),h+=l.shift(),S(h,p);break;case 24:for(;l.length>=8;)T=h+l.shift(),P=p+l.shift(),E=T+l.shift(),L=P+l.shift(),h=E+l.shift(),p=L+l.shift(),i.bezierCurveTo(T,P,E,L,h,p);h+=l.shift(),p+=l.shift(),i.lineTo(h,p);break;case 25:for(;l.length>=8;)h+=l.shift(),p+=l.shift(),i.lineTo(h,p);T=h+l.shift(),P=p+l.shift(),E=T+l.shift(),L=P+l.shift(),h=E+l.shift(),p=L+l.shift(),i.bezierCurveTo(T,P,E,L,h,p);break;case 26:for(l.length%2&&(h+=l.shift());l.length>=4;)T=h,P=p+l.shift(),E=T+l.shift(),L=P+l.shift(),h=E,p=L+l.shift(),i.bezierCurveTo(T,P,E,L,h,p);break;case 27:for(l.length%2&&(p+=l.shift());l.length>=4;)T=h+l.shift(),P=p,E=T+l.shift(),L=P+l.shift(),h=E+l.shift(),p=L,i.bezierCurveTo(T,P,E,L,h,p);break;case 28:l.push(t.readInt16BE());break;case 29:if(d=l.pop()+g,k=f[d],k){n[d]=!0;let e=t.pos,a=r;t.pos=k.offset,r=k.offset+k.length,I(),t.pos=e,r=a}break;case 30:case 31:for(A=31===m;l.length>=4;)A?(T=h+l.shift(),P=p,E=T+l.shift(),L=P+l.shift(),p=L+l.shift(),h=E+(1===l.length?l.shift():0)):(T=h,P=p+l.shift(),E=T+l.shift(),L=P+l.shift(),h=E+l.shift(),p=L+(1===l.length?l.shift():0)),i.bezierCurveTo(T,P,E,L,h,p),A=!A;break;case 12:switch(m=t.readUInt8(),m){case 3:let e=l.pop(),t=l.pop();l.push(e&&t?1:0);break;case 4:e=l.pop(),t=l.pop(),l.push(e||t?1:0);break;case 5:e=l.pop(),l.push(e?0:1);break;case 9:e=l.pop(),l.push(Math.abs(e));break;case 10:e=l.pop(),t=l.pop(),l.push(e+t);break;case 11:e=l.pop(),t=l.pop(),l.push(e-t);break;case 12:e=l.pop(),t=l.pop(),l.push(e/t);break;case 14:e=l.pop(),l.push(-e);break;case 15:e=l.pop(),t=l.pop(),l.push(e===t?1:0);break;case 18:l.pop();break;case 20:let r=l.pop(),n=l.pop();s[n]=r;break;case 21:n=l.pop(),l.push(s[n]||0);break;case 22:let o=l.pop(),d=l.pop(),c=l.pop(),u=l.pop();l.push(c<=u?o:d);break;case 23:l.push(Math.random());break;case 24:e=l.pop(),t=l.pop(),l.push(e*t);break;case 26:e=l.pop(),l.push(Math.sqrt(e));break;case 27:e=l.pop(),l.push(e,e);break;case 28:e=l.pop(),t=l.pop(),l.push(t,e);break;case 29:n=l.pop(),n<0?n=0:n>l.length-1&&(n=l.length-1),l.push(l[n]);break;case 30:let f=l.pop(),g=l.pop();if(g>=0)for(;g>0;){var a=l[f-1];for(let e=f-2;e>=0;e--)l[e+1]=l[e];l[0]=a,g--}else for(;g<0;){a=l[0];for(let e=0;e<=f;e++)l[e]=l[e+1];l[f-1]=a,g++}break;case 34:T=h+l.shift(),P=p,E=T+l.shift(),L=P+l.shift(),O=E+l.shift(),R=L,H=O+l.shift(),N=R,D=H+l.shift(),F=N,B=D+l.shift(),V=F,h=B,p=V,i.bezierCurveTo(T,P,E,L,O,R),i.bezierCurveTo(H,N,D,F,B,V);break;case 35:z=[];for(let a=0;a<=5;a++)h+=l.shift(),p+=l.shift(),z.push(h,p);i.bezierCurveTo(...z.slice(0,6)),i.bezierCurveTo(...z.slice(6)),l.shift();break;case 36:T=h+l.shift(),P=p+l.shift(),E=T+l.shift(),L=P+l.shift(),O=E+l.shift(),R=L,H=O+l.shift(),N=R,D=H+l.shift(),F=N+l.shift(),B=D+l.shift(),V=F,h=B,p=V,i.bezierCurveTo(T,P,E,L,O,R),i.bezierCurveTo(H,N,D,F,B,V);break;case 37:let v=h,y=p;z=[];for(let a=0;a<=4;a++)h+=l.shift(),p+=l.shift(),z.push(h,p);Math.abs(h-v)>Math.abs(p-y)?(h+=l.shift(),p=y):(h=v,p+=l.shift()),z.push(h,p),i.bezierCurveTo(...z.slice(0,6)),i.bezierCurveTo(...z.slice(6));break;default:throw new Error(`Unknown op: 12 ${m}`)}break;default:throw new Error(`Unknown op: ${m}`)}}else if(m<247)l.push(m-139);else if(m<251){var d=t.readUInt8();l.push(256*(m-247)+d+108)}else if(m<255){d=t.readUInt8();l.push(256*-(m-251)-d-108)}else l.push(t.readInt32BE()/65536)}};return I(),u&&i.closePath(),i}constructor(...e){super(...e),sd(this,"type","CFF")}}let by=new nd({originX:Fs,originY:Fs,type:new td(4),data:new Qs(e=>e.parent.buflen-e._currentOffset)});class My extends vy{getImageForSize(e){for(let o=0;o<this._font.sbix.imageTables.length;o++){var t=this._font.sbix.imageTables[o];if(t.ppem>=e)break}let a=t.imageOffsets,r=a[this.id],n=a[this.id+1];return r===n?null:(this._font.stream.pos=r,by.decode(this._font.stream,{buflen:n-r}))}render(e,t){let a=this.getImageForSize(t);if(null!=a){let r=t/this._font.unitsPerEm;e.image(a.data,{height:t,x:a.originX,y:(this.bbox.minY-a.originY)*r})}this._font.sbix.flags.renderOutlines&&super.render(e,t)}constructor(...e){super(...e),sd(this,"type","SBIX")}}class wy{constructor(e,t){this.glyph=e,this.color=t}}class xy extends uy{_getBBox(){let e=new Dg;for(let t=0;t<this.layers.length;t++){let a=this.layers[t].glyph.bbox;e.addPoint(a.minX,a.minY),e.addPoint(a.maxX,a.maxY)}return e}get layers(){let e=this._font.CPAL,t=this._font.COLR,a=0,r=t.baseGlyphRecord.length-1;for(;a<=r;){let e=a+r>>1;var n=t.baseGlyphRecord[e];if(this.id<n.gid)r=e-1;else{if(!(this.id>n.gid)){var o=n;break}a=e+1}}if(null==o){var i=this._font._getBaseGlyph(this.id);return[new wy(i,s={red:0,green:0,blue:0,alpha:255})]}let l=[];for(let d=o.firstLayerIndex;d<o.firstLayerIndex+o.numLayers;d++){n=t.layerRecords[d];var s=e.colorRecords[n.paletteIndex];i=this._font._getBaseGlyph(n.gid);l.push(new wy(i,s))}return l}render(e,t){for(let{glyph:a,color:r}of this.layers)e.fillColor([r.red,r.green,r.blue],r.alpha/255*100),a.render(e,t)}constructor(...e){super(...e),sd(this,"type","COLR")}}class Cy{normalizeCoords(e){let t=[];for(var a=0;a<this.font.fvar.axis.length;a++){let r=this.font.fvar.axis[a];e[a]<r.defaultValue?t.push((e[a]-r.defaultValue+Number.EPSILON)/(r.defaultValue-r.minValue+Number.EPSILON)):t.push((e[a]-r.defaultValue+Number.EPSILON)/(r.maxValue-r.defaultValue+Number.EPSILON))}if(this.font.avar)for(a=0;a<this.font.avar.segment.length;a++){let e=this.font.avar.segment[a];for(let r=0;r<e.correspondence.length;r++){let n=e.correspondence[r];if(r>=1&&t[a]<n.fromCoord){let o=e.correspondence[r-1];t[a]=((t[a]-o.fromCoord)*(n.toCoord-o.toCoord)+Number.EPSILON)/(n.fromCoord-o.fromCoord+Number.EPSILON)+o.toCoord;break}}}return t}transformPoints(e,t){if(!this.font.fvar||!this.font.gvar)return;let{gvar:a}=this.font;if(e>=a.glyphCount)return;let r=a.offsets[e];if(r===a.offsets[e+1])return;let{stream:n}=this.font;if(n.pos=r,n.pos>=n.length)return;let o=n.readUInt16BE(),i=r+n.readUInt16BE();if(32768&o){var l=n.pos;n.pos=i;var s=this.decodePoints();i=n.pos,n.pos=l}let d=t.map(e=>e.copy());o&=4095;for(let g=0;g<o;g++){let e=n.readUInt16BE(),r=n.readUInt16BE();if(32768&r){var c=[];for(let e=0;e<a.axisCount;e++)c.push(n.readInt16BE()/16384)}else{if((4095&r)>=a.globalCoordCount)throw new Error("Invalid gvar table");c=a.globalCoords[4095&r]}if(16384&r){var h=[];for(let e=0;e<a.axisCount;e++)h.push(n.readInt16BE()/16384);var p=[];for(let e=0;e<a.axisCount;e++)p.push(n.readInt16BE()/16384)}let o=this.tupleFactor(r,c,h,p);if(0===o){i+=e;continue}l=n.pos;if(n.pos=i,8192&r)var u=this.decodePoints();else u=s;let g=0===u.length?t.length:u.length,m=this.decodeDeltas(g),v=this.decodeDeltas(g);if(0===u.length)for(let a=0;a<t.length;a++){var f=t[a];f.x+=Math.round(m[a]*o),f.y+=Math.round(v[a]*o)}else{let e=d.map(e=>e.copy()),a=t.map(()=>!1);for(let r=0;r<u.length;r++){let n=u[r];if(n<t.length){let t=e[n];a[n]=!0,t.x+=m[r]*o,t.y+=v[r]*o}}this.interpolateMissingDeltas(e,d,a);for(let r=0;r<t.length;r++){let a=e[r].x-d[r].x,n=e[r].y-d[r].y;t[r].x=Math.round(t[r].x+a),t[r].y=Math.round(t[r].y+n)}}i+=e,n.pos=l}}decodePoints(){let e=this.font.stream,t=e.readUInt8();128&t&&(t=(127&t)<<8|e.readUInt8());let a=new Uint16Array(t),r=0,n=0;for(;r<t;){let o=e.readUInt8(),i=1+(127&o),l=128&o?e.readUInt16:e.readUInt8;for(let s=0;s<i&&r<t;s++)n+=l.call(e),a[r++]=n}return a}decodeDeltas(e){let t=this.font.stream,a=0,r=new Int16Array(e);for(;a<e;){let n=t.readUInt8(),o=1+(63&n);if(128&n)a+=o;else{let i=64&n?t.readInt16BE:t.readInt8;for(let n=0;n<o&&a<e;n++)r[a++]=i.call(t)}}return r}tupleFactor(e,t,a,r){let n=this.normalizedCoords,{gvar:o}=this.font,i=1;for(let l=0;l<o.axisCount;l++)if(0!==t[l]){if(0===n[l])return 0;if(16384&e){if(n[l]<a[l]||n[l]>r[l])return 0;i=n[l]<t[l]?i*(n[l]-a[l]+Number.EPSILON)/(t[l]-a[l]+Number.EPSILON):i*(r[l]-n[l]+Number.EPSILON)/(r[l]-t[l]+Number.EPSILON)}else{if(n[l]<Math.min(0,t[l])||n[l]>Math.max(0,t[l]))return 0;i=(i*n[l]+Number.EPSILON)/(t[l]+Number.EPSILON)}}return i}interpolateMissingDeltas(e,t,a){if(0===e.length)return;let r=0;for(;r<e.length;){let n=r,o=r,i=e[o];for(;!i.endContour;)i=e[++o];for(;r<=o&&!a[r];)r++;if(r>o)continue;let l=r,s=r;for(r++;r<=o;)a[r]&&(this.deltaInterpolate(s+1,r-1,s,r,t,e),s=r),r++;s===l?this.deltaShift(n,o,s,t,e):(this.deltaInterpolate(s+1,o,s,l,t,e),l>0&&this.deltaInterpolate(n,l-1,s,l,t,e)),r=o+1}}deltaInterpolate(e,t,a,r,n,o){if(e>t)return;let i=["x","y"];for(let s=0;s<i.length;s++){let d=i[s];if(n[a][d]>n[r][d]){var l=a;a=r,r=l}let c=n[a][d],h=n[r][d],p=o[a][d],u=o[r][d];if(c!==h||p===u){let a=c===h?0:(u-p)/(h-c);for(let r=e;r<=t;r++){let e=n[r][d];e<=c?e+=p-c:e>=h?e+=u-h:e=p+(e-c)*a,o[r][d]=e}}}}deltaShift(e,t,a,r,n){let o=n[a].x-r[a].x,i=n[a].y-r[a].y;if(0!==o||0!==i)for(let l=e;l<=t;l++)l!==a&&(n[l].x+=o,n[l].y+=i)}getAdvanceAdjustment(e,t){let a,r;if(t.advanceWidthMapping){let n=e;n>=t.advanceWidthMapping.mapCount&&(n=t.advanceWidthMapping.mapCount-1),t.advanceWidthMapping.entryFormat,({outerIndex:a,innerIndex:r}=t.advanceWidthMapping.mapData[n])}else a=0,r=e;return this.getDelta(t.itemVariationStore,a,r)}getDelta(e,t,a){if(t>=e.itemVariationData.length)return 0;let r=e.itemVariationData[t];if(a>=r.deltaSets.length)return 0;let n=r.deltaSets[a],o=this.getBlendVector(e,t),i=0;for(let l=0;l<r.regionIndexCount;l++)i+=n.deltas[l]*o[l];return i}getBlendVector(e,t){let a=e.itemVariationData[t];if(this.blendVectors.has(a))return this.blendVectors.get(a);let r=this.normalizedCoords,n=[];for(let o=0;o<a.regionIndexCount;o++){let t=1,i=a.regionIndexes[o],l=e.variationRegionList.variationRegions[i];for(let e=0;e<l.length;e++){let a,n=l[e];a=n.startCoord>n.peakCoord||n.peakCoord>n.endCoord||n.startCoord<0&&n.endCoord>0&&0!==n.peakCoord||0===n.peakCoord?1:r[e]<n.startCoord||r[e]>n.endCoord?0:r[e]===n.peakCoord?1:r[e]<n.peakCoord?(r[e]-n.startCoord+Number.EPSILON)/(n.peakCoord-n.startCoord+Number.EPSILON):(n.endCoord-r[e]+Number.EPSILON)/(n.endCoord-n.peakCoord+Number.EPSILON),t*=a}n[o]=t}return this.blendVectors.set(a,n),n}constructor(e,t){this.font=e,this.normalizedCoords=this.normalizeCoords(t),this.blendVectors=new Map}}Promise.resolve();class Sy{includeGlyph(e){return"object"==typeof e&&(e=e.id),null==this.mapping[e]&&(this.glyphs.push(e),this.mapping[e]=this.glyphs.length-1),this.mapping[e]}constructor(e){this.font=e,this.glyphs=[],this.mapping={},this.includeGlyph(0)}}class Iy{static size(e){return e>=0&&e<=255?1:2}static encode(e,t){t>=0&&t<=255?e.writeUInt8(t):e.writeInt16BE(t)}}let ky=new nd({numberOfContours:_s,xMin:_s,yMin:_s,xMax:_s,yMax:_s,endPtsOfContours:new Zs(Fs,"numberOfContours"),instructions:new Zs(Ds,Fs),flags:new Zs(Ds,0),xPoints:new Zs(Iy,0),yPoints:new Zs(Iy,0)});class Ay{encodeSimple(e,t=[]){let a=[],r=[],n=[],o=[],i=0,l=0,s=0,d=0,c=0;for(let m=0;m<e.commands.length;m++){let t=e.commands[m];for(let a=0;a<t.args.length;a+=2){let h=t.args[a],p=t.args[a+1],u=0;if("quadraticCurveTo"===t.command&&2===a){let t=e.commands[m+1];if(t&&"quadraticCurveTo"===t.command){let e=(l+t.args[0])/2,a=(s+t.args[1])/2;if(h===e&&p===a)continue}}"quadraticCurveTo"===t.command&&0===a||(u|=1),u=this._encodePoint(h,l,r,u,2,16),u=this._encodePoint(p,s,n,u,4,32),u===d&&i<255?(o[o.length-1]|=8,i++):(i>0&&(o.push(i),i=0),o.push(u),d=u),l=h,s=p,c++}"closePath"===t.command&&a.push(c-1)}e.commands.length>1&&"closePath"!==e.commands[e.commands.length-1].command&&a.push(c-1);let h=e.bbox,p={numberOfContours:a.length,xMin:h.minX,yMin:h.minY,xMax:h.maxX,yMax:h.maxY,endPtsOfContours:a,instructions:t,flags:o,xPoints:r,yPoints:n},u=ky.size(p),f=4-u%4,g=new Os(u+f);return ky.encode(g,p),0!==f&&g.fill(0,f),g.buffer}_encodePoint(e,t,a,r,n,o){let i=e-t;return e===t?r|=o:(-255<=i&&i<=255&&(r|=n,i<0?i=-i:r|=o),a.push(i)),r}}class Ty extends Sy{_addGlyph(e){let t=this.font.getGlyph(e),a=t._decode(),r=this.font.loca.offsets[e],n=this.font.loca.offsets[e+1],o=this.font._getTableStream("glyf");o.pos+=r;let i=o.readBuffer(n-r);if(a&&a.numberOfContours<0){i=new Uint8Array(i);let t=new DataView(i.buffer);for(let r of a.components)e=this.includeGlyph(r.glyphID),t.setUint16(r.pos,e)}else a&&this.font._variationProcessor&&(i=this.glyphEncoder.encodeSimple(t.path,a.instructions));return this.glyf.push(i),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:t.advanceWidth,bearing:t._getMetrics().leftBearing}),this.offset+=i.length,this.glyf.length-1}encode(){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};let e=0;for(;e<this.glyphs.length;)this._addGlyph(this.glyphs[e++]);let t=gc(this.font.maxp);t.numGlyphs=this.glyf.length,this.loca.offsets.push(this.offset);let a=gc(this.font.head);a.indexToLocFormat=this.loca.version;let r=gc(this.font.hhea);return r.numberOfMetrics=this.hmtx.metrics.length,kg.toBuffer({tables:{head:a,hhea:r,loca:this.loca,maxp:t,"cvt ":this.font["cvt "],prep:this.font.prep,glyf:this.glyf,hmtx:this.hmtx,fpgm:this.font.fpgm}})}constructor(e){super(e),this.glyphEncoder=new Ay}}class Py extends Sy{subsetCharstrings(){this.charstrings=[];let e={};for(let t of this.glyphs){this.charstrings.push(this.cff.getCharString(t));let a=this.font.getGlyph(t);a.path;for(let t in a._usedGsubrs)e[t]=!0}this.gsubrs=this.subsetSubrs(this.cff.globalSubrIndex,e)}subsetSubrs(e,t){let a=[];for(let r=0;r<e.length;r++){let n=e[r];t[r]?(this.cff.stream.pos=n.offset,a.push(this.cff.stream.readBuffer(n.length))):a.push(new Uint8Array([11]))}return a}subsetFontdict(e){e.FDArray=[],e.FDSelect={version:0,fds:[]};let t={},a=[],r={};for(let n of this.glyphs){let o=this.cff.fdForGlyph(n);if(null==o)continue;t[o]||(e.FDArray.push(Object.assign({},this.cff.topDict.FDArray[o])),a.push({}),r[o]=e.FDArray.length-1),t[o]=!0,e.FDSelect.fds.push(r[o]);let i=this.font.getGlyph(n);i.path;for(let e in i._usedSubrs)a[r[o]][e]=!0}for(let n=0;n<e.FDArray.length;n++){let t=e.FDArray[n];delete t.FontName,t.Private&&t.Private.Subrs&&(t.Private=Object.assign({},t.Private),t.Private.Subrs=this.subsetSubrs(t.Private.Subrs,a[n]))}}createCIDFontdict(e){let t={};for(let r of this.glyphs){let e=this.font.getGlyph(r);e.path;for(let a in e._usedSubrs)t[a]=!0}let a=Object.assign({},this.cff.topDict.Private);return this.cff.topDict.Private&&this.cff.topDict.Private.Subrs&&(a.Subrs=this.subsetSubrs(this.cff.topDict.Private.Subrs,t)),e.FDArray=[{Private:a}],e.FDSelect={version:3,nRanges:1,ranges:[{first:0,fd:0}],sentinel:this.charstrings.length}}addString(e){return e?(this.strings||(this.strings=[]),this.strings.push(e),Zh.length+this.strings.length-1):null}encode(){this.subsetCharstrings();let e={version:this.charstrings.length>255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},t=Object.assign({},this.cff.topDict);t.Private=null,t.charset=e,t.Encoding=null,t.CharStrings=this.charstrings;for(let r of["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"])t[r]=this.addString(this.cff.string(t[r]));t.ROS=[this.addString("Adobe"),this.addString("Identity"),0],t.CIDCount=this.charstrings.length,this.cff.isCIDFont?this.subsetFontdict(t):this.createCIDFontdict(t);let a={version:1,hdrSize:this.cff.hdrSize,offSize:4,header:this.cff.header,nameIndex:[this.cff.postscriptName],topDictIndex:[t],stringIndex:this.strings,globalSubrIndex:this.gsubrs};return Kp.toBuffer(a)}constructor(e){if(super(e),this.cff=this.font["CFF "],!this.cff)throw new Error("Not a CFF Font")}}class Ey{static probe(e){let t=Pg.decode(e.slice(0,4));return"true"===t||"OTTO"===t||t===String.fromCharCode(0,1,0,0)}setDefaultLanguage(e=null){this.defaultLanguage=e}_getTable(e){if(!(e.tag in this._tables))try{this._tables[e.tag]=this._decodeTable(e)}catch(t){}return this._tables[e.tag]}_getTableStream(e){let t=this.directory.tables[e];return t?(this.stream.pos=t.offset,this.stream):null}_decodeDirectory(){return this.directory=kg.decode(this.stream,{_startOffset:0})}_decodeTable(e){let t=this.stream.pos,a=this._getTableStream(e.tag),r=Cg[e.tag].decode(a,this,e.length);return this.stream.pos=t,r}getName(e,t=this.defaultLanguage||$c){let a=this.name&&this.name.records[e];return a&&(a[t]||a[this.defaultLanguage]||a[$c]||a.en||a[Object.keys(a)[0]])||null}get postscriptName(){return this.getName("postscriptName")}get fullName(){return this.getName("fullName")}get familyName(){return this.getName("fontFamily")}get subfamilyName(){return this.getName("fontSubfamily")}get copyright(){return this.getName("copyright")}get version(){return this.getName("version")}get ascent(){return this.hhea.ascent}get descent(){return this.hhea.descent}get lineGap(){return this.hhea.lineGap}get underlinePosition(){return this.post.underlinePosition}get underlineThickness(){return this.post.underlineThickness}get italicAngle(){return this.post.italicAngle}get capHeight(){let e=this["OS/2"];return e?e.capHeight:this.ascent}get xHeight(){let e=this["OS/2"];return e?e.xHeight:0}get numGlyphs(){return this.maxp.numGlyphs}get unitsPerEm(){return this.head.unitsPerEm}get bbox(){return Object.freeze(new Dg(this.head.xMin,this.head.yMin,this.head.xMax,this.head.yMax))}get _cmapProcessor(){return new Rg(this.cmap)}get characterSet(){return this._cmapProcessor.getCharacterSet()}hasGlyphForCodePoint(e){return!!this._cmapProcessor.lookup(e)}glyphForCodePoint(e){return this.getGlyph(this._cmapProcessor.lookup(e),[e])}glyphsForString(e){let t=[],a=e.length,r=0,n=-1,o=-1;for(;r<=a;){let i=0,l=0;if(r<a){if(i=e.charCodeAt(r++),55296<=i&&i<=56319&&r<a){let t=e.charCodeAt(r);56320<=t&&t<=57343&&(r++,i=((1023&i)<<10)+(1023&t)+65536)}l=65024<=i&&i<=65039||917760<=i&&i<=917999?1:0}else r++;0===o&&1===l?t.push(this.getGlyph(this._cmapProcessor.lookup(n,i),[n,i])):0===o&&0===l&&t.push(this.glyphForCodePoint(n)),n=i,o=l}return t}get _layoutEngine(){return new dy(this)}layout(e,t,a,r,n){return this._layoutEngine.layout(e,t,a,r,n)}stringsForGlyph(e){return this._layoutEngine.stringsForGlyph(e)}get availableFeatures(){return this._layoutEngine.getAvailableFeatures()}getAvailableFeatures(e,t){return this._layoutEngine.getAvailableFeatures(e,t)}_getBaseGlyph(e,t=[]){return this._glyphs[e]||(this.directory.tables.glyf?this._glyphs[e]=new vy(e,t,this):(this.directory.tables["CFF "]||this.directory.tables.CFF2)&&(this._glyphs[e]=new yy(e,t,this))),this._glyphs[e]||null}getGlyph(e,t=[]){return this._glyphs[e]||(this.directory.tables.sbix?this._glyphs[e]=new My(e,t,this):this.directory.tables.COLR&&this.directory.tables.CPAL?this._glyphs[e]=new xy(e,t,this):this._getBaseGlyph(e,t)),this._glyphs[e]||null}createSubset(){return this.directory.tables["CFF "]?new Py(this):new Ty(this)}get variationAxes(){let e={};if(!this.fvar)return e;for(let t of this.fvar.axis)e[t.axisTag.trim()]={name:t.name.en,min:t.minValue,default:t.defaultValue,max:t.maxValue};return e}get namedVariations(){let e={};if(!this.fvar)return e;for(let t of this.fvar.instance){let a={};for(let e=0;e<this.fvar.axis.length;e++){a[this.fvar.axis[e].axisTag.trim()]=t.coord[e]}e[t.name.en]=a}return e}getVariation(e){if(!this.directory.tables.fvar||!(this.directory.tables.gvar&&this.directory.tables.glyf||this.directory.tables.CFF2))throw new Error("Variations require a font with the fvar, gvar and glyf, or CFF2 tables.");if("string"==typeof e&&(e=this.namedVariations[e]),"object"!=typeof e)throw new Error("Variation settings must be either a variation name or settings object.");let t=this.fvar.axis.map((t,a)=>{let r=t.axisTag.trim();return r in e?Math.max(t.minValue,Math.min(t.maxValue,e[r])):t.defaultValue}),a=new Ps(this.stream.buffer);a.pos=this._directoryPos;let r=new Ey(a,t);return r._tables=this._tables,r}get _variationProcessor(){if(!this.fvar)return null;let e=this.variationCoords;return e||this.CFF2?(e||(e=this.fvar.axis.map(e=>e.defaultValue)),new Cy(this,e)):null}getFont(e){return this.getVariation(e)}constructor(e,t=null){sd(this,"type","TTF"),this.defaultLanguage=null,this.stream=e,this.variationCoords=t,this._directoryPos=this.stream.pos,this._tables={},this._glyphs={},this._decodeDirectory();for(let a in this.directory.tables){let e=this.directory.tables[a];Cg[a]&&e.length>0&&Object.defineProperty(this,a,{get:this._getTable.bind(this,e)})}}}dd([th],Ey.prototype,"bbox",null),dd([th],Ey.prototype,"_cmapProcessor",null),dd([th],Ey.prototype,"characterSet",null),dd([th],Ey.prototype,"_layoutEngine",null),dd([th],Ey.prototype,"variationAxes",null),dd([th],Ey.prototype,"namedVariations",null),dd([th],Ey.prototype,"_variationProcessor",null);let Ly=new nd({tag:new td(4),offset:new id(Vs,"void",{type:"global"}),compLength:Vs,length:Vs,origChecksum:Vs}),Oy=new nd({tag:new td(4),flavor:Vs,length:Vs,numTables:Fs,reserved:new ed(Fs),totalSfntSize:Vs,majorVersion:Fs,minorVersion:Fs,metaOffset:Vs,metaLength:Vs,metaOrigLength:Vs,privOffset:Vs,privLength:Vs,tables:new Zs(Ly,"numTables")});Oy.process=function(){let e={};for(let t of this.tables)e[t.tag]=t;this.tables=e};var Ry=Oy;class Hy extends vy{_decode(){return this._font._transformedGlyphs[this.id]}_getCBox(){return this.path.bbox}constructor(...e){super(...e),sd(this,"type","WOFF2")}}const Ny={decode(e){let t=0,a=[0,1,2,3,4];for(let r=0;r<a.length;r++){let a=e.readUInt8();if(3758096384&t)throw new Error("Overflow");if(t=t<<7|127&a,!(128&a))return t}throw new Error("Bad base 128 number")}};let Dy=["cmap","head","hhea","hmtx","maxp","name","OS/2","post","cvt ","fpgm","glyf","loca","prep","CFF ","VORG","EBDT","EBLC","gasp","hdmx","kern","LTSH","PCLT","VDMX","vhea","vmtx","BASE","GDEF","GPOS","GSUB","EBSC","JSTF","MATH","CBDT","CBLC","COLR","CPAL","SVG ","sbix","acnt","avar","bdat","bloc","bsln","cvar","fdsc","feat","fmtx","fvar","gvar","hsty","just","lcar","mort","morx","opbd","prop","trak","Zapf","Silf","Glat","Gloc","Feat","Sill"],Fy=new nd({flags:Ds,customTag:new $s(new td(4),e=>!(63&~e.flags)),tag:e=>e.customTag||Dy[63&e.flags],length:Ny,transformVersion:e=>e.flags>>>6&3,transformed:e=>"glyf"===e.tag||"loca"===e.tag?0===e.transformVersion:0!==e.transformVersion,transformLength:new $s(Ny,e=>e.transformed)}),By=new nd({tag:new td(4),flavor:Vs,length:Vs,numTables:Fs,reserved:new ed(Fs),totalSfntSize:Vs,totalCompressedSize:Vs,majorVersion:Fs,minorVersion:Fs,metaOffset:Vs,metaLength:Vs,metaOrigLength:Vs,privOffset:Vs,privLength:Vs,tables:new Zs(Fy,"numTables")});By.process=function(){let e={};for(let t=0;t<this.tables.length;t++){let a=this.tables[t];e[a.tag]=a}return this.tables=e};var Vy=By;class zy{decode(e,t){return new Ps(this._buf.decode(e,t))}constructor(e){this.length=e,this._buf=new Qs(e)}}let _y=new nd({version:Vs,numGlyphs:Fs,indexFormat:Fs,nContourStreamSize:Vs,nPointsStreamSize:Vs,flagStreamSize:Vs,glyphStreamSize:Vs,compositeStreamSize:Vs,bboxStreamSize:Vs,instructionStreamSize:Vs,nContours:new zy("nContourStreamSize"),nPoints:new zy("nPointsStreamSize"),flags:new zy("flagStreamSize"),glyphs:new zy("glyphStreamSize"),composites:new zy("compositeStreamSize"),bboxes:new zy("bboxStreamSize"),instructions:new zy("instructionStreamSize")});const Uy=253,qy=254,Gy=255,Wy=253;function jy(e){let t=e.readUInt8();return t===Uy?e.readUInt16BE():t===Gy?e.readUInt8()+Wy:t===qy?e.readUInt8()+2*Wy:t}function Xy(e,t){return 1&e?t:-t}function Zy(e,t,a){let r,n=r=0,o=[];for(let s=0;s<a;s++){let a=0,s=0,d=e.readUInt8(),c=!(d>>7);if(d&=127,d<10)a=0,s=Xy(d,((14&d)<<7)+t.readUInt8());else if(d<20)a=Xy(d,((d-10&14)<<7)+t.readUInt8()),s=0;else if(d<84){a=Xy(d,1+(48&(i=d-20))+((l=t.readUInt8())>>4)),s=Xy(d>>1,1+((12&i)<<2)+(15&l))}else if(d<120){var i;a=Xy(d,1+((i=d-84)/12<<8)+t.readUInt8()),s=Xy(d>>1,1+(i%12>>2<<8)+t.readUInt8())}else if(d<124){var l=t.readUInt8();let e=t.readUInt8();a=Xy(d,(l<<4)+(e>>4)),s=Xy(d>>1,((15&e)<<8)+t.readUInt8())}else a=Xy(d,t.readUInt16BE()),s=Xy(d>>1,t.readUInt16BE());n+=a,r+=s,o.push(new gy(c,!1,n,r))}return o}let Ky=new od(Vs,{65536:{numFonts:Vs,offsets:new Zs(Vs,"numFonts")},131072:{numFonts:Vs,offsets:new Zs(Vs,"numFonts"),dsigTag:Vs,dsigLength:Vs,dsigOffset:Vs}});let Yy=new td(Ds);new nd({len:Vs,buf:new Qs("len")});let Jy=new nd({id:Fs,nameOffset:_s,attr:Ds,dataOffset:Bs,handle:Vs}),Qy=new nd({name:new td(4),maxTypeIndex:Fs,refList:new id(Fs,new Zs(Jy,e=>e.maxTypeIndex+1),{type:"parent"})}),$y=new nd({length:Fs,types:new Zs(Qy,e=>e.length+1)}),eb=new nd({reserved:new ed(Ds,24),typeList:new id(Fs,$y),nameListOffset:new id(Fs,"void")}),tb=new nd({dataOffset:Vs,map:new id(Vs,eb),dataLength:Vs,mapLength:Vs});Jc(Ey),Jc(class extends Ey{static probe(e){return"wOFF"===Pg.decode(e.slice(0,4))}_decodeDirectory(){this.directory=Ry.decode(this.stream,{_startOffset:0})}_getTableStream(e){let t=this.directory.tables[e];if(t){if(this.stream.pos=t.offset,t.compLength<t.length){this.stream.pos+=2;let e=new Uint8Array(t.length),a=_d(this.stream.readBuffer(t.compLength-2),e);return new Ps(a)}return this.stream}return null}constructor(...e){super(...e),sd(this,"type","WOFF")}}),Jc(class extends Ey{static probe(e){return"wOF2"===Pg.decode(e.slice(0,4))}_decodeDirectory(){this.directory=Vy.decode(this.stream),this._dataPos=this.stream.pos}_decompress(){if(!this._decompressed){this.stream.pos=this._dataPos;let e=this.stream.readBuffer(this.directory.totalCompressedSize),t=0;for(let r in this.directory.tables){let e=this.directory.tables[r];e.offset=t,t+=null!=e.transformLength?e.transformLength:e.length}let a=Wc(e,t);if(!a)throw new Error("Error decoding compressed data in WOFF2");this.stream=new Ps(a),this._decompressed=!0}}_decodeTable(e){return this._decompress(),super._decodeTable(e)}_getBaseGlyph(e,t=[]){if(!this._glyphs[e])return this.directory.tables.glyf&&this.directory.tables.glyf.transformed?(this._transformedGlyphs||this._transformGlyfTable(),this._glyphs[e]=new Hy(e,t,this)):super._getBaseGlyph(e,t)}_transformGlyfTable(){this._decompress(),this.stream.pos=this.directory.tables.glyf.offset;let e=_y.decode(this.stream),t=[];for(let a=0;a<e.numGlyphs;a++){let a={},r=e.nContours.readInt16BE();if(a.numberOfContours=r,r>0){let t=[],n=0;for(let a=0;a<r;a++){n+=jy(e.nPoints),t.push(n)}a.points=Zy(e.flags,e.glyphs,n);for(let e=0;e<r;e++)a.points[t[e]-1].endContour=!0;jy(e.glyphs)}else if(r<0){if(vy.prototype._decodeComposite.call({_font:this},a,e.composites))jy(e.glyphs)}t.push(a)}this._transformedGlyphs=t}constructor(...e){super(...e),sd(this,"type","WOFF2")}}),Jc(class{static probe(e){return"ttcf"===Pg.decode(e.slice(0,4))}getFont(e){for(let t of this.header.offsets){let a=new Ps(this.stream.buffer);a.pos=t;let r=new Ey(a);if(r.postscriptName===e||r.postscriptName instanceof Uint8Array&&e instanceof Uint8Array&&r.postscriptName.every((t,a)=>e[a]===t))return r}return null}get fonts(){let e=[];for(let t of this.header.offsets){let a=new Ps(this.stream.buffer);a.pos=t,e.push(new Ey(a))}return e}constructor(e){if(sd(this,"type","TTC"),this.stream=e,"ttcf"!==e.readString(4))throw new Error("Not a TrueType collection");this.header=Ky.decode(e)}}),Jc(class{static probe(e){let t=new Ps(e);try{var a=tb.decode(t)}catch(r){return!1}for(let n of a.map.typeList.types)if("sfnt"===n.name)return!0;return!1}getFont(e){if(!this.sfnt)return null;for(let t of this.sfnt.refList){let a=this.header.dataOffset+t.dataOffset+4,r=new Ps(this.stream.buffer.slice(a)),n=new Ey(r);if(n.postscriptName===e||n.postscriptName instanceof Uint8Array&&e instanceof Uint8Array&&n.postscriptName.every((t,a)=>e[a]===t))return n}return null}get fonts(){let e=[];for(let t of this.sfnt.refList){let a=this.header.dataOffset+t.dataOffset+4,r=new Ps(this.stream.buffer.slice(a));e.push(new Ey(r))}return e}constructor(e){sd(this,"type","DFont"),this.stream=e,this.header=tb.decode(this.stream);for(let t of this.header.map.typeList.types){for(let e of t.refList)e.nameOffset>=0?(this.stream.pos=e.nameOffset+this.header.map.nameListOffset,e.name=Yy.decode(this.stream)):e.name=null;"sfnt"===t.name&&(this.sfnt=t)}}});const ab=[{kind:"base14",resourceName:"F1",baseFont:"Helvetica"},{kind:"base14",resourceName:"F2",baseFont:"Helvetica-Bold"},{kind:"base14",resourceName:"F3",baseFont:"Helvetica-Oblique"},{kind:"base14",resourceName:"F4",baseFont:"Helvetica-BoldOblique"}];function rb(e){return Number.isFinite(e)?Number(e.toFixed(3)).toString():"0"}function nb(e){return(new TextEncoder).encode(e).byteLength}function ob(e){return Array.from(e).map(e=>e.toString(16).padStart(2,"0").toUpperCase()).join("")}function ib(e){return Math.max(0,e).toString(16).padStart(4,"0").slice(-4).toUpperCase()}function lb(e,t,a){const[r,n,o]=function(e,t){if(!e)return t;const a=e.trim().replace(/^#/,"");return/^[0-9a-fA-F]{6}$/.test(a)?[Number.parseInt(a.slice(0,2),16)/255,Number.parseInt(a.slice(2,4),16)/255,Number.parseInt(a.slice(4,6),16)/255]:t}(e,a);return`${rb(r)} ${rb(n)} ${rb(o)} ${t}`}function sb(e,t){return(e&&e.trim().length>0?e:t).replaceAll(" ","_").replace(/[^A-Za-z0-9_.+-]/g,"")}const db=new Map([[8364,128],[8218,130],[402,131],[8222,132],[8230,133],[8224,134],[8225,135],[710,136],[8240,137],[352,138],[8249,139],[338,140],[381,142],[8216,145],[8217,146],[8220,147],[8221,148],[8226,149],[8211,150],[8212,151],[732,152],[8482,153],[353,154],[8250,155],[339,156],[382,158],[376,159]]);function cb(e){return Array.from(e).map(e=>function(e){const t=e.codePointAt(0)??63;return t>=32&&t<=126||t>=160&&t<=255?t:db.get(t)??63}(e).toString(16).padStart(2,"0").toUpperCase()).join("")}function hb(e){const t=[];for(let a of e)a>65535?(a-=65536,t.push(a>>>10&1023|55296),t.push(1023&a|56320)):t.push(a);return t.map(ib).join("")}function pb(e){return ib(e)}function ub(e){return`% OasisText ${hb(Array.from(e).map(e=>e.codePointAt(0)??65533))}`}class fb{constructor(e=ab){a(this,"pages",[]),a(this,"fontResources",new Map),a(this,"unicodeFontStates",new Map),a(this,"usedFontResourceNames",new Set),a(this,"imageResources",new Map);for(const t of e)this.registerFontResource(t)}registerFontResource(e){if(this.fontResources.set(e.resourceName,e),"unicode"===e.kind&&!this.unicodeFontStates.has(e.resourceName)){const t=Qc(e.fontData,e.postscriptName),a=t.createSubset(),r=1e3/t.unitsPerEm;this.unicodeFontStates.set(e.resourceName,{resource:e,font:t,subset:a,unicode:[[0]],widths:[t.getGlyph(0).advanceWidth*r],scale:r,layoutCache:new Map})}}addPage(e){return this.pages.push({width:Math.max(1,e.width),height:Math.max(1,e.height),commands:[],imageResourceNames:new Set}),this.pages.length-1}getPageCount(){return this.pages.length}drawRect(e,t){const a=this.pages[e];if(!a||t.width<=0||t.height<=0)return;const r=["q"];t.fill&&r.push(lb(t.fill,"rg",[1,1,1])),t.stroke&&(r.push(lb(t.stroke,"RG",[0,0,0])),r.push(`${rb(t.lineWidth??1)} w`)),r.push([rb(t.x),rb(a.height-t.y-t.height),rb(t.width),rb(t.height),"re"].join(" ")),t.fill&&t.stroke?r.push("B"):t.fill?r.push("f"):t.stroke&&r.push("S"),r.push("Q"),a.commands.push(r.join("\n"))}drawLine(e,t){const a=this.pages[e];if(!a)return;const r=t.dashArray&&t.dashArray.length>0?`[${t.dashArray.map(e=>rb(e)).join(" ")}] 0 d`:null,n=["q",lb(t.stroke,"RG",[0,0,0])];r&&n.push(r),n.push(`${rb(t.lineWidth??1)} w`,`${rb(t.x1)} ${rb(a.height-t.y1)} m`,`${rb(t.x2)} ${rb(a.height-t.y2)} l`,"S","Q"),a.commands.push(n.join("\n"))}drawText(e,t){const a=this.pages[e];if(!a||0===t.text.length)return;const r=function(e){return e.fontResourceName?e.fontResourceName:e.bold&&e.italic?"F4":e.bold?"F2":e.italic?"F3":"F1"}(t);this.usedFontResourceNames.add(r);const n=this.unicodeFontStates.get(r);n?this.drawUnicodeText(a,n,t):a.commands.push([ub(t.text),"BT",lb(t.color,"rg",[0,0,0]),`/${r} ${rb(t.fontSize??12)} Tf`,...t.horizontalScale&&t.horizontalScale>0&&100!==t.horizontalScale?[`${rb(t.horizontalScale)} Tz`]:[],...t.characterSpacing&&0!==t.characterSpacing?[`${rb(t.characterSpacing)} Tc`]:[],`${rb(t.x)} ${rb(a.height-t.y)} Td`,`<${cb(t.text)}> Tj`,"ET"].join("\n"))}registerImageResource(e){const t=e.resourceName??`Im${this.imageResources.size+1}`;return this.imageResources.has(t)||this.imageResources.set(t,{resourceName:t,width:Math.max(1,Math.round(e.width)),height:Math.max(1,Math.round(e.height)),data:e.data,filter:e.filter}),t}drawImage(e,t){const a=this.pages[e];!a||t.width<=0||t.height<=0||!this.imageResources.has(t.resourceName)||(a.imageResourceNames.add(t.resourceName),a.commands.push(["q",[rb(t.width),"0","0",rb(t.height),rb(t.x),rb(a.height-t.y-t.height),"cm"].join(" "),`/${t.resourceName} Do`,"Q"].join("\n")))}layoutUnicodeText(e,t){const a=e.layoutCache.get(t);if(a)return a;const r=e.font.layout(t);return e.layoutCache.set(t,r),r}encodeUnicodeGlyphRun(e,t){return t.glyphs.map((a,r)=>{const n=e.subset.includeGlyph(a.id),o=t.positions[r],i=a.advanceWidth*e.scale,l=((null==o?void 0:o.xAdvance)??a.advanceWidth)*e.scale;return null==e.widths[n]&&(e.widths[n]=i),null==e.unicode[n]&&(e.unicode[n]=a.codePoints.length>0?a.codePoints:[65533]),{glyphId:n,nominalWidth:i,desiredAdvance:l}})}drawUnicodeText(e,t,a){const r=this.layoutUnicodeText(t,a.text),n=this.encodeUnicodeGlyphRun(t,r);if(0===n.length)return;const o=n.some(e=>Math.abs(e.nominalWidth-e.desiredAdvance)>.01)?`[${n.map(e=>{const t=e.nominalWidth-e.desiredAdvance;return 0===t?`<${pb(e.glyphId)}>`:`<${pb(e.glyphId)}> ${rb(t)}`}).join(" ")}] TJ`:`<${n.map(e=>pb(e.glyphId)).join("")}> Tj`;e.commands.push([ub(a.text),"BT",lb(a.color,"rg",[0,0,0]),`/${t.resource.resourceName} ${rb(a.fontSize??12)} Tf`,...a.horizontalScale&&a.horizontalScale>0&&100!==a.horizontalScale?[`${rb(a.horizontalScale)} Tz`]:[],...a.characterSpacing&&0!==a.characterSpacing?[`${rb(a.characterSpacing)} Tc`]:[],`${rb(a.x)} ${rb(e.height-a.y)} Td`,o,"ET"].join("\n"))}toArrayBuffer(){const e=this.toUint8Array();return Uint8Array.from(e).buffer}toBlob(){return new Blob([this.toArrayBuffer()],{type:"application/pdf"})}toUint8Array(){0===this.pages.length&&this.addPage({width:612,height:792});const e=[],t=t=>{const a=e.length+1;return e.push({id:a,body:t}),a},a=t(""),r=t(""),n=Array.from(this.fontResources.values()).filter(e=>"base14"===e.kind||this.usedFontResourceNames.has(e.resourceName)),o=n.map(e=>{if("unicode"===e.kind){const a=this.unicodeFontStates.get(e.resourceName);if(a)return this.addUnicodeFontObjects(a,t)}return t(function(e){switch(e.kind){case"base14":return`<< /Type /Font /Subtype /Type1 /BaseFont /${e.baseFont} /Encoding /WinAnsiEncoding >>`;case"unicode":return"<< /Type /Font /Subtype /Type0 /BaseFont /OasisPending /Encoding /Identity-H >>"}}(e))}),i=n.map((e,t)=>`/${e.resourceName} ${o[t]} 0 R`).join(" "),l=new Map;for(const p of this.imageResources.values())l.set(p.resourceName,this.addImageObject(p,t));const s=[];for(const p of this.pages){const e=`${p.commands.join("\n")}\n`,a=t(`<< /Length ${nb(e)} >>\nstream\n${e}endstream`),n=Array.from(p.imageResourceNames).map(e=>{const t=l.get(e);return t?`/${e} ${t} 0 R`:""}).filter(Boolean).join(" "),o=n?` /XObject << ${n} >>`:"",d=t(["<< /Type /Page",`/Parent ${r} 0 R`,`/MediaBox [0 0 ${rb(p.width)} ${rb(p.height)}]`,`/Resources << /Font << ${i} >>${o} >>`,`/Contents ${a} 0 R`,">>"].join("\n"));s.push(d)}e[a-1].body=`<< /Type /Catalog /Pages ${r} 0 R >>`,e[r-1].body=["<< /Type /Pages",`/Kids [${s.map(e=>`${e} 0 R`).join(" ")}]`,`/Count ${s.length}`,">>"].join("\n");let d="%PDF-1.4\n% Oasis PDF\n";const c=[0];for(const p of e)c[p.id]=nb(d),d+=`${p.id} 0 obj\n${p.body}\nendobj\n`;const h=nb(d);d+=`xref\n0 ${e.length+1}\n`,d+="0000000000 65535 f \n";for(const p of e)d+=`${String(c[p.id]??0).padStart(10,"0")} 00000 n \n`;return d+=["trailer",`<< /Size ${e.length+1} /Root ${a} 0 R >>`,"startxref",String(h),"%%EOF",""].join("\n"),(new TextEncoder).encode(d)}addImageObject(e,t){return t(function(e,t){const a=`${ob(e)}>`;return[`<< /Length ${nb(a)}`," /Filter [/ASCIIHexDecode /DCTDecode]",` ${t.join(" ")}`," >>","stream",a,"endstream"].join("\n")}(e.data,["/Type /XObject","/Subtype /Image",`/Width ${e.width}`,`/Height ${e.height}`,"/ColorSpace /DeviceRGB","/BitsPerComponent 8"]))}addUnicodeFontObjects(e,t){var a,r,n,o;const i=e.subset.encode(),l=null!=e.subset.cff,s=t(function(e,t=""){const a=`${ob(e)}>`,r=t?` /${t.trim().replace(/^\/+/,"")}`:"";return`<< /Length ${nb(a)} /Filter /ASCIIHexDecode${r} >>\nstream\n${a}\nendstream`}(i,l?"Subtype /CIDFontType0C":"")),d=((null==(a=e.font["OS/2"])?void 0:a.sFamilyClass)??0)>>8||0;let c=4;(null==(r=e.font.post)?void 0:r.isFixedPitch)&&(c|=1),d>=1&&d<=7&&(c|=2),10===d&&(c|=8),(null==(o=null==(n=e.font.head)?void 0:n.macStyle)?void 0:o.italic)&&(c|=64);const h=`${sb(`${e.resource.resourceName}AAAAAA`,"OASISF").slice(0,6).padEnd(6,"A")}+${sb(e.font.postscriptName,e.resource.family)}`,p=e.font.bbox,u=t(["<< /Type /FontDescriptor",`/FontName /${h}`,`/Flags ${c}`,`/FontBBox [${[p.minX*e.scale,p.minY*e.scale,p.maxX*e.scale,p.maxY*e.scale].map(rb).join(" ")}]`,`/ItalicAngle ${rb(e.font.italicAngle??0)}`,`/Ascent ${rb(e.font.ascent*e.scale)}`,`/Descent ${rb(e.font.descent*e.scale)}`,`/CapHeight ${rb((e.font.capHeight??e.font.ascent)*e.scale)}`,`/XHeight ${rb((e.font.xHeight??0)*e.scale)}`,"/StemV 0",l?`/FontFile3 ${s} 0 R`:`/FontFile2 ${s} 0 R`,">>"].join("\n")),f=t(["<< /Type /Font","/Subtype /"+(l?"CIDFontType0":"CIDFontType2"),`/BaseFont /${h}`,"/CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >>",`/FontDescriptor ${u} 0 R`,`/W [0 [${e.widths.map(e=>rb(e??0)).join(" ")}]]`,l?"":"/CIDToGIDMap /Identity",">>"].filter(Boolean).join("\n")),g=t(function(e,t=""){const a=t?` /${t.trim().replace(/^\/+/,"")}`:"";return`<< /Length ${nb(e)}${a} >>\nstream\n${e}endstream`}(function(e){const t=e.map(e=>`<${hb(e)}>`).filter(e=>"<>"!==e);0===t.length&&t.push("<0000>");const a=[];for(let r=0;r<t.length;r+=256){const e=Math.min(r+256,t.length);a.push(`<${ib(r)}> <${ib(e-1)}> [${t.slice(r,e).join(" ")}]`)}return["/CIDInit /ProcSet findresource begin","12 dict begin","begincmap","/CIDSystemInfo <<"," /Registry (Adobe)"," /Ordering (UCS)"," /Supplement 0",">> def","/CMapName /Adobe-Identity-UCS def","/CMapType 2 def","1 begincodespacerange","<0000><ffff>","endcodespacerange",`${a.length} beginbfrange`,a.join("\n"),"endbfrange","endcmap","CMapName currentdict /CMap defineresource pop","end","end",""].join("\n")}(e.unicode)));return t(["<< /Type /Font","/Subtype /Type0",`/BaseFont /${h}`,"/Encoding /Identity-H",`/DescendantFonts [${f} 0 R]`,`/ToUnicode ${g} 0 R`,">>"].join("\n"))}}async function gb(e){const t=new As;await t.loadBundledUnicodeFaces({families:bs(e)});const a=new fb(t.getPdfFontResources()),r=Mi(e,void 0,void 0,void 0,{layoutMode:"wordParity"}),n=function(e){const t=new Map,a=dt(e);let r=[],n=!1;for(const o of a){const e=o.list;if(!e||"ordered"!==e.kind){r=[],n=!1;continue}const a=e.level??0;for(n||(r=[]),r.length>a+1&&(r.length=a+1);r.length<=a;)r.push(0);r[a]=0===r[a]&&"number"==typeof e.startAt?e.startAt:r[a]+1,t.set(o.id,r[a]),n=!0}return t}(e);for(const o of r.pages){const r=Math.max(1,es(o.pageSettings.width)),i=Math.max(1,es(o.pageSettings.height)),l=a.addPage({width:r,height:i});ys(a,l,r,i);const s=o.pageSettings.margins.left+o.pageSettings.margins.gutter,d=$e(o.pageSettings);await vs(a,l,o.headerBlocks,e,s,o.headerTop??tt(o.pageSettings),d,t,n),await vs(a,l,o.blocks,e,s,o.bodyTop??at(o.pageSettings),d,t,n),await vs(a,l,o.footerBlocks,e,s,o.footerTop??o.bodyBottom??o.pageSettings.height,d,t,n),o.footnoteBlocks&&o.footnoteBlocks.length>0&&void 0!==o.footnoteTop&&(void 0!==o.footnoteSeparatorTop&&a.drawLine(l,{x1:es(s),y1:es(o.footnoteSeparatorTop+.5),x2:es(s+Math.min(180,.35*d)),y2:es(o.footnoteSeparatorTop+.5),stroke:"#64748b",lineWidth:es(1)}),await mb(a,l,o.footnoteBlocks,o.footnoteReferenceIds??[],e,s,o.footnoteTop,d,t,n))}if(0===a.getPageCount()){const e=a.addPage({width:612,height:792});ys(a,e,612,792)}return a.toArrayBuffer()}async function mb(e,t,a,r,n,o,i,l,s,d){var c;let h=i;const p=new Set,u=new Map(r.map(e=>{var t;return[e,(null==(t=Mr(n,e))?void 0:t.run.text)??""]}));for(const f of a){const a=r.find(e=>f.blockId.startsWith(`${e}:`));if(a&&!p.has(a)){const r=u.get(a);if(r){const a="paragraph"===f.sourceBlock.type?f.sourceBlock:void 0,i=Ze(void 0,null==(c=null==a?void 0:a.style)?void 0:c.styleId,n.styles),l=s.resolveFontFace({fontFamily:i.fontFamily,bold:i.bold,italic:i.italic});e.drawText(t,{x:es(o),y:es(h+12),text:r,fontSize:ts(i),color:i.color??"#000000",bold:i.bold,italic:i.italic,fontResourceName:l.writerResourceName})}p.add(a)}await vs(e,t,[f],n,o+no,h,Math.max(24,l-no),s,d),h+=Math.max(0,f.estimatedHeight)+2}}function vb(e,t){const a=URL.createObjectURL(e),r=document.createElement("a");r.href=a,r.download=t,r.click(),URL.revokeObjectURL(a)}function yb(e){const t=e.download??vb;return{handleExportDocx:async()=>{const a=await async function(e){const t=await Kl(e);return new Blob([t],{type:"application/vnd.openxmlformats-officedocument.wordprocessingml.document"})}(e.document());t(a,"oasis-editor.docx"),e.focusInput()},handleExportPdf:async()=>{const a=await async function(e){const t=await gb(e);return new Blob([t],{type:"application/pdf"})}(e.document());t(a,"oasis-editor.pdf"),e.focusInput()}}}var bb={};function Mb(e,t){return void 0===t&&(t=Object),t&&"function"==typeof t.getOwnPropertyDescriptors&&(e=t.create(null,t.getOwnPropertyDescriptors(e))),t&&"function"==typeof t.freeze?t.freeze(e):e}function wb(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var xb=Mb({allowfullscreen:!0,async:!0,autofocus:!0,autoplay:!0,checked:!0,controls:!0,default:!0,defer:!0,disabled:!0,formnovalidate:!0,hidden:!0,ismap:!0,itemscope:!0,loop:!0,multiple:!0,muted:!0,nomodule:!0,novalidate:!0,open:!0,playsinline:!0,readonly:!0,required:!0,reversed:!0,selected:!0});var Cb=Mb({area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});var Sb=Mb({script:!1,style:!1,textarea:!0,title:!0});function Ib(e){return e===kb.HTML}var kb=Mb({HTML:"text/html",XML_APPLICATION:"application/xml",XML_TEXT:"text/xml",XML_XHTML_APPLICATION:"application/xhtml+xml",XML_SVG_IMAGE:"image/svg+xml"}),Ab=Object.keys(kb).map(function(e){return kb[e]});var Tb=Mb({HTML:"http://www.w3.org/1999/xhtml",SVG:"http://www.w3.org/2000/svg",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"});bb.assign=function(e,t){if(null===e||"object"!=typeof e)throw new TypeError("target is not an object");for(var a in t)wb(t,a)&&(e[a]=t[a]);return e},bb.find=function(e,t,a){if(void 0===a&&(a=Array.prototype),e&&"function"==typeof a.find)return a.find.call(e,t);for(var r=0;r<e.length;r++)if(wb(e,r)){var n=e[r];if(t.call(void 0,n,r,e))return n}},bb.freeze=Mb,bb.HTML_BOOLEAN_ATTRIBUTES=xb,bb.HTML_RAW_TEXT_ELEMENTS=Sb,bb.HTML_VOID_ELEMENTS=Cb,bb.hasDefaultHTMLNamespace=function(e){return Ib(e)||e===kb.XML_XHTML_APPLICATION},bb.hasOwn=wb,bb.isHTMLBooleanAttribute=function(e){return wb(xb,e.toLowerCase())},bb.isHTMLRawTextElement=function(e){var t=e.toLowerCase();return wb(Sb,t)&&!Sb[t]},bb.isHTMLEscapableRawTextElement=function(e){var t=e.toLowerCase();return wb(Sb,t)&&Sb[t]},bb.isHTMLMimeType=Ib,bb.isHTMLVoidElement=function(e){return wb(Cb,e.toLowerCase())},bb.isValidMimeType=function(e){return Ab.indexOf(e)>-1},bb.MIME_TYPE=kb,bb.NAMESPACE=Tb;var Pb={};function Eb(e,t){e.prototype=Object.create(Error.prototype,{constructor:{value:e},name:{value:e.name,enumerable:!0,writable:t}})}var Lb=bb.freeze({Error:"Error",IndexSizeError:"IndexSizeError",DomstringSizeError:"DomstringSizeError",HierarchyRequestError:"HierarchyRequestError",WrongDocumentError:"WrongDocumentError",InvalidCharacterError:"InvalidCharacterError",NoDataAllowedError:"NoDataAllowedError",NoModificationAllowedError:"NoModificationAllowedError",NotFoundError:"NotFoundError",NotSupportedError:"NotSupportedError",InUseAttributeError:"InUseAttributeError",InvalidStateError:"InvalidStateError",SyntaxError:"SyntaxError",InvalidModificationError:"InvalidModificationError",NamespaceError:"NamespaceError",InvalidAccessError:"InvalidAccessError",ValidationError:"ValidationError",TypeMismatchError:"TypeMismatchError",SecurityError:"SecurityError",NetworkError:"NetworkError",AbortError:"AbortError",URLMismatchError:"URLMismatchError",QuotaExceededError:"QuotaExceededError",TimeoutError:"TimeoutError",InvalidNodeTypeError:"InvalidNodeTypeError",DataCloneError:"DataCloneError",EncodingError:"EncodingError",NotReadableError:"NotReadableError",UnknownError:"UnknownError",ConstraintError:"ConstraintError",DataError:"DataError",TransactionInactiveError:"TransactionInactiveError",ReadOnlyError:"ReadOnlyError",VersionError:"VersionError",OperationError:"OperationError",NotAllowedError:"NotAllowedError",OptOutError:"OptOutError"}),Ob=Object.keys(Lb);function Rb(e){return"number"==typeof e&&e>=1&&e<=25}function Hb(e,t){var a;Rb(e)?(this.name=Ob[e],this.message=t||""):(this.message=e,this.name="string"==typeof(a=t)&&a.substring(a.length-Lb.Error.length)===Lb.Error?t:Lb.Error),Error.captureStackTrace&&Error.captureStackTrace(this,Hb)}Eb(Hb,!0),Object.defineProperties(Hb.prototype,{code:{enumerable:!0,get:function(){var e=Ob.indexOf(this.name);return Rb(e)?e:0}}});for(var Nb={INDEX_SIZE_ERR:1,DOMSTRING_SIZE_ERR:2,HIERARCHY_REQUEST_ERR:3,WRONG_DOCUMENT_ERR:4,INVALID_CHARACTER_ERR:5,NO_DATA_ALLOWED_ERR:6,NO_MODIFICATION_ALLOWED_ERR:7,NOT_FOUND_ERR:8,NOT_SUPPORTED_ERR:9,INUSE_ATTRIBUTE_ERR:10,INVALID_STATE_ERR:11,SYNTAX_ERR:12,INVALID_MODIFICATION_ERR:13,NAMESPACE_ERR:14,INVALID_ACCESS_ERR:15,VALIDATION_ERR:16,TYPE_MISMATCH_ERR:17,SECURITY_ERR:18,NETWORK_ERR:19,ABORT_ERR:20,URL_MISMATCH_ERR:21,QUOTA_EXCEEDED_ERR:22,TIMEOUT_ERR:23,INVALID_NODE_TYPE_ERR:24,DATA_CLONE_ERR:25},Db=Object.entries(Nb),Fb=0;Fb<Db.length;Fb++){Hb[Db[Fb][0]]=Db[Fb][1]}function Bb(e,t){this.message=e,this.locator=t,Error.captureStackTrace&&Error.captureStackTrace(this,Bb)}Eb(Bb),Pb.DOMException=Hb,Pb.DOMExceptionName=Lb,Pb.ExceptionCode=Nb,Pb.ParseError=Bb;var Vb={},zb={};function _b(e){try{"function"!=typeof e&&(e=RegExp);var t=new e("𝌆","u").exec("𝌆");return!!t&&2===t[0].length}catch(a){}return!1}var Ub=_b();function qb(e){if("["!==e.source[0])throw new Error(e+" can not be used with chars");return e.source.slice(1,e.source.lastIndexOf("]"))}function Gb(e,t){if("["!==e.source[0])throw new Error("/"+e.source+"/ can not be used with chars_without");if(!t||"string"!=typeof t)throw new Error(JSON.stringify(t)+" is not a valid search");if(-1===e.source.indexOf(t))throw new Error('"'+t+'" is not is /'+e.source+"/");if("-"===t&&1!==e.source.indexOf(t))throw new Error('"'+t+'" is not at the first postion of /'+e.source+"/");return new RegExp(e.source.replace(t,""),Ub?"u":"")}function Wb(e){var t=this;return new RegExp(Array.prototype.slice.call(arguments).map(function(e){var a="string"==typeof e;if(a&&void 0===t&&"|"===e)throw new Error("use regg instead of reg to wrap expressions with `|`!");return a?e:e.source}).join(""),Ub?"mu":"m")}function jb(e){if(0===arguments.length)throw new Error("no parameters provided");return Wb.apply(jb,["(?:"].concat(Array.prototype.slice.call(arguments),[")"]))}var Xb=/[-\x09\x0A\x0D\x20-\x2C\x2E-\uD7FF\uE000-\uFFFD]/;Ub&&(Xb=Wb("[",qb(Xb),"\\u{10000}-\\u{10FFFF}","]"));var Zb=new RegExp("[^"+qb(Xb)+"]",Ub?"u":""),Kb=/[\x20\x09\x0D\x0A]/,Yb=qb(Kb),Jb=Wb(Kb,"+"),Qb=Wb(Kb,"*"),$b=/[:_a-zA-Z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/;Ub&&($b=Wb("[",qb($b),"\\u{10000}-\\u{10FFFF}","]"));var eM=Wb("[",qb($b),qb(/[-.0-9\xB7]/),qb(/[\u0300-\u036F\u203F-\u2040]/),"]"),tM=Wb($b,eM,"*"),aM=Wb(eM,"+"),rM=Wb("&",tM,";"),nM=jb(/&#[0-9]+;|&#x[0-9a-fA-F]+;/),oM=jb(rM,"|",nM),iM=Wb("%",tM,";"),lM=jb(Wb('"',jb(/[^%&"]/,"|",iM,"|",oM),"*",'"'),"|",Wb("'",jb(/[^%&']/,"|",iM,"|",oM),"*","'")),sM=jb('"',jb(/[^<&"]/,"|",oM),"*",'"',"|","'",jb(/[^<&']/,"|",oM),"*","'"),dM=Wb(Gb($b,":"),Gb(eM,":"),"*"),cM=Wb(dM,jb(":",dM),"?"),hM=Wb("^",cM,"$"),pM=Wb("(",cM,")"),uM=jb(/"[^"]*"|'[^']*'/),fM=Wb(/^<\?/,"(",tM,")",jb(Jb,"(",Xb,"*?)"),"?",/\?>/),gM=/[\x20\x0D\x0Aa-zA-Z0-9-'()+,./:=?;!*#@$_%]/,mM=jb('"',gM,'*"',"|","'",Gb(gM,"'"),"*'"),vM="\x3c!--",yM=Wb(vM,jb(Gb(Xb,"-"),"|",Wb("-",Gb(Xb,"-"))),"*","--\x3e"),bM="#PCDATA",MM=jb(Wb(/\(/,Qb,bM,jb(Qb,/\|/,Qb,cM),"*",Qb,/\)\*/),"|",Wb(/\(/,Qb,bM,Qb,/\)/)),wM=jb("EMPTY","|","ANY","|",MM,"|",Wb(/\([^>]+\)/,/[?*+]?/)),xM=Wb("<!ELEMENT",Jb,jb(cM,"|",iM),Jb,jb(wM,"|",iM),Qb,">"),CM=Wb("NOTATION",Jb,/\(/,Qb,tM,jb(Qb,/\|/,Qb,tM),"*",Qb,/\)/),SM=Wb(/\(/,Qb,aM,jb(Qb,/\|/,Qb,aM),"*",Qb,/\)/),IM=jb(CM,"|",SM),kM=jb(/CDATA|ID|IDREF|IDREFS|ENTITY|ENTITIES|NMTOKEN|NMTOKENS/,"|",IM),AM=jb(/#REQUIRED|#IMPLIED/,"|",jb(jb("#FIXED",Jb),"?",sM)),TM=Wb("<!ATTLIST",Jb,tM,jb(Jb,tM,Jb,kM,Jb,AM),"*",Qb,">"),PM="about:legacy-compat",EM=jb('"'+PM+'"',"|","'"+PM+"'"),LM="SYSTEM",OM="PUBLIC",RM=jb(jb(LM,Jb,uM),"|",jb(OM,Jb,mM,Jb,uM)),HM=Wb("^",jb(jb(LM,Jb,"(?<SystemLiteralOnly>",uM,")"),"|",jb(OM,Jb,"(?<PubidLiteral>",mM,")",Jb,"(?<SystemLiteral>",uM,")"))),NM=Wb("^",mM,"$"),DM=Wb("^",uM,"$"),FM=jb(Jb,"NDATA",Jb,tM),BM="<!ENTITY",VM=Wb(BM,Jb,tM,Jb,jb(lM,"|",jb(RM,FM,"?")),Qb,">"),zM=jb(lM,"|",RM),_M=jb(VM,"|",Wb(BM,Jb,"%",Jb,tM,Jb,zM,Qb,">")),UM=Wb(OM,Jb,mM),qM=Wb("<!NOTATION",Jb,tM,Jb,jb(RM,"|",UM),Qb,">"),GM=Wb(Qb,"=",Qb),WM=/1[.]\d+/,jM=Wb(Jb,"version",GM,jb("'",WM,"'","|",'"',WM,'"')),XM=/[A-Za-z][-A-Za-z0-9._]*/,ZM=Wb(/^<\?xml/,jM,jb(Jb,"encoding",GM,jb('"',XM,'"',"|","'",XM,"'")),"?",jb(Jb,"standalone",GM,jb("'",jb("yes","|","no"),"'","|",'"',jb("yes","|","no"),'"')),"?",Qb,/\?>/),KM=Wb(Xb,"*?",/\]\]>/),YM=Wb(/<!\[CDATA\[/,KM);zb.chars=qb,zb.chars_without=Gb,zb.detectUnicodeSupport=_b,zb.reg=Wb,zb.regg=jb,zb.ABOUT_LEGACY_COMPAT=PM,zb.ABOUT_LEGACY_COMPAT_SystemLiteral=EM,zb.AttlistDecl=TM,zb.CDATA_START="<![CDATA[",zb.CDATA_END="]]>",zb.CDSect=YM,zb.Char=Xb,zb.Comment=yM,zb.COMMENT_START=vM,zb.COMMENT_END="--\x3e",zb.DOCTYPE_DECL_START="<!DOCTYPE",zb.elementdecl=xM,zb.EntityDecl=_M,zb.EntityValue=lM,zb.ExternalID=RM,zb.ExternalID_match=HM,zb.Name=tM,zb.NotationDecl=qM,zb.Reference=oM,zb.PEReference=iM,zb.PI=fM,zb.PUBLIC=OM,zb.PubidLiteral=mM,zb.PubidLiteral_match=NM,zb.QName=cM,zb.QName_exact=hM,zb.QName_group=pM,zb.S=Jb,zb.SChar_s=Yb,zb.S_OPT=Qb,zb.SYSTEM=LM,zb.SystemLiteral=uM,zb.SystemLiteral_match=DM,zb.InvalidChar=Zb,zb.UNICODE_REPLACEMENT_CHARACTER="�",zb.UNICODE_SUPPORT=Ub,zb.XMLDecl=ZM;var JM=bb,QM=JM.find,$M=JM.hasDefaultHTMLNamespace,ew=JM.hasOwn,tw=JM.isHTMLMimeType,aw=JM.isHTMLRawTextElement,rw=JM.isHTMLVoidElement,nw=JM.MIME_TYPE,ow=JM.NAMESPACE,iw=Symbol(),lw=Pb,sw=lw.DOMException,dw=lw.DOMExceptionName,cw=zb;function hw(e){if(e!==iw)throw new TypeError("Illegal constructor")}function pw(e){return""!==e}function uw(e,t){return ew(e,t)||(e[t]=!0),e}function fw(e){if(!e)return[];var t=function(e){return e?e.split(/[\t\n\f\r ]+/).filter(pw):[]}(e);return Object.keys(t.reduce(uw,{}))}function gw(e){if(!cw.QName_exact.test(e))throw new sw(sw.INVALID_CHARACTER_ERR,'invalid character in qualified name "'+e+'"')}function mw(e,t){gw(t),e=e||null;var a=null,r=t;if(t.indexOf(":")>=0){var n=t.split(":");a=n[0],r=n[1]}if(null!==a&&null===e)throw new sw(sw.NAMESPACE_ERR,"prefix is non-null and namespace is null");if("xml"===a&&e!==JM.NAMESPACE.XML)throw new sw(sw.NAMESPACE_ERR,'prefix is "xml" and namespace is not the XML namespace');if(("xmlns"===a||"xmlns"===t)&&e!==JM.NAMESPACE.XMLNS)throw new sw(sw.NAMESPACE_ERR,'either qualifiedName or prefix is "xmlns" and namespace is not the XMLNS namespace');if(e===JM.NAMESPACE.XMLNS&&"xmlns"!==a&&"xmlns"!==t)throw new sw(sw.NAMESPACE_ERR,'namespace is the XMLNS namespace and neither qualifiedName nor prefix is "xmlns"');return[e,a,r]}function vw(e,t){for(var a in e)ew(e,a)&&(t[a]=e[a])}function yw(e,t){var a=e.prototype;if(!(a instanceof t)){let r=function(){};r.prototype=t.prototype,r=new r,vw(a,r),e.prototype=a=r}a.constructor!=e&&("function"!=typeof e&&console.error("unknown Class:"+e),a.constructor=e)}var bw={},Mw=bw.ELEMENT_NODE=1,ww=bw.ATTRIBUTE_NODE=2,xw=bw.TEXT_NODE=3,Cw=bw.CDATA_SECTION_NODE=4,Sw=bw.ENTITY_REFERENCE_NODE=5,Iw=bw.ENTITY_NODE=6,kw=bw.PROCESSING_INSTRUCTION_NODE=7,Aw=bw.COMMENT_NODE=8,Tw=bw.DOCUMENT_NODE=9,Pw=bw.DOCUMENT_TYPE_NODE=10,Ew=bw.DOCUMENT_FRAGMENT_NODE=11,Lw=bw.NOTATION_NODE=12,Ow=JM.freeze({DOCUMENT_POSITION_DISCONNECTED:1,DOCUMENT_POSITION_PRECEDING:2,DOCUMENT_POSITION_FOLLOWING:4,DOCUMENT_POSITION_CONTAINS:8,DOCUMENT_POSITION_CONTAINED_BY:16,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC:32});function Rw(e,t){if(t.length<e.length)return Rw(t,e);var a=null;for(var r in e){if(e[r]!==t[r])return a;a=e[r]}return a}function Hw(e){return e.guid||(e.guid=Math.random()),e.guid}function Nw(){}function Dw(e,t){this._node=e,this._refresh=t,Fw(this)}function Fw(e){var t=e._node._inc||e._node.ownerDocument._inc;if(e._inc!==t){var a=e._refresh(e._node);if(Sx(e,"length",a.length),!e.$$length||a.length<e.$$length)for(var r=a.length;r in e;r++)ew(e,r)&&delete e[r];vw(a,e),e._inc=t}}function Bw(){}function Vw(e,t){for(var a=0;a<e.length;){if(e[a]===t)return a;a++}}function zw(e,t,a,r){if(r?t[Vw(t,r)]=a:(t[t.length]=a,t.length++),e){a.ownerElement=e;var n=e.ownerDocument;n&&(r&&Zw(n,e,r),function(e,t,a){e&&e._inc++;var r=a.namespaceURI;r===ow.XMLNS&&(t._nsMap[a.prefix?a.localName:""]=a.value)}(n,e,a))}}function _w(e,t,a){var r=Vw(t,a);if(r>=0){for(var n=t.length-1;r<=n;)t[r]=t[++r];if(t.length=n,e){var o=e.ownerDocument;o&&Zw(o,e,a),a.ownerElement=null}}}function Uw(){}function qw(e){hw(e)}function Gw(e){return("<"==e?"&lt;":">"==e&&"&gt;")||"&"==e&&"&amp;"||'"'==e&&"&quot;"||"&#"+e.charCodeAt()+";"}function Ww(e,t){jw(e,null,{enter:function(e){return!t(e)||jw.STOP}})}function jw(e,t,a){for(var r=[{node:e,context:t,phase:jw.ENTER}];r.length>0;){var n=r.pop();if(n.phase===jw.ENTER){var o=a.enter(n.node,n.context);if(o===jw.STOP)return jw.STOP;if(r.push({node:n.node,context:o,phase:jw.EXIT}),null==o)continue;for(var i=n.node.lastChild;i;)r.push({node:i,context:o,phase:jw.ENTER}),i=i.previousSibling}else a.exit&&a.exit(n.node,n.context)}}function Xw(e,t){hw(e);var a=t||{};this.ownerDocument=this,this.contentType=a.contentType||nw.XML_APPLICATION,this.type=tw(this.contentType)?"html":"xml"}function Zw(e,t,a,r){e&&e._inc++,a.namespaceURI===ow.XMLNS&&delete t._nsMap[a.prefix?a.localName:""]}function Kw(e,t,a){if(e&&e._inc){e._inc++;var r=t.childNodes;if(a&&!a.nextSibling)r[r.length++]=a;else{for(var n=t.firstChild,o=0;n;)r[o++]=n,n=n.nextSibling;r.length=o,delete r[r.length]}}}function Yw(e,t){if(e!==t.parentNode)throw new sw(sw.NOT_FOUND_ERR,"child's parent is not parent");var a=t.previousSibling,r=t.nextSibling;return a?a.nextSibling=r:e.firstChild=r,r?r.previousSibling=a:e.lastChild=a,Kw(e.ownerDocument,e),t.parentNode=null,t.previousSibling=null,t.nextSibling=null,t}function Jw(e){return e&&e.nodeType===qw.DOCUMENT_TYPE_NODE}function Qw(e){return e&&e.nodeType===qw.ELEMENT_NODE}function $w(e){return e&&e.nodeType===qw.TEXT_NODE}function ex(e,t){var a=e.childNodes||[];if(QM(a,Qw)||Jw(t))return!1;var r=QM(a,Jw);return!(t&&r&&a.indexOf(r)>a.indexOf(t))}function tx(e,t){var a=e.childNodes||[];if(QM(a,function(e){return Qw(e)&&e!==t}))return!1;var r=QM(a,Jw);return!(t&&r&&a.indexOf(r)>a.indexOf(t))}function ax(e,t,a){if(!function(e){return e&&(e.nodeType===qw.DOCUMENT_NODE||e.nodeType===qw.DOCUMENT_FRAGMENT_NODE||e.nodeType===qw.ELEMENT_NODE)}(e))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Unexpected parent node type "+e.nodeType);if(a&&a.parentNode!==e)throw new sw(sw.NOT_FOUND_ERR,"child not in parent");if(!function(e){return e&&(e.nodeType===qw.CDATA_SECTION_NODE||e.nodeType===qw.COMMENT_NODE||e.nodeType===qw.DOCUMENT_FRAGMENT_NODE||e.nodeType===qw.DOCUMENT_TYPE_NODE||e.nodeType===qw.ELEMENT_NODE||e.nodeType===qw.PROCESSING_INSTRUCTION_NODE||e.nodeType===qw.TEXT_NODE)}(t)||Jw(t)&&e.nodeType!==qw.DOCUMENT_NODE)throw new sw(sw.HIERARCHY_REQUEST_ERR,"Unexpected node type "+t.nodeType+" for parent node type "+e.nodeType)}function rx(e,t,a){var r=e.childNodes||[],n=t.childNodes||[];if(t.nodeType===qw.DOCUMENT_FRAGMENT_NODE){var o=n.filter(Qw);if(o.length>1||QM(n,$w))throw new sw(sw.HIERARCHY_REQUEST_ERR,"More than one element or text in fragment");if(1===o.length&&!ex(e,a))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Element in fragment can not be inserted before doctype")}if(Qw(t)&&!ex(e,a))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Only one element can be added and only after doctype");if(Jw(t)){if(QM(r,Jw))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Only one doctype is allowed");var i=QM(r,Qw);if(a&&r.indexOf(i)<r.indexOf(a))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Doctype can only be inserted before an element");if(!a&&i)throw new sw(sw.HIERARCHY_REQUEST_ERR,"Doctype can not be appended since element is present")}}function nx(e,t,a){var r=e.childNodes||[],n=t.childNodes||[];if(t.nodeType===qw.DOCUMENT_FRAGMENT_NODE){var o=n.filter(Qw);if(o.length>1||QM(n,$w))throw new sw(sw.HIERARCHY_REQUEST_ERR,"More than one element or text in fragment");if(1===o.length&&!tx(e,a))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Element in fragment can not be inserted before doctype")}if(Qw(t)&&!tx(e,a))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Only one element can be added and only after doctype");if(Jw(t)){if(QM(r,function(e){return Jw(e)&&e!==a}))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Only one doctype is allowed");var i=QM(r,Qw);if(a&&r.indexOf(i)<r.indexOf(a))throw new sw(sw.HIERARCHY_REQUEST_ERR,"Doctype can only be inserted before an element")}}function ox(e,t,a,r){ax(e,t,a),e.nodeType===qw.DOCUMENT_NODE&&(r||rx)(e,t,a);var n=t.parentNode;if(n&&n.removeChild(t),t.nodeType===Ew){var o=t.firstChild;if(null==o)return t;var i=t.lastChild}else o=i=t;var l=a?a.previousSibling:e.lastChild;o.previousSibling=l,i.nextSibling=a,l?l.nextSibling=o:e.firstChild=o,null==a?e.lastChild=i:a.previousSibling=i;do{o.parentNode=e}while(o!==i&&(o=o.nextSibling));return Kw(e.ownerDocument||e,e,t),t.nodeType==Ew&&(t.firstChild=t.lastChild=null),t}function ix(e){hw(e),this._nsMap=Object.create(null)}function lx(e){hw(e),this.namespaceURI=null,this.prefix=null,this.ownerElement=null}function sx(e){hw(e)}function dx(e){hw(e)}function cx(e){hw(e)}function hx(e){hw(e)}function px(e){hw(e)}function ux(e){hw(e)}function fx(e){hw(e)}function gx(e){hw(e)}function mx(e){hw(e)}function vx(e){hw(e)}function yx(){}function bx(e){var t;t="function"==typeof e?{requireWellFormed:!1,splitCDATASections:!0,nodeFilter:e}:null!=e?{requireWellFormed:!!e.requireWellFormed,splitCDATASections:!1!==e.splitCDATASections,nodeFilter:e.nodeFilter||null}:{requireWellFormed:!1,splitCDATASections:!0,nodeFilter:null};var a=[],r=this.nodeType===Tw&&this.documentElement||this,n=r.prefix,o=r.namespaceURI;if(o&&null==n&&null==(n=r.lookupPrefix(o)))var i=[{namespace:o,prefix:null}];return xx(this,a,i,t),a.join("")}function Mx(e,t,a){var r=e.prefix||"",n=e.namespaceURI;if(!n)return!1;if("xml"===r&&n===ow.XML||n===ow.XMLNS)return!1;for(var o=a.length;o--;){var i=a[o];if(i.prefix===r)return i.namespace!==n}return!0}function wx(e,t,a){e.push(" ",t,'="',a.replace(/[<>&"\t\n\r]/g,Gw),'"')}function xx(e,t,a,r){a||(a=[]);var n=r.nodeFilter,o=r.requireWellFormed,i=r.splitCDATASections,l="html"===(e.nodeType===Tw?e:e.ownerDocument).type;jw(e,{ns:a},{enter:function(e,a){var s=a.ns;if(n){if(!(e=n(e)))return null;if("string"==typeof e)return t.push(e),null}switch(e.nodeType){case Mw:var d=e.attributes,c=d.length,h=e.tagName,p=h;if(!l&&!e.prefix&&e.namespaceURI){for(var u,f=0;f<d.length;f++)if("xmlns"===d.item(f).name){u=d.item(f).value;break}if(!u)for(var g=s.length-1;g>=0;g--){if(""===(m=s[g]).prefix&&m.namespace===e.namespaceURI){u=m.namespace;break}}if(u!==e.namespaceURI)for(g=s.length-1;g>=0;g--){var m;if((m=s[g]).namespace===e.namespaceURI){m.prefix&&(p=m.prefix+":"+h);break}}}t.push("<",p);for(var v=s.slice(),y=0;y<c;y++){"xmlns"==(b=d.item(y)).prefix?v.push({prefix:b.localName,namespace:b.value}):"xmlns"==b.nodeName&&v.push({prefix:"",namespace:b.value})}for(y=0;y<c;y++){var b;if(Mx(b=d.item(y),0,v)){var M=b.prefix||"",w=b.namespaceURI;wx(t,M?"xmlns:"+M:"xmlns",w),v.push({prefix:M,namespace:w})}var x=n?n(b):b;x&&("string"==typeof x?t.push(x):wx(t,x.name,x.value))}if(h===p&&Mx(e,0,v)){var C=e.prefix||"";w=e.namespaceURI;wx(t,C?"xmlns:"+C:"xmlns",w),v.push({prefix:C,namespace:w})}var S=!e.firstChild;if(S&&(l||e.namespaceURI===ow.HTML)&&(S=rw(h)),S)return t.push("/>"),null;if(t.push(">"),l&&aw(h)){for(var I=e.firstChild;I;)I.data?t.push(I.data):xx(I,t,v.slice(),r),I=I.nextSibling;return t.push("</",p,">"),null}return{ns:v,tag:p};case Tw:case Ew:if(o&&e.nodeType===Tw&&null==e.documentElement)throw new sw("The Document has no documentElement",dw.InvalidStateError);return{ns:s};case ww:return wx(t,e.name,e.value),null;case xw:if(o&&cw.InvalidChar.test(e.data))throw new sw("The Text node data contains characters outside the XML Char production",dw.InvalidStateError);return t.push(e.data.replace(/[<&>]/g,Gw)),null;case Cw:if(o&&-1!==e.data.indexOf("]]>"))throw new sw('The CDATASection data contains "]]>"',dw.InvalidStateError);return i?t.push(cw.CDATA_START,e.data.replace(/]]>/g,"]]]]><![CDATA[>"),cw.CDATA_END):t.push(cw.CDATA_START,e.data,cw.CDATA_END),null;case Aw:if(o){if(cw.InvalidChar.test(e.data))throw new sw("The comment node data contains characters outside the XML Char production",dw.InvalidStateError);if(-1!==e.data.indexOf("--")||"-"===e.data[e.data.length-1])throw new sw('The comment node data contains "--" or ends with "-"',dw.InvalidStateError)}return t.push(cw.COMMENT_START,e.data,cw.COMMENT_END),null;case Pw:var k=e.publicId,A=e.systemId;if(o){if(k&&!cw.PubidLiteral_match.test(k))throw new sw("DocumentType publicId is not a valid PubidLiteral",dw.InvalidStateError);if(A&&"."!==A&&!cw.SystemLiteral_match.test(A))throw new sw("DocumentType systemId is not a valid SystemLiteral",dw.InvalidStateError);if(e.internalSubset&&-1!==e.internalSubset.indexOf("]>"))throw new sw('DocumentType internalSubset contains "]>"',dw.InvalidStateError)}return t.push(cw.DOCTYPE_DECL_START," ",e.name),k?(t.push(" ",cw.PUBLIC," ",k),A&&"."!==A&&t.push(" ",A)):A&&"."!==A&&t.push(" ",cw.SYSTEM," ",A),e.internalSubset&&t.push(" [",e.internalSubset,"]"),t.push(">"),null;case kw:if(o){if(-1!==e.target.indexOf(":")||"xml"===e.target.toLowerCase())throw new sw("The ProcessingInstruction target is not well-formed",dw.InvalidStateError);if(cw.InvalidChar.test(e.data))throw new sw("The ProcessingInstruction data contains characters outside the XML Char production",dw.InvalidStateError);if(-1!==e.data.indexOf("?>"))throw new sw('The ProcessingInstruction data contains "?>"',dw.InvalidStateError)}return t.push("<?",e.target," ",e.data,"?>"),null;case Sw:return t.push("&",e.nodeName,";"),null;default:return t.push("??",e.nodeName),null}},exit:function(e,a){a&&a.tag&&t.push("</",a.tag,">")}})}function Cx(e,t,a){var r;return jw(t,null,{enter:function(t,n){var o=new t.constructor(iw);for(var i in t)if(ew(t,i)){var l=t[i];"object"!=typeof l&&l!=o[i]&&(o[i]=l)}t.childNodes&&(o.childNodes=new Nw),o.ownerDocument=e;var s=a;switch(o.nodeType){case Mw:var d=t.attributes,c=o.attributes=new Bw,h=d.length;c._ownerElement=o;for(var p=0;p<h;p++)o.setAttributeNode(Cx(e,d.item(p),!0));break;case ww:s=!0}return null!==n?n.appendChild(o):r=o,s?o:null}}),r}function Sx(e,t,a){e[t]=a}function Ix(e){for(var t=[],a=e.firstChild;a;)a.nodeType===Mw&&t.push(a),a=a.nextSibling;return t}Nw.prototype={length:0,item:function(e){return e>=0&&e<this.length?this[e]:null},toString:function(e){var t;t="function"==typeof e?{requireWellFormed:!1,splitCDATASections:!0,nodeFilter:e}:e?{requireWellFormed:!!e.requireWellFormed,splitCDATASections:!1!==e.splitCDATASections,nodeFilter:e.nodeFilter||null}:{requireWellFormed:!1,splitCDATASections:!0,nodeFilter:null};for(var a=[],r=0;r<this.length;r++)xx(this[r],a,null,t);return a.join("")},filter:function(e){return Array.prototype.filter.call(this,e)},indexOf:function(e){return Array.prototype.indexOf.call(this,e)}},Nw.prototype[Symbol.iterator]=function(){var e=this,t=0;return{next:function(){return t<e.length?{value:e[t++],done:!1}:{done:!0}},return:function(){return{done:!0}}}},Dw.prototype.item=function(e){return Fw(this),this[e]||null},yw(Dw,Nw),Bw.prototype={length:0,item:Nw.prototype.item,getNamedItem:function(e){this._ownerElement&&this._ownerElement._isInHTMLDocumentAndNamespace()&&(e=e.toLowerCase());for(var t=0;t<this.length;){var a=this[t];if(a.nodeName===e)return a;t++}return null},setNamedItem:function(e){var t=e.ownerElement;if(t&&t!==this._ownerElement)throw new sw(sw.INUSE_ATTRIBUTE_ERR);var a=this.getNamedItemNS(e.namespaceURI,e.localName);return a===e?e:(zw(this._ownerElement,this,e,a),a)},setNamedItemNS:function(e){return this.setNamedItem(e)},removeNamedItem:function(e){var t=this.getNamedItem(e);if(!t)throw new sw(sw.NOT_FOUND_ERR,e);return _w(this._ownerElement,this,t),t},removeNamedItemNS:function(e,t){var a=this.getNamedItemNS(e,t);if(!a)throw new sw(sw.NOT_FOUND_ERR,e?e+" : "+t:t);return _w(this._ownerElement,this,a),a},getNamedItemNS:function(e,t){e||(e=null);for(var a=0;a<this.length;){var r=this[a];if(r.localName===t&&r.namespaceURI===e)return r;a++}return null}},Bw.prototype[Symbol.iterator]=function(){var e=this,t=0;return{next:function(){return t<e.length?{value:e[t++],done:!1}:{done:!0}},return:function(){return{done:!0}}}},Uw.prototype={hasFeature:function(e,t){return!0},createDocument:function(e,t,a){var r=nw.XML_APPLICATION;e===ow.HTML?r=nw.XML_XHTML_APPLICATION:e===ow.SVG&&(r=nw.XML_SVG_IMAGE);var n=new Xw(iw,{contentType:r});if(n.implementation=this,n.childNodes=new Nw,n.doctype=a||null,a&&n.appendChild(a),t){var o=n.createElementNS(e,t);n.appendChild(o)}return n},createDocumentType:function(e,t,a,r){gw(e);var n=new px(iw);return n.name=e,n.nodeName=e,n.publicId=t||"",n.systemId=a||"",n.internalSubset=r||"",n.childNodes=new Nw,n},createHTMLDocument:function(e){var t=new Xw(iw,{contentType:nw.HTML});if(t.implementation=this,t.childNodes=new Nw,!1!==e){t.doctype=this.createDocumentType("html"),t.doctype.ownerDocument=t,t.appendChild(t.doctype);var a=t.createElement("html");t.appendChild(a);var r=t.createElement("head");if(a.appendChild(r),"string"==typeof e){var n=t.createElement("title");n.appendChild(t.createTextNode(e)),r.appendChild(n)}a.appendChild(t.createElement("body"))}return t}},qw.prototype={firstChild:null,lastChild:null,previousSibling:null,nextSibling:null,parentNode:null,get parentElement(){return this.parentNode&&this.parentNode.nodeType===this.ELEMENT_NODE?this.parentNode:null},childNodes:null,ownerDocument:null,nodeValue:null,namespaceURI:null,prefix:null,localName:null,baseURI:"about:blank",get isConnected(){var e=this.getRootNode();return e&&e.nodeType===e.DOCUMENT_NODE},contains:function(e){if(!e)return!1;var t=e;do{if(this===t)return!0;t=t.parentNode}while(t);return!1},getRootNode:function(e){var t=this;do{if(!t.parentNode)return t;t=t.parentNode}while(t)},isEqualNode:function(e){if(!e)return!1;for(var t=[{node:this,other:e}];t.length>0;){var a=t.pop(),r=a.node,n=a.other;if(r.nodeType!==n.nodeType)return!1;switch(r.nodeType){case r.DOCUMENT_TYPE_NODE:if(r.name!==n.name)return!1;if(r.publicId!==n.publicId)return!1;if(r.systemId!==n.systemId)return!1;break;case r.ELEMENT_NODE:if(r.namespaceURI!==n.namespaceURI)return!1;if(r.prefix!==n.prefix)return!1;if(r.localName!==n.localName)return!1;if(r.attributes.length!==n.attributes.length)return!1;for(var o=0;o<r.attributes.length;o++){var i=r.attributes.item(o),l=n.getAttributeNodeNS(i.namespaceURI,i.localName);if(!l)return!1;t.push({node:i,other:l})}break;case r.ATTRIBUTE_NODE:if(r.namespaceURI!==n.namespaceURI)return!1;if(r.localName!==n.localName)return!1;if(r.value!==n.value)return!1;break;case r.PROCESSING_INSTRUCTION_NODE:if(r.target!==n.target||r.data!==n.data)return!1;break;case r.TEXT_NODE:case r.CDATA_SECTION_NODE:case r.COMMENT_NODE:if(r.data!==n.data)return!1}if(r.childNodes.length!==n.childNodes.length)return!1;for(o=r.childNodes.length-1;o>=0;o--)t.push({node:r.childNodes[o],other:n.childNodes[o]})}return!0},isSameNode:function(e){return this===e},insertBefore:function(e,t){return ox(this,e,t)},replaceChild:function(e,t){ox(this,e,t,nx),t&&this.removeChild(t)},removeChild:function(e){return Yw(this,e)},appendChild:function(e){return this.insertBefore(e,null)},hasChildNodes:function(){return null!=this.firstChild},cloneNode:function(e){return Cx(this.ownerDocument||this,this,e)},normalize:function(){jw(this,null,{enter:function(e){for(var t=e.firstChild;t;){var a=t.nextSibling;null!==a&&a.nodeType===xw&&t.nodeType===xw?(e.removeChild(a),t.appendData(a.data)):t=a}return!0}})},isSupported:function(e,t){return this.ownerDocument.implementation.hasFeature(e,t)},lookupPrefix:function(e){for(var t=this;t;){var a=t._nsMap;if(a)for(var r in a)if(ew(a,r)&&a[r]===e)return r;t=t.nodeType==ww?t.ownerDocument:t.parentNode}return null},lookupNamespaceURI:function(e){for(var t=this;t;){var a=t._nsMap;if(a&&ew(a,e))return a[e];t=t.nodeType==ww?t.ownerDocument:t.parentNode}return null},isDefaultNamespace:function(e){return null==this.lookupPrefix(e)},compareDocumentPosition:function(e){if(this===e)return 0;var t=e,a=this,r=null,n=null;if(t instanceof lx&&(t=(r=t).ownerElement),a instanceof lx&&(a=(n=a).ownerElement,r&&t&&a===t))for(var o,i=0;o=a.attributes[i];i++){if(o===r)return Ow.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC+Ow.DOCUMENT_POSITION_PRECEDING;if(o===n)return Ow.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC+Ow.DOCUMENT_POSITION_FOLLOWING}if(!t||!a||a.ownerDocument!==t.ownerDocument)return Ow.DOCUMENT_POSITION_DISCONNECTED+Ow.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC+(Hw(a.ownerDocument)>Hw(t.ownerDocument)?Ow.DOCUMENT_POSITION_FOLLOWING:Ow.DOCUMENT_POSITION_PRECEDING);if(n&&t===a)return Ow.DOCUMENT_POSITION_CONTAINS+Ow.DOCUMENT_POSITION_PRECEDING;if(r&&t===a)return Ow.DOCUMENT_POSITION_CONTAINED_BY+Ow.DOCUMENT_POSITION_FOLLOWING;for(var l=[],s=t.parentNode;s;){if(!n&&s===a)return Ow.DOCUMENT_POSITION_CONTAINED_BY+Ow.DOCUMENT_POSITION_FOLLOWING;l.push(s),s=s.parentNode}l.reverse();for(var d=[],c=a.parentNode;c;){if(!r&&c===t)return Ow.DOCUMENT_POSITION_CONTAINS+Ow.DOCUMENT_POSITION_PRECEDING;d.push(c),c=c.parentNode}d.reverse();var h=Rw(l,d);for(var p in h.childNodes){var u=h.childNodes[p];if(u===a)return Ow.DOCUMENT_POSITION_FOLLOWING;if(u===t)return Ow.DOCUMENT_POSITION_PRECEDING;if(d.indexOf(u)>=0)return Ow.DOCUMENT_POSITION_FOLLOWING;if(l.indexOf(u)>=0)return Ow.DOCUMENT_POSITION_PRECEDING}return 0}},vw(bw,qw),vw(bw,qw.prototype),vw(Ow,qw),vw(Ow,qw.prototype),jw.STOP=Symbol("walkDOM.STOP"),jw.ENTER=0,jw.EXIT=1,Xw.prototype={implementation:null,nodeName:"#document",nodeType:Tw,doctype:null,documentElement:null,_inc:1,insertBefore:function(e,t){if(e.nodeType===Ew){for(var a=e.firstChild;a;){var r=a.nextSibling;this.insertBefore(a,t),a=r}return e}return ox(this,e,t),e.ownerDocument=this,null===this.documentElement&&e.nodeType===Mw&&(this.documentElement=e),e},removeChild:function(e){var t=Yw(this,e);return t===this.documentElement&&(this.documentElement=null),t},replaceChild:function(e,t){ox(this,e,t,nx),e.ownerDocument=this,t&&this.removeChild(t),Qw(e)&&(this.documentElement=e)},importNode:function(e,t){return function(e,t,a){var r;return jw(t,null,{enter:function(t,n){var o=t.cloneNode(!1);return o.ownerDocument=e,o.parentNode=null,null===n?r=o:n.appendChild(o),t.nodeType===ww||a?o:null}}),r}(this,e,t)},getElementById:function(e){var t=null;return Ww(this.documentElement,function(a){if(a.nodeType==Mw&&a.getAttribute("id")==e)return t=a,!0}),t},createElement:function(e){var t=new ix(iw);return t.ownerDocument=this,"html"===this.type&&(e=e.toLowerCase()),$M(this.contentType)&&(t.namespaceURI=ow.HTML),t.nodeName=e,t.tagName=e,t.localName=e,t.childNodes=new Nw,(t.attributes=new Bw)._ownerElement=t,t},createDocumentFragment:function(){var e=new mx(iw);return e.ownerDocument=this,e.childNodes=new Nw,e},createTextNode:function(e){var t=new dx(iw);return t.ownerDocument=this,t.childNodes=new Nw,t.appendData(e),t},createComment:function(e){var t=new cx(iw);return t.ownerDocument=this,t.childNodes=new Nw,t.appendData(e),t},createCDATASection:function(e){if(-1!==e.indexOf("]]>"))throw new sw(sw.INVALID_CHARACTER_ERR,'data contains "]]>"');var t=new hx(iw);return t.ownerDocument=this,t.childNodes=new Nw,t.appendData(e),t},createProcessingInstruction:function(e,t){var a=new vx(iw);return a.ownerDocument=this,a.childNodes=new Nw,a.nodeName=a.target=e,a.nodeValue=a.data=t,a},createAttribute:function(e){if(!cw.QName_exact.test(e))throw new sw(sw.INVALID_CHARACTER_ERR,'invalid character in name "'+e+'"');return"html"===this.type&&(e=e.toLowerCase()),this._createAttribute(e)},_createAttribute:function(e){var t=new lx(iw);return t.ownerDocument=this,t.childNodes=new Nw,t.name=e,t.nodeName=e,t.localName=e,t.specified=!0,t},createEntityReference:function(e){if(!cw.Name.test(e))throw new sw(sw.INVALID_CHARACTER_ERR,'not a valid xml name "'+e+'"');if("html"===this.type)throw new sw("document is an html document",dw.NotSupportedError);var t=new gx(iw);return t.ownerDocument=this,t.childNodes=new Nw,t.nodeName=e,t},createElementNS:function(e,t){var a=mw(e,t),r=new ix(iw),n=r.attributes=new Bw;return r.childNodes=new Nw,r.ownerDocument=this,r.nodeName=t,r.tagName=t,r.namespaceURI=a[0],r.prefix=a[1],r.localName=a[2],n._ownerElement=r,r},createAttributeNS:function(e,t){var a=mw(e,t),r=new lx(iw);return r.ownerDocument=this,r.childNodes=new Nw,r.nodeName=t,r.name=t,r.specified=!0,r.namespaceURI=a[0],r.prefix=a[1],r.localName=a[2],r}},yw(Xw,qw),ix.prototype={nodeType:Mw,attributes:null,getQualifiedName:function(){return this.prefix?this.prefix+":"+this.localName:this.localName},_isInHTMLDocumentAndNamespace:function(){return"html"===this.ownerDocument.type&&this.namespaceURI===ow.HTML},hasAttributes:function(){return!(!this.attributes||!this.attributes.length)},hasAttribute:function(e){return!!this.getAttributeNode(e)},getAttribute:function(e){var t=this.getAttributeNode(e);return t?t.value:null},getAttributeNode:function(e){return this._isInHTMLDocumentAndNamespace()&&(e=e.toLowerCase()),this.attributes.getNamedItem(e)},setAttribute:function(e,t){this._isInHTMLDocumentAndNamespace()&&(e=e.toLowerCase());var a=this.getAttributeNode(e);a?a.value=a.nodeValue=""+t:((a=this.ownerDocument._createAttribute(e)).value=a.nodeValue=""+t,this.setAttributeNode(a))},removeAttribute:function(e){var t=this.getAttributeNode(e);t&&this.removeAttributeNode(t)},setAttributeNode:function(e){return this.attributes.setNamedItem(e)},setAttributeNodeNS:function(e){return this.attributes.setNamedItemNS(e)},removeAttributeNode:function(e){return this.attributes.removeNamedItem(e.nodeName)},removeAttributeNS:function(e,t){var a=this.getAttributeNodeNS(e,t);a&&this.removeAttributeNode(a)},hasAttributeNS:function(e,t){return null!=this.getAttributeNodeNS(e,t)},getAttributeNS:function(e,t){var a=this.getAttributeNodeNS(e,t);return a?a.value:null},setAttributeNS:function(e,t,a){var r=mw(e,t)[2],n=this.getAttributeNodeNS(e,r);n?n.value=n.nodeValue=""+a:((n=this.ownerDocument.createAttributeNS(e,t)).value=n.nodeValue=""+a,this.setAttributeNode(n))},getAttributeNodeNS:function(e,t){return this.attributes.getNamedItemNS(e,t)},getElementsByClassName:function(e){var t=fw(e);return new Dw(this,function(a){var r=[];return t.length>0&&Ww(a,function(n){if(n!==a&&n.nodeType===Mw){var o=n.getAttribute("class");if(o){var i=e===o;if(!i){var l=fw(o);i=t.every((s=l,function(e){return s&&-1!==s.indexOf(e)}))}i&&r.push(n)}}var s}),r})},getElementsByTagName:function(e){var t="html"===(this.nodeType===Tw?this:this.ownerDocument).type,a=e.toLowerCase();return new Dw(this,function(r){var n=[];return Ww(r,function(o){o!==r&&o.nodeType===Mw&&(("*"===e||o.getQualifiedName()===(t&&o.namespaceURI===ow.HTML?a:e))&&n.push(o))}),n})},getElementsByTagNameNS:function(e,t){return new Dw(this,function(a){var r=[];return Ww(a,function(n){n===a||n.nodeType!==Mw||"*"!==e&&n.namespaceURI!==e||"*"!==t&&n.localName!=t||r.push(n)}),r})}},Xw.prototype.getElementsByClassName=ix.prototype.getElementsByClassName,Xw.prototype.getElementsByTagName=ix.prototype.getElementsByTagName,Xw.prototype.getElementsByTagNameNS=ix.prototype.getElementsByTagNameNS,yw(ix,qw),lx.prototype.nodeType=ww,yw(lx,qw),sx.prototype={data:"",substringData:function(e,t){return this.data.substring(e,e+t)},appendData:function(e){e=this.data+e,this.nodeValue=this.data=e,this.length=e.length},insertData:function(e,t){this.replaceData(e,0,t)},deleteData:function(e,t){this.replaceData(e,t,"")},replaceData:function(e,t,a){a=this.data.substring(0,e)+a+this.data.substring(e+t),this.nodeValue=this.data=a,this.length=a.length}},yw(sx,qw),dx.prototype={nodeName:"#text",nodeType:xw,splitText:function(e){var t=this.data,a=t.substring(e);t=t.substring(0,e),this.data=this.nodeValue=t,this.length=t.length;var r=this.ownerDocument.createTextNode(a);return this.parentNode&&this.parentNode.insertBefore(r,this.nextSibling),r}},yw(dx,sx),cx.prototype={nodeName:"#comment",nodeType:Aw},yw(cx,sx),hx.prototype={nodeName:"#cdata-section",nodeType:Cw},yw(hx,dx),px.prototype.nodeType=Pw,yw(px,qw),ux.prototype.nodeType=Lw,yw(ux,qw),fx.prototype.nodeType=Iw,yw(fx,qw),gx.prototype.nodeType=Sw,yw(gx,qw),mx.prototype.nodeName="#document-fragment",mx.prototype.nodeType=Ew,yw(mx,qw),vx.prototype.nodeType=kw,yw(vx,sx),yx.prototype.serializeToString=function(e,t){return bx.call(e,t)},qw.prototype.toString=bx;try{Object.defineProperty&&(Object.defineProperty(Dw.prototype,"length",{get:function(){return Fw(this),this.$$length}}),Object.defineProperty(qw.prototype,"textContent",{get:function(){if(this.nodeType===Mw||this.nodeType===Ew){var e=[];return jw(this,null,{enter:function(t){return t.nodeType===Mw||t.nodeType===Ew||(t.nodeType===kw||t.nodeType===Aw?null:void e.push(t.nodeValue))}}),e.join("")}return this.nodeValue},set:function(e){switch(this.nodeType){case Mw:case Ew:for(;this.firstChild;)this.removeChild(this.firstChild);(e||String(e))&&this.appendChild(this.ownerDocument.createTextNode(e));break;default:this.data=e,this.value=e,this.nodeValue=e}}}),Object.defineProperty(ix.prototype,"children",{get:function(){return new Dw(this,Ix)}}),Object.defineProperty(Xw.prototype,"children",{get:function(){return new Dw(this,Ix)}}),Object.defineProperty(mx.prototype,"children",{get:function(){return new Dw(this,Ix)}}),Sx=function(e,t,a){e["$$"+t]=a})}catch(fR){}Vb._updateLiveList=Fw,Vb.Attr=lx,Vb.CDATASection=hx,Vb.CharacterData=sx,Vb.Comment=cx,Vb.Document=Xw,Vb.DocumentFragment=mx,Vb.DocumentType=px,Vb.DOMImplementation=Uw,Vb.Element=ix,Vb.Entity=fx,Vb.EntityReference=gx,Vb.LiveNodeList=Dw,Vb.NamedNodeMap=Bw,Vb.Node=qw,Vb.NodeList=Nw,Vb.Notation=ux,Vb.Text=dx,Vb.ProcessingInstruction=vx,Vb.walkDOM=jw,Vb.XMLSerializer=yx;var kx,Ax,Tx={},Px={};kx=Px,Ax=bb.freeze,kx.XML_ENTITIES=Ax({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),kx.HTML_ENTITIES=Ax({Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",AMP:"&",amp:"&",And:"⩓",and:"∧",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",ap:"≈",apacir:"⩯",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",Barwed:"⌆",barwed:"⌅",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",Because:"∵",because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxDL:"╗",boxDl:"╖",boxdL:"╕",boxdl:"┐",boxDR:"╔",boxDr:"╓",boxdR:"╒",boxdr:"┌",boxH:"═",boxh:"─",boxHD:"╦",boxHd:"╤",boxhD:"╥",boxhd:"┬",boxHU:"╩",boxHu:"╧",boxhU:"╨",boxhu:"┴",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxUL:"╝",boxUl:"╜",boxuL:"╛",boxul:"┘",boxUR:"╚",boxUr:"╙",boxuR:"╘",boxur:"└",boxV:"║",boxv:"│",boxVH:"╬",boxVh:"╫",boxvH:"╪",boxvh:"┼",boxVL:"╣",boxVl:"╢",boxvL:"╡",boxvl:"┤",boxVR:"╠",boxVr:"╟",boxvR:"╞",boxvr:"├",bprime:"‵",Breve:"˘",breve:"˘",brvbar:"¦",Bscr:"ℬ",bscr:"𝒷",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",Cap:"⋒",cap:"∩",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",CenterDot:"·",centerdot:"·",Cfr:"ℭ",cfr:"𝔠",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",Colon:"∷",colon:":",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",Conint:"∯",conint:"∮",ContourIntegral:"∮",Copf:"ℂ",copf:"𝕔",coprod:"∐",Coproduct:"∐",COPY:"©",copy:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",Cross:"⨯",cross:"✗",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",Cup:"⋓",cup:"∪",cupbrcap:"⩈",CupCap:"≍",cupcap:"⩆",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",Dagger:"‡",dagger:"†",daleth:"ℸ",Darr:"↡",dArr:"⇓",darr:"↓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",DD:"ⅅ",dd:"ⅆ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",Diamond:"⋄",diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrow:"↓",Downarrow:"⇓",downarrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",ecir:"≖",Ecirc:"Ê",ecirc:"ê",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",eDot:"≑",edot:"ė",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",Escr:"ℰ",escr:"ℯ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",ExponentialE:"ⅇ",exponentiale:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",ForAll:"∀",forall:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",Fscr:"ℱ",fscr:"𝒻",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",gE:"≧",ge:"≥",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",Gg:"⋙",gg:"≫",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gnE:"≩",gne:"⪈",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",Gt:"≫",GT:">",gt:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",hArr:"⇔",harr:"↔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",Hfr:"ℌ",hfr:"𝔥",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",Hopf:"ℍ",hopf:"𝕙",horbar:"―",HorizontalLine:"─",Hscr:"ℋ",hscr:"𝒽",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",Ifr:"ℑ",ifr:"𝔦",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Im:"ℑ",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",Int:"∬",int:"∫",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",Iscr:"ℐ",iscr:"𝒾",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",Lang:"⟪",lang:"⟨",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",Larr:"↞",lArr:"⇐",larr:"←",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",lAtail:"⤛",latail:"⤙",late:"⪭",lates:"⪭︀",lBarr:"⤎",lbarr:"⤌",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",lE:"≦",le:"≤",LeftAngleBracket:"⟨",LeftArrow:"←",Leftarrow:"⇐",leftarrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",Ll:"⋘",ll:"≪",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lnE:"≨",lne:"⪇",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftarrow:"⟵",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longleftrightarrow:"⟷",longmapsto:"⟼",LongRightArrow:"⟶",Longrightarrow:"⟹",longrightarrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",Lscr:"ℒ",lscr:"𝓁",Lsh:"↰",lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",Lt:"≪",LT:"<",lt:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",Mscr:"ℳ",mscr:"𝓂",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",ne:"≠",nearhk:"⤤",neArr:"⇗",nearr:"↗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nhArr:"⇎",nharr:"↮",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlArr:"⇍",nlarr:"↚",nldr:"‥",nlE:"≦̸",nle:"≰",nLeftarrow:"⇍",nleftarrow:"↚",nLeftrightarrow:"⇎",nleftrightarrow:"↮",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",Nopf:"ℕ",nopf:"𝕟",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrArr:"⇏",nrarr:"↛",nrarrc:"⤳̸",nrarrw:"↝̸",nRightarrow:"⇏",nrightarrow:"↛",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nVDash:"⊯",nVdash:"⊮",nvDash:"⊭",nvdash:"⊬",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwArr:"⇖",nwarr:"↖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",ocir:"⊚",Ocirc:"Ô",ocirc:"ô",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",Or:"⩔",or:"∨",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",Otimes:"⨷",otimes:"⊗",otimesas:"⨶",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",Popf:"ℙ",popf:"𝕡",pound:"£",Pr:"⪻",pr:"≺",prap:"⪷",prcue:"≼",prE:"⪳",pre:"⪯",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",Prime:"″",prime:"′",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",Qopf:"ℚ",qopf:"𝕢",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",QUOT:'"',quot:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",Rang:"⟫",rang:"⟩",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",Rarr:"↠",rArr:"⇒",rarr:"→",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",rAtail:"⤜",ratail:"⤚",ratio:"∶",rationals:"ℚ",RBarr:"⤐",rBarr:"⤏",rbarr:"⤍",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",REG:"®",reg:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",Rfr:"ℜ",rfr:"𝔯",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrow:"→",Rightarrow:"⇒",rightarrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",Ropf:"ℝ",ropf:"𝕣",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",Rscr:"ℛ",rscr:"𝓇",Rsh:"↱",rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",Sc:"⪼",sc:"≻",scap:"⪸",Scaron:"Š",scaron:"š",sccue:"≽",scE:"⪴",sce:"⪰",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",seArr:"⇘",searr:"↘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",sol:"/",solb:"⧄",solbar:"⌿",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",Square:"□",square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",Sub:"⋐",sub:"⊂",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",Subset:"⋐",subset:"⊂",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",Sum:"∑",sum:"∑",sung:"♪",Sup:"⋑",sup:"⊃",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",Supset:"⋑",supset:"⊃",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swArr:"⇙",swarr:"↙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",Therefore:"∴",therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",Tilde:"∼",tilde:"˜",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",TRADE:"™",trade:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",Uarr:"↟",uArr:"⇑",uarr:"↑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrow:"↑",Uparrow:"⇑",uparrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",UpDownArrow:"↕",Updownarrow:"⇕",updownarrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",Upsi:"ϒ",upsi:"υ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",vArr:"⇕",varr:"↕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",Vbar:"⫫",vBar:"⫨",vBarv:"⫩",Vcy:"В",vcy:"в",VDash:"⊫",Vdash:"⊩",vDash:"⊨",vdash:"⊢",Vdashl:"⫦",Vee:"⋁",vee:"∨",veebar:"⊻",veeeq:"≚",vellip:"⋮",Verbar:"‖",verbar:"|",Vert:"‖",vert:"|",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",Wedge:"⋀",wedge:"∧",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xhArr:"⟺",xharr:"⟷",Xi:"Ξ",xi:"ξ",xlArr:"⟸",xlarr:"⟵",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrArr:"⟹",xrarr:"⟶",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",Yuml:"Ÿ",yuml:"ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",Zfr:"ℨ",zfr:"𝔷",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",Zopf:"ℤ",zopf:"𝕫",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"}),kx.entityMap=kx.HTML_ENTITIES;var Ex={},Lx=bb,Ox=zb,Rx=Pb,Hx=Lx.isHTMLEscapableRawTextElement,Nx=Lx.isHTMLMimeType,Dx=Lx.isHTMLRawTextElement,Fx=Lx.hasOwn,Bx=Lx.NAMESPACE,Vx=Rx.ParseError,zx=Rx.DOMException;function _x(){}_x.prototype={parse:function(e,t,a){var r=this.domBuilder;r.startDocument(),Xx(t,t=Object.create(null)),function(e,t,a,r,n){var o=Nx(r.mimeType);e.indexOf(Ox.UNICODE_REPLACEMENT_CHARACTER)>=0&&n.warning("Unicode replacement character detected, source encoding issues?");function i(e){if(e>65535){var t=55296+((e-=65536)>>10),a=56320+(1023&e);return String.fromCharCode(t,a)}return String.fromCharCode(e)}function l(e){var t=";"===e[e.length-1]?e:e+";";if(!o&&t!==e)return n.error("EntityRef: expecting ;"),e;var r=Ox.Reference.exec(t);if(!r||r[0].length!==t.length)return n.error("entity not matching Reference production: "+e),e;var l=t.slice(1,-1);return Fx(a,l)?a[l]:"#"===l.charAt(0)?i(parseInt(l.substring(1).replace("x","0x"))):(n.error("entity not found:"+e),e)}function s(t){if(t>m){var a=e.substring(m,t).replace(Ux,l);p&&u(m),r.characters(a,0,t-m),m=t}}var d=0,c=0,h=/\r\n?|\n|$/g,p=r.locator;function u(t,a){for(;t>=c&&(a=h.exec(e));)d=c,c=a.index+a[0].length,p.lineNumber++;p.columnNumber=t-d+1}var f=[{currentNSMap:t}],g=[],m=0;for(;;){try{var v=e.indexOf("<",m);if(v<0){if(!o&&g.length>0)return n.fatalError("unclosed xml tag(s): "+g.join(", "));if(!e.substring(m).match(/^\s*$/)){var y=r.doc,b=y.createTextNode(e.substring(m));if(y.documentElement)return n.error("Extra content at the end of the document");y.appendChild(b),r.currentElement=b}return}if(v>m){var M=e.substring(m,v);o||0!==g.length||(M=M.replace(new RegExp(Ox.S_OPT.source,"g"),""))&&n.error("Unexpected content outside root element: '"+M+"'"),s(v)}switch(e.charAt(v+1)){case"/":var w=e.indexOf(">",v+2),x=e.substring(v+2,w>0?w:void 0);if(!x)return n.fatalError("end tag name missing");var C=w>0&&Ox.reg("^",Ox.QName_group,Ox.S_OPT,"$").exec(x);if(!C)return n.fatalError('end tag name contains invalid characters: "'+x+'"');if(!r.currentElement&&!r.doc.documentElement)return;var S=g[g.length-1]||r.currentElement.tagName||r.doc.documentElement.tagName||"";if(S!==C[1]){var I=C[1].toLowerCase();if(!o||S.toLowerCase()!==I)return n.fatalError('Opening and ending tag mismatch: "'+S+'" != "'+x+'"')}var k=f.pop();g.pop();var A=k.localNSMap;if(r.endElement(k.uri,k.localName,S),A)for(var T in A)Fx(A,T)&&r.endPrefixMapping(T);w++;break;case"?":p&&u(v),w=Yx(e,v,r,n);break;case"!":p&&u(v),w=Kx(e,v,r,n,o);break;default:p&&u(v);var P=new Jx,E=f[f.length-1].currentNSMap,L=(w=Gx(e,v,P,E,l,n,o),P.length);if(P.closed||(o&&Lx.isHTMLVoidElement(P.tagName)?P.closed=!0:g.push(P.tagName)),p&&L){for(var O=qx(p,{}),R=0;R<L;R++){var H=P[R];u(H.offset),H.locator=qx(p,{})}r.locator=O,Wx(P,r,E)&&f.push(P),r.locator=p}else Wx(P,r,E)&&f.push(P);o&&!P.closed?w=jx(e,w,P.tagName,l,r):w++}}catch(fR){if(fR instanceof Vx)throw fR;if(fR instanceof zx)throw new Vx(fR.name+": "+fR.message,r.locator,fR);n.error("element parse error: "+fR),w=-1}w>m?m=w:s(Math.max(v,m)+1)}}(e,t,a,r,this.errorHandler),r.endDocument()}};var Ux=/&#?\w+;?/g;function qx(e,t){return t.lineNumber=e.lineNumber,t.columnNumber=e.columnNumber,t}function Gx(e,t,a,r,n,o,i){function l(e,t,r){return Fx(a.attributeNames,e)?o.fatalError("Attribute "+e+" redefined"):!i&&t.indexOf("<")>=0?o.fatalError("Unescaped '<' not allowed in attributes values"):void a.addValue(e,t.replace(/[\t\n\r]/g," ").replace(Ux,n),r)}for(var s,d=++t,c=0;;){var h=e.charAt(d);switch(h){case"=":if(1===c)s=e.slice(t,d),c=3;else{if(2!==c)throw new Error("attribute equal must after attrName");c=3}break;case"'":case'"':if(3===c||1===c){if(1===c&&(o.warning('attribute value must after "="'),s=e.slice(t,d)),t=d+1,!((d=e.indexOf(h,t))>0))throw new Error("attribute value no end '"+h+"' match");l(s,p=e.slice(t,d),t-1),c=5}else{if(4!=c)throw new Error('attribute value must after "="');l(s,p=e.slice(t,d),t),o.warning('attribute "'+s+'" missed start quot('+h+")!!"),t=d+1,c=5}break;case"/":switch(c){case 0:a.setTagName(e.slice(t,d));case 5:case 6:case 7:c=7,a.closed=!0;case 4:case 1:break;case 2:a.closed=!0;break;default:throw new Error("attribute invalid close char('/')")}break;case"":return o.error("unexpected end of input"),0==c&&a.setTagName(e.slice(t,d)),d;case">":switch(c){case 0:a.setTagName(e.slice(t,d));case 5:case 6:case 7:break;case 4:case 1:"/"===(p=e.slice(t,d)).slice(-1)&&(a.closed=!0,p=p.slice(0,-1));case 2:2===c&&(p=s),4==c?(o.warning('attribute "'+p+'" missed quot(")!'),l(s,p,t)):(i||o.warning('attribute "'+p+'" missed value!! "'+p+'" instead!!'),l(p,p,t));break;case 3:if(!i)return o.fatalError("AttValue: ' or \" expected")}return d;case"€":h=" ";default:if(h<=" ")switch(c){case 0:a.setTagName(e.slice(t,d)),c=6;break;case 1:s=e.slice(t,d),c=2;break;case 4:var p=e.slice(t,d);o.warning('attribute "'+p+'" missed quot(")!!'),l(s,p,t);case 5:c=6}else switch(c){case 2:i||o.warning('attribute "'+s+'" missed value!! "'+s+'" instead2!!'),l(s,s,t),t=d,c=1;break;case 5:o.warning('attribute space is required"'+s+'"!!');case 6:c=1,t=d;break;case 3:c=4,t=d;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}d++}}function Wx(e,t,a){for(var r=e.tagName,n=null,o=e.length;o--;){var i=e[o],l=i.qName,s=i.value;if((p=l.indexOf(":"))>0)var d=i.prefix=l.slice(0,p),c=l.slice(p+1),h="xmlns"===d&&c;else c=l,d=null,h="xmlns"===l&&"";i.localName=c,!1!==h&&(null==n&&(n=Object.create(null),Xx(a,a=Object.create(null))),a[h]=n[h]=s,i.uri=Bx.XMLNS,t.startPrefixMapping(h,s))}for(o=e.length;o--;)(i=e[o]).prefix&&("xml"===i.prefix&&(i.uri=Bx.XML),"xmlns"!==i.prefix&&(i.uri=a[i.prefix]));var p;(p=r.indexOf(":"))>0?(d=e.prefix=r.slice(0,p),c=e.localName=r.slice(p+1)):(d=null,c=e.localName=r);var u=e.uri=a[d||""];if(t.startElement(u,c,r,e),!e.closed)return e.currentNSMap=a,e.localNSMap=n,!0;if(t.endElement(u,c,r),n)for(d in n)Fx(n,d)&&t.endPrefixMapping(d)}function jx(e,t,a,r,n){var o=Hx(a);if(o||Dx(a)){var i=e.indexOf("</"+a+">",t),l=e.substring(t+1,i);return o&&(l=l.replace(Ux,r)),n.characters(l,0,l.length),i}return t+1}function Xx(e,t){for(var a in e)Fx(e,a)&&(t[a]=e[a])}function Zx(e,t){var a=t;function r(t){return t=t||0,e.charAt(a+t)}function n(e){a+=e=e||1}function o(){return e.substring(a)}return{char:r,getIndex:function(){return a},getMatch:function(e){var t=Ox.reg("^",e).exec(o());return t?(n(t[0].length),t[0]):null},getSource:function(){return e},skip:n,skipBlanks:function(){for(var t=0;a<e.length;){var o=r();if(" "!==o&&"\n"!==o&&"\t"!==o&&"\r"!==o)return t;t++,n()}return-1},substringFromIndex:o,substringStartsWith:function(t){return e.substring(a,a+t.length)===t},substringStartsWithCaseInsensitive:function(t){return e.substring(a,a+t.length).toUpperCase()===t.toUpperCase()}}}function Kx(e,t,a,r,n){var o=Zx(e,t);switch(n?o.char(2).toUpperCase():o.char(2)){case"-":var i=o.getMatch(Ox.Comment);return i?(a.comment(i,Ox.COMMENT_START.length,i.length-Ox.COMMENT_START.length-Ox.COMMENT_END.length),o.getIndex()):r.fatalError("comment is not well-formed at position "+o.getIndex());case"[":var l=o.getMatch(Ox.CDSect);return l?n||a.currentElement?(a.startCDATA(),a.characters(l,Ox.CDATA_START.length,l.length-Ox.CDATA_START.length-Ox.CDATA_END.length),a.endCDATA(),o.getIndex()):r.fatalError("CDATA outside of element"):r.fatalError("Invalid CDATA starting at position "+t);case"D":if(a.doc&&a.doc.documentElement)return r.fatalError("Doctype not allowed inside or after documentElement at position "+o.getIndex());if(n?!o.substringStartsWithCaseInsensitive(Ox.DOCTYPE_DECL_START):!o.substringStartsWith(Ox.DOCTYPE_DECL_START))return r.fatalError("Expected "+Ox.DOCTYPE_DECL_START+" at position "+o.getIndex());if(o.skip(Ox.DOCTYPE_DECL_START.length),o.skipBlanks()<1)return r.fatalError("Expected whitespace after "+Ox.DOCTYPE_DECL_START+" at position "+o.getIndex());var s={name:void 0,publicId:void 0,systemId:void 0,internalSubset:void 0};if(s.name=o.getMatch(Ox.Name),!s.name)return r.fatalError("doctype name missing or contains unexpected characters at position "+o.getIndex());if(n&&"html"!==s.name.toLowerCase()&&r.warning("Unexpected DOCTYPE in HTML document at position "+o.getIndex()),o.skipBlanks(),o.substringStartsWith(Ox.PUBLIC)||o.substringStartsWith(Ox.SYSTEM)){var d=Ox.ExternalID_match.exec(o.substringFromIndex());if(!d)return r.fatalError("doctype external id is not well-formed at position "+o.getIndex());void 0!==d.groups.SystemLiteralOnly?s.systemId=d.groups.SystemLiteralOnly:(s.systemId=d.groups.SystemLiteral,s.publicId=d.groups.PubidLiteral),o.skip(d[0].length)}else if(n&&o.substringStartsWithCaseInsensitive(Ox.SYSTEM)){if(o.skip(Ox.SYSTEM.length),o.skipBlanks()<1)return r.fatalError("Expected whitespace after "+Ox.SYSTEM+" at position "+o.getIndex());if(s.systemId=o.getMatch(Ox.ABOUT_LEGACY_COMPAT_SystemLiteral),!s.systemId)return r.fatalError("Expected "+Ox.ABOUT_LEGACY_COMPAT+" in single or double quotes after "+Ox.SYSTEM+" at position "+o.getIndex())}return n&&s.systemId&&!Ox.ABOUT_LEGACY_COMPAT_SystemLiteral.test(s.systemId)&&r.warning("Unexpected doctype.systemId in HTML document at position "+o.getIndex()),n||(o.skipBlanks(),s.internalSubset=function(e,t){function a(e,t){var a=Ox.PI.exec(e.substringFromIndex());return a?"xml"===a[1].toLowerCase()?t.fatalError("xml declaration is only allowed at the start of the document, but found at position "+e.getIndex()):(e.skip(a[0].length),a[0]):t.fatalError("processing instruction is not well-formed at position "+e.getIndex())}var r=e.getSource();if("["===e.char()){e.skip(1);for(var n=e.getIndex();e.getIndex()<r.length;){if(e.skipBlanks(),"]"===e.char()){var o=r.substring(n,e.getIndex());return e.skip(1),o}var i=null;if("<"===e.char()&&"!"===e.char(1))switch(e.char(2)){case"E":"L"===e.char(3)?i=e.getMatch(Ox.elementdecl):"N"===e.char(3)&&(i=e.getMatch(Ox.EntityDecl));break;case"A":i=e.getMatch(Ox.AttlistDecl);break;case"N":i=e.getMatch(Ox.NotationDecl);break;case"-":i=e.getMatch(Ox.Comment)}else if("<"===e.char()&&"?"===e.char(1))i=a(e,t);else{if("%"!==e.char())return t.fatalError("Error detected in Markup declaration");i=e.getMatch(Ox.PEReference)}if(!i)return t.fatalError("Error in internal subset at position "+e.getIndex())}return t.fatalError("doctype internal subset is not well-formed, missing ]")}}(o,r)),o.skipBlanks(),">"!==o.char()?r.fatalError("doctype not terminated with > at position "+o.getIndex()):(o.skip(1),a.startDTD(s.name,s.publicId,s.systemId,s.internalSubset),a.endDTD(),o.getIndex());default:return r.fatalError('Not well-formed XML starting with "<!" at position '+t)}}function Yx(e,t,a,r){var n=e.substring(t).match(Ox.PI);if(!n)return r.fatalError("Invalid processing instruction starting at position "+t);if("xml"===n[1].toLowerCase()){if(t>0)return r.fatalError("processing instruction at position "+t+" is an xml declaration which is only at the start of the document");if(!Ox.XMLDecl.test(e.substring(t)))return r.fatalError("xml declaration is not well-formed")}return a.processingInstruction(n[1],n[2]),t+n[0].length}function Jx(){this.attributeNames=Object.create(null)}Jx.prototype={setTagName:function(e){if(!Ox.QName_exact.test(e))throw new Error("invalid tagName:"+e);this.tagName=e},addValue:function(e,t,a){if(!Ox.QName_exact.test(e))throw new Error("invalid attribute:"+e);this.attributeNames[e]=this.length,this[this.length++]={qName:e,value:t,offset:a}},length:0,getLocalName:function(e){return this[e].localName},getLocator:function(e){return this[e].locator},getQName:function(e){return this[e].qName},getURI:function(e){return this[e].uri},getValue:function(e){return this[e].value}},Ex.XMLReader=_x,Ex.parseUtils=Zx,Ex.parseDoctypeCommentOrCData=Kx;var Qx=bb,$x=Pb,eC=Px,tC=Ex,aC=Vb.DOMImplementation,rC=Qx.hasDefaultHTMLNamespace,nC=Qx.isHTMLMimeType,oC=Qx.isValidMimeType,iC=Qx.MIME_TYPE,lC=Qx.NAMESPACE,sC=$x.ParseError,dC=tC.XMLReader;function cC(e){return e.replace(/\r[\n\u0085]/g,"\n").replace(/[\r\u0085\u2028\u2029]/g,"\n")}function hC(e){if(void 0===(e=e||{}).locator&&(e.locator=!0),this.assign=e.assign||Qx.assign,this.domHandler=e.domHandler||pC,this.onError=e.onError||e.errorHandler,e.errorHandler&&"function"!=typeof e.errorHandler)throw new TypeError("errorHandler object is no longer supported, switch to onError!");e.errorHandler&&e.errorHandler("warning","The `errorHandler` option has been deprecated, use `onError` instead!",this),this.normalizeLineEndings=e.normalizeLineEndings||cC,this.locator=!!e.locator,this.xmlns=this.assign(Object.create(null),e.xmlns)}function pC(e){var t=e||{};this.mimeType=t.mimeType||iC.XML_APPLICATION,this.defaultNamespace=t.defaultNamespace||null,this.cdata=!1,this.currentElement=void 0,this.doc=void 0,this.locator=void 0,this.onError=t.onError}function uC(e,t){t.lineNumber=e.lineNumber,t.columnNumber=e.columnNumber}function fC(e,t,a){return"string"==typeof e?e.substr(t,a):e.length>=t+a||t?new java.lang.String(e,t,a)+"":e}function gC(e,t){e.currentElement?e.currentElement.appendChild(t):e.doc.appendChild(t)}hC.prototype.parseFromString=function(e,t){if(!oC(t))throw new TypeError('DOMParser.parseFromString: the provided mimeType "'+t+'" is not valid.');var a=this.assign(Object.create(null),this.xmlns),r=eC.XML_ENTITIES,n=a[""]||null;rC(t)?(r=eC.HTML_ENTITIES,n=lC.HTML):t===iC.XML_SVG_IMAGE&&(n=lC.SVG),a[""]=n,a.xml=a.xml||lC.XML;var o=new this.domHandler({mimeType:t,defaultNamespace:n,onError:this.onError}),i=this.locator?{}:void 0;this.locator&&o.setDocumentLocator(i);var l=new dC;return l.errorHandler=o,l.domBuilder=o,!Qx.isHTMLMimeType(t)&&"string"!=typeof e&&l.errorHandler.fatalError("source is not a string"),l.parse(this.normalizeLineEndings(String(e)),a,r),o.doc.documentElement||l.errorHandler.fatalError("missing root element"),o.doc},pC.prototype={startDocument:function(){var e=new aC;this.doc=nC(this.mimeType)?e.createHTMLDocument(!1):e.createDocument(this.defaultNamespace,"")},startElement:function(e,t,a,r){var n=this.doc,o=n.createElementNS(e,a||t),i=r.length;gC(this,o),this.currentElement=o,this.locator&&uC(this.locator,o);for(var l=0;l<i;l++){e=r.getURI(l);var s=r.getValue(l),d=(a=r.getQName(l),n.createAttributeNS(e,a));this.locator&&uC(r.getLocator(l),d),d.value=d.nodeValue=s,o.setAttributeNode(d)}},endElement:function(e,t,a){this.currentElement=this.currentElement.parentNode},startPrefixMapping:function(e,t){},endPrefixMapping:function(e){},processingInstruction:function(e,t){var a=this.doc.createProcessingInstruction(e,t);this.locator&&uC(this.locator,a),gC(this,a)},ignorableWhitespace:function(e,t,a){},characters:function(e,t,a){if(e=fC.apply(this,arguments)){if(this.cdata)var r=this.doc.createCDATASection(e);else r=this.doc.createTextNode(e);this.currentElement?this.currentElement.appendChild(r):/^\s*$/.test(e)&&this.doc.appendChild(r),this.locator&&uC(this.locator,r)}},skippedEntity:function(e){},endDocument:function(){this.doc.normalize()},setDocumentLocator:function(e){e&&(e.lineNumber=0),this.locator=e},comment:function(e,t,a){e=fC.apply(this,arguments);var r=this.doc.createComment(e);this.locator&&uC(this.locator,r),gC(this,r)},startCDATA:function(){this.cdata=!0},endCDATA:function(){this.cdata=!1},startDTD:function(e,t,a,r){var n=this.doc.implementation;if(n&&n.createDocumentType){var o=n.createDocumentType(e,t,a,r);this.locator&&uC(this.locator,o),gC(this,o),this.doc.doctype=o}},reportError:function(e,t){if("function"==typeof this.onError)try{this.onError(e,t,this)}catch(fR){throw new sC("Reporting "+e+' "'+t+'" caused '+fR,this.locator)}else console.error("[xmldom "+e+"]\t"+t,function(e){if(e)return"\n@#[line:"+e.lineNumber+",col:"+e.columnNumber+"]"}(this.locator))},warning:function(e){this.reportError("warning",e)},error:function(e){this.reportError("error",e)},fatalError:function(e){throw this.reportError("fatalError",e),new sC(e,this.locator)}},"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,function(e){pC.prototype[e]=function(){return null}}),Tx.__DOMHandler=pC,Tx.DOMParser=hC,Tx.normalizeLineEndings=cC,Tx.onErrorStopParsing=function(e){if("error"===e)throw"onErrorStopParsing"},Tx.onWarningStopParsing=function(){throw"onWarningStopParsing"};var mC=bb;mC.assign,mC.hasDefaultHTMLNamespace,mC.isHTMLMimeType,mC.isValidMimeType,mC.MIME_TYPE,mC.NAMESPACE;var vC=Tx.DOMParser;const yC="http://schemas.openxmlformats.org/wordprocessingml/2006/main",bC="http://schemas.openxmlformats.org/drawingml/2006/main",MC="http://schemas.microsoft.com/office/word/2010/wordml";function wC(e,t,a){if(!e)return[];const r=[];for(let n=0;n<e.childNodes.length;n+=1){const o=e.childNodes[n];(null==o?void 0:o.nodeType)===o.ELEMENT_NODE&&o.namespaceURI===t&&o.localName===a&&r.push(o)}return r}function xC(e,t,a){return wC(e,t,a)[0]??null}function CC(e,t){return e?e.getAttributeNS(yC,t)??e.getAttributeNS(MC,t)??e.getAttribute(`w:${t}`)??e.getAttribute(`w14:${t}`)??e.getAttribute(t):null}function SC(e,t){for(let a=0;a<e.childNodes.length;a+=1){const r=e.childNodes[a];if(1===(null==r?void 0:r.nodeType)){const e=r;if(e.localName===t)return e;const a=SC(e,t);if(a)return a}}return null}function IC(e,t){return null!==xC(e,yC,t)}function kC(e){return"1"===e||"true"===e||"on"===e}function AC(e,t){const a=xC(e,yC,t);if(!a)return;const r=CC(a,"val");return null==r||"0"!==r&&"false"!==r&&"off"!==r&&kC(r)}function TC(e,t){return CC(xC(e,yC,t),"val")??void 0}async function PC(e,t){t>0&&t%e===0&&await new Promise(e=>setTimeout(e,0))}function EC(e,t,a){const r=e.byPath.get(t);if(r)return`${Ve}${r}`;const n=`img-${e.nextId}`;return e.nextId+=1,e.assets[n]={id:n,url:a},e.byPath.set(t,n),`${Ve}${n}`}function LC(e){var t;const a=new Map;if(!e)return a;const r=null==(t=(new vC).parseFromString(e,"application/xml").documentElement)?void 0:t.childNodes;if(!r)return a;for(let n=0;n<r.length;n+=1){const e=r[n];if(1===(null==e?void 0:e.nodeType)){const t=e;if("Relationship"===t.localName){const e=t.getAttribute("Id"),r=t.getAttribute("Target");e&&r&&a.set(e,r)}}}return a}async function OC(e,t){var a;const r=t.lastIndexOf("/"),n=r>=0?t.slice(0,r):"",o=r>=0?t.slice(r+1):t,i=n?`${n}/_rels/${o}.rels`:`_rels/${o}.rels`;return LC(await(null==(a=e.file(i))?void 0:a.async("string")))}function RC(e,t){const a=e?Number(e):Number.NaN;return Number.isFinite(a)?Math.round(a/1440*96):t}function HC(e){const t=e?Number(e):Number.NaN;if(Number.isFinite(t))return Math.round(t/20*1e4)/1e4}function NC(e){const t=null==e?void 0:e.trim();if(t&&"auto"!==t&&"none"!==t)return t.startsWith("#")?t:`#${t.toUpperCase()}`}function DC(e){const t=Object.entries(e).filter(([,e])=>void 0!==e);return t.length>0?Object.fromEntries(t):void 0}function FC(e){return void 0!==(null==e?void 0:e.lineHeight)?e:{...e??{},lineHeight:1.1}}function BC(e,t){if(!e)return;const a=Ze(e,t,_t),r=Ze(void 0,t,_t);return DC({styleId:e.styleId,bold:a.bold!==r.bold?a.bold:void 0,italic:a.italic!==r.italic?a.italic:void 0,underline:a.underline!==r.underline?a.underline:void 0,underlineStyle:a.underlineStyle!==r.underlineStyle?a.underlineStyle:void 0,underlineColor:a.underlineColor!==r.underlineColor?a.underlineColor:void 0,strike:a.strike!==r.strike?a.strike:void 0,doubleStrike:a.doubleStrike!==r.doubleStrike?a.doubleStrike:void 0,superscript:a.superscript!==r.superscript?a.superscript:void 0,subscript:a.subscript!==r.subscript?a.subscript:void 0,smallCaps:a.smallCaps!==r.smallCaps?a.smallCaps:void 0,allCaps:a.allCaps!==r.allCaps?a.allCaps:void 0,hidden:a.hidden!==r.hidden?a.hidden:void 0,characterScale:a.characterScale!==r.characterScale?a.characterScale:void 0,characterSpacing:a.characterSpacing!==r.characterSpacing?a.characterSpacing:void 0,baselineShift:a.baselineShift!==r.baselineShift?a.baselineShift:void 0,kerningThreshold:a.kerningThreshold!==r.kerningThreshold?a.kerningThreshold:void 0,ligatures:a.ligatures!==r.ligatures?a.ligatures:void 0,numberSpacing:a.numberSpacing!==r.numberSpacing?a.numberSpacing:void 0,numberForm:a.numberForm!==r.numberForm?a.numberForm:void 0,stylisticSet:a.stylisticSet!==r.stylisticSet?a.stylisticSet:void 0,contextualAlternates:a.contextualAlternates!==r.contextualAlternates?a.contextualAlternates:void 0,fontFamily:void 0!==e.fontFamily?e.fontFamily:a.fontFamily!==r.fontFamily?a.fontFamily:void 0,fontSize:void 0!==e.fontSize?e.fontSize:a.fontSize!==r.fontSize?a.fontSize:void 0,color:a.color!==r.color?a.color:void 0,highlight:a.highlight!==r.highlight?a.highlight:void 0,link:a.link!==r.link?a.link:void 0})}function VC(e,t){if(!e)return;const a={},r=TC(e,"rStyle");r&&(a.styleId=r),IC(e,"b")&&(a.bold=!0),IC(e,"i")&&(a.italic=!0),IC(e,"strike")&&(a.strike=!0),IC(e,"dstrike")&&(a.doubleStrike=!0),IC(e,"smallCaps")&&(a.smallCaps=!0),IC(e,"caps")&&(a.allCaps=!0),IC(e,"vanish")&&(a.hidden=!0);const n=CC(xC(e,yC,"w"),"val");if(n){const e=Number(n);Number.isFinite(e)&&e>0&&(a.characterScale=e)}const o=CC(xC(e,yC,"spacing"),"val");if(o){const e=HC(o);void 0!==e&&(a.characterSpacing=e)}const i=CC(xC(e,yC,"position"),"val");if(i){const e=Number(i);Number.isFinite(e)&&(a.baselineShift=e/2)}const l=CC(xC(e,yC,"kern"),"val");if(l){const e=Number(l);Number.isFinite(e)&&e>=0&&(a.kerningThreshold=e/2)}const s=CC(xC(e,MC,"ligatures"),"val");"none"!==s&&"standard"!==s&&"contextual"!==s&&"historical"!==s&&"standardContextual"!==s||(a.ligatures=s);const d=CC(xC(e,MC,"numSpacing"),"val");"proportional"!==d&&"tabular"!==d||(a.numberSpacing=d);const c=CC(xC(e,MC,"numForm"),"val");"lining"!==c&&"oldStyle"!==c||(a.numberForm=c);const h=CC(xC(e,MC,"stylisticSets"),"val");if(h){const e=/^[0-9a-fA-F]+$/.test(h)&&h.length>2?Number.parseInt(h,16):Number(h);if(Number.isFinite(e)&&e>0)for(let t=1;t<=20;t+=1)if(e&1<<t-1){a.stylisticSet=t;break}}const p=CC(xC(e,MC,"cntxtAlts"),"val");null===p?xC(e,MC,"cntxtAlts")&&(a.contextualAlternates=!0):kC(p)&&(a.contextualAlternates=!0);const u=xC(e,yC,"u"),f=CC(u,"val");if(u&&"none"!==f){a.underline=!0,f&&"single"!==f&&(a.underlineStyle=f);const e=CC(u,"color");e&&"auto"!==e&&(a.underlineColor=e.startsWith("#")?e:`#${e}`)}const g=CC(xC(e,yC,"vertAlign"),"val");"superscript"===g&&(a.superscript=!0),"subscript"===g&&(a.subscript=!0);const m=xC(e,yC,"rFonts"),v=CC(m,"ascii")??CC(m,"hAnsi")??CC(m,"cs")??CC(m,"eastAsia")??function(e,t){const a=CC(e,"asciiTheme")??CC(e,"hAnsiTheme")??CC(e,"eastAsiaTheme")??CC(e,"cstheme");if(!a)return;const r="majorAscii"===a||"majorHAnsi"===a?"majorHAnsi":"minorAscii"===a||"minorHAnsi"===a?"minorHAnsi":"majorEastAsia"===a?"majorEastAsia":"minorEastAsia"===a?"minorEastAsia":"majorBidi"===a?"majorBidi":"minorBidi"===a?"minorBidi":void 0;return r?t[r]:void 0}(m,t);v&&(a.fontFamily=function(e){const t=null==e?void 0:e.trim();if(!t)return;return`${/[\s,]/.test(t)?`"${t.replace(/"/g,'\\"')}"`:t}, ${/times/i.test(t)?"serif":"sans-serif"}`}(v));const y=CC(xC(e,yC,"sz"),"val");if(y){const e=function(e){const t=e?Number(e):Number.NaN;return Number.isFinite(t)?Math.round(t/2/72*96*1e4)/1e4:null}(y);null!==e&&(a.fontSize=e)}const b=CC(xC(e,yC,"color"),"val");b&&"auto"!==b&&(a.color=b.startsWith("#")?b:`#${b}`);const M=CC(xC(e,yC,"highlight"),"val");return M&&"none"!==M&&(a.highlight=M),Object.keys(a).length>0?a:void 0}function zC(e){if(!e)return;const t={},a=TC(e,"pStyle");a&&(t.styleId=a);const r=CC(xC(e,yC,"jc"),"val");"left"===r||"start"===r||"center"===r||"right"===r||"end"===r||"justify"===r?t.align="start"===r?"left":"end"===r?"right":r:"both"!==r&&"distribute"!==r||(t.align="justify");const n=xC(e,yC,"spacing"),o=CC(n,"before"),i=CC(n,"after"),l=CC(n,"line");CC(n,"lineRule");if(o&&(t.spacingBefore=RC(o,0)),i&&(t.spacingAfter=RC(i,0)),l){const e=Number(l)/240;t.lineHeight=e}const s=AC(e,"snapToGrid");void 0!==s&&(t.snapToGrid=s);const d=xC(e,yC,"ind"),c=CC(d,"start")??CC(d,"left"),h=CC(d,"end")??CC(d,"right"),p=CC(d,"firstLine"),u=CC(d,"hanging");c&&(t.indentLeft=RC(c,0)),h&&(t.indentRight=RC(h,0)),u?(t.indentHanging=RC(u,0),t.indentFirstLine=void 0):p&&(t.indentFirstLine=RC(p,0)),IC(e,"pageBreakBefore")&&(t.pageBreakBefore=!0),IC(e,"keepNext")&&(t.keepWithNext=!0),IC(e,"keepLines")&&(t.keepLinesTogether=!0);const f=AC(e,"widowControl");return void 0!==f&&(t.widowControl=f),Object.keys(t).length>0?t:void 0}function _C(e){const t=xC(e,yC,"spacing");return{before:kC(CC(t,"beforeAutospacing")),after:kC(CC(t,"afterAutospacing"))}}function UC(e,t){const a={...e??{},...t??{}};return Object.keys(a).length>0?a:void 0}function qC(e,t){const a={...e??{},...t??{}};return Object.keys(a).length>0?a:void 0}function GC(e){const t=xC(e,yC,"pgSz"),a=xC(e,yC,"pgMar");let r;if(t||a){const e=RC(CC(t,"w"),816),n=RC(CC(t,"h"),1056),o=CC(t,"orient");r={width:e,height:n,orientation:"landscape"===o?"landscape":"portrait"===o?"portrait":e>n?"landscape":"portrait",margins:{top:RC(CC(a,"top"),96),right:RC(CC(a,"right"),96),bottom:RC(CC(a,"bottom"),96),left:RC(CC(a,"left"),96),header:RC(CC(a,"header"),48),footer:RC(CC(a,"footer"),48),gutter:RC(CC(a,"gutter"),0)}}}const n=t=>{const a={};for(const r of wC(e,yC,t)){const e=CC(r,"type")??"default";if("default"!==e&&"first"!==e&&"even"!==e)continue;const t=r.getAttribute("r:id")??r.getAttributeNS("http://schemas.openxmlformats.org/officeDocument/2006/relationships","id")??null;t&&(a[e]=t)}return a},o=n("headerReference"),i=n("footerReference"),l=xC(e,yC,"docGrid"),s=CC(l,"type"),d=RC(CC(l,"linePitch"),Number.NaN);return{pageSettings:r,headerRIds:o,footerRIds:i,docGridLinePitchPx:Number.isFinite(d)&&d>0?d:void 0,docGridMode:"lines"===s||"linesAndChars"===s||"snapToChars"===s?"explicit":l&&null===s?"implicit":void 0,docGridType:s}}function WC(e){if(!e)return;const t=xC(e,yC,"sectPr");if(!t)return;const a=xC(t,yC,"pgSz"),r=xC(t,yC,"pgMar");if(!a&&!r)return;const n=RC(CC(a,"w"),816),o=RC(CC(a,"h"),1056),i=CC(a,"orient");return{width:n,height:o,orientation:"landscape"===i?"landscape":"portrait"===i?"portrait":n>o?"landscape":"portrait",margins:{top:RC(CC(r,"top"),96),right:RC(CC(r,"right"),96),bottom:RC(CC(r,"bottom"),96),left:RC(CC(r,"left"),96),header:RC(CC(r,"header"),48),footer:RC(CC(r,"footer"),48),gutter:RC(CC(r,"gutter"),0)}}}function jC(e,t,a,r,n){var o,i,l;if(t&&a)for(const s of e){if("paragraph"===s.type){const e=(null==(o=s.style)?void 0:o.styleId)&&/heading/i.test(s.style.styleId);if(void 0===(null==(i=s.style)?void 0:i.lineHeight)&&!1!==(null==(l=s.style)?void 0:l.snapToGrid)&&!e){const e="implicit"===a?"implicit":r;s.style={...s.style??{},lineGridPitch:t,lineGridType:e}}continue}if(n.adjustLineHeightInTable)for(const e of s.rows)for(const o of e.cells)jC(o.blocks,t,a,r,n)}}async function XC(e,t,a,r){var n;const o=[];let i;const l=e.childNodes;for(let s=0;s<l.length;s+=1){const e=l[s];if((null==e?void 0:e.nodeType)!==e.ELEMENT_NODE)continue;const d=e;if(d.namespaceURI===yC)if("t"===d.localName)o.push(d.textContent??"");else if("tab"===d.localName)o.push("\t");else if("br"===d.localName)o.push("page"===CC(d,"type")?"\f":"\n");else{if("lastRenderedPageBreak"===d.localName)continue;if("cr"===d.localName)o.push("\n");else if("drawing"===d.localName){const e=SC(d,"blip");if(e){let l=null;for(let t=0;t<e.attributes.length;t++){const a=e.attributes[t];if(a&&("embed"===a.localName||"r:embed"===a.name||"embed"===a.name)){l=a.value;break}}if(l){const e=a.get(l);if(e){let a=e;a.startsWith("/")&&(a=a.slice(1)),a.startsWith("word/")||(a="word/"+e);const l=t.file(a),s=null==(n=e.split(".").pop())?void 0:n.toLowerCase(),c="png"===s?"image/png":"jpeg"===s||"jpg"===s?"image/jpeg":"image/png",h=await(null==l?void 0:l.async("base64"));if(h){o.push("");const e=SC(d,"extent"),t=SC(d,"docPr");let n=300,l=300;if(e){const t=e.getAttribute("cx"),a=e.getAttribute("cy");t&&(n=Math.round(parseInt(t,10)/9525)),a&&(l=Math.round(parseInt(a,10)/9525))}const s=t?CC(t,"descr")??CC(t,"title"):null;i={src:EC(r,a,`data:${c};base64,${h}`),width:n,height:l,...null!==s?{alt:s}:{}}}}}}}}}return{text:o.join(""),image:i}}function ZC(e){const t=xC(e,yC,"fldChar");return t?CC(t,"fldCharType"):null}function KC(e){return wC(e,yC,"instrText").map(e=>e.textContent??"").join("")}async function YC(e,t,a,r,n,o,i){var l,s;const d=[];let c=null;const h=()=>{var e;if(!c)return;const t=c.instruction,a=/\bNUMPAGES\b/i.test(t)?"NUMPAGES":/\bPAGE\b/i.test(t)?"PAGE":null,r=c.resultRuns.map(e=>e.text).join("")||"1",n=null==(e=c.resultRuns.find(e=>e.styles))?void 0:e.styles;d.push({text:r,styles:n,...a?{field:{type:a}}:{}}),c=null};for(let p=0;p<e.childNodes.length;p+=1){const u=e.childNodes[p];if((null==u?void 0:u.nodeType)!==u.ELEMENT_NODE)continue;const f=u;if(f.namespaceURI===yC){if("r"===f.localName){const e=ZC(f);if("begin"===e){h(),c={instruction:"",resultRuns:[],collectingResult:!1};continue}if(c){const t=KC(f);if(t){c.instruction+=t;continue}if("separate"===e){c.collectingResult=!0;continue}if("end"===e){h();continue}}const t=xC(f,yC,"footnoteReference");if(t){const e=CC(t,"id");if(!e)continue;const a=CC(t,"customMarkFollows");let r=VC(xC(f,yC,"rPr"),o);(l=r??(r={})).styleId??(l.styleId="footnoteReference"),void 0===r.superscript&&(r.superscript=!0);const n={text:"?",styles:r,footnoteReference:{docxId:e,...a?{customMark:a}:{}}};(null==c?void 0:c.collectingResult)?c.resultRuns.push(n):d.push(n);continue}const{text:s,image:p}=await XC(f,a,r,n);if(0===s.length)continue;let u=VC(xC(f,yC,"rPr"),o);i&&((u??(u={})).link=i);const g={text:s,image:p,styles:u};(null==c?void 0:c.collectingResult)?c.resultRuns.push(g):d.push(g);continue}if("fldSimple"===f.localName){const e=f.getAttribute("w:instr")??f.getAttributeNS(yC,"instr")??f.getAttribute("instr")??"",l=/\bNUMPAGES\b/i.test(e)?"NUMPAGES":/\bPAGE\b/i.test(e)?"PAGE":null,c=await YC(f,t,a,r,n,o,i),h=c.map(e=>e.text).join("")||"1",p=null==(s=c.find(e=>e.styles))?void 0:s.styles;d.push({text:h,styles:p,...l?{field:{type:l}}:{}});continue}if("hyperlink"===f.localName){let e=r.get(f.getAttribute("r:id")??f.getAttributeNS("http://schemas.openxmlformats.org/officeDocument/2006/relationships","id")??"")??null;e??(e=f.getAttribute("w:anchor")),d.push(...await YC(f,t,a,r,n,o,e))}}}return h(),d}function JC(e,t,a,r){var n;const o=Nt(e.length>0?e.map(e=>({text:e.text,styles:e.styles,image:e.image})):[{text:"",styles:r}]);e.forEach((e,t)=>{e.field&&(o.runs[t].field={...e.field}),e.footnoteReference&&(o.runs[t].__importedFootnoteRef={...e.footnoteReference})}),o.style=t?{...t}:void 0;for(const i of o.runs)i.styles=BC(i.styles,null==(n=o.style)?void 0:n.styleId);return o.list=a?{...a}:void 0,o}function QC(e){return e.some(e=>e.image||e.field||e.text.replace(/\s/g,"").length>0)}async function $C(e,t,a,r,n,o,i){const l=xC(e,yC,"pPr"),s=await YC(e,t,a,r,n,o),d=FC(zC(l)),c=function(e){if(!e)return;const t=Ke(e,_t),a=Ke(void 0,_t);return DC({styleId:e.styleId,align:t.align!==a.align?t.align:void 0,spacingBefore:t.spacingBefore!==a.spacingBefore?t.spacingBefore:void 0,spacingAfter:t.spacingAfter!==a.spacingAfter?t.spacingAfter:void 0,lineHeight:t.lineHeight!==a.lineHeight?t.lineHeight:void 0,lineGridPitch:e.lineGridPitch??void 0,snapToGrid:t.snapToGrid!==a.snapToGrid?t.snapToGrid:void 0,indentLeft:void 0!==e.indentLeft||t.indentLeft!==a.indentLeft?t.indentLeft:void 0,indentRight:void 0!==e.indentRight||t.indentRight!==a.indentRight?t.indentRight:void 0,indentFirstLine:void 0!==e.indentFirstLine||t.indentFirstLine!==a.indentFirstLine?t.indentFirstLine:void 0,indentHanging:void 0!==e.indentHanging||t.indentHanging!==a.indentHanging?t.indentHanging:void 0,pageBreakBefore:t.pageBreakBefore!==a.pageBreakBefore?t.pageBreakBefore:void 0,keepWithNext:t.keepWithNext!==a.keepWithNext?t.keepWithNext:void 0,keepLinesTogether:t.keepLinesTogether!==a.keepLinesTogether?t.keepLinesTogether:void 0,widowControl:t.widowControl!==a.widowControl?t.widowControl:void 0})}(i?{...i,...d??{}}:d),h=VC(xC(l,yC,"rPr"),o),p=function(e,t){if(!e)return;const a=xC(e,yC,"numPr");if(!a)return;const r=CC(xC(a,yC,"numId"),"val");if(!r)return;const n=CC(xC(a,yC,"ilvl"),"val"),o=n?Number(n):0;return{kind:t.numKinds.get(r)??"ordered",level:Number.isFinite(o)?o:0}}(l,t),{segments:u,hasPageBreak:f}=function(e){const t=[[]];let a=!1;const r=(e,a)=>{(0!==a.length||e.image||e.field)&&t[t.length-1].push({...e,text:a})};for(const n of e){if(!n.text.includes("\f")){r(n,n.text);continue}const e=n.text.split("\f");e.forEach((o,i)=>{r(n,o),i<e.length-1&&(a=!0,t.push([]))})}return{segments:t,hasPageBreak:a}}(s);if(!f)return{paragraphs:[JC(s,c,p,h)],pageBreakAfter:!1};const g=[];let m=!1;for(let v=0;v<u.length;v+=1){const e=u[v];if(v>0&&(m=!0),!QC(e))continue;const t=m?{...c??{},pageBreakBefore:!0}:c;g.push(JC(e,t,p,h)),m=!1}return{paragraphs:g,pageBreakAfter:m}}async function eS(e,t,a,r,n,o,i){return(await $C(e,t,a,r,n,o,i)).paragraphs[0]??Nt([{text:""}])}function tS(e){if(!e)return 1;const t=CC(xC(e,yC,"gridSpan"),"val"),a=t?Number(t):1;return Number.isFinite(a)&&a>1?Math.floor(a):1}function aS(e){if(!e)return;const t=xC(e,yC,"vMerge");if(!t)return;return"restart"===CC(t,"val")?"restart":"continue"}function rS(e){if(!e)return;const t=CC(e,"val");if("nil"===t||"none"===t)return{width:0,type:"none",color:"transparent"};const a=Number(CC(e,"sz")),r=Number.isFinite(a)&&a>0?Math.round(a/8*1e4)/1e4:.75,n=NC(CC(e,"color"))??"#000000",o=(null==t?void 0:t.toLowerCase())??"single";return{width:r,type:o.includes("dotted")||o.includes("dot")?"dotted":o.includes("dash")?"dashed":"solid",color:n}}function nS(e){if(!e)return;const t={},a=NC(CC(xC(e,yC,"shd"),"fill"));a&&(t.shading=a);const r=xC(e,yC,"tcW"),n=CC(r,"type"),o=CC(r,"w");if("dxa"===n){const e=HC(o);void 0!==e&&(t.width=e)}else if("pct"===n&&o){const e=Number(o);Number.isFinite(e)&&(t.width=Math.round(e/50*1e4)/1e4+"%")}const i=xC(e,yC,"tcMar");if(i){const e=HC(CC(xC(i,yC,"top"),"w")),a=HC(CC(xC(i,yC,"bottom"),"w")),r=HC(CC(xC(i,yC,"left"),"w")),n=HC(CC(xC(i,yC,"right"),"w"));void 0!==e&&(t.paddingTop=e),void 0!==a&&(t.paddingBottom=a),void 0!==r&&(t.paddingLeft=r),void 0!==n&&(t.paddingRight=n)}const l=function(e){if(!e)return;const t=CC(xC(e,yC,"vAlign"),"val");return"top"===t||"bottom"===t?t:"center"===t?"middle":void 0}(e);l&&(t.verticalAlign=l);for(const[s,d]of Object.entries(function(e){if(!e)return{};const t=xC(e,yC,"tcBorders");return t?{borderTop:rS(xC(t,yC,"top")),borderRight:rS(xC(t,yC,"right")),borderBottom:rS(xC(t,yC,"bottom")),borderLeft:rS(xC(t,yC,"left"))}:{}}(e)))d&&(t[s]=d);return Object.keys(t).length>0?t:void 0}function oS(e){const t=xC(e,yC,"trPr");return!!t&&IC(t,"tblHeader")}function iS(e,t){var a,r;const n=e=>e.style??(e.style={}),o=e.length-1;for(let i=0;i<e.length;i+=1){const a=t[i];a&&(0===i&&a.before&&(n(e[i]).spacingBefore=0),i===o&&a.after&&(n(e[i]).spacingAfter=0))}for(let i=0;i<o;i+=1){if(!(null==(a=t[i])?void 0:a.after)||!(null==(r=t[i+1])?void 0:r.before))continue;const o=n(e[i]),l=n(e[i+1]);(o.spacingAfter??0)>=(l.spacingBefore??0)?l.spacingBefore=0:o.spacingAfter=0}}async function lS(e,t,a,r,n,o,i){var l;const s=[],d=xC(e,yC,"tblGrid");if(d)for(const f of wC(d,yC,"gridCol")){const e=HC(CC(f,"w"));void 0!==e&&s.push(e)}const c=xC(e,yC,"tblPr"),h=CC(xC(c,yC,"tblStyle"),"val"),p=h&&(null==(l=null==i?void 0:i[h])?void 0:l.paragraphStyle)?i[h].paragraphStyle:void 0,u=[];for(const f of wC(e,yC,"tr")){const e=[];for(const i of wC(f,yC,"tc")){const l=[],s=[],d=xC(i,yC,"tcPr");for(const e of wC(i,yC,"p"))l.push(await eS(e,t,a,r,n,o,p)),s.push(_C(xC(e,yC,"pPr")));iS(l,s);const c=tS(d),h=aS(d),u=nS(d),f=Dt(l.length>0?l:[Nt([{text:""}])],c,"restart"===h?{rowSpan:1,vMerge:h}:h?{vMerge:h}:void 0);u&&(f.style=u),"continue"===h&&(f.blocks=[]),e.push(f)}u.push(Ft(e,oS(f)?{isHeader:!0}:void 0))}for(let f=0;f<u.length;f+=1){const e=u[f];for(let t=0;t<e.cells.length;t+=1){const a=e.cells[t];if("restart"!==a.vMerge)continue;let r=1;for(let e=f+1;e<u.length;e+=1){const a=u[e].cells[t];if(!a||"continue"!==a.vMerge)break;r+=1}r>1&&(a.rowSpan=r)}}return Bt(u,s.length>0?s:void 0)}async function sS(e,t,a,r,n,o,i){if(!e)return[];const l=(new vC).parseFromString(e,"application/xml").documentElement;if(!l)return[];const s=[];for(let d=0;d<l.childNodes.length;d+=1){const e=l.childNodes[d];if((null==e?void 0:e.nodeType)!==e.ELEMENT_NODE)continue;const c=e;"p"===c.localName&&c.namespaceURI===yC?s.push(await eS(c,t,a,r,n,o)):"tbl"===c.localName&&c.namespaceURI===yC&&s.push(await lS(c,t,a,r,n,o,i))}return s}const dS=new Set(["separator","continuationSeparator","continuationNotice"]);async function cS(e,t={}){var a,r,n,o,i,l,s,d,c,h;null==(a=t.onProgress)||a.call(t,"opening-docx");const p=await vl.loadAsync(e),u=await(null==(r=p.file("word/document.xml"))?void 0:r.async("string"));if(!u)throw new Error("Missing word/document.xml");const f=LC(await(null==(n=p.file("word/_rels/document.xml.rels"))?void 0:n.async("string"))),g=function(e){const t=new Map,a=new Map;if(!e)return{abstractKinds:t,numKinds:a};const r=(new vC).parseFromString(e,"application/xml").documentElement;if(!r)return{abstractKinds:t,numKinds:a};const n=r.getElementsByTagNameNS(yC,"abstractNum");for(let i=0;i<n.length;i+=1){const e=n[i],a=CC(e,"abstractNumId"),r=xC(e,yC,"lvl"),o=CC(xC(r??e,yC,"numFmt"),"val");a&&o&&t.set(a,"bullet"===o?"bullet":"ordered")}const o=r.getElementsByTagNameNS(yC,"num");for(let i=0;i<o.length;i+=1){const e=o[i],r=CC(e,"numId"),n=CC(xC(e,yC,"abstractNumId"),"val");r&&n&&a.set(r,t.get(n)??"ordered")}return{abstractKinds:t,numKinds:a}}(await(null==(o=p.file("word/numbering.xml"))?void 0:o.async("string"))??null),m=function(e){const t={adjustLineHeightInTable:!0};if(!e)return t;const a=xC((new vC).parseFromString(e,"application/xml").documentElement,yC,"compat");if(a){const e=xC(a,yC,"adjustLineHeightInTable");if(e){const a=CC(e,"val");t.adjustLineHeightInTable="0"!==a&&"false"!==a}}return t}(await(null==(i=p.file("word/settings.xml"))?void 0:i.async("string"))??null),v=await(null==(l=p.file("word/styles.xml"))?void 0:l.async("string"))??null,y=function(e){if(!e)return{};const t=(new vC).parseFromString(e,"application/xml").documentElement,a=xC(t?wC(t,bC,"themeElements")[0]:null,bC,"fontScheme"),r=xC(a,bC,"majorFont"),n=xC(a,bC,"minorFont"),o=e=>{var t;const a=xC(e,bC,"latin");return(null==(t=null==a?void 0:a.getAttribute("typeface"))?void 0:t.trim())||void 0},i=e=>{var t;const a=xC(e,bC,"cs");return(null==(t=null==a?void 0:a.getAttribute("typeface"))?void 0:t.trim())||o(e)},l=e=>{var t;const a=xC(e,bC,"ea");return(null==(t=null==a?void 0:a.getAttribute("typeface"))?void 0:t.trim())||o(e)};return{majorHAnsi:o(r),minorHAnsi:o(n),majorEastAsia:l(r),minorEastAsia:l(n),majorBidi:i(r),minorBidi:i(n)}}(await(null==(s=p.file("word/theme/theme1.xml"))?void 0:s.async("string"))??null),b=function(e,t){if(!e)return;const a=(new vC).parseFromString(e,"application/xml").documentElement;if(!a)return;const r=xC(a,yC,"docDefaults"),n=xC(xC(r,yC,"pPrDefault"),yC,"pPr"),o=xC(xC(r,yC,"rPrDefault"),yC,"rPr"),i=FC(zC(n)),l=VC(o,t),s={};let d;for(const c of wC(a,yC,"style")){const e=CC(c,"styleId"),a=CC(c,"type");if(!e||"paragraph"!==a&&"character"!==a&&"table"!==a)continue;const r=CC(xC(c,yC,"name"),"val")??e,n=CC(xC(c,yC,"basedOn"),"val")??void 0,o=CC(xC(c,yC,"next"),"val")??void 0,h=FC(zC(xC(c,yC,"pPr"))),p=VC(xC(c,yC,"rPr"),t);let u;if("table"===a){const t=xC(c,yC,"tblPr");u={styleId:e,indentLeft:HC(CC(xC(t,yC,"tblInd"),"w"))}}const f="paragraph"===a&&kC(CC(c,"default"));f&&(d=e),s[e]={id:e,name:r,type:a,basedOn:n,nextStyle:o,paragraphStyle:"paragraph"===a&&f?UC(i,h):h,textStyle:"paragraph"===a&&f?qC(l,p):p,tableStyle:u}}return d&&s[d]?s:((i||l)&&(s.Normal={id:"Normal",name:"Normal",type:"paragraph",paragraphStyle:i,textStyle:l}),Object.keys(s).length>0?s:void 0)}(v,y);null==(d=t.onProgress)||d.call(t,"parsing-document");const M=(new vC).parseFromString(u,"application/xml").getElementsByTagNameNS(yC,"body")[0];if(!M)return Ut([Nt([{text:""}])]);const w={assets:{},byPath:new Map,nextId:1},x=[],C=[[]];let S=!1;const I=e=>{S&&(e.style={...e.style??{},pageBreakBefore:!0},S=!1),C[C.length-1].push(e)};let k=0;for(let q=0;q<M.childNodes.length;q+=1){const e=M.childNodes[q];if((null==e?void 0:e.nodeType)===e.ELEMENT_NODE){const t=e;t.namespaceURI===yC&&"sectPr"!==t.localName&&(k+=1)}}let A=0;const T=()=>{var e;A+=1,k>0&&(null==(e=t.onProgress)||e.call(t,"parsing-document",A/k))};for(let q=0;q<M.childNodes.length;q+=1){const e=M.childNodes[q];if((null==e?void 0:e.nodeType)!==e.ELEMENT_NODE)continue;const t=e;if(t.namespaceURI===yC){if("sectPr"===t.localName)x.push(GC(t)),C.push([]),S=!1;else if("p"===t.localName){const e=await $C(t,g,p,f,w,y);for(const t of e.paragraphs)I(t);e.pageBreakAfter&&(S=!0),T()}else"tbl"===t.localName&&(I(await lS(t,g,p,f,w,y,b)),T());await PC(50,A)}}if(0===x.length){const e=xC(M,yC,"sectPr");x.push(e?GC(e):{pageSettings:WC(M),headerRIds:{},footerRIds:{}})}null==(c=t.onProgress)||c.call(t,"parsing-headers-footers");const P=[],E=e=>Object.keys(e.headerRIds).length>0||Object.keys(e.footerRIds).length>0,L=x.filter(E).length;let O=0;const R=()=>{var e;O+=1,L>0&&(null==(e=t.onProgress)||e.call(t,"parsing-headers-footers",O/L))};for(let q=0;q<x.length;q+=1){const e=x[q],t=C[q]??[];jC(t,e.docGridLinePitchPx,e.docGridMode,e.docGridType,m);const a=async t=>{var a;if(!t)return[];const r=f.get(t);if(!r)return[];let n=r.startsWith("/")?r.slice(1):r;n.startsWith("word/")||(n=`word/${r}`);const o=await(null==(a=p.file(n))?void 0:a.async("string")),i=await OC(p,n),l=await sS(o??null,g,p,i,w,y,b);return jC(l,e.docGridLinePitchPx,e.docGridMode,e.docGridType,m),l},r=await a(e.headerRIds.default),n=await a(e.headerRIds.first),o=await a(e.headerRIds.even),i=await a(e.footerRIds.default),l=await a(e.footerRIds.first),s=await a(e.footerRIds.even);E(e)&&R(),await PC(2,O);const d=Je(e.pageSettings??{width:816,height:1056,orientation:"portrait",margins:{top:96,right:96,bottom:96,left:96,header:48,footer:48,gutter:0}});P.push({id:`section:${q+1}`,blocks:t.length>0?t:[Nt([{text:""}])],pageSettings:d,header:r.length>0?r:void 0,firstPageHeader:n.length>0?n:void 0,evenPageHeader:o.length>0?o:void 0,footer:i.length>0?i:void 0,firstPageFooter:l.length>0?l:void 0,evenPageFooter:s.length>0?s:void 0})}const H=await(null==(h=p.file("word/footnotes.xml"))?void 0:h.async("string"))??null,N=H?await OC(p,"word/footnotes.xml"):new Map,D=await async function(e,t,a,r,n,o,i){const l={byDocxId:new Map,footnotes:{items:{}}};if(!e)return l;const s=(new vC).parseFromString(e,"application/xml").documentElement;if(!s)return l;const d={},c=new Map;let h,p;const u=wC(s,yC,"footnote");let f=0;for(const g of u){const e=CC(g,"id")??"",l=CC(g,"type")??"",s=[];for(let d=0;d<g.childNodes.length;d+=1){const e=g.childNodes[d];if((null==e?void 0:e.nodeType)!==e.ELEMENT_NODE)continue;const l=e;l.namespaceURI===yC&&("p"===l.localName?s.push(await eS(l,t,a,r,n,o)):"tbl"===l.localName&&s.push(await lS(l,t,a,r,n,o,i)))}if(dS.has(l)){"separator"===l?h=s:"continuationSeparator"===l&&(p=s);continue}if(("-1"===e||"0"===e)&&0===s.length)continue;f+=1;const u=`footnote:imported:${f}`,m=Number.parseInt(e,10),v={id:u,blocks:s.length>0?s:[],docxId:Number.isFinite(m)?m:void 0};d[u]=v,e&&c.set(e,v)}return{byDocxId:c,footnotes:{items:d,separator:h,continuationSeparator:p},separator:h,continuationSeparator:p}}(H,g,p,N,w,y,b),F=Object.keys(D.footnotes.items).length>0||D.footnotes.separator||D.footnotes.continuationSeparator?D.footnotes:void 0;!function(e,t){var a,r,n,o,i,l;const s=e=>{if("paragraph"!==e.type)for(const t of e.rows)for(const e of t.cells)for(const t of e.blocks)s(t);else for(const a of e.runs){const e=a.__importedFootnoteRef;if(!e)continue;delete a.__importedFootnoteRef;const r=t.get(e.docxId);r&&(a.footnoteReference={footnoteId:r.id,...e.customMark?{customMark:e.customMark}:{}})}};for(const d of e)d.blocks.forEach(s),null==(a=d.header)||a.forEach(s),null==(r=d.firstPageHeader)||r.forEach(s),null==(n=d.evenPageHeader)||n.forEach(s),null==(o=d.footer)||o.forEach(s),null==(i=d.firstPageFooter)||i.forEach(s),null==(l=d.evenPageFooter)||l.forEach(s)}(P,D.byDocxId);const B=P.length>1||P.some(e=>{var t,a,r,n,o,i;return((null==(t=e.header)?void 0:t.length)??0)>0||((null==(a=e.firstPageHeader)?void 0:a.length)??0)>0||((null==(r=e.evenPageHeader)?void 0:r.length)??0)>0||((null==(n=e.footer)?void 0:n.length)??0)>0||((null==(o=e.firstPageFooter)?void 0:o.length)??0)>0||((null==(i=e.evenPageFooter)?void 0:i.length)??0)>0}),V=Object.keys(w.assets).length>0,z=e=>F?(e.footnotes=F,wr(e)):e;if(B){const e=Ut([]);return e.sections=P,1===P.length&&(e.pageSettings=P[0].pageSettings),b&&(e.styles=b),V&&(e.assets=w.assets),z(e)}const _=P[0],U=Ut((null==_?void 0:_.blocks.length)>0?_.blocks:[Nt([{text:""}])],null==_?void 0:_.pageSettings);return V&&(U.assets=w.assets),b&&(U.styles=b),z(U)}let hS=1;function pS(e,t={}){if("undefined"==typeof Worker||"undefined"==typeof URL)return cS(e,t);const a=hS;return hS+=1,new Promise((n,o)=>{const i=new Worker(new URL(""+("undefined"==typeof document&&"undefined"==typeof location?require("url").pathToFileURL(__dirname+"/assets/importDocxWorker-DIQ28Lka.js").href:new URL("assets/importDocxWorker-DIQ28Lka.js","undefined"==typeof document?location.href:document.currentScript&&"SCRIPT"===document.currentScript.tagName.toUpperCase()&&document.currentScript.src||document.baseURI).href),"undefined"==typeof document&&"undefined"==typeof location?require("url").pathToFileURL(__filename).href:"undefined"==typeof document?location.href:r&&"SCRIPT"===r.tagName.toUpperCase()&&r.src||new URL("oasis-editor.umd.cjs",document.baseURI).href),{type:"module"}),l=()=>{i.removeEventListener("message",d),i.removeEventListener("error",s),i.terminate()},s=e=>{l(),o(e.error instanceof Error?e.error:new Error(e.message))},d=e=>{var r;const i=e.data;i&&i.id===a&&("progress"!==i.type?(l(),"done"===i.type?n(i.document):o(new Error(i.error))):null==(r=t.onProgress)||r.call(t,i.stage,i.progress))};i.addEventListener("message",d),i.addEventListener("error",s),i.postMessage({type:"import-docx",id:a,buffer:e},[e])})}async function uS(e){return"function"==typeof e.arrayBuffer?e.arrayBuffer():new Promise((t,a)=>{const r=new FileReader;r.onerror=()=>a(r.error??new Error("Failed to read file.")),r.onload=()=>{const e=r.result;e instanceof ArrayBuffer?t(e):a(new Error("Failed to read file as ArrayBuffer."))},r.readAsArrayBuffer(e)})}function fS(e){if(!e)return null;for(const t of Array.from(e.items??[])){if("file"!==t.kind)continue;const e=t.getAsFile();if(e&&e.type.startsWith("image/"))return e}for(const t of Array.from(e.files??[]))if(t.type.startsWith("image/"))return t;return null}function gS(e){return{insertImageFromFile:async(t,a)=>{e.logger.info(`image insert:start name="${t.name}" type=${t.type} size=${t.size}`);const r=await uS(t),n=`data:${t.type};base64,${function(e){return btoa(new Uint8Array(e).reduce((e,t)=>e+String.fromCharCode(t),""))}(r)}`,o=new Image;o.src=n,await new Promise(e=>{o.onload=e,o.onerror=e});const i=o.naturalWidth||300,l=o.naturalHeight||300,s=e.state(),d=(null==a?void 0:a.paragraphId)??s.selection.focus.paragraphId,c=hl(e.surfaceRef(),s.document,d,s.activeSectionIndex??0),h=i>c?c/i:1,p=Math.max(24,Math.round(i*h)),u=Math.max(24,Math.round(l*h));e.logger.info(`image insert:decoded natural=${i}x${l} fitted=${p}x${u} maxWidth=${c}`),e.applyTransactionalState(e=>function(e,t){const a=Ct(e.selection)?e:Sa(e),{paragraph:r,index:n,offset:o}=ba(a),i=Ca(r,o,[Rt("",Ma(r,o),t)]);return va(a,ct(a).map((e,t)=>t===n?i:oa(e)),ya(Fe(i,o+1)))}(a?Jt(e,{anchor:a,focus:a}):e,{src:n,width:p,height:u}),{mergeKey:"insertImage"})}}}const mS={"reading-file":[0,8],"opening-docx":[8,20],"parsing-document":[20,72],"parsing-headers-footers":[72,78],"applying-editor-state":[78,88],"stabilizing-layout":[88,98],done:[100,100],error:[100,100]};function vS(e){const[t,a]=M(null),r=(e,t)=>{const[a,r]=mS[e];return void 0!==t&&Number.isFinite(t)?Math.round(10*(a+(r-a)*Math.min(1,Math.max(0,t))))/10:r},n=function(e){return{handleImportDocx:async t=>{if(!t)return;const a=e.now();e.logger.info("import docx:start",{name:t.name,size:t.size}),e.setImportPhase("reading-file");try{const r=e.now(),n=await uS(t);e.logger.info("import docx:phase",{phase:"reading-file",durationMs:Math.round(100*(e.now()-r))/100});let o=null,i=-1,l=0;const s=await pS(n,{onProgress:(t,a)=>{const r=e.now(),n=void 0!==a&&Number.isFinite(a)?Math.floor(100*a):void 0,s=t!==o;if(!(s||void 0!==n&&(i<0||n-i>=1)||r-l>=40))return;o=t,i=n??i,l=r,e.setImportPhase(t,a);const d={phase:t,subProgress:a};s||void 0===a||1===a?e.logger.info("import docx:phase",d):e.logger.debug("import docx:phase",d)}});e.setImportPhase("applying-editor-state"),e.resetEditorChromeState(),e.applyState(qt(s));const d=e.now();e.setImportPhase("stabilizing-layout"),await e.stabilizeLayoutAfterImport(),e.logger.info("import docx:phase",{phase:"stabilizing-layout",durationMs:Math.round(100*(e.now()-d))/100});const c=nt(s).reduce((e,t)=>{var a,r;return e+((null==(a=t.header)?void 0:a.length)??0)+t.blocks.length+((null==(r=t.footer)?void 0:r.length)??0)},0),h=st(s).length;e.setImportPhase("done"),e.logger.info("import docx:done",{blocks:c,paragraphs:h,durationMs:Math.round(100*(e.now()-a))/100}),e.focusInput()}catch(r){e.setImportPhase("error"),e.logger.error("import docx:error",r)}finally{e.clearImportProgressSoon()}}}}({applyState:e.applyState,stabilizeLayoutAfterImport:e.stabilizeLayoutAfterImport,resetEditorChromeState:e.resetEditorChromeState,focusInput:e.focusInput,setImportPhase:(e,t)=>{a({phase:e,progress:r(e,t),subProgress:t})},clearImportProgressSoon:()=>{globalThis.setTimeout(()=>{a(e=>"done"===(null==e?void 0:e.phase)||"error"===(null==e?void 0:e.phase)?null:e)},1200)},now:()=>performance.now(),logger:e.logger}),o=gS({state:e.state,applyTransactionalState:e.applyTransactionalState,surfaceRef:e.surfaceRef,logger:e.logger}),i=yb({document:()=>e.state().document,focusInput:e.focusInput}),l=async(e,t)=>{await o.insertImageFromFile(e,t)};return{importProgress:t,handleImportDocx:async t=>{e.isReadOnly()||await n.handleImportDocx(t)},handleExportDocx:async()=>{await i.handleExportDocx()},handleExportPdf:async()=>{await i.handleExportPdf()},insertImageFromFile:l,handleInsertImage:async t=>{e.isReadOnly()||t&&(await l(t),e.focusInput())}}}function yS(e,t,a,r){return Math.max(e,a)<Math.min(t,r)}function bS(e,t,a){var r,n;const{styles:o}=e.document;if(a.isCollapsed){const n=t[a.startIndex];if(!n)return[];const i=function(e,t){var a;const r=Be(e,t);let n=0;for(let o=0;o<e.runs.length;o+=1){const t=e.runs[o],a=n+t.text.length;if(r<a)return t.styles??void 0;if(r===a){if(t.styles)return t.styles;const a=e.runs[o+1];return(null==a?void 0:a.styles)??void 0}n=a}return(null==(a=e.runs[e.runs.length-1])?void 0:a.styles)??void 0}(n,Mt(e,e.selection.focus));return[Ze(i,null==(r=n.style)?void 0:r.styleId,o)]}const i=[];for(let l=a.startIndex;l<=a.endIndex;l+=1){const e=t[l];if(!e)continue;const r=l===a.startIndex?a.startParagraphOffset:0,s=l===a.endIndex?a.endParagraphOffset:Ne(e).length;let d=0;for(const t of e.runs){const a=d+t.text.length;yS(d,a,r,s)&&i.push(Ze(t.styles,null==(n=e.style)?void 0:n.styleId,o)),d=a}}return i}function MS(e,t){return e.length>0&&e.every(e=>Boolean(e[t]))}function wS(e,t){var a;if(0===e.length)return"";const r=null==(a=e[0])?void 0:a[t];if(null==r||""===r)return"";const n=String(r);return e.every(e=>String(e[t]??"")===n)?n:""}function xS(e,t){var a;if(0===e.length)return"";const r=null==(a=e[0])?void 0:a[t];if(null==r)return"";const n=String(r);return e.every(e=>String(e[t]??"")===n)?n:""}function CS(e,t){return e.length>0&&e.every(e=>!0===e[t])}function SS(e){var t,a;if(0===e.length)return"";const r=null==(a=null==(t=e[0])?void 0:t.list)?void 0:a.kind;return r&&e.every(e=>{var t;return(null==(t=e.list)?void 0:t.kind)===r})?r:""}function IS(e){const t=ct(e),a=St(e,t),r=bS(e,t,a),n=function(e,t,a){const{styles:r}=e.document;return t.slice(a.startIndex,a.endIndex+1).map(e=>Ke(e.style,r))}(e,t,a),o=t.slice(a.startIndex,a.endIndex+1);return{bold:MS(r,"bold"),italic:MS(r,"italic"),underline:MS(r,"underline"),underlineStyle:wS(r,"underlineStyle"),underlineColor:wS(r,"underlineColor"),strike:MS(r,"strike"),doubleStrike:MS(r,"doubleStrike"),superscript:MS(r,"superscript"),subscript:MS(r,"subscript"),smallCaps:MS(r,"smallCaps"),allCaps:MS(r,"allCaps"),hidden:MS(r,"hidden"),characterScale:wS(r,"characterScale"),characterSpacing:wS(r,"characterSpacing"),baselineShift:wS(r,"baselineShift"),kerningThreshold:wS(r,"kerningThreshold"),ligatures:wS(r,"ligatures"),numberSpacing:wS(r,"numberSpacing"),numberForm:wS(r,"numberForm"),stylisticSet:wS(r,"stylisticSet"),contextualAlternates:MS(r,"contextualAlternates"),fontFamily:wS(r,"fontFamily"),fontSize:wS(r,"fontSize"),color:wS(r,"color"),highlight:wS(r,"highlight"),link:wS(r,"link"),styleId:xS(n,"styleId"),align:xS(n,"align"),lineHeight:xS(n,"lineHeight"),spacingBefore:xS(n,"spacingBefore"),spacingAfter:xS(n,"spacingAfter"),indentLeft:xS(n,"indentLeft"),indentFirstLine:xS(n,"indentFirstLine"),indentHanging:xS(n,"indentHanging"),shading:xS(n,"shading"),listKind:SS(o),pageBreakBefore:CS(n,"pageBreakBefore"),keepWithNext:CS(n,"keepWithNext")}}function kS(e){const[t,a]=M(void 0),r=()=>{a(void 0)};x(()=>{Ct(e.state().selection)||r()});const n=()=>{const a=IS(e.state()),r=t();return Ct(e.state().selection)&&r?{...a,bold:r.bold??a.bold,italic:r.italic??a.italic,underline:r.underline??a.underline,underlineStyle:void 0!==r.underlineStyle&&null!==r.underlineStyle?String(r.underlineStyle):a.underlineStyle,strike:r.strike??a.strike,superscript:r.superscript??a.superscript,subscript:r.subscript??a.subscript,fontFamily:r.fontFamily??a.fontFamily,fontSize:void 0!==r.fontSize&&null!==r.fontSize?String(r.fontSize):a.fontSize,color:r.color??a.color,highlight:r.highlight??a.highlight,link:r.link??a.link}:a};return{pendingCaretTextStyle:t,clearPendingCaretTextStyle:r,toolbarStyleState:n,applyToolbarValueStyleCommand:(t,r)=>{if(Ct(e.state().selection))return e.logger.info(`setPendingStyle:${t}=${JSON.stringify(r)}`),e.clearPreferredColumn(),e.resetTransactionGrouping(),((e,t)=>{a(a=>{const r={...a??{}};return null==t||""===t?delete r[e]:r[e]=t,Object.keys(r).length>0?r:void 0})})(t,r),void e.focusInput();e.commandsController().applyValueStyleCommand(t,r)},applyToolbarBooleanStyleCommand:t=>{if(Ct(e.state().selection)){const r=!n()[t];return e.logger.info(`setPendingStyle:${t}=${JSON.stringify(r)}`),e.clearPreferredColumn(),e.resetTransactionGrouping(),((e,t)=>{a(a=>{const r={...a??{}};return r[e]=t,"superscript"===e&&t&&(r.subscript=!1),"subscript"===e&&t&&(r.superscript=!1),r})})(t,r),void e.focusInput()}e.commandsController().applyBooleanStyleCommand(t)}}}function AS(e){return{performUndo:()=>{const t=(a=e.getHistoryState(),r=e.stateSnapshot(),0===a.undoStack.length?null:{history:{undoStack:a.undoStack.slice(0,-1),redoStack:[...a.redoStack,r],lastTransactionMeta:null},nextState:a.undoStack[a.undoStack.length-1]});var a,r;t&&(e.updateHistoryState(()=>t.history),e.clearPreferredColumn(),e.applyHistoryState(t.nextState),e.focusInput())},performRedo:()=>{const t=(a=e.getHistoryState(),r=e.stateSnapshot(),0===a.redoStack.length?null:{history:{undoStack:[...a.undoStack,r],redoStack:a.redoStack.slice(0,-1),lastTransactionMeta:null},nextState:a.redoStack[a.redoStack.length-1]});var a,r;t&&(e.updateHistoryState(()=>t.history),e.clearPreferredColumn(),e.applyHistoryState(t.nextState),e.focusInput())},moveSelectedImageByParagraph:t=>{const a=e.imageOps().getSelectedImageInfo(e.state());if(!a)return!1;const r=ct(e.state()),n=r.findIndex(e=>e.id===a.paragraph.id);if(n<0)return!1;const o=n+t;if(o<0||o>=r.length){const a=((e,t)=>{const a=nt(e.document),r=Math.max(0,Math.min(ht(e),a.length-1)),n=pt(e),o=a[r];if(!o)return e;const i=[...a],l={...o},s=Ht("");if("header"===n){const e=[...o.header??[]];t<0?e.unshift(s):e.push(s),l.header=e}else if("footer"===n){const e=[...o.footer??[]];t<0?e.unshift(s):e.push(s),l.footer=e}else{const e=[...o.blocks];t<0?e.unshift(s):e.push(s),l.blocks=e}return i[r]=l,{...e,document:{...e.document,sections:i}}})(e.state(),t),r=ct(a),n=t<0?r[0]:r[r.length-1];if(!n)return!1;const o=Fe(n,t<0?De(n):0);return e.applyTransactionalState(()=>za(a,o),{mergeKey:"moveImage"}),e.focusInput(),!0}const i=r[o],l=t<0?De(i):0;return e.applyTransactionalState(e=>za(e,Fe(i,l)),{mergeKey:"moveImage"}),e.focusInput(),!0},applySelectionPreservingStructure:t=>{var a;const r=e.stateSnapshot();e.applyHistoryState({...r,document:{...r.document,sections:null==(a=r.document.sections)?void 0:a.map(_r)},selection:{anchor:{...t.anchor},focus:{...t.focus}}})}}}
13
+ /**
14
+ * @license lucide v1.11.0 - ISC
15
+ *
16
+ * This source code is licensed under the ISC license.
17
+ * See the LICENSE file in the root directory of this source tree.
18
+ */const TS={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"},PS=([e,t,a])=>{const r=document.createElementNS("http://www.w3.org/2000/svg",e);return Object.keys(t).forEach(e=>{r.setAttribute(e,String(t[e]))}),(null==a?void 0:a.length)&&a.forEach(e=>{const t=PS(e);r.appendChild(t)}),r},ES=e=>"string"==typeof e?e:e&&e.class?e.class&&"string"==typeof e.class?e.class.split(" "):e.class&&Array.isArray(e.class)?e.class:"":"",LS=(e,{nameAttr:t,icons:a,attrs:r})=>{var n;const o=e.getAttribute(t);if(null==o)return;const i=a[(e=>{const t=(e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,t,a)=>a?a.toUpperCase():t.toLowerCase()))(e);return t.charAt(0).toUpperCase()+t.slice(1)})(o)];if(!i)return console.warn(`${e.outerHTML} icon name was not found in the provided icons object.`);const l=(e=>Array.from(e.attributes).reduce((e,t)=>(e[t.name]=t.value,e),{}))(e),s=(e=>{for(const t in e)if(t.startsWith("aria-")||"role"===t||"title"===t)return!0;return!1})(l)?{}:{"aria-hidden":"true"},d={...TS,"data-lucide":o,...s,...r,...l},c=((...e)=>e.filter((e,t,a)=>Boolean(e)&&""!==e.trim()&&a.indexOf(e)===t).join(" ").trim())("lucide",`lucide-${o}`,...ES(l),...ES(r));c&&Object.assign(d,{class:c});const h=((e,t={})=>{const a={...TS,...t};return PS(["svg",a,e])})(i,d);return null==(n=e.parentNode)?void 0:n.replaceChild(h,e)},OS=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"m9 13 2 2 4-4"}]],RS=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M9 13h6"}]],HS=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}]],NS=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]],DS=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h10"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h4"}]],FS=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]],BS=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]],VS=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h4"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h10"}]],zS=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]],_S=[["path",{d:"M13.5 10.5 15 9"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15"}],["path",{d:"M4.293 19.707 6 18"}],["path",{d:"m9 15 1.5-1.5"}]],US=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 12 2 2 4-4"}]],qS=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17"}]],GS=[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1"}],["path",{d:"m22 15-3-3 3-3"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1"}]],WS=[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1"}],["path",{d:"m2 9 3 3-3 3"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1"}]],jS=[["path",{d:"M12 17h1.5"}],["path",{d:"M12 22h1.5"}],["path",{d:"M12 2h1.5"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5"}],["path",{d:"M20 14v3h-2.5"}],["path",{d:"M20 8.5V10"}],["path",{d:"M4 10V8.5"}],["path",{d:"M4 19.5V14"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8"}]],XS=[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"}]],ZS=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]],KS=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"}]],YS=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]],JS=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]],QS=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]],$S=[["path",{d:"M9 5v4"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1"}],["path",{d:"M9 15v2"}],["path",{d:"M17 3v2"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1"}],["path",{d:"M17 13v3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]],eI=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]],tI=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]],aI=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]],rI=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]],nI=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]],oI=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]],iI=[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}]],lI=[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]],sI=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]],dI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]],cI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]],hI=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]],pI=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]],uI=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]],fI=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]],gI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]],mI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]],vI=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]],yI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]],bI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]],MI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]],wI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]],xI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]],CI=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}]],SI=[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M13.4 10.6 19 5"}]],II=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]],kI=[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307"}],["path",{d:"M13 13H9"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956"}],["path",{d:"M9 17V9"}]],AI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]],TI=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]],PI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]],EI=[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}],["circle",{cx:"12",cy:"12",r:"10"}]],LI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]],OI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}]],RI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]],HI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M22 2 2 22"}]],NI=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]],DI=[["path",{d:"M17.925 20.056a6 6 0 0 0-11.851.001"}],["circle",{cx:"12",cy:"11",r:"4"}],["circle",{cx:"12",cy:"12",r:"10"}]],FI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662"}]],BI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]],VI=[["path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21.34 15.664a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M8 22H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]],zI=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1"}],["path",{d:"M8 18h1"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]],_I=[["path",{d:"M12 13v8l-4-4"}],["path",{d:"m12 21 4-4"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284"}]],UI=[["path",{d:"M12 13v8"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m8 17 4-4 4 4"}]],qI=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]],GI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]],WI=[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5"}],["path",{d:"m14.3 19.6 1-.4"}],["path",{d:"M15 3v7.5"}],["path",{d:"m15.2 16.9-.9-.3"}],["path",{d:"m16.6 21.7.3-.9"}],["path",{d:"m16.8 15.3-.4-1"}],["path",{d:"m19.1 15.2.3-.9"}],["path",{d:"m19.6 21.7-.4-1"}],["path",{d:"m20.7 16.8 1-.4"}],["path",{d:"m21.7 19.4-.9-.3"}],["path",{d:"M9 3v18"}],["circle",{cx:"18",cy:"18",r:"3"}]],jI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]],XI=[["path",{d:"M16 2v2"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"12",r:"4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]],ZI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z"}],["path",{d:"M9.2 9.2h.01"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"M14.7 14.8h.01"}]],KI=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["circle",{cx:"12",cy:"12",r:"10"}]],YI=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]],JI=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]],QI=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m8 18 4-4"}],["path",{d:"M8 10v8h8"}]],$I=[["path",{d:"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.3"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m7.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.879.001l-1.846.85a.5.5 0 0 1-.692-.593l1.29-4.88"}],["circle",{cx:"6",cy:"14",r:"3"}]],ek=[["path",{d:"M14 22h4a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M5 14a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1 1 1 0 0 1 1 1v2a1 1 0 0 0 1 1"}],["path",{d:"M9 22a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-2a1 1 0 0 0-1-1"}]],tk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]],ak=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 18v-2"}],["path",{d:"M12 18v-4"}],["path",{d:"M16 18v-6"}]],rk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 18v-1"}],["path",{d:"M12 18v-6"}],["path",{d:"M16 18v-3"}]],nk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17"}]],ok=[["path",{d:"M15.941 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.512"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z"}]],ik=[["path",{d:"M10.5 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m14 20 2 2 4-4"}]],lk=[["path",{d:"M4 12.15V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3.35"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m5 16-3 3 3 3"}],["path",{d:"m9 22 3-3-3-3"}]],sk=[["path",{d:"M15 8a1 1 0 0 1-1-1V2a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8z"}],["path",{d:"M20 8v12a2 2 0 0 1-2 2h-4.182"}],["path",{d:"m3.305 19.53.923-.382"}],["path",{d:"M4 10.592V4a2 2 0 0 1 2-2h8"}],["path",{d:"m4.228 16.852-.924-.383"}],["path",{d:"m5.852 15.228-.383-.923"}],["path",{d:"m5.852 20.772-.383.924"}],["path",{d:"m8.148 15.228.383-.923"}],["path",{d:"m8.53 21.696-.382-.924"}],["path",{d:"m9.773 16.852.922-.383"}],["path",{d:"m9.773 19.148.922.383"}],["circle",{cx:"7",cy:"18",r:"3"}]],dk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]],ck=[["path",{d:"M4 6.835V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0"}]],hk=[["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M4 12v6"}],["path",{d:"M4 14h2"}],["path",{d:"M9.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v4"}],["circle",{cx:"4",cy:"20",r:"2"}]],pk=[["path",{d:"M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M9 17v-2a2 2 0 0 0-4 0v2"}],["rect",{width:"8",height:"5",x:"3",y:"17",rx:"1"}]],uk=[["path",{d:"M20 14V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M14 18h6"}]],fk=[["path",{d:"M14.364 13.634a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506l4.013-4.009a1 1 0 0 0-3.004-3.004z"}],["path",{d:"M14.487 7.858A1 1 0 0 1 14 7V2"}],["path",{d:"M20 19.645V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l2.516 2.516"}],["path",{d:"M8 18h1"}]],gk=[["path",{d:"M12.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M10.378 12.622a1 1 0 0 1 3 3.003L8.36 20.637a2 2 0 0 1-.854.506l-2.867.837a.5.5 0 0 1-.62-.62l.836-2.869a2 2 0 0 1 .506-.853z"}]],mk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z"}]],vk=[["path",{d:"M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5.35"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M14 19h6"}],["path",{d:"M17 16v6"}]],yk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M12 17h.01"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}]],bk=[["path",{d:"M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.589 3.588A2.4 2.4 0 0 1 20 8v3.25"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m21 22-2.88-2.88"}],["circle",{cx:"16",cy:"17",r:"3"}]],Mk=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 15h.01"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3"}],["path",{d:"M15 12a5 5 0 0 1 0 6"}]],wk=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16"}],["path",{d:"M6 22h2"}],["path",{d:"M7 14v8"}]],xk=[["path",{d:"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m10 17.843 3.033-1.755a.64.64 0 0 1 .967.56v4.704a.65.65 0 0 1-.967.56L10 20.157"}],["rect",{width:"7",height:"6",x:"3",y:"16",rx:"1"}]],Ck=[["path",{d:"M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m15 17 5 5"}],["path",{d:"m20 17-5 5"}]],Sk=[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02"}],["path",{d:"M2 12a10 10 0 0 1 18-6"}],["path",{d:"M2 16h.01"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2"}]],Ik=[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3"}],["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"18",cy:"18",r:"3"}]],kk=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]],Ak=[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473"}],["path",{d:"m16.5 3.5 5 5"}],["path",{d:"m21.5 3.5-5 5"}]],Tk=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"}]],Pk=[["circle",{cx:"12",cy:"12",r:"3"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12"}]],Ek=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 19 2 2 4-4"}]],Lk=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"M16 19h6"}],["path",{d:"M19 22v-6"}]],Ok=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 16 5 5"}],["path",{d:"m16 21 5-5"}]],Rk=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],Hk=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]],Nk=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"}]],Dk=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 13 6 6"}]],Fk=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],Bk=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0"}]],Vk=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"}],["path",{d:"M17 7A5 5 0 0 0 7 7"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"}]],zk=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]],_k=[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"}]],Uk=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]],qk=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]],Gk=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]],Wk=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5"}]],jk=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}]],Xk=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M20 22v.01"}]],Zk=[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"10",r:"3"}]],Kk=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]],Yk=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5"}],["circle",{cx:"16",cy:"7",r:"5"}]],Jk=[["path",{d:"M5 3v16h16"}],["path",{d:"m5 19 6-6"}],["path",{d:"m2 6 3-3 3 3"}],["path",{d:"m18 16 3 3-3 3"}]],Qk=[["path",{d:"M12 16h.01"}],["path",{d:"M12 8v4"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z"}]],$k=[["path",{d:"M10 15V9"}],["path",{d:"M14 15V9"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}]],eA=[["path",{d:"m15 9-6 6"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}],["path",{d:"m9 9 6 6"}]],tA=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v4"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"}]],aA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 15h1"}],["path",{d:"M19 15h2"}],["path",{d:"M3 15h2"}],["path",{d:"M9 15h1"}]],rA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]],nA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 14v1"}],["path",{d:"M9 19v2"}],["path",{d:"M9 3v2"}],["path",{d:"M9 9v1"}]],oA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]],iA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]],lA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 14v1"}],["path",{d:"M15 19v2"}],["path",{d:"M15 3v2"}],["path",{d:"M15 9v1"}]],sA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 9h1"}],["path",{d:"M19 9h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 9h1"}]],dA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]],cA=[["path",{d:"M13 21h8"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]],hA=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]],pA=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"m2 22 3-3"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m18 3-4 4h6l-4 4"}]],uA=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["path",{d:"M12 12h.01"}],["path",{d:"M17 12h.01"}],["path",{d:"M7 12h.01"}]],fA=[["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814"}],["path",{d:"M16.47214 7.52786 A 5 10 0 1 0 13 21.79796"}],["path",{d:"M21.79796 11 A 10 5 0 1 0 19 15.57071"}]],gA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]],mA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]],vA=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11"}],["path",{d:"M5.293 18.707 11 13"}],["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}]],yA=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"}],["path",{d:"M6 12h16"}]],bA=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]],MA=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"m9.5 9.5 5 5"}]],wA=[["path",{d:"M10 8h4"}],["path",{d:"M12 21v-9"}],["path",{d:"M12 8V3"}],["path",{d:"M17 16h4"}],["path",{d:"M19 12V3"}],["path",{d:"M19 21v-5"}],["path",{d:"M3 14h4"}],["path",{d:"M5 10V3"}],["path",{d:"M5 21v-7"}]],xA=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}],["path",{d:"M20 2v4"}],["path",{d:"M22 4h-4"}],["circle",{cx:"4",cy:"20",r:"2"}]],CA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]],SA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]],IA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]],kA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]],AA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]],TA=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6"}],["path",{d:"m3 21 9-9"}],["path",{d:"M9 21H3v-6"}]],PA=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m21 21-9-9"}],["path",{d:"M21 15v6h-6"}]],EA=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6"}],["path",{d:"m3 3 9 9"}],["path",{d:"M3 9V3h6"}]],LA=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"}],["path",{d:"m21 3-9 9"}],["path",{d:"M15 3h6v6"}]],OA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]],RA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]],HA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]],NA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]],DA=[["line",{x1:"5",y1:"3",x2:"19",y2:"3"}],["line",{x1:"3",y1:"5",x2:"3",y2:"19"}],["line",{x1:"21",y1:"5",x2:"21",y2:"19"}],["line",{x1:"9",y1:"21",x2:"10",y2:"21"}],["line",{x1:"14",y1:"21",x2:"15",y2:"21"}],["path",{d:"M 3 5 A2 2 0 0 1 5 3"}],["path",{d:"M 19 3 A2 2 0 0 1 21 5"}],["path",{d:"M 5 21 A2 2 0 0 1 3 19"}],["path",{d:"M 21 19 A2 2 0 0 1 19 21"}],["circle",{cx:"8.5",cy:"8.5",r:"1.5"}],["line",{x1:"9.56066",y1:"9.56066",x2:"12",y2:"12"}],["line",{x1:"17",y1:"17",x2:"14.82",y2:"14.82"}],["circle",{cx:"8.5",cy:"15.5",r:"1.5"}],["line",{x1:"9.56066",y1:"14.43934",x2:"17",y2:"7"}]],FA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8.5 14 7-4"}],["path",{d:"m8.5 10 7 4"}]],BA=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]],VA=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]],zA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]],_A=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"}],["path",{d:"m9 11 3 3L22 4"}]],UA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]],qA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]],GA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]],WA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]],jA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]],XA=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],ZA=[["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M9 3h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M14 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}]],KA=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h2"}],["path",{d:"M14 3h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v2"}],["path",{d:"M3 14v1"}]],YA=[["path",{d:"M14 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}],["path",{d:"M7 8h8"}],["path",{d:"M9 21h1"}],["path",{d:"M9 3h1"}]],JA=[["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M14 21h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M21 14v1"}]],QA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}]],$A=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]],eT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]],tT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"}],["path",{d:"M9 11.2h5.7"}]],aT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]],rT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7v10"}],["path",{d:"M11 7v10"}],["path",{d:"m15 7 2 10"}]],nT=[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],oT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]],iT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]],lT=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}]],sT=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2"}],["path",{d:"M9 17v-2.3"}]],dT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]],cT=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z"}]],hT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]],pT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h10"}],["path",{d:"M10 7v10"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7"}]],uT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17"}],["path",{d:"M12 7v10"}],["path",{d:"M16 7v10"}]],fT=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}]],gT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]],mT=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],vT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"8.5",cy:"8.5",r:"1.5"}],["line",{x1:"9.56066",y1:"9.56066",x2:"12",y2:"12"}],["line",{x1:"17",y1:"17",x2:"14.82",y2:"14.82"}],["circle",{cx:"8.5",cy:"15.5",r:"1.5"}],["line",{x1:"9.56066",y1:"14.43934",x2:"17",y2:"7"}]],yT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]],bT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]],MT=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20"}]],wT=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]],xT=[["path",{d:"m7 11 2-2-2-2"}],["path",{d:"M11 13h4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}]],CT=[["path",{d:"M18 21a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"11",r:"4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]],ST=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}]],IT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]],kT=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3"}],["path",{d:"m16 2 6 6"}],["path",{d:"M12 16H4"}]],AT=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]],TT=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]],PT=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]],ET=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]],LT=[["path",{d:"M15 5h6"}],["path",{d:"M15 12h6"}],["path",{d:"M3 19h18"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12"}],["path",{d:"M3.92 10h6.16"}]],OT=[["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13"}],["path",{d:"M3 19h6"}],["path",{d:"M3 5h18"}]],RT=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M12 3v8"}],["path",{d:"m8 19-2 3"}],["path",{d:"m18 22-2-3"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}]],HT=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"}]],NT=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]],DT=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]],FT=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 16h.01"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"}],["path",{d:"M6 12h.01"}],["path",{d:"M6 16h.01"}],["circle",{cx:"12",cy:"10",r:"2"}]],BT=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m16 19 2 2 4-4"}]],VT=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"10",cy:"8",r:"5"}],["circle",{cx:"18",cy:"18",r:"3"}]],zT=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]],_T=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M19 16v6"}],["path",{d:"M22 19h-6"}]],UT=[["path",{d:"M2 21a8 8 0 0 1 11.873-7"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m17 17 5 5"}],["path",{d:"m22 17-5 5"}]],qT=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]],GT=[["path",{d:"M18 21a8 8 0 0 0-16 0"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3"}]],WT=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"}],["path",{d:"m2.1 21.8 6.4-6.3"}],["path",{d:"m19 5-7 7"}]],jT=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"}],["path",{d:"M7 2v20"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"}]],XT=[["path",{d:"M17 14h.01"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14"}]],ZT=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"}],["path",{d:"m14 7 3 3"}],["path",{d:"M5 6v4"}],["path",{d:"M19 14v4"}],["path",{d:"M10 2v2"}],["path",{d:"M7 8H3"}],["path",{d:"M21 16h-4"}],["path",{d:"M11 3H9"}]],KT=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:[["path",{d:"m14 12 4 4 4-4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]],AArrowUp:[["path",{d:"m14 11 4-4 4 4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]],ALargeSmall:[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16"}],["path",{d:"M15.697 14h5.606"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]],Accessibility:[["circle",{cx:"16",cy:"4",r:"1"}],["path",{d:"m18 19 1-7-6 1"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6"}]],Activity:[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}]],ActivitySquare:CA,AirVent:[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 8h12"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5"}]],Airplay:[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}],["path",{d:"m12 15 5 6H7Z"}]],AlarmCheck:OS,AlarmClock:[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M12 9v4l2 2"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}]],AlarmClockCheck:OS,AlarmClockMinus:RS,AlarmClockOff:[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.26 18.67 4 21"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 4 2 6"}]],AlarmClockPlus:HS,AlarmMinus:RS,AlarmPlus:HS,AlarmSmoke:[["path",{d:"M11 21c0-2.5 2-2.5 2-5"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5"}]],Album:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3"}]],AlertCircle:sI,AlertOctagon:Qk,AlertTriangle:NT,AlignCenter:AT,AlignCenterHorizontal:[["path",{d:"M2 12h20"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"}]],AlignCenterVertical:[["path",{d:"M12 2v20"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"}]],AlignEndHorizontal:[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2"}],["path",{d:"M22 22H2"}]],AlignEndVertical:[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2"}],["path",{d:"M22 22V2"}]],AlignHorizontalDistributeCenter:[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M17 22v-5"}],["path",{d:"M17 7V2"}],["path",{d:"M7 22v-3"}],["path",{d:"M7 5V2"}]],AlignHorizontalDistributeEnd:[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M10 2v20"}],["path",{d:"M20 2v20"}]],AlignHorizontalDistributeStart:[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M4 2v20"}],["path",{d:"M14 2v20"}]],AlignHorizontalJustifyCenter:[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M12 2v20"}]],AlignHorizontalJustifyEnd:[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2"}],["path",{d:"M22 2v20"}]],AlignHorizontalJustifyStart:[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M2 2v20"}]],AlignHorizontalSpaceAround:[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]],AlignHorizontalSpaceBetween:[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2"}],["path",{d:"M3 2v20"}],["path",{d:"M21 2v20"}]],AlignJustify:PT,AlignLeft:ET,AlignRight:TT,AlignStartHorizontal:[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2"}],["path",{d:"M22 2H2"}]],AlignStartVertical:[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2"}],["path",{d:"M2 2v20"}]],AlignVerticalDistributeCenter:[["path",{d:"M22 17h-3"}],["path",{d:"M22 7h-5"}],["path",{d:"M5 17H2"}],["path",{d:"M7 7H2"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}]],AlignVerticalDistributeEnd:[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 20h20"}],["path",{d:"M2 10h20"}]],AlignVerticalDistributeStart:[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M2 4h20"}]],AlignVerticalJustifyCenter:[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 12h20"}]],AlignVerticalJustifyEnd:[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 22h20"}]],AlignVerticalJustifyStart:[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2"}],["path",{d:"M2 2h20"}]],AlignVerticalSpaceAround:[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]],AlignVerticalSpaceBetween:[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2"}],["path",{d:"M2 21h20"}],["path",{d:"M2 3h20"}]],Ambulance:[["path",{d:"M10 10H6"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"}],["path",{d:"M8 8v4"}],["path",{d:"M9 18h6"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]],Ampersand:[["path",{d:"M16 12h3"}],["path",{d:"M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13"}]],Ampersands:[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}]],Amphora:[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68"}],["path",{d:"M18 22H6"}],["path",{d:"M9 2h6"}]],Anchor:[["path",{d:"M12 6v16"}],["path",{d:"m19 13 2-1a9 9 0 0 1-18 0l2 1"}],["path",{d:"M9 11h6"}],["circle",{cx:"12",cy:"4",r:"2"}]],Angry:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["path",{d:"M7.5 8 10 9"}],["path",{d:"m14 9 2.5-1"}],["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}]],Annoyed:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]],Antenna:[["path",{d:"M2 12 7 2"}],["path",{d:"m7 12 5-10"}],["path",{d:"m12 12 5-10"}],["path",{d:"m17 12 5-10"}],["path",{d:"M4.5 7h15"}],["path",{d:"M12 16v6"}]],Anvil:[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1"}]],Aperture:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14.31 8 5.74 9.94"}],["path",{d:"M9.69 8h11.48"}],["path",{d:"m7.38 12 5.74-9.94"}],["path",{d:"M9.69 16 3.95 6.06"}],["path",{d:"M14.31 16H2.83"}],["path",{d:"m16.62 12-5.74 9.94"}]],AppWindow:[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]],AppWindowMac:[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h.01"}],["path",{d:"M10 8h.01"}],["path",{d:"M14 8h.01"}]],Apple:[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21"}]],Archive:[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"M10 12h4"}]],ArchiveRestore:[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2"}],["path",{d:"m9 15 3-3 3 3"}],["path",{d:"M12 12v9"}]],ArchiveX:[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"m9.5 17 5-5"}],["path",{d:"m9.5 12 5 5"}]],AreaChart:KS,Armchair:[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]],ArrowBigDown:[["path",{d:"M9 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 0 1 1h3.293a.707.707 0 0 1 .5 1.207l-7.086 7.086a1 1 0 0 1-1.414 0l-7.086-7.086a.707.707 0 0 1 .5-1.207H8a1 1 0 0 0 1-1z"}]],ArrowBigDownDash:[["path",{d:"M14 8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h3.293a.707.707 0 0 1 .5 1.207l-6.939 6.939a1.207 1.207 0 0 1-1.708 0l-6.94-6.94a.707.707 0 0 1 .5-1.206H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1z"}],["path",{d:"M9 4h6"}]],ArrowBigLeft:[["path",{d:"M10.793 19.793a.707.707 0 0 0 1.207-.5V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-6a1 1 0 0 1-1-1V4.707a.707.707 0 0 0-1.207-.5l-6.94 6.94a1.207 1.207 0 0 0 0 1.707z"}]],ArrowBigLeftDash:[["path",{d:"M13 9a1 1 0 0 1-1-1V4.707a.707.707 0 0 0-1.207-.5l-6.94 6.94a1.207 1.207 0 0 0 0 1.707l6.94 6.94a.707.707 0 0 0 1.207-.5V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}],["path",{d:"M20 9v6"}]],ArrowBigRight:[["path",{d:"M13.207 19.793a.707.707 0 0 1-1.207-.5V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1V4.707a.707.707 0 0 1 1.207-.5l6.94 6.94a1.207 1.207 0 0 1 0 1.707z"}]],ArrowBigRightDash:[["path",{d:"M11 9a1 1 0 0 0 1-1V4.707a.707.707 0 0 1 1.207-.5l6.94 6.94a1.207 1.207 0 0 1 0 1.707l-6.94 6.94a.707.707 0 0 1-1.207-.5V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M4 9v6"}]],ArrowBigUp:[["path",{d:"M9 19a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-6a1 1 0 0 1 1-1h3.293a.707.707 0 0 0 .5-1.207l-7.086-7.086a1 1 0 0 0-1.414 0l-7.086 7.086a.707.707 0 0 0 .5 1.207H8a1 1 0 0 1 1 1z"}]],ArrowBigUpDash:[["path",{d:"M14 16a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1h3.293a.707.707 0 0 0 .5-1.207l-6.939-6.939a1.207 1.207 0 0 0-1.708 0l-6.94 6.94a.707.707 0 0 0 .5 1.206H8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1z"}],["path",{d:"M9 20h6"}]],ArrowDown:[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]],ArrowDown01:[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]],ArrowDown10:[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]],ArrowDownAZ:NS,ArrowDownAz:NS,ArrowDownCircle:dI,ArrowDownFromLine:[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]],ArrowDownLeft:[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]],ArrowDownLeftFromCircle:hI,ArrowDownLeftFromSquare:TA,ArrowDownLeftSquare:SA,ArrowDownNarrowWide:[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h4"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h10"}]],ArrowDownRight:[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]],ArrowDownRightFromCircle:pI,ArrowDownRightFromSquare:PA,ArrowDownRightSquare:IA,ArrowDownSquare:kA,ArrowDownToDot:[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]],ArrowDownToLine:[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]],ArrowDownUp:[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"m21 8-4-4-4 4"}],["path",{d:"M17 4v16"}]],ArrowDownWideNarrow:DS,ArrowDownZA:FS,ArrowDownZa:FS,ArrowLeft:[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]],ArrowLeftCircle:cI,ArrowLeftFromLine:[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]],ArrowLeftRight:[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]],ArrowLeftSquare:AA,ArrowLeftToLine:[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]],ArrowRight:[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]],ArrowRightCircle:gI,ArrowRightFromLine:[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]],ArrowRightLeft:[["path",{d:"m16 3 4 4-4 4"}],["path",{d:"M20 7H4"}],["path",{d:"m8 21-4-4 4-4"}],["path",{d:"M4 17h16"}]],ArrowRightSquare:OA,ArrowRightToLine:[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]],ArrowUp:[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]],ArrowUp01:[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]],ArrowUp10:[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]],ArrowUpAZ:BS,ArrowUpAz:BS,ArrowUpCircle:mI,ArrowUpDown:[["path",{d:"m21 16-4 4-4-4"}],["path",{d:"M17 20V4"}],["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}]],ArrowUpFromDot:[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]],ArrowUpFromLine:[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]],ArrowUpLeft:[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]],ArrowUpLeftFromCircle:uI,ArrowUpLeftFromSquare:EA,ArrowUpLeftSquare:RA,ArrowUpNarrowWide:VS,ArrowUpRight:[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]],ArrowUpRightFromCircle:fI,ArrowUpRightFromSquare:LA,ArrowUpRightSquare:HA,ArrowUpSquare:NA,ArrowUpToLine:[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]],ArrowUpWideNarrow:[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h10"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h4"}]],ArrowUpZA:zS,ArrowUpZa:zS,ArrowsUpFromLine:[["path",{d:"m4 6 3-3 3 3"}],["path",{d:"M7 17V3"}],["path",{d:"m14 6 3-3 3 3"}],["path",{d:"M17 17V3"}],["path",{d:"M4 21h16"}]],Asterisk:[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]],AsteriskSquare:FA,AtSign:[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"}]],Atom:[["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"}]],AudioLines:[["path",{d:"M2 10v3"}],["path",{d:"M6 6v11"}],["path",{d:"M10 3v18"}],["path",{d:"M14 8v7"}],["path",{d:"M18 5v13"}],["path",{d:"M22 10v3"}]],AudioWaveform:[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2"}]],Award:[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"}],["circle",{cx:"12",cy:"8",r:"6"}]],Axe:[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"}]],Axis3D:_S,Axis3d:_S,Baby:[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"}],["path",{d:"M15 12h.01"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"}],["path",{d:"M9 12h.01"}]],Backpack:[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}],["path",{d:"M8 10h8"}],["path",{d:"M8 18h8"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"}]],Badge:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}]],BadgeAlert:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]],BadgeCent:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M12 7v10"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4"}]],BadgeCheck:US,BadgeDollarSign:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]],BadgeEuro:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M7 12h5"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]],BadgeHelp:qS,BadgeIndianRupee:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 8h8"}],["path",{d:"M8 12h8"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8"}]],BadgeInfo:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]],BadgeJapaneseYen:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 8 3 3v7"}],["path",{d:"m12 11 3-3"}],["path",{d:"M9 12h6"}],["path",{d:"M9 16h6"}]],BadgeMinus:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]],BadgePercent:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]],BadgePlus:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]],BadgePoundSterling:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]],BadgeQuestionMark:qS,BadgeRussianRuble:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9 16h5"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9"}]],BadgeSwissFranc:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M11 17V8h4"}],["path",{d:"M11 12h3"}],["path",{d:"M9 16h4"}]],BadgeTurkishLira:[["path",{d:"M11 7v10a5 5 0 0 0 5-5"}],["path",{d:"m15 8-6 3"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"}]],BadgeX:[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]],BaggageClaim:[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1"}],["circle",{cx:"18",cy:"20",r:"2"}],["circle",{cx:"9",cy:"20",r:"2"}]],Balloon:[["path",{d:"M12 16v1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1"}],["path",{d:"M12 6a2 2 0 0 1 2 2"}],["path",{d:"M18 8c0 4-3.5 8-6 8s-6-4-6-8a6 6 0 0 1 12 0"}]],Ban:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M4.929 4.929 19.07 19.071"}]],Banana:[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"}]],Bandage:[["path",{d:"M10 10.01h.01"}],["path",{d:"M10 14.01h.01"}],["path",{d:"M14 10.01h.01"}],["path",{d:"M14 14.01h.01"}],["path",{d:"M18 6v12"}],["path",{d:"M6 6v12"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]],Banknote:[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M6 12h.01M18 12h.01"}]],BanknoteArrowDown:[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m16 19 3 3 3-3"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 16v6"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]],BanknoteArrowUp:[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 22v-6"}],["path",{d:"m22 19-3-3-3 3"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]],BanknoteX:[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m17 17 5 5"}],["path",{d:"M18 12h.01"}],["path",{d:"m22 17-5 5"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]],BarChart:rI,BarChart2:nI,BarChart3:tI,BarChart4:eI,BarChartBig:QS,BarChartHorizontal:JS,BarChartHorizontalBig:YS,Barcode:[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]],Barrel:[["path",{d:"M10 3a41 41 0 0 0 0 18"}],["path",{d:"M14 3a41 41 0 0 1 0 18"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z"}],["path",{d:"M3.84 17h16.32"}],["path",{d:"M3.84 7h16.32"}]],Baseline:[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]],Bath:[["path",{d:"M10 4 8 6"}],["path",{d:"M17 19v2"}],["path",{d:"M2 12h20"}],["path",{d:"M7 19v2"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"}]],Battery:[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]],BatteryCharging:[["path",{d:"m11 7-3 5h4l-3 5"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935"}],["path",{d:"M22 14v-4"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936"}]],BatteryFull:[["path",{d:"M10 10v4"}],["path",{d:"M14 10v4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 10v4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]],BatteryLow:[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]],BatteryMedium:[["path",{d:"M10 14v-4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]],BatteryPlus:[["path",{d:"M10 9v6"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605"}],["path",{d:"M22 14v-4"}],["path",{d:"M7 12h6"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606"}]],BatteryWarning:[["path",{d:"M10 17h.01"}],["path",{d:"M10 7v6"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}]],Beaker:[["path",{d:"M4.5 3h15"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"}],["path",{d:"M6 14h12"}]],Bean:[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28"}]],BeanOff:[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Bed:[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]],BedDouble:[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M12 4v6"}],["path",{d:"M2 18h20"}]],BedSingle:[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"}],["path",{d:"M3 18h18"}]],Beef:[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5"}]],BeefOff:[["path",{d:"M11.771 6.109a2.5 2.5 0 0 1 3.12 3.12"}],["path",{d:"M17.852 12.185a6.5 6.5 0 0 0-9.035-9.04"}],["path",{d:"M18.013 18.013C15.029 20.349 10.831 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-.139 4.393"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6.355 6.37a7 7 0 0 0-.075.23c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c3.356 0 6.993-1.267 9.85-3.151"}]],Beer:[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1"}],["path",{d:"M9 12v6"}],["path",{d:"M13 12v6"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}]],BeerOff:[["path",{d:"M13 13v5"}],["path",{d:"M17 11.47V8"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12"}],["path",{d:"M9 14.6V18"}]],Bell:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}]],BellCheck:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"m15 8 2 2 4-4"}],["path",{d:"M16.8607 4.4824A6 6 0 0 0 6 8C6 12.499 4.589 13.956 3.262 15.326"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17H20A1 1 0 0 0 20.74 15.327C20.209 14.779 19.665 14.218 19.203 13.454"}]],BellDot:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M11.68 2.009A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673c-.824-.85-1.678-1.731-2.21-3.348"}],["circle",{cx:"18",cy:"5",r:"3"}]],BellElectric:[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9"}],["path",{d:"M9 9h.01"}],["circle",{cx:"20",cy:"16",r:"2"}],["circle",{cx:"9",cy:"9",r:"7"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2"}]],BellMinus:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12"}]],BellOff:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"}]],BellPlus:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M18 5v6"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332"}]],BellRing:[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8"}]],BetweenHorizonalEnd:GS,BetweenHorizonalStart:WS,BetweenHorizontalEnd:GS,BetweenHorizontalStart:WS,BetweenVerticalEnd:[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1"}],["path",{d:"m9 22 3-3 3 3"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1"}]],BetweenVerticalStart:[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1"}],["path",{d:"m15 2-3 3-3-3"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1"}]],BicepsFlexed:[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15"}]],Bike:[["circle",{cx:"18.5",cy:"17.5",r:"3.5"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5"}],["circle",{cx:"15",cy:"5",r:"1"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2"}]],Binary:[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2"}],["path",{d:"M6 20h4"}],["path",{d:"M14 10h4"}],["path",{d:"M6 14h2v6"}],["path",{d:"M14 4h2v6"}]],Binoculars:[["path",{d:"M10 10h4"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"}],["path",{d:"M 22 16 L 2 16"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"}]],Biohazard:[["circle",{cx:"12",cy:"11.9",r:"2"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6"}],["path",{d:"m8.9 10.1 1.4.8"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5"}],["path",{d:"m15.1 10.1-1.4.8"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2"}],["path",{d:"M12 13.9v1.6"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5"}]],Bird:[["path",{d:"M16 7h.01"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"}],["path",{d:"m20 7 2 .5-2 .5"}],["path",{d:"M10 18v3"}],["path",{d:"M14 17.75V21"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61"}]],Birdhouse:[["path",{d:"M12 18v4"}],["path",{d:"m17 18 1.956-11.468"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"}],["path",{d:"M4 18h16"}],["path",{d:"M7 18 5.044 6.532"}],["circle",{cx:"12",cy:"10",r:"2"}]],Bitcoin:[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"}]],Blend:[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]],Blinds:[["path",{d:"M3 3h18"}],["path",{d:"M20 7H8"}],["path",{d:"M20 11H8"}],["path",{d:"M10 19h10"}],["path",{d:"M8 15h12"}],["path",{d:"M4 3v14"}],["circle",{cx:"4",cy:"19",r:"2"}]],Blocks:[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1"}]],Bluetooth:[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}]],BluetoothConnected:[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12"}]],BluetoothOff:[["path",{d:"m17 17-5 5V12l-5 5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5"}]],BluetoothSearching:[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66"}],["path",{d:"M18 12h.01"}]],Bold:[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"}]],Bolt:[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["circle",{cx:"12",cy:"12",r:"4"}]],Bomb:[["circle",{cx:"11",cy:"13",r:"9"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95"}],["path",{d:"m22 2-1.5 1.5"}]],Bone:[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"}]],Book:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]],BookA:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m8 13 4-7 4 7"}],["path",{d:"M9.1 11h5.7"}]],BookAlert:[["path",{d:"M12 13h.01"}],["path",{d:"M12 6v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]],BookAudio:[["path",{d:"M12 6v7"}],["path",{d:"M16 8v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 8v3"}]],BookCheck:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 9.5 2 2 4-4"}]],BookCopy:[["path",{d:"M5 7a2 2 0 0 0-2 2v11"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10"}]],BookDashed:jS,BookDown:[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3 3 3-3"}]],BookHeadphones:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]],BookHeart:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]],BookImage:[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"10",cy:"8",r:"2"}]],BookKey:[["path",{d:"M13 2H6.5A2.5 2.5 0 0 0 4 4.5v15"}],["path",{d:"M17 2v6"}],["path",{d:"M17 4h2"}],["path",{d:"M20 15.2V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"17",cy:"10",r:"2"}]],BookLock:[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1"}]],BookMarked:[["path",{d:"M10 2v8l3-3 3 3V2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]],BookMinus:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]],BookOpen:[["path",{d:"M12 7v14"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}]],BookOpenCheck:[["path",{d:"M12 21V7"}],["path",{d:"m16 12 2 2 4-4"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3"}]],BookOpenText:[["path",{d:"M12 7v14"}],["path",{d:"M16 12h2"}],["path",{d:"M16 8h2"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}],["path",{d:"M6 12h2"}],["path",{d:"M6 8h2"}]],BookPlus:[["path",{d:"M12 7v6"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]],BookSearch:[["path",{d:"M11 22H5.5a1 1 0 0 1 0-5h4.501"}],["path",{d:"m21 22-1.879-1.878"}],["path",{d:"M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8"}],["circle",{cx:"17",cy:"18",r:"3"}]],BookTemplate:jS,BookText:[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 11h8"}],["path",{d:"M8 7h6"}]],BookType:[["path",{d:"M10 13h4"}],["path",{d:"M12 6v7"}],["path",{d:"M16 8V6H8v2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]],BookUp:[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3-3 3 3"}]],BookUp2:[["path",{d:"M12 13V7"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2"}],["path",{d:"m9 10 3-3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]],BookUser:[["path",{d:"M15 13a3 3 0 1 0-6 0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"12",cy:"8",r:"2"}]],BookX:[["path",{d:"m14.5 7-5 5"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9.5 7 5 5"}]],Bookmark:[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}]],BookmarkCheck:[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}],["path",{d:"m9 10 2 2 4-4"}]],BookmarkMinus:[["path",{d:"M15 10H9"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}]],BookmarkOff:[["path",{d:"M19 19v1a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.656 3H17a2 2 0 0 1 2 2v8.344"}]],BookmarkPlus:[["path",{d:"M12 7v6"}],["path",{d:"M15 10H9"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}]],BookmarkX:[["path",{d:"m14.5 7.5-5 5"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}],["path",{d:"m9.5 7.5 5 5"}]],BoomBox:[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M8 8v1"}],["path",{d:"M12 8v1"}],["path",{d:"M16 8v1"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2"}],["circle",{cx:"8",cy:"15",r:"2"}],["circle",{cx:"16",cy:"15",r:"2"}]],Bot:[["path",{d:"M12 8V4H8"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M15 13v2"}],["path",{d:"M9 13v2"}]],BotMessageSquare:[["path",{d:"M12 6V2H8"}],["path",{d:"M15 11v2"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"}],["path",{d:"M9 11v2"}]],BotOff:[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M22 22 2 2"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"}],["path",{d:"M9 13v2"}],["path",{d:"M9.67 4H12v2.33"}]],BottleWine:[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4"}]],BowArrow:[["path",{d:"M17 3h4v4"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z"}],["path",{d:"M9.707 14.293 21 3"}]],Box:[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"}],["path",{d:"m3.3 7 8.7 5 8.7-5"}],["path",{d:"M12 22V12"}]],BoxSelect:JA,Boxes:[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"}],["path",{d:"m7 16.5-4.74-2.85"}],["path",{d:"m7 16.5 5-3"}],["path",{d:"M7 16.5v5.17"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"}],["path",{d:"m17 16.5-5-3"}],["path",{d:"m17 16.5 4.74-2.85"}],["path",{d:"M17 16.5v5.17"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"}],["path",{d:"M12 8 7.26 5.15"}],["path",{d:"m12 8 4.74-2.85"}],["path",{d:"M12 13.5V8"}]],Braces:XS,Brackets:[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"}]],Brain:[["path",{d:"M12 18V5"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77"}]],BrainCircuit:[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516"}],["path",{d:"M12 13h4"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1"}],["path",{d:"M12 8h8"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2"}],["circle",{cx:"16",cy:"13",r:".5"}],["circle",{cx:"18",cy:"3",r:".5"}],["circle",{cx:"20",cy:"21",r:".5"}],["circle",{cx:"20",cy:"8",r:".5"}]],BrainCog:[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"m10.852 9.228-.383-.923"}],["path",{d:"m13.148 14.772.382.924"}],["path",{d:"m13.531 8.305-.383.923"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}],["circle",{cx:"12",cy:"12",r:"3"}]],BrickWall:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 9v6"}],["path",{d:"M16 15v6"}],["path",{d:"M16 3v6"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]],BrickWallFire:[["path",{d:"M16 3v2.107"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938"}],["path",{d:"M3 15h5.253"}],["path",{d:"M3 9h8.228"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]],BrickWallShield:[["path",{d:"M12 9v1.258"}],["path",{d:"M16 3v5.46"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z"}],["path",{d:"M3 15h7"}],["path",{d:"M3 9h12.142"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]],Briefcase:[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]],BriefcaseBusiness:[["path",{d:"M12 12h.01"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]],BriefcaseConveyorBelt:[["path",{d:"M10 20v2"}],["path",{d:"M14 20v2"}],["path",{d:"M18 20v2"}],["path",{d:"M21 20H3"}],["path",{d:"M6 20v2"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2"}]],BriefcaseMedical:[["path",{d:"M12 11v4"}],["path",{d:"M14 13h-4"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M18 6v14"}],["path",{d:"M6 6v14"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]],BringToFront:[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2"}]],Brush:[["path",{d:"m11 10 3 3"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"}]],BrushCleaning:[["path",{d:"m16 22-1-4"}],["path",{d:"M19 14a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v1a1 1 0 0 0 1 1"}],["path",{d:"M19 14H5l-1.973 6.767A1 1 0 0 0 4 22h16a1 1 0 0 0 .973-1.233z"}],["path",{d:"m8 22 1-4"}]],Bubbles:[["path",{d:"M7.001 15.085A1.5 1.5 0 0 1 9 16.5"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5"}]],Bug:[["path",{d:"M12 20v-9"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-4"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]],BugOff:[["path",{d:"M12 20v-8"}],["path",{d:"M12.656 7H14a4 4 0 0 1 4 4v1.344"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M17.123 17.123A6 6 0 0 1 6 14v-3a4 4 0 0 1 1.72-3.287"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-3.344"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9.712 4.06A3 3 0 0 1 15 6v1.13"}]],BugPlay:[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]],Building:[["path",{d:"M12 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M12 6h.01"}],["path",{d:"M16 10h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M16 6h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M8 6h.01"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]],Building2:[["path",{d:"M10 12h4"}],["path",{d:"M10 8h4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16"}]],Bus:[["path",{d:"M8 6v6"}],["path",{d:"M15 6v6"}],["path",{d:"M2 12h19.6"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"}],["circle",{cx:"7",cy:"18",r:"2"}],["path",{d:"M9 18h5"}],["circle",{cx:"16",cy:"18",r:"2"}]],BusFront:[["path",{d:"M4 6 2 7"}],["path",{d:"M10 6h4"}],["path",{d:"m22 7-2-1"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M6 19v2"}],["path",{d:"M18 21v-2"}]],Cable:[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z"}],["path",{d:"M17 21v-2"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10"}],["path",{d:"M21 21v-2"}],["path",{d:"M3 5V3"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z"}],["path",{d:"M7 5V3"}]],CableCar:[["path",{d:"M10 3h.01"}],["path",{d:"M14 2h.01"}],["path",{d:"m2 9 20-5"}],["path",{d:"M12 12V6.5"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M4 17h16"}]],Cake:[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"}],["path",{d:"M2 21h20"}],["path",{d:"M7 8v3"}],["path",{d:"M12 8v3"}],["path",{d:"M17 8v3"}],["path",{d:"M7 4h.01"}],["path",{d:"M12 4h.01"}],["path",{d:"M17 4h.01"}]],CakeSlice:[["path",{d:"M16 13H3"}],["path",{d:"M16 17H3"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6"}],["circle",{cx:"9",cy:"7",r:"2"}]],Calculator:[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18"}],["path",{d:"M16 10h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M8 18h.01"}]],Calendar:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]],Calendar1:[["path",{d:"M11 14h1v4"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]],CalendarArrowDown:[["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 14v8"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]],CalendarArrowUp:[["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 22v-8"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]],CalendarCheck:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m9 16 2 2 4-4"}]],CalendarCheck2:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m16 20 2 2 4-4"}]],CalendarClock:[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 2v4"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"}],["path",{d:"M3 10h5"}],["path",{d:"M8 2v4"}],["circle",{cx:"16",cy:"16",r:"6"}]],CalendarCog:[["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m15.228 19.148-.923.383"}],["path",{d:"M16 2v4"}],["path",{d:"m16.47 14.305.382.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]],CalendarDays:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 18h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M16 18h.01"}]],CalendarFold:[["path",{d:"M3 20a2 2 0 0 0 2 2h10a2.4 2.4 0 0 0 1.706-.706l3.588-3.588A2.4 2.4 0 0 0 21 16V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{d:"M15 22v-5a1 1 0 0 1 1-1h5"}],["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}]],CalendarHeart:[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]],CalendarMinus:[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]],CalendarMinus2:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}]],CalendarOff:[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h7"}],["path",{d:"M21 10h-5.5"}],["path",{d:"m2 2 20 20"}]],CalendarPlus:[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M19 16v6"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]],CalendarPlus2:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}],["path",{d:"M12 14v4"}]],CalendarRange:[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["path",{d:"M17 14h-6"}],["path",{d:"M13 18H7"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 18h.01"}]],CalendarSearch:[["path",{d:"M16 2v4"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25"}],["path",{d:"m22 22-1.875-1.875"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]],CalendarSync:[["path",{d:"M11 10v4h4"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M16 2v4"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{d:"M21 22v-4h-4"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3"}],["path",{d:"M3 10h4"}],["path",{d:"M8 2v4"}]],CalendarX:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m14 14-4 4"}],["path",{d:"m10 14 4 4"}]],CalendarX2:[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m17 22 5-5"}],["path",{d:"m17 17 5 5"}]],Calendars:[["path",{d:"M12 2v2"}],["path",{d:"M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2"}],["path",{d:"M18 2v2"}],["path",{d:"M2 13h2"}],["path",{d:"M8 8h14"}],["rect",{x:"8",y:"3",width:"14",height:"14",rx:"2"}]],Camera:[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"}],["circle",{cx:"12",cy:"13",r:"3"}]],CameraOff:[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344"}]],CandlestickChart:$S,Candy:[["path",{d:"M10 7v10.9"}],["path",{d:"M14 6.1V17"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]],CandyCane:[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z"}],["path",{d:"M17.75 7 15 2.1"}],["path",{d:"M10.9 4.8 13 9"}],["path",{d:"m7.9 9.7 2 4.4"}],["path",{d:"M4.9 14.7 7 18.9"}]],CandyOff:[["path",{d:"M10 10v7.9"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053"}],["path",{d:"M14 6.1v2.243"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]],Cannabis:[["path",{d:"M12 22v-4"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6"}]],CannabisOff:[["path",{d:"M12 22v-4c1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5"}],["path",{d:"M13.988 8.327C13.902 6.054 13.365 3.82 12 2a9.3 9.3 0 0 0-1.445 2.9"}],["path",{d:"M17.375 11.725C18.882 10.53 21 7.841 21 6c-2.324 0-5.08 1.296-6.662 2.684"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21.024 15.378A15 15 0 0 0 22 15c-.426-1.279-2.67-2.557-4.25-2.907"}],["path",{d:"M6.995 6.992C5.714 6.4 4.29 6 3 6c0 2 2.5 5 4 6-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3"}]],Captions:ZS,CaptionsOff:[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5"}],["path",{d:"M17 11h-.5"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7 11h4"}],["path",{d:"M7 15h2.5"}]],Car:[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"}],["circle",{cx:"7",cy:"17",r:"2"}],["path",{d:"M9 17h6"}],["circle",{cx:"17",cy:"17",r:"2"}]],CarFront:[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]],CarTaxiFront:[["path",{d:"M10 2h4"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]],Caravan:[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9"}],["circle",{cx:"8",cy:"19",r:"2"}]],CardSim:[["path",{d:"M12 14v4"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M8 14h8"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1"}]],Carrot:[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"}]],CaseLower:[["path",{d:"M10 9v7"}],["path",{d:"M14 6v10"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5"}]],CaseSensitive:[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M22 9v7"}],["path",{d:"M3.304 13h6.392"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5"}]],CaseUpper:[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]],CassetteTape:[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["circle",{cx:"8",cy:"10",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"10",r:"2"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"}]],Cast:[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}],["path",{d:"M2 12a9 9 0 0 1 8 8"}],["path",{d:"M2 16a5 5 0 0 1 4 4"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20"}]],Castle:[["path",{d:"M10 5V3"}],["path",{d:"M14 5V3"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3"}],["path",{d:"M18 3v8"}],["path",{d:"M18 5H6"}],["path",{d:"M22 11H2"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"}],["path",{d:"M6 3v8"}]],Cat:[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}]],Cctv:[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15"}],["path",{d:"M2 21v-4"}],["path",{d:"M7 9h.01"}]],CctvOff:[["path",{d:"m12.309 6.652 4.797 2.401a1 1 0 0 1 .447 1.341l-.501 1.001.605.605h2.725a1 1 0 0 1 .894 1.447l-.724 1.448"}],["path",{d:"m15.166 15.166-.719 1.439a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.9 2.9 0 0 1 .873-1.037"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1l1.441-2.902"}],["path",{d:"m2 2 20 20"}],["path",{d:"M2 21v-4"}],["path",{d:"M7 9h.01"}]],ChartArea:KS,ChartBar:JS,ChartBarBig:YS,ChartBarDecreasing:[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]],ChartBarIncreasing:[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]],ChartBarStacked:[["path",{d:"M11 13v4"}],["path",{d:"M15 5v4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]],ChartCandlestick:$S,ChartColumn:tI,ChartColumnBig:QS,ChartColumnDecreasing:[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]],ChartColumnIncreasing:eI,ChartColumnStacked:[["path",{d:"M11 13H7"}],["path",{d:"M19 9h-4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]],ChartGantt:[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]],ChartLine:aI,ChartNetwork:[["path",{d:"m13.11 7.664 1.78 2.672"}],["path",{d:"m14.162 12.788-3.324 1.424"}],["path",{d:"m20 4-6.06 1.515"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["circle",{cx:"12",cy:"6",r:"2"}],["circle",{cx:"16",cy:"12",r:"2"}],["circle",{cx:"9",cy:"15",r:"2"}]],ChartNoAxesColumn:nI,ChartNoAxesColumnDecreasing:[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]],ChartNoAxesColumnIncreasing:rI,ChartNoAxesCombined:[["path",{d:"M12 16v5"}],["path",{d:"M16 14v7"}],["path",{d:"M20 10v11"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15"}],["path",{d:"M4 18v3"}],["path",{d:"M8 14v7"}]],ChartNoAxesGantt:oI,ChartPie:iI,ChartScatter:lI,ChartSpline:[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"}]],Check:[["path",{d:"M20 6 9 17l-5-5"}]],CheckCheck:[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]],CheckCircle:vI,CheckCircle2:yI,CheckLine:[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]],CheckSquare:_A,CheckSquare2:UA,ChefHat:[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"}],["path",{d:"M6 17h12"}]],Cherry:[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"}]],ChessBishop:[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"}],["path",{d:"M15 18c1.5-.615 3-2.461 3-4.923C18 8.769 14.5 4.462 12 2 9.5 4.462 6 8.77 6 13.077 6 15.539 7.5 17.385 9 18"}],["path",{d:"m16 7-2.5 2.5"}],["path",{d:"M9 2h6"}]],ChessKing:[["path",{d:"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z"}],["path",{d:"m6.7 18-1-1C4.35 15.682 3 14.09 3 12a5 5 0 0 1 4.95-5c1.584 0 2.7.455 4.05 1.818C13.35 7.455 14.466 7 16.05 7A5 5 0 0 1 21 12c0 2.082-1.359 3.673-2.7 5l-1 1"}],["path",{d:"M10 4h4"}],["path",{d:"M12 2v6.818"}]],ChessKnight:[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"}],["path",{d:"M16.5 18c1-2 2.5-5 2.5-9a7 7 0 0 0-7-7H6.635a1 1 0 0 0-.768 1.64L7 5l-2.32 5.802a2 2 0 0 0 .95 2.526l2.87 1.456"}],["path",{d:"m15 5 1.425-1.425"}],["path",{d:"m17 8 1.53-1.53"}],["path",{d:"M9.713 12.185 7 18"}]],ChessPawn:[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"}],["path",{d:"m14.5 10 1.5 8"}],["path",{d:"M7 10h10"}],["path",{d:"m8 18 1.5-8"}],["circle",{cx:"12",cy:"6",r:"4"}]],ChessQueen:[["path",{d:"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z"}],["path",{d:"m12.474 5.943 1.567 5.34a1 1 0 0 0 1.75.328l2.616-3.402"}],["path",{d:"m20 9-3 9"}],["path",{d:"m5.594 8.209 2.615 3.403a1 1 0 0 0 1.75-.329l1.567-5.34"}],["path",{d:"M7 18 4 9"}],["circle",{cx:"12",cy:"4",r:"2"}],["circle",{cx:"20",cy:"7",r:"2"}],["circle",{cx:"4",cy:"7",r:"2"}]],ChessRook:[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"}],["path",{d:"M10 2v2"}],["path",{d:"M14 2v2"}],["path",{d:"m17 18-1-9"}],["path",{d:"M6 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2"}],["path",{d:"M6 4h12"}],["path",{d:"m7 18 1-9"}]],ChevronDown:[["path",{d:"m6 9 6 6 6-6"}]],ChevronDownCircle:bI,ChevronDownSquare:qA,ChevronFirst:[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]],ChevronLast:[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]],ChevronLeft:[["path",{d:"m15 18-6-6 6-6"}]],ChevronLeftCircle:MI,ChevronLeftSquare:GA,ChevronRight:[["path",{d:"m9 18 6-6-6-6"}]],ChevronRightCircle:wI,ChevronRightSquare:WA,ChevronUp:[["path",{d:"m18 15-6-6-6 6"}]],ChevronUpCircle:xI,ChevronUpSquare:jA,ChevronsDown:[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]],ChevronsDownUp:[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]],ChevronsLeft:[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]],ChevronsLeftRight:[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]],ChevronsLeftRightEllipsis:[["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"m17 7 5 5-5 5"}],["path",{d:"m7 7-5 5 5 5"}],["path",{d:"M8 12h.01"}]],ChevronsRight:[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]],ChevronsRightLeft:[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]],ChevronsUp:[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]],ChevronsUpDown:[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]],Church:[["path",{d:"M10 9h4"}],["path",{d:"M12 7v5"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14"}]],Cigarette:[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]],CigaretteOff:[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]],Circle:[["circle",{cx:"12",cy:"12",r:"10"}]],CircleAlert:sI,CircleArrowDown:dI,CircleArrowLeft:cI,CircleArrowOutDownLeft:hI,CircleArrowOutDownRight:pI,CircleArrowOutUpLeft:uI,CircleArrowOutUpRight:fI,CircleArrowRight:gI,CircleArrowUp:mI,CircleCheck:yI,CircleCheckBig:vI,CircleChevronDown:bI,CircleChevronLeft:MI,CircleChevronRight:wI,CircleChevronUp:xI,CircleDashed:[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7"}]],CircleDivide:CI,CircleDollarSign:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]],CircleDot:[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]],CircleDotDashed:[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69"}],["circle",{cx:"12",cy:"12",r:"1"}]],CircleEllipsis:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]],CircleEqual:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]],CircleFadingArrowUp:[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]],CircleFadingPlus:[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 8v8"}],["path",{d:"M16 12H8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]],CircleGauge:SI,CircleHelp:RI,CircleMinus:II,CircleOff:[["path",{d:"m2 2 20 20"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92"}]],CircleParking:AI,CircleParkingOff:kI,CirclePause:TI,CirclePercent:PI,CirclePile:[["circle",{cx:"12",cy:"19",r:"2"}],["circle",{cx:"12",cy:"5",r:"2"}],["circle",{cx:"16",cy:"12",r:"2"}],["circle",{cx:"20",cy:"19",r:"2"}],["circle",{cx:"4",cy:"19",r:"2"}],["circle",{cx:"8",cy:"12",r:"2"}]],CirclePlay:EI,CirclePlus:LI,CirclePoundSterling:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M10 16V9.5a1 1 0 0 1 5 0"}],["path",{d:"M8 12h4"}],["path",{d:"M8 16h7"}]],CirclePower:OI,CircleQuestionMark:RI,CircleSlash:[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]],CircleSlash2:HI,CircleSlashed:HI,CircleSmall:[["circle",{cx:"12",cy:"12",r:"6"}]],CircleStar:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}]],CircleStop:NI,CircleUser:FI,CircleUserRound:DI,CircleX:BI,CircuitBoard:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4"}],["circle",{cx:"15",cy:"15",r:"2"}]],Citrus:[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34"}],["path",{d:"m14 10-5.5 5.5"}],["path",{d:"M14 17.85V10H6.15"}]],Clapperboard:[["path",{d:"m12.296 3.464 3.02 3.956"}],["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3z"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["path",{d:"m6.18 5.276 3.1 3.899"}]],Clipboard:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}]],ClipboardCheck:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m9 14 2 2 4-4"}]],ClipboardClock:[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["circle",{cx:"16",cy:"16",r:"6"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]],ClipboardCopy:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4"}],["path",{d:"M21 14H11"}],["path",{d:"m15 10-4 4 4 4"}]],ClipboardEdit:VI,ClipboardList:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M12 11h4"}],["path",{d:"M12 16h4"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 16h.01"}]],ClipboardMinus:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 14h6"}]],ClipboardPaste:[["path",{d:"M11 14h10"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344"}],["path",{d:"m17 18 4-4-4-4"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]],ClipboardPen:VI,ClipboardPenLine:zI,ClipboardPlus:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 14h6"}],["path",{d:"M12 17v-6"}]],ClipboardSignature:zI,ClipboardType:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 12v-1h6v1"}],["path",{d:"M11 17h2"}],["path",{d:"M12 11v6"}]],ClipboardX:[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m15 11-6 6"}],["path",{d:"m9 11 6 6"}]],Clock:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l4 2"}]],Clock1:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l2-4"}]],Clock10:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l-4-2"}]],Clock11:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l-2-4"}]],Clock12:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6"}]],Clock2:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l4-2"}]],Clock3:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6h4"}]],Clock4:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l4 2"}]],Clock5:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l2 4"}]],Clock6:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v10"}]],Clock7:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l-2 4"}]],Clock8:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6l-4 2"}]],Clock9:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 6v6H8"}]],ClockAlert:[["path",{d:"M12 6v6l4 2"}],["path",{d:"M20 12v5"}],["path",{d:"M20 21h.01"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16"}]],ClockArrowDown:[["path",{d:"M12 6v6l2 1"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767"}],["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M18 14v8"}]],ClockArrowUp:[["path",{d:"M12 6v6l1.56.78"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588"}],["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M18 22v-8"}]],ClockCheck:[["path",{d:"M12 6v6l4 2"}],["path",{d:"M22 12a10 10 0 1 0-11 9.95"}],["path",{d:"m22 16-5.5 5.5L14 19"}]],ClockFading:[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 6v6l4 2"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]],ClockPlus:[["path",{d:"M12 6v6l3.644 1.822"}],["path",{d:"M16 19h6"}],["path",{d:"M19 16v6"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653"}]],ClosedCaption:[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]],Cloud:[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]],CloudAlert:[["path",{d:"M12 12v4"}],["path",{d:"M12 20h.01"}],["path",{d:"M8.128 16.949A7 7 0 1 1 15.71 8h1.79a1 1 0 0 1 0 9h-1.642"}]],CloudBackup:[["path",{d:"M21 15.251A4.5 4.5 0 0 0 17.5 8h-1.79A7 7 0 1 0 3 13.607"}],["path",{d:"M7 11v4h4"}],["path",{d:"M8 19a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5 4.82 4.82 0 0 0-3.41 1.41L7 15"}]],CloudCheck:[["path",{d:"m17 15-5.5 5.5L9 18"}],["path",{d:"M5.516 16.07A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 3.501 7.327"}]],CloudCog:[["path",{d:"m10.852 19.772-.383.924"}],["path",{d:"m13.148 14.228.383-.923"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 15.852.923-.383"}],["path",{d:"m14.772 18.148.923.383"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2"}],["path",{d:"m9.228 15.852-.923-.383"}],["path",{d:"m9.228 18.148-.923.383"}]],CloudDownload:_I,CloudDrizzle:[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 19v1"}],["path",{d:"M8 14v1"}],["path",{d:"M16 19v1"}],["path",{d:"M16 14v1"}],["path",{d:"M12 21v1"}],["path",{d:"M12 16v1"}]],CloudFog:[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 17H7"}],["path",{d:"M17 21H9"}]],CloudHail:[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v2"}],["path",{d:"M8 14v2"}],["path",{d:"M16 20h.01"}],["path",{d:"M8 20h.01"}],["path",{d:"M12 16v2"}],["path",{d:"M12 22h.01"}]],CloudLightning:[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"}],["path",{d:"m13 12-3 5h4l-3 5"}]],CloudMoon:[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}]],CloudMoonRain:[["path",{d:"M11 20v2"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M7 19v2"}]],CloudOff:[["path",{d:"M10.94 5.274A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.222 6.057"}],["path",{d:"M18.796 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78"}],["path",{d:"m2 2 20 20"}]],CloudRain:[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]],CloudRainWind:[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m9.2 22 3-7"}],["path",{d:"m9 13-3 7"}],["path",{d:"m17 13-3 7"}]],CloudSnow:[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 15h.01"}],["path",{d:"M8 19h.01"}],["path",{d:"M12 17h.01"}],["path",{d:"M12 21h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M16 19h.01"}]],CloudSun:[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}]],CloudSunRain:[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]],CloudSync:[["path",{d:"m17 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{d:"M17 22v-4h-4"}],["path",{d:"M20.996 15.251A4.5 4.5 0 0 0 17.495 8h-1.79a7 7 0 1 0-12.709 5.607"}],["path",{d:"M7 10v4h4"}],["path",{d:"m7 14 1.535-1.605a5 5 0 0 1 8 1.5"}]],CloudUpload:UI,Cloudy:[["path",{d:"M17.5 12a1 1 0 1 1 0 9H9.006a7 7 0 1 1 6.702-9z"}],["path",{d:"M21.832 9A3 3 0 0 0 19 7h-2.207a5.5 5.5 0 0 0-10.72.61"}]],Clover:[["path",{d:"M16.17 7.83 2 22"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12"}],["path",{d:"m7.83 7.83 8.34 8.34"}]],Club:[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z"}],["path",{d:"M12 17.66L12 22"}]],Code:[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]],Code2:qI,CodeSquare:XA,CodeXml:qI,Coffee:[["path",{d:"M10 2v2"}],["path",{d:"M14 2v2"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1"}],["path",{d:"M6 2v2"}]],Cog:[["path",{d:"M11 10.27 7 3.34"}],["path",{d:"m11 13.73-4 6.93"}],["path",{d:"M12 22v-2"}],["path",{d:"M12 2v2"}],["path",{d:"M14 12h8"}],["path",{d:"m17 20.66-1-1.73"}],["path",{d:"m17 3.34-1 1.73"}],["path",{d:"M2 12h2"}],["path",{d:"m20.66 17-1.73-1"}],["path",{d:"m20.66 7-1.73 1"}],["path",{d:"m3.34 17 1.73-1"}],["path",{d:"m3.34 7 1.73 1"}],["circle",{cx:"12",cy:"12",r:"2"}],["circle",{cx:"12",cy:"12",r:"8"}]],Coins:[["path",{d:"M13.744 17.736a6 6 0 1 1-7.48-7.48"}],["path",{d:"M15 6h1v4"}],["path",{d:"m6.134 14.768.866-.5 2 3.464"}],["circle",{cx:"16",cy:"8",r:"6"}]],Columns:GI,Columns2:GI,Columns3:jI,Columns3Cog:WI,Columns4:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7.5 3v18"}],["path",{d:"M12 3v18"}],["path",{d:"M16.5 3v18"}]],ColumnsSettings:WI,Combine:[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"m7 15 3 3"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1"}]],Command:[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"}]],Compass:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z"}]],Component:[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}]],Computer:[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h2"}],["path",{d:"M12 18h6"}]],ConciergeBell:[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z"}],["path",{d:"M20 16a8 8 0 1 0-16 0"}],["path",{d:"M12 4v4"}],["path",{d:"M10 4h4"}]],Cone:[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3"}]],Construction:[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1"}],["path",{d:"M17 14v7"}],["path",{d:"M7 14v7"}],["path",{d:"M17 3v3"}],["path",{d:"M7 3v3"}],["path",{d:"M10 14 2.3 6.3"}],["path",{d:"m14 6 7.7 7.7"}],["path",{d:"m8 6 8 8"}]],Contact:[["path",{d:"M16 2v2"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"11",r:"3"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]],Contact2:XI,ContactRound:XI,Container:[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"}],["path",{d:"M10 21.9V14L2.1 9.1"}],["path",{d:"m10 14 11.9-6.9"}],["path",{d:"M14 19.8v-8.1"}],["path",{d:"M18 17.5V9.4"}]],Contrast:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]],Cookie:[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"}],["path",{d:"M8.5 8.5v.01"}],["path",{d:"M16 15.5v.01"}],["path",{d:"M12 12v.01"}],["path",{d:"M11 17v.01"}],["path",{d:"M7 14v.01"}]],CookingPot:[["path",{d:"M2 12h20"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"}],["path",{d:"m4 8 16-4"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8"}]],Copy:[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]],CopyCheck:[["path",{d:"m12 15 2 2 4-4"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]],CopyMinus:[["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]],CopyPlus:[["line",{x1:"15",x2:"15",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]],CopySlash:[["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]],CopyX:[["line",{x1:"12",x2:"18",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]],Copyleft:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]],Copyright:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]],CornerDownLeft:[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]],CornerDownRight:[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]],CornerLeftDown:[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]],CornerLeftUp:[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]],CornerRightDown:[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]],CornerRightUp:[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]],CornerUpLeft:[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]],CornerUpRight:[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]],Cpu:[["path",{d:"M12 20v2"}],["path",{d:"M12 2v2"}],["path",{d:"M17 20v2"}],["path",{d:"M17 2v2"}],["path",{d:"M2 12h2"}],["path",{d:"M2 17h2"}],["path",{d:"M2 7h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 17h2"}],["path",{d:"M20 7h2"}],["path",{d:"M7 20v2"}],["path",{d:"M7 2v2"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]],CreativeCommons:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}]],CreditCard:[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]],Croissant:[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676"}]],Crop:[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]],Cross:[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z"}]],Crosshair:[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18"}]],Crown:[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z"}],["path",{d:"M5 21h14"}]],Cuboid:[["path",{d:"M10 22v-8"}],["path",{d:"M2.336 8.89 10 14l11.715-7.029"}],["path",{d:"M22 14a2 2 0 0 1-.971 1.715l-10 6a2 2 0 0 1-2.138-.05l-6-4A2 2 0 0 1 2 16v-6a2 2 0 0 1 .971-1.715l10-6a2 2 0 0 1 2.138.05l6 4A2 2 0 0 1 22 8z"}]],CupSoda:[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"}],["path",{d:"M5 8h14"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}],["path",{d:"m12 8 1-6h2"}]],CurlyBraces:XS,Currency:[["circle",{cx:"12",cy:"12",r:"8"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18"}]],Cylinder:[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]],Dam:[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M2 6h4"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z"}]],Database:[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5"}],["path",{d:"M3 12A9 3 0 0 0 21 12"}]],DatabaseBackup:[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69"}],["path",{d:"M21 9.3V5"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88"}],["path",{d:"M12 12v4h4"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16"}]],DatabaseSearch:[["path",{d:"M21 11.693V5"}],["path",{d:"m22 22-1.875-1.875"}],["path",{d:"M3 12a9 3 0 0 0 8.697 2.998"}],["path",{d:"M3 5v14a9 3 0 0 0 9.28 2.999"}],["circle",{cx:"18",cy:"18",r:"3"}],["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}]],DatabaseZap:[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84"}],["path",{d:"M21 5V8"}],["path",{d:"M21 12L18 17H22L19 22"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87"}]],DecimalsArrowLeft:[["path",{d:"m13 21-3-3 3-3"}],["path",{d:"M20 18H10"}],["path",{d:"M3 11h.01"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]],DecimalsArrowRight:[["path",{d:"M10 18h10"}],["path",{d:"m17 21 3-3-3-3"}],["path",{d:"M3 11h.01"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]],Delete:[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"}],["path",{d:"m12 9 6 6"}],["path",{d:"m18 9-6 6"}]],Dessert:[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0"}],["circle",{cx:"12",cy:"4",r:"2"}]],Diameter:[["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86"}],["path",{d:"m6.41 6.41 11.18 11.18"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86"}]],Diamond:[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z"}]],DiamondMinus:[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]],DiamondPercent:ZI,DiamondPlus:[["path",{d:"M12 8v8"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]],Dice1:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M12 12h.01"}]],Dice2:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]],Dice3:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M8 16h.01"}]],Dice4:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}]],Dice5:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M12 12h.01"}]],Dice6:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 12h.01"}],["path",{d:"M8 16h.01"}]],Dices:[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 14h.01"}],["path",{d:"M15 6h.01"}],["path",{d:"M18 9h.01"}]],Diff:[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]],Disc:[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]],Disc2:[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]],Disc3:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2"}]],DiscAlbum:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]],Divide:[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]],DivideCircle:CI,DivideSquare:QA,Dna:[["path",{d:"m10 16 1.5 1.5"}],["path",{d:"m14 8-1.5-1.5"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993"}]],DnaOff:[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3"}],["path",{d:"m2 2 20 20"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16"}]],Dock:[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]],Dog:[["path",{d:"M11.25 16.25h1.5L12 17z"}],["path",{d:"M16 14v.5"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309"}],["path",{d:"M8 14v.5"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"}]],DollarSign:[["line",{x1:"12",x2:"12",y1:"2",y2:"22"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}]],Donut:[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3"}],["circle",{cx:"12",cy:"12",r:"3"}]],DoorClosed:[["path",{d:"M10 12h.01"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h20"}]],DoorClosedLocked:[["path",{d:"M10 12h.01"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h8"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1"}]],DoorOpen:[["path",{d:"M11 20H2"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14"}],["path",{d:"M14 12h.01"}],["path",{d:"M22 20h-3"}]],Dot:[["circle",{cx:"12.1",cy:"12.1",r:"1"}]],DotSquare:$A,Download:[["path",{d:"M12 15V3"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["path",{d:"m7 10 5 5 5-5"}]],DownloadCloud:_I,DraftingCompass:[["path",{d:"m12.99 6.74 1.93 3.44"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0"}],["path",{d:"m21 21-2.16-3.84"}],["path",{d:"m3 21 8.02-14.26"}],["circle",{cx:"12",cy:"5",r:"2"}]],Drama:[["path",{d:"M10 11h.01"}],["path",{d:"M14 6h.01"}],["path",{d:"M18 6h.01"}],["path",{d:"M6.5 13.1h.01"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"}]],Drill:[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"}],["path",{d:"M18 6h4"}],["path",{d:"m5 10-2 8"}],["path",{d:"m7 18 2-8"}]],Drone:[["path",{d:"M10 10 7 7"}],["path",{d:"m10 14-3 3"}],["path",{d:"m14 10 3-3"}],["path",{d:"m14 14 3 3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1"}]],Droplet:[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"}]],DropletOff:[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"}]],Droplets:[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"}]],Drum:[["path",{d:"m2 2 8 8"}],["path",{d:"m22 2-8 8"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5"}],["path",{d:"M7 13.4v7.9"}],["path",{d:"M12 14v8"}],["path",{d:"M17 13.4v7.9"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9"}]],Drumstick:[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"}]],Dumbbell:[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z"}],["path",{d:"m2.5 21.5 1.4-1.4"}],["path",{d:"m20.1 3.9 1.4-1.4"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z"}],["path",{d:"m9.6 14.4 4.8-4.8"}]],Ear:[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"}]],EarOff:[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Earth:KI,EarthLock:[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]],Eclipse:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]],Edit:cT,Edit2:hA,Edit3:cA,Egg:[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]],EggFried:[["circle",{cx:"11.5",cy:"12.5",r:"3.5"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"}]],EggOff:[["path",{d:"m2 2 20 20"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568"}]],Ellipse:[["ellipse",{cx:"12",cy:"12",rx:"10",ry:"6"}]],Ellipsis:JI,EllipsisVertical:YI,Equal:[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]],EqualApproximately:[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}]],EqualNot:[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19"}]],EqualSquare:eT,Eraser:[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21"}],["path",{d:"m5.082 11.09 8.828 8.828"}]],EthernetPort:[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z"}],["path",{d:"M6 8v1"}],["path",{d:"M10 8v1"}],["path",{d:"M14 8v1"}],["path",{d:"M18 8v1"}]],Euro:[["path",{d:"M4 10h12"}],["path",{d:"M4 14h9"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"}]],EvCharger:[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 7h11"}],["path",{d:"m9 11-2 3h3l-2 3"}]],Expand:[["path",{d:"m15 15 6 6"}],["path",{d:"m15 9 6-6"}],["path",{d:"M21 16v5h-5"}],["path",{d:"M21 8V3h-5"}],["path",{d:"M3 16v5h5"}],["path",{d:"m3 21 6-6"}],["path",{d:"M3 8V3h5"}],["path",{d:"M9 9 3 3"}]],ExternalLink:[["path",{d:"M15 3h6v6"}],["path",{d:"M10 14 21 3"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]],Eye:[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"}],["circle",{cx:"12",cy:"12",r:"3"}]],EyeClosed:[["path",{d:"m15 18-.722-3.25"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0"}],["path",{d:"m20 15-1.726-2.05"}],["path",{d:"m4 15 1.726-2.05"}],["path",{d:"m9 18 .722-3.25"}]],EyeOff:[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"}],["path",{d:"m2 2 20 20"}]],Factory:[["path",{d:"M12 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{d:"M8 16h.01"}]],Fan:[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"}],["path",{d:"M12 12v.01"}]],FastForward:[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z"}]],Feather:[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z"}],["path",{d:"M16 8 2 22"}],["path",{d:"M17.5 15H9"}]],Fence:[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M6 8h4"}],["path",{d:"M6 18h4"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M14 8h4"}],["path",{d:"M14 18h4"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}]],FerrisWheel:[["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M12 2v4"}],["path",{d:"m6.8 15-3.5 2"}],["path",{d:"m20.7 7-3.5 2"}],["path",{d:"M6.8 9 3.3 7"}],["path",{d:"m20.7 17-3.5-2"}],["path",{d:"m9 22 3-8 3 8"}],["path",{d:"M8 22h8"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0"}]],File:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}]],FileArchive:[["path",{d:"M13.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 12v-1"}],["path",{d:"M8 18v-2"}],["path",{d:"M8 7V6"}],["circle",{cx:"8",cy:"20",r:"2"}]],FileAudio:ck,FileAudio2:ck,FileAxis3D:QI,FileAxis3d:QI,FileBadge:$I,FileBadge2:$I,FileBarChart:ak,FileBarChart2:rk,FileBox:[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.8"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8"}],["path",{d:"M3 13.1a2 2 0 0 0-.999 1.76v3.24a2 2 0 0 0 .969 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01z"}],["path",{d:"M7 17v5"}]],FileBraces:tk,FileBracesCorner:ek,FileChartColumn:rk,FileChartColumnIncreasing:ak,FileChartLine:nk,FileChartPie:ok,FileCheck:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m9 15 2 2 4-4"}]],FileCheck2:ik,FileCheckCorner:ik,FileClock:[["path",{d:"M16 22h2a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v2.85"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 14v2.2l1.6 1"}],["circle",{cx:"8",cy:"16",r:"6"}]],FileCode:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M10 12.5 8 15l2 2.5"}],["path",{d:"m14 12.5 2 2.5-2 2.5"}]],FileCode2:lk,FileCodeCorner:lk,FileCog:sk,FileCog2:sk,FileDiff:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M9 10h6"}],["path",{d:"M12 13V7"}],["path",{d:"M9 17h6"}]],FileDigit:[["path",{d:"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M10 16h2v6"}],["path",{d:"M10 22h4"}],["rect",{x:"2",y:"16",width:"4",height:"6",rx:"2"}]],FileDown:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M12 18v-6"}],["path",{d:"m9 15 3 3 3-3"}]],FileEdit:gk,FileExclamationPoint:dk,FileHeadphone:ck,FileHeart:[["path",{d:"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v7"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M3.62 18.8A2.25 2.25 0 1 1 7 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a1 1 0 0 1-1.507 0z"}]],FileImage:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["circle",{cx:"10",cy:"12",r:"2"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22"}]],FileInput:[["path",{d:"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M2 15h10"}],["path",{d:"m9 18 3-3-3-3"}]],FileJson:tk,FileJson2:ek,FileKey:hk,FileKey2:hk,FileLineChart:nk,FileLock:pk,FileLock2:pk,FileMinus:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M9 15h6"}]],FileMinus2:uk,FileMinusCorner:uk,FileMusic:[["path",{d:"M11.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.35"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 20v-7l3 1.474"}],["circle",{cx:"6",cy:"20",r:"2"}]],FileOutput:[["path",{d:"M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m5 11-3 3"}],["path",{d:"m5 17-3-3h10"}]],FilePen:gk,FilePenLine:fk,FilePieChart:ok,FilePlay:mk,FilePlus:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M9 15h6"}],["path",{d:"M12 18v-6"}]],FilePlus2:vk,FilePlusCorner:vk,FileQuestion:yk,FileQuestionMark:yk,FileScan:[["path",{d:"M20 10V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.35"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M16 14a2 2 0 0 0-2 2"}],["path",{d:"M16 22a2 2 0 0 1-2-2"}],["path",{d:"M20 14a2 2 0 0 1 2 2"}],["path",{d:"M20 22a2 2 0 0 0 2-2"}]],FileSearch:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5"}],["path",{d:"M13.3 16.3 15 18"}]],FileSearch2:bk,FileSearchCorner:bk,FileSignal:Mk,FileSignature:fk,FileSliders:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]],FileSpreadsheet:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]],FileStack:[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z"}]],FileSymlink:[["path",{d:"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m10 18 3-3-3-3"}]],FileTerminal:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]],FileText:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M10 9H8"}],["path",{d:"M16 13H8"}],["path",{d:"M16 17H8"}]],FileType:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M11 18h2"}],["path",{d:"M12 12v6"}],["path",{d:"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}]],FileType2:wk,FileTypeCorner:wk,FileUp:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]],FileUser:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M16 22a4 4 0 0 0-8 0"}],["circle",{cx:"12",cy:"15",r:"3"}]],FileVideo:mk,FileVideo2:xk,FileVideoCamera:xk,FileVolume:[["path",{d:"M4 11.55V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-1.95"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M12 15a5 5 0 0 1 0 6"}],["path",{d:"M8 14.502a.5.5 0 0 0-.826-.381l-1.893 1.631a1 1 0 0 1-.651.243H3.5a.5.5 0 0 0-.5.501v3.006a.5.5 0 0 0 .5.501h1.129a1 1 0 0 1 .652.243l1.893 1.633a.5.5 0 0 0 .826-.38z"}]],FileVolume2:Mk,FileWarning:dk,FileX:[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"m14.5 12.5-5 5"}],["path",{d:"m9.5 12.5 5 5"}]],FileX2:Ck,FileXCorner:Ck,Files:[["path",{d:"M15 2h-4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}],["path",{d:"M16.706 2.706A2.4 2.4 0 0 0 15 2v5a1 1 0 0 0 1 1h5a2.4 2.4 0 0 0-.706-1.706z"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"}]],Film:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 3v18"}],["path",{d:"M3 7.5h4"}],["path",{d:"M3 12h18"}],["path",{d:"M3 16.5h4"}],["path",{d:"M17 3v18"}],["path",{d:"M17 7.5h4"}],["path",{d:"M17 16.5h4"}]],Filter:Tk,FilterX:Ak,Fingerprint:Sk,FingerprintPattern:Sk,FireExtinguisher:[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5"}],["path",{d:"M9 18h8"}],["path",{d:"M18 3h-3"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11"}],["path",{d:"M5 13h4"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z"}]],Fish:[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z"}],["path",{d:"M18 12v.5"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98"}]],FishOff:[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20"}]],FishSymbol:[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]],FishingHook:[["path",{d:"m17.586 11.414-5.93 5.93a1 1 0 0 1-8-8l3.137-3.137a.707.707 0 0 1 1.207.5V10"}],["path",{d:"M20.414 8.586 22 7"}],["circle",{cx:"19",cy:"10",r:"2"}]],FishingRod:[["path",{d:"M4 11h1"}],["path",{d:"M8 15a2 2 0 0 1-4 0V3a1 1 0 0 1 1-1h.5C14 2 20 9 20 18v4"}],["circle",{cx:"18",cy:"18",r:"2"}]],Flag:[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}]],FlagOff:[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 22V4"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347"}]],FlagTriangleLeft:[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5"}]],FlagTriangleRight:[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5"}]],Flame:[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"}]],FlameKindling:[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z"}],["path",{d:"m5 22 14-4"}],["path",{d:"m5 18 14 4"}]],Flashlight:[["path",{d:"M12 13v1"}],["path",{d:"M17 2a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8A4 4 0 0 0 16 12v8a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V3a1 1 0 0 1 1-1z"}],["path",{d:"M6 6h12"}]],FlashlightOff:[["path",{d:"M11.652 6H18"}],["path",{d:"M12 13v1"}],["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V6"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7.649 2H17a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8a4 4 0 0 0-.55 1.007"}]],FlaskConical:[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2"}],["path",{d:"M6.453 15h11.094"}],["path",{d:"M8.5 2h7"}]],FlaskConicalOff:[["path",{d:"M10 2v2.343"}],["path",{d:"M14 2v6.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563"}],["path",{d:"M6.453 15H15"}],["path",{d:"M8.5 2h7"}]],FlaskRound:[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]],FlipHorizontal:BA,FlipHorizontal2:[["path",{d:"m3 7 5 5-5 5V7"}],["path",{d:"m21 7-5 5 5 5V7"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]],FlipVertical:VA,FlipVertical2:[["path",{d:"m17 3-5 5-5-5h10"}],["path",{d:"m17 21-5-5-5 5h10"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]],Flower:[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"}],["path",{d:"M12 7.5V9"}],["path",{d:"M7.5 12H9"}],["path",{d:"M16.5 12H15"}],["path",{d:"M12 16.5V15"}],["path",{d:"m8 8 1.88 1.88"}],["path",{d:"M14.12 9.88 16 8"}],["path",{d:"m8 16 1.88-1.88"}],["path",{d:"M14.12 14.12 16 16"}]],Flower2:[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M12 10v12"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"}]],Focus:[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]],FoldHorizontal:[["path",{d:"M2 12h6"}],["path",{d:"M22 12h-6"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 9-3 3 3 3"}],["path",{d:"m5 15 3-3-3-3"}]],FoldVertical:[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3-3-3 3"}],["path",{d:"m15 5-3 3-3-3"}]],Folder:[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]],FolderArchive:[["circle",{cx:"15",cy:"19",r:"2"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1"}],["path",{d:"M15 11v-1"}],["path",{d:"M15 17v-2"}]],FolderCheck:[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"m9 13 2 2 4-4"}]],FolderClock:[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2"}],["circle",{cx:"16",cy:"16",r:"6"}]],FolderClosed:[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M2 10h20"}]],FolderCode:[["path",{d:"M10 10.5 8 13l2 2.5"}],["path",{d:"m14 10.5 2 2.5-2 2.5"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"}]],FolderCog:Ik,FolderCog2:Ik,FolderDot:[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"1"}]],FolderDown:[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m15 13-3 3-3-3"}]],FolderEdit:kk,FolderGit:[["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M14 13h3"}],["path",{d:"M7 13h3"}]],FolderGit2:[["path",{d:"M18 19a5 5 0 0 1-5-5v8"}],["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5"}],["circle",{cx:"13",cy:"12",r:"2"}],["circle",{cx:"20",cy:"19",r:"2"}]],FolderHeart:[["path",{d:"M10.638 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.417"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]],FolderInput:[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"}],["path",{d:"M2 13h10"}],["path",{d:"m9 16 3-3-3-3"}]],FolderKanban:[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M8 10v4"}],["path",{d:"M12 10v2"}],["path",{d:"M16 10v6"}]],FolderKey:[["path",{d:"M13 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.36"}],["path",{d:"M19 12v6"}],["path",{d:"M19 14h2"}],["circle",{cx:"19",cy:"20",r:"2"}]],FolderLock:[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}]],FolderMinus:[["path",{d:"M9 13h6"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]],FolderOpen:[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"}]],FolderOpenDot:[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"}],["circle",{cx:"14",cy:"15",r:"1"}]],FolderOutput:[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5"}],["path",{d:"M2 13h10"}],["path",{d:"m5 10-3 3 3 3"}]],FolderPen:kk,FolderPlus:[["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]],FolderRoot:[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M12 15v5"}]],FolderSearch:[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1"}],["path",{d:"m21 21-1.9-1.9"}],["circle",{cx:"17",cy:"17",r:"3"}]],FolderSearch2:[["circle",{cx:"11.5",cy:"12.5",r:"2.5"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M13.3 14.3 15 16"}]],FolderSymlink:[["path",{d:"M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}],["path",{d:"m8 16 3-3-3-3"}]],FolderSync:[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5"}],["path",{d:"M12 10v4h4"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M22 22v-4h-4"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5"}]],FolderTree:[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3"}]],FolderUp:[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m9 13 3-3 3 3"}]],FolderX:[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],["path",{d:"m9.5 10.5 5 5"}],["path",{d:"m14.5 10.5-5 5"}]],Folders:[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1"}]],Footprints:[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"}],["path",{d:"M16 17h4"}],["path",{d:"M4 13h4"}]],ForkKnife:jT,ForkKnifeCrossed:WT,Forklift:[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5"}],["path",{d:"M15 19h7"}],["path",{d:"M16 19V2"}],["path",{d:"M6 12V7a2 2 0 0 1 2-2h2.172a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 16 10.828"}],["path",{d:"M7 19h4"}],["circle",{cx:"13",cy:"19",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]],Form:[["path",{d:"M4 14h6"}],["path",{d:"M4 2h10"}],["rect",{x:"4",y:"18",width:"16",height:"4",rx:"1"}],["rect",{x:"4",y:"6",width:"16",height:"4",rx:"1"}]],FormInput:uA,Forward:[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]],Frame:[["line",{x1:"22",x2:"2",y1:"6",y2:"6"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22"}]],Frown:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]],Fuel:[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 9h11"}]],Fullscreen:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1"}]],FunctionSquare:tT,Funnel:Tk,FunnelPlus:[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348"}],["path",{d:"M16 6h6"}],["path",{d:"M19 3v6"}]],FunnelX:Ak,GalleryHorizontal:[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]],GalleryHorizontalEnd:[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]],GalleryThumbnails:[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2"}],["path",{d:"M4 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}],["path",{d:"M19 21h1"}]],GalleryVertical:[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]],GalleryVerticalEnd:[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]],Gamepad:[["line",{x1:"6",x2:"10",y1:"12",y2:"12"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]],Gamepad2:[["line",{x1:"6",x2:"10",y1:"11",y2:"11"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"}]],GamepadDirectional:[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z"}]],GanttChart:oI,GanttChartSquare:zA,Gauge:[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]],GaugeCircle:SI,Gavel:[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381"}],["path",{d:"m16 16 6-6"}],["path",{d:"m21.5 10.5-8-8"}],["path",{d:"m8 8 6-6"}],["path",{d:"m8.5 7.5 8 8"}]],Gem:[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z"}],["path",{d:"M2 9h20"}]],GeorgianLari:[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9"}],["path",{d:"M13 12V3"}],["path",{d:"M4 21h16"}],["path",{d:"M9 12V3"}]],Ghost:[["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"}]],Gift:[["path",{d:"M12 7v14"}],["path",{d:"M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"}],["path",{d:"M7.5 7a1 1 0 0 1 0-5A4.8 8 0 0 1 12 7a4.8 8 0 0 1 4.5-5 1 1 0 0 1 0 5"}],["rect",{x:"3",y:"7",width:"18",height:"4",rx:"1"}]],GitBranch:[["path",{d:"M15 6a9 9 0 0 0-9 9V3"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}]],GitBranchMinus:[["path",{d:"M15 6a9 9 0 0 0-9 9V3"}],["path",{d:"M21 18h-6"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}]],GitBranchPlus:[["path",{d:"M6 3v12"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M15 6a9 9 0 0 0-9 9"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]],GitCommit:Pk,GitCommitHorizontal:Pk,GitCommitVertical:[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]],GitCompare:[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9"}]],GitCompareArrows:[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}],["path",{d:"m15 9-3-3 3-3"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9"}],["path",{d:"m9 15 3 3-3 3"}]],GitFork:[["circle",{cx:"12",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"18",cy:"6",r:"3"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"}],["path",{d:"M12 12v3"}]],GitGraph:[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v6"}],["circle",{cx:"5",cy:"18",r:"3"}],["path",{d:"M12 3v18"}],["circle",{cx:"19",cy:"6",r:"3"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9"}]],GitMerge:[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9"}]],GitMergeConflict:[["path",{d:"M12 6h4a2 2 0 0 1 2 2v7"}],["path",{d:"M6 12v9"}],["path",{d:"M9 3 3 9"}],["path",{d:"M9 9 3 3"}],["circle",{cx:"18",cy:"18",r:"3"}]],GitPullRequest:[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]],GitPullRequestArrow:[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}]],GitPullRequestClosed:[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"m21 3-6 6"}],["path",{d:"m21 9-6-6"}],["path",{d:"M18 11.5V15"}],["circle",{cx:"18",cy:"18",r:"3"}]],GitPullRequestCreate:[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]],GitPullRequestCreateArrow:[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3"}],["path",{d:"M19 15v6"}],["path",{d:"M22 18h-6"}]],GitPullRequestDraft:[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 6V5"}],["path",{d:"M18 11v-1"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]],GlassWater:[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"}]],Glasses:[["circle",{cx:"6",cy:"15",r:"4"}],["circle",{cx:"18",cy:"15",r:"4"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2"}]],Globe:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{d:"M2 12h20"}]],Globe2:KI,GlobeLock:[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"}],["path",{d:"M2 12h8.5"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]],GlobeOff:[["path",{d:"M10.114 4.462A14.5 14.5 0 0 1 12 2a10 10 0 0 1 9.313 13.643"}],["path",{d:"M15.557 15.556A14.5 14.5 0 0 1 12 22 10 10 0 0 1 4.929 4.929"}],["path",{d:"M15.892 10.234A14.5 14.5 0 0 0 12 2a10 10 0 0 0-3.643.687"}],["path",{d:"M17.656 12H22"}],["path",{d:"M19.071 19.071A10 10 0 0 1 12 22 14.5 14.5 0 0 1 8.44 8.45"}],["path",{d:"M2 12h10"}],["path",{d:"m2 2 20 20"}]],GlobeX:[["path",{d:"m16 3 5 5"}],["path",{d:"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10"}],["path",{d:"m21 3-5 5"}]],Goal:[["path",{d:"M12 13V2l8 4-8 4"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02"}]],Gpu:[["path",{d:"M2 17h18a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H2"}],["path",{d:"M2 21V3"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"}],["circle",{cx:"16",cy:"11",r:"2"}],["circle",{cx:"8",cy:"11",r:"2"}]],Grab:Nk,GraduationCap:[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z"}],["path",{d:"M22 10v6"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5"}]],Grape:[["path",{d:"M22 5V2l-5.89 5.89"}],["circle",{cx:"16.6",cy:"15.89",r:"3"}],["circle",{cx:"8.11",cy:"7.4",r:"3"}],["circle",{cx:"12.35",cy:"11.65",r:"3"}],["circle",{cx:"13.91",cy:"5.85",r:"3"}],["circle",{cx:"18.15",cy:"10.09",r:"3"}],["circle",{cx:"6.56",cy:"13.2",r:"3"}],["circle",{cx:"10.8",cy:"17.44",r:"3"}],["circle",{cx:"5",cy:"19",r:"3"}]],Grid:Hk,Grid2X2:Rk,Grid2X2Check:Ek,Grid2X2Plus:Lk,Grid2X2X:Ok,Grid2x2:Rk,Grid2x2Check:Ek,Grid2x2Plus:Lk,Grid2x2X:Ok,Grid3X3:Hk,Grid3x2:[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],Grid3x3:Hk,Grip:[["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"19",cy:"5",r:"1"}],["circle",{cx:"5",cy:"5",r:"1"}],["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}],["circle",{cx:"19",cy:"19",r:"1"}],["circle",{cx:"5",cy:"19",r:"1"}]],GripHorizontal:[["circle",{cx:"12",cy:"9",r:"1"}],["circle",{cx:"19",cy:"9",r:"1"}],["circle",{cx:"5",cy:"9",r:"1"}],["circle",{cx:"12",cy:"15",r:"1"}],["circle",{cx:"19",cy:"15",r:"1"}],["circle",{cx:"5",cy:"15",r:"1"}]],GripVertical:[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"9",cy:"5",r:"1"}],["circle",{cx:"9",cy:"19",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"15",cy:"5",r:"1"}],["circle",{cx:"15",cy:"19",r:"1"}]],Group:[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1"}]],Guitar:[["path",{d:"m11.9 12.1 4.514-4.514"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z"}],["path",{d:"m6 16 2 2"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z"}]],Ham:[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025"}],["path",{d:"m8.5 16.5-1-1"}]],Hamburger:[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}]],Hammer:[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9"}],["path",{d:"m18 15 4-4"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5"}]],Hand:[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]],HandCoins:[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 16 6 6"}],["circle",{cx:"16",cy:"9",r:"2.9"}],["circle",{cx:"6",cy:"5",r:"3"}]],HandFist:[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268"}]],HandGrab:Nk,HandHeart:[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95"}],["path",{d:"m2 15 6 6"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91"}]],HandHelping:Dk,HandMetal:[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"}]],HandPlatter:[["path",{d:"M12 3V2"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2"}],["path",{d:"M4 10h16"}],["path",{d:"M5 10a7 7 0 0 1 14 0"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2"}]],Handbag:[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5"}]],Handshake:[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4"}],["path",{d:"m21 3 1 11h-2"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3"}],["path",{d:"M3 4h8"}]],HardDrive:[["path",{d:"M10 16h.01"}],["path",{d:"M2.212 11.577a2 2 0 0 0-.212.896V18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5.527a2 2 0 0 0-.212-.896L18.55 5.11A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}],["path",{d:"M21.946 12.013H2.054"}],["path",{d:"M6 16h.01"}]],HardDriveDownload:[["path",{d:"M12 2v8"}],["path",{d:"m16 6-4 4-4-4"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]],HardDriveUpload:[["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M12 2v8"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]],HardHat:[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1"}]],Hash:[["line",{x1:"4",x2:"20",y1:"9",y2:"9"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21"}]],HatGlasses:[["path",{d:"M14 18a2 2 0 0 0-4 0"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11"}],["path",{d:"M2 11h20"}],["circle",{cx:"17",cy:"18",r:"3"}],["circle",{cx:"7",cy:"18",r:"3"}]],Haze:[["path",{d:"m5.2 6.2 1.4 1.4"}],["path",{d:"M2 13h2"}],["path",{d:"M20 13h2"}],["path",{d:"m17.4 7.6 1.4-1.4"}],["path",{d:"M22 17H2"}],["path",{d:"M22 21H2"}],["path",{d:"M16 13a4 4 0 0 0-8 0"}],["path",{d:"M12 5V2.5"}]],Hd:[["path",{d:"M10 12H6"}],["path",{d:"M10 15V9"}],["path",{d:"M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z"}],["path",{d:"M6 15V9"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]],HdmiPort:[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z"}],["path",{d:"M7.5 12h9"}]],Heading:[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]],Heading1:[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]],Heading2:[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"}]],Heading3:[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"}]],Heading4:[["path",{d:"M12 18V6"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3"}],["path",{d:"M21 10v8"}],["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}]],Heading5:[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 13v-3h4"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"}]],Heading6:[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["circle",{cx:"19",cy:"16",r:"2"}],["path",{d:"M20 10c-2 2-3 3.5-3 6"}]],HeadphoneOff:[["path",{d:"M21 14h-1.343"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364"}]],Headphones:[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3"}]],Headset:[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5"}]],Heart:[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}]],HeartCrack:[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z"}]],HeartHandshake:[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762"}]],HeartMinus:[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572"}],["path",{d:"M15 15h6"}]],HeartOff:[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761"}],["path",{d:"m2 2 20 20"}]],HeartPlus:[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49"}],["path",{d:"M15 15h6"}],["path",{d:"M18 12v6"}]],HeartPulse:[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27"}]],HeartX:[["path",{d:"m15.5 12.5 5 5"}],["path",{d:"m20.5 12.5-5 5"}],["path",{d:"M21.955 8.774a5.5 5.5 0 0 0-9.546-2.95.6.6 0 0 1-.818 0A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.508 5.332a2 2 0 0 0 2.57.352"}]],Heater:[["path",{d:"M11 8c2-3-2-3 0-6"}],["path",{d:"M15.5 8c2-3-2-3 0-6"}],["path",{d:"M6 10h.01"}],["path",{d:"M6 14h.01"}],["path",{d:"M10 16v-4"}],["path",{d:"M14 16v-4"}],["path",{d:"M18 16v-4"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3"}],["path",{d:"M5 20v2"}],["path",{d:"M19 20v2"}]],Helicopter:[["path",{d:"M11 17v4"}],["path",{d:"M14 3v8a2 2 0 0 0 2 2h5.865"}],["path",{d:"M17 17v4"}],["path",{d:"M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z"}],["path",{d:"M2 10v5"}],["path",{d:"M6 3h16"}],["path",{d:"M7 21h14"}],["path",{d:"M8 13H2"}]],HelpCircle:RI,HelpingHand:Dk,Hexagon:[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}]],Highlighter:[["path",{d:"m9 11-6 6v3h9l3-3"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"}]],History:[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M12 7v5l4 2"}]],Home:Fk,Hop:[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15"}]],HopOff:[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05"}],["path",{d:"m2 2 20 20"}]],Hospital:[["path",{d:"M12 7v4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M14 9h-4"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"}]],Hotel:[["path",{d:"M10 22v-6.57"}],["path",{d:"M12 11h.01"}],["path",{d:"M12 7h.01"}],["path",{d:"M14 15.43V22"}],["path",{d:"M15 16a5 5 0 0 0-6 0"}],["path",{d:"M16 11h.01"}],["path",{d:"M16 7h.01"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 7h.01"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]],Hourglass:[["path",{d:"M5 22h14"}],["path",{d:"M5 2h14"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"}]],House:Fk,HouseHeart:[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],HousePlug:[["path",{d:"M10 12V8.964"}],["path",{d:"M14 12V8.964"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2"}]],HousePlus:[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M15 18h6"}],["path",{d:"M18 15v6"}]],HouseWifi:[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01"}],["path",{d:"M12 17h.01"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0"}]],IceCream:Vk,IceCream2:Bk,IceCreamBowl:Bk,IceCreamCone:Vk,IdCard:[["path",{d:"M16 10h2"}],["path",{d:"M16 14h2"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0"}],["circle",{cx:"9",cy:"11",r:"2"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]],IdCardLanyard:[["path",{d:"M13.5 8h-3"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22"}],["path",{d:"m9 2 3 6"}],["circle",{cx:"12",cy:"15",r:"3"}]],Image:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]],ImageDown:[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19 3 3v-5.5"}],["path",{d:"m17 22 3-3"}],["circle",{cx:"9",cy:"9",r:"2"}]],ImageMinus:[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]],ImageOff:[["line",{x1:"2",x2:"22",y1:"2",y2:"22"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9"}]],ImagePlay:[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m6 21 5-5"}],["circle",{cx:"9",cy:"9",r:"2"}]],ImagePlus:[["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}],["circle",{cx:"9",cy:"9",r:"2"}]],ImageUp:[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19.5 3-3 3 3"}],["path",{d:"M17 22v-5.5"}],["circle",{cx:"9",cy:"9",r:"2"}]],ImageUpscale:[["path",{d:"M16 3h5v5"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2"}],["path",{d:"M21 12v3"}],["path",{d:"m21 3-5 5"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"}],["path",{d:"M9 3h3"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1"}]],Images:[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2"}]],Import:[["path",{d:"M12 3v12"}],["path",{d:"m8 11 4 4 4-4"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"}]],Inbox:[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}]],Indent:qk,IndentDecrease:Uk,IndentIncrease:qk,IndianRupee:[["path",{d:"M6 3h12"}],["path",{d:"M6 8h12"}],["path",{d:"m6 13 8.5 8"}],["path",{d:"M6 13h3"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10"}]],Infinity:[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8"}]],Info:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]],Inspect:lT,InspectionPanel:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h.01"}],["path",{d:"M17 7h.01"}],["path",{d:"M7 17h.01"}],["path",{d:"M17 17h.01"}]],Italic:[["line",{x1:"19",x2:"10",y1:"4",y2:"4"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20"}]],IterationCcw:[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]],IterationCw:[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]],JapaneseYen:[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]],Joystick:[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"}],["path",{d:"M6 15v-2"}],["path",{d:"M12 15V9"}],["circle",{cx:"12",cy:"6",r:"3"}]],Kanban:[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]],KanbanSquare:aT,KanbanSquareDashed:ZA,Kayak:[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"}],["path",{d:"m6.707 6.707 10.586 10.586"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"}]],Key:[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"}],["path",{d:"m21 2-9.6 9.6"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5"}]],KeyRound:[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}]],KeySquare:[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z"}],["path",{d:"m14 7 3 3"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814"}]],Keyboard:[["path",{d:"M10 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M14 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M6 8h.01"}],["path",{d:"M7 16h10"}],["path",{d:"M8 12h.01"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}]],KeyboardMusic:[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M2 12h20"}],["path",{d:"M6 12v4"}],["path",{d:"M10 12v4"}],["path",{d:"M14 12v4"}],["path",{d:"M18 12v4"}]],KeyboardOff:[["path",{d:"M 20 4 A2 2 0 0 1 22 6"}],["path",{d:"M 22 6 L 22 16.41"}],["path",{d:"M 7 16 L 16 16"}],["path",{d:"M 9.69 4 L 20 4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M6 8h.01"}],["path",{d:"M8 12h.01"}]],Lamp:[["path",{d:"M12 12v6"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z"}]],LampCeiling:[["path",{d:"M12 2v5"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z"}]],LampDesk:[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z"}],["path",{d:"m14.207 4.793-3.414 3.414"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18"}]],LampFloor:[["path",{d:"M12 10v12"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z"}],["path",{d:"M9 22h6"}]],LampWallDown:[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5"}]],LampWallUp:[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5"}]],LandPlot:[["path",{d:"m12 8 6-3-6-3v10"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12"}],["path",{d:"m6.49 12.85 11.02 6.3"}],["path",{d:"M17.51 12.85 6.5 19.15"}]],Landmark:[["path",{d:"M10 18v-7"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z"}],["path",{d:"M14 18v-7"}],["path",{d:"M18 18v-7"}],["path",{d:"M3 22h18"}],["path",{d:"M6 18v-7"}]],Languages:[["path",{d:"m5 8 6 6"}],["path",{d:"m4 14 6-6 2-3"}],["path",{d:"M2 5h12"}],["path",{d:"M7 2h1"}],["path",{d:"m22 22-5-10-5 10"}],["path",{d:"M14 18h6"}]],Laptop:[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z"}],["path",{d:"M20.054 15.987H3.946"}]],Laptop2:zk,LaptopMinimal:zk,LaptopMinimalCheck:[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]],Lasso:[["path",{d:"M3.704 14.467a10 8 0 1 1 3.115 2.375"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994"}],["circle",{cx:"5",cy:"16",r:"2"}]],LassoSelect:[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"}]],Laugh:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]],Layers:_k,Layers2:[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845"}]],Layers3:_k,LayersMinus:[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.832z"}],["path",{d:"M16 17h6"}],["path",{d:"M2.003 11.995a1 1 0 0 0 .597.915l8.58 3.91a2 2 0 0 0 .83.18"}],["path",{d:"M2.003 16.995a1 1 0 0 0 .597.915l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l2.11-.96"}],["path",{d:"M22.018 12.004a1 1 0 0 1-.598.916l-.177.08"}]],LayersPlus:[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.831z"}],["path",{d:"M16 17h6"}],["path",{d:"M19 14v6"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 .825.178"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l2.116-.962"}]],Layout:dA,LayoutDashboard:[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1"}]],LayoutGrid:[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}]],LayoutList:[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["path",{d:"M14 4h7"}],["path",{d:"M14 9h7"}],["path",{d:"M14 15h7"}],["path",{d:"M14 20h7"}]],LayoutPanelLeft:[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]],LayoutPanelTop:[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]],LayoutTemplate:[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1"}]],Leaf:[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"}]],LeafyGreen:[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22"}],["path",{d:"M2 22 17 7"}]],Lectern:[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1"}]],LensConcave:[["path",{d:"M7 2a1 1 0 0 0-.8 1.6 14 14 0 0 1 0 16.8A1 1 0 0 0 7 22h10a1 1 0 0 0 .8-1.6 14 14 0 0 1 0-16.8A1 1 0 0 0 17 2z"}]],LensConvex:[["path",{d:"M13.433 2a1 1 0 0 1 .824.448 18 18 0 0 1 0 19.104 1 1 0 0 1-.824.448h-2.866a1 1 0 0 1-.824-.448 18 18 0 0 1 0-19.104A1 1 0 0 1 10.567 2z"}]],LetterText:LT,Library:[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]],LibraryBig:[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1"}],["path",{d:"M7 3v18"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z"}]],LibrarySquare:rT,LifeBuoy:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m4.93 4.93 4.24 4.24"}],["path",{d:"m14.83 9.17 4.24-4.24"}],["path",{d:"m14.83 14.83 4.24 4.24"}],["path",{d:"m9.17 14.83-4.24 4.24"}],["circle",{cx:"12",cy:"12",r:"4"}]],Ligature:[["path",{d:"M14 12h2v8"}],["path",{d:"M14 20h4"}],["path",{d:"M6 12h4"}],["path",{d:"M6 20h4"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2"}]],Lightbulb:[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]],LightbulbOff:[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]],LineChart:aI,LineDotRightHorizontal:[["path",{d:"M 3 12 L 15 12"}],["circle",{cx:"18",cy:"12",r:"3"}]],LineSquiggle:[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"}]],LineStyle:[["path",{d:"M11 5h2"}],["path",{d:"M15 12h6"}],["path",{d:"M19 5h2"}],["path",{d:"M3 12h6"}],["path",{d:"M3 19h18"}],["path",{d:"M3 5h2"}]],Link:[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}]],Link2:[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]],Link2Off:[["path",{d:"M9 17H7A5 5 0 0 1 7 7"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],List:[["path",{d:"M3 5h.01"}],["path",{d:"M3 12h.01"}],["path",{d:"M3 19h.01"}],["path",{d:"M8 5h13"}],["path",{d:"M8 12h13"}],["path",{d:"M8 19h13"}]],ListCheck:[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]],ListChecks:[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["path",{d:"m3 7 2 2 4-4"}]],ListChevronsDownUp:[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 5 3 3 3-3"}],["path",{d:"m15 19 3-3 3 3"}]],ListChevronsUpDown:[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 8 3-3 3 3"}],["path",{d:"m15 16 3 3 3-3"}]],ListCollapse:[["path",{d:"M10 5h11"}],["path",{d:"M10 12h11"}],["path",{d:"M10 19h11"}],["path",{d:"m3 10 3-3-3-3"}],["path",{d:"m3 20 3-3-3-3"}]],ListEnd:[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M9 19H3"}],["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6"}]],ListFilter:[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]],ListFilterPlus:[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]],ListIndentDecrease:Uk,ListIndentIncrease:qk,ListMinus:[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]],ListMusic:[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]],ListOrdered:[["path",{d:"M11 5h10"}],["path",{d:"M11 12h10"}],["path",{d:"M11 19h10"}],["path",{d:"M4 4h1v5"}],["path",{d:"M4 9h2"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02"}]],ListPlus:[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]],ListRestart:[["path",{d:"M21 5H3"}],["path",{d:"M7 12H3"}],["path",{d:"M7 19H3"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14"}],["path",{d:"M11 10v4h4"}]],ListStart:[["path",{d:"M3 5h6"}],["path",{d:"M3 12h13"}],["path",{d:"M3 19h13"}],["path",{d:"m16 8-3-3 3-3"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6"}]],ListTodo:[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1"}]],ListTree:[["path",{d:"M8 5h13"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3"}]],ListVideo:[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}]],ListX:[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"m15.5 9.5 5 5"}],["path",{d:"m20.5 9.5-5 5"}]],Loader:[["path",{d:"M12 2v4"}],["path",{d:"m16.2 7.8 2.9-2.9"}],["path",{d:"M18 12h4"}],["path",{d:"m16.2 16.2 2.9 2.9"}],["path",{d:"M12 18v4"}],["path",{d:"m4.9 19.1 2.9-2.9"}],["path",{d:"M2 12h4"}],["path",{d:"m4.9 4.9 2.9 2.9"}]],Loader2:Gk,LoaderCircle:Gk,LoaderPinwheel:[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6"}],["circle",{cx:"12",cy:"12",r:"10"}]],Locate:[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}]],LocateFixed:[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}],["circle",{cx:"12",cy:"12",r:"3"}]],LocateOff:[["path",{d:"M12 19v3"}],["path",{d:"M12 2v3"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13"}],["path",{d:"M19 12h3"}],["path",{d:"M2 12h3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9"}]],LocationEdit:Zk,Lock:[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]],LockKeyhole:[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3"}]],LockKeyholeOpen:Wk,LockOpen:jk,LogIn:[["path",{d:"m10 17 5-5-5-5"}],["path",{d:"M15 12H3"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}]],LogOut:[["path",{d:"m16 17 5-5-5-5"}],["path",{d:"M21 12H9"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]],Logs:[["path",{d:"M3 5h1"}],["path",{d:"M3 12h1"}],["path",{d:"M3 19h1"}],["path",{d:"M8 5h1"}],["path",{d:"M8 12h1"}],["path",{d:"M8 19h1"}],["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}]],Lollipop:[["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0"}]],Luggage:[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"}],["path",{d:"M10 20h4"}],["circle",{cx:"16",cy:"20",r:"2"}],["circle",{cx:"8",cy:"20",r:"2"}]],MSquare:nT,Magnet:[["path",{d:"m12 15 4 4"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z"}],["path",{d:"m5 8 4 4"}]],Mail:[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]],MailCheck:[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m16 19 2 2 4-4"}]],MailMinus:[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M16 19h6"}]],MailOpen:[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"}]],MailPlus:[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M19 16v6"}],["path",{d:"M16 19h6"}]],MailQuestion:Xk,MailQuestionMark:Xk,MailSearch:[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.5-1.5"}]],MailWarning:[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M20 14v4"}],["path",{d:"M20 22v.01"}]],MailX:[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m17 17 4 4"}],["path",{d:"m21 17-4 4"}]],Mailbox:[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z"}],["polyline",{points:"15,9 18,9 18,11"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10"}]],Mails:[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2"}]],Map:[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z"}],["path",{d:"M15 5.764v15"}],["path",{d:"M9 3.236v15"}]],MapMinus:[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14"}],["path",{d:"M15 5.764V14"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]],MapPin:[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{cx:"12",cy:"10",r:"3"}]],MapPinCheck:[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m16 18 2 2 4-4"}]],MapPinCheckInside:[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"m9 10 2 2 4-4"}]],MapPinHouse:[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2"}],["path",{d:"M18 22v-3"}],["circle",{cx:"10",cy:"10",r:"3"}]],MapPinMinus:[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}]],MapPinMinusInside:[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"M9 10h6"}]],MapPinOff:[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74"}]],MapPinPen:Zk,MapPinPlus:[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}],["path",{d:"M19 15v6"}]],MapPinPlusInside:[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"M12 7v6"}],["path",{d:"M9 10h6"}]],MapPinSearch:[["path",{d:"M 12.248 21.969 a 1 1 0 0 1 -0.849 -0.17 C 9.539 20.193 4 14.993 4 10 a 8 8 0 0 1 16 0 C 20 10.42 19.961 10.841 19.888 11.262"}],["path",{d:"m22 22-1.88-1.88"}],["circle",{cx:"12",cy:"10",r:"3"}],["circle",{cx:"18",cy:"18",r:"3"}]],MapPinX:[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m21.5 15.5-5 5"}],["path",{d:"m21.5 20.5-5-5"}]],MapPinXInside:[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]],MapPinned:[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712"}]],MapPlus:[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12"}],["path",{d:"M15 5.764V12"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]],Mars:[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]],MarsStroke:[["path",{d:"m14 6 4 4"}],["path",{d:"M17 3h4v4"}],["path",{d:"m21 3-7.75 7.75"}],["circle",{cx:"9",cy:"15",r:"6"}]],Martini:[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]],Maximize:[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3"}]],Maximize2:[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]],Medal:[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"}],["path",{d:"M11 12 5.12 2.2"}],["path",{d:"m13 12 5.88-9.8"}],["path",{d:"M8 7h8"}],["circle",{cx:"12",cy:"17",r:"5"}],["path",{d:"M12 18v-2h-.5"}]],Megaphone:[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 6v8"}]],MegaphoneOff:[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 8v6"}]],Meh:[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]],MemoryStick:[["path",{d:"M12 12v-2"}],["path",{d:"M12 18v-2"}],["path",{d:"M16 12v-2"}],["path",{d:"M16 18v-2"}],["path",{d:"M2 11h1.5"}],["path",{d:"M20 18v-2"}],["path",{d:"M20.5 11H22"}],["path",{d:"M4 18v-2"}],["path",{d:"M8 12v-2"}],["path",{d:"M8 18v-2"}],["rect",{x:"2",y:"6",width:"20",height:"10",rx:"2"}]],Menu:[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]],MenuSquare:oT,Merge:[["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22"}],["path",{d:"m20 22-5-5"}]],MessageCircle:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]],MessageCircleCheck:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m9 12 2 2 4-4"}]],MessageCircleCode:[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]],MessageCircleDashed:[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98"}]],MessageCircleHeart:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z"}]],MessageCircleMore:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]],MessageCircleOff:[["path",{d:"m2 2 20 20"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}]],MessageCirclePlus:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]],MessageCircleQuestion:Kk,MessageCircleQuestionMark:Kk,MessageCircleReply:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m10 15-3-3 3-3"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1"}]],MessageCircleWarning:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]],MessageCircleX:[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]],MessageSquare:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}]],MessageSquareCheck:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m9 11 2 2 4-4"}]],MessageSquareCode:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"m14 14 3-3-3-3"}]],MessageSquareDashed:[["path",{d:"M14 3h2"}],["path",{d:"M16 19h-2"}],["path",{d:"M2 12v-2"}],["path",{d:"M2 16v5.286a.71.71 0 0 0 1.212.502l1.149-1.149"}],["path",{d:"M20 19a2 2 0 0 0 2-2v-1"}],["path",{d:"M22 10v2"}],["path",{d:"M22 6V5a2 2 0 0 0-2-2"}],["path",{d:"M4 3a2 2 0 0 0-2 2v1"}],["path",{d:"M8 19h2"}],["path",{d:"M8 3h2"}]],MessageSquareDiff:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M10 15h4"}],["path",{d:"M10 9h4"}],["path",{d:"M12 7v4"}]],MessageSquareDot:[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7"}],["circle",{cx:"19",cy:"6",r:"3"}]],MessageSquareHeart:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5"}]],MessageSquareLock:[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1"}]],MessageSquareMore:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 11h.01"}],["path",{d:"M16 11h.01"}],["path",{d:"M8 11h.01"}]],MessageSquareOff:[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344"}]],MessageSquarePlus:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 8v6"}],["path",{d:"M9 11h6"}]],MessageSquareQuote:[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8"}]],MessageSquareReply:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7"}]],MessageSquareShare:[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4"}],["path",{d:"M16 3h6v6"}],["path",{d:"m16 9 6-6"}]],MessageSquareText:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7 11h10"}],["path",{d:"M7 15h6"}],["path",{d:"M7 7h8"}]],MessageSquareWarning:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 15h.01"}],["path",{d:"M12 7v4"}]],MessageSquareX:[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m14.5 8.5-5 5"}],["path",{d:"m9.5 8.5 5 5"}]],MessagesSquare:[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1"}]],Metronome:[["path",{d:"M12 11.4V9.1"}],["path",{d:"m12 17 6.59-6.59"}],["path",{d:"m15.05 5.7-.218-.691a3 3 0 0 0-5.663 0L4.418 19.695A1 1 0 0 0 5.37 21h13.253a1 1 0 0 0 .951-1.31L18.45 16.2"}],["circle",{cx:"20",cy:"9",r:"2"}]],Mic:[["path",{d:"M12 19v3"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3"}]],Mic2:Yk,MicOff:[["path",{d:"M12 19v3"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12"}]],MicVocal:Yk,Microchip:[["path",{d:"M10 12h4"}],["path",{d:"M10 17h4"}],["path",{d:"M10 7h4"}],["path",{d:"M18 12h2"}],["path",{d:"M18 18h2"}],["path",{d:"M18 6h2"}],["path",{d:"M4 12h2"}],["path",{d:"M4 18h2"}],["path",{d:"M4 6h2"}],["rect",{x:"6",y:"2",width:"12",height:"20",rx:"2"}]],Microscope:[["path",{d:"M6 18h8"}],["path",{d:"M3 22h18"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1"}],["path",{d:"M9 14h2"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]],Microwave:[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1"}],["path",{d:"M18 8v7"}],["path",{d:"M6 19v2"}],["path",{d:"M18 19v2"}]],Milestone:[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M18.172 6a2 2 0 0 1 1.414.586l2.06 2.06a1.207 1.207 0 0 1 0 1.708l-2.06 2.06a2 2 0 0 1-1.414.586H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1z"}]],Milk:[["path",{d:"M8 2h8"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]],MilkOff:[["path",{d:"M8 2h8"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Minimize:[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3"}]],Minimize2:[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]],Minus:[["path",{d:"M5 12h14"}]],MinusCircle:II,MinusSquare:iT,MirrorRectangular:[["path",{d:"M11 6 8 9"}],["path",{d:"m16 7-8 8"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]],MirrorRound:[["path",{d:"M10 6.6 8.6 8"}],["path",{d:"M12 18v4"}],["path",{d:"M15 7.5 9.5 13"}],["path",{d:"M7 22h10"}],["circle",{cx:"12",cy:"10",r:"8"}]],Monitor:[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21"}]],MonitorCheck:[["path",{d:"m9 10 2 2 4-4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]],MonitorCloud:[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]],MonitorCog:[["path",{d:"M12 17v4"}],["path",{d:"m14.305 7.53.923-.382"}],["path",{d:"m15.228 4.852-.923-.383"}],["path",{d:"m16.852 3.228-.383-.924"}],["path",{d:"m16.852 8.772-.383.923"}],["path",{d:"m19.148 3.228.383-.924"}],["path",{d:"m19.53 9.696-.382-.924"}],["path",{d:"m20.772 4.852.924-.383"}],["path",{d:"m20.772 7.148.924.383"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["path",{d:"M8 21h8"}],["circle",{cx:"18",cy:"6",r:"3"}]],MonitorDot:[["path",{d:"M12 17v4"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693"}],["path",{d:"M8 21h8"}],["circle",{cx:"19",cy:"6",r:"3"}]],MonitorDown:[["path",{d:"M12 13V7"}],["path",{d:"m15 10-3 3-3-3"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]],MonitorOff:[["path",{d:"M12 17v4"}],["path",{d:"M17 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 1.184-1.826"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8 21h8"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v10a2 2 0 0 1-.293 1.042"}]],MonitorPause:[["path",{d:"M10 13V7"}],["path",{d:"M14 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]],MonitorPlay:[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]],MonitorSmartphone:[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"}],["path",{d:"M10 19v-3.96 3.15"}],["path",{d:"M7 19h5"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2"}]],MonitorSpeaker:[["path",{d:"M5.5 20H8"}],["path",{d:"M17 9h.01"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"}],["circle",{cx:"17",cy:"15",r:"1"}]],MonitorStop:[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1"}]],MonitorUp:[["path",{d:"m9 10 3-3 3 3"}],["path",{d:"M12 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]],MonitorX:[["path",{d:"m14.5 12.5-5-5"}],["path",{d:"m9.5 12.5 5-5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]],Moon:[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],MoonStar:[["path",{d:"M18 5h4"}],["path",{d:"M20 3v4"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],MoreHorizontal:JI,MoreVertical:YI,Motorbike:[["path",{d:"m18 14-1-3"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5"}],["circle",{cx:"19",cy:"17",r:"3"}],["circle",{cx:"5",cy:"17",r:"3"}]],Mountain:[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]],MountainSnow:[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"}]],Mouse:[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]],MouseLeft:[["path",{d:"M12 7.318V10"}],["path",{d:"M5 10v5a7 7 0 0 0 14 0V9c0-3.527-2.608-6.515-6-7"}],["circle",{cx:"7",cy:"4",r:"2"}]],MouseOff:[["path",{d:"M12 6v.343"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902"}],["path",{d:"M22 22 2 2"}]],MousePointer:[["path",{d:"M12.586 12.586 19 19"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z"}]],MousePointer2:[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z"}]],MousePointer2Off:[["path",{d:"m15.55 8.45 5.138 2.087a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063L8.45 15.551"}],["path",{d:"M22 2 2 22"}],["path",{d:"m6.816 11.528-2.779-6.84a.495.495 0 0 1 .651-.651l6.84 2.779"}]],MousePointerBan:[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z"}],["circle",{cx:"16",cy:"16",r:"6"}],["path",{d:"m11.8 11.8 8.4 8.4"}]],MousePointerClick:[["path",{d:"M14 4.1 12 6"}],["path",{d:"m5.1 8-2.9-.8"}],["path",{d:"m6 12-1.9 2"}],["path",{d:"M7.2 2.2 8 5.1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z"}]],MousePointerSquareDashed:KA,MouseRight:[["path",{d:"M12 7.318V10"}],["path",{d:"M19 10v5a7 7 0 0 1-14 0V9c0-3.527 2.608-6.515 6-7"}],["circle",{cx:"17",cy:"4",r:"2"}]],Move:[["path",{d:"M12 2v20"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m19 9 3 3-3 3"}],["path",{d:"M2 12h20"}],["path",{d:"m5 9-3 3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]],Move3D:Jk,Move3d:Jk,MoveDiagonal:[["path",{d:"M11 19H5v-6"}],["path",{d:"M13 5h6v6"}],["path",{d:"M19 5 5 19"}]],MoveDiagonal2:[["path",{d:"M19 13v6h-6"}],["path",{d:"M5 11V5h6"}],["path",{d:"m5 5 14 14"}]],MoveDown:[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]],MoveDownLeft:[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]],MoveDownRight:[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]],MoveHorizontal:[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]],MoveLeft:[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]],MoveRight:[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]],MoveUp:[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]],MoveUpLeft:[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]],MoveUpRight:[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]],MoveVertical:[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]],Music:[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]],Music2:[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]],Music3:[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]],Music4:[["path",{d:"M9 18V5l12-2v13"}],["path",{d:"m9 9 12-2"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]],Navigation:[["polygon",{points:"3 11 22 2 13 21 11 13 3 11"}]],Navigation2:[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]],Navigation2Off:[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],NavigationOff:[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Network:[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3"}],["path",{d:"M12 12V8"}]],Newspaper:[["path",{d:"M15 18h-5"}],["path",{d:"M18 14h-8"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1"}]],Nfc:[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20"}]],NonBinary:[["path",{d:"M12 2v10"}],["path",{d:"m8.5 4 7 4"}],["path",{d:"m8.5 8 7-4"}],["circle",{cx:"12",cy:"17",r:"5"}]],Notebook:[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M16 2v20"}]],NotebookPen:[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4"}],["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]],NotebookTabs:[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M15 2v20"}],["path",{d:"M15 7h5"}],["path",{d:"M15 12h5"}],["path",{d:"M15 17h5"}]],NotebookText:[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M9.5 8h5"}],["path",{d:"M9.5 12H16"}],["path",{d:"M9.5 16H14"}]],NotepadText:[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]],NotepadTextDashed:[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}],["path",{d:"M20 12v2"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1"}],["path",{d:"M13 22h-2"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2"}],["path",{d:"M4 14v-2"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]],Nut:[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"}]],NutOff:[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"}],["path",{d:"M19 10v3.343"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Octagon:[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}]],OctagonAlert:Qk,OctagonMinus:[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"}],["path",{d:"M8 12h8"}]],OctagonPause:$k,OctagonX:eA,Omega:[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"}]],Option:[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]],Orbit:[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152"}],["circle",{cx:"12",cy:"12",r:"3"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]],Origami:[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027"}]],Outdent:Uk,Package:[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"}],["path",{d:"M12 22V12"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["path",{d:"m7.5 4.27 9 5.15"}]],Package2:[["path",{d:"M12 3v6"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z"}],["path",{d:"M3.054 9.013h17.893"}]],PackageCheck:[["path",{d:"M12 22V12"}],["path",{d:"m16 17 2 2 4-4"}],["path",{d:"M21 11.127V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.32-.753"}],["path",{d:"M3.29 7 12 12l8.71-5"}],["path",{d:"m7.5 4.27 8.997 5.148"}]],PackageMinus:[["path",{d:"M12 22V12"}],["path",{d:"M16 17h6"}],["path",{d:"M21 13V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.675-.955"}],["path",{d:"M3.29 7 12 12l8.71-5"}],["path",{d:"m7.5 4.27 8.997 5.148"}]],PackageOpen:[["path",{d:"M12 22v-9"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z"}]],PackagePlus:[["path",{d:"M12 22V12"}],["path",{d:"M16 17h6"}],["path",{d:"M19 14v6"}],["path",{d:"M21 10.535V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.675-.955"}],["path",{d:"M3.29 7 12 12l8.71-5"}],["path",{d:"m7.5 4.27 8.997 5.148"}]],PackageSearch:[["path",{d:"M12 22V12"}],["path",{d:"M20.27 18.27 22 20"}],["path",{d:"M21 10.498V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l.98-.559"}],["path",{d:"M3.29 7 12 12l8.71-5"}],["path",{d:"m7.5 4.27 8.997 5.148"}],["circle",{cx:"18.5",cy:"16.5",r:"2.5"}]],PackageX:[["path",{d:"M12 22V12"}],["path",{d:"m16.5 14.5 5 5"}],["path",{d:"m16.5 19.5 5-5"}],["path",{d:"M21 10.5V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l.13-.074"}],["path",{d:"M3.29 7 12 12l8.71-5"}],["path",{d:"m7.5 4.27 8.997 5.148"}]],PaintBucket:[["path",{d:"M11 7 6 2"}],["path",{d:"M18.992 12H2.041"}],["path",{d:"M21.145 18.38A3.34 3.34 0 0 1 20 16.5a3.3 3.3 0 0 1-1.145 1.88c-.575.46-.855 1.02-.855 1.595A2 2 0 0 0 20 22a2 2 0 0 0 2-2.025c0-.58-.285-1.13-.855-1.595"}],["path",{d:"m8.5 4.5 2.148-2.148a1.205 1.205 0 0 1 1.704 0l7.296 7.296a1.205 1.205 0 0 1 0 1.704l-7.592 7.592a3.615 3.615 0 0 1-5.112 0l-3.888-3.888a3.615 3.615 0 0 1 0-5.112L5.67 7.33"}]],PaintRoller:[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1"}]],Paintbrush:[["path",{d:"m14.622 17.897-10.68-2.913"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"}]],Paintbrush2:tA,PaintbrushVertical:tA,Palette:[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"}]],Palmtree:HT,Panda:[["path",{d:"M11.25 17.25h1.5L12 18z"}],["path",{d:"m15 12 2 2"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5"}],["path",{d:"m9 12-2 2"}]],PanelBottom:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]],PanelBottomClose:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]],PanelBottomDashed:aA,PanelBottomInactive:aA,PanelBottomOpen:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]],PanelLeft:iA,PanelLeftClose:rA,PanelLeftDashed:nA,PanelLeftInactive:nA,PanelLeftOpen:oA,PanelLeftRightDashed:[["path",{d:"M15 10V9"}],["path",{d:"M15 15v-1"}],["path",{d:"M15 21v-2"}],["path",{d:"M15 5V3"}],["path",{d:"M9 10V9"}],["path",{d:"M9 15v-1"}],["path",{d:"M9 21v-2"}],["path",{d:"M9 5V3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],PanelRight:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]],PanelRightClose:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]],PanelRightDashed:lA,PanelRightInactive:lA,PanelRightOpen:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]],PanelTop:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]],PanelTopBottomDashed:[["path",{d:"M14 15h1"}],["path",{d:"M14 9h1"}],["path",{d:"M19 15h2"}],["path",{d:"M19 9h2"}],["path",{d:"M3 15h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 15h1"}],["path",{d:"M9 9h1"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],PanelTopClose:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]],PanelTopDashed:sA,PanelTopInactive:sA,PanelTopOpen:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]],PanelsLeftBottom:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]],PanelsLeftRight:jI,PanelsRightBottom:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]],PanelsTopBottom:mA,PanelsTopLeft:dA,Paperclip:[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"}]],Parentheses:[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]],ParkingCircle:AI,ParkingCircleOff:kI,ParkingMeter:[["path",{d:"M11 15h2"}],["path",{d:"M12 12v3"}],["path",{d:"M12 19v3"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z"}],["path",{d:"M9 9a3 3 0 1 1 6 0"}]],ParkingSquare:dT,ParkingSquareOff:sT,PartyPopper:[["path",{d:"M5.8 11.3 2 22l10.7-3.79"}],["path",{d:"M4 3h.01"}],["path",{d:"M22 8h.01"}],["path",{d:"M15 2h.01"}],["path",{d:"M22 20h.01"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"}]],Pause:[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]],PauseCircle:TI,PauseOctagon:$k,PawPrint:[["circle",{cx:"11",cy:"4",r:"2"}],["circle",{cx:"18",cy:"8",r:"2"}],["circle",{cx:"20",cy:"16",r:"2"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z"}]],PcCase:[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2"}],["path",{d:"M15 14h.01"}],["path",{d:"M9 6h6"}],["path",{d:"M9 10h6"}]],Pen:hA,PenBox:cT,PenLine:cA,PenOff:[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m2 2 20 20"}]],PenSquare:cT,PenTool:[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"}],["path",{d:"m2.3 2.3 7.286 7.286"}],["circle",{cx:"11",cy:"11",r:"2"}]],Pencil:[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}],["path",{d:"m15 5 4 4"}]],PencilLine:[["path",{d:"M13 21h8"}],["path",{d:"m15 5 4 4"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}]],PencilOff:[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m15 5 4 4"}],["path",{d:"m2 2 20 20"}]],PencilRuler:[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13"}],["path",{d:"m8 6 2-2"}],["path",{d:"m18 16 2-2"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"}],["path",{d:"m15 5 4 4"}]],Pentagon:[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z"}]],Percent:[["line",{x1:"19",x2:"5",y1:"5",y2:"19"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]],PercentCircle:PI,PercentDiamond:ZI,PercentSquare:hT,PersonStanding:[["circle",{cx:"12",cy:"5",r:"1"}],["path",{d:"m9 20 3-6 3 6"}],["path",{d:"m6 8 6 2 6-2"}],["path",{d:"M12 10v4"}]],PhilippinePeso:[["path",{d:"M20 11H4"}],["path",{d:"M20 7H4"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7"}]],Phone:[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],PhoneCall:[["path",{d:"M13 2a9 9 0 0 1 9 9"}],["path",{d:"M13 6a5 5 0 0 1 5 5"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],PhoneForwarded:[["path",{d:"M14 6h8"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],PhoneIncoming:[["path",{d:"M16 2v6h6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],PhoneMissed:[["path",{d:"m16 2 6 6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],PhoneOff:[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272"}],["path",{d:"M22 2 2 22"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473"}]],PhoneOutgoing:[["path",{d:"m16 8 6-6"}],["path",{d:"M22 8V2h-6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],Pi:[["line",{x1:"9",x2:"9",y1:"4",y2:"20"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4"}]],PiSquare:pT,Piano:[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8"}],["path",{d:"M2 14h20"}],["path",{d:"M6 14v4"}],["path",{d:"M10 14v4"}],["path",{d:"M14 14v4"}],["path",{d:"M18 14v4"}]],Pickaxe:[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z"}]],PictureInPicture:[["path",{d:"M2 10h6V4"}],["path",{d:"m2 4 6 6"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1"}]],PictureInPicture2:[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2"}]],PieChart:iI,PiggyBank:[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z"}],["path",{d:"M16 10h.01"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1"}]],Pilcrow:[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]],PilcrowLeft:[["path",{d:"M14 3v11"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9"}],["path",{d:"M18 3v11"}],["path",{d:"M22 18H2l4-4"}],["path",{d:"m6 22-4-4"}]],PilcrowRight:[["path",{d:"M10 3v11"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8"}],["path",{d:"M14 3v11"}],["path",{d:"m18 14 4 4H2"}],["path",{d:"m22 18-4 4"}]],PilcrowSquare:uT,Pill:[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z"}],["path",{d:"m8.5 8.5 7 7"}]],PillBottle:[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1"}]],Pin:[["path",{d:"M12 17v5"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z"}]],PinOff:[["path",{d:"M12 17v5"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11"}]],Pipette:[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z"}],["path",{d:"m2 22 .414-.414"}]],Pizza:[["path",{d:"m12 14-1 1"}],["path",{d:"m13.75 18.25-1.25 1.42"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z"}]],Plane:[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}]],PlaneLanding:[["path",{d:"M2 22h20"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z"}]],PlaneTakeoff:[["path",{d:"M2 22h20"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z"}]],Play:[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"}]],PlayCircle:EI,PlaySquare:fT,Plug:[["path",{d:"M12 22v-5"}],["path",{d:"M15 8V2"}],["path",{d:"M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z"}],["path",{d:"M9 8V2"}]],Plug2:[["path",{d:"M9 2v6"}],["path",{d:"M15 2v6"}],["path",{d:"M12 17v5"}],["path",{d:"M5 8h14"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z"}]],PlugZap:pA,PlugZap2:pA,Plus:[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]],PlusCircle:LI,PlusSquare:gT,PocketKnife:[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2"}],["path",{d:"M18 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6"}]],Podcast:[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0"}],["path",{d:"M8 14a5 5 0 1 1 8 0"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor"}]],Pointer:[["path",{d:"M22 14a8 8 0 0 1-8 8"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]],PointerOff:[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"}],["path",{d:"M6 6v8"}],["path",{d:"m2 2 20 20"}]],Popcorn:[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4"}],["path",{d:"M10 22 9 8"}],["path",{d:"m14 22 1-14"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z"}]],Popsicle:[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z"}],["path",{d:"m22 22-5.5-5.5"}]],PoundSterling:[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]],Power:[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]],PowerCircle:OI,PowerOff:[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68"}],["path",{d:"M12 2v4"}],["path",{d:"m2 2 20 20"}]],PowerSquare:mT,Presentation:[["path",{d:"M2 3h20"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"}],["path",{d:"m7 21 5-5 5 5"}]],Printer:[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1"}]],PrinterCheck:[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5"}],["path",{d:"m16 19 2 2 4-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}]],PrinterX:[["path",{d:"M12.531 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h6.377"}],["path",{d:"m16.5 16.5 5 5"}],["path",{d:"m16.5 21.5 5-5"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.5"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}]],Projector:[["path",{d:"M5 7 3 5"}],["path",{d:"M9 6V3"}],["path",{d:"m13 7 2-2"}],["circle",{cx:"9",cy:"13",r:"3"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17"}],["path",{d:"M16 16h2"}]],Proportions:[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M12 9v11"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9"}]],Puzzle:[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z"}]],Pyramid:[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z"}],["path",{d:"M12 2v20"}]],QrCode:[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3"}],["path",{d:"M21 21v.01"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7"}],["path",{d:"M3 12h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M12 16v.01"}],["path",{d:"M16 12h1"}],["path",{d:"M21 12v.01"}],["path",{d:"M12 21v-1"}]],Quote:[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}]],Rabbit:[["path",{d:"M13 16a3 3 0 0 1 2.24 5"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3"}]],Radar:[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34"}],["path",{d:"M4 6h.01"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67"}],["path",{d:"M12 18h.01"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"m13.41 10.59 5.66-5.66"}]],Radiation:[["path",{d:"M12 12h.01"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z"}]],Radical:[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21"}]],Radio:[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478"}],["circle",{cx:"12",cy:"12",r:"2"}]],RadioOff:[["path",{d:"M13.414 13.414a2 2 0 1 1-2.828-2.828"}],["path",{d:"M16.247 7.761a6 6 0 0 1 1.744 4.572"}],["path",{d:"M19.075 4.933a10 10 0 0 1 2.234 10.72"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478"}]],RadioReceiver:[["path",{d:"M5 16v2"}],["path",{d:"M19 16v2"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2"}],["path",{d:"M18 12h.01"}]],RadioTower:[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"}],["circle",{cx:"12",cy:"9",r:"2"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1"}],["path",{d:"M9.5 18h5"}],["path",{d:"m8 22 4-11 4 11"}]],Radius:[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82"}],["circle",{cx:"19",cy:"19",r:"2"}],["path",{d:"m13.41 13.41 4.18 4.18"}],["circle",{cx:"12",cy:"12",r:"2"}]],Rainbow:[["path",{d:"M22 17a10 10 0 0 0-20 0"}],["path",{d:"M6 17a6 6 0 0 1 12 0"}],["path",{d:"M10 17a2 2 0 0 1 4 0"}]],Rat:[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5"}],["path",{d:"M16 9h.01"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18"}]],Ratio:[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]],Receipt:[["path",{d:"M12 17V7"}],["path",{d:"M16 8h-6a2 2 0 0 0 0 4h4a2 2 0 0 1 0 4H8"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]],ReceiptCent:[["path",{d:"M12 7v10"}],["path",{d:"M14.828 14.829a4 4 0 0 1-5.656 0 4 4 0 0 1 0-5.657 4 4 0 0 1 5.656 0"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]],ReceiptEuro:[["path",{d:"M15.828 14.829a4 4 0 0 1-5.656 0 4 4 0 0 1 0-5.657 4 4 0 0 1 5.656 0"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}],["path",{d:"M8 12h5"}]],ReceiptIndianRupee:[["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}],["path",{d:"M8 11h8"}],["path",{d:"M8 7h8"}],["path",{d:"M9 7a4 4 0 0 1 0 8H8l3 2"}]],ReceiptJapaneseYen:[["path",{d:"m12 10 3-3"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}],["path",{d:"M9 11h6"}],["path",{d:"M9 15h6"}],["path",{d:"m9 7 3 3v7"}]],ReceiptPoundSterling:[["path",{d:"M10 17V9.5a1 1 0 0 1 5 0"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}],["path",{d:"M8 13h5"}],["path",{d:"M8 17h7"}]],ReceiptRussianRuble:[["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}],["path",{d:"M8 11h5a2 2 0 0 0 0-4h-3v10"}],["path",{d:"M8 15h5"}]],ReceiptSwissFranc:[["path",{d:"M10 11h4"}],["path",{d:"M10 17V7h5"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}],["path",{d:"M8 15h5"}]],ReceiptText:[["path",{d:"M13 16H8"}],["path",{d:"M14 8H8"}],["path",{d:"M16 12H8"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]],ReceiptTurkishLira:[["path",{d:"M10 7v10a5 5 0 0 0 5-5"}],["path",{d:"m14 8-6 3"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]],RectangleCircle:[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]],RectangleEllipsis:uA,RectangleGoggles:[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}]],RectangleHorizontal:[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]],RectangleVertical:[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]],Recycle:[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"}],["path",{d:"m14 16-3 3 3 3"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096"}]],Redo:[["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]],Redo2:[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13"}]],RedoDot:[["circle",{cx:"12",cy:"17",r:"1"}],["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]],RefreshCcw:[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}]],RefreshCcwDot:[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}],["circle",{cx:"12",cy:"12",r:"1"}]],RefreshCw:[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"}],["path",{d:"M8 16H3v5"}]],RefreshCwOff:[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"}],["path",{d:"M8 16H3v5"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M22 22 2 2"}]],Refrigerator:[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"}],["path",{d:"M5 10h14"}],["path",{d:"M15 7v6"}]],Regex:[["path",{d:"M17 3v10"}],["path",{d:"m12.67 5.5 8.66 5"}],["path",{d:"m12.67 10.5 8.66-5"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"}]],RemoveFormatting:[["path",{d:"M4 7V4h16v3"}],["path",{d:"M5 20h6"}],["path",{d:"M13 4 8 20"}],["path",{d:"m15 15 5 5"}],["path",{d:"m20 15-5 5"}]],Repeat:[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}]],Repeat1:[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}],["path",{d:"M11 10h1v4"}]],Repeat2:[["path",{d:"m2 9 3-3 3 3"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6"}],["path",{d:"m22 15-3 3-3-3"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10"}]],Replace:[["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]],ReplaceAll:[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]],Reply:[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]],ReplyAll:[["path",{d:"m12 17-5-5 5-5"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"}],["path",{d:"m7 17-5-5 5-5"}]],Rewind:[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z"}]],Ribbon:[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22"}],["path",{d:"m12 18 2.57-3.5"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009"}],["path",{d:"M9.35 14.53 12 11.22"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z"}]],Road:[["path",{d:"M12 17v4"}],["path",{d:"M12 5V3"}],["path",{d:"M12 9v3"}],["path",{d:"M2.077 18.449A2 2 0 0 0 4 21h16a2 2 0 0 0 1.924-2.55l-4-14A2 2 0 0 0 16 3H8a2 2 0 0 0-1.924 1.45z"}]],Rocket:[["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"}],["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09"}],["path",{d:"M9 12a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 .05 5 .05"}]],RockingChair:[["path",{d:"m15 13 3.708 7.416"}],["path",{d:"M3 19a15 15 0 0 0 18 0"}],["path",{d:"m3 2 3.21 9.633A2 2 0 0 0 8.109 13H18"}],["path",{d:"m9 13-3.708 7.416"}]],RollerCoaster:[["path",{d:"M6 19V5"}],["path",{d:"M10 19V6.8"}],["path",{d:"M14 19v-7.8"}],["path",{d:"M18 5v4"}],["path",{d:"M18 19v-6"}],["path",{d:"M22 19V9"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65"}]],Rose:[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"}],["path",{d:"M9.77 12C4 15 2 22 2 22"}],["circle",{cx:"17",cy:"8",r:"2"}]],Rotate3D:fA,Rotate3d:fA,RotateCcw:[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}]],RotateCcwKey:[["path",{d:"M12 7v6"}],["path",{d:"M12 9h2"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["circle",{cx:"12",cy:"15",r:"2"}]],RotateCcwSquare:[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6"}],["path",{d:"m15 2-3 3 3 3"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"}]],RotateCw:[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}]],RotateCwSquare:[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 8 3-3-3-3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}]],Route:[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"}],["circle",{cx:"18",cy:"5",r:"3"}]],RouteOff:[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3"}],["path",{d:"M15 5h-4.3"}],["circle",{cx:"18",cy:"5",r:"3"}]],Router:[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6.01 18H6"}],["path",{d:"M10.01 18H10"}],["path",{d:"M15 10v4"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0"}]],Rows:gA,Rows2:gA,Rows3:mA,Rows4:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 7.5H3"}],["path",{d:"M21 12H3"}],["path",{d:"M21 16.5H3"}]],Rss:[["path",{d:"M4 11a9 9 0 0 1 9 9"}],["path",{d:"M4 4a16 16 0 0 1 16 16"}],["circle",{cx:"5",cy:"19",r:"1"}]],Ruler:[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z"}],["path",{d:"m14.5 12.5 2-2"}],["path",{d:"m11.5 9.5 2-2"}],["path",{d:"m8.5 6.5 2-2"}],["path",{d:"m17.5 15.5 2-2"}]],RulerDimensionLine:[["path",{d:"M10 15v-3"}],["path",{d:"M14 15v-3"}],["path",{d:"M18 15v-3"}],["path",{d:"M2 8V4"}],["path",{d:"M22 6H2"}],["path",{d:"M22 8V4"}],["path",{d:"M6 15v-3"}],["rect",{x:"2",y:"12",width:"20",height:"8",rx:"2"}]],RussianRuble:[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]],Sailboat:[["path",{d:"M10 2v15"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z"}]],Salad:[["path",{d:"M7 21h10"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1"}],["path",{d:"m13 12 4-4"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2"}]],Sandwich:[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1"}]],Satellite:[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5"}],["path",{d:"M16.5 7.5 19 5"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5"}],["path",{d:"M9 21a6 6 0 0 0-6-6"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z"}]],SatelliteDish:[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z"}],["path",{d:"m9 15 3-3"}],["path",{d:"M17 13a6 6 0 0 0-6-6"}],["path",{d:"M21 13A10 10 0 0 0 11 3"}]],SaudiRiyal:[["path",{d:"m20 19.5-5.5 1.2"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2"}],["path",{d:"M20 10 4 13.5"}]],Save:[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7"}]],SaveAll:[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z"}]],SaveOff:[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{d:"M14 8h1"}],["path",{d:"M17 21v-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{d:"M29.5 11.5s5 5 4 5"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"}]],Scale:[["path",{d:"M12 3v18"}],["path",{d:"m19 8 3 8a5 5 0 0 1-6 0zV7"}],["path",{d:"M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1"}],["path",{d:"m5 8 3 8a5 5 0 0 1-6 0zV7"}],["path",{d:"M7 21h10"}]],Scale3D:vA,Scale3d:vA,Scaling:[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M14 15H9v-5"}],["path",{d:"M16 3h5v5"}],["path",{d:"M21 3 9 15"}]],Scan:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]],ScanBarcode:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 7v10"}],["path",{d:"M12 7v10"}],["path",{d:"M17 7v10"}]],ScanEye:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]],ScanFace:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 9h.01"}]],ScanHeart:[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z"}]],ScanLine:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 12h10"}]],ScanQrCode:[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M17 8V7"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 17h.01"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1"}]],ScanSearch:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m16 16-1.9-1.9"}]],ScanText:[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 8h8"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}]],ScatterChart:lI,School:[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 4.933V21"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11"}],["path",{d:"M6 4.933V21"}],["circle",{cx:"12",cy:"9",r:"2"}]],School2:FT,Scissors:[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M8.12 8.12 12 12"}],["path",{d:"M20 4 8.12 15.88"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M14.8 14.8 20 20"}]],ScissorsLineDashed:[["path",{d:"M5.42 9.42 8 12"}],["circle",{cx:"4",cy:"8",r:"2"}],["path",{d:"m14 6-8.58 8.58"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"M10.8 14.8 14 18"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]],ScissorsSquare:vT,ScissorsSquareDashedBottom:DA,Scooter:[["path",{d:"M21 4h-3.5l2 11.05"}],["path",{d:"M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009"}],["circle",{cx:"19.5",cy:"17.5",r:"2.5"}],["circle",{cx:"4.5",cy:"17.5",r:"2.5"}]],ScreenShare:[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m17 8 5-5"}],["path",{d:"M17 3h5v5"}]],ScreenShareOff:[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m22 3-5 5"}],["path",{d:"m17 3 5 5"}]],Scroll:[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]],ScrollText:[["path",{d:"M15 12h-5"}],["path",{d:"M15 8h-5"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]],Search:[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]],SearchAlert:[["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M11 7v4"}],["path",{d:"M11 15h.01"}]],SearchCheck:[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]],SearchCode:[["path",{d:"m13 13.5 2-2.5-2-2.5"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M9 8.5 7 11l2 2.5"}],["circle",{cx:"11",cy:"11",r:"8"}]],SearchSlash:[["path",{d:"m13.5 8.5-5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]],SearchX:[["path",{d:"m13.5 8.5-5 5"}],["path",{d:"m8.5 8.5 5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]],Section:[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0"}]],Send:[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z"}],["path",{d:"m21.854 2.147-10.94 10.939"}]],SendHorizonal:yA,SendHorizontal:yA,SendToBack:[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1"}]],SeparatorHorizontal:[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]],SeparatorVertical:[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]],Server:[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18"}]],ServerCog:[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.148 9.228.383-.923"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5"}],["path",{d:"M6 18h.01"}],["path",{d:"M6 6h.01"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}]],ServerCrash:[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"m13 6-4 6h6l-4 6"}]],ServerOff:[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"}],["path",{d:"M6 18h.01"}],["path",{d:"m2 2 20 20"}]],Settings:[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"}],["circle",{cx:"12",cy:"12",r:"3"}]],Settings2:[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]],Shapes:[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5"}]],Share:[["path",{d:"M12 2v13"}],["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}]],Share2:[["circle",{cx:"18",cy:"5",r:"3"}],["circle",{cx:"6",cy:"12",r:"3"}],["circle",{cx:"18",cy:"19",r:"3"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49"}]],Sheet:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21"}]],Shell:[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44"}]],ShelvingUnit:[["path",{d:"M12 12V9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}],["path",{d:"M16 20v-3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"}],["path",{d:"M20 22V2"}],["path",{d:"M4 12h16"}],["path",{d:"M4 20h16"}],["path",{d:"M4 2v20"}],["path",{d:"M4 4h16"}]],Shield:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}]],ShieldAlert:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]],ShieldBan:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m4.243 5.21 14.39 12.472"}]],ShieldCheck:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m9 12 2 2 4-4"}]],ShieldClose:MA,ShieldCog:[["path",{d:"m10.929 14.467-.383.924"}],["path",{d:"M10.929 8.923 10.546 8"}],["path",{d:"M13.225 8.923 13.608 8"}],["path",{d:"m13.607 15.391-.382-.924"}],["path",{d:"m14.849 10.547.923-.383"}],["path",{d:"m14.849 12.843.923.383"}],["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"m9.305 10.547-.923-.383"}],["path",{d:"m9.305 12.843-.923.383"}],["circle",{cx:"12.077",cy:"11.695",r:"3"}]],ShieldCogCorner:[["path",{d:"M11 22c-3.806-1.45-7-3.966-7-9V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v4"}],["path",{d:"M14.923 16.547 14 16.164"}],["path",{d:"m14.923 18.843-.923.383"}],["path",{d:"M16.547 14.923 16.164 14"}],["path",{d:"m16.547 20.467-.383.924"}],["path",{d:"m18.843 14.923.383-.923"}],["path",{d:"m19.225 21.391-.382-.924"}],["path",{d:"m20.467 16.547.923-.383"}],["path",{d:"m20.467 18.843.923.383"}],["circle",{cx:"17.695",cy:"17.695",r:"3"}]],ShieldEllipsis:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]],ShieldHalf:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M12 22V2"}]],ShieldMinus:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9 12h6"}]],ShieldOff:[["path",{d:"m2 2 20 20"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"}]],ShieldPlus:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]],ShieldQuestion:bA,ShieldQuestionMark:bA,ShieldUser:[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003"}],["circle",{cx:"12",cy:"11",r:"4"}]],ShieldX:MA,Ship:[["path",{d:"M12 10.189V14"}],["path",{d:"M12 2v3"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]],ShipWheel:[["circle",{cx:"12",cy:"12",r:"8"}],["path",{d:"M12 2v7.5"}],["path",{d:"m19 5-5.23 5.23"}],["path",{d:"M22 12h-7.5"}],["path",{d:"m19 19-5.23-5.23"}],["path",{d:"M12 14.5V22"}],["path",{d:"M10.23 13.77 5 19"}],["path",{d:"M9.5 12H2"}],["path",{d:"M10.23 10.23 5 5"}],["circle",{cx:"12",cy:"12",r:"2.5"}]],Shirt:[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"}]],ShoppingBag:[["path",{d:"M16 10a4 4 0 0 1-8 0"}],["path",{d:"M3.103 6.034h17.794"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"}]],ShoppingBasket:[["path",{d:"m15 11-1 9"}],["path",{d:"m19 11-4-7"}],["path",{d:"M2 11h20"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4"}],["path",{d:"M4.5 15.5h15"}],["path",{d:"m5 11 4-7"}],["path",{d:"m9 11 1 9"}]],ShoppingCart:[["circle",{cx:"8",cy:"21",r:"1"}],["circle",{cx:"19",cy:"21",r:"1"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"}]],Shovel:[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z"}],["path",{d:"m9 15 7.879-7.878"}]],ShowerHead:[["path",{d:"m4 4 2.5 2.5"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7"}],["path",{d:"M15 5 5 15"}],["path",{d:"M14 17v.01"}],["path",{d:"M10 16v.01"}],["path",{d:"M13 13v.01"}],["path",{d:"M16 10v.01"}],["path",{d:"M11 20v.01"}],["path",{d:"M17 14v.01"}],["path",{d:"M20 11v.01"}]],Shredder:[["path",{d:"M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{d:"M10 22v-5"}],["path",{d:"M14 19v-2"}],["path",{d:"M18 20v-3"}],["path",{d:"M2 13h20"}],["path",{d:"M6 20v-3"}]],Shrimp:[["path",{d:"M11 12h.01"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8"}],["path",{d:"M16 16c2 0 4.5-4 4-6"}]],Shrink:[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3"}]],Shrub:[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5"}],["path",{d:"M14.5 14.5 12 17"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z"}]],Shuffle:[["path",{d:"m18 14 4 4-4 4"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"}]],Sidebar:iA,SidebarClose:rA,SidebarOpen:oA,Sigma:[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2"}]],SigmaSquare:yT,Signal:[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]],SignalHigh:[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]],SignalLow:[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]],SignalMedium:[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]],SignalZero:[["path",{d:"M2 20h.01"}]],Signature:[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284"}],["path",{d:"M3 21h18"}]],Signpost:[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M2.354 10.354a1.207 1.207 0 0 1 0-1.708l2.06-2.06A2 2 0 0 1 5.828 6h12.344a2 2 0 0 1 1.414.586l2.06 2.06a1.207 1.207 0 0 1 0 1.708l-2.06 2.06a2 2 0 0 1-1.414.586H5.828a2 2 0 0 1-1.414-.586z"}]],SignpostBig:[["path",{d:"M10 9H4L2 7l2-2h6"}],["path",{d:"M14 5h6l2 2-2 2h-6"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18"}],["path",{d:"M8 22h8"}]],Siren:[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z"}],["path",{d:"M21 12h1"}],["path",{d:"M18.5 4.5 18 5"}],["path",{d:"M2 12h1"}],["path",{d:"M12 2v1"}],["path",{d:"m4.929 4.929.707.707"}],["path",{d:"M12 12v6"}]],SkipBack:[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M3 20V4"}]],SkipForward:[["path",{d:"M21 4v16"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}]],Skull:[["path",{d:"m12.5 17-.5-1-.5 1h1z"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]],Slash:[["path",{d:"M22 2 2 22"}]],SlashSquare:bT,Slice:[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14"}]],Sliders:wA,SlidersHorizontal:[["path",{d:"M10 5H3"}],["path",{d:"M12 19H3"}],["path",{d:"M14 3v4"}],["path",{d:"M16 17v4"}],["path",{d:"M21 12h-9"}],["path",{d:"M21 19h-5"}],["path",{d:"M21 5h-7"}],["path",{d:"M8 10v4"}],["path",{d:"M8 12H3"}]],SlidersVertical:wA,Smartphone:[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]],SmartphoneCharging:[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]],SmartphoneNfc:[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8"}]],Smile:[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]],SmilePlus:[["path",{d:"M22 11v1a10 10 0 1 1-9-10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}],["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}]],Snail:[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0"}],["circle",{cx:"10",cy:"13",r:"8"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6"}],["path",{d:"M18 3 19.1 5.2"}],["path",{d:"M22 3 20.9 5.2"}]],Snowflake:[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6h-4"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"M22 12h-6.5L14 15"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h4"}]],SoapDispenserDroplet:[["path",{d:"M10.5 2v4"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]],Sofa:[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M4 18v2"}],["path",{d:"M20 18v2"}],["path",{d:"M12 4v9"}]],SolarPanel:[["path",{d:"M11 2h2"}],["path",{d:"m14.28 14-4.56 8"}],["path",{d:"m21 22-1.558-4H4.558"}],["path",{d:"M3 10v2"}],["path",{d:"M6.245 15.04A2 2 0 0 1 8 14h12a1 1 0 0 1 .864 1.505l-3.11 5.457A2 2 0 0 1 16 22H4a1 1 0 0 1-.863-1.506z"}],["path",{d:"M7 2a4 4 0 0 1-4 4"}],["path",{d:"m8.66 7.66 1.41 1.41"}]],SortAsc:VS,SortDesc:DS,Soup:[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M7 21h10"}],["path",{d:"M19.5 12 22 6"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62"}]],Space:[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]],Spade:[["path",{d:"M12 18v4"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5"}]],Sparkle:[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}]],Sparkles:xA,Speaker:[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M12 6h.01"}],["circle",{cx:"12",cy:"14",r:"4"}],["path",{d:"M12 14h.01"}]],Speech:[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975"}]],SpellCheck:[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]],SpellCheck2:[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1"}]],Spline:[["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}]],SplinePointer:[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]],Split:[["path",{d:"M16 3h5v5"}],["path",{d:"M8 3H3v5"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3"}],["path",{d:"m15 9 6-6"}]],SplitSquareHorizontal:MT,SplitSquareVertical:wT,Spool:[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178"}]],SportShoe:[["path",{d:"m15 10.42 4.8-5.07"}],["path",{d:"M19 18h3"}],["path",{d:"M9.5 22 21.414 9.415A2 2 0 0 0 21.2 6.4l-5.61-4.208A1 1 0 0 0 14 3v2a2 2 0 0 1-1.394 1.906L8.677 8.053A1 1 0 0 0 8 9c-.155 6.393-2.082 9-4 9a2 2 0 0 0 0 4h14"}]],Spotlight:[["path",{d:"M15.295 19.562 16 22"}],["path",{d:"m17 16 3.758 2.098"}],["path",{d:"m19 12.5 3.026-.598"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"}],["path",{d:"M8 9V2"}]],SprayCan:[["path",{d:"M3 3h.01"}],["path",{d:"M7 5h.01"}],["path",{d:"M11 7h.01"}],["path",{d:"M3 7h.01"}],["path",{d:"M7 9h.01"}],["path",{d:"M3 11h.01"}],["rect",{width:"4",height:"4",x:"15",y:"5"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2"}],["path",{d:"m13 14 8-2"}],["path",{d:"m13 19 8-2"}]],Sprout:[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4"}],["path",{d:"M5 21h14"}]],Square:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]],SquareActivity:CA,SquareArrowDown:kA,SquareArrowDownLeft:SA,SquareArrowDownRight:IA,SquareArrowLeft:AA,SquareArrowOutDownLeft:TA,SquareArrowOutDownRight:PA,SquareArrowOutUpLeft:EA,SquareArrowOutUpRight:LA,SquareArrowRight:OA,SquareArrowRightEnter:[["path",{d:"m10 16 4-4-4-4"}],["path",{d:"M3 12h11"}],["path",{d:"M3 8V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}]],SquareArrowRightExit:[["path",{d:"M10 12h11"}],["path",{d:"m17 16 4-4-4-4"}],["path",{d:"M21 6.344V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1.344"}]],SquareArrowUp:NA,SquareArrowUpLeft:RA,SquareArrowUpRight:HA,SquareAsterisk:FA,SquareBottomDashedScissors:DA,SquareCenterlineDashedHorizontal:BA,SquareCenterlineDashedVertical:VA,SquareChartGantt:zA,SquareCheck:UA,SquareCheckBig:_A,SquareChevronDown:qA,SquareChevronLeft:GA,SquareChevronRight:WA,SquareChevronUp:jA,SquareCode:XA,SquareDashed:JA,SquareDashedBottom:[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}]],SquareDashedBottomCode:[["path",{d:"M10 9.5 8 12l2 2.5"}],["path",{d:"M14 21h1"}],["path",{d:"m14 9.5 2 2.5-2 2.5"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}]],SquareDashedKanban:ZA,SquareDashedMousePointer:KA,SquareDashedText:YA,SquareDashedTopSolid:[["path",{d:"M14 21h1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 21h1"}]],SquareDivide:QA,SquareDot:$A,SquareEqual:eT,SquareFunction:tT,SquareGanttChart:zA,SquareKanban:aT,SquareLibrary:rT,SquareM:nT,SquareMenu:oT,SquareMinus:iT,SquareMousePointer:lT,SquareParking:dT,SquareParkingOff:sT,SquarePause:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]],SquarePen:cT,SquarePercent:hT,SquarePi:pT,SquarePilcrow:uT,SquarePlay:fT,SquarePlus:gT,SquarePower:mT,SquareRadical:[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],SquareRoundCorner:[["path",{d:"M21 11a8 8 0 0 0-8-8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]],SquareScissors:vT,SquareSigma:yT,SquareSlash:bT,SquareSplitHorizontal:MT,SquareSplitVertical:wT,SquareSquare:[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]],SquareStack:[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2"}]],SquareStar:[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]],SquareStop:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]],SquareTerminal:xT,SquareUser:ST,SquareUserRound:CT,SquareX:IT,SquaresExclude:[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2"}]],SquaresIntersect:[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M14 2a2 2 0 0 1 2 2"}],["path",{d:"M16 22h-2"}],["path",{d:"M2 10V8"}],["path",{d:"M2 4a2 2 0 0 1 2-2"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}],["path",{d:"M4 16a2 2 0 0 1-2-2"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z"}],["path",{d:"M8 2h2"}]],SquaresSubtract:[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M16 22h-2"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}]],SquaresUnite:[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z"}]],Squircle:[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9"}]],SquircleDashed:[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"}]],Squirrel:[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"}],["path",{d:"M18 13h.01"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"}]],Stamp:[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z"}],["path",{d:"M5 22h14"}]],Star:[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"}]],StarHalf:[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2"}]],StarOff:[["path",{d:"m10.344 4.688 1.181-2.393a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.237 3.152"}],["path",{d:"m17.945 17.945.43 2.505a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a8 8 0 0 0 .4-.099"}],["path",{d:"m2 2 20 20"}]],Stars:xA,StepBack:[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M21 20V4"}]],StepForward:[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}],["path",{d:"M3 4v16"}]],Stethoscope:[["path",{d:"M11 2v2"}],["path",{d:"M5 2v2"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3"}],["circle",{cx:"20",cy:"10",r:"2"}]],Sticker:[["path",{d:"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z"}],["path",{d:"M15 3v5a1 1 0 0 0 1 1h5"}],["path",{d:"M8 13h.01"}],["path",{d:"M16 13h.01"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}]],StickyNote:[["path",{d:"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z"}],["path",{d:"M15 3v5a1 1 0 0 0 1 1h5"}]],Stone:[["path",{d:"M11.264 2.205A4 4 0 0 0 6.42 4.211l-4 8a4 4 0 0 0 1.359 5.117l6 4a4 4 0 0 0 4.438 0l6-4a4 4 0 0 0 1.576-4.592l-2-6a4 4 0 0 0-2.53-2.53z"}],["path",{d:"M11.99 22 14 12l7.822 3.184"}],["path",{d:"M14 12 8.47 2.302"}]],StopCircle:NI,Store:[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05"}]],StretchHorizontal:[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]],StretchVertical:[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]],Strikethrough:[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]],Subscript:[["path",{d:"m4 5 8 8"}],["path",{d:"m12 5-8 8"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"}]],Subtitles:ZS,Sun:[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]],SunDim:[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 4h.01"}],["path",{d:"M20 12h.01"}],["path",{d:"M12 20h.01"}],["path",{d:"M4 12h.01"}],["path",{d:"M17.657 6.343h.01"}],["path",{d:"M17.657 17.657h.01"}],["path",{d:"M6.343 17.657h.01"}],["path",{d:"M6.343 6.343h.01"}]],SunMedium:[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 3v1"}],["path",{d:"M12 20v1"}],["path",{d:"M3 12h1"}],["path",{d:"M20 12h1"}],["path",{d:"m18.364 5.636-.707.707"}],["path",{d:"m6.343 17.657-.707.707"}],["path",{d:"m5.636 5.636.707.707"}],["path",{d:"m17.657 17.657.707.707"}]],SunMoon:[["path",{d:"M12 2v2"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715"}],["path",{d:"M16 12a4 4 0 0 0-4-4"}],["path",{d:"m19 5-1.256 1.256"}],["path",{d:"M20 12h2"}]],SunSnow:[["path",{d:"M10 21v-1"}],["path",{d:"M10 4V3"}],["path",{d:"M10 9a3 3 0 0 0 0 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6 1.5-3H22"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h1"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"m3.64 18.36.7-.7"}],["path",{d:"m4.34 6.34-.7-.7"}]],Sunrise:[["path",{d:"M12 2v8"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]],Sunset:[["path",{d:"M12 10V2"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m16 6-4 4-4-4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]],Superscript:[["path",{d:"m4 19 8-8"}],["path",{d:"m12 19-8-8"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"}]],SwatchBook:[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"}],["path",{d:"M 7 17h.01"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"}]],SwissFranc:[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]],SwitchCamera:[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m18 22-3-3 3-3"}],["path",{d:"m6 2 3 3-3 3"}]],Sword:[["path",{d:"m11 19-6-6"}],["path",{d:"m5 21-2-2"}],["path",{d:"m8 16-4 4"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5"}]],Swords:[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21"}]],Syringe:[["path",{d:"m18 2 4 4"}],["path",{d:"m17 7 3-3"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"}],["path",{d:"m9 11 4 4"}],["path",{d:"m5 19-3 3"}],["path",{d:"m14 4 6 6"}]],Table:[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]],Table2:[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}]],TableCellsMerge:[["path",{d:"M12 21v-6"}],["path",{d:"M12 9V3"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]],TableCellsSplit:[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]],TableColumnsSplit:[["path",{d:"M14 14v2"}],["path",{d:"M14 20v2"}],["path",{d:"M14 2v2"}],["path",{d:"M14 8v2"}],["path",{d:"M2 15h8"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2"}],["path",{d:"M2 9h8"}],["path",{d:"M22 15h-4"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["path",{d:"M22 9h-4"}],["path",{d:"M5 3v18"}]],TableConfig:WI,TableOfContents:[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 5h.01"}],["path",{d:"M21 12h.01"}],["path",{d:"M21 19h.01"}]],TableProperties:[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]],TableRowsSplit:[["path",{d:"M14 10h2"}],["path",{d:"M15 22v-8"}],["path",{d:"M15 2v4"}],["path",{d:"M2 10h2"}],["path",{d:"M20 10h2"}],["path",{d:"M3 19h18"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2"}],["path",{d:"M8 10h2"}],["path",{d:"M9 22v-8"}],["path",{d:"M9 2v4"}]],Tablet:[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]],TabletSmartphone:[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4"}],["path",{d:"M8 18h.01"}]],Tablets:[["circle",{cx:"7",cy:"7",r:"5"}],["circle",{cx:"17",cy:"17",r:"5"}],["path",{d:"M12 17h10"}],["path",{d:"m3.46 10.54 7.08-7.08"}]],Tag:[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}]],Tags:[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor"}]],Tally1:[["path",{d:"M4 4v16"}]],Tally2:[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]],Tally3:[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]],Tally4:[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]],Tally5:[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]],Tangent:[["circle",{cx:"17",cy:"4",r:"2"}],["path",{d:"M15.59 5.41 5.41 15.59"}],["circle",{cx:"4",cy:"17",r:"2"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12"}]],Target:[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]],Telescope:[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"}],["path",{d:"m13.56 11.747 4.332-.924"}],["path",{d:"m16 21-3.105-6.21"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"}],["path",{d:"m6.158 8.633 1.114 4.456"}],["path",{d:"m8 21 3.105-6.21"}],["circle",{cx:"12",cy:"13",r:"2"}]],Tent:[["path",{d:"M3.5 21 14 3"}],["path",{d:"M20.5 21 10 3"}],["path",{d:"M15.5 21 12 15l-3.5 6"}],["path",{d:"M2 21h20"}]],TentTree:[["circle",{cx:"4",cy:"4",r:"2"}],["path",{d:"m14 5 3-3 3 3"}],["path",{d:"m14 10 3-3 3 3"}],["path",{d:"M17 14V2"}],["path",{d:"M17 14H7l-5 8h20Z"}],["path",{d:"M8 14v8"}],["path",{d:"m9 14 5 8"}]],Terminal:[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]],TerminalSquare:xT,TestTube:[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2"}],["path",{d:"M8.5 2h7"}],["path",{d:"M14.5 16h-5"}]],TestTube2:kT,TestTubeDiagonal:kT,TestTubes:[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2"}],["path",{d:"M3 2h7"}],["path",{d:"M14 2h7"}],["path",{d:"M9 16H4"}],["path",{d:"M20 16h-5"}]],Text:ET,TextAlignCenter:AT,TextAlignEnd:TT,TextAlignJustify:PT,TextAlignStart:ET,TextCursor:[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1"}]],TextCursorInput:[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1"}],["path",{d:"M9 6v12"}]],TextInitial:LT,TextQuote:[["path",{d:"M17 5H3"}],["path",{d:"M21 12H8"}],["path",{d:"M21 19H8"}],["path",{d:"M3 12v7"}]],TextSearch:[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["circle",{cx:"17",cy:"15",r:"3"}],["path",{d:"m21 19-1.9-1.9"}]],TextSelect:YA,TextSelection:YA,TextWrap:OT,Theater:[["path",{d:"M2 10s3-3 3-8"}],["path",{d:"M22 10s-3-3-3-8"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8"}],["path",{d:"M2 10s2 2 2 5"}],["path",{d:"M22 10s-2 2-2 5"}],["path",{d:"M8 15h8"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}]],Thermometer:[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]],ThermometerSnowflake:[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"M10.585 15H10"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h2"}]],ThermometerSun:[["path",{d:"M12 2v2"}],["path",{d:"M12 8a4 4 0 0 0-1.645 7.647"}],["path",{d:"M2 12h2"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m6.34 17.66-1.41 1.41"}]],ThumbsDown:[["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z"}],["path",{d:"M17 14V2"}]],ThumbsUp:[["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z"}],["path",{d:"M7 10v12"}]],Ticket:[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]],TicketCheck:[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9 12 2 2 4-4"}]],TicketMinus:[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}]],TicketPercent:[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 9h.01"}],["path",{d:"m15 9-6 6"}],["path",{d:"M15 15h.01"}]],TicketPlus:[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]],TicketSlash:[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}]],TicketX:[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}],["path",{d:"m9.5 9.5 5 5"}]],Tickets:[["path",{d:"m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]],TicketsPlane:[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12"}],["path",{d:"m12 13.5 3.794.506"}],["path",{d:"m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]],Timeline:[["path",{d:"M4 12h.01"}],["path",{d:"M4 16h.01"}],["path",{d:"M4 20h.01"}],["path",{d:"M4 4h.01"}],["path",{d:"M4 8h.01"}],["path",{d:"M9.414 13.414a2 2 0 0 0 1.414.586H19a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-8.172a2 2 0 0 0-1.414.586L8 12z"}],["path",{d:"M9.414 21.414a2 2 0 0 0 1.414.586H19a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-8.172a2 2 0 0 0-1.414.586L8 20z"}],["path",{d:"M9.414 5.414A2 2 0 0 0 10.828 6H19a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-8.172a2 2 0 0 0-1.414.586L8 4z"}]],Timer:[["line",{x1:"10",x2:"14",y1:"2",y2:"2"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11"}],["circle",{cx:"12",cy:"14",r:"8"}]],TimerOff:[["path",{d:"M10 2h4"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M12 12v-2"}]],TimerReset:[["path",{d:"M10 2h4"}],["path",{d:"M12 14v-4"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"}],["path",{d:"M9 17H4v5"}]],ToggleLeft:[["circle",{cx:"9",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]],ToggleRight:[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]],Toilet:[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8"}]],ToolCase:[["path",{d:"M10 15h4"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}]],Toolbox:[["path",{d:"M16 12v4"}],["path",{d:"M16 6a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.414l4-4A2 2 0 0 1 8 6z"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M2 14h20"}],["path",{d:"M8 12v4"}]],Tornado:[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]],Torus:[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]],Touchpad:[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]],TouchpadOff:[["path",{d:"M12 20v-6"}],["path",{d:"M19.656 14H22"}],["path",{d:"M2 14h12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344"}]],TowelRack:[["path",{d:"M22 7h-2"}],["path",{d:"M6.5 3h11A2.5 2.5 0 0 1 20 5.5V20a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1V5.5a1 1 0 0 0-5 0V17a1 1 0 0 0 1 1h4"}],["path",{d:"M9 7H2"}]],TowerControl:[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z"}],["path",{d:"M8 13v9"}],["path",{d:"M16 22v-9"}],["path",{d:"m9 6 1 7"}],["path",{d:"m15 6-1 7"}],["path",{d:"M12 6V2"}],["path",{d:"M13 2h-2"}]],ToyBrick:[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"}]],Tractor:[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20"}],["path",{d:"M16 18h-5"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246"}],["path",{d:"M4 11V4"}],["path",{d:"M7 15h.01"}],["path",{d:"M8 10.1V4"}],["circle",{cx:"18",cy:"18",r:"2"}],["circle",{cx:"7",cy:"15",r:"5"}]],TrafficCone:[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0"}]],Train:RT,TrainFront:[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1"}],["path",{d:"m9 15-1-1"}],["path",{d:"m15 15 1-1"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z"}],["path",{d:"m8 19-2 3"}],["path",{d:"m16 19 2 3"}]],TrainFrontTunnel:[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8"}],["path",{d:"M10 15h.01"}],["path",{d:"M14 15h.01"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z"}],["path",{d:"m9 19-2 3"}],["path",{d:"m15 19 2 3"}]],TrainTrack:[["path",{d:"M2 17 17 2"}],["path",{d:"m2 14 8 8"}],["path",{d:"m5 11 8 8"}],["path",{d:"m8 8 8 8"}],["path",{d:"m11 5 8 8"}],["path",{d:"m14 2 8 8"}],["path",{d:"M7 22 22 7"}]],TramFront:RT,Transgender:[["path",{d:"M12 16v6"}],["path",{d:"M14 20h-4"}],["path",{d:"M18 2h4v4"}],["path",{d:"m2 2 7.17 7.17"}],["path",{d:"M2 5.355V2h3.357"}],["path",{d:"m22 2-7.17 7.17"}],["path",{d:"M8 5 5 8"}],["circle",{cx:"12",cy:"12",r:"4"}]],Trash:[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]],Trash2:[["path",{d:"M10 11v6"}],["path",{d:"M14 11v6"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]],TreeDeciduous:[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z"}],["path",{d:"M12 19v3"}]],TreePalm:HT,TreePine:[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"}],["path",{d:"M12 22v-3"}]],Trees:[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"}],["path",{d:"M7 16v6"}],["path",{d:"M13 19v3"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"}]],TrendingDown:[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]],TrendingUp:[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]],TrendingUpDown:[["path",{d:"M14.828 14.828 21 21"}],["path",{d:"M21 16v5h-5"}],["path",{d:"m21 3-9 9-4-4-6 6"}],["path",{d:"M21 8V3h-5"}]],Triangle:[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}]],TriangleAlert:NT,TriangleDashed:[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013"}],["path",{d:"M14 21h2"}],["path",{d:"m15.874 7.743 1 1.732"}],["path",{d:"m18.849 12.952 1 1.732"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839"}],["path",{d:"m5.136 12.952-1 1.732"}],["path",{d:"M8 21h2"}],["path",{d:"m8.102 7.743-1 1.732"}]],TriangleRight:[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z"}]],Trophy:[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18"}],["path",{d:"M4 22h16"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6"}]],Truck:[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M15 18H9"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]],TruckElectric:[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9"}],["path",{d:"M15 19H9"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02"}],["circle",{cx:"17",cy:"19",r:"2"}],["circle",{cx:"7",cy:"19",r:"2"}]],TurkishLira:[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]],Turntable:[["path",{d:"M10 12.01h.01"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4"}],["circle",{cx:"10",cy:"12",r:"4"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]],Turtle:[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z"}],["path",{d:"M4.82 7.9 8 10"}],["path",{d:"M15.18 7.9 12 10"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2"}]],Tv:[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]],Tv2:DT,TvMinimal:DT,TvMinimalPlay:[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]],Type:[["path",{d:"M12 4v16"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2"}],["path",{d:"M9 20h6"}]],TypeOutline:[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z"}]],Umbrella:[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z"}]],UmbrellaOff:[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"}]],Underline:[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]],Undo:[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]],Undo2:[["path",{d:"M9 14 4 9l5-5"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11"}]],UndoDot:[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]],UnfoldHorizontal:[["path",{d:"M16 12h6"}],["path",{d:"M8 12H2"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 15 3-3-3-3"}],["path",{d:"m5 9-3 3 3 3"}]],UnfoldVertical:[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m15 5-3-3-3 3"}]],Ungroup:[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]],University:FT,Unlink:[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16"}]],Unlink2:[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]],Unlock:jk,UnlockKeyhole:Wk,Unplug:[["path",{d:"m19 5 3-3"}],["path",{d:"m2 22 3-3"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z"}]],Upload:[["path",{d:"M12 3v12"}],["path",{d:"m17 8-5-5-5 5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}]],UploadCloud:UI,Usb:[["circle",{cx:"10",cy:"7",r:"1"}],["circle",{cx:"4",cy:"20",r:"1"}],["path",{d:"M4.7 19.3 19 5"}],["path",{d:"m21 3-3 1 2 2Z"}],["path",{d:"M9.26 7.68 5 12l2 5"}],["path",{d:"m10 14 5 2 3.5-3.5"}],["path",{d:"m18 12 1-1 1 1-1 1Z"}]],User:[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]],User2:qT,UserCheck:[["path",{d:"m16 11 2 2 4-4"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}]],UserCheck2:BT,UserCircle:FI,UserCircle2:DI,UserCog:[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2"}],["path",{d:"m14.305 16.53.923-.382"}],["path",{d:"m15.228 13.852-.923-.383"}],["path",{d:"m16.852 12.228-.383-.923"}],["path",{d:"m16.852 17.772-.383.924"}],["path",{d:"m19.148 12.228.383-.923"}],["path",{d:"m19.53 18.696-.382-.924"}],["path",{d:"m20.772 13.852.924-.383"}],["path",{d:"m20.772 16.148.924.383"}],["circle",{cx:"18",cy:"15",r:"3"}],["circle",{cx:"9",cy:"7",r:"4"}]],UserCog2:VT,UserKey:[["path",{d:"M20 11v6"}],["path",{d:"M20 13h2"}],["path",{d:"M3 21v-2a4 4 0 0 1 4-4h6a4 4 0 0 1 2.072.578"}],["circle",{cx:"10",cy:"7",r:"4"}],["circle",{cx:"20",cy:"19",r:"2"}]],UserLock:[["path",{d:"M19 16v-2a2 2 0 0 0-4 0v2"}],["path",{d:"M9.5 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"10",cy:"7",r:"4"}],["rect",{x:"13",y:"16",width:"8",height:"5",rx:".899"}]],UserMinus:[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]],UserMinus2:zT,UserPen:[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"7",r:"4"}]],UserPlus:[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]],UserPlus2:_T,UserRound:qT,UserRoundCheck:BT,UserRoundCog:VT,UserRoundKey:[["path",{d:"M19 11v6"}],["path",{d:"M19 13h2"}],["path",{d:"M2 21a8 8 0 0 1 12.868-6.349"}],["circle",{cx:"10",cy:"8",r:"5"}],["circle",{cx:"19",cy:"19",r:"2"}]],UserRoundMinus:zT,UserRoundPen:[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"8",r:"5"}]],UserRoundPlus:_T,UserRoundSearch:[["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.9-1.9"}]],UserRoundX:UT,UserSearch:[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"17",cy:"17",r:"3"}],["path",{d:"m21 21-1.9-1.9"}]],UserSquare:ST,UserSquare2:CT,UserStar:[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"10",cy:"7",r:"4"}]],UserX:[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13"}]],UserX2:UT,Users:[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87"}],["circle",{cx:"9",cy:"7",r:"4"}]],Users2:GT,UsersRound:GT,Utensils:jT,UtensilsCrossed:WT,UtilityPole:[["path",{d:"M12 2v20"}],["path",{d:"M2 5h20"}],["path",{d:"M3 3v2"}],["path",{d:"M7 3v2"}],["path",{d:"M17 3v2"}],["path",{d:"M21 3v2"}],["path",{d:"m19 5-7 7-7-7"}]],Van:[["path",{d:"M13 6v5a1 1 0 0 0 1 1h6.102a1 1 0 0 1 .712.298l.898.91a1 1 0 0 1 .288.702V17a1 1 0 0 1-1 1h-3"}],["path",{d:"M5 18H3a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h12c1.1 0 2.1.8 2.4 1.8l1.176 4.2"}],["path",{d:"M9 18h5"}],["circle",{cx:"16",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]],Variable:[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]],Vault:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 7.9 2.7 2.7"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 10.6 2.7-2.7"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 16.1 2.7-2.7"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 13.4 2.7 2.7"}],["circle",{cx:"12",cy:"12",r:"2"}]],VectorSquare:[["path",{d:"M19.5 7a24 24 0 0 1 0 10"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1"}]],Vegan:[["path",{d:"M16 8q6 0 6-6-6 0-6 6"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14"}]],VenetianMask:[["path",{d:"M18 11c-1.5 0-2.5.5-3 2"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2"}]],Venus:[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]],VenusAndMars:[["path",{d:"M10 20h4"}],["path",{d:"M12 16v6"}],["path",{d:"M17 2h4v4"}],["path",{d:"m21 2-5.46 5.46"}],["circle",{cx:"12",cy:"11",r:"5"}]],Verified:US,Vibrate:[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1"}]],VibrateOff:[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Video:[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2"}]],VideoOff:[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}],["path",{d:"m2 2 20 20"}]],Videotape:[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 8h20"}],["circle",{cx:"8",cy:"14",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"14",r:"2"}]],View:[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]],Voicemail:[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]],Volleyball:[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5"}],["circle",{cx:"12",cy:"12",r:"10"}]],Volume:[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}]],Volume1:[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}]],Volume2:[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728"}]],VolumeOff:[["path",{d:"M16 9a5 5 0 0 1 .95 2.293"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96"}],["path",{d:"m2 2 20 20"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686"}]],VolumeX:[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15"}]],Vote:[["path",{d:"m9 12 2 2 4-4"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z"}],["path",{d:"M22 19H2"}]],Wallet:[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]],Wallet2:XT,WalletCards:[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21"}]],WalletMinimal:XT,Wallpaper:[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15"}],["circle",{cx:"8",cy:"9",r:"2"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]],Wand:[["path",{d:"M15 4V2"}],["path",{d:"M15 16v-2"}],["path",{d:"M8 9h2"}],["path",{d:"M20 9h2"}],["path",{d:"M17.8 11.8 19 13"}],["path",{d:"M15 9h.01"}],["path",{d:"M17.8 6.2 19 5"}],["path",{d:"m3 21 9-9"}],["path",{d:"M12.2 6.2 11 5"}]],Wand2:ZT,WandSparkles:ZT,Warehouse:[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z"}],["path",{d:"M6 13h12"}],["path",{d:"M6 17h12"}]],WashingMachine:[["path",{d:"M3 6h3"}],["path",{d:"M17 6h.01"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2"}],["circle",{cx:"12",cy:"13",r:"5"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5"}]],Watch:[["path",{d:"M12 10v2.2l1.6 1"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"}],["circle",{cx:"12",cy:"12",r:"6"}]],Waves:[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]],WavesArrowDown:[["path",{d:"M12 10L12 2"}],["path",{d:"M16 6L12 10L8 6"}],["path",{d:"M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15"}],["path",{d:"M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21"}]],WavesArrowUp:[["path",{d:"M12 2v8"}],["path",{d:"M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"m8 6 4-4 4 4"}]],WavesLadder:[["path",{d:"M19 5a2 2 0 0 0-2 2v11"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M7 13h10"}],["path",{d:"M7 9h10"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11"}]],Waypoints:[["path",{d:"m10.586 5.414-5.172 5.172"}],["path",{d:"m18.586 13.414-5.172 5.172"}],["path",{d:"M6 12h12"}],["circle",{cx:"12",cy:"20",r:"2"}],["circle",{cx:"12",cy:"4",r:"2"}],["circle",{cx:"20",cy:"12",r:"2"}],["circle",{cx:"4",cy:"12",r:"2"}]],Webcam:[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]],Webhook:[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"}]],WebhookOff:[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414"}],["path",{d:"m12 6 .6 1"}],["path",{d:"m2 2 20 20"}]],Weight:[["circle",{cx:"12",cy:"5",r:"3"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z"}]],WeightTilde:[["path",{d:"M6.5 8a2 2 0 0 0-1.906 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8z"}],["path",{d:"M7.999 15a2.5 2.5 0 0 1 4 0 2.5 2.5 0 0 0 4 0"}],["circle",{cx:"12",cy:"5",r:"3"}]],Wheat:[["path",{d:"M2 22 16 8"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}]],WheatOff:[["path",{d:"m2 22 10-10"}],["path",{d:"m16 8-1.17 1.17"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],WholeWord:[["circle",{cx:"7",cy:"12",r:"3"}],["path",{d:"M10 9v6"}],["circle",{cx:"17",cy:"12",r:"3"}],["path",{d:"M14 7v8"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]],Wifi:[["path",{d:"M12 20h.01"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]],WifiCog:[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31"}],["circle",{cx:"18",cy:"18",r:"3"}]],WifiHigh:[["path",{d:"M12 20h.01"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]],WifiLow:[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]],WifiOff:[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764"}],["path",{d:"m2 2 20 20"}]],WifiPen:[["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406"}]],WifiSync:[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5"}],["path",{d:"M11.965 14.105h4"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.965 22.105v-4"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032"}],["path",{d:"M8.5 16.429h.01"}]],WifiZero:[["path",{d:"M12 20h.01"}]],Wind:[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2"}]],WindArrowDown:[["path",{d:"M10 2v8"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"m6 6 4 4 4-4"}]],Wine:[["path",{d:"M8 22h8"}],["path",{d:"M7 10h10"}],["path",{d:"M12 15v7"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"}]],WineOff:[["path",{d:"M8 22h8"}],["path",{d:"M7 10h3m7 0h-1.343"}],["path",{d:"M12 15v7"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]],Workflow:[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2"}]],Worm:[["path",{d:"m19 12-1.5 3"}],["path",{d:"M19.63 18.81 22 20"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z"}]],WrapText:OT,Wrench:[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}]],X:[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]],XCircle:BI,XLineTop:[["path",{d:"M18 4H6"}],["path",{d:"M18 8 6 20"}],["path",{d:"m6 8 12 12"}]],XOctagon:eA,XSquare:IT,Zap:[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"}]],ZapOff:[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643"}],["path",{d:"m2 2 20 20"}]],ZodiacAquarius:[["path",{d:"m2 10 2.456-3.684a.7.7 0 0 1 1.106-.013l2.39 3.413a.7.7 0 0 0 1.096-.001l2.402-3.432a.7.7 0 0 1 1.098 0l2.402 3.432a.7.7 0 0 0 1.098 0l2.389-3.413a.7.7 0 0 1 1.106.013L22 10"}],["path",{d:"m2 18.002 2.456-3.684a.7.7 0 0 1 1.106-.013l2.39 3.413a.7.7 0 0 0 1.097 0l2.402-3.432a.7.7 0 0 1 1.098 0l2.402 3.432a.7.7 0 0 0 1.098 0l2.389-3.413a.7.7 0 0 1 1.106.013L22 18.002"}]],ZodiacAries:[["path",{d:"M12 7.5a4.5 4.5 0 1 1 5 4.5"}],["path",{d:"M7 12a4.5 4.5 0 1 1 5-4.5V21"}]],ZodiacCancer:[["path",{d:"M21 14.5A9 6.5 0 0 1 5.5 19"}],["path",{d:"M3 9.5A9 6.5 0 0 1 18.5 5"}],["circle",{cx:"17.5",cy:"14.5",r:"3.5"}],["circle",{cx:"6.5",cy:"9.5",r:"3.5"}]],ZodiacCapricorn:[["path",{d:"M11 21a3 3 0 0 0 3-3V6.5a1 1 0 0 0-7 0"}],["path",{d:"M7 19V6a3 3 0 0 0-3-3h0"}],["circle",{cx:"17",cy:"17",r:"3"}]],ZodiacGemini:[["path",{d:"M16 4.525v14.948"}],["path",{d:"M20 3A17 17 0 0 1 4 3"}],["path",{d:"M4 21a17 17 0 0 1 16 0"}],["path",{d:"M8 4.525v14.948"}]],ZodiacLeo:[["path",{d:"M10 16c0-4-3-4.5-3-8a5 5 0 0 1 10 0c0 3.466-3 6.196-3 10a3 3 0 0 0 6 0"}],["circle",{cx:"7",cy:"16",r:"3"}]],ZodiacLibra:[["path",{d:"M3 16h6.857c.162-.012.19-.323.038-.38a6 6 0 1 1 4.212 0c-.153.057-.125.368.038.38H21"}],["path",{d:"M3 20h18"}]],ZodiacOphiuchus:[["path",{d:"M3 10A6.06 6.06 0 0 1 12 10 A6.06 6.06 0 0 0 21 10"}],["path",{d:"M6 3v12a6 6 0 0 0 12 0V3"}]],ZodiacPisces:[["path",{d:"M19 21a15 15 0 0 1 0-18"}],["path",{d:"M20 12H4"}],["path",{d:"M5 3a15 15 0 0 1 0 18"}]],ZodiacSagittarius:[["path",{d:"M15 3h6v6"}],["path",{d:"M21 3 3 21"}],["path",{d:"m9 9 6 6"}]],ZodiacScorpio:[["path",{d:"M10 19V5.5a1 1 0 0 1 5 0V17a2 2 0 0 0 2 2h5l-3-3"}],["path",{d:"m22 19-3 3"}],["path",{d:"M5 19V5.5a1 1 0 0 1 5 0"}],["path",{d:"M5 5.5A2.5 2.5 0 0 0 2.5 3"}]],ZodiacTaurus:[["circle",{cx:"12",cy:"15",r:"6"}],["path",{d:"M18 3A6 6 0 0 1 6 3"}]],ZodiacVirgo:[["path",{d:"M11 5.5a1 1 0 0 1 5 0V16a5 5 0 0 0 5 5"}],["path",{d:"M16 11.5a1 1 0 0 1 5 0V16a5 5 0 0 1-5 5"}],["path",{d:"M6 19V6a3 3 0 0 0-3-3h0"}],["path",{d:"M6 5.5a1 1 0 0 1 5 0V19"}]],ZoomIn:[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]],ZoomOut:[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]]},Symbol.toStringTag,{value:"Module"})),YT=({icons:e={},nameAttr:t="data-lucide",attrs:a={},root:r=document,inTemplates:n}={})=>{if(!Object.values(e).length)throw new Error("Please provide an icons object.\nIf you want to use all the icons you can import it like:\n `import { createIcons, icons } from 'lucide';\nlucide.createIcons({icons});`");if(void 0===r)throw new Error("`createIcons()` only works in a browser environment.");if(Array.from(r.querySelectorAll(`[${t}]`)).forEach(r=>LS(r,{nameAttr:t,icons:e,attrs:a})),n){Array.from(r.querySelectorAll("template")).forEach(r=>YT({icons:e,nameAttr:t,attrs:a,root:r.content,inTemplates:n}))}if("data-lucide"===t){const t=r.querySelectorAll("[icon-name]");t.length>0&&(console.warn("[Lucide] Some icons were found with the now deprecated icon-name attribute. These will still be replaced for backwards compatibility, but will no longer be supported in v1.0 and you should switch to data-lucide"),Array.from(t).forEach(t=>LS(t,{nameAttr:"icon-name",icons:e,attrs:a})))}};
19
+ /**
20
+ * @license lucide v1.11.0 - ISC
21
+ *
22
+ * This source code is licensed under the ISC license.
23
+ * See the LICENSE file in the root directory of this source tree.
24
+ */let JT=null;const QT={DEV:!0,MODE:"lib"};let $T=!1,eP=null,tP=null,aP=null,rP=[];function nP(){"undefined"!=typeof window&&(!function(){var e;const t=QT??{},a=(null==(e=null==globalThis?void 0:globalThis.process)?void 0:e.env)??{};return!0===t.DEV||"test"===t.MODE||"test"===a.NODE_ENV||"1"===t.VITE_OASIS_CANVAS_DEBUG}()?$T&&(delete window.__oasisCanvasDebug,$T=!1):$T||(window.__oasisCanvasDebug={getLastHit:()=>eP?{...eP}:null,getLayoutSnapshot:()=>tP?{...tP,surfaceRect:{...tP.surfaceRect},pages:tP.pages.map(e=>({...e})),paragraphs:tP.paragraphs.map(e=>({...e,lines:e.lines.map(e=>({...e,slots:e.slots.map(e=>({...e}))})),tableCell:e.tableCell?{...e.tableCell}:void 0})),inlineImages:tP.inlineImages.map(e=>({...e})),unsupportedRegions:tP.unsupportedRegions.map(e=>({...e}))}:null,getSelection:()=>aP?{anchor:{...aP.anchor},focus:{...aP.focus},activeZone:aP.activeZone,activeSectionIndex:aP.activeSectionIndex}:null,getMissEvents:()=>rP.map(e=>({...e})),clearMissEvents:()=>{rP=[]}},$T=!0))}function oP(e){$T&&e&&(eP={timestamp:Date.now(),zone:e.zone,paragraphId:e.paragraphId,paragraphOffset:e.paragraphOffset,source:e.source,missReason:e.missReason,resolvedFromParagraph:e.resolvedFromParagraph})}const iP=["Aptos, sans-serif","Aptos Display, sans-serif","Arial","Arial Black","Bahnschrift, sans-serif","Book Antiqua, serif","Calibri, sans-serif","Calibri Light, sans-serif","Cambria, serif","Candara, sans-serif","Century Gothic, sans-serif","Comic Sans MS","Consolas, monospace","Constantia, serif","Corbel, sans-serif","Courier New","Franklin Gothic Medium, sans-serif","Garamond, serif","Georgia","Gill Sans, sans-serif","Helvetica, sans-serif","Impact","Inter","Lucida Console, monospace","Lucida Sans Unicode, sans-serif","Palatino Linotype, serif","Segoe UI, sans-serif","Tahoma, sans-serif","Times New Roman","Trebuchet MS, sans-serif","Verdana, sans-serif","Wingdings"];function lP(e,t,a){const r=null==a?void 0:a.trim();if(!r)return;const n=r.toLowerCase();t.has(n)||(t.add(n),e.push(r))}function sP(e){const[t,a]=M([]);return{computeFontFamilyOptions:()=>function(e,t,a=[]){var r;const n=new Set,o=[],i=[];for(const l of Object.values((null==e?void 0:e.styles)??{}))lP(o,n,null==(r=l.textStyle)?void 0:r.fontFamily);lP(o,n,t.fontFamily);for(const l of a)lP(i,n,l);for(const l of iP)lP(i,n,l);return[...o.sort((e,t)=>e.localeCompare(t)),...i.sort((e,t)=>e.localeCompare(t))]}(e.state().document,e.toolbarStyleState(),t()),computeFontSizeOptions:()=>function(e,t){var a;const r=new Set([8,9,10,11,12,14,15,16,18,20,24,28,32,36,48,72]);for(const o of Object.values((null==e?void 0:e.styles)??{})){const e=null==(a=o.textStyle)?void 0:a.fontSize;"number"==typeof e&&Number.isFinite(e)&&r.add(e)}const n=Number(t.fontSize);return Number.isFinite(n)&&n>0&&r.add(n),Array.from(r).sort((e,t)=>e-t)}(e.state().document,e.toolbarStyleState()),loadLocalFontFamilyOptions:async()=>{const e=globalThis.queryLocalFonts;if(e&&!(t().length>0))try{const t=await e(),r=Array.from(new Set(t.map(e=>{var t,a;return(null==(t=e.family)?void 0:t.trim())||(null==(a=e.fullName)?void 0:a.trim())||""}).filter(Boolean))).sort((e,t)=>e.localeCompare(t));a(r)}catch{}}}}function dP(e,t,a,r,n,o){const i=e+a,l=t+r;return 1e3*(o<t?t-o:o>l?o-l:0)+(n<e?e-n:n>i?n-i:0)}function cP(e,t,a){if(0===e.slots.length)return{offset:e.startOffset,score:Number.POSITIVE_INFINITY};let r=e.slots[0].offset,n=Number.POSITIVE_INFINITY,o=e.slots[0].left,i=e.slots[0].top,l=e.slots[0].height;for(const s of e.slots){const e=1e3*(a<s.top?s.top-a:a>s.top+s.height?a-(s.top+s.height):0)+Math.abs(t-s.left);e<n&&(n=e,r=s.offset,o=s.left,i=s.top,l=s.height)}return{offset:r,score:n,slotLeft:o,slotTop:i,slotHeight:l}}function hP(e,t,a){let r=e.startOffset,n=Number.POSITIVE_INFINITY;for(const o of e.lines){const{offset:e,score:i}=cP(o,t,a);i<n&&(n=i,r=e)}return Math.max(e.startOffset,Math.min(r,e.endOffset))}function pP(e,t,a){return e>=a.left&&e<=a.left+a.width&&t>=a.top&&t<=a.top+a.height}function uP(e){var t,a;const{snapshot:r,state:n,clientX:o,clientY:i}=e,l=function(e,t,a){if(0===e.length)return null;let r=e[0],n=Number.POSITIVE_INFINITY;for(const o of e){const e=dP(o.left,o.top,o.width,o.height,t,a);e<n&&(n=e,r=o)}return r}(r.pages,o,i);if(!l)return null;const s=function(e,t){const a=t-e.top;return a<e.bodyTop?"header":void 0!==e.footnoteSeparatorTop&&a>=e.footnoteSeparatorTop&&a<(e.footerTop??e.height)?"footnote":a>=e.bodyBottom?"footer":"main"}(l,i),d=function(e,t,a,r,n){for(const o of e.inlineImages)if(o.pageIndex===t&&o.zone===a&&pP(r,n,o))return o;return null}(r,l.index,s,o,i);if(d){const e=r.paragraphsById.get(d.paragraphId)??[],a=e.find(e=>e.pageIndex===l.index&&e.zone===s&&d.startOffset>=e.startOffset&&d.startOffset<=e.endOffset)??e[0];if(a){const e=Math.max(a.startOffset,Math.min(d.startOffset,a.endOffset)),r=Fe(a.paragraph,e);return{zone:s,footnoteId:a.footnoteId,paragraphId:d.paragraphId,paragraphOffset:e,position:r,source:"canvas-layout",resolvedFromParagraph:!0,tableCellAnchorPosition:null==(t=a.tableCell)?void 0:t.anchorPosition,caretViewport:{left:d.left,top:d.top,height:d.height},image:{paragraphId:d.paragraphId,paragraphOffset:e,startOffset:d.startOffset,endOffset:d.endOffset,left:d.left,top:d.top,width:d.width,height:d.height}}}}const c=function(e,t,a){if(0===e.length)return null;let r=null;for(const i of e)for(const e of i.lines){const n=e.top-2,o=e.top+e.height+2;if(a<n||a>o)continue;const{offset:l,score:s,slotLeft:d,slotTop:c,slotHeight:h}=cP(e,t,a);(!r||s<r.score)&&(r={paragraph:i,offset:l,score:s,caretViewport:void 0!==d&&void 0!==c&&void 0!==h?{left:d,top:c,height:h}:void 0})}if(r)return{paragraph:r.paragraph,offset:r.offset,caretViewport:r.caretViewport};let n=null,o=Number.POSITIVE_INFINITY;for(const i of e){const e=dP(i.left,i.top,Math.max(1,i.width),Math.max(1,i.height),t,a);e<o&&(o=e,n=i)}return n?{paragraph:n,offset:hP(n,t,a),caretViewport:{left:n.left,top:n.top,height:Math.max(16,Math.min(32,n.height||24))}}:null}(r.paragraphs.filter(e=>e.pageIndex===l.index&&e.zone===s),o,i);if(!c){const e=n.selection.focus.paragraphId,t=n.selection.focus.offset,a=function(e,t,a,r,n){const o=e.unsupportedRegions.find(e=>e.pageIndex===t&&e.zone===a&&r>=e.left&&r<=e.left+e.width&&n>=e.top&&n<=e.top+e.height);return(null==o?void 0:o.reason)??null}(r,l.index,s,o,i);return{zone:s,paragraphId:e,paragraphOffset:t,position:{...n.selection.focus},source:"canvas-layout",resolvedFromParagraph:!1,missReason:a??"zone-without-paragraph"}}const h=c.paragraph,p=Math.max(0,Math.min(c.offset,h.textLength)),u=Fe(h.paragraph,p);return{zone:s,footnoteId:h.footnoteId,paragraphId:h.paragraphId,paragraphOffset:p,position:u,source:"canvas-layout",resolvedFromParagraph:!0,tableCellAnchorPosition:null==(a=h.tableCell)?void 0:a.anchorPosition,caretViewport:c.caretViewport}}function fP(e){let t=null;return{resolveSurfaceHitAtPoint:(a,r,n={})=>{const o=e.surfaceRef(),i=e.viewportRef();if(!o)return null;const l=e.measuredBlockHeights(),s=e.measuredParagraphLayouts(),d=e.layoutMode(),c=e.state(),h=(null==i?void 0:i.scrollTop)??0,p=(null==i?void 0:i.scrollLeft)??0,u=window.innerWidth,f=window.innerHeight,g=t&&t.documentRef===c.document&&t.measuredBlockHeightsRef===l&&t.measuredParagraphLayoutsRef===s&&t.layoutModeValue===d&&t.surfaceRef===o&&t.viewportScrollTop===h&&t.viewportScrollLeft===p&&t.surfaceClientWidth===o.clientWidth&&t.surfaceClientHeight===o.clientHeight&&t.windowWidth===u&&t.windowHeight===f,m=g?t.snapshot:Pi({surface:o,state:c,measuredBlockHeights:l,measuredParagraphLayouts:s,layoutMode:d});if(g||(t={snapshot:m,documentRef:c.document,measuredBlockHeightsRef:l,measuredParagraphLayoutsRef:s,layoutModeValue:d,surfaceRef:o,viewportScrollTop:h,viewportScrollLeft:p,surfaceClientWidth:o.clientWidth,surfaceClientHeight:o.clientHeight,windowWidth:u,windowHeight:f}),function(e){$T&&(tP=e?function(e){return{surfaceRect:{left:e.surfaceRect.left,top:e.surfaceRect.top,width:e.surfaceRect.width,height:e.surfaceRect.height},pages:(t=e.pages,t.map(e=>({index:e.index,left:e.left,top:e.top,width:e.width,height:e.height,bodyTop:e.bodyTop,bodyBottom:e.bodyBottom}))),paragraphs:e.paragraphs.map(e=>{return{paragraphId:e.paragraphId,paragraphIndex:e.paragraphIndex,zone:e.zone,pageIndex:e.pageIndex,startOffset:e.startOffset,endOffset:e.endOffset,textLength:e.textLength,left:e.left,top:e.top,width:e.width,height:e.height,lines:(t=e.lines,t.map(e=>{return{startOffset:e.startOffset,endOffset:e.endOffset,top:e.top,height:e.height,slots:(t=e.slots,t.map(e=>({offset:e.offset,left:e.left,top:e.top,height:e.height})))};var t})),tableCell:e.tableCell?{tableId:e.tableCell.tableId,rowIndex:e.tableCell.rowIndex,cellIndex:e.tableCell.cellIndex,left:e.tableCell.left,top:e.tableCell.top,width:e.tableCell.width,height:e.tableCell.height}:void 0};var t}),inlineImages:e.inlineImages.map(e=>({paragraphId:e.paragraphId,paragraphIndex:e.paragraphIndex,zone:e.zone,pageIndex:e.pageIndex,startOffset:e.startOffset,endOffset:e.endOffset,left:e.left,top:e.top,width:e.width,height:e.height})),unsupportedRegions:e.unsupportedRegions.map(e=>({...e}))};var t}(e):null)}(m),!m)return oP(null),null;const v=uP({snapshot:m,state:c,clientX:a,clientY:r});return oP(v),v}}}function gP(e){if("undefined"==typeof document||0===e.trim().length)return[];const t=document.createElement("template");t.innerHTML=e;const a=[],r=Array.from(t.content.childNodes),n=(e,t,r)=>{const n=t.length>0?t:[Rt("")];a.push({runs:n.map(e=>({text:e.text,styles:ea(e.styles),image:e.image?{...e.image}:void 0})),style:e?Ha(e):void 0,list:r})},o=(e,t)=>{if(e.nodeType===Node.TEXT_NODE){const a=e.textContent??"";return a.length>0?[Rt(a,t)]:[]}if(e.nodeType!==Node.ELEMENT_NODE)return[];const a=e;if("BR"===a.tagName)return[Rt("\n",t)];const r=function(e){var t,a,r;if("IMG"!==e.tagName)return;const n=e,o=(null==(t=n.getAttribute("src"))?void 0:t.trim())??"";if(!o)return;const i=(null==(a=n.getAttribute("width"))?void 0:a.trim())??"",l=(null==(r=n.getAttribute("height"))?void 0:r.trim())??"",s=n.style.width.trim(),d=n.style.height.trim(),c=s.endsWith("px")?Number.parseFloat(s):Number.NaN,h=d.endsWith("px")?Number.parseFloat(d):Number.NaN,p=Number.parseFloat(i),u=Number.parseFloat(l),f=Number.isFinite(c)?c:Number.isFinite(p)?p:100,g=Number.isFinite(h)?h:Number.isFinite(u)?u:100,m=n.getAttribute("alt"),v={src:o,width:Math.max(1,Math.round(f)),height:Math.max(1,Math.round(g))};return null!==m&&(v.alt=m),v}(a);if(r)return[Rt("",t,r)];const n={...t??{},...Ra(a)??{}},i=[];for(const l of Array.from(a.childNodes))i.push(...o(l,n));return i},i=(e,t)=>{for(const a of Array.from(e.children))"LI"===a.tagName&&n(a,o(a,void 0),{kind:t,level:0})};for(const l of r){if(l.nodeType===Node.TEXT_NODE){const e=l.textContent??"";e.trim().length>0&&n(null,[Rt(e)]);continue}if(l.nodeType!==Node.ELEMENT_NODE)continue;const e=l;if("UL"===e.tagName){i(e,"bullet");continue}if("OL"===e.tagName){i(e,"ordered");continue}if("P"===e.tagName||"DIV"===e.tagName||"LI"===e.tagName||/^H[1-6]$/.test(e.tagName)){n(e,o(e,void 0),"LI"===e.tagName?{kind:"bullet",level:0}:void 0);continue}const t=o(e,void 0);t.length>0&&n(null,t)}return a}function mP(e){return null!=e&&""!==e?Number(e):null}function vP({gate:e,style:t,history:a,formatting:r,link:n,command:o,valueCommand:i}){const l=t.state;return{selectAll:o("selectAll",r.selectAll),insertFootnote:o("insertFootnote",r.insertFootnote),pastePlainText:o("pastePlainText",r.pastePlainText),bold:o("bold",r.bold,()=>({isActive:Boolean(l().bold)})),italic:o("italic",r.italic,()=>({isActive:Boolean(l().italic)})),underline:o("underline",r.underline,()=>({isActive:Boolean(l().underline)})),strike:o("strike",r.strike,()=>({isActive:Boolean(l().strike)})),superscript:o("superscript",r.superscript,()=>({isActive:Boolean(l().superscript)})),subscript:o("subscript",r.subscript,()=>({isActive:Boolean(l().subscript)})),link:o("link",()=>(n.prompt(),!0),()=>({isEnabled:e.isCommandEnabled("link")&&n.canPrompt(),isActive:Boolean(l().link)})),alignLeft:o("alignLeft",r.alignLeft,()=>({isActive:"left"===l().align})),alignCenter:o("alignCenter",r.alignCenter,()=>({isActive:"center"===l().align})),alignRight:o("alignRight",r.alignRight,()=>({isActive:"right"===l().align})),alignJustify:o("alignJustify",r.alignJustify,()=>({isActive:"justify"===l().align})),orderedList:o("orderedList",r.orderedList,()=>({isActive:"ordered"===l().listKind})),bulletList:o("bulletList",r.bulletList,()=>({isActive:"bullet"===l().listKind})),find:o("find",r.find),replace:o("replace",r.replace),toggleTrackChanges:o("toggleTrackChanges",r.toggleTrackChanges),acceptRevisions:o("acceptRevisions",r.acceptRevisions),rejectRevisions:o("rejectRevisions",r.rejectRevisions),toggleShowMargins:o("toggleShowMargins",r.toggleShowMargins),toggleShowParagraphMarks:o("toggleShowParagraphMarks",r.toggleShowParagraphMarks),undo:o("undo",a.undo,()=>({isEnabled:e.isCommandEnabled("undo")&&a.canUndo()})),redo:o("redo",a.redo,()=>({isEnabled:e.isCommandEnabled("redo")&&a.canRedo()})),pageBreak:o("pageBreak",r.pageBreak),lineBreak:o("lineBreak",r.lineBreak),splitBlock:o("splitBlock",r.splitBlock),setFontFamily:i("setFontFamily",e=>r.setFontFamily(e||null),()=>l().fontFamily),setFontSize:i("setFontSize",e=>r.setFontSize(null!=e&&""!==e?Number(e):null),()=>l().fontSize),setColor:i("setColor",e=>r.setColor(e??null),()=>l().color||null),setHighlight:i("setHighlight",e=>r.setHighlight(e??null),()=>l().highlight||null),setStyleId:i("setStyleId",e=>r.setStyleId(String(e)),()=>l().styleId||"normal"),setUnderlineStyle:i("setUnderlineStyle",e=>(r.setUnderlineStyle(e||null),!0),()=>l().underlineStyle)}}function yP({gate:e,style:t,document:a,link:r,image:n,browser:o,actionCommand:i}){const l=t.state;return{documentStyles:i("documentStyles",()=>{},()=>({isEnabled:!0,value:a.documentStyles()})),print:i("print",()=>o.print(),()=>({isEnabled:!0})),copy:i("copy",()=>o.copy(),()=>({isEnabled:!0})),exportDocx:i("exportDocx",()=>a.exportDocx()),exportPdf:i("exportPdf",()=>a.exportPdf()),importDocx:i("importDocx",()=>a.importDocx()),insertImage:i("insertImage",()=>a.insertImage()),unlink:i("unlink",()=>r.remove(),()=>({isEnabled:e.isCommandEnabled("unlink")&&Boolean(l().link),isActive:Boolean(l().link)})),editImageAlt:i("editImageAlt",()=>n.promptAlt(),()=>({isEnabled:n.isSelected(),isActive:n.isSelected()}))}}function bP({style:e,paragraph:t,section:a,valueCommand:r,actionCommand:n}){const o=e.state;return{outdent:n("outdent",()=>t.outdent()),indent:n("indent",()=>t.indent()),togglePageBreakBefore:n("togglePageBreakBefore",()=>t.togglePageBreakBefore(),()=>({isActive:Boolean(o().pageBreakBefore)})),toggleKeepWithNext:n("toggleKeepWithNext",()=>t.toggleKeepWithNext(),()=>({isActive:Boolean(o().keepWithNext)})),setSpacingAfter:r("setSpacingAfter",e=>(t.setSpacingAfter(mP(e)),!0),()=>o().spacingAfter),setSpacingBefore:r("setSpacingBefore",e=>(t.setSpacingBefore(mP(e)),!0),()=>o().spacingBefore),setIndentLeft:r("setIndentLeft",e=>(t.setIndentLeft(mP(e)),!0),()=>o().indentLeft),setIndentFirstLine:r("setIndentFirstLine",e=>(t.setIndentFirstLine(mP(e)),!0),()=>o().indentFirstLine),setIndentHanging:r("setIndentHanging",e=>(t.setIndentHanging(mP(e)),!0),()=>o().indentHanging),setParagraphShading:r("setParagraphShading",e=>(t.setShading(e??null),!0),()=>o().shading||"#ffffff"),applyParagraphBorders:n("applyParagraphBorders",()=>t.applyBorders()),setLineHeight:r("setLineHeight",e=>(t.setLineHeight(mP(e)),!0),()=>o().lineHeight),setListFormat:n("setListFormat",e=>t.setListFormat(String(e))),setListStartAt:n("setListStartAt",e=>t.setListStartAt(mP(e))),toggleOrientation:n("toggleOrientation",()=>a.toggleOrientation(),()=>({isActive:a.isLandscape()})),sectionBreakNextPage:n("sectionBreakNextPage",()=>a.breakNextPage()),sectionBreakContinuous:n("sectionBreakContinuous",()=>a.breakContinuous())}}function MP({gate:e,table:t,actionCommand:a}){return{tableContext:a("tableContext",()=>{},()=>({isEnabled:t.insideTable(),isActive:t.insideTable(),value:t.selectionLabel()})),tableMerge:a("tableMerge",()=>t.merge(),()=>({isEnabled:e.isCommandEnabled("tableMerge")&&t.canMerge()})),tableSplit:a("tableSplit",()=>t.split(),()=>({isEnabled:e.isCommandEnabled("tableSplit")&&t.canSplit()})),tableInsertColumnBefore:a("tableInsertColumnBefore",()=>t.insertColumnBefore(),()=>({isEnabled:e.isCommandEnabled("tableInsertColumnBefore")&&t.canEditColumn()})),tableInsertColumnAfter:a("tableInsertColumnAfter",()=>t.insertColumnAfter(),()=>({isEnabled:e.isCommandEnabled("tableInsertColumnAfter")&&t.canEditColumn()})),tableDeleteColumn:a("tableDeleteColumn",()=>t.deleteColumn(),()=>({isEnabled:e.isCommandEnabled("tableDeleteColumn")&&t.canEditColumn()})),tableInsertRowBefore:a("tableInsertRowBefore",()=>t.insertRowBefore(),()=>({isEnabled:e.isCommandEnabled("tableInsertRowBefore")&&t.canEditRow()})),tableInsertRowAfter:a("tableInsertRowAfter",()=>t.insertRowAfter(),()=>({isEnabled:e.isCommandEnabled("tableInsertRowAfter")&&t.canEditRow()})),tableDeleteRow:a("tableDeleteRow",()=>t.deleteRow(),()=>({isEnabled:e.isCommandEnabled("tableDeleteRow")&&t.canEditRow()})),tableCellShading:a("tableCellShading",e=>t.cellShading(e??null)),tableCellBorders:a("tableCellBorders",()=>t.cellBorders()),tableCellNoBorders:a("tableCellNoBorders",()=>t.cellNoBorders()),tableWidth100:a("tableWidth100",()=>t.width100()),tableAlignLeft:a("tableAlignLeft",()=>t.alignLeft()),tableAlignCenter:a("tableAlignCenter",()=>t.alignCenter()),tableAlignRight:a("tableAlignRight",()=>t.alignRight()),tableSetCellWidth:a("tableSetCellWidth",e=>t.setCellWidth(String(e))),insertTable:a("insertTable",e=>{const{rows:a,cols:r}=e??{};a&&r&&t.insert(a,r)})}}function wP(e){return function(e){const t=(a=e.gate.isCommandEnabled,(e,t,r)=>({execute:t,refresh:()=>({isEnabled:a(e),...null==r?void 0:r()})}));var a;const r=function(e){return(t,a,r)=>({execute:a,refresh:()=>({isEnabled:e(t),value:r()})})}(e.gate.isCommandEnabled),n=function(e){return(t,a,r)=>({execute:e=>(a(e),!0),refresh:()=>({isEnabled:e(t),...null==r?void 0:r()})})}(e.gate.isCommandEnabled);return{name:"Essentials",commands:{...vP({gate:e.gate,style:e.style,history:e.history,formatting:e.formatting,link:e.link,command:t,valueCommand:r}),...yP({gate:e.gate,style:e.style,document:e.document,link:e.link,image:e.image,browser:e.browser,actionCommand:n}),...bP({style:e.style,paragraph:e.paragraph,section:e.section,valueCommand:r,actionCommand:n}),...MP({gate:e.gate,table:e.table,actionCommand:n})}}}({gate:{isCommandEnabled:t=>!e.isReadOnly()&&("insertFootnote"!==t||e.commandsController.canInsertFootnoteCommand())},style:{state:()=>e.styleController.toolbarStyleState()},history:{canUndo:()=>e.undoStack().length>0,canRedo:()=>e.redoStack().length>0,undo:()=>(e.historyActions.performUndo(),!0),redo:()=>(e.historyActions.performRedo(),!0)},formatting:{selectAll:()=>{const t=dt(e.state().document);if(0===t.length)return!1;const a=t[0],r=t[t.length-1];return e.applyState({...e.state(),selection:{anchor:Fe(a,0),focus:Fe(r,Ne(r).length)}}),e.focusInput(),!0},insertFootnote:()=>(e.commandsController.applyInsertFootnoteCommand(),!0),pastePlainText:()=>(e.forcePlainTextPaste.set(!0),e.focusInput(),!0),bold:()=>(e.keyboardCommandsController.applyBooleanStyleCommand("bold"),!0),italic:()=>(e.keyboardCommandsController.applyBooleanStyleCommand("italic"),!0),underline:()=>(e.keyboardCommandsController.applyBooleanStyleCommand("underline"),!0),strike:()=>(e.keyboardCommandsController.applyBooleanStyleCommand("strike"),!0),superscript:()=>(e.keyboardCommandsController.applyBooleanStyleCommand("superscript"),!0),subscript:()=>(e.keyboardCommandsController.applyBooleanStyleCommand("subscript"),!0),alignLeft:()=>(e.commandsController.applyParagraphStyleCommand("align","left"),!0),alignCenter:()=>(e.commandsController.applyParagraphStyleCommand("align","center"),!0),alignRight:()=>(e.commandsController.applyParagraphStyleCommand("align","right"),!0),alignJustify:()=>(e.commandsController.applyParagraphStyleCommand("align","justify"),!0),orderedList:()=>(e.commandsController.applyParagraphListCommand("ordered"),!0),bulletList:()=>(e.commandsController.applyParagraphListCommand("bullet"),!0),find:()=>(e.findReplace.setIsOpen(!0),!0),replace:()=>(e.findReplace.setIsOpen(!0),!0),toggleTrackChanges:()=>(e.commandsController.applyToggleTrackChangesCommand(),!0),acceptRevisions:()=>(e.commandsController.applyAcceptRevisionsCommand(),!0),rejectRevisions:()=>(e.commandsController.applyRejectRevisionsCommand(),!0),toggleShowMargins:()=>(e.commandsController.applyToggleShowMarginsCommand(),!0),toggleShowParagraphMarks:()=>(e.commandsController.applyToggleShowParagraphMarksCommand(),!0),pageBreak:()=>(e.applyTransactionalState(t=>e.tableOps.applyTableAwareParagraphEdit(t,e=>$a(e))),e.focusInput(),!0),lineBreak:()=>(e.applyTransactionalState(t=>e.tableOps.applyTableAwareParagraphEdit(t,e=>Wa(e,"\n"))),e.focusInput(),!0),splitBlock:()=>(e.commandsController.handleListEnter()||(e.applyTransactionalState(t=>e.tableOps.applyTableAwareParagraphEdit(t,e=>Qa(e))),e.focusInput()),!0),setFontFamily:t=>(e.styleController.applyToolbarValueStyleCommand("fontFamily",t),!0),setFontSize:t=>(e.styleController.applyToolbarValueStyleCommand("fontSize",t),!0),setColor:t=>(e.styleController.applyToolbarValueStyleCommand("color",t),!0),setHighlight:t=>(e.styleController.applyToolbarValueStyleCommand("highlight",t),!0),setStyleId:t=>(e.commandsController.handleStyleChange(t),!0),setUnderlineStyle:t=>e.styleController.applyToolbarValueStyleCommand("underlineStyle",t)},document:{documentStyles:()=>{var t;return Object.values((null==(t=e.state().document)?void 0:t.styles)??{}).map(e=>{var t,a,r;return{id:e.id,name:e.name,fontFamily:(null==(a=null==(t=e.textStyle)?void 0:t.fontFamily)?void 0:a.trim())||void 0,fontSize:"number"==typeof(null==(r=e.textStyle)?void 0:r.fontSize)?e.textStyle.fontSize:void 0}})},exportDocx:()=>{e.docIO.handleExportDocx()},exportPdf:()=>{e.docIO.handleExportPdf()},importDocx:()=>{var t;return null==(t=e.importInputRef())?void 0:t.click()},insertImage:()=>{var t;return null==(t=e.imageInputRef())?void 0:t.click()}},link:{prompt:()=>e.commandsController.promptForLink(),remove:()=>e.commandsController.removeLinkCommand(),canPrompt:()=>!Ct(e.state().selection)||Boolean(e.styleController.toolbarStyleState().link)},image:{promptAlt:()=>e.commandsController.promptForImageAlt(),isSelected:()=>Boolean(e.selectedImageRun())},browser:{print:()=>window.print(),copy:()=>{document.execCommand("copy")}},paragraph:{togglePageBreakBefore:()=>e.commandsController.toggleParagraphFlagCommand("pageBreakBefore"),toggleKeepWithNext:()=>e.commandsController.toggleParagraphFlagCommand("keepWithNext"),setSpacingAfter:t=>e.commandsController.applyParagraphStyleCommand("spacingAfter",t),setSpacingBefore:t=>e.commandsController.applyParagraphStyleCommand("spacingBefore",t),setIndentLeft:t=>e.commandsController.applyParagraphStyleCommand("indentLeft",t),setIndentFirstLine:t=>e.commandsController.applyParagraphStyleCommand("indentFirstLine",t),setIndentHanging:t=>e.commandsController.applyParagraphStyleCommand("indentHanging",t),setShading:t=>e.commandsController.applyParagraphStyleCommand("shading",t),applyBorders:()=>{const t={width:1,type:"solid",color:"#000000"};e.applyTransactionalState(e=>{let a=er(e,"borderTop",t);return a=er(a,"borderRight",t),a=er(a,"borderBottom",t),a=er(a,"borderLeft",t),a},{mergeKey:"paraBorders"}),e.focusInput()},setLineHeight:t=>e.commandsController.applyParagraphStyleCommand("lineHeight",t),setListFormat:t=>e.commandsController.handleListFormatChange(t),setListStartAt:t=>e.commandsController.handleListStartAtChange(t),outdent:()=>{e.commandsController.handleListTab("outdent")},indent:()=>{e.commandsController.handleListTab("indent")}},section:{isLandscape:()=>{var t,a;const r=ht(e.state()),n=(null==(t=e.state().document.sections)?void 0:t[r])??e.state().document;return"landscape"===(null==(a=null==n?void 0:n.pageSettings)?void 0:a.orientation)},toggleOrientation:()=>{var t,a;const r=ht(e.state()),n=(null==(t=e.state().document.sections)?void 0:t[r])??e.state().document;if(!n)return;const o=(null==(a=n.pageSettings)?void 0:a.orientation)??"portrait";e.commandsController.applyUpdateSectionSettingsCommand(r,{pageSettings:{...n.pageSettings,orientation:"portrait"===o?"landscape":"portrait"}})},breakNextPage:()=>e.commandsController.applyInsertSectionBreakCommand("nextPage"),breakContinuous:()=>e.commandsController.applyInsertSectionBreakCommand("continuous")},table:(()=>{const t=(t,a)=>{e.applyTransactionalState(t,{mergeKey:a}),e.focusInput()};return{insideTable:()=>Boolean(yt(e.state().document,e.state().selection.focus.paragraphId,ht(e.state()))),selectionLabel:()=>{if(St(e.state()).isCollapsed)return null;const t=ht(e.state()),a=yt(e.state().document,e.state().selection.anchor.paragraphId,t),r=yt(e.state().document,e.state().selection.focus.paragraphId,t);if(!a||!r||a.blockIndex!==r.blockIndex||a.rowIndex===r.rowIndex&&a.cellIndex===r.cellIndex)return null;const n=e.selectionBoxes().length;return 0===n?null:`Table selection: ${n} cell${1===n?"":"s"}`},canMerge:()=>e.tableOps.canMergeSelectedTable(e.state()),canSplit:()=>e.tableOps.canSplitSelectedTable(e.state()),canEditColumn:()=>e.tableOps.canEditSelectedTableColumn(e.state()),canEditRow:()=>e.tableOps.canEditSelectedTableRow(e.state()),merge:()=>t(t=>e.tableOps.mergeSelectedTable(t),"mergeTable"),split:()=>t(t=>e.tableOps.splitSelectedTable(t),"splitTable"),insertColumnBefore:()=>t(t=>e.tableOps.insertSelectedTableColumn(t,-1),"insertTableColumn"),insertColumnAfter:()=>t(t=>e.tableOps.insertSelectedTableColumn(t,1),"insertTableColumn"),deleteColumn:()=>t(t=>e.tableOps.deleteSelectedTableColumn(t),"deleteTableColumn"),insertRowBefore:()=>t(t=>e.tableOps.insertSelectedTableRow(t,-1),"insertTableRow"),insertRowAfter:()=>t(t=>e.tableOps.insertSelectedTableRow(t,1),"insertTableRow"),deleteRow:()=>t(t=>e.tableOps.deleteSelectedTableRow(t),"deleteTableRow"),cellShading:e=>t(t=>nr(t,"shading",e||null),"tableShading"),cellBorders:()=>t(e=>sr(e,{width:1,type:"solid",color:"#64748b"}),"tableBorders"),cellNoBorders:()=>t(e=>sr(e,{width:0,type:"none",color:"transparent"}),"tableBorders"),width100:()=>t(e=>or(e,"width","100%"),"tableWidth"),alignLeft:()=>t(e=>nr(e,"horizontalAlign","left"),"tableAlign"),alignCenter:()=>t(e=>nr(e,"horizontalAlign","center"),"tableAlign"),alignRight:()=>t(e=>nr(e,"horizontalAlign","right"),"tableAlign"),setCellWidth:e=>t(t=>function(e,t){return nr(e,"width",t)}(t,e),"tableCellWidth"),insert:(t,a)=>e.tableOps.insertTableCommand(t,a)}})()})}const xP=new class{constructor(){a(this,"items",[])}register(e){const t=this.items.findIndex(t=>t.id===e.id);t>=0?this.items[t]=e:this.items.push(e),this.items.sort((e,t)=>(e.order??Number.MAX_SAFE_INTEGER)-(t.order??Number.MAX_SAFE_INTEGER))}unregister(e){this.items=this.items.filter(t=>t.id!==e)}getItems(){return[...this.items]}},CP=[{value:"single",label:"Single",preview:{borderStyle:"solid"}},{value:"double",label:"Double",preview:{borderStyle:"double",borderBottomWidth:"3px"}},{value:"thick",label:"Thick",preview:{borderStyle:"solid",borderBottomWidth:"3px"}},{value:"dotted",label:"Dotted",preview:{borderStyle:"dotted"}},{value:"dottedHeavy",label:"Dotted (Heavy)",preview:{borderStyle:"dotted",borderBottomWidth:"3px"}},{value:"dash",label:"Dashed",preview:{borderStyle:"dashed"}},{value:"dashedHeavy",label:"Dashed (Heavy)",preview:{borderStyle:"dashed",borderBottomWidth:"3px"}},{value:"dashLong",label:"Long Dashes",preview:{borderStyle:"dashed"}},{value:"dashLongHeavy",label:"Long Dashes (Heavy)",preview:{borderStyle:"dashed",borderBottomWidth:"3px"}},{value:"dotDash",label:"Dot-Dash",preview:{borderStyle:"dashed"}},{value:"dashDotHeavy",label:"Dot-Dash (Heavy)",preview:{borderStyle:"dashed",borderBottomWidth:"3px"}},{value:"dotDotDash",label:"Dot-Dot-Dash",preview:{borderStyle:"dashed"}},{value:"dashDotDotHeavy",label:"Dot-Dot-Dash (Heavy)",preview:{borderStyle:"dashed",borderBottomWidth:"3px"}},{value:"wave",label:"Wave",preview:{borderStyle:"wavy",svg:'<svg width="100%" height="6" viewBox="0 0 60 6" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 3 Q 5 0 10 3 T 20 3 T 30 3 T 40 3 T 50 3 T 60 3" fill="none" stroke="currentColor" stroke-width="1"/></svg>'}},{value:"wavyHeavy",label:"Wave (Heavy)",preview:{borderStyle:"wavy",svg:'<svg width="100%" height="6" viewBox="0 0 60 6" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 3 Q 5 0 10 3 T 20 3 T 30 3 T 40 3 T 50 3 T 60 3" fill="none" stroke="currentColor" stroke-width="2"/></svg>'}},{value:"wavyDouble",label:"Wave (Double)",preview:{borderStyle:"wavy",svg:'<svg width="100%" height="9" viewBox="0 0 60 9" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2 Q 5 -1 10 2 T 20 2 T 30 2 T 40 2 T 50 2 T 60 2" fill="none" stroke="currentColor" stroke-width="1"/><path d="M0 7 Q 5 4 10 7 T 20 7 T 30 7 T 40 7 T 50 7 T 60 7" fill="none" stroke="currentColor" stroke-width="1"/></svg>'}}];var SP=ge("<button type=button class=oasis-editor-color-menu-action data-testid=editor-toolbar-underline-remove role=menuitem><span class=oasis-editor-color-menu-action-swatch><i data-lucide=slash></i></span><span>"),IP=ge("<div class=oasis-editor-underline-menu-list>"),kP=ge('<span class="oasis-editor-color-split-icon oasis-editor-underline-split-icon"><span class=oasis-editor-underline-split-glyph aria-hidden=true>U</span><span class=oasis-editor-underline-split-indicator>'),AP=ge('<span class="oasis-editor-underline-menu-stroke oasis-editor-underline-menu-stroke-svg">'),TP=ge("<button type=button class=oasis-editor-underline-menu-item role=menuitemradio><span class=oasis-editor-underline-menu-preview></span><span class=oasis-editor-underline-menu-label>"),PP=ge("<span class=oasis-editor-underline-menu-stroke>");const EP=`Underline (${/Mac/i.test(navigator.userAgent)?"⌘":"Ctrl"}+U)`,LP="editor-toolbar-underline";function OP(e){const t=e.api,[a,r]=M("single"),[n,o]=M(!1),i=()=>t.commands.state("underline").isActive,l=()=>String(t.commands.state("setUnderlineStyle").value??"");return j(xn,{get open(){return n()},onOpenChange:o,tooltip:EP,get rootActive(){return n()||i()},mainTestId:LP,get mainPressed(){return i()},onMain:()=>{if(!i()){const e=a();"single"===e||l()||t.commands.execute("setUnderlineStyle",e)}t.commands.execute("underline")},menuTestId:`${LP}-dropdown`,panelClass:"oasis-editor-color-menu oasis-editor-underline-menu",panelRole:"menu",get mainContent(){return e=kP(),t=e.firstChild.nextSibling,w(()=>ve(t,"data-style",(l()||a()||"single").toLowerCase())),e;var e,t},get children(){return[(a=SP(),n=a.firstChild.nextSibling,a.$$click=()=>{i()&&t.commands.execute("underline"),t.commands.execute("setUnderlineStyle",null),o(!1)},Se(n,()=>Zr("toolbar.underlineRemove")),a),(e=IP(),Se(e,j(te,{each:CP,children:e=>{const a=()=>i()&&(l()||(i()?"single":"")).toLowerCase()===e.value.toLowerCase();return n=TP(),s=n.firstChild,d=s.nextSibling,n.$$click=()=>{(e=>{r(e);const a=i();t.commands.execute("setUnderlineStyle","single"===e?null:e),a||t.commands.execute("underline")})(e.value),o(!1)},Se(s,j(re,{get when(){return e.preview.svg},get fallback(){return t=PP(),w(a=>Me(t,"wavy"===e.preview.borderStyle?void 0:{"border-bottom-style":e.preview.borderStyle,"border-bottom-width":e.preview.borderBottomWidth??"1px"},a)),t;var t},get children(){var t=AP();return w(()=>t.innerHTML=e.preview.svg),t}})),Se(d,()=>e.label),w(t=>{var r=!!a(),o=a(),i=`${LP}-style-${e.value}`,l=e.label;return r!==t.e&&n.classList.toggle("oasis-editor-underline-menu-item-active",t.e=r),o!==t.t&&ve(n,"aria-checked",t.t=o),i!==t.a&&ve(n,"data-testid",t.a=i),l!==t.o&&ve(n,"title",t.o=l),t},{e:void 0,t:void 0,a:void 0,o:void 0}),n;var n,s,d}})),e)];var e,a,n}})}me(["click"]);var RP=ge("<option value=decimal>"),HP=ge("<option value=lowerLetter>"),NP=ge("<option value=upperLetter>"),DP=ge("<option value=lowerRoman>"),FP=ge("<option value=upperRoman>"),BP=ge("<option value=bullet>"),VP=ge("<div class=oasis-editor-toolbar-list-options><label class=oasis-editor-toolbar-field><span></span></label><label class=oasis-editor-toolbar-field><span></span><input type=number class=oasis-editor-tool-number data-testid=editor-toolbar-list-start-at min=1 step=1 placeholder=1>");var zP=ge("<div class=oasis-editor-dialog-footer data-testid=editor-dialog-footer>"),_P=ge("<div class=oasis-editor-dialog-overlay><div role=dialog aria-modal=true data-testid=editor-dialog><div class=oasis-editor-dialog-header><h3 class=oasis-editor-dialog-title></h3><button class=oasis-editor-dialog-close data-testid=editor-dialog-close><i data-lucide=x></i></button></div><div data-testid=editor-dialog-body>");function UP(e){let t;const a=ee(),r=C(()=>e.titleId??a),n=C(()=>e.size??"md"),o=C(()=>["oasis-editor-dialog",`oasis-editor-dialog-${n()}`,e.class].filter(Boolean).join(" ")),i=C(()=>["oasis-editor-dialog-body",e.bodyClass].filter(Boolean).join(" ")),l=t=>{"Escape"===t.key&&e.isOpen&&e.onClose()};return k(()=>{window.addEventListener("keydown",l)}),A(()=>{window.removeEventListener("keydown",l)}),j(re,{get when(){return e.isOpen},get children(){var a=_P(),n=a.firstChild,l=n.firstChild,s=l.firstChild,d=s.nextSibling,c=l.nextSibling;a.$$click=()=>{(e.closeOnOverlayClick??1)&&e.onClose()},n.$$click=e=>e.stopPropagation();return"function"==typeof t?Ce(t,n):t=n,Se(s,()=>e.title),be(d,"click",e.onClose,!0),Se(c,()=>e.children),Se(n,j(re,{get when(){return e.footer},get children(){var t=zP();return Se(t,()=>e.footer),t}}),null),w(t=>{var a=o(),l=e.ariaLabel,h=e.ariaLabel?void 0:r(),p=e.ariaDescribedBy,u=r(),f=Zr("generic.close"),g=i();return a!==t.e&&ye(n,t.e=a),l!==t.t&&ve(n,"aria-label",t.t=l),h!==t.a&&ve(n,"aria-labelledby",t.a=h),p!==t.o&&ve(n,"aria-describedby",t.o=p),u!==t.i&&ve(s,"id",t.i=u),f!==t.n&&ve(d,"title",t.n=f),g!==t.s&&ye(c,t.s=g),t},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0,n:void 0,s:void 0}),a}})}me(["click"]);var qP=ge('<div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><input type=number class=oasis-editor-dialog-input min=0.5 step=0.05 data-testid=editor-line-spacing-dialog-line-height>'),GP=ge('<div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><input type=number class=oasis-editor-dialog-input min=0 step=1 data-testid=editor-line-spacing-dialog-spacing-before></div><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><input type=number class=oasis-editor-dialog-input min=0 step=1 data-testid=editor-line-spacing-dialog-spacing-after>'),WP=ge("<div class=oasis-editor-dialog-input-group><label class=oasis-editor-dialog-label></label><div class=oasis-editor-dialog-preview data-testid=editor-line-spacing-dialog-preview><br>"),jP=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-secondary"data-testid=editor-line-spacing-dialog-cancel>'),XP=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-primary"data-testid=editor-line-spacing-dialog-apply>');function ZP(e){const[t,a]=M(""),[r,n]=M(""),[o,i]=M("");x(()=>{e.isOpen&&(a(e.initial.lineHeight??""),n(e.initial.spacingBefore??""),i(e.initial.spacingAfter??""))});const l=e=>{if(""===e.trim())return null;const t=Number(e);return Number.isFinite(t)?t:null},s=C(()=>{const e=l(t());return{"line-height":null!==e&&e>0?String(e):void 0}}),d=()=>{e.onApply({lineHeight:l(t()),spacingBefore:l(r()),spacingAfter:l(o())},e.initial),e.onClose()};return j(UP,{get isOpen(){return e.isOpen},get title(){return Zr("lineSpacing.title")},get onClose(){return e.onClose},get footer(){return[(a=jP(),be(a,"click",e.onClose,!0),Se(a,()=>Zr("generic.cancel")),a),(t=XP(),t.$$click=d,Se(t,()=>Zr("generic.apply")),t)];var t,a},get children(){return[(v=qP(),y=v.firstChild.firstChild,b=y.nextSibling,Se(y,()=>Zr("lineSpacing.lineSpacingLabel")),b.$$input=e=>a(e.currentTarget.value),w(()=>b.value=t()),v),(h=GP(),p=h.firstChild,u=p.firstChild,f=u.nextSibling,g=p.nextSibling.firstChild,m=g.nextSibling,Se(u,()=>Zr("lineSpacing.spacingBeforeLabel")),f.$$input=e=>n(e.currentTarget.value),Se(g,()=>Zr("lineSpacing.spacingAfterLabel")),m.$$input=e=>i(e.currentTarget.value),w(()=>f.value=r()),w(()=>m.value=o()),h),(e=WP(),l=e.firstChild,d=l.nextSibling,c=d.firstChild,Se(l,()=>Zr("lineSpacing.preview")),Se(d,()=>Zr("lineSpacing.previewText"),c),Se(d,()=>Zr("lineSpacing.previewText"),null),w(e=>Me(d,s(),e)),e)];var e,l,d,c,h,p,u,f,g,m,v,y,b}})}me(["input","click"]);var KP=ge("<div class=oasis-editor-line-spacing-menu-separator role=separator>"),YP=ge('<button type=button class="oasis-editor-line-spacing-item oasis-editor-line-spacing-item-more"role=menuitem data-testid=editor-toolbar-line-spacing-options><span class=oasis-editor-line-spacing-item-check aria-hidden=true></span><span class=oasis-editor-line-spacing-item-label>'),JP=ge("<div class=oasis-editor-toolbar-dropdown>"),QP=ge('<button type=button class="oasis-editor-tool-button oasis-editor-tool-button-dropdown oasis-editor-line-spacing-button"aria-haspopup=menu data-testid=editor-toolbar-line-spacing><span class=oasis-editor-line-spacing-icon aria-hidden=true><svg xmlns=http://www.w3.org/2000/svg width=18 height=18 viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round><polyline points="4 7 7 4 10 7"></polyline><line x1=7 y1=4 x2=7 y2=20></line><polyline points="4 17 7 20 10 17"></polyline><line x1=13 y1=6 x2=21 y2=6></line><line x1=13 y1=12 x2=21 y2=12></line><line x1=13 y1=18 x2=21 y2=18>'),$P=ge('<svg xmlns=http://www.w3.org/2000/svg width=14 height=14 viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2.5 stroke-linecap=round stroke-linejoin=round><polyline points="20 6 9 17 4 12">'),eE=ge("<button type=button class=oasis-editor-line-spacing-item role=menuitemradio><span class=oasis-editor-line-spacing-item-check aria-hidden=true></span><span class=oasis-editor-line-spacing-item-label>");const tE=[1,1.15,1.5,2,2.5,3];function aE(e){return null==e?"":String(e)}function rE(e){const t=e.api,[a,r]=M(!1),[n,o]=M(!1),[i,l]=M({lineHeight:"",spacingBefore:"",spacingAfter:""}),s=C(()=>{const e=aE(t.commands.state("setLineHeight").value);if(""===e)return null;const a=Number(e);return Number.isFinite(a)?a:null}),d=()=>r(!1),c=()=>{l({lineHeight:aE(t.commands.state("setLineHeight").value),spacingBefore:aE(t.commands.state("setSpacingBefore").value),spacingAfter:aE(t.commands.state("setSpacingAfter").value)}),o(!0),d()},h=(e,a)=>{const r=a.lineHeight?Number(a.lineHeight):null,n=a.spacingBefore?Number(a.spacingBefore):null,o=a.spacingAfter?Number(a.spacingAfter):null;e.lineHeight!==r&&t.commands.execute("setLineHeight",e.lineHeight),e.spacingBefore!==n&&t.commands.execute("setSpacingBefore",e.spacingBefore),e.spacingAfter!==o&&t.commands.execute("setSpacingAfter",e.spacingAfter),t.focusEditor()};return Se(p=JP(),j(dn,{get open(){return a()},onOpenChange:r,panelRole:"menu",panelClass:"oasis-editor-toolbar-dropdown-menu oasis-editor-line-spacing-menu",trigger:e=>{return(t=QP()).$$click=()=>e.toggle(),Ce(t=>e.ref(t),t),w(a=>{var r=!!e.open,n=Zr("metric.lineSpacing"),o=Zr("metric.lineSpacing"),i=e.open;return r!==a.e&&t.classList.toggle("oasis-editor-tool-button-active",a.e=r),n!==a.t&&ve(t,"title",a.t=n),o!==a.a&&ve(t,"aria-label",a.a=o),i!==a.o&&ve(t,"aria-expanded",a.o=i),a},{e:void 0,t:void 0,a:void 0,o:void 0}),t;var t},get children(){return[j(te,{each:tE,children:e=>{const a=function(e){return e.toFixed(e===Math.floor(e)?1:2)}(e),r=()=>{const t=s();return null!==t&&(a=t,r=e,Math.abs(a-r)<.001);var a,r};return n=eE(),o=n.firstChild,i=o.nextSibling,n.$$click=()=>(e=>{t.commands.execute("setLineHeight",e),t.focusEditor(),d()})(e),Se(o,j(re,{get when(){return r()},get children(){return $P()}})),Se(i,a),w(e=>{var t=!!r(),o=r(),i=`editor-toolbar-line-spacing-${a.replace(".","_")}`,l=Zr("metric.lineSpacingOption",[a]);return t!==e.e&&n.classList.toggle("oasis-editor-line-spacing-item-active",e.e=t),o!==e.t&&ve(n,"aria-checked",e.t=o),i!==e.a&&ve(n,"data-testid",e.a=i),l!==e.o&&ve(n,"title",e.o=l),e},{e:void 0,t:void 0,a:void 0,o:void 0}),n;var n,o,i}}),KP(),(e=YP(),a=e.firstChild.nextSibling,e.$$click=c,Se(a,()=>Zr("metric.lineSpacingOptions")),e)];var e,a}}),null),Se(p,j(re,{get when(){return n()},get children(){return j(Re,{get children(){return j(ZP,{get isOpen(){return n()},get initial(){return i()},onClose:()=>o(!1),onApply:h})}})}}),null),p;var p}me(["click"]);var nE=ge('<div class="oasis-editor-toolbar-panel-section oasis-editor-toolbar-panel-actions">'),oE=ge("<div class=oasis-editor-toolbar-panel-grid><label class=oasis-editor-tool-metric><span></span><input type=number class=oasis-editor-tool-number data-testid=editor-toolbar-spacing-after min=0 step=1></label><label class=oasis-editor-tool-metric><span></span><input type=number class=oasis-editor-tool-number data-testid=editor-toolbar-indent-left min=0 step=1></label><label class=oasis-editor-tool-metric><span></span><input type=number class=oasis-editor-tool-number data-testid=editor-toolbar-indent-first-line step=1></label><label class=oasis-editor-tool-metric><span></span><input type=number class=oasis-editor-tool-number data-testid=editor-toolbar-indent-hanging min=0 step=1></label><label class=oasis-editor-tool-color><span></span><input type=color class=oasis-editor-tool-color-input data-testid=editor-toolbar-paragraph-shading>");const iE=(e,t)=>{const a=e.commands.state(t).value;return null==a?"":String(a)};me(["input"]);var lE=ge('<div class="oasis-editor-toolbar-panel-section oasis-editor-toolbar-panel-actions">'),sE=ge("<div class=oasis-editor-toolbar-badge data-testid=editor-table-selection-label>");function dE(e){const t=e.api,a=e=>!t.commands.state(e).isEnabled;return j(mn,{icon:"table-properties",testId:"editor-toolbar-table-dropdown",get tooltip(){return Zr("toolbar.table")},hideChevron:!0,panelClass:"oasis-editor-toolbar-panel oasis-editor-toolbar-table-panel",keepMounted:!0,get children(){return[(l=lE(),Se(l,j(on,{icon:"combine","data-testid":"editor-toolbar-merge-table",get disabled(){return a("tableMerge")},onClick:()=>t.commands.execute("tableMerge"),get tooltip(){return Zr("table.mergeTooltip")}}),null),Se(l,j(on,{icon:"split","data-testid":"editor-toolbar-split-table",get disabled(){return a("tableSplit")},onClick:()=>t.commands.execute("tableSplit"),get tooltip(){return Zr("table.splitTooltip")}}),null),l),(i=lE(),Se(i,j(on,{icon:"columns","data-testid":"editor-toolbar-insert-table-column-before",get disabled(){return a("tableInsertColumnBefore")},onClick:()=>t.commands.execute("tableInsertColumnBefore"),get tooltip(){return Zr("table.insertColumnLeft")}}),null),Se(i,j(on,{icon:"columns","data-testid":"editor-toolbar-insert-table-column-after",get disabled(){return a("tableInsertColumnAfter")},onClick:()=>t.commands.execute("tableInsertColumnAfter"),get tooltip(){return Zr("table.insertColumnRight")}}),null),Se(i,j(on,{icon:"trash-2","data-testid":"editor-toolbar-delete-table-column",get disabled(){return a("tableDeleteColumn")},onClick:()=>t.commands.execute("tableDeleteColumn"),get tooltip(){return Zr("table.deleteColumn")}}),null),i),(o=lE(),Se(o,j(on,{icon:"rows","data-testid":"editor-toolbar-insert-table-row-before",get disabled(){return a("tableInsertRowBefore")},onClick:()=>t.commands.execute("tableInsertRowBefore"),get tooltip(){return Zr("table.insertRowAbove")}}),null),Se(o,j(on,{icon:"rows","data-testid":"editor-toolbar-insert-table-row-after",get disabled(){return a("tableInsertRowAfter")},onClick:()=>t.commands.execute("tableInsertRowAfter"),get tooltip(){return Zr("table.insertRowBelow")}}),null),Se(o,j(on,{icon:"trash-2","data-testid":"editor-toolbar-delete-table-row",get disabled(){return a("tableDeleteRow")},onClick:()=>t.commands.execute("tableDeleteRow"),get tooltip(){return Zr("table.deleteRow")}}),null),o),(n=lE(),Se(n,j(on,{icon:"palette","data-testid":"editor-toolbar-table-shading",onClick:()=>{const e=prompt(Zr("table.cellBgColorPrompt"),"#f1f5f9");null!==e&&t.commands.execute("tableCellShading",e)},get tooltip(){return Zr("table.cellColor")}}),null),Se(n,j(on,{icon:"frame","data-testid":"editor-toolbar-table-borders",onClick:()=>t.commands.execute("tableCellBorders"),get tooltip(){return Zr("table.applyBorders")}}),null),Se(n,j(on,{icon:"square","data-testid":"editor-toolbar-table-no-borders",onClick:()=>t.commands.execute("tableCellNoBorders"),get tooltip(){return Zr("table.removeBorders")}}),null),n),(r=lE(),Se(r,j(on,{icon:"maximize","data-testid":"editor-toolbar-table-width-100",onClick:()=>t.commands.execute("tableWidth100"),get tooltip(){return Zr("table.width100Tooltip")}})),r),(e=lE(),Se(e,j(on,{icon:"align-left","data-testid":"editor-toolbar-table-align-left",onClick:()=>t.commands.execute("tableAlignLeft"),get tooltip(){return Zr("table.alignLeft")}}),null),Se(e,j(on,{icon:"align-center","data-testid":"editor-toolbar-table-align-center",onClick:()=>t.commands.execute("tableAlignCenter"),get tooltip(){return Zr("table.alignCenter")}}),null),Se(e,j(on,{icon:"align-right","data-testid":"editor-toolbar-table-align-right",onClick:()=>t.commands.execute("tableAlignRight"),get tooltip(){return Zr("table.alignRight")}}),null),Se(e,j(on,{icon:"move-horizontal","data-testid":"editor-toolbar-table-cell-width",onClick:()=>{const e=prompt(Zr("table.cellWidthPrompt"));e&&t.commands.execute("tableSetCellWidth",e)},get tooltip(){return Zr("table.cellWidth")}}),null),e),j(re,{get when(){return t.commands.state("tableContext").value},children:e=>{return Se(t=sE(),e),t;var t}})];var e,r,n,o,i,l}})}var cE=ge('<div class="oasis-editor-toolbar-panel-section oasis-editor-toolbar-panel-actions">');const hE=/Mac/i.test(navigator.userAgent)?"⌘":"Ctrl",pE=e=>e.commands.state("documentStyles").value??[],uE=e=>{const t=new Set(["Arial","Calibri, sans-serif","Calibri Light, sans-serif","Georgia","Inter","Times New Roman","Courier New"]);for(const r of pE(e))r.fontFamily&&t.add(r.fontFamily);const a=String(e.commands.state("setFontFamily").value??"").trim();return a&&t.add(a),Array.from(t).sort((e,t)=>e.localeCompare(t)).map(e=>({value:e,label:e}))},fE=e=>{const t=new Set([12,14,15,16,18,20,24,28,32]);for(const r of pE(e))"number"==typeof r.fontSize&&Number.isFinite(r.fontSize)&&t.add(r.fontSize);const a=Number(e.commands.state("setFontSize").value);return Number.isFinite(a)&&a>0&&t.add(a),Array.from(t).sort((e,t)=>e-t).map(e=>({value:String(e),label:String(e)}))},gE=e=>pE(e).map(e=>({value:e.id,label:e.name})),mE=[{command:"alignLeft",icon:"align-left",testId:"editor-toolbar-align-left",tooltipKey:"toolbar.alignLeft"},{command:"alignCenter",icon:"align-center",testId:"editor-toolbar-align-center",tooltipKey:"toolbar.alignCenter"},{command:"alignRight",icon:"align-right",testId:"editor-toolbar-align-right",tooltipKey:"toolbar.alignRight"},{command:"alignJustify",icon:"align-justify",testId:"editor-toolbar-align-justify",tooltipKey:"toolbar.justify"}],vE=[{command:"bulletList",icon:"list",testId:"editor-toolbar-list-bullet",tooltipKey:"toolbar.bulletList"},{command:"orderedList",icon:"list-ordered",testId:"editor-toolbar-list-ordered",tooltipKey:"toolbar.numberedList"}];function yE(){const e=[];e.push({type:"menu",id:"editor-toolbar-file-dropdown",group:"file",iconName:"file",tooltipKey:"toolbar.file",content:{kind:"items",items:[{type:"button",id:"editor-toolbar-export-docx",testId:"editor-toolbar-export-docx",iconName:"file-text",label:"Export DOCX",wide:!0,tooltip:"Export DOCX",command:"exportDocx"},{type:"button",id:"editor-toolbar-export-pdf",testId:"editor-toolbar-export-pdf",iconName:"file-down",label:"Export PDF",wide:!0,tooltip:"Export PDF",command:"exportPdf"},{type:"button",id:"editor-toolbar-import-docx",testId:"editor-toolbar-import-docx",iconName:"upload",labelKey:"toolbar.import",wide:!0,tooltipKey:"toolbar.import",command:"importDocx"}]}}),e.push({type:"separator",id:"sep-file",group:"file"}),e.push({type:"button",id:"editor-toolbar-undo",testId:"editor-toolbar-undo",iconName:"undo",command:"undo",tooltip:`${Zr("toolbar.undo")} (${hE}+Z)`}),e.push({type:"button",id:"editor-toolbar-redo",testId:"editor-toolbar-redo",iconName:"redo",command:"redo",tooltip:`${Zr("toolbar.redo")} (${hE}+Shift+Z)`}),e.push({type:"separator",id:"sep-history"}),e.push({type:"select",id:"editor-toolbar-style",testId:"editor-toolbar-style",width:"wide",tooltipKey:"toolbar.style",command:"setStyleId",options:gE}),e.push({type:"select",id:"editor-toolbar-font-family",testId:"editor-toolbar-font-family",tooltipKey:"toolbar.fontFamily",placeholder:Zr("toolbar.font"),command:"setFontFamily",options:uE}),e.push({type:"select",id:"editor-toolbar-font-size",testId:"editor-toolbar-font-size",width:"small",tooltipKey:"toolbar.fontSize",command:"setFontSize",options:fE}),e.push({type:"colorPicker",id:"editor-toolbar-color",testId:"editor-toolbar-color",kind:"color",iconName:"type",defaultValue:"#111827",tooltipKey:"toolbar.color",command:"setColor"}),e.push({type:"colorPicker",id:"editor-toolbar-highlight",testId:"editor-toolbar-highlight",kind:"highlight",iconName:"highlighter",defaultValue:"#fef08a",tooltipKey:"toolbar.highlight",command:"setHighlight"}),e.push({type:"separator",id:"sep-style"}),e.push({type:"toggle",id:"editor-toolbar-bold",testId:"editor-toolbar-bold",iconName:"bold",command:"bold",tooltipKey:"toolbar.bold"}),e.push({type:"toggle",id:"editor-toolbar-italic",testId:"editor-toolbar-italic",iconName:"italic",command:"italic",tooltipKey:"toolbar.italic"}),e.push({type:"custom",id:"editor-toolbar-underline-control",render:e=>OP({api:e})}),e.push({type:"toggle",id:"editor-toolbar-strike",testId:"editor-toolbar-strike",iconName:"strikethrough",command:"strike",tooltipKey:"toolbar.strike"}),e.push({type:"toggle",id:"editor-toolbar-superscript",testId:"editor-toolbar-superscript",iconName:"superscript",command:"superscript",tooltipKey:"toolbar.superscript"}),e.push({type:"toggle",id:"editor-toolbar-subscript",testId:"editor-toolbar-subscript",iconName:"subscript",command:"subscript",tooltipKey:"toolbar.subscript"}),e.push({type:"separator",id:"sep-format"}),e.push({type:"button",id:"editor-toolbar-insert-image",testId:"editor-toolbar-insert-image",iconName:"image",tooltipKey:"toolbar.image",command:"insertImage"}),e.push({type:"gridPicker",id:"editor-toolbar-insert-table",testId:"editor-toolbar-insert-table",tooltipKey:"toolbar.table",command:"insertTable"}),e.push({type:"button",id:"editor-toolbar-link",testId:"editor-toolbar-link",iconName:"link",command:"link",tooltip:`${Zr("toolbar.link")} (${hE}+K)`}),e.push({type:"button",id:"editor-toolbar-unlink",testId:"editor-toolbar-unlink",iconName:"unlink",command:"unlink",tooltipKey:"toolbar.unlink"}),e.push({type:"button",id:"editor-toolbar-footnote",testId:"editor-toolbar-footnote",iconName:"superscript",command:"insertFootnote",tooltip:`${Zr("toolbar.footnote")} (${hE}+Alt+F)`}),e.push({type:"button",id:"editor-toolbar-image-alt",testId:"editor-toolbar-image-alt",iconName:"file-text",tooltipKey:"toolbar.alt",command:"editImageAlt",isVisible:e=>e.commands.state("editImageAlt").isEnabled}),e.push({type:"separator",id:"sep-insert"});for(const t of mE)e.push({type:"toggle",id:t.testId,testId:t.testId,iconName:t.icon,command:t.command,tooltipKey:t.tooltipKey});for(const t of vE)e.push({type:"toggle",id:t.testId,testId:t.testId,iconName:t.icon,command:t.command,tooltipKey:t.tooltipKey});return e.push({type:"button",id:"editor-toolbar-list-outdent",testId:"editor-toolbar-list-outdent",iconName:"indent-decrease",tooltipKey:"toolbar.decreaseIndent",command:"outdent"}),e.push({type:"button",id:"editor-toolbar-list-indent",testId:"editor-toolbar-list-indent",iconName:"indent-increase",tooltipKey:"toolbar.increaseIndent",command:"indent"}),e.push({type:"custom",id:"editor-toolbar-list-options",render:e=>function(e){const t=e.api;return j(mn,{icon:"list-filter",get tooltip(){return Zr("toolbar.listFormat")},testId:"editor-toolbar-list-options-dropdown",hideChevron:!0,get children(){var e=VP(),a=e.firstChild,r=a.firstChild,n=a.nextSibling.firstChild,o=n.nextSibling;return Se(r,()=>Zr("toolbar.listFormat")),Se(a,j(yn,{"data-testid":"editor-toolbar-list-format",onChange:e=>t.commands.execute("setListFormat",e.currentTarget.value),get tooltip(){return Zr("toolbar.listFormat")},get children(){return[(o=RP(),Se(o,()=>Zr("toolbar.formatDecimal")),o),(n=HP(),Se(n,()=>Zr("toolbar.formatLowerLetter")),n),(r=NP(),Se(r,()=>Zr("toolbar.formatUpperLetter")),r),(a=DP(),Se(a,()=>Zr("toolbar.formatLowerRoman")),a),(t=FP(),Se(t,()=>Zr("toolbar.formatUpperRoman")),t),(e=BP(),Se(e,()=>Zr("toolbar.formatBullet")),e)];var e,t,a,r,n,o}}),null),Se(n,()=>Zr("toolbar.listStartAt")),o.addEventListener("change",e=>t.commands.execute("setListStartAt",e.currentTarget.value)),w(()=>ve(o,"title",Zr("toolbar.listStartAt"))),e}})}({api:e})}),e.push({type:"custom",id:"editor-toolbar-line-spacing-control",render:e=>rE({api:e})}),e.push({type:"separator",id:"sep-paragraph"}),e.push({type:"custom",id:"editor-toolbar-metrics",render:e=>function(e){const t=e.api,a=e=>a=>t.commands.execute(e,a.currentTarget.value);return j(mn,{icon:"sliders-horizontal",testId:"editor-toolbar-metrics-dropdown",get tooltip(){return Zr("metric.leftIndent")},hideChevron:!0,panelClass:"oasis-editor-toolbar-panel",keepMounted:!0,get children(){return[(y=nE(),Se(y,j(on,{icon:"file-up",get active(){return t.commands.state("togglePageBreakBefore").isActive},"data-testid":"editor-toolbar-page-break-before",onClick:()=>t.commands.execute("togglePageBreakBefore"),get tooltip(){return Zr("metric.pageBreakBefore")}}),null),Se(y,j(on,{icon:"link-2",get active(){return t.commands.state("toggleKeepWithNext").isActive},"data-testid":"editor-toolbar-keep-with-next",onClick:()=>t.commands.execute("toggleKeepWithNext"),get tooltip(){return Zr("metric.keepWithNext")}}),null),y),(e=oE(),r=e.firstChild,n=r.firstChild,o=n.nextSibling,i=r.nextSibling,l=i.firstChild,s=l.nextSibling,d=i.nextSibling,c=d.firstChild,h=c.nextSibling,p=d.nextSibling,u=p.firstChild,f=u.nextSibling,g=p.nextSibling,m=g.firstChild,v=m.nextSibling,Se(n,()=>Zr("metric.after")),be(o,"change",a("setSpacingAfter")),Se(l,()=>Zr("metric.indent")),be(s,"change",a("setIndentLeft")),Se(c,()=>Zr("metric.first")),be(h,"change",a("setIndentFirstLine")),Se(u,()=>Zr("metric.hang")),be(f,"change",a("setIndentHanging")),Se(m,()=>Zr("metric.paraBg")),v.$$input=e=>t.commands.execute("setParagraphShading",e.currentTarget.value),Se(e,j(on,{icon:"frame","data-testid":"editor-toolbar-paragraph-borders",onClick:()=>t.commands.execute("applyParagraphBorders"),get tooltip(){return Zr("metric.applyBorders")}}),null),w(e=>{var t=Zr("metric.spacingAfter"),a=Zr("metric.leftIndent"),n=Zr("metric.firstLineIndent"),o=Zr("metric.hangingIndent"),l=Zr("metric.paragraphBgColor");return t!==e.e&&ve(r,"title",e.e=t),a!==e.t&&ve(i,"title",e.t=a),n!==e.a&&ve(d,"title",e.a=n),o!==e.o&&ve(p,"title",e.o=o),l!==e.i&&ve(g,"title",e.i=l),e},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0}),w(()=>o.value=iE(t,"setSpacingAfter")),w(()=>s.value=iE(t,"setIndentLeft")),w(()=>h.value=iE(t,"setIndentFirstLine")),w(()=>f.value=iE(t,"setIndentHanging")),w(()=>v.value=iE(t,"setParagraphShading")||"#ffffff"),e)];var e,r,n,o,i,l,s,d,c,h,p,u,f,g,m,v,y}})}({api:e})}),e.push({type:"separator",id:"sep-metrics"}),e.push({type:"custom",id:"editor-toolbar-table",isVisible:e=>e.commands.state("tableContext").isActive,render:e=>dE({api:e})}),e.push({type:"separator",id:"sep-table",isVisible:e=>e.commands.state("tableContext").isActive}),e.push({type:"custom",id:"editor-toolbar-section",render:e=>function(e){const t=e.api;return j(mn,{icon:"layout-template",testId:"editor-toolbar-section-dropdown",get tooltip(){return Zr("section.pageSetup")},hideChevron:!0,panelClass:"oasis-editor-toolbar-panel",keepMounted:!0,get children(){return[(a=cE(),Se(a,j(on,{icon:"layout",get active(){return t.commands.state("toggleOrientation").isActive},"data-testid":"editor-toolbar-orientation",onClick:()=>t.commands.execute("toggleOrientation"),get tooltip(){return Zr("section.toggleOrientation")}})),a),(e=cE(),Se(e,j(on,{icon:"scissors","data-testid":"editor-toolbar-section-break-next",onClick:()=>t.commands.execute("sectionBreakNextPage"),get tooltip(){return Zr("section.secNextTooltip")}}),null),Se(e,j(on,{icon:"scissors","data-testid":"editor-toolbar-section-break-continuous",onClick:()=>t.commands.execute("sectionBreakContinuous"),get tooltip(){return Zr("section.secContTooltip")}}),null),e)];var e,a}})}({api:e})}),e}const bE=Number.MAX_SAFE_INTEGER;class ME{constructor(){a(this,"entries",[]),a(this,"listeners",new Set)}register(e){const t=this.entries.findIndex(t=>t.id===e.id);t>=0?this.entries[t]=e:this.entries.push(e),this.sortByOrder(),this.emit()}insertBefore(e,t){this.spliceRelative(e,t,0)}insertAfter(e,t){this.spliceRelative(e,t,1)}replace(e,t){const a=this.entries.findIndex(t=>t.id===e);a<0?this.register(t):(this.entries[a]=t,this.emit())}remove(e){const t=this.entries.filter(t=>t.id!==e);t.length!==this.entries.length&&(this.entries=t,this.emit())}move(e,t){const a=this.entries.findIndex(t=>t.id===e);if(a<0)return;const[r]=this.entries.splice(a,1),n=Math.max(0,Math.min(t,this.entries.length));this.entries.splice(n,0,r),this.emit()}get(e){return this.entries.find(t=>t.id===e)}getOrdered(){return[...this.entries]}getItems(){return this.getOrdered()}clear(){0!==this.entries.length&&(this.entries=[],this.emit())}onChange(e){return this.listeners.add(e),()=>this.listeners.delete(e)}spliceRelative(e,t,a){this.entries=this.entries.filter(e=>e.id!==t.id);const r=this.entries.findIndex(t=>t.id===e);r<0?this.entries.push(t):this.entries.splice(r+a,0,t),this.emit()}sortByOrder(){this.entries=this.entries.map((e,t)=>({item:e,index:t})).sort((e,t)=>(e.item.order??bE)-(t.item.order??bE)||e.index-t.index).map(e=>e.item)}emit(){for(const e of this.listeners)e()}}function wE(){return new ME}class xE{constructor(e,t=[]){a(this,"plugins",[]),a(this,"cleanups",[]),a(this,"initialized",[]),a(this,"isInitialized",!1),this.editorInstance=e,this.plugins=this.resolvePlugins(t)}resolvePlugins(e){const t=new Map,a=[...e],r=e=>{t.has(e.name)||(t.set(e.name,e),a.push(e))};for(const d of e)r(d);const n=new Set,o=new Set,i=[],l=(e,n)=>{if("string"==typeof n){const o=t.get(n)??a.find(e=>e.name===n);if(!o)throw new Error(`Plugin '${e.name}' requires missing plugin '${n}'.`);return r(o),o}return r(n),n},s=e=>{if(!o.has(e.name)){if(n.has(e.name))throw new Error(`Cyclic plugin dependency detected at '${e.name}'.`);n.add(e.name);for(const t of e.requires??[])s(l(e,t));n.delete(e.name),o.add(e.name),i.push(e)}};for(const d of e)s(d);return i}async initializeAll(){var e,t;if(!this.isInitialized)try{for(const e of this.plugins)await this.initializePlugin(e);for(const a of this.initialized)await(null==(t=(e=a.plugin).afterInit)?void 0:t.call(e,this.editorInstance));this.isInitialized=!0}catch(a){throw await this.destroy(),a}}async initializePlugin(e){var t;const a=[];if(this.registerPluginCommands(e,a),this.initialized.push({plugin:e,commandNames:a}),await(null==(t=e.init)?void 0:t.call(e,this.editorInstance)),e.install){const t=e.install(this.editorInstance);t&&this.cleanups.push(t)}}registerPluginCommands(e,t){if(e.commands)for(const[a,r]of Object.entries(e.commands))this.editorInstance.commands.register(a,r),t.push(a)}async destroy(){var e,t;for(const a of this.cleanups)a();for(let a=this.initialized.length-1;a>=0;a-=1){const r=this.initialized[a];await(null==(t=(e=r.plugin).destroy)?void 0:t.call(e,this.editorInstance));for(const e of r.commandNames)this.editorInstance.commands.unregister(e)}this.initialized=[],this.cleanups=[],this.isInitialized=!1}getPlugins(){return this.plugins}}class CE{constructor(){a(this,"commands",new Map)}register(e,t){this.commands.set(e,t)}unregister(e){this.commands.delete(e)}get(e){return this.commands.get(e)}has(e){return this.commands.has(e)}clear(){this.commands.clear()}}class SE{constructor(e={}){if(a(this,"stateStore"),a(this,"setState"),a(this,"pluginCollection"),a(this,"listeners",new Map),a(this,"commands",new CE),e.plugins&&e.plugins.length>0)throw new Error("Editor plugins must be initialized with Editor.create(...).");this.initializeState(e),this.pluginCollection=new xE(this,[])}static async create(e={}){const t=new SE({...e,plugins:[]});return t.pluginCollection=new xE(t,e.plugins??[]),await t.pluginCollection.initializeAll(),t}initializeState(e){const t=e.doc?qt(e.doc):Wt(),[a,r]=Yi(t);this.stateStore=a,this.setState=r}get state(){return this.stateStore}dispatch(e){const t=e(this.stateStore);this.setState(t),this.emit("change:data",this.stateStore)}registerCommand(e,t){this.commands.register(e,t)}unregisterCommand(e){this.commands.unregister(e)}execute(e,t){const a=this.commands.get(e);if(!a)throw new Error(`Unknown command: ${e}`);if(!this.canExecute(e,t))throw new Error(`Command disabled: ${e}`);return a.execute(t)}canExecute(e,t){const a=this.commands.get(e);return!!a&&(!a.refresh||!1!==a.refresh(t).isEnabled)}async destroy(){await this.pluginCollection.destroy(),this.commands.clear(),this.listeners.clear()}on(e,t){const a=this.listeners.get(e)??new Set;return a.add(t),this.listeners.set(e,a),()=>this.off(e,t)}once(e,t){const a=(...r)=>{this.off(e,a),t(...r)};return this.on(e,a)}off(e,t){const a=this.listeners.get(e);a&&(a.delete(t),0===a.size&&this.listeners.delete(e))}emit(e,...t){const a=this.listeners.get(e);if(a)for(const r of a)r(...t)}}function IE(e){return"string"==typeof e?e:e.name}function kE(e,t){return"string"==typeof e?{name:e,payload:t}:{name:e.name,payload:void 0!==t?t:e.payload}}function AE(e){const t=wP(e.essentials),{runtimePlugins:a,toolbarRegistry:r,dispose:n}=function(e){var t;const a=[e.essentialsPlugin,...e.externalPlugins??[]],r=[],n=[],o=wE();for(const i of yE())o.register(i);for(const i of a){for(const e of i.toolbar??[]){const t={type:"button",id:e.id,testId:e.id,command:e.command,iconName:e.icon,group:e.group};o.register(t),r.push(e.id)}for(const e of i.menubar??[])xP.register({id:e.id,path:e.path,command:e.command,icon:e.icon,shortcut:e.shortcut}),n.push(e.id)}return null==(t=e.customizeToolbar)||t.call(e,o),{runtimePlugins:a,toolbarRegistry:o,dispose:()=>{for(const e of r)o.remove(e);for(const e of n)xP.unregister(e)}}}({essentialsPlugin:t,externalPlugins:e.externalPlugins,customizeToolbar:e.customizeToolbar}),o=function(e){const[t,a]=M(!1),[r,n]=M(new SE({doc:e.initialDocument,plugins:[]}));let o=!1;const i=e=>{var t;const a=IE(e),n=r().commands.get(a);if(!n)return{isEnabled:!1,isActive:!1,value:void 0};const o=(null==(t=n.refresh)?void 0:t.call(n))??{isEnabled:!0};return{isEnabled:!1!==o.isEnabled,isActive:Boolean(o.isActive),value:o.value}};return{runtimeReady:t,runtimeEditor:r,commandStateOf:i,toolbarHost:()=>({commands:{execute:(e,t)=>{const a=kE(e,t);return r().execute(a.name,a.payload)},canExecute:(e,t)=>{const a=kE(e,t);return r().canExecute(a.name,a.payload)},state:i},focusEditor:e.focusEditor}),initialize:async()=>{var t;try{const t=await SE.create({doc:e.initialDocument,plugins:e.runtimePlugins});if(o)return void(await t.destroy());const i=r();n(t),await i.destroy(),a(!0),requestAnimationFrame(()=>{var t,a;null==(t=e.onSettled)||t.call(e),null==(a=e.onReady)||a.call(e)})}catch(i){e.logger.error("runtime:init failed",i),null==(t=e.onSettled)||t.call(e)}},dispose:async()=>{o=!0,await r().destroy()}}}({initialDocument:e.initialDocument,runtimePlugins:a,focusEditor:e.focusEditor,logger:e.logger,onReady:e.onReady,onSettled:e.onSettled});return k(()=>{o.initialize()}),A(()=>{o.dispose(),n()}),{toolbarRegistry:r,runtimeReady:o.runtimeReady,runtimeEditor:o.runtimeEditor,commandStateOf:o.commandStateOf,toolbarHost:o.toolbarHost}}[{id:"file_new",path:"File/New",labelKey:"menu.file.new",shortcut:"Ctrl+N",hidden:!0,icon:"file-plus"},{id:"file_import",path:"File/Import",labelKey:"toolbar.import",shortcut:"Ctrl+O",command:"importDocx",icon:"upload"},{id:"file_save",path:"File/Save",labelKey:"generic.save",shortcut:"Ctrl+S",hidden:!0,icon:"save"},{id:"file_export",path:"File/Export",labelKey:"menu.file.export",icon:"download"},{id:"file_export_pdf",path:"File/Export/PDF",command:"exportPdf",icon:"file-down"},{id:"file_export_docx",path:"File/Export/DOCX",command:"exportDocx",icon:"file-text"},{id:"file_export_html",path:"File/Export/HTML",hidden:!0},{id:"file_export_md",path:"File/Export/MD",hidden:!0},{id:"file_print",path:"File/Print",labelKey:"menu.file.print",shortcut:"Ctrl+P",command:"print",icon:"printer"},{id:"edit_undo",path:"Edit/Undo",labelKey:"toolbar.undo",shortcut:"Ctrl+Z",command:"undo",icon:"undo-2"},{id:"edit_redo",path:"Edit/Redo",labelKey:"toolbar.redo",shortcut:"Ctrl+Y",command:"redo",icon:"redo-2"},{id:"edit_cut",path:"Edit/Cut",labelKey:"menu.edit.cut",shortcut:"Ctrl+X",hidden:!0},{id:"edit_copy",path:"Edit/Copy",labelKey:"menu.edit.copy",shortcut:"Ctrl+C",command:"copy",icon:"copy"},{id:"edit_paste",path:"Edit/Paste",labelKey:"menu.edit.paste",shortcut:"Ctrl+V",hidden:!0},{id:"edit_find",path:"Edit/Find & Replace",labelKey:"find.title",shortcut:"Ctrl+F",command:"find",icon:"search"},{id:"edit_selectAll",path:"Edit/Select All",labelKey:"menu.edit.selectAll",shortcut:"Ctrl+A",hidden:!0},{id:"view_outline",path:"View/Show Outline",labelKey:"menu.view.outline",hidden:!0},{id:"view_ruler",path:"View/Show Ruler",hidden:!0},{id:"view_margins",path:"View/Show Margins",labelKey:"menu.view.margins",command:"toggleShowMargins",icon:e=>e.commands.state("toggleShowMargins").isActive?"check-square":"square"},{id:"view_paragraph_marks",path:"View/Show Paragraph Marks",labelKey:"menu.view.paragraphMarks",command:"toggleShowParagraphMarks",icon:e=>e.commands.state("toggleShowParagraphMarks").isActive?"check-square":"square"},{id:"view_fullscreen",path:"View/Full Screen",labelKey:"menu.view.fullscreen",hidden:!0},{id:"view_zoom",path:"View/Zoom",labelKey:"status.zoom",hidden:!0},{id:"view_zoom_50",path:"View/Zoom/50%",hidden:!0},{id:"view_zoom_75",path:"View/Zoom/75%",hidden:!0},{id:"view_zoom_100",path:"View/Zoom/100%",hidden:!0},{id:"view_zoom_125",path:"View/Zoom/125%",hidden:!0},{id:"view_zoom_150",path:"View/Zoom/150%",hidden:!0},{id:"view_zoom_200",path:"View/Zoom/200%",hidden:!0},{id:"insert_image",path:"Insert/Image",labelKey:"toolbar.image",command:"insertImage",icon:"image"},{id:"insert_table",path:"Insert/Table",labelKey:"toolbar.table",command:{name:"insertTable",payload:{rows:3,cols:3}},icon:"table"},{id:"insert_link",path:"Insert/Link",labelKey:"toolbar.link",command:"link",icon:"link"},{id:"insert_footnote",path:"Insert/Footnote",labelKey:"toolbar.footnote",shortcut:"Ctrl+Alt+F",command:"insertFootnote",icon:"superscript"},{id:"insert_hr",path:"Insert/Horizontal Rule",hidden:!0},{id:"insert_pageBreak",path:"Insert/Page Break",labelKey:"metric.pageBreak",command:"pageBreak",icon:"file-minus"},{id:"insert_specialChar",path:"Insert/Special Character",hidden:!0},{id:"insert_comment",path:"Insert/Comment",hidden:!0},{id:"format_text",path:"Format/Text",labelKey:"menu.format.text",icon:"type"},{id:"format_text_bold",path:"Format/Text/Bold",labelKey:"toolbar.bold",shortcut:"Ctrl+B",command:"bold",icon:"bold"},{id:"format_text_italic",path:"Format/Text/Italic",labelKey:"toolbar.italic",shortcut:"Ctrl+I",command:"italic",icon:"italic"},{id:"format_text_underline",path:"Format/Text/Underline",labelKey:"toolbar.underline",shortcut:"Ctrl+U",command:"underline",icon:"underline"},{id:"format_text_strike",path:"Format/Text/Strikethrough",labelKey:"toolbar.strike",command:"strike",icon:"strikethrough"},{id:"format_paragraphStyles",path:"Format/Paragraph styles",labelKey:"toolbar.style",hidden:!0},{id:"format_align",path:"Format/Align",labelKey:"menu.format.align",icon:"align-left"},{id:"format_align_left",path:"Format/Align/Left",labelKey:"toolbar.alignLeft",command:"alignLeft",icon:"align-left"},{id:"format_align_center",path:"Format/Align/Center",labelKey:"toolbar.alignCenter",command:"alignCenter",icon:"align-center"},{id:"format_align_right",path:"Format/Align/Right",labelKey:"toolbar.alignRight",command:"alignRight",icon:"align-right"},{id:"format_align_justify",path:"Format/Align/Justify",labelKey:"toolbar.justify",command:"alignJustify",icon:"align-justify"},{id:"format_lineSpacing",path:"Format/Line spacing",hidden:!0},{id:"format_lists",path:"Format/Lists",labelKey:"menu.format.lists",icon:"list"},{id:"format_lists_bullet",path:"Format/Lists/Bullet List",labelKey:"toolbar.bulletList",command:"bulletList",icon:"list"},{id:"format_lists_numbered",path:"Format/Lists/Numbered List",labelKey:"toolbar.numberedList",command:"orderedList",icon:"list-ordered"},{id:"format_clear",path:"Format/Clear formatting",hidden:!0},{id:"tools_wordcount",path:"Tools/Word count",labelKey:"menu.tools.wordcount",hidden:!0},{id:"tools_spelling",hidden:!0,path:"Tools/Spelling"},{id:"tools_preferences",path:"Tools/Preferences",hidden:!0},{id:"help_shortcuts",path:"Help/Keyboard shortcuts",labelKey:"menu.help.shortcuts",hidden:!0},{id:"help_about",path:"Help/About",labelKey:"menu.help.about",hidden:!0}].forEach(e=>xP.register(e));var TE=ge("<div class=oasis-menubar role=menubar>"),PE=ge("<div class=oasis-menubar-dropdown role=menu>"),EE=ge("<div class=oasis-menubar-menu><div class=oasis-menubar-button role=menuitem aria-haspopup=true>"),LE=ge("<div class=oasis-menubar-separator role=separator>"),OE=ge("<span class=oasis-menubar-item-icon aria-hidden=true><i>"),RE=ge("<span class=oasis-menubar-shortcut>"),HE=ge("<i class=oasis-menubar-submenu-icon data-lucide=chevron-right>"),NE=ge("<div class=oasis-menubar-submenu role=menu>"),DE=ge("<div class=oasis-menubar-item role=menuitem><span class=oasis-menubar-item-main><span>");function FE(e){const[t,a]=M(null),r=xP.getItems().filter(e=>!e.hidden),n=new Map(r.map(e=>[e.path,e])),o=[];for(const h of r){const e=h.path.split("/");let t=o,a="";for(let r=0;r<e.length;r++){const o=e[r];a=a?`${a}/${o}`:o;let i=t.find(e=>e.label===o);i||(i={id:o,path:a,label:o,children:[]},t.push(i));const l=n.get(a);l&&(i.item=l),t=i.children}}const i=e=>e.flatMap(e=>{var t,a;const r=i(e.children);return Boolean(null==(t=e.item)?void 0:t.command)&&!(null==(a=e.item)?void 0:a.separator)||0!==r.length?[{...e,children:r}]:[]}),l=e=>{t()&&!e.target.closest(".oasis-menubar")&&a(null)},s=e=>{"Escape"===e.key&&a(null)};k(()=>{document.addEventListener("click",l),document.addEventListener("keydown",s)}),A(()=>{document.removeEventListener("click",l),document.removeEventListener("keydown",s)});const d=i(o);return Se(c=TE(),j(te,{each:d,children:r=>{return n=EE(),o=n.firstChild,n.addEventListener("mouseenter",()=>{t()&&t()!==r.id&&a(r.id)}),o.$$click=e=>{e.stopPropagation(),t()===r.id?a(null):a(r.id)},Se(o,()=>Zr("menu."+r.label.toLowerCase())||r.label),Se(n,j(re,{get when(){return t()===r.id},get children(){var t=PE();return Se(t,j(te,{get each(){return r.children},children:t=>j(BE,{node:t,get host(){return e.host},onClose:()=>a(null)})})),t}}),null),w(e=>{var a=!(t()!==r.id),n=t()===r.id;return a!==e.e&&o.classList.toggle("oasis-menubar-button-active",e.e=a),n!==e.t&&ve(o,"aria-expanded",e.t=n),e},{e:void 0,t:void 0}),n;var n,o}})),c;var c}function BE(e){var t,a,r;const{node:n,onClose:o}=e;if(null==(t=n.item)?void 0:t.separator)return LE();const i=n.children.length>0,[l,s]=M(!1);let d=n.label;(null==(a=n.item)?void 0:a.labelKey)&&(d=Zr(n.item.labelKey)||n.label);const c=null==(r=n.item)?void 0:r.icon,h=()=>"function"==typeof c?c(e.host()):c,p=t=>{var a;if(t.stopPropagation(),i)return;const r=null==(a=n.item)?void 0:a.command;r&&!1!==e.host().commands.canExecute(r)&&e.host().commands.execute(r),o()};return u=DE(),f=u.firstChild,g=f.firstChild,u.$$click=p,u.addEventListener("mouseleave",()=>{i&&s(!1)}),u.addEventListener("mouseenter",()=>{i&&s(!0)}),ve(u,"aria-haspopup",i),Se(f,j(re,{get when(){return h()},get children(){var e=OE(),t=e.firstChild;return w(()=>ve(t,"data-lucide",h())),e}}),g),Se(g,d),Se(u,j(re,{get when(){var e;return null==(e=n.item)?void 0:e.shortcut},get children(){var e=RE();return Se(e,()=>n.item.shortcut),e}}),null),Se(u,j(re,{when:i,get children(){return HE()}}),null),Se(u,j(re,{get when(){return l()&&i},get children(){var t=NE();return Se(t,j(te,{get each(){return n.children},children:t=>j(BE,{node:t,get host(){return e.host},onClose:o})})),t}}),null),w(()=>ve(u,"aria-expanded",l())),u;var u,f,g}me(["click"]);var VE=ge("<div class=oasis-titlebar><div class=oasis-titlebar-left><div class=oasis-titlebar-menubar-slot>");function zE(e){return Se((t=VE()).firstChild.firstChild,()=>e.children),t;var t}function _E(e,t,a,r){return{left:e,top:t,right:e+a,bottom:t+r,width:a,height:r}}function UE(e,t){return e.paragraphsById.get(t)??[]}var qE=ge("<span class=oasis-outline-title>"),GE=ge("<div class=oasis-outline-list>"),WE=ge("<div class=oasis-outline-panel><div class=oasis-outline-header><button class=oasis-outline-toggle><i>"),jE=ge("<div class=oasis-outline-empty>"),XE=ge("<div class=oasis-outline-item>");function ZE(e){const[t,a]=M(e.defaultCollapsed??!1),[r,n]=M([]),[o,i]=M(null);k(()=>{const e=localStorage.getItem("oasis-outline-collapsed");null!==e&&a("true"===e)});const l=()=>{const e=!t();a(e),localStorage.setItem("oasis-outline-collapsed",String(e))},s=Ji(e=>{n(function(e){var t;const a=dt(e),r=[];for(const n of a){const e=null==(t=n.style)?void 0:t.styleId;if(e&&e.startsWith("heading")){const t=e.replace("heading",""),a=parseInt(t,10);if(!isNaN(a)&&a>=1&&a<=6){const e=Ne(n).trim();e&&r.push({id:n.id,level:a,text:e,anchor:n.id})}}}return r}(e))},100);x(()=>{s(e.state.document)});const d=()=>{var t,a;const n=null==(t=e.surfaceRef)?void 0:t.call(e);if(!n)return;const o=Pi({surface:n,state:e.state,layoutMode:"wordParity"});if(!o)return;const l=null==(a=e.viewportRef)?void 0:a.call(e),s=l?l.getBoundingClientRect().top+.2*l.clientHeight:.2*window.innerHeight;let d=null,c=Number.POSITIVE_INFINITY;for(const e of r()){const t=UE(o,e.anchor)[0];if(!t)continue;const a=s-t.top;a>=0&&a<c&&(c=a,d=e.anchor)}d&&i(d)},c=Ji(d,80);let h=null;return k(()=>{var t;h=(null==(t=e.viewportRef)?void 0:t.call(e))??window,h.addEventListener("scroll",c,{passive:!0}),d(),x(()=>{r(),setTimeout(d,80)})}),A(()=>{h&&h.removeEventListener("scroll",c)}),p=WE(),u=p.firstChild,f=u.firstChild,g=f.firstChild,Se(u,j(re,{get when(){return!t()},get children(){var e=qE();return Se(e,()=>Zr("menu.view.outline")||"Outline"),e}}),f),f.$$click=l,Se(p,j(re,{get when(){return!t()},get children(){var t=GE();return Se(t,j(re,{get when(){return r().length>0},get fallback(){return Se(e=jE(),()=>Zr("outline.empty")),e;var e},get children(){return j(te,{get each(){return r()},children:t=>{return(a=XE()).$$click=()=>e.onNavigate(t.anchor),Se(a,()=>t.text),w(e=>{var r=!(o()!==t.id),n=String(t.level-1),i=t.text;return r!==e.e&&a.classList.toggle("oasis-outline-item-active",e.e=r),n!==e.t&&we(a,"--oasis-outline-level",e.t=n),i!==e.a&&ve(a,"title",e.a=i),e},{e:void 0,t:void 0,a:void 0}),a;var a}})}})),t}}),null),w(e=>{var a=!!t(),r=!!t(),n=Zr("outline.toggle"),o=t()?"panel-left-open":"panel-left-close";return a!==e.e&&p.classList.toggle("oasis-outline-panel-collapsed",e.e=a),r!==e.t&&u.classList.toggle("oasis-outline-header-collapsed",e.t=r),n!==e.a&&ve(f,"aria-label",e.a=n),o!==e.o&&ve(g,"data-lucide",e.o=o),e},{e:void 0,t:void 0,a:void 0,o:void 0}),p;var p,u,f,g}function KE(){let e=new Map,t=new Map;return function(a){const r=new Map,n=t=>null==t?void 0:t.map(t=>{const a=e.get(t.blockId),n=function(e,t){var a,r,n,o,i,l;return Boolean(e&&e.blockId===t.blockId&&e.sourceBlock===t.sourceBlock&&e.estimatedHeight===t.estimatedHeight&&(null==(a=e.tableSegment)?void 0:a.startRowIndex)===(null==(r=t.tableSegment)?void 0:r.startRowIndex)&&(null==(n=e.tableSegment)?void 0:n.endRowIndex)===(null==(o=t.tableSegment)?void 0:o.endRowIndex)&&(null==(i=e.tableSegment)?void 0:i.repeatedHeaderRowCount)===(null==(l=t.tableSegment)?void 0:l.repeatedHeaderRowCount)&&function(e,t){return e===t||!(!e||!t)&&e.text===t.text&&e.startOffset===t.startOffset&&e.endOffset===t.endOffset&&e.lines.length===t.lines.length&&t.lines.every((t,a)=>{const r=e.lines[a];return void 0!==r&&r.startOffset===t.startOffset&&r.endOffset===t.endOffset&&r.top===t.top&&r.height===t.height})}(e.layout,t.layout))}(a,t)?a:t;return r.set(n.blockId,n),n}),o=a.pages.map(e=>{const a={...e,blocks:n(e.blocks)??[],headerBlocks:n(e.headerBlocks),footerBlocks:n(e.footerBlocks),footnoteBlocks:n(e.footnoteBlocks)},r=t.get(a.id);return function(e,t){const a=Boolean(e&&e.pageSettings.width===t.pageSettings.width&&e.pageSettings.height===t.pageSettings.height&&e.pageSettings.orientation===t.pageSettings.orientation&&e.pageSettings.margins.top===t.pageSettings.margins.top&&e.pageSettings.margins.right===t.pageSettings.margins.right&&e.pageSettings.margins.bottom===t.pageSettings.margins.bottom&&e.pageSettings.margins.left===t.pageSettings.margins.left&&e.pageSettings.margins.header===t.pageSettings.margins.header&&e.pageSettings.margins.footer===t.pageSettings.margins.footer&&e.pageSettings.margins.gutter===t.pageSettings.margins.gutter);if(!e||e.id!==t.id||e.index!==t.index||e.height!==t.height||e.maxHeight!==t.maxHeight||!a||e.bodyTop!==t.bodyTop||e.bodyBottom!==t.bodyBottom||e.headerTop!==t.headerTop||e.footerTop!==t.footerTop||e.footnoteTop!==t.footnoteTop||e.footnoteSeparatorTop!==t.footnoteSeparatorTop)return!1;const r=(e,t)=>((null==e?void 0:e.length)??0)===((null==t?void 0:t.length)??0)&&(t??[]).every((t,a)=>(null==e?void 0:e[a])===t);return r(e.blocks,t.blocks)&&r(e.headerBlocks,t.headerBlocks)&&r(e.footerBlocks,t.footerBlocks)&&r(e.footnoteBlocks,t.footnoteBlocks)&&(n=e.footnoteReferenceIds,o=t.footnoteReferenceIds,((null==n?void 0:n.length)??0)===((null==o?void 0:o.length)??0)&&(o??[]).every((e,t)=>(null==n?void 0:n[t])===e));var n,o}(r,a)?r:a});return e=r,t=new Map(o.map(e=>[e.id,e])),{pages:o}}}me(["click"]);var YE=ge('<div class=oasis-editor-page-break style="display:flex;align-items:center;justify-content:center;margin:16px 0;position:relative;user-select:none"><div style="position:absolute;left:0;right:0;top:50%;border-top:1px dashed var(--oasis-toolbar-border, #e0e3e7)"></div><div style="background:var(--oasis-bg, #f6f8fb);padding:0 12px;color:var(--oasis-text-muted, #5f6368);font-size:12px;font-family:var(--oasis-font-ui, sans-serif);z-index:1">');function JE(e){return Se((t=YE()).firstChild.nextSibling,()=>Zr("metric.pageBreak")||"Page Break"),t;var t}const QE=new Map;function $E(e,t){const a=QE.get(e);if(a)return a;const r=new Image;return r.src=e,r.onload=t,QE.set(e,r),r}const eL=new WeakMap;function tL(e){if(e<=0)return String(e);let t=e,a="";for(;t>0;){const e=(t-1)%26;a=String.fromCharCode(65+e)+a,t=Math.floor((t-1)/26)}return a}function aL(e){if(e<=0||e>=4e3)return String(e);const t=[[1e3,"M"],[900,"CM"],[500,"D"],[400,"CD"],[100,"C"],[90,"XC"],[50,"L"],[40,"XL"],[10,"X"],[9,"IX"],[5,"V"],[4,"IV"],[1,"I"]];let a=e,r="";for(const[n,o]of t)for(;a>=n;)r+=o,a-=n;return r}const rL=["•","○","▪","•","○","▪"],nL=["decimal","lowerLetter","lowerRoman","decimal","lowerLetter","lowerRoman"];function oL(e,t){if(!e.list)return"";const a=e.list.level??0;if("bullet"===e.list.kind)return rL[a%rL.length]??"•";const r=function(e){const t=eL.get(e);if(t)return t;const a=new Map,r=dt(e);let n=[],o=!1;for(const i of r){const e=i.list;if(!e||"ordered"!==e.kind){n=[],o=!1;continue}const t=e.level??0;for(o||(n=[]),n.length>t+1&&(n.length=t+1);n.length<=t;)n.push(0);0===n[t]&&"number"==typeof e.startAt?n[t]=e.startAt:n[t]=n[t]+1,a.set(i.id,n[t]),o=!0}return eL.set(e,a),a}(t).get(e.id)??e.list.startAt??1;return`${function(e,t){switch(t){case"lowerLetter":return tL(e).toLowerCase();case"upperLetter":return tL(e).toUpperCase();case"lowerRoman":return aL(e).toLowerCase();case"upperRoman":return aL(e).toUpperCase();default:return String(e)}}(r,e.list.format&&"bullet"!==e.list.format?e.list.format:nL[a%nL.length]??"decimal")}.`}const iL=96/72;function lL(e,t){const a=((null==e?void 0:e.baselineShift)??0)*iL;return(null==e?void 0:e.smallCaps)?{fontSize:.8*t,baselineOffset:-a}:(null==e?void 0:e.superscript)?{fontSize:.75*t,baselineOffset:.35*-t-a}:(null==e?void 0:e.subscript)?{fontSize:.75*t,baselineOffset:.2*t-a}:{fontSize:t,baselineOffset:-a}}function sL(e,t,a,r,n,o,i){var l;Ke(t.style,r.document.styles);for(const s of a){const d=new Map;for(const e of s.slots)d.set(e.offset,e);const c=o+s.top+.8*s.height,h=0===s.index?oL(t,r.document):"";if(h){e.save(),e.font="400 15px Calibri",e.fillStyle="#000000";const t=s.slots[0],a=t?Math.max(0,t.left-24):0;e.fillText(h,n+a,c),e.restore()}for(const a of s.fragments){const h=Ze(a.styles,null==(l=t.style)?void 0:l.styleId,r.document.styles);if(h.hidden)continue;const p=h.fontSize??15,u=h.fontFamily??"Calibri, sans-serif",f=h.bold?"700":"400",g=h.italic?"italic":"normal",m=lL(h,p);if(e.save(),e.font=`${g} ${f} ${m.fontSize}px ${u}`,e.fillStyle=h.color??"#000000",h.highlight&&dL(e,s,a,n,o,h.highlight),a.image){const t=d.get(a.startOffset);if(t){const l=$E(ze(r.document,a.image.src),i);l.complete&&l.naturalWidth>0&&e.drawImage(l,n+t.left,o+s.top+s.height-a.image.height,a.image.width,a.image.height)}}else for(const t of a.chars){if("\n"===t.char||"\t"===t.char)continue;const a=d.get(t.paragraphOffset);if(!a)continue;const r=h.allCaps?t.char.toUpperCase():t.char,o=h.characterScale&&h.characterScale>0?h.characterScale/100:1;if(1!==o){const t=n+a.left;e.save(),e.translate(t,c+m.baselineOffset),e.scale(o,1),e.fillText(r,0,0),e.restore()}else e.fillText(r,n+a.left,c+m.baselineOffset)}h.underline&&cL(e,s,a,n,o,"underline",h.underlineStyle??void 0,h.underlineColor??void 0),h.strike&&cL(e,s,a,n,o,"strike"),h.doubleStrike&&cL(e,s,a,n,o,"doubleStrike"),e.restore()}const p=s.index===a.length-1;if(r.showParagraphMarks&&p){const t=s.slots[s.slots.length-1],a=s.slots.find(e=>e.offset===s.endOffset)??t;if(a){e.save(),e.font="400 13px Calibri",e.fillStyle="#9ca3af";const t=o+s.top+.8*s.height;e.fillText("¶",n+a.left+2,t),e.restore()}}}}function dL(e,t,a,r,n,o){const i=a.chars.map(e=>t.slots.find(t=>t.offset===e.paragraphOffset)).filter(e=>Boolean(e));if(0===i.length)return;const l=i[0].left,s=i[i.length-1].left+8;e.save(),e.globalAlpha=.35,e.fillStyle=o,e.fillRect(r+l,n+t.top+2,Math.max(0,s-l),Math.max(2,t.height-4)),e.restore()}function cL(e,t,a,r,n,o,i,l){const s=a.chars.map(e=>t.slots.find(t=>t.offset===e.paragraphOffset)).filter(e=>Boolean(e));if(0===s.length)return;const d=s[0].left,c=s[s.length-1].left+8,h="underline"===o?n+t.top+t.height-2:"doubleStrike"===o?n+t.top+.5*t.height:n+t.top+.52*t.height,p=r+d,u=r+c;if(e.save(),e.strokeStyle=l||e.fillStyle,"underline"===o)!function(e,t,a,r,n){if(e.setLineDash([]),e.lineWidth=Zt(n),jt(n)){const n=1.5;return e.beginPath(),e.moveTo(t,r-n),e.lineTo(a,r-n),e.moveTo(t,r+n),e.lineTo(a,r+n),void e.stroke()}if(Xt(n))return void function(e,t,a,r){const n=1.5,o=4;e.beginPath(),e.moveTo(t,r);for(let i=t;i<=a;i+=1){const a=Math.sin((i-t)/o*Math.PI)*n;e.lineTo(i,r+a)}e.stroke()}(e,t,a,r);const o=Kt(n);o&&e.setLineDash(o);e.beginPath(),e.moveTo(t,r),e.lineTo(a,r),e.stroke(),e.setLineDash([])}(e,p,u,h,i);else if("doubleStrike"===o){const t=1.3;e.beginPath(),e.lineWidth=1,e.setLineDash([]),e.moveTo(p,h-t),e.lineTo(u,h-t),e.moveTo(p,h+t),e.lineTo(u,h+t),e.stroke()}else e.beginPath(),e.lineWidth=1,e.setLineDash([]),e.moveTo(p,h),e.lineTo(u,h),e.stroke();e.restore()}const hL={DEV:!0};function pL(e,t,a,r,n,o,i,l,s,d){const c=Ai({table:a?rr(t,a):t,state:r,pageIndex:s,layoutMode:fL(),originX:n,originY:o,contentWidth:i,estimatedHeight:l});for(const p of c.cells){p.shading&&(e.fillStyle=p.shading,e.fillRect(p.left,p.top,p.width,p.height)),uL(e,p.left,p.top,p.width,p.height,p.borders);for(const t of p.paragraphs)sL(e,t.paragraph,t.lines,r,t.originX,t.originY,d)}const h=hL??{};c.unsupported.length>0&&h.DEV&&console.warn("[oasis-editor] canvas table unsupported features",{tableId:t.id,reasons:c.unsupported})}function uL(e,t,a,r,n,o){const i=t+r,l=a+n,s=(t,a,r,n,o)=>{"none"===t.type||t.width<=0||(e.save(),e.beginPath(),e.strokeStyle=t.color,e.lineWidth=t.width,"dashed"===t.type?e.setLineDash([5,3]):"dotted"===t.type?e.setLineDash([1,3]):e.setLineDash([]),e.moveTo(a,r),e.lineTo(n,o),e.stroke(),e.restore())};s(o.top,t,a,i,a),s(o.right,i,a,i,l),s(o.bottom,t,l,i,l),s(o.left,t,a,t,l)}function fL(){return"wordParity"}function gL(e,t,a,r,n,o,i,l){let s=n;for(const d of a){if("paragraph"===d.sourceBlock.type&&d.layout){const a=Ke(d.sourceBlock.style,t.document.styles),n=0===d.layout.startOffset?a.spacingBefore??0:0;sL(e,d.sourceBlock,d.layout.lines,t,r,s+n,l)}else"table"===d.sourceBlock.type&&pL(e,d.sourceBlock,d.tableSegment,t,r,s,o,d.estimatedHeight,i,l);s+=Math.max(0,d.estimatedHeight)}}function mL(e){let t,a,r,n,o,i,l=0,s=0,d=0,c=null;const h=()=>{null===c&&(c=requestAnimationFrame(u))},p=()=>{t=void 0},u=()=>{c=null;const u=e.getCanvas();if(!u)return;const f=u.getContext("2d");if(!f)return;const g=e.getPage(),m=e.getState(),v=m.document.styles,y=m.showMargins,b=m.showParagraphMarks,M=m.activeZone??"main",w=m.activeFootnoteId;if(g===t&&v===a&&y===r&&b===n&&M===o&&w===i)return;t=g,a=v,r=y,n=b,o=M,i=w;const x=window.devicePixelRatio||1,C=g.pageSettings.width,S=g.pageSettings.height;l===C&&s===S&&d===x||(u.width=Math.floor(C*x),u.height=Math.floor(S*x),u.style.width=`${C}px`,u.style.height=`${S}px`,l=C,s=S,d=x),f.setTransform(x,0,0,x,0,0),f.fillStyle="#ffffff",f.fillRect(0,0,C,S);const I=g.pageSettings.margins.left+g.pageSettings.margins.gutter,k=g.bodyTop??at(g.pageSettings),A=g.headerTop??tt(g.pageSettings),T=g.footerTop??g.bodyBottom??rt(g.pageSettings),P=function(e){const t=e.bodyTop??at(e.pageSettings),a=rt(e.pageSettings),r=e.footerTop??a;return Math.max(t,Math.min(a,r))}(g),E=$e(g.pageSettings),L=g.bodyBottom??S,O=()=>{p(),h()};if("main"===M&&(f.save(),f.fillStyle="rgba(148, 163, 184, 0.08)",k>0&&f.fillRect(0,0,C,k),P<S&&f.fillRect(0,P,C,S-P),f.restore()),m.showMargins){const e=Math.max(24,Math.floor(L-k));f.save(),f.strokeStyle="#d1d5db",f.lineWidth=1,f.setLineDash([5,5]),f.strokeRect(I,k,E,e),f.restore()}const R="header"===M||"footer"===M||"footnote"===M?.5:1,H="main"===M?.42:"header"===M?1:.42,N="main"===M?.42:"footer"===M?1:.42,D="footnote"===M?1:"main"===M?.86:.42;if(f.save(),f.globalAlpha=H,gL(f,m,g.headerBlocks??[],I,A,E,g.index,O),f.restore(),f.save(),f.globalAlpha=R,gL(f,m,g.blocks,I,k,E,g.index,O),f.restore(),g.footnoteBlocks&&g.footnoteBlocks.length>0&&void 0!==g.footnoteTop){f.save(),f.globalAlpha=D;const e=g.footnoteSeparatorTop??g.footnoteTop,t=Math.max(e,P);f.beginPath(),f.rect(0,e,C,t-e),f.clip(),void 0!==g.footnoteSeparatorTop&&(f.strokeStyle="#64748b",f.lineWidth=1,f.beginPath(),f.moveTo(I,g.footnoteSeparatorTop+.5),f.lineTo(I+Math.min(180,.35*E),g.footnoteSeparatorTop+.5),f.stroke()),function(e,t,a,r,n,o,i,l,s){let d=o;const c=new Set,h=new Map(r.map(e=>{var a;return[e,(null==(a=Mr(t.document,e))?void 0:a.run.text)??""]}));for(const p of a){const a=r.find(e=>p.blockId.startsWith(`${e}:`));if(a&&!c.has(a)){const t=h.get(a);if(t){const a=lL({superscript:!0},11);e.save(),e.font=`400 ${a.fontSize}px Calibri, sans-serif`,e.fillStyle="#000000",e.fillText(t,n,d+12+a.baselineOffset),e.restore()}c.add(a)}if("paragraph"===p.sourceBlock.type&&p.layout){const a=Ke(p.sourceBlock.style,t.document.styles),r=0===p.layout.startOffset?a.spacingBefore??0:0;sL(e,p.sourceBlock,p.layout.lines,t,n+no,d+r,s)}else"table"===p.sourceBlock.type&&pL(e,p.sourceBlock,p.tableSegment,t,n+no,d,Math.max(24,i-no),p.estimatedHeight,l,s);d+=Math.max(0,p.estimatedHeight)+2}}(f,m,g.footnoteBlocks,g.footnoteReferenceIds??[],I,g.footnoteTop,E,g.index,O),f.restore()}if(void 0!==g.bodyBottom&&(f.save(),f.globalAlpha=N,gL(f,m,g.footerBlocks??[],I,T,E,g.index,O),f.restore()),"main"!==M){f.save(),f.strokeStyle="rgba(71, 85, 105, 0.55)",f.lineWidth=1,f.setLineDash([6,4]);const e=Math.max(0,I-10),t=Math.min(C,I+E+10);f.beginPath(),f.moveTo(e,k+.5),f.lineTo(t,k+.5),f.moveTo(e,L+.5),f.lineTo(t,L+.5),f.stroke(),f.restore()}};return{schedulePaint:h,invalidatePage:p,invalidateDecorations:()=>{r=void 0,n=void 0},invalidateActiveZone:()=>{o=void 0,i=void 0},dispose(){null!==c&&(cancelAnimationFrame(c),c=null)}}}var vL=ge('<div class="oasis-editor-paper-stack oasis-editor-canvas-stack"style=position:relative>'),yL=ge("<div class=oasis-editor-canvas-page-slot style=position:relative>"),bL=ge("<div class=oasis-editor-paper data-renderer=canvas data-testid=editor-page style=position:relative;z-index:1><canvas>");const ML={composeMeasuredParagraphLines:e=>Ro.composeMeasuredParagraphLines(e),resolveRenderedLineHeightPx:(e,t)=>Ro.resolveRenderedLineHeightPx(e,t)};function wL(e){const t=KE(),a=C(()=>{var a,r;return t(Mi(e.state().document,void 0,null==(a=e.measuredBlockHeights)?void 0:a.call(e),null==(r=e.measuredParagraphLayouts)?void 0:r.call(e),{layoutMode:e.layoutMode??"wordParity",measurer:ML}))});return Se(r=vL(),j(ae,{get each(){return a().pages},children:(t,a)=>{return Se(r=yL(),j(re,{when:a>0,get children(){return j(JE,{pageIndex:a})}}),null),Se(r,j(xL,{get page(){return t()},index:a,get state(){return e.state()},get onSurfaceMouseDown(){return e.onSurfaceMouseDown},get onSurfaceClick(){return e.onSurfaceClick},get onSurfaceMouseMove(){return e.onSurfaceMouseMove},get onSurfaceDblClick(){return e.onSurfaceDblClick}}),null),r;var r}})),r;var r}function xL(e){let t;const a=mL({getCanvas:()=>t,getPage:()=>e.page,getState:()=>e.state});return x(()=>{e.page,e.state.document,a.schedulePaint()}),x(()=>{e.state.showMargins,a.invalidateDecorations(),a.schedulePaint()}),x(()=>{e.state.showParagraphMarks,a.invalidateDecorations(),a.schedulePaint()}),x(()=>{e.state.activeZone,e.state.activeFootnoteId,a.invalidateActiveZone(),a.schedulePaint()}),A(()=>a.dispose()),(()=>{var a=bL(),r=a.firstChild;be(a,"dblclick",e.onSurfaceDblClick,!0),be(a,"mousemove",e.onSurfaceMouseMove,!0),be(a,"click",e.onSurfaceClick,!0),be(a,"mousedown",e.onSurfaceMouseDown,!0);return"function"==typeof t?Ce(t,r):t=r,w(t=>{var r=e.index,n=`${e.page.pageSettings.width}px`,o=`${e.page.pageSettings.height}px`;return r!==t.e&&ve(a,"data-page-index",t.e=r),n!==t.t&&we(a,"width",t.t=n),o!==t.a&&we(a,"min-height",t.a=o),t},{e:void 0,t:void 0,a:void 0}),a})()}me(["mousedown","click","mousemove","dblclick"]);var CL=ge("<span aria-hidden=true class=oasis-editor-caret>");function SL(e){return t=CL(),w(a=>{var r=!!e.active,n={left:`${e.left}px`,top:`${e.top}px`,height:`${e.height}px`,...e.fixed?{position:"fixed",zIndex:10002}:{}};return r!==a.e&&t.classList.toggle("oasis-editor-caret-active",a.e=r),a.t=Me(t,n,a.t),a},{e:void 0,t:void 0}),t;var t}var IL=ge("<div aria-hidden=true class=oasis-editor-selection-overlay-root>"),kL=ge("<span aria-hidden=true class=oasis-editor-selection-box data-testid=editor-selection-box>");function AL(e){return Se(t=IL(),j(ae,{get each(){return e.boxes},children:e=>{return t=kL(),w(a=>{var r=`${e().left}px`,n=`${e().top}px`,o=`${e().width}px`,i=`${e().height}px`;return r!==a.e&&we(t,"left",a.e=r),n!==a.t&&we(t,"top",a.t=n),o!==a.a&&we(t,"width",a.a=o),i!==a.o&&we(t,"height",a.o=i),a},{e:void 0,t:void 0,a:void 0,o:void 0}),t;var t}})),t;var t}var TL=ge("<div class=oasis-editor-revision-overlay data-testid=editor-revision-overlay><div class=oasis-editor-revision-overlay-content><span class=oasis-editor-revision-overlay-author><strong>:</strong> </span><span class=oasis-editor-revision-overlay-date></span></div><div class=oasis-editor-revision-overlay-arrow>");function PL(e){const t=()=>{try{return new Date(e.box.date).toLocaleString()}catch(fR){return"Data desconhecida"}},a=()=>"insert"===e.box.type?"Inserido por":"Excluído por";return(()=>{var r=TL(),n=r.firstChild.firstChild,o=n.firstChild,i=o.firstChild;o.nextSibling;var l=n.nextSibling;return Se(o,a,i),Se(n,()=>e.box.author,null),Se(l,t),w(t=>{var a=`${e.box.left}px`,n=e.box.top-40+"px";return a!==t.e&&we(r,"left",t.e=a),n!==t.t&&we(r,"top",t.t=n),t},{e:void 0,t:void 0}),r})()}var EL=ge("<div class=oasis-editor-floating-toolbar data-testid=editor-floating-table-toolbar><div class=oasis-editor-toolbar-group></div><div class=oasis-editor-toolbar-group></div><div class=oasis-editor-toolbar-group></div><div class=oasis-editor-toolbar-group></div><div class=oasis-editor-toolbar-group>");function LL(e){const t=()=>e.host(),a=(e,a)=>t().commands.execute(e,a),r=e=>!t().commands.state(e).isEnabled,[n,o]=M(null),[i,l]=M(0),s=()=>{const t=e.surfaceRef();o(t?t.getBoundingClientRect():null)};let d=null;const c=()=>{null===d&&(d=requestAnimationFrame(()=>{d=null,s(),l(e=>e+1)}))};k(()=>{s(),window.addEventListener("scroll",c,!0),window.addEventListener("resize",c),A(()=>{window.removeEventListener("scroll",c,!0),window.removeEventListener("resize",c),null!==d&&cancelAnimationFrame(d)})});const h=C(()=>{if(i(),!e.visible())return null;const t=e.selectionBoxes();if(0===t.length)return null;const a=n();if(!a)return null;let r=1/0,o=1/0,l=-1/0;for(const e of t)e.left<r&&(r=e.left),e.top<o&&(o=e.top),e.left+e.width>l&&(l=e.left+e.width);if(!Number.isFinite(r)||!Number.isFinite(o)||!Number.isFinite(l))return null;return{centerX:a.left+(r+l)/2,top:a.top+o}});return C(()=>{e.visible(),e.selectionBoxes(),"undefined"!=typeof window&&c()}),j(re,{get when(){return h()},children:e=>j(Re,{get mount(){return document.body},get children(){var t=EL(),n=t.firstChild,o=n.nextSibling,i=o.nextSibling,l=i.nextSibling,s=l.nextSibling;return t.$$mousedown=e=>e.preventDefault(),Se(n,j(on,{icon:"combine","data-testid":"editor-floating-toolbar-merge",get disabled(){return r("tableMerge")},onClick:()=>a("tableMerge"),get tooltip(){return Zr("table.mergeTooltip")}}),null),Se(n,j(on,{icon:"split","data-testid":"editor-floating-toolbar-split",get disabled(){return r("tableSplit")},onClick:()=>a("tableSplit"),get tooltip(){return Zr("table.splitTooltip")}}),null),Se(t,j(Mn,{}),o),Se(o,j(on,{icon:"align-left","data-testid":"editor-floating-toolbar-align-left",onClick:()=>a("tableAlignLeft"),get tooltip(){return Zr("table.alignLeft")}}),null),Se(o,j(on,{icon:"align-center","data-testid":"editor-floating-toolbar-align-center",onClick:()=>a("tableAlignCenter"),get tooltip(){return Zr("table.alignCenter")}}),null),Se(o,j(on,{icon:"align-right","data-testid":"editor-floating-toolbar-align-right",onClick:()=>a("tableAlignRight"),get tooltip(){return Zr("table.alignRight")}}),null),Se(t,j(Mn,{}),i),Se(i,j(on,{icon:"palette","data-testid":"editor-floating-toolbar-shading",onClick:()=>{const e=prompt(Zr("table.cellBgColorPrompt"),"#f1f5f9");null!==e&&a("tableCellShading",e)},get tooltip(){return Zr("table.cellColor")}}),null),Se(i,j(on,{icon:"frame","data-testid":"editor-floating-toolbar-borders",onClick:()=>a("tableCellBorders"),get tooltip(){return Zr("table.applyBorders")}}),null),Se(i,j(on,{icon:"square","data-testid":"editor-floating-toolbar-no-borders",onClick:()=>a("tableCellNoBorders"),get tooltip(){return Zr("table.removeBorders")}}),null),Se(t,j(Mn,{}),l),Se(l,j(on,{icon:"arrow-up-to-line","data-testid":"editor-floating-toolbar-insert-row-above",get disabled(){return r("tableInsertRowBefore")},onClick:()=>a("tableInsertRowBefore"),get tooltip(){return Zr("table.insertRowAbove")}}),null),Se(l,j(on,{icon:"arrow-down-to-line","data-testid":"editor-floating-toolbar-insert-row-below",get disabled(){return r("tableInsertRowAfter")},onClick:()=>a("tableInsertRowAfter"),get tooltip(){return Zr("table.insertRowBelow")}}),null),Se(l,j(on,{icon:"arrow-left-to-line","data-testid":"editor-floating-toolbar-insert-column-left",get disabled(){return r("tableInsertColumnBefore")},onClick:()=>a("tableInsertColumnBefore"),get tooltip(){return Zr("table.insertColumnLeft")}}),null),Se(l,j(on,{icon:"arrow-right-to-line","data-testid":"editor-floating-toolbar-insert-column-right",get disabled(){return r("tableInsertColumnAfter")},onClick:()=>a("tableInsertColumnAfter"),get tooltip(){return Zr("table.insertColumnRight")}}),null),Se(t,j(Mn,{}),s),Se(s,j(on,{icon:"rows-3","data-testid":"editor-floating-toolbar-delete-row",get disabled(){return r("tableDeleteRow")},onClick:()=>a("tableDeleteRow"),get tooltip(){return Zr("table.deleteRow")}}),null),Se(s,j(on,{icon:"columns-3","data-testid":"editor-floating-toolbar-delete-column",get disabled(){return r("tableDeleteColumn")},onClick:()=>a("tableDeleteColumn"),get tooltip(){return Zr("table.deleteColumn")}}),null),w(a=>{var r=`${e().centerX}px`,n=`${e().top}px`;return r!==a.e&&we(t,"left",a.e=r),n!==a.t&&we(t,"top",a.t=n),a},{e:void 0,t:void 0}),t}})})}me(["mousedown"]);var OL=ge('<div data-testid=editor-editor-shell><div class=oasis-editor-editor data-testid=editor-editor><div class=oasis-editor-editor-scroll-content data-testid=editor-editor-scroll-content><div aria-hidden=true class=oasis-editor-image-selection-overlay></div><textarea aria-label="Editor input"autocomplete=off autocapitalize=off class=oasis-editor-input data-testid=editor-input value style=pointer-events:none></textarea><input accept=.docx data-testid=editor-import-docx-input type=file style=display:none><input accept="image/png, image/jpeg, image/gif"data-testid=editor-insert-image-input type=file style=display:none></div></div><div class=oasis-editor-statusbar data-testid=editor-statusbar><span class=oasis-editor-statusbar-item data-testid=editor-statusbar-word-count></span><span class=oasis-editor-statusbar-item data-testid=editor-statusbar-character-count></span><span class=oasis-editor-statusbar-item></span><span class=oasis-editor-statusbar-item>: 100%'),RL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=nw tabindex=-1 type=button>"),HL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=n tabindex=-1 type=button>"),NL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=ne tabindex=-1 type=button>"),DL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=e tabindex=-1 type=button>"),FL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=se tabindex=-1 type=button>"),BL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=s tabindex=-1 type=button>"),VL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=sw tabindex=-1 type=button>"),zL=ge("<button aria-hidden=true class=oasis-editor-image-resize-handle data-direction=w tabindex=-1 type=button>"),_L=ge("<div class=oasis-editor-import-overlay data-testid=editor-import-overlay role=status aria-live=polite><div class=oasis-editor-import-card><div class=oasis-editor-import-title></div><div class=oasis-editor-import-phase data-testid=editor-import-phase></div><div class=oasis-editor-import-progress-track><div class=oasis-editor-import-progress-bar data-testid=editor-import-progress-bar></div></div><div class=oasis-editor-import-progress-label>"),UL=ge("<span class=oasis-editor-import-done-icon>"),qL=ge("<span class=oasis-editor-import-error-icon>"),GL=ge("<span>");function WL(e){const t=()=>e.layout??{},a=()=>e.overlays,r=()=>e.refs??{},n=()=>e.surfaceHandlers,o=()=>e.inputHandlers,i=()=>e.fileHandlers;let l,s;const d=()=>{const e=t().viewportHeight;return"number"==typeof e?`${e}px`:e??"min(72vh, 920px)"},c=C(()=>({width:`min(${Qe(e.state().document).width+68}px, 100%)`,height:"100%","max-height":d(),...t().style??{}})),h=C(()=>e.state().document),p=C(()=>st(h()).reduce((e,t)=>e+De(t),0)),u=C(()=>function(e){const t=st(e);let a=0;for(const r of t){const e=r.runs.reduce((e,t)=>e+t.text,"");e.trim()&&(a+=e.split(/[\s\p{P}]+/u).filter(e=>e.length>0).length)}return a}(h())),f=C(()=>{var e,a,r,n;return"wordParity"===t().layoutMode?Mi(h(),void 0,null==(a=(e=t()).measuredBlockHeights)?void 0:a.call(e),null==(n=(r=t()).measuredParagraphLayouts)?void 0:n.call(r),{layoutMode:"wordParity"}):Mi(h())}),[g,m]=M(null),v=()=>{const e=s;if(!e)return void m(null);const t=Array.from(e.querySelectorAll(".oasis-editor-paper[data-page-index]"));if(0===t.length)return void m(null);const a=e.getBoundingClientRect(),r=a.top+.5*a.height;let n=0,o=Number.POSITIVE_INFINITY;for(const i of t){const e=i.getBoundingClientRect(),t=e.top+.5*e.height,a=Math.abs(t-r);a<o&&(o=a,n=Number(i.dataset.pageIndex??"0"))}m(Number.isFinite(n)?n:null)},y=()=>{const t=g();if(null!==t)return Math.max(1,t+1);const a=f(),r=e.state().selection.focus.paragraphId,n=a.pages.findIndex(e=>e.blocks.some(e=>e.sourceBlockId===r));return-1===n?1:n+1},b=C(()=>a().selectedImageBox());x(()=>{f(),queueMicrotask(v)});const S=(e,t,a)=>{a.preventDefault(),a.stopPropagation(),n().onImageResizeHandleMouseDown(t.paragraphId,t.startOffset,e,a)};return(()=>{var d,h=OL(),g=h.firstChild,m=g.firstChild,M=m.firstChild,x=M.nextSibling,C=x.nextSibling,I=C.nextSibling,k=g.nextSibling,T=k.firstChild,P=T.nextSibling,E=P.nextSibling,L=E.nextSibling,O=L.firstChild;be(g,"contextmenu",n().onEditorContextMenu,!0),be(g,"mousedown",n().onEditorMouseDown,!0),be(g,"drop",n().onDrop),be(g,"dragover",n().onDragOver),Ce(e=>{var t,a;s=e,null==(a=(t=r()).onViewportRef)||a.call(t,e);const n=()=>{v()};e.addEventListener("scroll",n,{passive:!0}),queueMicrotask(v),A(()=>{e.removeEventListener("scroll",n)})},g),Ce(e=>{var t,a;l=e,null==(a=(t=r()).onSurfaceRef)||a.call(t,e)},m),Se(m,j(wL,{get state(){return e.state},get measuredBlockHeights(){return t().measuredBlockHeights},get measuredParagraphLayouts(){return t().measuredParagraphLayouts},get layoutMode(){return t().layoutMode},viewportRef:()=>s??void 0,get onSurfaceMouseDown(){return n().onSurfaceMouseDown},get onSurfaceClick(){return n().onSurfaceClick},get onSurfaceMouseMove(){return n().onSurfaceMouseMove},get onSurfaceDblClick(){return n().onSurfaceDblClick},get onParagraphMouseDown(){return n().onParagraphMouseDown},get onImageMouseDown(){return n().onImageMouseDown},get onImageResizeHandleMouseDown(){return n().onImageResizeHandleMouseDown},get onTableDragHandleMouseDown(){return n().onTableDragHandleMouseDown},get onRevisionMouseEnter(){return n().onRevisionMouseEnter},get onRevisionMouseLeave(){return n().onRevisionMouseLeave}}),M),Se(m,j(re,{get when(){return a().hoveredRevision()},children:e=>j(PL,{get box(){return e()}})}),M),Se(m,j(re,{get when(){return a().selectionBoxes().length>0},get children(){return j(AL,{get boxes(){return a().selectionBoxes()}})}}),M),M.$$mousedown=e=>{const a=b();!t().readOnly&&a&&(e.preventDefault(),n().onImageMouseDown(a.paragraphId,a.startOffset,e))},Se(M,(d=pe(()=>!t().readOnly),()=>{return d()&&[(l=RL(),l.$$mousedown=e=>{const t=b();t&&S("nw",t,e)},l),(i=HL(),i.$$mousedown=e=>{const t=b();t&&S("n",t,e)},i),(o=NL(),o.$$mousedown=e=>{const t=b();t&&S("ne",t,e)},o),(n=DL(),n.$$mousedown=e=>{const t=b();t&&S("e",t,e)},n),(r=FL(),r.$$mousedown=e=>{const t=b();t&&S("se",t,e)},r),(a=BL(),a.$$mousedown=e=>{const t=b();t&&S("s",t,e)},a),(t=VL(),t.$$mousedown=e=>{const t=b();t&&S("sw",t,e)},t),(e=zL(),e.$$mousedown=e=>{const t=b();t&&S("w",t,e)},e)];var e,t,a,r,n,o,i,l})),Se(m,j(re,{get when(){return pe(()=>!!a().toolbarHost)()&&a().showFloatingTableToolbar},get children(){return j(LL,{get host(){return a().toolbarHost},get selectionBoxes(){return a().selectionBoxes},get visible(){return a().showFloatingTableToolbar},surfaceRef:()=>l})}}),x),Se(m,j(re,{get when(){return a().showCaret()},get children(){return j(SL,{get active(){return a().focused()},get left(){return a().caretBox().left},get top(){return a().caretBox().top},get height(){return a().caretBox().height}})}}),x),be(x,"paste",o().onPaste),be(x,"keydown",o().onKeyDown,!0),be(x,"input",o().onInput,!0),be(x,"focus",o().onInputFocus),be(x,"cut",o().onCut),be(x,"copy",o().onCopy),be(x,"compositionstart",o().onCompositionStart),be(x,"compositionend",o().onCompositionEnd),be(x,"blur",o().onInputBlur);var R=r().onTextareaRef;"function"==typeof R?Ce(R,x):r().onTextareaRef=x,ve(x,"spellcheck",!1),be(C,"change",i().onImportInputChange);var H=r().onImportInputRef;"function"==typeof H?Ce(H,C):r().onImportInputRef=C,be(I,"change",i().onImageInputChange);var N=r().onImageInputRef;return"function"==typeof N?Ce(N,I):r().onImageInputRef=I,Se(h,j(re,{get when(){var e,t;return null==(t=(e=a()).importProgress)?void 0:t.call(e)},children:e=>{const t="done"===e().phase,a="error"===e().phase;return o=_L(),i=o.firstChild.firstChild,l=i.nextSibling,s=l.nextSibling,d=s.firstChild,c=s.nextSibling,o.classList.toggle("oasis-editor-import-overlay-done",!!t),o.classList.toggle("oasis-editor-import-overlay-error",!!a),ve(o,"aria-busy",!t&&!a),Se(i,()=>Zr("import.overlay.title")),Se(l,()=>Zr(`import.phase.${e().phase}`)),d.classList.toggle("oasis-editor-import-progress-bar-done",!!t),d.classList.toggle("oasis-editor-import-progress-bar-error",!!a),Se(c,t?(Se(n=UL(),()=>Zr("import.phase.done")),n):a?(Se(r=qL(),()=>Zr("import.phase.error")),r):[pe(()=>Math.round(e().progress)),"%"]),w(t=>{var a=!("applying-editor-state"!==e().phase&&"stabilizing-layout"!==e().phase),r=`${e().progress}%`;return a!==t.e&&d.classList.toggle("oasis-editor-import-progress-bar-indeterminate",t.e=a),r!==t.t&&we(d,"width",t.t=r),t},{e:void 0,t:void 0}),o;var r,n,o,i,l,s,d,c}}),k),Se(T,()=>Zr("status.words",[u()])),Se(P,()=>Zr("status.characters",[p()])),Se(E,()=>Zr("status.page",[y(),Math.max(1,f().pages.length)])),Se(L,()=>Zr("status.zoom"),O),Se(k,j(re,{get when(){return a().persistenceStatus},get children(){return(()=>{const e=a().persistenceStatus().toLowerCase(),t=e.includes("saved")?"status.saved":e.includes("saving")?"status.saving":e.includes("error")?"status.error":null;return j(re,{when:t,get children(){var a=GL();return Se(a,()=>Zr(t)),w(()=>ye(a,`oasis-editor-statusbar-item oasis-editor-persistence-status oasis-editor-status-${e.replace("...","ing").replace(".","")}`)),a}})})()}}),null),w(e=>{var r,n,o,i,l="oasis-editor-editor-shell"+(t().class?` ${t().class}`:""),s=c(),d=b()?void 0:"none",p=`${(null==(r=b())?void 0:r.left)??0}px`,u=`${(null==(n=b())?void 0:n.top)??0}px`,f=`${(null==(o=b())?void 0:o.width)??0}px`,g=`${(null==(i=b())?void 0:i.height)??0}px`,m=!t().readOnly&&b()?"auto":"none",v=t().readOnly,y=`${a().inputBox().left}px`,w=`${a().inputBox().top}px`,C=`${a().inputBox().height}px`;return l!==e.e&&ye(h,e.e=l),e.t=Me(h,s,e.t),d!==e.a&&we(M,"display",e.a=d),p!==e.o&&we(M,"left",e.o=p),u!==e.i&&we(M,"top",e.i=u),f!==e.n&&we(M,"width",e.n=f),g!==e.s&&we(M,"height",e.s=g),m!==e.h&&we(M,"pointer-events",e.h=m),v!==e.r&&(x.readOnly=e.r=v),y!==e.d&&we(x,"left",e.d=y),w!==e.l&&we(x,"top",e.l=w),C!==e.u&&we(x,"height",e.u=C),e},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0,n:void 0,s:void 0,h:void 0,r:void 0,d:void 0,l:void 0,u:void 0}),h})()}me(["mousedown","contextmenu","input","keydown"]);var jL=ge("<div class=oasis-editor-main-container><section class=oasis-editor-stage>");function XL(e){let t,a;const r=a=>{var r,n;t=a,null==(n=(r=e.refs).onSurfaceRef)||n.call(r,a)},n=t=>{var r,n;a=t,null==(n=(r=e.refs).onViewportRef)||n.call(r,t)},o=r=>{if(!t)return;const n=Pi({surface:t,state:e.state,layoutMode:e.layout.layoutMode??"wordParity"});if(!n)return;const o=UE(n,r)[0];if(!o)return;const i=a,l=o.top;if(i){const e=i.getBoundingClientRect();return void i.scrollTo({top:i.scrollTop+(l-e.top)-24,behavior:"smooth"})}window.scrollTo({top:window.scrollY+l-24,behavior:"smooth"})};return[j(re,{get when(){return e.showChrome},get children(){return[j(re,{get when(){return e.showTitleBar},get fallback(){return j(re,{get when(){return e.showMenubar},get children(){return j(FE,{get host(){return e.toolbarHost}})}})},get children(){return j(zE,{get children(){return j(re,{get when(){return e.showMenubar},get children(){return j(FE,{get host(){return e.toolbarHost}})}})}})}}),j(re,{get when(){return e.showToolbar},get children(){return j(Jn,{get host(){return e.toolbarHost},get registry(){return e.toolbarRegistry},get showFileGroup(){return!e.showMenubar}})}})]}}),(i=jL(),l=i.firstChild,Se(i,j(re,{get when(){return pe(()=>!!e.showChrome)()&&e.showOutline},get children(){return j(ZE,{get state(){return e.state},onNavigate:o,surfaceRef:()=>t,viewportRef:()=>a})}}),l),Se(l,j(WL,{state:()=>e.state,get layout(){return{...e.layout,measuredBlockHeights:()=>e.measuredBlockHeights(),measuredParagraphLayouts:()=>e.measuredParagraphLayouts(),viewportHeight:e.viewportHeight(),readOnly:e.isReadOnly}},get overlays(){return{...e.overlays,toolbarHost:e.toolbarHost,persistenceStatus:()=>e.persistenceStatus(),showFloatingTableToolbar:()=>e.showFloatingTableToolbar()}},get refs(){return{...e.refs,onViewportRef:n,onSurfaceRef:r}},get surfaceHandlers(){return e.surfaceHandlers},get inputHandlers(){return e.inputHandlers},get fileHandlers(){return e.fileHandlers}})),i)];var i,l}var ZL=ge('<div class=oasis-inline-shell style="border:1px solid var(--oasis-toolbar-border);border-radius:var(--oasis-radius);overflow:hidden;display:flex;flex-direction:column"><div class=oasis-editor-main-container><section class=oasis-editor-stage style=padding:0>');function KL(e){return t=ZL(),a=t.firstChild,r=a.firstChild,Se(t,j(re,{get when(){return pe(()=>!!e.showChrome)()&&e.showToolbar},get children(){return j(Jn,{get host(){return e.toolbarHost},get registry(){return e.toolbarRegistry}})}}),a),Se(r,j(WL,{state:()=>e.state,get layout(){return{...e.layout,measuredBlockHeights:()=>e.measuredBlockHeights(),measuredParagraphLayouts:()=>e.measuredParagraphLayouts(),viewportHeight:e.viewportHeight(),readOnly:e.isReadOnly}},get overlays(){return{...e.overlays,toolbarHost:e.toolbarHost,persistenceStatus:()=>e.persistenceStatus(),showFloatingTableToolbar:()=>e.showFloatingTableToolbar()}},get refs(){return e.refs},get surfaceHandlers(){return e.surfaceHandlers},get inputHandlers(){return e.inputHandlers},get fileHandlers(){return e.fileHandlers}})),t;var t,a,r}var YL=ge("<div class=oasis-balloon-shell><div class=oasis-editor-main-container><section class=oasis-editor-stage style=padding:0>");function JL(e){return Se((t=YL()).firstChild.firstChild,j(WL,{state:()=>e.state,get layout(){return{...e.layout,measuredBlockHeights:()=>e.measuredBlockHeights(),measuredParagraphLayouts:()=>e.measuredParagraphLayouts(),viewportHeight:e.viewportHeight(),readOnly:e.isReadOnly}},get overlays(){return{...e.overlays,toolbarHost:e.toolbarHost,persistenceStatus:()=>e.persistenceStatus(),showFloatingTableToolbar:()=>e.showFloatingTableToolbar()}},get refs(){return e.refs},get surfaceHandlers(){return e.surfaceHandlers},get inputHandlers(){return e.inputHandlers},get fileHandlers(){return e.fileHandlers}})),t;var t}function QL(e){const t=C(()=>{var t,a;const r=e.targetPos(),n=e.surfaceRef;if(!n)return null;const o=Pi({surface:n,state:e.state,layoutMode:"wordParity"});let i=0,l=0,s=28;if(o){const t=ct(e.state).find(e=>e.id===r.paragraphId),a=t?Be(t,r):0,n=function(e,t,a){const r=UE(e,t.paragraphId);if(0===r.length)return null;const n=function(e,t){if(0===e.length)return null;for(const a of e)if(t>=a.startOffset&&t<=a.endOffset)return a;return e[e.length-1]??null}(r,a);if(!n)return null;const o=function(e,t){if(0===e.lines.length)return null;for(const a of e.lines)if(t>=a.startOffset&&t<=a.endOffset)return a;return e.lines[e.lines.length-1]??null}(n,a);if(!o||0===o.slots.length)return _E(n.left,n.top,1,Math.max(n.height,16));const i=o.slots.find(e=>e.offset===a)??o.slots.reduce((e,t)=>Math.abs(t.offset-a)<Math.abs(e.offset-a)?t:e,o.slots[0]);return _E(i.left,i.top,1,i.height||o.height)}(o,r,a);if(n)return{viewportLeft:n.left,viewportTop:n.top,height:Math.min(n.height||28,32)};const i=function(e,t,a="start"){const r=UE(e,t);if(0===r.length)return null;const n="end"===a?r[r.length-1]:r[0];return _E(n.left,n.top,n.width,n.height)}(o,r.paragraphId,"end");if(i)return{viewportLeft:i.left,viewportTop:i.top,height:i.height||28}}const d=(null==(t=e.caretViewport)?void 0:t.call(e))??null;if(d)return i=d.left,l=d.top,s=Math.max(12,Math.min(36,d.height)),{viewportLeft:i,viewportTop:l,height:s};const c=(null==(a=e.pointerPos)?void 0:a.call(e))??null;return c?(i=c.x,l=c.y-12,s=24,{viewportLeft:i,viewportTop:l,height:s}):{viewportLeft:i,viewportTop:l,height:s}});return j(re,{get when(){return t()},children:e=>j(SL,{active:!0,fixed:!0,get left(){return e().viewportLeft},get top(){return e().viewportTop},get height(){return e().height}})})}var $L=ge("<div class=oasis-editor-table-resize-guide>"),eO=ge("<img class=oasis-editor-image-ghost>"),tO=ge("<div class=oasis-editor-table-ghost>");function aO(e){return[j(re,{get when(){return e.tableResize.resizing()},children:e=>{return t=$L(),w(a=>{var r=!("column"!==e().type),n=!("row"!==e().type),o={..."column"===e().type?{left:`${e().currentPos}px`,top:`${e().guideBounds.top}px`,width:"0px",height:`${e().guideBounds.height}px`}:{left:`${e().guideBounds.left}px`,top:`${e().currentPos}px`,width:`${e().guideBounds.width}px`,height:"0px"}};return r!==a.e&&t.classList.toggle("oasis-editor-table-resize-guide-column",a.e=r),n!==a.t&&t.classList.toggle("oasis-editor-table-resize-guide-row",a.t=n),a.a=Me(t,o,a.a),a},{e:void 0,t:void 0,a:void 0}),t;var t}}),j(re,{get when(){return pe(()=>!!e.imageOps.dragging())()&&e.imageOps.draggedImageInfo()},children:t=>{return a=eO(),w(r=>{var n=t().src,o=`${t().width}px`,i=`${t().height}px`,l=e.imageOps.mousePos().x-t().offsetX+"px",s=e.imageOps.mousePos().y-t().offsetY+"px";return n!==r.e&&ve(a,"src",r.e=n),o!==r.t&&we(a,"width",r.t=o),i!==r.a&&we(a,"height",r.a=i),l!==r.o&&we(a,"left",r.o=l),s!==r.i&&we(a,"top",r.i=s),r},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0}),a;var a}}),j(re,{get when(){return pe(()=>!!e.tableDrag.dragging())()&&e.tableDrag.draggedTableInfo()},children:t=>{return a=tO(),w(r=>{var n=`${t().width}px`,o=`${t().height}px`,i=e.tableDrag.mousePos().x-t().offsetX+"px",l=e.tableDrag.mousePos().y-t().offsetY+"px";return n!==r.e&&we(a,"width",r.e=n),o!==r.t&&we(a,"height",r.t=o),i!==r.a&&we(a,"left",r.a=i),l!==r.o&&we(a,"top",r.o=l),r},{e:void 0,t:void 0,a:void 0,o:void 0}),a;var a}}),j(re,{get when(){return pe(()=>!!e.tableDrag.dragging())()&&e.tableDrag.dropTargetPos()},children:t=>j(QL,{get surfaceRef(){return e.surfaceRef},get state(){return e.state},targetPos:t})}),j(re,{get when(){return pe(()=>!!e.imageOps.dragging())()&&e.imageOps.dropTargetPos()},children:t=>j(QL,{get surfaceRef(){return e.surfaceRef},get state(){return e.state},targetPos:t})}),j(re,{get when(){return pe(()=>!!e.textDrag.dragging())()&&e.textDrag.dropTargetPos()},children:t=>j(QL,{get surfaceRef(){return e.surfaceRef},get state(){return e.state},targetPos:t,get pointerPos(){return e.textDrag.pointerPos},get caretViewport(){return e.textDrag.caretViewport}})})]}var rO=ge("<div class=oasis-editor-dialog-input-group><label class=oasis-editor-dialog-label></label><input type=text class=oasis-editor-dialog-input data-testid=editor-link-dialog-input>"),nO=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-secondary"data-testid=editor-link-dialog-cancel>'),oO=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-primary"data-testid=editor-link-dialog-apply>');function iO(e){const[t,a]=M(e.initialHref);let r;x(()=>{e.isOpen&&(a(e.initialHref),setTimeout(()=>null==r?void 0:r.focus(),50))});const n=()=>{e.onConfirm(t()),e.onClose()};return j(UP,{get isOpen(){return e.isOpen},get title(){return Zr("dialog.link.title")},get onClose(){return e.onClose},get footer(){return[(a=nO(),be(a,"click",e.onClose,!0),Se(a,()=>Zr("generic.cancel")),a),(t=oO(),t.$$click=n,Se(t,()=>Zr("generic.apply")),t)];var t,a},get children(){var e=rO(),o=e.firstChild,i=o.nextSibling;Se(o,()=>Zr("dialog.link.label")),i.$$keydown=e=>"Enter"===e.key&&n(),i.$$input=e=>a(e.currentTarget.value);return"function"==typeof r?Ce(r,i):r=i,w(()=>ve(i,"placeholder",Zr("dialog.link.placeholder"))),w(()=>i.value=t()),e}})}me(["input","keydown","click"]);var lO=ge("<div class=oasis-editor-dialog-input-group><label class=oasis-editor-dialog-label></label><input type=text class=oasis-editor-dialog-input>"),sO=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-secondary">'),dO=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-primary">');function cO(e){const[t,a]=M(e.initialAlt);let r;x(()=>{e.isOpen&&(a(e.initialAlt),setTimeout(()=>null==r?void 0:r.focus(),50))});const n=()=>{e.onConfirm(t()),e.onClose()};return j(UP,{get isOpen(){return e.isOpen},get title(){return Zr("dialog.imageAlt.title")},get onClose(){return e.onClose},get footer(){return[(a=sO(),be(a,"click",e.onClose,!0),Se(a,()=>Zr("generic.cancel")),a),(t=dO(),t.$$click=n,Se(t,()=>Zr("generic.save")),t)];var t,a},get children(){var e=lO(),o=e.firstChild,i=o.nextSibling;Se(o,()=>Zr("dialog.imageAlt.label")),i.$$keydown=e=>"Enter"===e.key&&n(),i.$$input=e=>a(e.currentTarget.value);return"function"==typeof r?Ce(r,i):r=i,w(()=>ve(i,"placeholder",Zr("dialog.imageAlt.placeholder"))),w(()=>i.value=t()),e}})}me(["input","keydown","click"]);var hO=ge("<div><div class=oasis-editor-tabs-list role=tablist>"),pO=ge("<button type=button role=tab class=oasis-editor-tabs-tab>"),uO=ge("<div role=tabpanel class=oasis-editor-tabs-panel>");function fO(e,t,a){if(e.length)for(let r=0;r<e.length;r+=1){const n=e[(t+r*a+e.length)%e.length];if(n&&!n.disabled)return n}}function gO(e){const t=ee(),a=C(()=>e.items),r=C(()=>{var e,t;return(null==(e=a().find(e=>!e.disabled))?void 0:e.id)??(null==(t=a()[0])?void 0:t.id)??""}),[n,o]=M(e.defaultValue??r()),i=C(()=>e.value??n()??r()),l=C(()=>a().find(e=>e.id===i()&&!e.disabled)??a().find(e=>!e.disabled)),s=C(()=>["oasis-editor-tabs",e.class].filter(Boolean).join(" ")),d=[],c=(t,r=!1)=>{var n;t&&!t.disabled&&(void 0===e.value&&o(t.id),null==(n=e.onChange)||n.call(e,t.id),r&&queueMicrotask(()=>{var e;return null==(e=d[a().findIndex(e=>e.id===t.id)])?void 0:e.focus()}))},h=e=>{if("ArrowRight"!==e.key&&"ArrowLeft"!==e.key&&"Home"!==e.key&&"End"!==e.key)return;e.preventDefault();const t=Math.max(0,a().findIndex(e=>{var t;return e.id===(null==(t=l())?void 0:t.id)}));if("Home"===e.key)return c(fO(a(),0,1),!0);if("End"===e.key)return c(fO(a(),a().length-1,-1),!0);const r="ArrowRight"===e.key?1:-1;c(fO(a(),t+r,r),!0)};return p=hO(),(u=p.firstChild).$$keydown=h,Se(u,j(te,{get each(){return a()},children:(e,a)=>{const r=`${t}-${e.id}-tab`,n=`${t}-${e.id}-panel`;return(o=pO()).$$click=()=>c(e),Ce(e=>{d[a()]=e},o),ve(o,"id",r),ve(o,"aria-controls",n),Se(o,()=>e.label),w(t=>{var a,r,n,i=(null==(a=l())?void 0:a.id)===e.id,s=e.disabled?"true":void 0,d=e.disabled,c=(null==(r=l())?void 0:r.id)===e.id?0:-1,h=!((null==(n=l())?void 0:n.id)!==e.id),p=e.testId;return i!==t.e&&ve(o,"aria-selected",t.e=i),s!==t.t&&ve(o,"aria-disabled",t.t=s),d!==t.a&&(o.disabled=t.a=d),c!==t.o&&ve(o,"tabindex",t.o=c),h!==t.i&&o.classList.toggle("is-active",t.i=h),p!==t.n&&ve(o,"data-testid",t.n=p),t},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0,n:void 0}),o;var o}})),Se(p,j(te,{get each(){return a()},children:e=>{return Se(a=uO(),()=>e.panel),w(r=>{var n,o,i=`${t}-${e.id}-panel`,s=`${t}-${e.id}-tab`,d=(null==(n=l())?void 0:n.id)!==e.id,c=!((null==(o=l())?void 0:o.id)!==e.id);return i!==r.e&&ve(a,"id",r.e=i),s!==r.t&&ve(a,"aria-labelledby",r.t=s),d!==r.a&&(a.hidden=r.a=d),c!==r.o&&a.classList.toggle("is-active",r.o=c),r},{e:void 0,t:void 0,a:void 0,o:void 0}),a;var a}}),null),w(t=>{var a=s(),r=e.ariaLabel;return a!==t.e&&ye(p,t.e=a),r!==t.t&&ve(u,"aria-label",t.t=r),t},{e:void 0,t:void 0}),p;var p,u}function mO(e){const t=Number(e.trim());return Number.isFinite(t)&&t>0?t:null}function vO(e){const t=Number(e.trim());return Number.isFinite(t)&&t>=0?t:null}function yO(e){return null==e||""===e?"":String(e)}function bO(e){const t=Number(e);return Number.isFinite(t)&&0!==t?t>0?"expanded":"condensed":"normal"}function MO(e){const t=Number(e);return Number.isFinite(t)&&0!==t?t>0?"raised":"lowered":"normal"}function wO(e){if(!e.trim())return null;const t=Number(e);return Number.isInteger(t)&&t>=1&&t<=20?t:null}function xO(e){switch(e){case"none":return"none";case"standard":return"common-ligatures";case"contextual":return"contextual";case"historical":return"historical-ligatures";case"standardContextual":return"common-ligatures contextual";default:return}}function CO(e,t){const a=[];return"proportional"===e&&a.push("proportional-nums"),"tabular"===e&&a.push("tabular-nums"),"lining"===t&&a.push("lining-nums"),"oldStyle"===t&&a.push("oldstyle-nums"),a.join(" ")||void 0}function SO(e,t){const a=[],r=wO(e);return null!==r&&a.push(`"ss${String(r).padStart(2,"0")}" 1`),t&&a.push('"calt" 1'),a.join(", ")||void 0}me(["keydown","click"]);var IO=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-secondary"data-testid=editor-font-dialog-cancel>'),kO=ge('<button class="oasis-editor-dialog-button oasis-editor-dialog-button-primary"data-testid=editor-font-dialog-apply>'),AO=ge('<div class="oasis-editor-font-dialog-panel oasis-editor-font-dialog-font-panel"><div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><input class=oasis-editor-dialog-input data-testid=editor-font-dialog-family-filter></div></div><div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-family><option value>—</option></select></div><div class="oasis-editor-dialog-input-group oasis-editor-font-dialog-size-group"><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-size><option value>—</option></select></div></div><div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-font-dialog-custom-size-group"><label class=oasis-editor-dialog-label></label><input class=oasis-editor-dialog-input data-testid=editor-font-dialog-custom-size><span class=oasis-editor-dialog-help-text></span></div><div class="oasis-editor-dialog-input-group oasis-editor-font-dialog-style-list-group"><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-style-list><option value=regular></option><option value=italic></option><option value=bold></option><option value=boldItalic></option></select></div></div><div class="oasis-editor-dialog-row oasis-editor-font-dialog-color-row"><div class="oasis-editor-dialog-input-group oasis-editor-font-dialog-color-mode-group"><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-color-mode><option value=automatic></option><option value=custom></option></select><input type=color class=oasis-editor-dialog-color data-testid=editor-font-dialog-color></div><div class=oasis-editor-dialog-input-group><label class=oasis-editor-dialog-label></label><input type=color class=oasis-editor-dialog-color data-testid=editor-font-dialog-highlight></div></div><div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-underline-style><option value=none></option></select></div><div class=oasis-editor-dialog-input-group><label class=oasis-editor-dialog-label></label><input type=color class=oasis-editor-dialog-color data-testid=editor-font-dialog-underline-color></div></div><div class=oasis-editor-dialog-row><div class="oasis-editor-dialog-input-group oasis-editor-dialog-input-group-grow"><label class=oasis-editor-dialog-label></label><div class=oasis-editor-dialog-style-row><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-bold><span style=font-weight:700></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-italic><span style=font-style:italic></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-underline><span style=text-decoration:underline></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-strike><span style=text-decoration:line-through></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-double-strike><span></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-superscript><span></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-subscript><span></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-small-caps><span></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-all-caps><span></span></label><label class=oasis-editor-dialog-style-toggle><input type=checkbox data-testid=editor-font-dialog-hidden><span></span></label></div></div></div><div class=oasis-editor-dialog-input-group><label class=oasis-editor-dialog-label></label><div class=oasis-editor-dialog-preview data-testid=editor-font-dialog-preview>'),TO=ge("<option>"),PO=ge('<div class="oasis-editor-font-dialog-panel oasis-editor-font-dialog-advanced-panel"><fieldset class=oasis-editor-font-dialog-fieldset><legend></legend><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-scale></select></div><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-spacing-mode><option value=normal></option><option value=expanded></option><option value=condensed></option></select><label class="oasis-editor-dialog-label oasis-editor-font-dialog-by-label"></label><input class="oasis-editor-dialog-input oasis-editor-font-dialog-small-input"data-testid=editor-font-dialog-advanced-spacing-amount></div><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-position-mode><option value=normal></option><option value=raised></option><option value=lowered></option></select><label class="oasis-editor-dialog-label oasis-editor-font-dialog-by-label"></label><input class="oasis-editor-dialog-input oasis-editor-font-dialog-small-input"data-testid=editor-font-dialog-advanced-position-amount></div><div class="oasis-editor-font-dialog-word-row oasis-editor-font-dialog-kerning-row"><label class="oasis-editor-dialog-style-toggle oasis-editor-font-dialog-kerning-toggle"><input type=checkbox data-testid=editor-font-dialog-advanced-kerning-enabled><span></span></label><input class="oasis-editor-dialog-input oasis-editor-font-dialog-kerning-input"data-testid=editor-font-dialog-advanced-kerning><span class="oasis-editor-dialog-help-text oasis-editor-font-dialog-kerning-suffix"></span></div></fieldset><fieldset class=oasis-editor-font-dialog-fieldset><legend></legend><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-ligatures><option value></option><option value=none></option><option value=standard></option><option value=contextual></option><option value=historical></option><option value=standardContextual></option></select></div><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-number-spacing><option value></option><option value=proportional></option><option value=tabular></option></select></div><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-number-form><option value></option><option value=lining></option><option value=oldStyle></option></select></div><div class=oasis-editor-font-dialog-word-row><label class=oasis-editor-dialog-label></label><select class=oasis-editor-dialog-input data-testid=editor-font-dialog-advanced-stylistic-set><option value></option></select></div><label class="oasis-editor-dialog-style-toggle oasis-editor-font-dialog-contextual-toggle"><input type=checkbox data-testid=editor-font-dialog-advanced-contextual-alternates><span></span></label></fieldset><fieldset class=oasis-editor-font-dialog-fieldset><legend></legend><div class="oasis-editor-dialog-preview oasis-editor-font-dialog-advanced-preview"data-testid=editor-font-dialog-advanced-preview></div></fieldset><p class=oasis-editor-dialog-help-text data-testid=editor-font-dialog-advanced-placeholder>'),EO=ge("<option>%");const LO="#111827",OO="#fef08a",RO=[8,9,10,11,12,14,16,18,20,22,24,26,28,36,48,72],HO=[33,50,66,75,90,100,105,110,115,120,150,200];function NO(e){const[t,a]=M("font"),[r,n]=M({familyFilter:"",fontFamily:"",fontSize:"",colorMode:"custom",color:LO,highlight:OO,bold:!1,italic:!1,underline:!1,underlineStyle:"none",underlineColor:LO,strike:!1,doubleStrike:!1,superscript:!1,subscript:!1,smallCaps:!1,allCaps:!1,hidden:!1}),[o,i]=M({characterScale:"",spacingMode:"normal",spacingAmount:"",positionMode:"normal",positionAmount:"",kerningEnabled:!1,kerningThreshold:"",ligatures:"",numberSpacing:"",numberForm:"",stylisticSet:"",contextualAlternates:!1});x(()=>{e.isOpen&&(a("font"),n({familyFilter:"",fontFamily:e.initial.fontFamily??"",fontSize:e.initial.fontSize??"",colorMode:e.initial.colorMode,color:e.initial.color||LO,highlight:e.initial.highlight||OO,bold:Boolean(e.initial.bold),italic:Boolean(e.initial.italic),underline:Boolean(e.initial.underline),underlineStyle:e.initial.underline?e.initial.underlineStyle??"single":"none",underlineColor:e.initial.underlineColor||LO,strike:Boolean(e.initial.strike),doubleStrike:Boolean(e.initial.doubleStrike),superscript:Boolean(e.initial.superscript),subscript:Boolean(e.initial.subscript),smallCaps:Boolean(e.initial.smallCaps),allCaps:Boolean(e.initial.allCaps),hidden:Boolean(e.initial.hidden)}),i({characterScale:yO(e.initial.characterScale),spacingMode:bO(e.initial.characterSpacing),spacingAmount:e.initial.characterSpacing?String(Math.abs(Number(e.initial.characterSpacing))):"",positionMode:MO(e.initial.baselineShift),positionAmount:e.initial.baselineShift?String(Math.abs(Number(e.initial.baselineShift))):"",kerningEnabled:""!==e.initial.kerningThreshold,kerningThreshold:yO(e.initial.kerningThreshold),ligatures:e.initial.ligatures,numberSpacing:e.initial.numberSpacing,numberForm:e.initial.numberForm,stylisticSet:yO(e.initial.stylisticSet),contextualAlternates:Boolean(e.initial.contextualAlternates)}))});const l=C(()=>{return e=r().bold,t=r().italic,e&&t?"boldItalic":e?"bold":t?"italic":"regular";var e,t}),s=C(()=>{const t=r().familyFilter.trim().toLowerCase();return t?e.familyOptions.filter(e=>e.toLowerCase().includes(t)):e.familyOptions}),d=C(()=>{const t=new Set(RO);for(const r of e.sizeOptions)t.add(r);const a=Number(r().fontSize);return Number.isFinite(a)&&a>0&&t.add(a),Array.from(t).sort((e,t)=>e-t)}),c=C(()=>{const e=r().fontSize.trim();if(!e)return"";const t=Number(e);return Number.isFinite(t)&&t>0?"":Zr("dialog.font.sizeInvalid")}),h=C(()=>{const e=o();return e.characterScale.trim()&&null===mO(e.characterScale)?Zr("dialog.font.advancedScaleInvalid"):"normal"!==e.spacingMode&&null===vO(e.spacingAmount)||"normal"!==e.positionMode&&null===vO(e.positionAmount)?Zr("dialog.font.advancedAmountInvalid"):e.kerningThreshold.trim()&&null===vO(e.kerningThreshold)?Zr("dialog.font.advancedKerningInvalid"):e.stylisticSet.trim()&&null===wO(e.stylisticSet)?Zr("dialog.font.advancedStylisticSetInvalid"):""}),p=C(()=>{const e=r(),t=o(),a=Number(e.fontSize),n=mO(t.characterScale)??100,i="normal"===t.spacingMode?null:vO(t.spacingAmount),l="normal"===t.positionMode?null:vO(t.positionAmount),s=null===i?void 0:"condensed"===t.spacingMode?`-${i}pt`:`${i}pt`,d=null===l?void 0:"lowered"===t.positionMode?`-${l}pt`:`${l}pt`,c=[];return e.underline&&"none"!==e.underlineStyle&&c.push("underline"),e.strike&&c.push("line-through"),e.doubleStrike&&c.push("line-through"),{"font-family":e.fontFamily||"inherit","font-size":Number.isFinite(a)&&a>0?`${a}pt`:void 0,"font-weight":e.bold?700:400,"font-style":e.italic?"italic":"normal","text-decoration":c.join(" ")||"none",color:"automatic"===e.colorMode?"inherit":e.color,"background-color":e.highlight,"vertical-align":d??(e.superscript?"super":e.subscript?"sub":"baseline"),"font-stretch":`${n}%`,"letter-spacing":s,"font-variant-ligatures":xO(t.ligatures),"font-variant-numeric":CO(t.numberSpacing,t.numberForm),"font-feature-settings":SO(t.stylisticSet,t.contextualAlternates)}}),u=()=>{if(h())return;const t=r(),a=o(),n=Number(t.fontSize),i=Number.isFinite(n)&&n>0,l="none"===t.underlineStyle?null:t.underlineStyle,s=null!==l,d=a.characterScale.trim()?mO(a.characterScale):null,c="normal"===a.spacingMode?null:vO(a.spacingAmount),p="normal"===a.positionMode?null:vO(a.positionAmount),u=a.kerningEnabled&&a.kerningThreshold.trim()?vO(a.kerningThreshold):null,f=wO(a.stylisticSet);e.onApply({fontFamily:t.fontFamily.trim()?t.fontFamily.trim():null,fontSize:i?n:null,colorMode:t.colorMode,color:"automatic"===t.colorMode?null:t.color||null,highlight:t.highlight||null,bold:t.bold,italic:t.italic,underline:s,underlineStyle:l,underlineColor:s&&t.underlineColor||null,strike:t.strike,doubleStrike:t.doubleStrike,superscript:t.superscript,subscript:t.subscript,smallCaps:t.smallCaps,allCaps:t.allCaps,hidden:t.hidden,characterScale:d,characterSpacing:null===c?null:"condensed"===a.spacingMode?-c:c,baselineShift:null===p?null:"lowered"===a.positionMode?-p:p,kerningThreshold:u,ligatures:a.ligatures||null,numberSpacing:a.numberSpacing||null,numberForm:a.numberForm||null,stylisticSet:f,contextualAlternates:a.contextualAlternates},e.initial),e.onClose()};return j(UP,{get isOpen(){return e.isOpen},get title(){return Zr("dialog.font.title")},get onClose(){return e.onClose},class:"oasis-editor-font-dialog",bodyClass:"oasis-editor-font-dialog-body",size:"font",get footer(){return[(a=IO(),be(a,"click",e.onClose,!0),Se(a,()=>Zr("generic.cancel")),a),(t=kO(),t.$$click=u,Se(t,()=>Zr("generic.ok")),t)];var t,a},get children(){return j(gO,{class:"oasis-editor-font-dialog-tabs",get ariaLabel(){return Zr("dialog.font.title")},get value(){return t()},onChange:e=>a(e),get items(){return[{id:"font",label:Zr("dialog.font.tabFont"),testId:"editor-font-dialog-tab-font",panel:(()=>{var e=AO(),t=e.firstChild,a=t.firstChild.firstChild,o=a.nextSibling,i=t.nextSibling,h=i.firstChild,u=h.firstChild,f=u.nextSibling;f.firstChild;var g=h.nextSibling.firstChild,m=g.nextSibling;m.firstChild;var v=i.nextSibling,y=v.firstChild,b=y.firstChild,M=b.nextSibling,x=M.nextSibling,C=y.nextSibling.firstChild,S=C.nextSibling,I=S.firstChild,k=I.nextSibling,A=k.nextSibling,T=A.nextSibling,P=v.nextSibling,E=P.firstChild,L=E.firstChild,O=L.nextSibling,R=O.firstChild,H=R.nextSibling,N=O.nextSibling,D=E.nextSibling.firstChild,F=D.nextSibling,B=P.nextSibling,V=B.firstChild,z=V.firstChild,_=z.nextSibling,U=_.firstChild,q=V.nextSibling.firstChild,G=q.nextSibling,W=B.nextSibling,X=W.firstChild.firstChild,Z=X.nextSibling.firstChild,K=Z.firstChild,Y=K.nextSibling,J=Z.nextSibling,Q=J.firstChild,$=Q.nextSibling,ee=J.nextSibling,ae=ee.firstChild,re=ae.nextSibling,ne=ee.nextSibling,oe=ne.firstChild,ie=oe.nextSibling,le=ne.nextSibling,se=le.firstChild,de=se.nextSibling,ce=le.nextSibling,he=ce.firstChild,pe=he.nextSibling,ue=ce.nextSibling,fe=ue.firstChild,ge=fe.nextSibling,me=ue.nextSibling,ve=me.firstChild,ye=ve.nextSibling,be=me.nextSibling,we=be.firstChild,xe=we.nextSibling,Ce=be.nextSibling.firstChild,Ie=Ce.nextSibling,ke=W.nextSibling.firstChild,Ae=ke.nextSibling;return Se(a,()=>Zr("dialog.font.familyFilter")),o.$$input=e=>n(t=>({...t,familyFilter:e.currentTarget.value})),Se(u,()=>Zr("dialog.font.family")),f.addEventListener("change",e=>n(t=>({...t,fontFamily:e.currentTarget.value}))),Se(f,j(te,{get each(){return s()},children:e=>{return(t=TO()).value=e,Se(t,e),t;var t}}),null),Se(g,()=>Zr("dialog.font.size")),m.addEventListener("change",e=>n(t=>({...t,fontSize:e.currentTarget.value}))),Se(m,j(te,{get each(){return d()},children:e=>{return Se(t=TO(),e),w(()=>t.value=String(e)),t;var t}}),null),Se(b,()=>Zr("dialog.font.customSize")),M.$$input=e=>n(t=>({...t,fontSize:e.currentTarget.value})),Se(x,c),Se(C,()=>Zr("dialog.font.styleList")),S.addEventListener("change",e=>{return t=e.currentTarget.value,void n(e=>({...e,bold:"bold"===t||"boldItalic"===t,italic:"italic"===t||"boldItalic"===t}));var t}),Se(I,()=>Zr("dialog.font.styleRegular")),Se(k,()=>Zr("dialog.font.styleItalic")),Se(A,()=>Zr("dialog.font.styleBold")),Se(T,()=>Zr("dialog.font.styleBoldItalic")),Se(L,()=>Zr("dialog.font.color")),O.addEventListener("change",e=>n(t=>({...t,colorMode:e.currentTarget.value}))),Se(R,()=>Zr("toolbar.colorAutomatic")),Se(H,()=>Zr("dialog.font.customColor")),N.$$input=e=>n(t=>({...t,color:e.currentTarget.value,colorMode:"custom"})),Se(D,()=>Zr("dialog.font.highlight")),F.$$input=e=>n(t=>({...t,highlight:e.currentTarget.value})),Se(z,()=>Zr("dialog.font.underlineStyle")),_.addEventListener("change",e=>n(t=>({...t,underlineStyle:e.currentTarget.value,underline:"none"!==e.currentTarget.value}))),Se(U,()=>Zr("toolbar.underlineRemove")),Se(_,j(te,{each:CP,children:e=>{return Se(t=TO(),()=>e.label),w(()=>t.value=e.value),t;var t}}),null),Se(q,()=>Zr("dialog.font.underlineColor")),G.$$input=e=>n(t=>({...t,underlineColor:e.currentTarget.value,underline:"none"!==t.underlineStyle})),Se(X,()=>Zr("dialog.font.style")),K.addEventListener("change",e=>n(t=>({...t,bold:e.currentTarget.checked}))),Se(Y,()=>Zr("dialog.font.bold")),Q.addEventListener("change",e=>n(t=>({...t,italic:e.currentTarget.checked}))),Se($,()=>Zr("dialog.font.italic")),ae.addEventListener("change",e=>n(t=>({...t,underline:e.currentTarget.checked,underlineStyle:e.currentTarget.checked?"none"===t.underlineStyle?"single":t.underlineStyle:"none"}))),Se(re,()=>Zr("dialog.font.underline")),oe.addEventListener("change",e=>n(t=>({...t,strike:e.currentTarget.checked,doubleStrike:!e.currentTarget.checked&&t.doubleStrike}))),Se(ie,()=>Zr("dialog.font.strike")),se.addEventListener("change",e=>n(t=>({...t,doubleStrike:e.currentTarget.checked,strike:!e.currentTarget.checked&&t.strike}))),Se(de,()=>Zr("dialog.font.doubleStrike")),he.addEventListener("change",e=>n(t=>({...t,superscript:e.currentTarget.checked,subscript:!e.currentTarget.checked&&t.subscript}))),Se(pe,()=>Zr("toolbar.superscript")),fe.addEventListener("change",e=>n(t=>({...t,subscript:e.currentTarget.checked,superscript:!e.currentTarget.checked&&t.superscript}))),Se(ge,()=>Zr("toolbar.subscript")),ve.addEventListener("change",e=>n(t=>({...t,smallCaps:e.currentTarget.checked}))),Se(ye,()=>Zr("dialog.font.smallCaps")),we.addEventListener("change",e=>n(t=>({...t,allCaps:e.currentTarget.checked}))),Se(xe,()=>Zr("dialog.font.allCaps")),Ce.addEventListener("change",e=>n(t=>({...t,hidden:e.currentTarget.checked}))),Se(Ie,()=>Zr("dialog.font.hidden")),Se(ke,()=>Zr("dialog.font.preview")),Se(Ae,()=>Zr("dialog.font.previewText")),w(e=>{var t="automatic"===r().colorMode,a="none"===r().underlineStyle,n=p();return t!==e.e&&(N.disabled=e.e=t),a!==e.t&&(G.disabled=e.t=a),e.a=Me(Ae,n,e.a),e},{e:void 0,t:void 0,a:void 0}),w(()=>o.value=r().familyFilter),w(()=>f.value=r().fontFamily),w(()=>m.value=r().fontSize),w(()=>M.value=r().fontSize),w(()=>S.value=l()),w(()=>O.value=r().colorMode),w(()=>N.value=r().color),w(()=>F.value=r().highlight||OO),w(()=>_.value=r().underlineStyle),w(()=>G.value=r().underlineColor||LO),w(()=>K.checked=r().bold),w(()=>Q.checked=r().italic),w(()=>ae.checked=r().underline),w(()=>oe.checked=r().strike),w(()=>se.checked=r().doubleStrike),w(()=>he.checked=r().superscript),w(()=>fe.checked=r().subscript),w(()=>ve.checked=r().smallCaps),w(()=>we.checked=r().allCaps),w(()=>Ce.checked=r().hidden),e})()},{id:"advanced",label:Zr("dialog.font.tabAdvanced"),testId:"editor-font-dialog-tab-advanced",panel:(e=PO(),t=e.firstChild,a=t.firstChild,u=a.nextSibling,f=u.firstChild,g=f.nextSibling,m=u.nextSibling,v=m.firstChild,y=v.nextSibling,b=y.firstChild,M=b.nextSibling,x=M.nextSibling,C=y.nextSibling,S=C.nextSibling,I=m.nextSibling,k=I.firstChild,A=k.nextSibling,T=A.firstChild,P=T.nextSibling,E=P.nextSibling,L=A.nextSibling,O=L.nextSibling,R=I.nextSibling.firstChild,H=R.firstChild,N=H.nextSibling,D=R.nextSibling,F=D.nextSibling,B=t.nextSibling,V=B.firstChild,z=V.nextSibling,_=z.firstChild,U=_.nextSibling,q=U.firstChild,G=q.nextSibling,W=G.nextSibling,X=W.nextSibling,Z=X.nextSibling,K=Z.nextSibling,Y=z.nextSibling,J=Y.firstChild,Q=J.nextSibling,$=Q.firstChild,ee=$.nextSibling,ae=ee.nextSibling,re=Y.nextSibling,ne=re.firstChild,oe=ne.nextSibling,ie=oe.firstChild,le=ie.nextSibling,se=le.nextSibling,de=re.nextSibling,ce=de.firstChild,he=ce.nextSibling,pe=he.firstChild,ue=de.nextSibling.firstChild,fe=ue.nextSibling,ge=B.nextSibling,me=ge.firstChild,ve=me.nextSibling,ye=ge.nextSibling,Se(a,()=>Zr("dialog.font.advancedCharacterSpacingGroup")),Se(f,()=>Zr("dialog.font.advancedScale")),g.addEventListener("change",e=>i(t=>({...t,characterScale:e.currentTarget.value}))),Se(g,j(te,{each:HO,children:e=>{return t=EO(),a=t.firstChild,Se(t,e,a),w(()=>t.value=String(e)),t;var t,a}})),Se(v,()=>Zr("dialog.font.advancedSpacing")),y.addEventListener("change",e=>i(t=>({...t,spacingMode:e.currentTarget.value}))),Se(b,()=>Zr("dialog.font.advancedNormal")),Se(M,()=>Zr("dialog.font.advancedExpanded")),Se(x,()=>Zr("dialog.font.advancedCondensed")),Se(C,()=>Zr("dialog.font.advancedBy")),S.$$input=e=>i(t=>({...t,spacingAmount:e.currentTarget.value})),Se(k,()=>Zr("dialog.font.advancedPosition")),A.addEventListener("change",e=>i(t=>({...t,positionMode:e.currentTarget.value}))),Se(T,()=>Zr("dialog.font.advancedNormal")),Se(P,()=>Zr("dialog.font.advancedRaised")),Se(E,()=>Zr("dialog.font.advancedLowered")),Se(L,()=>Zr("dialog.font.advancedBy")),O.$$input=e=>i(t=>({...t,positionAmount:e.currentTarget.value})),H.addEventListener("change",e=>i(t=>({...t,kerningEnabled:e.currentTarget.checked,kerningThreshold:e.currentTarget.checked?t.kerningThreshold||"1":t.kerningThreshold}))),Se(N,()=>Zr("dialog.font.advancedKerning")),D.$$input=e=>i(t=>({...t,kerningThreshold:e.currentTarget.value})),Se(F,()=>Zr("dialog.font.advancedKerningAbove")),Se(V,()=>Zr("dialog.font.advancedOpenTypeGroup")),Se(_,()=>Zr("dialog.font.advancedLigatures")),U.addEventListener("change",e=>i(t=>({...t,ligatures:e.currentTarget.value}))),Se(q,()=>Zr("dialog.font.advancedDefault")),Se(G,()=>Zr("dialog.font.advancedLigaturesNone")),Se(W,()=>Zr("dialog.font.advancedLigaturesStandard")),Se(X,()=>Zr("dialog.font.advancedLigaturesContextual")),Se(Z,()=>Zr("dialog.font.advancedLigaturesHistorical")),Se(K,()=>Zr("dialog.font.advancedLigaturesStandardContextual")),Se(J,()=>Zr("dialog.font.advancedNumberSpacing")),Q.addEventListener("change",e=>i(t=>({...t,numberSpacing:e.currentTarget.value}))),Se($,()=>Zr("dialog.font.advancedDefault")),Se(ee,()=>Zr("dialog.font.advancedNumberSpacingProportional")),Se(ae,()=>Zr("dialog.font.advancedNumberSpacingTabular")),Se(ne,()=>Zr("dialog.font.advancedNumberForm")),oe.addEventListener("change",e=>i(t=>({...t,numberForm:e.currentTarget.value}))),Se(ie,()=>Zr("dialog.font.advancedDefault")),Se(le,()=>Zr("dialog.font.advancedNumberFormLining")),Se(se,()=>Zr("dialog.font.advancedNumberFormOldStyle")),Se(ce,()=>Zr("dialog.font.advancedStylisticSet")),he.addEventListener("change",e=>i(t=>({...t,stylisticSet:e.currentTarget.value}))),Se(pe,()=>Zr("dialog.font.advancedDefault")),Se(he,j(te,{get each(){return Array.from({length:20},(e,t)=>t+1)},children:e=>{return Se(t=TO(),e),w(()=>t.value=String(e)),t;var t}}),null),ue.addEventListener("change",e=>i(t=>({...t,contextualAlternates:e.currentTarget.checked}))),Se(fe,()=>Zr("dialog.font.advancedContextualAlternates")),Se(me,()=>Zr("dialog.font.advancedPreviewGroup")),Se(ve,()=>Zr("dialog.font.previewText")),Se(ye,()=>h()||Zr("dialog.font.advancedPlaceholder")),w(e=>{var t="normal"===o().spacingMode,a="normal"===o().positionMode,r=!o().kerningEnabled,n=p();return t!==e.e&&(S.disabled=e.e=t),a!==e.t&&(O.disabled=e.t=a),r!==e.a&&(D.disabled=e.a=r),e.o=Me(ve,n,e.o),e},{e:void 0,t:void 0,a:void 0,o:void 0}),w(()=>g.value=o().characterScale||"100"),w(()=>y.value=o().spacingMode),w(()=>S.value=o().spacingAmount),w(()=>A.value=o().positionMode),w(()=>O.value=o().positionAmount),w(()=>H.checked=o().kerningEnabled),w(()=>D.value=o().kerningThreshold),w(()=>U.value=o().ligatures),w(()=>Q.value=o().numberSpacing),w(()=>oe.value=o().numberForm),w(()=>he.value=o().stylisticSet),w(()=>ue.checked=o().contextualAlternates),e)}];var e,t,a,u,f,g,m,v,y,b,M,x,C,S,I,k,A,T,P,E,L,O,R,H,N,D,F,B,V,z,_,U,q,G,W,X,Z,K,Y,J,Q,$,ee,ae,re,ne,oe,ie,le,se,de,ce,he,pe,ue,fe,ge,me,ve,ye}})}})}me(["click","input"]);var DO=ge("<div class=oasis-editor-find-replace-dialog><div class=oasis-editor-fr-header><span></span><button class=oasis-editor-fr-close><i data-lucide=x></i></button></div><div class=oasis-editor-fr-body><div class=oasis-editor-fr-input-group><div class=oasis-editor-fr-input-wrapper><input type=text autofocus class=oasis-editor-fr-input><span class=oasis-editor-fr-counter></span></div><div class=oasis-editor-fr-actions><button><i data-lucide=chevron-up></i></button><button><i data-lucide=chevron-down></i></button></div></div><div class=oasis-editor-fr-input-group><input type=text class=oasis-editor-fr-input><div class=oasis-editor-fr-actions><button class=oasis-editor-fr-btn-text></button><button class=oasis-editor-fr-btn-text></button></div></div><div class=oasis-editor-fr-options><label class=oasis-editor-fr-checkbox><input type=checkbox><span></span></label><label class=oasis-editor-fr-checkbox><input type=checkbox><span>");function FO(e){const{fr:t}=e,a=e=>{"Enter"===e.key?(e.preventDefault(),e.shiftKey?t.findPrevious():t.findNext()):"Escape"===e.key&&t.setIsOpen(!1)};return j(re,{get when(){return t.isOpen()},get children(){var e,r=DO(),n=r.firstChild,o=n.firstChild,i=o.nextSibling,l=n.nextSibling.firstChild,s=l.firstChild,d=s.firstChild,c=d.nextSibling,h=s.nextSibling.firstChild,p=h.nextSibling,u=l.nextSibling,f=u.firstChild,g=f.nextSibling.firstChild,m=g.nextSibling,v=u.nextSibling.firstChild,y=v.firstChild,b=y.nextSibling,M=v.nextSibling.firstChild,x=M.nextSibling;return r.$$keydown=a,Se(o,()=>Zr("find.title")),i.$$click=()=>t.setIsOpen(!1),d.$$input=e=>t.setSearchTerm(e.currentTarget.value),Se(c,(e=pe(()=>t.matches().length>0),()=>e()?`${t.currentIndex()+1} / ${t.matches().length}`:Zr("find.noMatches"))),be(h,"click",t.findPrevious,!0),be(p,"click",t.findNext,!0),f.$$input=e=>t.setReplaceTerm(e.currentTarget.value),be(g,"click",t.replace,!0),Se(g,()=>Zr("replace.one")),be(m,"click",t.replaceAll,!0),Se(m,()=>Zr("replace.allBtn")),y.addEventListener("change",e=>t.setFindOptions({...t.findOptions(),matchCase:e.currentTarget.checked})),Se(b,()=>Zr("find.matchCase")),M.addEventListener("change",e=>t.setFindOptions({...t.findOptions(),wholeWord:e.currentTarget.checked})),Se(x,()=>Zr("find.wholeWord")),w(e=>{var a=Zr("generic.close"),r=Zr("find.placeholder"),n=0===t.matches().length,o=Zr("find.prevTooltip"),l=0===t.matches().length,s=Zr("find.nextTooltip"),c=Zr("replace.placeholder"),u=0===t.matches().length,v=0===t.matches().length;return a!==e.e&&ve(i,"aria-label",e.e=a),r!==e.t&&ve(d,"placeholder",e.t=r),n!==e.a&&(h.disabled=e.a=n),o!==e.o&&ve(h,"title",e.o=o),l!==e.i&&(p.disabled=e.i=l),s!==e.n&&ve(p,"title",e.n=s),c!==e.s&&ve(f,"placeholder",e.s=c),u!==e.h&&(g.disabled=e.h=u),v!==e.r&&(m.disabled=e.r=v),e},{e:void 0,t:void 0,a:void 0,o:void 0,i:void 0,n:void 0,s:void 0,h:void 0,r:void 0}),w(()=>d.value=t.searchTerm()),w(()=>f.value=t.replaceTerm()),w(()=>y.checked=t.findOptions().matchCase),w(()=>M.checked=t.findOptions().wholeWord),r}})}me(["keydown","click","input"]);var BO=ge("<div class=oasis-editor-context-menu role=menu data-testid=editor-context-menu>"),VO=ge("<i>"),zO=ge("<span class=oasis-editor-context-menu-shortcut>"),_O=ge("<button type=button class=oasis-editor-context-menu-item role=menuitem><span class=oasis-editor-context-menu-label>"),UO=ge("<div class=oasis-editor-context-menu-separator>"),qO=ge("<i data-lucide=check style=visibility:hidden>");function GO(e){let t;const a=t=>{e.isOpen&&"Escape"===t.key&&(t.preventDefault(),e.onClose())},r=a=>{e.isOpen&&(t&&a.target instanceof Node&&t.contains(a.target)||e.onClose())},n=a=>{e.isOpen&&(t&&a.target instanceof Node&&t.contains(a.target)||e.onClose())},o=()=>{e.isOpen&&e.onClose()};return k(()=>{window.addEventListener("keydown",a,!0),window.addEventListener("mousedown",r,!0),window.addEventListener("contextmenu",n,!0),window.addEventListener("scroll",o,!0),window.addEventListener("resize",o,!0)}),A(()=>{window.removeEventListener("keydown",a,!0),window.removeEventListener("mousedown",r,!0),window.removeEventListener("contextmenu",n,!0),window.removeEventListener("scroll",o,!0),window.removeEventListener("resize",o,!0)}),x(()=>{if(!e.isOpen||!t)return;const a=t.getBoundingClientRect(),r=Math.max(4,window.innerWidth-a.width-4),n=Math.max(4,window.innerHeight-a.height-4),o=Math.min(e.x,r),i=Math.min(e.y,n);t.style.left=`${o}px`,t.style.top=`${i}px`}),j(re,{get when(){return e.isOpen},get children(){var a=BO();a.$$contextmenu=e=>e.preventDefault();return"function"==typeof t?Ce(t,a):t=a,Se(a,j(te,{get each(){return e.items},children:t=>j(re,{get when(){return"separator"!==t.type},get fallback(){return UO()},get children(){var a=_O(),r=a.firstChild;return a.$$click=()=>{var a;t.disabled||(null==(a=t.onSelect)||a.call(t),e.onClose())},Se(a,j(re,{get when(){return t.icon},get fallback(){return qO()},get children(){var e=VO();return w(()=>ve(e,"data-lucide",t.icon)),e}}),r),Se(r,()=>t.label),Se(a,j(re,{get when(){return t.shortcut},get children(){var e=zO();return Se(e,()=>t.shortcut),e}}),null),w(e=>{var r=t.disabled,n=t.testId;return r!==e.e&&(a.disabled=e.e=r),n!==e.t&&ve(a,"data-testid",e.t=n),e},{e:void 0,t:void 0}),a}})})),w(t=>{var r=`${e.x}px`,n=`${e.y}px`;return r!==t.e&&we(a,"left",t.e=r),n!==t.t&&we(a,"top",t.t=n),t},{e:void 0,t:void 0}),a}})}function WO(e){const{linkDialog:t,setLinkDialog:a,imageAltDialog:r,setImageAltDialog:n,contextMenu:o,fontDialog:i,setFontDialog:l}=e.dialogs;return[j(iO,{get isOpen(){return t().isOpen},get initialHref(){return t().initialHref},onClose:()=>{a({...t(),isOpen:!1}),e.focusInput()},onConfirm:t=>e.applyLinkCommand(t.trim()||null)}),j(cO,{get isOpen(){return r().isOpen},get initialAlt(){return r().initialAlt},onClose:()=>{n({...r(),isOpen:!1}),e.focusInput()},onConfirm:t=>e.applyImageAltCommand(t.trim())}),j(FO,{get fr(){return e.findReplace}}),j(NO,{get isOpen(){return i().isOpen},get initial(){return i().initial},get familyOptions(){return e.fontFamilyOptions()},get sizeOptions(){return e.fontSizeOptions()},onClose:()=>{l({...i(),isOpen:!1}),e.focusInput()},get onApply(){return e.applyFontDialogValues}}),j(GO,{get isOpen(){return o().isOpen},get x(){return o().x},get y(){return o().y},get items(){return e.contextMenuItems()},get onClose(){return e.closeContextMenu}})]}me(["contextmenu","click"]);const jO=1/.75,XO=10;function ZO(e){return.75*e}function KO(e){return e*jO}function YO(e){if("number"==typeof e&&Number.isFinite(e))return e;if("string"!=typeof e)return null;const t=e.trim().toLowerCase();if(!t)return null;if(t.endsWith("pt")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?e:null}if(t.endsWith("px")){const e=Number.parseFloat(t.slice(0,-2));return Number.isFinite(e)?ZO(e):null}if(t.includes("%"))return null;if(!/^[+-]?\d+(\.\d+)?$/.test(t))return null;const a=Number.parseFloat(t);return Number.isFinite(a)?a:null}function JO(e){var t,a,r,n,o;return("number"==typeof(null==(t=e.style)?void 0:t.padding)&&Number.isFinite(e.style.padding)?2*Math.max(0,KO(e.style.padding)):Math.max(0,(void 0!==(null==(a=e.style)?void 0:a.paddingLeft)?KO(e.style.paddingLeft):7.2)+(void 0!==(null==(r=e.style)?void 0:r.paddingRight)?KO(e.style.paddingRight):7.2)))+((null==(n=e.style)?void 0:n.borderLeft)?Math.max(0,KO(e.style.borderLeft.width)):1)+((null==(o=e.style)?void 0:o.borderRight)?Math.max(0,KO(e.style.borderRight.width)):1)}function QO(e,t){const a=function(e){return nt(e.document).flatMap(e=>[...e.header??[],...e.blocks,...e.footer??[]])}(e).find(e=>"table"===e.type&&e.id===t);return a??null}function $O(e){const[t,a]=M(null),r=()=>{const t=e.viewportRef();if(!t)return{left:0,top:0,width:window.innerWidth,height:window.innerHeight};const a=t.getBoundingClientRect();return{left:a.left,top:a.top,width:Math.max(0,a.width),height:Math.max(0,a.height)}},n=t=>{const a=e.surfaceRef();if(!a)return null;const r=e.state(),n=function(e,t){const a=Pi({surface:e,state:t,layoutMode:"wordParity"});if(!a)return[];const r=new Map,n=new Map;for(const i of a.paragraphs){const e=i.tableCell;if(!e)continue;const t=`${i.pageIndex}:${e.rowIndex}:${e.cellIndex}`,a=r.get(e.tableId)??new Map;let o=a.get(t);o||(o={tableId:e.tableId,rowIndex:e.rowIndex,cellIndex:e.cellIndex,pageIndex:i.pageIndex,left:e.left,top:e.top,right:e.left+e.width,bottom:e.top+e.height,width:e.width,height:e.height,contentMinWidth:0,contentMinHeight:0},a.set(t,o),r.set(e.tableId,a));const l=i.lines.flatMap(e=>e.slots.map(e=>e.left)),s=i.lines.map(e=>e.top+e.height),d=l.length>0?Math.min(...l):i.left,c=l.length>0?Math.max(...l):i.left,h=i.lines.length>0?i.lines[0].top:i.top,p=s.length>0?Math.max(...s):i.top+i.height,u=`${e.tableId}:${i.pageIndex}:${e.rowIndex}:${e.cellIndex}`,f=n.get(u);f?(f.left=Math.min(f.left,d),f.top=Math.min(f.top,h),f.right=Math.max(f.right,c),f.bottom=Math.max(f.bottom,p)):n.set(u,{left:d,top:h,right:c,bottom:p})}for(const[i,l]of r.entries())for(const e of l.values()){const t=n.get(`${i}:${e.pageIndex}:${e.rowIndex}:${e.cellIndex}`);t&&(e.contentMinWidth=Math.max(0,t.right-t.left),e.contentMinHeight=Math.max(0,t.bottom-t.top))}const o=[];for(const[i,l]of r.entries()){const e=Array.from(l.values());if(0===e.length)continue;const t=Math.min(...e.map(e=>e.left)),a=Math.min(...e.map(e=>e.top)),r=Math.max(...e.map(e=>e.right)),n=Math.max(...e.map(e=>e.bottom));o.push({tableId:i,cells:e,bounds:{left:t,top:a,right:r,bottom:n,width:Math.max(1,r-t),height:Math.max(1,n-a)}})}return o}(a,r);if(0===n.length)return null;let o=null;for(const e of n)for(const a of e.cells){const r=t.clientY>=a.top-4&&t.clientY<=a.bottom+4,n=t.clientX>=a.left-4&&t.clientX<=a.right+4;if(r){const r=Math.abs(t.clientX-a.left);r<=4&&(!o||r<o.distance)&&(o={geometry:e,cell:a,side:"left",distance:r});const n=Math.abs(t.clientX-a.right);n<=4&&(!o||n<o.distance)&&(o={geometry:e,cell:a,side:"right",distance:n})}if(n){const r=Math.abs(t.clientY-a.top);r<=4&&(!o||r<o.distance)&&(o={geometry:e,cell:a,side:"top",distance:r});const n=Math.abs(t.clientY-a.bottom);n<=4&&(!o||n<o.distance)&&(o={geometry:e,cell:a,side:"bottom",distance:n})}}if(!o)return null;const i=QO(r,o.geometry.tableId);if(!i)return null;const l=ar(i).find(e=>e.rowIndex===o.cell.rowIndex&&e.cellIndex===o.cell.cellIndex);return l?{tableId:o.geometry.tableId,rowIndex:o.cell.rowIndex,cellIndex:o.cell.cellIndex,side:o.side,rect:o.cell,tableNode:i,layoutEntry:l,tableGeometry:o.geometry}:null},o=e=>{const n=t();n&&(a({...n,currentPos:"column"===n.type?e.clientX:e.clientY,guideBounds:r()}),"column"===n.type?document.body.classList.add("oasis-editor-hover-col-resize"):document.body.classList.add("oasis-editor-hover-row-resize"))},i=r=>{const n=t();if(!n)return;const l=("column"===n.type?r.clientX:r.clientY)-n.initialPos;if(Math.abs(l)>=2){const t=ZO(l);e.applyTransactionalState(e=>{var a;if("row"===n.type){const t=n.initialRowHeightPx??KO(XO),a=Math.max(KO(XO),n.minRowHeightPx??KO(XO)),r=Math.max(XO,ZO(Math.max(a,t+l)));return ir(e,n.tableId,n.index,r)}const r=n.maxColumnIndex??n.index,o={...n.columnWidthsPt??{}};for(let t=0;t<=r;t+=1)void 0===o[t]&&(o[t]=XO);const i=n.minColumnWidthsPx??{},s=o[n.index]??XO,d=Math.max(XO,ZO(i[n.index]??KO(XO)));if(n.resizeFromLeftEdge){const a=Math.max(0,n.initialTableIndentLeftPt??0);let r=Math.max(d,s-t),i=s-r;a+i<0&&(i=-a,r=s-i),o[n.index]=r;const l=Object.values(o).reduce((e,t)=>e+t,0),c=Math.max(0,a+i);return lr(e,n.tableId,o,l,c)}let c=Math.max(d,s+t);const h=n.index===r;if(h)o[n.index]=c;else{const e=n.index+1,t=o[e]??XO,a=Math.max(XO,ZO(i[e]??KO(XO)));let r=t-(c-s);r<a&&(r=a,c=s+(t-a),c=Math.max(d,c)),o[n.index]=c,o[e]=r}const p=Object.values(o).reduce((e,t)=>e+t,0),u=QO(e,n.tableId),f=YO(null==(a=null==u?void 0:u.style)?void 0:a.width),g=h?p:null!==f?f:void 0;return lr(e,n.tableId,o,g)})}a(null),document.body.classList.remove("oasis-editor-hover-col-resize"),document.body.classList.remove("oasis-editor-hover-row-resize"),window.removeEventListener("mousemove",o),window.removeEventListener("mouseup",i)};return{resizing:t,handleMouseMove:e=>{const a=t();if(a)return void("column"===a.type?(document.body.classList.add("oasis-editor-hover-col-resize"),document.body.classList.remove("oasis-editor-hover-row-resize")):(document.body.classList.add("oasis-editor-hover-row-resize"),document.body.classList.remove("oasis-editor-hover-col-resize")));const r=n(e);if(!r)return document.body.classList.remove("oasis-editor-hover-col-resize"),void document.body.classList.remove("oasis-editor-hover-row-resize");"left"===r.side||"right"===r.side?(document.body.classList.add("oasis-editor-hover-col-resize"),document.body.classList.remove("oasis-editor-hover-row-resize")):(document.body.classList.add("oasis-editor-hover-row-resize"),document.body.classList.remove("oasis-editor-hover-col-resize"))},handleMouseDown:t=>{var l;const s=n(t);if(!s)return!1;const d=e.state(),c=ar(s.tableNode);if("left"===s.side||"right"===s.side){const e="left"===s.side&&0===s.layoutEntry.visualColumnIndex,n=e?0:"left"===s.side?s.layoutEntry.visualColumnIndex-1:s.layoutEntry.visualColumnIndex+s.layoutEntry.colSpan-1;if(n<0)return!1;const h="left"===s.side?s.rect.left:s.rect.right,{widthsPt:p,maxColumnIndex:u}=function(e,t,a){const r=Math.max(1,...t.map(e=>e.visualColumnIndex+Math.max(1,e.colSpan))),n=r-1,o=Array(r).fill(a.bounds.width/r),i=new Map(a.cells.map(e=>[`${e.rowIndex}:${e.cellIndex}`,e]));if(e.gridCols&&e.gridCols.length>=r)for(let s=0;s<r;s+=1)o[s]=Math.max(1,KO(e.gridCols[s]));else for(const s of t){if(1!==s.colSpan)continue;const e=i.get(`${s.rowIndex}:${s.cellIndex}`);e&&(o[s.visualColumnIndex]=Math.max(1,e.width))}const l={};for(let s=0;s<r;s+=1)l[s]=Math.max(XO,ZO(o[s]));return{widthsPt:l,maxColumnIndex:n}}(s.tableNode,c,s.tableGeometry),f=function(e,t,a,r){var n;const o=KO(XO),i={},l=new Map(r.cells.map(e=>[`${e.rowIndex}:${e.cellIndex}`,e]));for(const s of a){if(1!==s.colSpan)continue;if(!l.get(`${s.rowIndex}:${s.cellIndex}`))continue;const a=null==(n=t.rows[s.rowIndex])?void 0:n.cells[s.cellIndex];if(!a)continue;const r=s.visualColumnIndex,d=i[r]??o,c=a.blocks.reduce((t,a)=>Math.max(t,Oo(a,e.document.styles,"wordParity")),1);i[r]=Math.max(d,c+JO(a)+12,o)}return i}(d,s.tableNode,c,s.tableGeometry);return a({type:"column",tableId:s.tableId,index:n,initialPos:h,currentPos:h,columnWidthsPt:p,maxColumnIndex:u,minColumnWidthsPx:f,resizeFromLeftEdge:e,initialTableIndentLeftPt:YO(null==(l=s.tableNode.style)?void 0:l.indentLeft)??0,guideBounds:r()}),document.body.classList.add("oasis-editor-hover-col-resize"),window.addEventListener("mousemove",o),window.addEventListener("mouseup",i),t.preventDefault(),t.stopPropagation(),!0}const h=function(e,t,a){var r,n;const o=Math.max(1,e.rows.length),i=a.bounds.height/o,l=Array(o).fill(i),s=new Map(a.cells.map(e=>[`${e.rowIndex}:${e.cellIndex}`,e]));for(let d=0;d<o;d+=1){const a=YO(null==(n=null==(r=e.rows[d])?void 0:r.style)?void 0:n.height);if(null!==a){l[d]=Math.max(1,KO(a));continue}const o=t.find(e=>e.rowIndex===d&&1===e.rowSpan);if(o){const e=s.get(`${o.rowIndex}:${o.cellIndex}`);e&&(l[d]=Math.max(1,e.height))}}return l}(s.tableNode,c,s.tableGeometry),p="top"===s.side?s.layoutEntry.visualRowIndex-1:s.layoutEntry.visualRowIndex+s.layoutEntry.rowSpan-1;if(p<0||p>=h.length)return!1;const u="top"===s.side?s.rect.top:s.rect.bottom,f=function(e,t,a,r){const n=e.rows[r];if(!n)return KO(XO);const o=KO(XO);let i=o;for(let l=0;l<n.cells.length;l+=1){if(!n.cells[l])continue;const e=t.find(e=>e.rowIndex===r&&e.cellIndex===l);if(!e||1!==e.rowSpan)continue;const o=a.cells.find(e=>e.rowIndex===r&&e.cellIndex===l);o&&(i=Math.max(i,o.contentMinHeight+4))}return Math.max(o,i)}(s.tableNode,c,s.tableGeometry,p);return a({type:"row",tableId:s.tableId,index:p,initialPos:u,currentPos:u,initialRowHeightPx:h[p],minRowHeightPx:f,guideBounds:r()}),document.body.classList.add("oasis-editor-hover-row-resize"),window.addEventListener("mousemove",o),window.addEventListener("mouseup",i),t.preventDefault(),t.stopPropagation(),!0}}}function eR(e){const[t,a]=M(!1),[r,n]=M(null),[o,i]=M(null),[l,s]=M(0),[d,c]=M({x:0,y:0}),h=n=>{var o;if(c({x:n.clientX,y:n.clientY}),!t()){if(!(Math.abs(n.clientY-l())>4))return;a(!0),document.body.style.cursor="grabbing"}document.body.style.cursor="grabbing";const s=e.resolvePositionAtSurfacePoint(n.clientX,n.clientY),d=null==(o=r())?void 0:o.tableId;if(s&&d){const t=e.state(),a=yt(t.document,s.paragraphId,ht(t));if(a){const e=it(t,a.zone)[a.blockIndex];if(e&&"table"===e.type&&e.id===d)return void i(null)}}i(s)},p=o=>{const l=r();if(t()){const t=e.resolvePositionAtSurfacePoint(o.clientX,o.clientY),a=null==l?void 0:l.tableId;t&&a&&e.applyTransactionalState(e=>Ja(e,a,t))}a(!1),n(null),i(null),window.removeEventListener("mousemove",h),window.removeEventListener("mouseup",p),document.body.style.cursor="",e.focusInput()};return{dragging:t,draggedTableInfo:r,mousePos:d,dropTargetPos:o,handleMouseDown:(e,t)=>{t.preventDefault(),t.stopPropagation();const r=t.currentTarget.getBoundingClientRect(),o=r;n({tableId:e,width:o.width,height:o.height,offsetX:t.clientX-r.left,offsetY:t.clientY-r.top}),s(t.clientY),c({x:t.clientX,y:t.clientY}),a(!1),i(null),window.addEventListener("mousemove",h),window.addEventListener("mouseup",p)}}}function tR(e,t,a){const r=dt(e.document).filter(t=>{const r=vt(e.document,t.id);return null!==r&&r.zone===a}),n=r.findIndex(e=>e.id===t.id),o=n>=0?r[n+1]:void 0;return{start:Fe(t,0),end:o?Fe(o,0):Fe(t,Ne(t).length)}}function aR(e){let t=null,a=null,r=null,n=0,o=0,i=0,l=0,s=0,d=null,c=0,h=0,p=0;const u=(t,a,r,n)=>{var o;const i=a!==(t.activeZone??"main"),l="footnote"===a&&n?null==(o=vt(r.document,n.paragraphId))?void 0:o.footnoteId:void 0,s="footnote"===a&&l!==t.activeFootnoteId;if(!i&&!s)return void e.applyState(r);let d=r.document,c=t.activeSectionIndex??0;if(!d.sections||0===d.sections.length){const e=Gt("header"),t=Gt("footer");d={...d,sections:[{id:"section:1",blocks:[],pageSettings:Je(d.pageSettings??Ye),header:[e],footer:[t]}]},c=0}const h=d.sections,p=h[c];let u=p.header,f=p.footer,g=null;if("header"===a)if(u&&0!==u.length){const e=u[0];g="paragraph"===e.type?e:lt(e)[0]??null}else g=Gt("header"),u=[g];else if("footer"===a)if(f&&0!==f.length){const e=f[0];g="paragraph"===e.type?e:lt(e)[0]??null}else g=Gt("footer"),f=[g];if(u!==p.header||f!==p.footer){const e=[...h];e[c]={...p,header:u,footer:f},d={...d,sections:e}}const m=n||(g?Fe(g,0):r.selection.anchor);e.applyState({...r,document:d,selection:{anchor:m,focus:m},activeSectionIndex:c,activeZone:a,activeFootnoteId:"footnote"===a?l:void 0})},f=t=>{const a=e.state(),r=a.selection,n=ht(a),o=yt(a.document,r.anchor.paragraphId,n),i=yt(a.document,r.focus.paragraphId,n),l=o?`b${o.blockIndex}r${o.rowIndex}c${o.cellIndex}`:"",s=i?`b${i.blockIndex}r${i.rowIndex}c${i.cellIndex}`:"";e.logger.debug(`${t} ${r.anchor.paragraphId}[${r.anchor.offset}]→${r.focus.paragraphId}[${r.focus.offset}] [${l}→${s}]`)},g=()=>{var e;t=null,r=null,null!==a&&(e=a,"undefined"==typeof window||"function"!=typeof window.cancelAnimationFrame?globalThis.clearTimeout(e):window.cancelAnimationFrame(e),a=null),window.removeEventListener("mousemove",v),window.removeEventListener("mouseup",y)},m=()=>{if(a=null,!t)return;const n=r;if(r=null,!n)return;const o=e.resolveSurfaceHitAtPoint(n.clientX,n.clientY,{forDrag:!0});if(!(null==o?void 0:o.resolvedFromParagraph))return;const i=e.state(),l=Jt(i,{anchor:t,focus:o.position});u(i,o.zone,l,o.position),f("selection:drag")},v=e=>{var n;t&&(r={clientX:e.clientX,clientY:e.clientY},null===a&&(n=m,a="undefined"!=typeof window&&"function"==typeof window.requestAnimationFrame?window.requestAnimationFrame(()=>n()):globalThis.setTimeout(n,16)))},y=()=>{f("selection:end"),g(),e.focusInputAfterPointerSelection()},b=a=>{var r;if(0!==a.button)return;const f=Date.now(),m=Math.hypot(a.clientX-i,a.clientY-l),b=f-o<=450&&m<=6&&a.button===s;n=b?n+1:1,o=f,i=a.clientX,l=a.clientY,s=a.button;const M=Math.max(a.detail,n),w=e.state();if(e.clearPendingCaretTextStyle(),e.tableResize.handleMouseDown(a))return;a.preventDefault(),e.imageOps.stopImageDrag(),e.imageOps.stopImageResize(),e.clearPreferredColumn(),e.resetTransactionGrouping();const x=e.resolveSurfaceHitAtPoint(a.clientX,a.clientY);if(d=x,c=f,h=a.clientX,p=a.clientY,!x)return void e.focusInputAfterPointerSelection();if(null==(r=e.textDrag)?void 0:r.tryStartTextDrag(a,x))return t=null,g(),void e.focusInputAfterPointerSelection();const C=e.getParagraphById(w.document,x.paragraphId);if(x.zone!==(w.activeZone??"main"))return M<2?(t=null,g(),void e.focusInputAfterPointerSelection()):(t=null,x.resolvedFromParagraph?u(w,x.zone,{...w,selection:{anchor:{...x.position},focus:{...x.position}}},x.position):u(w,x.zone,w),g(),void e.focusInputAfterPointerSelection());if(x.image){const r=e.getParagraphById(w.document,x.image.paragraphId);if(!r)return void e.focusInputAfterPointerSelection();t=null;const n=Fe(r,x.image.startOffset),o=Fe(r,x.image.endOffset);return u(w,x.zone,Jt(w,{anchor:n,focus:o}),n),g(),e.imageOps.startImageDrag(x.image.paragraphId,x.image.startOffset,a,{left:x.image.left,top:x.image.top,width:x.image.width,height:x.image.height}),void e.focusInputAfterPointerSelection()}if(a.shiftKey&&x.resolvedFromParagraph)return t=w.selection.anchor,u(w,x.zone,Jt(w,{anchor:w.selection.anchor,focus:x.position}),x.position),window.addEventListener("mousemove",v),window.addEventListener("mouseup",y),void e.focusInputAfterPointerSelection();if(M>=3&&C){t=null;const a=tR(w,C,x.zone);return u(w,x.zone,Jt(w,{anchor:a.start,focus:a.end}),a.start),g(),void e.focusInputAfterPointerSelection()}if(2===M&&C){t=null;const a=eo(Ne(C),x.paragraphOffset),r=Fe(C,a.start),n=Fe(C,a.end);return u(w,x.zone,Jt(w,{anchor:r,focus:n}),r),g(),void e.focusInputAfterPointerSelection()}if(!x.resolvedFromParagraph)return void e.focusInputAfterPointerSelection();const S=x.tableCellAnchorPosition??x.position;t=S,u(w,x.zone,{...w,selection:{anchor:{...x.position},focus:{...x.position}}},x.position),window.addEventListener("mousemove",v),window.addEventListener("mouseup",y),e.focusInputAfterPointerSelection()};return{handleSurfaceMouseDown:b,handleSurfaceClick:a=>{if(a.detail<3)return;a.preventDefault();const r=e.state(),n=Math.hypot(a.clientX-h,a.clientY-p),o=Date.now()-c<=600&&n<=8?d:e.resolveSurfaceHitAtPoint(a.clientX,a.clientY);if(!(null==o?void 0:o.resolvedFromParagraph))return void e.focusInputAfterPointerSelection();const i=e.getParagraphById(r.document,o.paragraphId);if(!i)return void e.focusInputAfterPointerSelection();t=null;const l=tR(r,i,o.zone);u(r,o.zone,Jt(r,{anchor:l.start,focus:l.end}),l.start),g(),e.focusInputAfterPointerSelection()},handleSurfaceDblClick:e=>{e.preventDefault()},handleParagraphMouseDown:(e,t)=>{0===t.button&&(t.preventDefault(),b(t))},stopDragging:g}}function rR(e,t){const a=St(e);if(a.isCollapsed)return!1;const r=ct(e),n=r.findIndex(e=>e.id===t.paragraphId);if(n<a.startIndex||n>a.endIndex)return!1;const o=r[n];if(!o)return!1;const i=Be(o,t);return!(n===a.startIndex&&i<a.startParagraphOffset)&&!(n===a.endIndex&&i>a.endParagraphOffset)}function nR(e){const[t,a]=M(!1),[r,n]=M(null),[o,i]=M(!1),[l,s]=M(null),[d,c]=M(null);let h=null,p=null,u=null;const f=()=>{var l;null==(l=e.logger)||l.info("text-drag:stop",{dragging:t(),dropTarget:r()?`${r().paragraphId}:${r().runId}[${r().offset}]`:null,copyMode:o()}),h=null,u=null,a(!1),n(null),i(!1),s(null),c(null),p&&(p.remove(),p=null),window.removeEventListener("mousemove",g),window.removeEventListener("mouseup",m)},g=r=>{var o,l,d;if(!h)return;const f=r.ctrlKey||r.metaKey;if(i(f),!t()){const t=Math.abs(r.clientX-h.x),n=Math.abs(r.clientY-h.y);if(t+n<4)return;null==(o=e.logger)||o.info("text-drag:activate",{start:h,at:{x:r.clientX,y:r.clientY},deltaX:t,deltaY:n}),a(!0),p||(p=document.createElement("style"),p.setAttribute("data-oasis-text-drag-cursor",""),p.textContent="*, *::before, *::after { cursor: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='none' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M6 3.5 6 22.5 10.7 17.9 14.1 26.6 17.2 25.4 13.8 16.9 20.4 16.9Z' fill='white' stroke='white' stroke-width='4'/%3E%3Cpath d='M6 3.5 6 22.5 10.7 17.9 14.1 26.6 17.2 25.4 13.8 16.9 20.4 16.9Z' fill='white' stroke='black' stroke-width='1.4'/%3E%3Cpath d='M7.5 7.1 7.5 19.1 10.9 15.8 14.7 24.4' stroke='white' stroke-width='1.15' opacity='.95'/%3E%3Crect x='22' y='23' width='8.5' height='6.5' rx='.5' fill='white' stroke='white' stroke-width='3'/%3E%3Crect x='22' y='23' width='8.5' height='6.5' rx='.5' stroke='black' stroke-width='1.25' stroke-dasharray='2 2'/%3E%3C/g%3E%3C/svg%3E\") 6 4, auto !important; }",document.head.appendChild(p))}s({x:r.clientX,y:r.clientY});const g=e.resolveSurfaceHitAtPoint(r.clientX,r.clientY);if(!(null==g?void 0:g.resolvedFromParagraph))return null==(l=e.logger)||l.debug("text-drag:hit-miss",{x:r.clientX,y:r.clientY}),n(null),void c(null);const m=g.tableCellAnchorPosition??g.position,v=`${m.paragraphId}:${m.runId}[${m.offset}]|${g.zone}|src=${g.tableCellAnchorPosition?"cell-anchor":"hit"}`;v!==u&&(null==(d=e.logger)||d.info("text-drag:target",{x:r.clientX,y:r.clientY,zone:g.zone,resolvedFromParagraph:g.resolvedFromParagraph,paragraphId:g.paragraphId,paragraphOffset:g.paragraphOffset,hitPosition:`${g.position.paragraphId}:${g.position.runId}[${g.position.offset}]`,target:`${m.paragraphId}:${m.runId}[${m.offset}]`,source:g.tableCellAnchorPosition?"tableCellAnchorPosition":"position"}),u=v),n(m),c(g.caretViewport??null)},m=a=>{var n,i,l;if(null==(n=e.logger)||n.info("text-drag:mouseup",{x:a.clientX,y:a.clientY,dragging:t(),copyMode:o(),dropTarget:r()?`${r().paragraphId}:${r().runId}[${r().offset}]`:null}),t()&&r()){const t=r(),a=o();e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(r=>e.applyTableAwareParagraphEdit(r,e=>Ga(e,t,{copy:a})),{mergeKey:a?"copyTextByDrag":"moveTextByDrag"}),null==(i=e.logger)||i.info("text-drag:apply",{mode:a?"copy":"move",destination:`${t.paragraphId}:${t.runId}[${t.offset}]`})}else if(h){const t=h.position;e.applyTransactionalState(e=>rR(e,t)?Jt(e,{anchor:t,focus:t}):e,{mergeKey:"collapseSelectionByClick"}),null==(l=e.logger)||l.info("text-drag:collapse",{at:`${t.paragraphId}:${t.runId}[${t.offset}]`})}f(),e.focusInputAfterPointerSelection()};return{dragging:t,dropTargetPos:r,copyMode:o,pointerPos:l,caretViewport:d,tryStartTextDrag:(t,r)=>{var o,l,d;if(e.isReadOnly()||!(null==r?void 0:r.resolvedFromParagraph))return null==(o=e.logger)||o.debug("text-drag:skip-start",{reason:e.isReadOnly()?"readonly":"no-hit",x:t.clientX,y:t.clientY}),!1;return rR(e.state(),r.position)?(null==(d=e.logger)||d.info("text-drag:start-pending",{x:t.clientX,y:t.clientY,hit:`${r.position.paragraphId}:${r.position.runId}[${r.position.offset}]`,zone:r.zone}),h={x:t.clientX,y:t.clientY,position:r.tableCellAnchorPosition??r.position},s({x:t.clientX,y:t.clientY}),i(t.ctrlKey||t.metaKey),n(null),c(r.caretViewport??null),a(!1),window.addEventListener("mousemove",g),window.addEventListener("mouseup",m),!0):(null==(l=e.logger)||l.debug("text-drag:skip-start",{reason:"outside-selection",x:t.clientX,y:t.clientY,hit:`${r.position.paragraphId}:${r.position.runId}[${r.position.offset}]`}),!1)},stopDrag:f}}function oR(e){const t=(t,a)=>{var r,n,o,i,l;const s=e.state(),d=ct(s),c=d.findIndex(e=>e.id===s.selection.focus.paragraphId);if(-1===c)return!1;const h=e.surfaceRef(),p=(null==h?void 0:h.getBoundingClientRect())??null,u=e.preferredColumnX(),f=null===u?e.caretBox().left+((null==p?void 0:p.left)??0):u,g=h?Pi({surface:h,state:s,layoutMode:"wordParity"}):null;let m=c+t;const v=yt(s.document,s.selection.focus.paragraphId,ht(s));if(v){const e=it(s,v.zone)[v.blockIndex];if(e&&"table"===e.type){const a=ar(e),s=a.find(e=>e.rowIndex===v.rowIndex&&e.cellIndex===v.cellIndex);if(s){const n=[];for(let a=s.visualRowIndex+t;a>=0&&a<e.rows.length;a+=t)n.push(a);for(const o of n){const n=a.filter(e=>e.visualRowIndex===o&&e.cell.blocks.length>0&&"continue"!==e.cell.vMerge);if(0===n.length)continue;const i=null==(r=n.map(t=>{var a,r;const n=null==(a=t.cell.blocks[0])?void 0:a.id,o=n?null==(r=null==g?void 0:g.paragraphs.find(t=>t.paragraphId===n&&t.tableCell&&t.tableCell.tableId===e.id))?void 0:r.tableCell:null,i=(null==o?void 0:o.left)??f,l=o?o.left+o.width:f;return{entry:t,distance:f<i?i-f:f>l?f-l:0}}).sort((e,t)=>e.distance-t.distance)[0])?void 0:r.entry;if(!i)continue;const l=t<0?i.cell.blocks[i.cell.blocks.length-1].id:i.cell.blocks[0].id;m=d.findIndex(e=>e.id===l);break}}else if(t<0){const t=null==(i=null==(o=null==(n=e.rows[0])?void 0:n.cells[0])?void 0:o.blocks[0])?void 0:i.id;t&&(m=d.findIndex(e=>e.id===t)-1)}else{const t=e.rows[e.rows.length-1],a=null==t?void 0:t.cells[t.cells.length-1],r=null==(l=null==a?void 0:a.blocks[a.blocks.length-1])?void 0:l.id;r&&(m=d.findIndex(e=>e.id===r)+1)}}}if(m<0||m>=d.length)return!1;const y=d[m];let b=0;const M=g?UE(g,y.id):[],w=t<0?M[M.length-1]:M[0];if(w&&w.lines.length>0){const e=w.lines,a=t<0?e[e.length-1]:e[0];b=a.slots.length?a.slots.reduce((e,t)=>Math.abs(f-t.left)<Math.abs(f-e.left)?t:e,a.slots[0]).offset:0}else b=Math.min(Be(y,s.selection.focus),Ne(y).length);return e.setPreferredColumnX(f),e.resetTransactionGrouping(),e.applyTransactionalState(e=>Jt(e,{anchor:a?e.selection.anchor:Fe(y,b),focus:Fe(y,b)})),e.focusInput(),!0};return{moveSelectionToParagraphBoundary:(t,a)=>{const r=e.state(),n=ct(r).find(e=>e.id===r.selection.focus.paragraphId);if(!n)return!1;const o=Fe(n,"start"===t?0:Ne(n).length);return e.clearPreferredColumn(),e.applyState(Jt(r,{anchor:a?r.selection.anchor:o,focus:o})),!0},moveSelectionToDocumentBoundary:(t,a)=>{const r=e.state(),n=ct(r);if(0===n.length)return!1;const o="start"===t?n[0]:n[n.length-1],i=Fe(o,"start"===t?0:Ne(o).length);return e.clearPreferredColumn(),e.applyState(Jt(r,{anchor:a?r.selection.anchor:i,focus:i})),!0},moveSelectionByWord:(t,a)=>{const r=e.state(),n=ct(r),o=n.findIndex(e=>e.id===r.selection.focus.paragraphId),i=n[o];if(!i)return!1;const l=Ne(i),s=r.selection.focus.offset,d=l.length;if(!a&&!Ct(r.selection))return e.clearPreferredColumn(),e.applyState("left"===t?Qt(r):$t(r)),!0;let c=i,h=s;"left"===t?0===s&&o>0?(c=n[o-1],h=Ne(c).length):h=function(e,t){if(0===e.length)return 0;let a=Math.max(0,Math.min(t,e.length));if(0===a)return 0;if($n(e[a-1]??"")){for(;a>0&&$n(e[a-1]??"");)a-=1;return a}for(;a>0&&!$n(e[a-1]??"");)a-=1;for(;a>0&&$n(e[a-1]??"");)a-=1;return a}(l,s):s===d&&o<n.length-1?(c=n[o+1],h=0):h=function(e,t){if(0===e.length)return 0;let a=Math.max(0,Math.min(t,e.length));if(a>=e.length)return e.length;if($n(e[a]??"")){for(;a<e.length&&$n(e[a]??"");)a+=1;for(;a<e.length&&!$n(e[a]??"");)a+=1;return a}for(;a<e.length&&!$n(e[a]??"");)a+=1;return a}(l,s);const p=Fe(c,h);return e.clearPreferredColumn(),e.applyState(Jt(r,{anchor:a?r.selection.anchor:p,focus:p})),!0},moveVerticalByBlock:e=>t(e,!1),moveVerticalSelection:t}}function iR(e){const t=()=>e.state,a=$O({state:t,applyTransactionalState:e.applyTransactionalState,surfaceRef:e.surfaceRef,viewportRef:e.viewportRef}),r=eR({state:t,applyTransactionalState:e.applyTransactionalState,resolvePositionAtSurfacePoint:e.resolvePositionAtSurfacePoint,focusInput:e.focusInput}),n=function(e){const[t,a]=M(null);return{hoveredRevision:t,handleRevisionMouseEnter:(t,r)=>{var n,o;const i=ct(e.state());let l;for(const e of i){for(const a of e.runs)if((null==(n=a.revision)?void 0:n.id)===t){l=a.revision;break}if(l)break}if(!l)return;const s=r.currentTarget.getBoundingClientRect(),d=null==(o=e.surfaceRef())?void 0:o.getBoundingClientRect();d&&a({revisionId:l.id,author:l.author,date:l.date,type:l.type,left:s.left-d.left,top:s.top-d.top})},handleRevisionMouseLeave:()=>{a(null)}}}({state:t,surfaceRef:()=>e.surfaceRef()??null}),o=nR({state:t,isReadOnly:e.isReadOnly,resolveSurfaceHitAtPoint:e.resolveSurfaceHitAtPoint,applyTransactionalState:e.applyTransactionalState,applyTableAwareParagraphEdit:e.tableOps.applyTableAwareParagraphEdit,clearPreferredColumn:e.clearPreferredColumn,resetTransactionGrouping:e.resetTransactionGrouping,focusInputAfterPointerSelection:e.focusInputAfterPointerSelection,logger:e.logger}),i=aR({state:t,applyState:e.applyState,tableResize:a,imageOps:e.imageOps,clearPendingCaretTextStyle:e.styleController.clearPendingCaretTextStyle,clearPreferredColumn:e.clearPreferredColumn,resetTransactionGrouping:e.resetTransactionGrouping,focusInputAfterPointerSelection:e.focusInputAfterPointerSelection,resolveSurfaceHitAtPoint:e.resolveSurfaceHitAtPoint,getParagraphById:mt,textDrag:{tryStartTextDrag:o.tryStartTextDrag},logger:e.logger}),l=function(e){const[t,a]=M(!1);let r=null;return{handleTextInput:a=>{var n,o,i,l;if(Hr("input:text"),e.isReadOnly())return e.logger.debug(`input:readonly ignored value=${JSON.stringify(a.currentTarget.value)}`),void(a.currentTarget.value="");const s=a.currentTarget.value;if(0===s.length)return;if(t())return void e.logger.debug(`input:composing buffer=${JSON.stringify(s)}`);if(null!==r&&s===r)return e.logger.debug(`input:suppressed text=${JSON.stringify(s)}`),r=null,void(a.currentTarget.value="");const d=e.state(),c=d.selection,h=null==(n=ct(d).find(e=>e.id===c.anchor.paragraphId))?void 0:n.runs.find(e=>e.id===c.anchor.runId),p=h?{bold:null==(o=h.styles)?void 0:o.bold,italic:null==(i=h.styles)?void 0:i.italic,underline:null==(l=h.styles)?void 0:l.underline}:null;e.logger.info(`input:text ${JSON.stringify(s)} (len=${s.length}) at ${c.anchor.paragraphId}:${c.anchor.runId}[${c.anchor.offset}] run:${JSON.stringify(p)}`),e.clearPreferredColumn();const u=ea(e.pendingCaretTextStyle());e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Wa(e,s,u)),{mergeKey:"insertText"}),a.currentTarget.value="",e.focusInput(),Nr("input:text")},handleCompositionStart:()=>{e.logger.debug("input:composition start"),a(!0)},handleCompositionEnd:t=>{if(e.isReadOnly())return t.currentTarget.value="",void a(!1);const n=t.data??t.currentTarget.value;if(a(!1),0===n.length)return void(t.currentTarget.value="");const o=e.state().selection;e.logger.info(`input:composition end ${JSON.stringify(n)} (len=${n.length}) at ${o.anchor.paragraphId}:${o.anchor.runId}[${o.anchor.offset}]`),r=n,e.clearPreferredColumn();const i=ea(e.pendingCaretTextStyle());e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Wa(e,n,i)),{mergeKey:"insertText"}),t.currentTarget.value="",e.focusInput()},composing:t}}({state:t,isReadOnly:e.isReadOnly,logger:e.logger,clearPreferredColumn:e.clearPreferredColumn,pendingCaretTextStyle:e.styleController.pendingCaretTextStyle,applyTransactionalState:e.applyTransactionalState,applyTableAwareParagraphEdit:e.tableOps.applyTableAwareParagraphEdit,focusInput:e.focusInput}),s=oR({state:t,applyState:e.applyState,applyTransactionalState:e.applyTransactionalState,surfaceRef:()=>e.surfaceRef()??null,caretBox:e.caretBox,preferredColumnX:e.preferredColumnX,setPreferredColumnX:e.setPreferredColumnX,clearPreferredColumn:e.clearPreferredColumn,resetTransactionGrouping:e.resetTransactionGrouping,focusInput:e.focusInput}),{handleCopy:d,handleCut:c,handlePaste:h,handleDrop:p}=(u={state:t,isReadOnly:e.isReadOnly,forcePlainTextPaste:e.getForcePlainTextPaste,setForcePlainTextPaste:e.setForcePlainTextPaste,clearPreferredColumn:e.clearPreferredColumn,resetTransactionGrouping:e.resetTransactionGrouping,applyTransactionalState:e.applyTransactionalState,applyTableAwareParagraphEdit:e.tableOps.applyTableAwareParagraphEdit,focusInput:e.focusInput,insertImageFromFile:e.insertImageFromFile,resolvePositionAtSurfacePoint:e.resolvePositionAtSurfacePoint},{handleCopy:e=>{var t,a;const r=Yt(u.state());0!==r.length&&(e.preventDefault(),null==(t=e.clipboardData)||t.setData("text/plain",r),null==(a=e.clipboardData)||a.setData("text/html",pr(u.state())))},handleCut:e=>{var t,a;if(u.isReadOnly())return void e.preventDefault();const r=Yt(u.state());0!==r.length&&(e.preventDefault(),null==(t=e.clipboardData)||t.setData("text/plain",r),null==(a=e.clipboardData)||a.setData("text/html",pr(u.state())),u.clearPreferredColumn(),u.resetTransactionGrouping(),u.applyTransactionalState(e=>u.applyTableAwareParagraphEdit(e,e=>Xa(e))),u.focusInput())},handlePaste:e=>{var t,a,r;if(u.isReadOnly())return void e.preventDefault();if(u.forcePlainTextPaste()){u.setForcePlainTextPaste(!1);const a=(null==(t=e.clipboardData)?void 0:t.getData("text/plain"))??"";return 0===a.length?void e.preventDefault():(e.preventDefault(),u.clearPreferredColumn(),u.resetTransactionGrouping(),u.applyTransactionalState(e=>u.applyTableAwareParagraphEdit(e,e=>ja(e,a))),e.currentTarget.value="",void u.focusInput())}const n=fS(e.clipboardData);if(n)return e.preventDefault(),u.clearPreferredColumn(),u.resetTransactionGrouping(),u.insertImageFromFile(n),e.currentTarget.value="",void u.focusInput();const o=gP((null==(a=e.clipboardData)?void 0:a.getData("text/html"))??"");if(o.length>0)return e.preventDefault(),u.clearPreferredColumn(),u.resetTransactionGrouping(),u.applyTransactionalState(e=>u.applyTableAwareParagraphEdit(e,e=>ur(e,o))),e.currentTarget.value="",void u.focusInput();const i=(null==(r=e.clipboardData)?void 0:r.getData("text/plain"))??"";0!==i.length&&(e.preventDefault(),u.clearPreferredColumn(),u.resetTransactionGrouping(),u.applyTransactionalState(e=>u.applyTableAwareParagraphEdit(e,e=>ja(e,i))),e.currentTarget.value="",u.focusInput())},handleDrop:e=>{if(u.isReadOnly())return void e.preventDefault();const t=fS(e.dataTransfer);if(!t)return;e.preventDefault(),u.clearPreferredColumn(),u.resetTransactionGrouping();const a=u.resolvePositionAtSurfacePoint(e.clientX,e.clientY)??u.state().selection.focus;u.insertImageFromFile(t,a),u.focusInput()}});var u;return{tableResize:a,tableDrag:r,revisionController:n,textDrag:o,surfaceEvents:i,textInput:l,navigation:s,handleCopy:d,handleCut:c,handlePaste:h,handleDrop:p}}var lR=ge("<div class=oasis-editor-main-container><section class=oasis-editor-stage>");function sR(e){return[j(re,{get when(){return e.useComposedShell()},get children(){return j(e.shellComponent(),{get state(){return e.state()},get toolbarHost(){return e.toolbarHost},get persistenceStatus(){return e.persistenceStatus},get toolbarRegistry(){return e.toolbarRegistry},get showChrome(){return e.showChrome()},get showTitleBar(){return e.showTitleBar()},get showMenubar(){return e.showMenubar()},get showToolbar(){return e.showToolbar()},get showOutline(){return e.showOutline()},get isReadOnly(){return e.isReadOnly()},get measuredBlockHeights(){return e.measuredBlockHeights},get measuredParagraphLayouts(){return e.measuredParagraphLayouts},get viewportHeight(){return e.viewportHeight},get showFloatingTableToolbar(){return e.showFloatingTableToolbar},get layout(){return e.layout},get overlays(){return e.overlays},get refs(){return e.refs},get surfaceHandlers(){return e.surfaceHandlers},get inputHandlers(){return e.inputHandlers},get fileHandlers(){return e.fileHandlers}})}}),j(re,{get when(){return!e.useComposedShell()},get children(){var t=lR();return Se(t.firstChild,j(WL,{get state(){return e.state},get layout(){return{...e.layout,measuredBlockHeights:e.measuredBlockHeights,measuredParagraphLayouts:e.measuredParagraphLayouts,readOnly:e.isReadOnly()}},get overlays(){return{...e.overlays,toolbarHost:e.toolbarHost,persistenceStatus:e.persistenceStatus,showFloatingTableToolbar:e.showFloatingTableToolbar}},get refs(){return e.refs},get surfaceHandlers(){return e.surfaceHandlers},get inputHandlers(){return e.inputHandlers},get fileHandlers(){return e.fileHandlers}})),t}})]}function dR(e){const[t,a]=M([]),[r,n]=M([]);let o={undoStack:[],redoStack:[],lastTransactionMeta:null};const i=()=>{a(o.undoStack),n(o.redoStack)};return{undoStack:t,redoStack:r,applyTransactionalState:(t,a)=>{const r=e.stateSnapshot(),n=Dr("txn:produce",()=>t(r),0);if(n===r)return;o=function(e,t,a,r,n=Date.now()){var o;return{undoStack:void 0!==(null==r?void 0:r.mergeKey)&&(null==(o=e.lastTransactionMeta)?void 0:o.mergeKey)===r.mergeKey&&n-e.lastTransactionMeta.timestamp<1e3?e.undoStack:[...e.undoStack,t],redoStack:[],lastTransactionMeta:(null==r?void 0:r.mergeKey)?{mergeKey:r.mergeKey,timestamp:n}:null}}(o,r,0,a),i();const l=Dr("txn:invalidate",()=>function(e,t){var a,r,n,o;if(e===t||e.document===t.document)return{};const i=e=>nt(e.document).map(e=>[...(e.header??[]).map(e=>e.id),...e.blocks.map(e=>e.id),...(e.footer??[]).map(e=>e.id)].join("|")).join("||");if(i(e)!==i(t))return{dirtyAll:!0,structureChanged:!0};const l=ct(e),s=ct(t),d=new Map;for(const h of l)d.set(h.id,h);const c=[];for(const h of s){const e=d.get(h.id);if(!e){c.push(h.id);continue}if(e===h)continue;if(e.runs.length!==h.runs.length){c.push(h.id);continue}let t=!1;for(let i=0;i<e.runs.length;i+=1){const l=e.runs[i],s=h.runs[i];if(l!==s){if(l.id!==s.id||l.text!==s.text){t=!0;break}if(Boolean(l.image)!==Boolean(s.image)||((null==(a=l.image)?void 0:a.width)??-1)!==((null==(r=s.image)?void 0:r.width)??-1)||((null==(n=l.image)?void 0:n.height)??-1)!==((null==(o=s.image)?void 0:o.height)??-1)){t=!0;break}}}t&&c.push(h.id)}return{dirtyParagraphIds:c}}(r,n),0);e.applyLayoutInvalidation(l),Dr("txn:setState",()=>e.commitState(n),0)},applyHistoryState:t=>{e.commitState(e.cloneState(t))},resetTransactionGrouping:()=>{var e;e=o,o={...e,lastTransactionMeta:null}},updateHistoryState:e=>{o=e(o),i()},getHistoryState:()=>o,clearHistory:()=>{o={undoStack:[],redoStack:[],lastTransactionMeta:null},i()}}}var cR=ge("<div role=status aria-live=polite><div class=oasis-editor-loading-text>"),hR=ge('<div class="oasis-editor-shell oasis-editor-app">');function pR(e={}){const t=()=>e.ui??{},a=()=>e.document??{},r=()=>e.runtime??{};nP(),x(()=>{var e;e=t().locale??"pt-BR",Xr=e});const n=Tr("app"),{state:o,commitState:i,getStateSnapshot:l}=function(e){const t=e.initialState?Gr(e.initialState):e.initialDocument?qt(e.initialDocument):Wt();let a=t;const[r,n]=M(t);return{state:new Proxy({},{get(e,t){const a=r();if(null!==a&&("object"==typeof a||"function"==typeof a))return Reflect.get(a,t)},has(e,t){const a=r();return null!==a&&("object"==typeof a||"function"==typeof a)&&Reflect.has(a,t)},ownKeys(e){const t=r();return null===t||"object"!=typeof t&&"function"!=typeof t?[]:Reflect.ownKeys(t)},getOwnPropertyDescriptor(e,t){const a=r();return null===a||"object"!=typeof a&&"function"!=typeof a?{configurable:!0,enumerable:!0}:{...Reflect.getOwnPropertyDescriptor(a,t),configurable:!0,enumerable:!0}}}),setStateSignal:n,commitState:e=>{a=e,n(e)},getStateSnapshot:()=>a}}({initialDocument:a().initialDocument,initialState:a().initialState}),s=e=>{i(e)},{showChrome:d,showTitleBar:c,showMenubar:h,showToolbar:p,showOutline:u,layoutMode:f,isReadOnly:g,useComposedShell:m,loadingOptions:v,loadingLabel:y,shellComponent:b}=function(e){const{ui:t,documentOptions:a}=e,r=()=>{const e=t().loading;return"object"==typeof e&&null!==e?e:void 0};return{showChrome:()=>t().showChrome??!0,showTitleBar:()=>t().showTitleBar??!0,showMenubar:()=>t().showMenubar??!0,showToolbar:()=>t().showToolbar??!0,showOutline:()=>t().showOutline??!0,layoutMode:()=>a().layoutMode??"fast",isReadOnly:()=>a().readOnly??!1,useComposedShell:()=>"docs"===t().uiVariant||"document"!==(t().shell??"document"),loadingOptions:r,loadingLabel:()=>{var e;return(null==(e=r())?void 0:e.label)??"Loading oasis-editor..."},shellComponent:()=>{const e=t().shell??"document";return"inline"===e?KL:"balloon"===e?JL:XL}}}({ui:t,documentOptions:a}),C=function(){const[e,t]=M(!1);let a,r,n,o,i;return{focused:e,setFocused:t,focusInput:()=>{t(!0),queueMicrotask(()=>{null==n||n.focus({preventScroll:!0}),n&&(n.selectionStart=n.value.length,n.selectionEnd=n.value.length)})},focusInputAfterPointerSelection:()=>{t(!0),queueMicrotask(()=>{requestAnimationFrame(()=>{null==n||n.focus({preventScroll:!0}),n&&(n.selectionStart=n.value.length,n.selectionEnd=n.value.length)})})},get viewportRef(){return a},set viewportRef(e){a=e},get surfaceRef(){return r},set surfaceRef(e){r=e},get textareaRef(){return n},set textareaRef(e){n=e},get importInputRef(){return o},set importInputRef(e){o=e},get imageInputRef(){return i},set imageInputRef(e){i=e}}}(),S=C.focused,T=C.setFocused,P=C.focusInput,E=C.focusInputAfterPointerSelection,[L,O]=M(!1!==t().loading),{linkDialog:R,setLinkDialog:H,imageAltDialog:N,setImageAltDialog:D,contextMenu:F,setContextMenu:B,fontDialog:V,setFontDialog:z}=function(){const[e,t]=M({isOpen:!1,initialHref:""}),[a,r]=M({isOpen:!1,initialAlt:""}),[n,o]=M({isOpen:!1,x:0,y:0}),[i,l]=M({isOpen:!1,initial:{fontFamily:"",fontSize:"",color:"",colorMode:"automatic",highlight:"",bold:!1,italic:!1,underline:!1,underlineStyle:null,underlineColor:"",strike:!1,doubleStrike:!1,superscript:!1,subscript:!1,smallCaps:!1,allCaps:!1,hidden:!1,characterScale:"",characterSpacing:"",baselineShift:"",kerningThreshold:"",ligatures:"",numberSpacing:"",numberForm:"",stylisticSet:"",contextualAlternates:!1}});return{linkDialog:e,setLinkDialog:t,imageAltDialog:a,setImageAltDialog:r,contextMenu:n,setContextMenu:o,fontDialog:i,setFontDialog:l}}(),_=()=>C.viewportRef,U=()=>C.surfaceRef,q=vS({state:()=>o,applyState:s,applyTransactionalState:(e,t)=>fe(e,t),isReadOnly:g,surfaceRef:()=>U()??null,stabilizeLayoutAfterImport:async()=>{await te()},resetEditorChromeState:()=>Ae(),focusInput:P,logger:n}),G=()=>{var e,t;return"done"!==(null==(e=q.importProgress())?void 0:e.phase)&&"error"!==(null==(t=q.importProgress())?void 0:t.phase)&&null!==q.importProgress()},{measuredBlockHeights:W,measuredParagraphLayouts:X,inputBox:Z,selectionBoxes:K,selectedImageBox:Y,caretBox:J,preferredColumnX:Q,setPreferredColumnX:$,clearPreferredColumn:ee,stabilizeLayoutAfterImport:te,setMeasuredBlockHeights:ae,setMeasuredParagraphLayouts:ne,applyInvalidation:oe,onCleanupHook:ie}=Ni({state:o,surfaceRef:U,viewportRef:_,isImporting:G,layoutMode:f()}),{status:le}=function(e,t,a){const[r,n]=M("Initial"),[o,i]=M(!1),l=()=>a.enabled??!1,s=a.persistence,d=Ji(async e=>{var t;if(l()&&o()){n("Saving...");try{const t=JSON.parse(JSON.stringify(Ui(e)));await s.saveDocument(t),n("Saved")}catch(r){null==(t=a.logger)||t.error("persistence:autosave failed",r),n("Error")}}},1e3);return x(I(()=>e.document,e=>{l()&&o()&&d(e)},{defer:!0})),k(async()=>{var e;if(!l())return i(!0),void n("Saved");try{const e=await s.loadDocument();e&&t(e)}catch(r){null==(e=a.logger)||e.error("persistence:load failed",r)}finally{i(!0),n("Saved")}}),{status:r}}(o,e=>{n.info("persistence:loaded",{docId:e.id});const t=qt(e);i(t),Ae()},{enabled:a().persistenceEnabled??!1,persistence:a().persistence??el,logger:n});let se=!1;const de=Gr,ce=dR({stateSnapshot:l,commitState:i,cloneState:de,applyLayoutInvalidation:oe}),{undoStack:he,redoStack:ue,applyTransactionalState:fe,applyHistoryState:ge,resetTransactionGrouping:me,updateHistoryState:ve,getHistoryState:be,clearHistory:we}=ce,xe=AS({state:()=>o,stateSnapshot:l,applyHistoryState:ge,applyTransactionalState:fe,focusInput:P,clearPreferredColumn:ee,imageOps:()=>Ee,updateHistoryState:ve,getHistoryState:be});x(()=>{var e,t;o.document,o.selection,o.activeSectionIndex,o.activeZone,function(e){$T&&(aP={anchor:{paragraphId:e.selection.anchor.paragraphId,runId:e.selection.anchor.runId,offset:e.selection.anchor.offset},focus:{paragraphId:e.selection.focus.paragraphId,runId:e.selection.focus.runId,offset:e.selection.focus.offset},activeZone:e.activeZone??"main",activeSectionIndex:e.activeSectionIndex??0})}(o),G()||null==(t=(e=a()).onStateChange)||t.call(e,de(l()))});const Ce=()=>Va(o),Ie=fP({state:()=>o,surfaceRef:()=>U()??null,viewportRef:()=>_()??null,measuredBlockHeights:W,measuredParagraphLayouts:X,layoutMode:f}).resolveSurfaceHitAtPoint,ke=tl({state:o,applyState:s,applyTransactionalState:fe,focusInput:P}),Ae=()=>{ee(),ae({}),ne({}),we()},Te=cl({applyTransactionalState:fe,applySelectionToStatePreservingStructure:(e,t)=>({...e,document:Gr(e).document,selection:t}),focusInput:P,logger:n}),Pe=(e,t)=>{var a;return(null==(a=Ie(e,t))?void 0:a.position)??null},Ee=pl({state:o,surfaceRef:U,resolvePositionAtSurfacePoint:Pe,applyState:s,applyTransactionalState:fe,updateHistoryState:ve,focusInput:P,focusInputAfterPointerSelection:E,cloneState:de,logger:n}),Le=kS({state:()=>o,commandsController:()=>qe,clearPreferredColumn:ee,resetTransactionGrouping:me,focusInput:P,logger:n}),{tableResize:Oe,tableDrag:Re,revisionController:He,textDrag:Ne,surfaceEvents:De,textInput:Fe,navigation:Be,handleCopy:Ve,handleCut:ze,handlePaste:_e,handleDrop:Ue}=iR({state:o,applyState:s,applyTransactionalState:fe,isReadOnly:g,logger:n,focusInput:P,focusInputAfterPointerSelection:E,clearPreferredColumn:ee,resetTransactionGrouping:me,surfaceRef:U,viewportRef:_,caretBox:()=>J(),preferredColumnX:()=>Q(),setPreferredColumnX:$,resolveSurfaceHitAtPoint:Ie,resolvePositionAtSurfacePoint:Pe,tableOps:Te,imageOps:Ee,styleController:Le,getForcePlainTextPaste:()=>se,setForcePlainTextPaste:e=>{se=e},insertImageFromFile:q.insertImageFromFile}),qe=Qn({state:o,logger:n,applyState:s,applyTransactionalState:fe,applySelectionAwareTextCommand:Te.applySelectionAwareTextCommand,applySelectionAwareParagraphCommand:Te.applySelectionAwareParagraphCommand,applyTableAwareParagraphEdit:Te.applyTableAwareParagraphEdit,focusInput:P,clearPreferredColumn:ee,resetTransactionGrouping:me,toolbarStyleState:Le.toolbarStyleState,selectionCollapsed:()=>Ct(o.selection),selectedImageRun:Ce,openLinkDialog:e=>H({isOpen:!0,initialHref:e}),openImageAltDialog:e=>D({isOpen:!0,initialAlt:e})}),Ge={...qe,applyBooleanStyleCommand:e=>Le.applyToolbarBooleanStyleCommand(e)},{runtimeReady:We,runtimeEditor:je,commandStateOf:Xe,toolbarHost:Ze,toolbarRegistry:Ke}=AE({essentials:{state:()=>o,isReadOnly:g,forcePlainTextPaste:{get:()=>se,set:e=>{se=e}},undoStack:he,redoStack:ue,commandsController:qe,keyboardCommandsController:Ge,historyActions:xe,styleController:Le,tableOps:Te,docIO:q,importInputRef:()=>C.importInputRef,imageInputRef:()=>C.imageInputRef,selectedImageRun:Ce,selectionBoxes:K,focusInput:P,applyState:s,applyTransactionalState:fe,findReplace:{setIsOpen:ke.setIsOpen}},externalPlugins:r().plugins,customizeToolbar:r().customizeToolbar,initialDocument:l().document,focusEditor:P,logger:n,onReady:r().onReady,onSettled:()=>{O(!1)}}),{handleKeyDown:Ye}=ro({state:()=>o,isReadOnly:g,clearPreferredColumn:ee,resetTransactionGrouping:me,applyState:s,applyTransactionalState:fe,applyTableAwareParagraphEdit:Te.applyTableAwareParagraphEdit,applySelectionAwareParagraphCommand:Te.applySelectionAwareParagraphCommand,focusInput:P,commandsController:Ge,selectedImageRun:Ce,setForcePlainTextPaste:e=>{se=e},moveSelectionByWord:Be.moveSelectionByWord,moveSelectionToDocumentBoundary:Be.moveSelectionToDocumentBoundary,moveSelectionToParagraphBoundary:Be.moveSelectionToParagraphBoundary,moveSelectedImageByParagraph:xe.moveSelectedImageByParagraph,performUndo:xe.performUndo,performRedo:xe.performRedo,moveVerticalSelection:Be.moveVerticalSelection,moveVerticalByBlock:Be.moveVerticalByBlock,resolveAdjacentTableCellPosition:Te.resolveAdjacentTableCellPosition,applySelectionPreservingStructure:xe.applySelectionPreservingStructure,toggleFindReplace:e=>{ke.setIsOpen(e??!ke.isOpen())},toggleReplace:e=>{ke.setIsOpen(e??!ke.isOpen())},executeCommand:(e,t)=>je().execute(e,t),canExecuteCommand:e=>je().canExecute(e)}),{computeFontFamilyOptions:Je,computeFontSizeOptions:Qe,loadLocalFontFamilyOptions:$e}=sP({state:()=>o,toolbarStyleState:Le.toolbarStyleState}),et=(tt={toolbarStyleState:Le.toolbarStyleState,selection:()=>o.selection,isReadOnly:g,loadLocalFontFamilyOptions:$e,setFontDialog:z,setContextMenu:B,clearPreferredColumn:ee,resetTransactionGrouping:me,applyTransactionalState:fe,focusInput:P},{openFontDialog:()=>{var e;tt.loadLocalFontFamilyOptions(),tt.setFontDialog({isOpen:!0,initial:(e=tt.toolbarStyleState(),{fontFamily:e.fontFamily??"",fontSize:e.fontSize??"",color:e.color??"",colorMode:e.color?"custom":"automatic",highlight:e.highlight??"",bold:Boolean(e.bold),italic:Boolean(e.italic),underline:Boolean(e.underline),underlineStyle:e.underlineStyle?e.underlineStyle:null,underlineColor:e.underlineColor??"",strike:Boolean(e.strike),doubleStrike:Boolean(e.doubleStrike),superscript:Boolean(e.superscript),subscript:Boolean(e.subscript),smallCaps:Boolean(e.smallCaps),allCaps:Boolean(e.allCaps),hidden:Boolean(e.hidden),characterScale:e.characterScale??"",characterSpacing:e.characterSpacing??"",baselineShift:e.baselineShift??"",kerningThreshold:e.kerningThreshold??"",ligatures:e.ligatures??"",numberSpacing:e.numberSpacing??"",numberForm:e.numberForm??"",stylisticSet:e.stylisticSet??"",contextualAlternates:Boolean(e.contextualAlternates)})}),tt.setContextMenu({isOpen:!1,x:0,y:0})},applyFontDialogValues:(e,t)=>{tt.isReadOnly()||(Ct(tt.selection())||(tt.clearPreferredColumn(),tt.resetTransactionGrouping(),tt.applyTransactionalState(a=>{let r=a;e.fontFamily!==(t.fontFamily||null)&&(r=Ya(r,"fontFamily",e.fontFamily)),e.fontSize!==(t.fontSize?Number(t.fontSize):null)&&(r=Ya(r,"fontSize",e.fontSize));const n="automatic"===t.colorMode?null:t.color||null;e.color!==n&&(r=Ya(r,"color",e.color)),(e.highlight??"")!==(t.highlight??"")&&(r=Ya(r,"highlight",e.highlight)),e.bold!==Boolean(t.bold)&&(r=Ka(r,"bold")),e.italic!==Boolean(t.italic)&&(r=Ka(r,"italic"));const o=t.underline?t.underlineStyle??"single":null;(e.underlineStyle??null)!==(o??null)&&(r=Ya(r,"underlineStyle",e.underlineStyle));const i=t.underline&&t.underlineColor||null;(e.underlineColor??null)!==(i??null)&&(r=Ya(r,"underlineColor",e.underlineColor)),e.underline!==Boolean(t.underline)&&(r=Ka(r,"underline")),e.strike!==Boolean(t.strike)&&(r=Ka(r,"strike")),e.doubleStrike!==Boolean(t.doubleStrike)&&(r=Ka(r,"doubleStrike")),e.superscript!==Boolean(t.superscript)&&(r=Ka(r,"superscript")),e.subscript!==Boolean(t.subscript)&&(r=Ka(r,"subscript")),e.superscript&&e.subscript&&(r=Ka(r,"subscript")),e.strike&&e.doubleStrike&&(r=Ka(r,"doubleStrike")),e.smallCaps!==Boolean(t.smallCaps)&&(r=Ka(r,"smallCaps")),e.allCaps!==Boolean(t.allCaps)&&(r=Ka(r,"allCaps")),e.hidden!==Boolean(t.hidden)&&(r=Ka(r,"hidden"));const l=t.characterScale?Number(t.characterScale):null;(e.characterScale??null)!==(l??null)&&(r=Ya(r,"characterScale",e.characterScale));const s=t.characterSpacing?Number(t.characterSpacing):null;(e.characterSpacing??null)!==(s??null)&&(r=Ya(r,"characterSpacing",e.characterSpacing));const d=t.baselineShift?Number(t.baselineShift):null;(e.baselineShift??null)!==(d??null)&&(r=Ya(r,"baselineShift",e.baselineShift));const c=t.kerningThreshold?Number(t.kerningThreshold):null;(e.kerningThreshold??null)!==(c??null)&&(r=Ya(r,"kerningThreshold",e.kerningThreshold)),(e.ligatures??null)!==(t.ligatures||null)&&(r=Ya(r,"ligatures",e.ligatures)),(e.numberSpacing??null)!==(t.numberSpacing||null)&&(r=Ya(r,"numberSpacing",e.numberSpacing)),(e.numberForm??null)!==(t.numberForm||null)&&(r=Ya(r,"numberForm",e.numberForm));const h=t.stylisticSet?Number(t.stylisticSet):null;return(e.stylisticSet??null)!==(h??null)&&(r=Ya(r,"stylisticSet",e.stylisticSet)),e.contextualAlternates!==Boolean(t.contextualAlternates)&&(r=Ka(r,"contextualAlternates")),r},{mergeKey:"font-dialog"})),tt.focusInput())}});var tt;const at=et.openFontDialog,rt=et.applyFontDialogValues,nt=function(e){const t=async()=>{var t;const a=e.state(),r=Yt(a);if(!r)return;const n=pr(a);try{"undefined"!=typeof ClipboardItem&&(null==(t=navigator.clipboard)?void 0:t.write)?await navigator.clipboard.write([new ClipboardItem({"text/plain":new Blob([r],{type:"text/plain"}),"text/html":new Blob([n],{type:"text/html"})})]):await navigator.clipboard.writeText(r)}catch(o){e.logger.warn("contextMenu:copy:failed",{error:String(o)});try{await navigator.clipboard.writeText(r)}catch{}}},a=async()=>{e.isReadOnly()||Yt(e.state())&&(await t(),e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>Xa(e))),e.focusInput())},r=async()=>{var t,a;if(e.isReadOnly())return;let r="",n="";try{if(null==(t=navigator.clipboard)?void 0:t.read){const e=await navigator.clipboard.read();for(const t of e){if(t.types.includes("text/html")){const e=await t.getType("text/html");r=await e.text()}if(t.types.includes("text/plain")){const e=await t.getType("text/plain");n=await e.text()}}}else(null==(a=navigator.clipboard)?void 0:a.readText)&&(n=await navigator.clipboard.readText())}catch(i){e.logger.warn("contextMenu:paste:failed",{error:String(i)});try{n=await navigator.clipboard.readText()}catch{return}}const o=gP(r);if(o.length>0)return e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>ur(e,o))),void e.focusInput();n&&(e.clearPreferredColumn(),e.resetTransactionGrouping(),e.applyTransactionalState(t=>e.applyTableAwareParagraphEdit(t,e=>ja(e,n))),e.focusInput())};return{buildContextMenuItems:()=>{const n=!Ct(e.state().selection),o=e.isReadOnly();return[{id:"cut",label:Zr("contextmenu.cut"),icon:"scissors",shortcut:"Ctrl+X",disabled:o||!n,testId:"editor-context-menu-cut",onSelect:()=>{a()}},{id:"copy",label:Zr("contextmenu.copy"),icon:"copy",shortcut:"Ctrl+C",disabled:!n,testId:"editor-context-menu-copy",onSelect:()=>{t()}},{id:"paste",label:Zr("contextmenu.paste"),icon:"clipboard",shortcut:"Ctrl+V",disabled:o,testId:"editor-context-menu-paste",onSelect:()=>{r()}},{id:"sep1",type:"separator"},{id:"link",label:Zr("contextmenu.link"),icon:"link",disabled:o||!n,testId:"editor-context-menu-link",onSelect:e.promptForLink},{id:"font",label:Zr("contextmenu.font"),icon:"type",disabled:o||!n,testId:"editor-context-menu-font",onSelect:e.openFontDialog}]},closeContextMenu:()=>{e.setContextMenu({isOpen:!1,x:0,y:0})},handleEditorContextMenu:t=>{t.preventDefault(),e.setContextMenu({isOpen:!0,x:t.clientX,y:t.clientY})},programmaticCopy:t,programmaticCut:a,programmaticPaste:r}}({state:()=>o,isReadOnly:g,logger:n,setContextMenu:B,clearPreferredColumn:ee,resetTransactionGrouping:me,applyTransactionalState:fe,applyTableAwareParagraphEdit:Te.applyTableAwareParagraphEdit,focusInput:P,promptForLink:qe.promptForLink,openFontDialog:at}),ot=nt.buildContextMenuItems,it=nt.handleEditorContextMenu,lt=nt.closeContextMenu,{layout:st,overlays:dt,refs:ct,surfaceHandlers:pt,inputHandlers:ut,fileHandlers:ft}=function(e){const t={onImportInputChange:t=>{var a;return e.handleImportDocx((null==(a=t.currentTarget.files)?void 0:a[0])??null)},onImageInputChange:t=>{var a;return e.handleInsertImage((null==(a=t.currentTarget.files)?void 0:a[0])??null)}};return{layout:{layoutMode:e.layoutMode,viewportHeight:e.viewportHeight,class:e.className,style:e.style},overlays:{selectionBoxes:e.selectionBoxes,selectedImageBox:e.selectedImageBox,caretBox:e.caretBox,inputBox:e.inputBox,hoveredRevision:e.hoveredRevision,focused:e.focused,showCaret:e.showCaret,importProgress:e.importProgress},refs:{onViewportRef:t=>{e.focusController.viewportRef=t},onSurfaceRef:t=>{e.focusController.surfaceRef=t},onTextareaRef:t=>{e.focusController.textareaRef=t},onImportInputRef:t=>{e.focusController.importInputRef=t},onImageInputRef:t=>{e.focusController.imageInputRef=t}},surfaceHandlers:{onDragOver:e=>e.preventDefault(),onDrop:e.handleDrop,onEditorMouseDown:e.onEditorMouseDown,onSurfaceMouseDown:e.surfaceEvents.handleSurfaceMouseDown,onSurfaceClick:e.surfaceEvents.handleSurfaceClick,onSurfaceMouseMove:e.tableResize.handleMouseMove,onSurfaceDblClick:e.surfaceEvents.handleSurfaceDblClick,onParagraphMouseDown:e.surfaceEvents.handleParagraphMouseDown,onImageMouseDown:e.handleImageMouseDown,onImageResizeHandleMouseDown:e.handleImageResizeHandleMouseDown,onTableDragHandleMouseDown:e.tableDrag.handleMouseDown,onRevisionMouseEnter:e.revisionController.handleRevisionMouseEnter,onRevisionMouseLeave:e.revisionController.handleRevisionMouseLeave,onEditorContextMenu:t=>e.handleEditorContextMenu(t)},inputHandlers:{onInputBlur:()=>e.setFocused(!1),onInputFocus:()=>e.setFocused(!0),onCompositionEnd:e.textInput.handleCompositionEnd,onCompositionStart:e.textInput.handleCompositionStart,onCopy:e.handleCopy,onCut:e.handleCut,onInput:e.textInput.handleTextInput,onKeyDown:e.handleKeyDown,onPaste:e.handlePaste},fileHandlers:t}}({layoutMode:f(),viewportHeight:t().viewportHeight,className:t().class,style:t().style,selectionBoxes:K,selectedImageBox:Y,caretBox:J,inputBox:Z,hoveredRevision:He.hoveredRevision,focused:S,showCaret:()=>function(e,t){if(!t.visible||!Ct(e.selection))return!1;const a=ht(e),r=yt(e.document,e.selection.anchor.paragraphId,a),n=yt(e.document,e.selection.focus.paragraphId,a);return!(r&&n&&r.blockIndex===n.blockIndex&&(r.rowIndex!==n.rowIndex||r.cellIndex!==n.cellIndex))}(o,J()),importProgress:q.importProgress,focusController:C,handleImportDocx:q.handleImportDocx,handleInsertImage:q.handleInsertImage,surfaceEvents:De,tableResize:Oe,tableDrag:Re,revisionController:He,handleDrop:Ue,onEditorMouseDown:e=>{0===e.button&&(Le.clearPendingCaretTextStyle(),e.preventDefault(),P())},handleImageMouseDown:Ee.handleImageMouseDown,handleImageResizeHandleMouseDown:Ee.handleImageResizeHandleMouseDown,handleEditorContextMenu:it,textInput:Fe,setFocused:T,handleCopy:Ve,handleCut:ze,handlePaste:_e,handleKeyDown:e=>{["ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Home","End","PageUp","PageDown","Escape"].includes(e.key)&&Le.clearPendingCaretTextStyle();const t=[e.ctrlKey?"Ctrl":null,e.metaKey?"Meta":null,e.altKey?"Alt":null,e.shiftKey?"Shift":null].filter(Boolean).join("+"),a=t?`${t}+${e.key}`:e.key,r=o.selection;n.debug(`key:down ${a} at ${r.anchor.paragraphId}:${r.anchor.runId}[${r.anchor.offset}]`),Hr("input-to-layout"),Ye(e),Nr("input-to-layout")}});return k(()=>{!function(e=document.body){JT||(YT({icons:KT,nameAttr:"data-lucide",root:e}),JT=new MutationObserver(t=>{let a=!1;for(const e of t)if(e.addedNodes.length>0||"attributes"===e.type){a=!0;break}a&&JT&&(JT.disconnect(),YT({icons:KT,nameAttr:"data-lucide",root:e}),JT.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-lucide"]}))}),JT.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-lucide"]}))}(),function(){if(!Or&&window.PerformanceObserver)try{Or=new PerformanceObserver(e=>{for(const t of e.getEntries())Lr.push({duration:Math.round(100*t.duration)/100,startTime:Math.round(t.startTime)})}),Or.observe({type:"longtask",buffered:!0})}catch{}}(),window.__OASIS_PERF_REPORT=()=>{const e=Er.filter(e=>e.name.startsWith("layout:")).map(e=>e.duration),t=Er.filter(e=>"input-to-layout"===e.name).map(e=>e.duration),a=Er.filter(e=>"input:text"===e.name).map(e=>e.duration),r=Vr(e),n=Vr(t),o=Vr(a),i=Vr(Lr.map(e=>e.duration));console.group("%c[perf] Summary","color: #f59e0b; font-weight: bold;"),console.info(`input:text → p50=${o.p50}ms p95=${o.p95}ms p99=${o.p99}ms max=${o.max}ms (n=${o.count})`),console.info(`input-to-layout → p50=${n.p50}ms p95=${n.p95}ms p99=${n.p99}ms max=${n.max}ms (n=${n.count})`),console.info(`layout:sync → p50=${r.p50}ms p95=${r.p95}ms p99=${r.p99}ms max=${r.max}ms (n=${r.count})`),console.info(`longtasks → p50=${i.p50}ms p95=${i.p95}ms p99=${i.p99}ms max=${i.max}ms (n=${i.count})`),console.groupEnd()},window.__OASIS_DOM_STATS=()=>{const e=(t=(null==Fr?void 0:Fr())??null)?{totalNodes:t.querySelectorAll("*").length,pages:t.querySelectorAll('[data-renderer="canvas"][data-page-index]').length,blocks:0,paragraphs:0,lines:0,charSpans:0,segmentSpans:0,runSpans:0}:{totalNodes:0,pages:0,blocks:0,paragraphs:0,lines:0,charSpans:0,segmentSpans:0,runSpans:0};var t;return console.info("%c[perf] DOM stats","color: #f59e0b; font-weight: bold;",e),e},Fr=()=>U()??null}),A(()=>{ie(),De.stopDragging(),Ne.stopDrag(),Ee.stopImageDrag(),Ee.stopImageResize(),null==JT||JT.disconnect(),JT=null}),Se(gt=hR(),j(re,{get when(){return pe(()=>!(m()||!d()))()&&p()},get children(){return j(Jn,{host:Ze,registry:Ke})}}),null),Se(gt,j(WO,{dialogs:{linkDialog:R,setLinkDialog:H,imageAltDialog:N,setImageAltDialog:D,contextMenu:F,setContextMenu:B,fontDialog:V,setFontDialog:z},findReplace:ke,fontFamilyOptions:Je,fontSizeOptions:Qe,contextMenuItems:ot,focusInput:P,get applyLinkCommand(){return qe.applyLinkCommand},get applyImageAltCommand(){return qe.applyImageAltCommand},applyFontDialogValues:rt,closeContextMenu:lt}),null),Se(gt,j(sR,{useComposedShell:m,shellComponent:b,state:()=>o,toolbarHost:Ze,persistenceStatus:le,toolbarRegistry:Ke,showChrome:d,showTitleBar:c,showMenubar:h,showToolbar:p,showOutline:u,isReadOnly:g,viewportHeight:()=>t().viewportHeight,measuredBlockHeights:W,measuredParagraphLayouts:X,showFloatingTableToolbar:()=>!g()&&null!==Xe("tableContext").value,layout:st,overlays:dt,refs:ct,surfaceHandlers:pt,inputHandlers:ut,fileHandlers:ft}),null),Se(gt,j(aO,{state:o,get surfaceRef(){return U()},tableResize:Oe,imageOps:Ee,tableDrag:Re,textDrag:Ne}),null),Se(gt,j(re,{get when(){return L()||!We()},get children(){var e=cR();return Se(e.firstChild,y),w(t=>{var a,r,n=["oasis-editor-loading",null==(a=v())?void 0:a.class].filter(Boolean).join(" "),o=null==(r=v())?void 0:r.style;return n!==t.e&&ye(e,t.e=n),t.t=Me(e,o,t.t),t},{e:void 0,t:void 0}),e}}),null),w(e=>{var t=!!m(),a=!!g();return t!==e.e&&gt.classList.toggle("oasis-editor-docs",e.e=t),a!==e.t&&gt.classList.toggle("oasis-editor-read-only",e.t=a),e},{e:void 0,t:void 0}),gt;var gt}function uR(e){return j(pR,J(e,{get ui(){return{...e.ui,showChrome:!1}}}))}e.BalloonShell=JL,e.CommandRegistry=CE,e.DEFAULT_PALETTE=_n,e.Dialog=UP,e.DocumentShell=XL,e.Editor=SE,e.InlineShell=KL,e.OasisEditorContainer=uR,e.PluginCollection=xE,e.Popover=dn,e.Tabs=gO,e.Toolbar=Jn,e.ToolbarButton=on,e.ToolbarColorPicker=Hn,e.ToolbarGridPicker=zn,e.ToolbarMenu=mn,e.ToolbarSelect=yn,e.ToolbarSeparator=Mn,e.ToolbarSplitButton=xn,e.commandRefName=IE,e.createDefaultToolbarPreset=yE,e.createEditorCommandBus=function(e){return{execute(t,a){const r=kE(t,a);return e.execute(r.name,r.payload)},canExecute(t,a){const r=kE(t,a);return e.canExecute(r.name,r.payload)},state(t){var a;const r=kE(t),n=e.commands.get(r.name);return(null==(a=null==n?void 0:n.refresh)?void 0:a.call(n,r.payload))??{isEnabled:e.commands.has(r.name)}}}},e.createOasisEditor=function(e,t={}){return{dispose:fe(()=>pR(t),e)}},e.createOasisEditorContainer=function(e,t={}){return{dispose:fe(()=>uR(t),e)}},e.createToolbarRegistry=wE,e.mount=function(e,t={}){const a=fe(()=>pR(t),e);return{unmount:()=>{a(),e.innerHTML=""}}},e.registerToolbarRenderer=function(e,t){Xn.set(e,t)},e.resolveCommandRef=kE,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});