├── .github └── workflows │ └── pages.yaml ├── .gitignore ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── css │ └── paige │ │ ├── bootstrap │ │ └── paige.scss │ │ └── paige.css └── site.webmanifest ├── example ├── README.md ├── content │ ├── _index.md │ ├── authors │ │ ├── _index.md │ │ └── author-demo │ │ │ └── _index.md │ ├── categories │ │ ├── _index.md │ │ └── paige │ │ │ └── _index.md │ ├── content │ │ ├── _index.md │ │ ├── alert.md │ │ ├── emoji-support.md │ │ ├── link.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.md │ │ ├── placeholder-text.md │ │ └── rich-content.md │ ├── customizations │ │ ├── _index.md │ │ ├── show.md │ │ └── style.md │ ├── layouts │ │ ├── _index.md │ │ ├── cloud │ │ │ ├── _index.md │ │ │ ├── apple.md │ │ │ ├── banana.md │ │ │ └── cantaloupe.md │ │ └── search.md │ ├── series │ │ ├── _index.md │ │ └── series-demo │ │ │ └── _index.md │ ├── shortcodes │ │ ├── _index.md │ │ ├── code.md │ │ ├── email.md │ │ ├── figure.md │ │ ├── gallery │ │ │ ├── 01-2.jpg │ │ │ ├── 02-2.jpg │ │ │ ├── 03.jpg │ │ │ ├── 04.jpg │ │ │ ├── 05.jpg │ │ │ ├── 06.jpg │ │ │ ├── 07.jpg │ │ │ ├── 08.jpg │ │ │ ├── 09.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 20.jpg │ │ │ ├── 21.jpg │ │ │ ├── 22.jpg │ │ │ ├── 23.jpg │ │ │ ├── 24.jpg │ │ │ ├── 25.jpg │ │ │ ├── 26.jpg │ │ │ ├── 27.jpg │ │ │ ├── 28.jpg │ │ │ ├── 29.jpg │ │ │ ├── 30.jpg │ │ │ ├── 31.jpg │ │ │ ├── 32.jpg │ │ │ ├── 33.jpg │ │ │ ├── 34.jpg │ │ │ ├── 35.jpg │ │ │ ├── 36.jpg │ │ │ ├── 37.jpg │ │ │ ├── 38.jpg │ │ │ ├── index.md │ │ │ └── large │ │ │ │ ├── 1.jpg │ │ │ │ └── 2.jpg │ │ ├── icon.md │ │ ├── image.md │ │ ├── quote.md │ │ ├── request.md │ │ ├── tabs.md │ │ ├── vimeo.md │ │ └── youtube.md │ └── tags │ │ ├── _index.md │ │ └── sections │ │ └── _index.md ├── go.mod ├── go.sum └── hugo.toml ├── go.mod ├── hugo.toml ├── i18n ├── ar.yaml ├── be.yaml ├── bg.yaml ├── bn.yaml ├── bs.yaml ├── ca.yaml ├── cs.yaml ├── da.yaml ├── de.yaml ├── el.yaml ├── en.yaml ├── es.yaml ├── et.yaml ├── eu.yaml ├── fi.yaml ├── fr.yaml ├── ga.yaml ├── gl.yaml ├── hi.yaml ├── hr.yaml ├── hu.yaml ├── is.yaml ├── it.yaml ├── ja.yaml ├── lb.yaml ├── lt.yaml ├── lv.yaml ├── mk.yaml ├── mr.yaml ├── mt.yaml ├── nl.yaml ├── no.yaml ├── pl.yaml ├── pnb.yaml ├── pt.yaml ├── ro.yaml ├── ru.yaml ├── sk.yaml ├── sl.yaml ├── sq.yaml ├── sr.yaml ├── sv.yaml ├── uk.yaml └── zh.yaml ├── images ├── screenshot-dark.jpg ├── screenshot.jpg └── tn.jpg ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ ├── render-codeblock.atom.xml │ │ ├── render-codeblock.rss.xml │ │ ├── render-heading.atom.xml │ │ ├── render-heading.html │ │ ├── render-heading.rss.xml │ │ └── render-link.html │ ├── baseof.html │ ├── home.paige-search.json │ ├── list.atom.xml │ ├── list.html │ ├── list.rss.xml │ ├── paige │ │ ├── cloud.html │ │ └── search.html │ └── single.html ├── partials │ └── paige │ │ ├── body.html │ │ ├── dark.css │ │ ├── func-authors.html │ │ ├── func-include.html │ │ ├── func-keywords.html │ │ ├── func-minify.html │ │ ├── func-resource.html │ │ ├── func-target.html │ │ ├── head.html │ │ ├── html.html │ │ ├── image.html │ │ ├── light.css │ │ ├── links.html │ │ ├── list-item.html │ │ ├── list.html │ │ ├── metas.html │ │ ├── page-footer.html │ │ ├── page-header.html │ │ ├── page.html │ │ ├── schema.html │ │ ├── scripts.html │ │ ├── search.html │ │ ├── site-footer.html │ │ ├── site-header.html │ │ ├── tag-a.html │ │ ├── tag-iframe.html │ │ ├── tag-img.html │ │ ├── tag-link.html │ │ ├── tag-script.html │ │ └── video.html └── shortcodes │ └── paige │ ├── code.html │ ├── code.xml │ ├── email.html │ ├── figure.html │ ├── gallery.html │ ├── icon.html │ ├── image.html │ ├── quote.html │ ├── request.html │ ├── tabs.html │ ├── tabs │ ├── button.html │ ├── buttons.html │ ├── pane.html │ └── panes.html │ ├── vimeo.html │ └── youtube.html ├── paige ├── README.md ├── node_modules │ ├── .bin │ │ └── katex │ ├── .package-lock.json │ ├── @popperjs │ │ └── core │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── cjs │ │ │ │ ├── enums.js │ │ │ │ ├── enums.js.flow │ │ │ │ ├── enums.js.map │ │ │ │ ├── popper-base.js │ │ │ │ ├── popper-base.js.flow │ │ │ │ ├── popper-base.js.map │ │ │ │ ├── popper-lite.js │ │ │ │ ├── popper-lite.js.flow │ │ │ │ ├── popper-lite.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.flow │ │ │ │ └── popper.js.map │ │ │ ├── esm │ │ │ │ ├── createPopper.js │ │ │ │ ├── dom-utils │ │ │ │ │ ├── contains.js │ │ │ │ │ ├── getBoundingClientRect.js │ │ │ │ │ ├── getClippingRect.js │ │ │ │ │ ├── getCompositeRect.js │ │ │ │ │ ├── getComputedStyle.js │ │ │ │ │ ├── getDocumentElement.js │ │ │ │ │ ├── getDocumentRect.js │ │ │ │ │ ├── getHTMLElementScroll.js │ │ │ │ │ ├── getLayoutRect.js │ │ │ │ │ ├── getNodeName.js │ │ │ │ │ ├── getNodeScroll.js │ │ │ │ │ ├── getOffsetParent.js │ │ │ │ │ ├── getParentNode.js │ │ │ │ │ ├── getScrollParent.js │ │ │ │ │ ├── getViewportRect.js │ │ │ │ │ ├── getWindow.js │ │ │ │ │ ├── getWindowScroll.js │ │ │ │ │ ├── getWindowScrollBarX.js │ │ │ │ │ ├── instanceOf.js │ │ │ │ │ ├── isLayoutViewport.js │ │ │ │ │ ├── isScrollParent.js │ │ │ │ │ ├── isTableElement.js │ │ │ │ │ └── listScrollParents.js │ │ │ │ ├── enums.js │ │ │ │ ├── index.js │ │ │ │ ├── modifiers │ │ │ │ │ ├── applyStyles.js │ │ │ │ │ ├── arrow.js │ │ │ │ │ ├── computeStyles.js │ │ │ │ │ ├── eventListeners.js │ │ │ │ │ ├── flip.js │ │ │ │ │ ├── hide.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── popperOffsets.js │ │ │ │ │ └── preventOverflow.js │ │ │ │ ├── popper-base.js │ │ │ │ ├── popper-lite.js │ │ │ │ ├── popper.js │ │ │ │ ├── types.js │ │ │ │ └── utils │ │ │ │ │ ├── computeAutoPlacement.js │ │ │ │ │ ├── computeOffsets.js │ │ │ │ │ ├── debounce.js │ │ │ │ │ ├── detectOverflow.js │ │ │ │ │ ├── expandToHashMap.js │ │ │ │ │ ├── getAltAxis.js │ │ │ │ │ ├── getAltLen.js │ │ │ │ │ ├── getBasePlacement.js │ │ │ │ │ ├── getFreshSideObject.js │ │ │ │ │ ├── getMainAxisFromPlacement.js │ │ │ │ │ ├── getOppositePlacement.js │ │ │ │ │ ├── getOppositeVariationPlacement.js │ │ │ │ │ ├── getVariation.js │ │ │ │ │ ├── math.js │ │ │ │ │ ├── mergeByName.js │ │ │ │ │ ├── mergePaddingObject.js │ │ │ │ │ ├── orderModifiers.js │ │ │ │ │ ├── rectToClientRect.js │ │ │ │ │ ├── uniqueBy.js │ │ │ │ │ ├── userAgent.js │ │ │ │ │ └── within.js │ │ │ └── umd │ │ │ │ ├── enums.js │ │ │ │ ├── enums.js.map │ │ │ │ ├── enums.min.js │ │ │ │ ├── enums.min.js.flow │ │ │ │ ├── enums.min.js.map │ │ │ │ ├── popper-base.js │ │ │ │ ├── popper-base.js.map │ │ │ │ ├── popper-base.min.js │ │ │ │ ├── popper-base.min.js.flow │ │ │ │ ├── popper-base.min.js.map │ │ │ │ ├── popper-lite.js │ │ │ │ ├── popper-lite.js.map │ │ │ │ ├── popper-lite.min.js │ │ │ │ ├── popper-lite.min.js.flow │ │ │ │ ├── popper-lite.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ ├── popper.min.js.flow │ │ │ │ └── popper.min.js.map │ │ │ ├── index.d.ts │ │ │ ├── lib │ │ │ ├── createPopper.d.ts │ │ │ ├── createPopper.js │ │ │ ├── createPopper.js.flow │ │ │ ├── dom-utils │ │ │ │ ├── contains.d.ts │ │ │ │ ├── contains.js │ │ │ │ ├── contains.js.flow │ │ │ │ ├── getBoundingClientRect.d.ts │ │ │ │ ├── getBoundingClientRect.js │ │ │ │ ├── getBoundingClientRect.js.flow │ │ │ │ ├── getClippingRect.d.ts │ │ │ │ ├── getClippingRect.js │ │ │ │ ├── getClippingRect.js.flow │ │ │ │ ├── getCompositeRect.d.ts │ │ │ │ ├── getCompositeRect.js │ │ │ │ ├── getCompositeRect.js.flow │ │ │ │ ├── getComputedStyle.d.ts │ │ │ │ ├── getComputedStyle.js │ │ │ │ ├── getComputedStyle.js.flow │ │ │ │ ├── getDocumentElement.d.ts │ │ │ │ ├── getDocumentElement.js │ │ │ │ ├── getDocumentElement.js.flow │ │ │ │ ├── getDocumentRect.d.ts │ │ │ │ ├── getDocumentRect.js │ │ │ │ ├── getDocumentRect.js.flow │ │ │ │ ├── getHTMLElementScroll.d.ts │ │ │ │ ├── getHTMLElementScroll.js │ │ │ │ ├── getHTMLElementScroll.js.flow │ │ │ │ ├── getLayoutRect.d.ts │ │ │ │ ├── getLayoutRect.js │ │ │ │ ├── getLayoutRect.js.flow │ │ │ │ ├── getNodeName.d.ts │ │ │ │ ├── getNodeName.js │ │ │ │ ├── getNodeName.js.flow │ │ │ │ ├── getNodeScroll.d.ts │ │ │ │ ├── getNodeScroll.js │ │ │ │ ├── getNodeScroll.js.flow │ │ │ │ ├── getOffsetParent.d.ts │ │ │ │ ├── getOffsetParent.js │ │ │ │ ├── getOffsetParent.js.flow │ │ │ │ ├── getParentNode.d.ts │ │ │ │ ├── getParentNode.js │ │ │ │ ├── getParentNode.js.flow │ │ │ │ ├── getScrollParent.d.ts │ │ │ │ ├── getScrollParent.js │ │ │ │ ├── getScrollParent.js.flow │ │ │ │ ├── getViewportRect.d.ts │ │ │ │ ├── getViewportRect.js │ │ │ │ ├── getViewportRect.js.flow │ │ │ │ ├── getWindow.d.ts │ │ │ │ ├── getWindow.js │ │ │ │ ├── getWindow.js.flow │ │ │ │ ├── getWindowScroll.d.ts │ │ │ │ ├── getWindowScroll.js │ │ │ │ ├── getWindowScroll.js.flow │ │ │ │ ├── getWindowScrollBarX.d.ts │ │ │ │ ├── getWindowScrollBarX.js │ │ │ │ ├── getWindowScrollBarX.js.flow │ │ │ │ ├── instanceOf.d.ts │ │ │ │ ├── instanceOf.js │ │ │ │ ├── instanceOf.js.flow │ │ │ │ ├── isLayoutViewport.d.ts │ │ │ │ ├── isLayoutViewport.js │ │ │ │ ├── isLayoutViewport.js.flow │ │ │ │ ├── isScrollParent.d.ts │ │ │ │ ├── isScrollParent.js │ │ │ │ ├── isScrollParent.js.flow │ │ │ │ ├── isTableElement.d.ts │ │ │ │ ├── isTableElement.js │ │ │ │ ├── isTableElement.js.flow │ │ │ │ ├── listScrollParents.d.ts │ │ │ │ ├── listScrollParents.js │ │ │ │ └── listScrollParents.js.flow │ │ │ ├── enums.d.ts │ │ │ ├── enums.js │ │ │ ├── enums.js.flow │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.flow │ │ │ ├── modifiers │ │ │ │ ├── applyStyles.d.ts │ │ │ │ ├── applyStyles.js │ │ │ │ ├── applyStyles.js.flow │ │ │ │ ├── arrow.d.ts │ │ │ │ ├── arrow.js │ │ │ │ ├── arrow.js.flow │ │ │ │ ├── computeStyles.d.ts │ │ │ │ ├── computeStyles.js │ │ │ │ ├── computeStyles.js.flow │ │ │ │ ├── eventListeners.d.ts │ │ │ │ ├── eventListeners.js │ │ │ │ ├── eventListeners.js.flow │ │ │ │ ├── flip.d.ts │ │ │ │ ├── flip.js │ │ │ │ ├── flip.js.flow │ │ │ │ ├── hide.d.ts │ │ │ │ ├── hide.js │ │ │ │ ├── hide.js.flow │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.flow │ │ │ │ ├── offset.d.ts │ │ │ │ ├── offset.js │ │ │ │ ├── offset.js.flow │ │ │ │ ├── popperOffsets.d.ts │ │ │ │ ├── popperOffsets.js │ │ │ │ ├── popperOffsets.js.flow │ │ │ │ ├── preventOverflow.d.ts │ │ │ │ ├── preventOverflow.js │ │ │ │ └── preventOverflow.js.flow │ │ │ ├── popper-base.d.ts │ │ │ ├── popper-base.js │ │ │ ├── popper-base.js.flow │ │ │ ├── popper-lite.d.ts │ │ │ ├── popper-lite.js │ │ │ ├── popper-lite.js.flow │ │ │ ├── popper.d.ts │ │ │ ├── popper.js │ │ │ ├── popper.js.flow │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── types.js.flow │ │ │ └── utils │ │ │ │ ├── computeAutoPlacement.d.ts │ │ │ │ ├── computeAutoPlacement.js │ │ │ │ ├── computeAutoPlacement.js.flow │ │ │ │ ├── computeOffsets.d.ts │ │ │ │ ├── computeOffsets.js │ │ │ │ ├── computeOffsets.js.flow │ │ │ │ ├── debounce.d.ts │ │ │ │ ├── debounce.js │ │ │ │ ├── debounce.js.flow │ │ │ │ ├── detectOverflow.d.ts │ │ │ │ ├── detectOverflow.js │ │ │ │ ├── detectOverflow.js.flow │ │ │ │ ├── expandToHashMap.d.ts │ │ │ │ ├── expandToHashMap.js │ │ │ │ ├── expandToHashMap.js.flow │ │ │ │ ├── getAltAxis.d.ts │ │ │ │ ├── getAltAxis.js │ │ │ │ ├── getAltAxis.js.flow │ │ │ │ ├── getAltLen.d.ts │ │ │ │ ├── getAltLen.js │ │ │ │ ├── getAltLen.js.flow │ │ │ │ ├── getBasePlacement.d.ts │ │ │ │ ├── getBasePlacement.js │ │ │ │ ├── getBasePlacement.js.flow │ │ │ │ ├── getFreshSideObject.d.ts │ │ │ │ ├── getFreshSideObject.js │ │ │ │ ├── getFreshSideObject.js.flow │ │ │ │ ├── getMainAxisFromPlacement.d.ts │ │ │ │ ├── getMainAxisFromPlacement.js │ │ │ │ ├── getMainAxisFromPlacement.js.flow │ │ │ │ ├── getOppositePlacement.d.ts │ │ │ │ ├── getOppositePlacement.js │ │ │ │ ├── getOppositePlacement.js.flow │ │ │ │ ├── getOppositeVariationPlacement.d.ts │ │ │ │ ├── getOppositeVariationPlacement.js │ │ │ │ ├── getOppositeVariationPlacement.js.flow │ │ │ │ ├── getVariation.d.ts │ │ │ │ ├── getVariation.js │ │ │ │ ├── getVariation.js.flow │ │ │ │ ├── math.d.ts │ │ │ │ ├── math.js │ │ │ │ ├── math.js.flow │ │ │ │ ├── mergeByName.d.ts │ │ │ │ ├── mergeByName.js │ │ │ │ ├── mergeByName.js.flow │ │ │ │ ├── mergePaddingObject.d.ts │ │ │ │ ├── mergePaddingObject.js │ │ │ │ ├── mergePaddingObject.js.flow │ │ │ │ ├── orderModifiers.d.ts │ │ │ │ ├── orderModifiers.js │ │ │ │ ├── orderModifiers.js.flow │ │ │ │ ├── rectToClientRect.d.ts │ │ │ │ ├── rectToClientRect.js │ │ │ │ ├── rectToClientRect.js.flow │ │ │ │ ├── uniqueBy.d.ts │ │ │ │ ├── uniqueBy.js │ │ │ │ ├── uniqueBy.js.flow │ │ │ │ ├── userAgent.d.ts │ │ │ │ ├── userAgent.js │ │ │ │ ├── userAgent.js.flow │ │ │ │ ├── within.d.ts │ │ │ │ ├── within.js │ │ │ │ └── within.js.flow │ │ │ └── package.json │ ├── bootstrap-icons │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-icons.svg │ │ ├── font │ │ │ ├── bootstrap-icons.css │ │ │ ├── bootstrap-icons.json │ │ │ ├── bootstrap-icons.min.css │ │ │ ├── bootstrap-icons.scss │ │ │ └── fonts │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ └── bootstrap-icons.woff2 │ │ ├── icons │ │ │ ├── 0-circle-fill.svg │ │ │ ├── 0-circle.svg │ │ │ ├── 0-square-fill.svg │ │ │ ├── 0-square.svg │ │ │ ├── 1-circle-fill.svg │ │ │ ├── 1-circle.svg │ │ │ ├── 1-square-fill.svg │ │ │ ├── 1-square.svg │ │ │ ├── 123.svg │ │ │ ├── 2-circle-fill.svg │ │ │ ├── 2-circle.svg │ │ │ ├── 2-square-fill.svg │ │ │ ├── 2-square.svg │ │ │ ├── 3-circle-fill.svg │ │ │ ├── 3-circle.svg │ │ │ ├── 3-square-fill.svg │ │ │ ├── 3-square.svg │ │ │ ├── 4-circle-fill.svg │ │ │ ├── 4-circle.svg │ │ │ ├── 4-square-fill.svg │ │ │ ├── 4-square.svg │ │ │ ├── 5-circle-fill.svg │ │ │ ├── 5-circle.svg │ │ │ ├── 5-square-fill.svg │ │ │ ├── 5-square.svg │ │ │ ├── 6-circle-fill.svg │ │ │ ├── 6-circle.svg │ │ │ ├── 6-square-fill.svg │ │ │ ├── 6-square.svg │ │ │ ├── 7-circle-fill.svg │ │ │ ├── 7-circle.svg │ │ │ ├── 7-square-fill.svg │ │ │ ├── 7-square.svg │ │ │ ├── 8-circle-fill.svg │ │ │ ├── 8-circle.svg │ │ │ ├── 8-square-fill.svg │ │ │ ├── 8-square.svg │ │ │ ├── 9-circle-fill.svg │ │ │ ├── 9-circle.svg │ │ │ ├── 9-square-fill.svg │ │ │ ├── 9-square.svg │ │ │ ├── activity.svg │ │ │ ├── airplane-engines-fill.svg │ │ │ ├── airplane-engines.svg │ │ │ ├── airplane-fill.svg │ │ │ ├── airplane.svg │ │ │ ├── alarm-fill.svg │ │ │ ├── alarm.svg │ │ │ ├── alexa.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-center.svg │ │ │ ├── align-end.svg │ │ │ ├── align-middle.svg │ │ │ ├── align-start.svg │ │ │ ├── align-top.svg │ │ │ ├── alipay.svg │ │ │ ├── alphabet-uppercase.svg │ │ │ ├── alphabet.svg │ │ │ ├── alt.svg │ │ │ ├── amazon.svg │ │ │ ├── amd.svg │ │ │ ├── android.svg │ │ │ ├── android2.svg │ │ │ ├── app-indicator.svg │ │ │ ├── app.svg │ │ │ ├── apple.svg │ │ │ ├── archive-fill.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-90deg-down.svg │ │ │ ├── arrow-90deg-left.svg │ │ │ ├── arrow-90deg-right.svg │ │ │ ├── arrow-90deg-up.svg │ │ │ ├── arrow-bar-down.svg │ │ │ ├── arrow-bar-left.svg │ │ │ ├── arrow-bar-right.svg │ │ │ ├── arrow-bar-up.svg │ │ │ ├── arrow-clockwise.svg │ │ │ ├── arrow-counterclockwise.svg │ │ │ ├── arrow-down-circle-fill.svg │ │ │ ├── arrow-down-circle.svg │ │ │ ├── arrow-down-left-circle-fill.svg │ │ │ ├── arrow-down-left-circle.svg │ │ │ ├── arrow-down-left-square-fill.svg │ │ │ ├── arrow-down-left-square.svg │ │ │ ├── arrow-down-left.svg │ │ │ ├── arrow-down-right-circle-fill.svg │ │ │ ├── arrow-down-right-circle.svg │ │ │ ├── arrow-down-right-square-fill.svg │ │ │ ├── arrow-down-right-square.svg │ │ │ ├── arrow-down-right.svg │ │ │ ├── arrow-down-short.svg │ │ │ ├── arrow-down-square-fill.svg │ │ │ ├── arrow-down-square.svg │ │ │ ├── arrow-down-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-circle-fill.svg │ │ │ ├── arrow-left-circle.svg │ │ │ ├── arrow-left-right.svg │ │ │ ├── arrow-left-short.svg │ │ │ ├── arrow-left-square-fill.svg │ │ │ ├── arrow-left-square.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-repeat.svg │ │ │ ├── arrow-return-left.svg │ │ │ ├── arrow-return-right.svg │ │ │ ├── arrow-right-circle-fill.svg │ │ │ ├── arrow-right-circle.svg │ │ │ ├── arrow-right-short.svg │ │ │ ├── arrow-right-square-fill.svg │ │ │ ├── arrow-right-square.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-through-heart-fill.svg │ │ │ ├── arrow-through-heart.svg │ │ │ ├── arrow-up-circle-fill.svg │ │ │ ├── arrow-up-circle.svg │ │ │ ├── arrow-up-left-circle-fill.svg │ │ │ ├── arrow-up-left-circle.svg │ │ │ ├── arrow-up-left-square-fill.svg │ │ │ ├── arrow-up-left-square.svg │ │ │ ├── arrow-up-left.svg │ │ │ ├── arrow-up-right-circle-fill.svg │ │ │ ├── arrow-up-right-circle.svg │ │ │ ├── arrow-up-right-square-fill.svg │ │ │ ├── arrow-up-right-square.svg │ │ │ ├── arrow-up-right.svg │ │ │ ├── arrow-up-short.svg │ │ │ ├── arrow-up-square-fill.svg │ │ │ ├── arrow-up-square.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-angle-contract.svg │ │ │ ├── arrows-angle-expand.svg │ │ │ ├── arrows-collapse-vertical.svg │ │ │ ├── arrows-collapse.svg │ │ │ ├── arrows-expand-vertical.svg │ │ │ ├── arrows-expand.svg │ │ │ ├── arrows-fullscreen.svg │ │ │ ├── arrows-move.svg │ │ │ ├── arrows-vertical.svg │ │ │ ├── arrows.svg │ │ │ ├── aspect-ratio-fill.svg │ │ │ ├── aspect-ratio.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── award-fill.svg │ │ │ ├── award.svg │ │ │ ├── back.svg │ │ │ ├── backpack-fill.svg │ │ │ ├── backpack.svg │ │ │ ├── backpack2-fill.svg │ │ │ ├── backpack2.svg │ │ │ ├── backpack3-fill.svg │ │ │ ├── backpack3.svg │ │ │ ├── backpack4-fill.svg │ │ │ ├── backpack4.svg │ │ │ ├── backspace-fill.svg │ │ │ ├── backspace-reverse-fill.svg │ │ │ ├── backspace-reverse.svg │ │ │ ├── backspace.svg │ │ │ ├── badge-3d-fill.svg │ │ │ ├── badge-3d.svg │ │ │ ├── badge-4k-fill.svg │ │ │ ├── badge-4k.svg │ │ │ ├── badge-8k-fill.svg │ │ │ ├── badge-8k.svg │ │ │ ├── badge-ad-fill.svg │ │ │ ├── badge-ad.svg │ │ │ ├── badge-ar-fill.svg │ │ │ ├── badge-ar.svg │ │ │ ├── badge-cc-fill.svg │ │ │ ├── badge-cc.svg │ │ │ ├── badge-hd-fill.svg │ │ │ ├── badge-hd.svg │ │ │ ├── badge-sd-fill.svg │ │ │ ├── badge-sd.svg │ │ │ ├── badge-tm-fill.svg │ │ │ ├── badge-tm.svg │ │ │ ├── badge-vo-fill.svg │ │ │ ├── badge-vo.svg │ │ │ ├── badge-vr-fill.svg │ │ │ ├── badge-vr.svg │ │ │ ├── badge-wc-fill.svg │ │ │ ├── badge-wc.svg │ │ │ ├── bag-check-fill.svg │ │ │ ├── bag-check.svg │ │ │ ├── bag-dash-fill.svg │ │ │ ├── bag-dash.svg │ │ │ ├── bag-fill.svg │ │ │ ├── bag-heart-fill.svg │ │ │ ├── bag-heart.svg │ │ │ ├── bag-plus-fill.svg │ │ │ ├── bag-plus.svg │ │ │ ├── bag-x-fill.svg │ │ │ ├── bag-x.svg │ │ │ ├── bag.svg │ │ │ ├── balloon-fill.svg │ │ │ ├── balloon-heart-fill.svg │ │ │ ├── balloon-heart.svg │ │ │ ├── balloon.svg │ │ │ ├── ban-fill.svg │ │ │ ├── ban.svg │ │ │ ├── bandaid-fill.svg │ │ │ ├── bandaid.svg │ │ │ ├── bank.svg │ │ │ ├── bank2.svg │ │ │ ├── bar-chart-fill.svg │ │ │ ├── bar-chart-line-fill.svg │ │ │ ├── bar-chart-line.svg │ │ │ ├── bar-chart-steps.svg │ │ │ ├── bar-chart.svg │ │ │ ├── basket-fill.svg │ │ │ ├── basket.svg │ │ │ ├── basket2-fill.svg │ │ │ ├── basket2.svg │ │ │ ├── basket3-fill.svg │ │ │ ├── basket3.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery.svg │ │ │ ├── behance.svg │ │ │ ├── bell-fill.svg │ │ │ ├── bell-slash-fill.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier.svg │ │ │ ├── bezier2.svg │ │ │ ├── bicycle.svg │ │ │ ├── bing.svg │ │ │ ├── binoculars-fill.svg │ │ │ ├── binoculars.svg │ │ │ ├── blockquote-left.svg │ │ │ ├── blockquote-right.svg │ │ │ ├── bluetooth.svg │ │ │ ├── body-text.svg │ │ │ ├── book-fill.svg │ │ │ ├── book-half.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-check-fill.svg │ │ │ ├── bookmark-check.svg │ │ │ ├── bookmark-dash-fill.svg │ │ │ ├── bookmark-dash.svg │ │ │ ├── bookmark-fill.svg │ │ │ ├── bookmark-heart-fill.svg │ │ │ ├── bookmark-heart.svg │ │ │ ├── bookmark-plus-fill.svg │ │ │ ├── bookmark-plus.svg │ │ │ ├── bookmark-star-fill.svg │ │ │ ├── bookmark-star.svg │ │ │ ├── bookmark-x-fill.svg │ │ │ ├── bookmark-x.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks-fill.svg │ │ │ ├── bookmarks.svg │ │ │ ├── bookshelf.svg │ │ │ ├── boombox-fill.svg │ │ │ ├── boombox.svg │ │ │ ├── bootstrap-fill.svg │ │ │ ├── bootstrap-reboot.svg │ │ │ ├── bootstrap.svg │ │ │ ├── border-all.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-center.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-middle.svg │ │ │ ├── border-outer.svg │ │ │ ├── border-right.svg │ │ │ ├── border-style.svg │ │ │ ├── border-top.svg │ │ │ ├── border-width.svg │ │ │ ├── border.svg │ │ │ ├── bounding-box-circles.svg │ │ │ ├── bounding-box.svg │ │ │ ├── box-arrow-down-left.svg │ │ │ ├── box-arrow-down-right.svg │ │ │ ├── box-arrow-down.svg │ │ │ ├── box-arrow-in-down-left.svg │ │ │ ├── box-arrow-in-down-right.svg │ │ │ ├── box-arrow-in-down.svg │ │ │ ├── box-arrow-in-left.svg │ │ │ ├── box-arrow-in-right.svg │ │ │ ├── box-arrow-in-up-left.svg │ │ │ ├── box-arrow-in-up-right.svg │ │ │ ├── box-arrow-in-up.svg │ │ │ ├── box-arrow-left.svg │ │ │ ├── box-arrow-right.svg │ │ │ ├── box-arrow-up-left.svg │ │ │ ├── box-arrow-up-right.svg │ │ │ ├── box-arrow-up.svg │ │ │ ├── box-fill.svg │ │ │ ├── box-seam-fill.svg │ │ │ ├── box-seam.svg │ │ │ ├── box.svg │ │ │ ├── box2-fill.svg │ │ │ ├── box2-heart-fill.svg │ │ │ ├── box2-heart.svg │ │ │ ├── box2.svg │ │ │ ├── boxes.svg │ │ │ ├── braces-asterisk.svg │ │ │ ├── braces.svg │ │ │ ├── bricks.svg │ │ │ ├── briefcase-fill.svg │ │ │ ├── briefcase.svg │ │ │ ├── brightness-alt-high-fill.svg │ │ │ ├── brightness-alt-high.svg │ │ │ ├── brightness-alt-low-fill.svg │ │ │ ├── brightness-alt-low.svg │ │ │ ├── brightness-high-fill.svg │ │ │ ├── brightness-high.svg │ │ │ ├── brightness-low-fill.svg │ │ │ ├── brightness-low.svg │ │ │ ├── brilliance.svg │ │ │ ├── broadcast-pin.svg │ │ │ ├── broadcast.svg │ │ │ ├── browser-chrome.svg │ │ │ ├── browser-edge.svg │ │ │ ├── browser-firefox.svg │ │ │ ├── browser-safari.svg │ │ │ ├── brush-fill.svg │ │ │ ├── brush.svg │ │ │ ├── bucket-fill.svg │ │ │ ├── bucket.svg │ │ │ ├── bug-fill.svg │ │ │ ├── bug.svg │ │ │ ├── building-add.svg │ │ │ ├── building-check.svg │ │ │ ├── building-dash.svg │ │ │ ├── building-down.svg │ │ │ ├── building-exclamation.svg │ │ │ ├── building-fill-add.svg │ │ │ ├── building-fill-check.svg │ │ │ ├── building-fill-dash.svg │ │ │ ├── building-fill-down.svg │ │ │ ├── building-fill-exclamation.svg │ │ │ ├── building-fill-gear.svg │ │ │ ├── building-fill-lock.svg │ │ │ ├── building-fill-slash.svg │ │ │ ├── building-fill-up.svg │ │ │ ├── building-fill-x.svg │ │ │ ├── building-fill.svg │ │ │ ├── building-gear.svg │ │ │ ├── building-lock.svg │ │ │ ├── building-slash.svg │ │ │ ├── building-up.svg │ │ │ ├── building-x.svg │ │ │ ├── building.svg │ │ │ ├── buildings-fill.svg │ │ │ ├── buildings.svg │ │ │ ├── bullseye.svg │ │ │ ├── bus-front-fill.svg │ │ │ ├── bus-front.svg │ │ │ ├── c-circle-fill.svg │ │ │ ├── c-circle.svg │ │ │ ├── c-square-fill.svg │ │ │ ├── c-square.svg │ │ │ ├── cake-fill.svg │ │ │ ├── cake.svg │ │ │ ├── cake2-fill.svg │ │ │ ├── cake2.svg │ │ │ ├── calculator-fill.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-check-fill.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-date-fill.svg │ │ │ ├── calendar-date.svg │ │ │ ├── calendar-day-fill.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-event-fill.svg │ │ │ ├── calendar-event.svg │ │ │ ├── calendar-fill.svg │ │ │ ├── calendar-heart-fill.svg │ │ │ ├── calendar-heart.svg │ │ │ ├── calendar-minus-fill.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-month-fill.svg │ │ │ ├── calendar-month.svg │ │ │ ├── calendar-plus-fill.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-range-fill.svg │ │ │ ├── calendar-range.svg │ │ │ ├── calendar-week-fill.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar-x-fill.svg │ │ │ ├── calendar-x.svg │ │ │ ├── calendar.svg │ │ │ ├── calendar2-check-fill.svg │ │ │ ├── calendar2-check.svg │ │ │ ├── calendar2-date-fill.svg │ │ │ ├── calendar2-date.svg │ │ │ ├── calendar2-day-fill.svg │ │ │ ├── calendar2-day.svg │ │ │ ├── calendar2-event-fill.svg │ │ │ ├── calendar2-event.svg │ │ │ ├── calendar2-fill.svg │ │ │ ├── calendar2-heart-fill.svg │ │ │ ├── calendar2-heart.svg │ │ │ ├── calendar2-minus-fill.svg │ │ │ ├── calendar2-minus.svg │ │ │ ├── calendar2-month-fill.svg │ │ │ ├── calendar2-month.svg │ │ │ ├── calendar2-plus-fill.svg │ │ │ ├── calendar2-plus.svg │ │ │ ├── calendar2-range-fill.svg │ │ │ ├── calendar2-range.svg │ │ │ ├── calendar2-week-fill.svg │ │ │ ├── calendar2-week.svg │ │ │ ├── calendar2-x-fill.svg │ │ │ ├── calendar2-x.svg │ │ │ ├── calendar2.svg │ │ │ ├── calendar3-event-fill.svg │ │ │ ├── calendar3-event.svg │ │ │ ├── calendar3-fill.svg │ │ │ ├── calendar3-range-fill.svg │ │ │ ├── calendar3-range.svg │ │ │ ├── calendar3-week-fill.svg │ │ │ ├── calendar3-week.svg │ │ │ ├── calendar3.svg │ │ │ ├── calendar4-event.svg │ │ │ ├── calendar4-range.svg │ │ │ ├── calendar4-week.svg │ │ │ ├── calendar4.svg │ │ │ ├── camera-fill.svg │ │ │ ├── camera-reels-fill.svg │ │ │ ├── camera-reels.svg │ │ │ ├── camera-video-fill.svg │ │ │ ├── camera-video-off-fill.svg │ │ │ ├── camera-video-off.svg │ │ │ ├── camera-video.svg │ │ │ ├── camera.svg │ │ │ ├── camera2.svg │ │ │ ├── capslock-fill.svg │ │ │ ├── capslock.svg │ │ │ ├── capsule-pill.svg │ │ │ ├── capsule.svg │ │ │ ├── car-front-fill.svg │ │ │ ├── car-front.svg │ │ │ ├── card-checklist.svg │ │ │ ├── card-heading.svg │ │ │ ├── card-image.svg │ │ │ ├── card-list.svg │ │ │ ├── card-text.svg │ │ │ ├── caret-down-fill.svg │ │ │ ├── caret-down-square-fill.svg │ │ │ ├── caret-down-square.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left-fill.svg │ │ │ ├── caret-left-square-fill.svg │ │ │ ├── caret-left-square.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right-fill.svg │ │ │ ├── caret-right-square-fill.svg │ │ │ ├── caret-right-square.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-up-fill.svg │ │ │ ├── caret-up-square-fill.svg │ │ │ ├── caret-up-square.svg │ │ │ ├── caret-up.svg │ │ │ ├── cart-check-fill.svg │ │ │ ├── cart-check.svg │ │ │ ├── cart-dash-fill.svg │ │ │ ├── cart-dash.svg │ │ │ ├── cart-fill.svg │ │ │ ├── cart-plus-fill.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cart-x-fill.svg │ │ │ ├── cart-x.svg │ │ │ ├── cart.svg │ │ │ ├── cart2.svg │ │ │ ├── cart3.svg │ │ │ ├── cart4.svg │ │ │ ├── cash-coin.svg │ │ │ ├── cash-stack.svg │ │ │ ├── cash.svg │ │ │ ├── cassette-fill.svg │ │ │ ├── cassette.svg │ │ │ ├── cast.svg │ │ │ ├── cc-circle-fill.svg │ │ │ ├── cc-circle.svg │ │ │ ├── cc-square-fill.svg │ │ │ ├── cc-square.svg │ │ │ ├── chat-dots-fill.svg │ │ │ ├── chat-dots.svg │ │ │ ├── chat-fill.svg │ │ │ ├── chat-heart-fill.svg │ │ │ ├── chat-heart.svg │ │ │ ├── chat-left-dots-fill.svg │ │ │ ├── chat-left-dots.svg │ │ │ ├── chat-left-fill.svg │ │ │ ├── chat-left-heart-fill.svg │ │ │ ├── chat-left-heart.svg │ │ │ ├── chat-left-quote-fill.svg │ │ │ ├── chat-left-quote.svg │ │ │ ├── chat-left-text-fill.svg │ │ │ ├── chat-left-text.svg │ │ │ ├── chat-left.svg │ │ │ ├── chat-quote-fill.svg │ │ │ ├── chat-quote.svg │ │ │ ├── chat-right-dots-fill.svg │ │ │ ├── chat-right-dots.svg │ │ │ ├── chat-right-fill.svg │ │ │ ├── chat-right-heart-fill.svg │ │ │ ├── chat-right-heart.svg │ │ │ ├── chat-right-quote-fill.svg │ │ │ ├── chat-right-quote.svg │ │ │ ├── chat-right-text-fill.svg │ │ │ ├── chat-right-text.svg │ │ │ ├── chat-right.svg │ │ │ ├── chat-square-dots-fill.svg │ │ │ ├── chat-square-dots.svg │ │ │ ├── chat-square-fill.svg │ │ │ ├── chat-square-heart-fill.svg │ │ │ ├── chat-square-heart.svg │ │ │ ├── chat-square-quote-fill.svg │ │ │ ├── chat-square-quote.svg │ │ │ ├── chat-square-text-fill.svg │ │ │ ├── chat-square-text.svg │ │ │ ├── chat-square.svg │ │ │ ├── chat-text-fill.svg │ │ │ ├── chat-text.svg │ │ │ ├── chat.svg │ │ │ ├── check-all.svg │ │ │ ├── check-circle-fill.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-lg.svg │ │ │ ├── check-square-fill.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── check2-all.svg │ │ │ ├── check2-circle.svg │ │ │ ├── check2-square.svg │ │ │ ├── check2.svg │ │ │ ├── chevron-bar-contract.svg │ │ │ ├── chevron-bar-down.svg │ │ │ ├── chevron-bar-expand.svg │ │ │ ├── chevron-bar-left.svg │ │ │ ├── chevron-bar-right.svg │ │ │ ├── chevron-bar-up.svg │ │ │ ├── chevron-compact-down.svg │ │ │ ├── chevron-compact-left.svg │ │ │ ├── chevron-compact-right.svg │ │ │ ├── chevron-compact-up.svg │ │ │ ├── chevron-contract.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-expand.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── circle-fill.svg │ │ │ ├── circle-half.svg │ │ │ ├── circle-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard-check-fill.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-data-fill.svg │ │ │ ├── clipboard-data.svg │ │ │ ├── clipboard-fill.svg │ │ │ ├── clipboard-heart-fill.svg │ │ │ ├── clipboard-heart.svg │ │ │ ├── clipboard-minus-fill.svg │ │ │ ├── clipboard-minus.svg │ │ │ ├── clipboard-plus-fill.svg │ │ │ ├── clipboard-plus.svg │ │ │ ├── clipboard-pulse.svg │ │ │ ├── clipboard-x-fill.svg │ │ │ ├── clipboard-x.svg │ │ │ ├── clipboard.svg │ │ │ ├── clipboard2-check-fill.svg │ │ │ ├── clipboard2-check.svg │ │ │ ├── clipboard2-data-fill.svg │ │ │ ├── clipboard2-data.svg │ │ │ ├── clipboard2-fill.svg │ │ │ ├── clipboard2-heart-fill.svg │ │ │ ├── clipboard2-heart.svg │ │ │ ├── clipboard2-minus-fill.svg │ │ │ ├── clipboard2-minus.svg │ │ │ ├── clipboard2-plus-fill.svg │ │ │ ├── clipboard2-plus.svg │ │ │ ├── clipboard2-pulse-fill.svg │ │ │ ├── clipboard2-pulse.svg │ │ │ ├── clipboard2-x-fill.svg │ │ │ ├── clipboard2-x.svg │ │ │ ├── clipboard2.svg │ │ │ ├── clock-fill.svg │ │ │ ├── clock-history.svg │ │ │ ├── clock.svg │ │ │ ├── cloud-arrow-down-fill.svg │ │ │ ├── cloud-arrow-down.svg │ │ │ ├── cloud-arrow-up-fill.svg │ │ │ ├── cloud-arrow-up.svg │ │ │ ├── cloud-check-fill.svg │ │ │ ├── cloud-check.svg │ │ │ ├── cloud-download-fill.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-drizzle-fill.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-fill.svg │ │ │ ├── cloud-fog-fill.svg │ │ │ ├── cloud-fog.svg │ │ │ ├── cloud-fog2-fill.svg │ │ │ ├── cloud-fog2.svg │ │ │ ├── cloud-hail-fill.svg │ │ │ ├── cloud-hail.svg │ │ │ ├── cloud-haze-fill.svg │ │ │ ├── cloud-haze.svg │ │ │ ├── cloud-haze2-fill.svg │ │ │ ├── cloud-haze2.svg │ │ │ ├── cloud-lightning-fill.svg │ │ │ ├── cloud-lightning-rain-fill.svg │ │ │ ├── cloud-lightning-rain.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-minus-fill.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-moon-fill.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-plus-fill.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-rain-fill.svg │ │ │ ├── cloud-rain-heavy-fill.svg │ │ │ ├── cloud-rain-heavy.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-slash-fill.svg │ │ │ ├── cloud-slash.svg │ │ │ ├── cloud-sleet-fill.svg │ │ │ ├── cloud-sleet.svg │ │ │ ├── cloud-snow-fill.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sun-fill.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-fill.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── clouds-fill.svg │ │ │ ├── clouds.svg │ │ │ ├── cloudy-fill.svg │ │ │ ├── cloudy.svg │ │ │ ├── code-slash.svg │ │ │ ├── code-square.svg │ │ │ ├── code.svg │ │ │ ├── coin.svg │ │ │ ├── collection-fill.svg │ │ │ ├── collection-play-fill.svg │ │ │ ├── collection-play.svg │ │ │ ├── collection.svg │ │ │ ├── columns-gap.svg │ │ │ ├── columns.svg │ │ │ ├── command.svg │ │ │ ├── compass-fill.svg │ │ │ ├── compass.svg │ │ │ ├── cone-striped.svg │ │ │ ├── cone.svg │ │ │ ├── controller.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── cpu-fill.svg │ │ │ ├── cpu.svg │ │ │ ├── credit-card-2-back-fill.svg │ │ │ ├── credit-card-2-back.svg │ │ │ ├── credit-card-2-front-fill.svg │ │ │ ├── credit-card-2-front.svg │ │ │ ├── credit-card-fill.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop.svg │ │ │ ├── crosshair.svg │ │ │ ├── crosshair2.svg │ │ │ ├── cup-fill.svg │ │ │ ├── cup-hot-fill.svg │ │ │ ├── cup-hot.svg │ │ │ ├── cup-straw.svg │ │ │ ├── cup.svg │ │ │ ├── currency-bitcoin.svg │ │ │ ├── currency-dollar.svg │ │ │ ├── currency-euro.svg │ │ │ ├── currency-exchange.svg │ │ │ ├── currency-pound.svg │ │ │ ├── currency-rupee.svg │ │ │ ├── currency-yen.svg │ │ │ ├── cursor-fill.svg │ │ │ ├── cursor-text.svg │ │ │ ├── cursor.svg │ │ │ ├── dash-circle-dotted.svg │ │ │ ├── dash-circle-fill.svg │ │ │ ├── dash-circle.svg │ │ │ ├── dash-lg.svg │ │ │ ├── dash-square-dotted.svg │ │ │ ├── dash-square-fill.svg │ │ │ ├── dash-square.svg │ │ │ ├── dash.svg │ │ │ ├── database-add.svg │ │ │ ├── database-check.svg │ │ │ ├── database-dash.svg │ │ │ ├── database-down.svg │ │ │ ├── database-exclamation.svg │ │ │ ├── database-fill-add.svg │ │ │ ├── database-fill-check.svg │ │ │ ├── database-fill-dash.svg │ │ │ ├── database-fill-down.svg │ │ │ ├── database-fill-exclamation.svg │ │ │ ├── database-fill-gear.svg │ │ │ ├── database-fill-lock.svg │ │ │ ├── database-fill-slash.svg │ │ │ ├── database-fill-up.svg │ │ │ ├── database-fill-x.svg │ │ │ ├── database-fill.svg │ │ │ ├── database-gear.svg │ │ │ ├── database-lock.svg │ │ │ ├── database-slash.svg │ │ │ ├── database-up.svg │ │ │ ├── database-x.svg │ │ │ ├── database.svg │ │ │ ├── device-hdd-fill.svg │ │ │ ├── device-hdd.svg │ │ │ ├── device-ssd-fill.svg │ │ │ ├── device-ssd.svg │ │ │ ├── diagram-2-fill.svg │ │ │ ├── diagram-2.svg │ │ │ ├── diagram-3-fill.svg │ │ │ ├── diagram-3.svg │ │ │ ├── diamond-fill.svg │ │ │ ├── diamond-half.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-1-fill.svg │ │ │ ├── dice-1.svg │ │ │ ├── dice-2-fill.svg │ │ │ ├── dice-2.svg │ │ │ ├── dice-3-fill.svg │ │ │ ├── dice-3.svg │ │ │ ├── dice-4-fill.svg │ │ │ ├── dice-4.svg │ │ │ ├── dice-5-fill.svg │ │ │ ├── dice-5.svg │ │ │ ├── dice-6-fill.svg │ │ │ ├── dice-6.svg │ │ │ ├── disc-fill.svg │ │ │ ├── disc.svg │ │ │ ├── discord.svg │ │ │ ├── display-fill.svg │ │ │ ├── display.svg │ │ │ ├── displayport-fill.svg │ │ │ ├── displayport.svg │ │ │ ├── distribute-horizontal.svg │ │ │ ├── distribute-vertical.svg │ │ │ ├── door-closed-fill.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open-fill.svg │ │ │ ├── door-open.svg │ │ │ ├── dot.svg │ │ │ ├── download.svg │ │ │ ├── dpad-fill.svg │ │ │ ├── dpad.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── droplet-fill.svg │ │ │ ├── droplet-half.svg │ │ │ ├── droplet.svg │ │ │ ├── duffle-fill.svg │ │ │ ├── duffle.svg │ │ │ ├── ear-fill.svg │ │ │ ├── ear.svg │ │ │ ├── earbuds.svg │ │ │ ├── easel-fill.svg │ │ │ ├── easel.svg │ │ │ ├── easel2-fill.svg │ │ │ ├── easel2.svg │ │ │ ├── easel3-fill.svg │ │ │ ├── easel3.svg │ │ │ ├── egg-fill.svg │ │ │ ├── egg-fried.svg │ │ │ ├── egg.svg │ │ │ ├── eject-fill.svg │ │ │ ├── eject.svg │ │ │ ├── emoji-angry-fill.svg │ │ │ ├── emoji-angry.svg │ │ │ ├── emoji-astonished-fill.svg │ │ │ ├── emoji-astonished.svg │ │ │ ├── emoji-dizzy-fill.svg │ │ │ ├── emoji-dizzy.svg │ │ │ ├── emoji-expressionless-fill.svg │ │ │ ├── emoji-expressionless.svg │ │ │ ├── emoji-frown-fill.svg │ │ │ ├── emoji-frown.svg │ │ │ ├── emoji-grimace-fill.svg │ │ │ ├── emoji-grimace.svg │ │ │ ├── emoji-grin-fill.svg │ │ │ ├── emoji-grin.svg │ │ │ ├── emoji-heart-eyes-fill.svg │ │ │ ├── emoji-heart-eyes.svg │ │ │ ├── emoji-kiss-fill.svg │ │ │ ├── emoji-kiss.svg │ │ │ ├── emoji-laughing-fill.svg │ │ │ ├── emoji-laughing.svg │ │ │ ├── emoji-neutral-fill.svg │ │ │ ├── emoji-neutral.svg │ │ │ ├── emoji-smile-fill.svg │ │ │ ├── emoji-smile-upside-down-fill.svg │ │ │ ├── emoji-smile-upside-down.svg │ │ │ ├── emoji-smile.svg │ │ │ ├── emoji-sunglasses-fill.svg │ │ │ ├── emoji-sunglasses.svg │ │ │ ├── emoji-surprise-fill.svg │ │ │ ├── emoji-surprise.svg │ │ │ ├── emoji-tear-fill.svg │ │ │ ├── emoji-tear.svg │ │ │ ├── emoji-wink-fill.svg │ │ │ ├── emoji-wink.svg │ │ │ ├── envelope-arrow-down-fill.svg │ │ │ ├── envelope-arrow-down.svg │ │ │ ├── envelope-arrow-up-fill.svg │ │ │ ├── envelope-arrow-up.svg │ │ │ ├── envelope-at-fill.svg │ │ │ ├── envelope-at.svg │ │ │ ├── envelope-check-fill.svg │ │ │ ├── envelope-check.svg │ │ │ ├── envelope-dash-fill.svg │ │ │ ├── envelope-dash.svg │ │ │ ├── envelope-exclamation-fill.svg │ │ │ ├── envelope-exclamation.svg │ │ │ ├── envelope-fill.svg │ │ │ ├── envelope-heart-fill.svg │ │ │ ├── envelope-heart.svg │ │ │ ├── envelope-open-fill.svg │ │ │ ├── envelope-open-heart-fill.svg │ │ │ ├── envelope-open-heart.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-paper-fill.svg │ │ │ ├── envelope-paper-heart-fill.svg │ │ │ ├── envelope-paper-heart.svg │ │ │ ├── envelope-paper.svg │ │ │ ├── envelope-plus-fill.svg │ │ │ ├── envelope-plus.svg │ │ │ ├── envelope-slash-fill.svg │ │ │ ├── envelope-slash.svg │ │ │ ├── envelope-x-fill.svg │ │ │ ├── envelope-x.svg │ │ │ ├── envelope.svg │ │ │ ├── eraser-fill.svg │ │ │ ├── eraser.svg │ │ │ ├── escape.svg │ │ │ ├── ethernet.svg │ │ │ ├── ev-front-fill.svg │ │ │ ├── ev-front.svg │ │ │ ├── ev-station-fill.svg │ │ │ ├── ev-station.svg │ │ │ ├── exclamation-circle-fill.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-diamond-fill.svg │ │ │ ├── exclamation-diamond.svg │ │ │ ├── exclamation-lg.svg │ │ │ ├── exclamation-octagon-fill.svg │ │ │ ├── exclamation-octagon.svg │ │ │ ├── exclamation-square-fill.svg │ │ │ ├── exclamation-square.svg │ │ │ ├── exclamation-triangle-fill.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── exclude.svg │ │ │ ├── explicit-fill.svg │ │ │ ├── explicit.svg │ │ │ ├── exposure.svg │ │ │ ├── eye-fill.svg │ │ │ ├── eye-slash-fill.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── eyedropper.svg │ │ │ ├── eyeglasses.svg │ │ │ ├── facebook.svg │ │ │ ├── fan.svg │ │ │ ├── fast-forward-btn-fill.svg │ │ │ ├── fast-forward-btn.svg │ │ │ ├── fast-forward-circle-fill.svg │ │ │ ├── fast-forward-circle.svg │ │ │ ├── fast-forward-fill.svg │ │ │ ├── fast-forward.svg │ │ │ ├── feather.svg │ │ │ ├── feather2.svg │ │ │ ├── file-arrow-down-fill.svg │ │ │ ├── file-arrow-down.svg │ │ │ ├── file-arrow-up-fill.svg │ │ │ ├── file-arrow-up.svg │ │ │ ├── file-bar-graph-fill.svg │ │ │ ├── file-bar-graph.svg │ │ │ ├── file-binary-fill.svg │ │ │ ├── file-binary.svg │ │ │ ├── file-break-fill.svg │ │ │ ├── file-break.svg │ │ │ ├── file-check-fill.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code-fill.svg │ │ │ ├── file-code.svg │ │ │ ├── file-diff-fill.svg │ │ │ ├── file-diff.svg │ │ │ ├── file-earmark-arrow-down-fill.svg │ │ │ ├── file-earmark-arrow-down.svg │ │ │ ├── file-earmark-arrow-up-fill.svg │ │ │ ├── file-earmark-arrow-up.svg │ │ │ ├── file-earmark-bar-graph-fill.svg │ │ │ ├── file-earmark-bar-graph.svg │ │ │ ├── file-earmark-binary-fill.svg │ │ │ ├── file-earmark-binary.svg │ │ │ ├── file-earmark-break-fill.svg │ │ │ ├── file-earmark-break.svg │ │ │ ├── file-earmark-check-fill.svg │ │ │ ├── file-earmark-check.svg │ │ │ ├── file-earmark-code-fill.svg │ │ │ ├── file-earmark-code.svg │ │ │ ├── file-earmark-diff-fill.svg │ │ │ ├── file-earmark-diff.svg │ │ │ ├── file-earmark-easel-fill.svg │ │ │ ├── file-earmark-easel.svg │ │ │ ├── file-earmark-excel-fill.svg │ │ │ ├── file-earmark-excel.svg │ │ │ ├── file-earmark-fill.svg │ │ │ ├── file-earmark-font-fill.svg │ │ │ ├── file-earmark-font.svg │ │ │ ├── file-earmark-image-fill.svg │ │ │ ├── file-earmark-image.svg │ │ │ ├── file-earmark-lock-fill.svg │ │ │ ├── file-earmark-lock.svg │ │ │ ├── file-earmark-lock2-fill.svg │ │ │ ├── file-earmark-lock2.svg │ │ │ ├── file-earmark-medical-fill.svg │ │ │ ├── file-earmark-medical.svg │ │ │ ├── file-earmark-minus-fill.svg │ │ │ ├── file-earmark-minus.svg │ │ │ ├── file-earmark-music-fill.svg │ │ │ ├── file-earmark-music.svg │ │ │ ├── file-earmark-pdf-fill.svg │ │ │ ├── file-earmark-pdf.svg │ │ │ ├── file-earmark-person-fill.svg │ │ │ ├── file-earmark-person.svg │ │ │ ├── file-earmark-play-fill.svg │ │ │ ├── file-earmark-play.svg │ │ │ ├── file-earmark-plus-fill.svg │ │ │ ├── file-earmark-plus.svg │ │ │ ├── file-earmark-post-fill.svg │ │ │ ├── file-earmark-post.svg │ │ │ ├── file-earmark-ppt-fill.svg │ │ │ ├── file-earmark-ppt.svg │ │ │ ├── file-earmark-richtext-fill.svg │ │ │ ├── file-earmark-richtext.svg │ │ │ ├── file-earmark-ruled-fill.svg │ │ │ ├── file-earmark-ruled.svg │ │ │ ├── file-earmark-slides-fill.svg │ │ │ ├── file-earmark-slides.svg │ │ │ ├── file-earmark-spreadsheet-fill.svg │ │ │ ├── file-earmark-spreadsheet.svg │ │ │ ├── file-earmark-text-fill.svg │ │ │ ├── file-earmark-text.svg │ │ │ ├── file-earmark-word-fill.svg │ │ │ ├── file-earmark-word.svg │ │ │ ├── file-earmark-x-fill.svg │ │ │ ├── file-earmark-x.svg │ │ │ ├── file-earmark-zip-fill.svg │ │ │ ├── file-earmark-zip.svg │ │ │ ├── file-earmark.svg │ │ │ ├── file-easel-fill.svg │ │ │ ├── file-easel.svg │ │ │ ├── file-excel-fill.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-fill.svg │ │ │ ├── file-font-fill.svg │ │ │ ├── file-font.svg │ │ │ ├── file-image-fill.svg │ │ │ ├── file-image.svg │ │ │ ├── file-lock-fill.svg │ │ │ ├── file-lock.svg │ │ │ ├── file-lock2-fill.svg │ │ │ ├── file-lock2.svg │ │ │ ├── file-medical-fill.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus-fill.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-music-fill.svg │ │ │ ├── file-music.svg │ │ │ ├── file-pdf-fill.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-person-fill.svg │ │ │ ├── file-person.svg │ │ │ ├── file-play-fill.svg │ │ │ ├── file-play.svg │ │ │ ├── file-plus-fill.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-post-fill.svg │ │ │ ├── file-post.svg │ │ │ ├── file-ppt-fill.svg │ │ │ ├── file-ppt.svg │ │ │ ├── file-richtext-fill.svg │ │ │ ├── file-richtext.svg │ │ │ ├── file-ruled-fill.svg │ │ │ ├── file-ruled.svg │ │ │ ├── file-slides-fill.svg │ │ │ ├── file-slides.svg │ │ │ ├── file-spreadsheet-fill.svg │ │ │ ├── file-spreadsheet.svg │ │ │ ├── file-text-fill.svg │ │ │ ├── file-text.svg │ │ │ ├── file-word-fill.svg │ │ │ ├── file-word.svg │ │ │ ├── file-x-fill.svg │ │ │ ├── file-x.svg │ │ │ ├── file-zip-fill.svg │ │ │ ├── file-zip.svg │ │ │ ├── file.svg │ │ │ ├── files-alt.svg │ │ │ ├── files.svg │ │ │ ├── filetype-aac.svg │ │ │ ├── filetype-ai.svg │ │ │ ├── filetype-bmp.svg │ │ │ ├── filetype-cs.svg │ │ │ ├── filetype-css.svg │ │ │ ├── filetype-csv.svg │ │ │ ├── filetype-doc.svg │ │ │ ├── filetype-docx.svg │ │ │ ├── filetype-exe.svg │ │ │ ├── filetype-gif.svg │ │ │ ├── filetype-heic.svg │ │ │ ├── filetype-html.svg │ │ │ ├── filetype-java.svg │ │ │ ├── filetype-jpg.svg │ │ │ ├── filetype-js.svg │ │ │ ├── filetype-json.svg │ │ │ ├── filetype-jsx.svg │ │ │ ├── filetype-key.svg │ │ │ ├── filetype-m4p.svg │ │ │ ├── filetype-md.svg │ │ │ ├── filetype-mdx.svg │ │ │ ├── filetype-mov.svg │ │ │ ├── filetype-mp3.svg │ │ │ ├── filetype-mp4.svg │ │ │ ├── filetype-otf.svg │ │ │ ├── filetype-pdf.svg │ │ │ ├── filetype-php.svg │ │ │ ├── filetype-png.svg │ │ │ ├── filetype-ppt.svg │ │ │ ├── filetype-pptx.svg │ │ │ ├── filetype-psd.svg │ │ │ ├── filetype-py.svg │ │ │ ├── filetype-raw.svg │ │ │ ├── filetype-rb.svg │ │ │ ├── filetype-sass.svg │ │ │ ├── filetype-scss.svg │ │ │ ├── filetype-sh.svg │ │ │ ├── filetype-sql.svg │ │ │ ├── filetype-svg.svg │ │ │ ├── filetype-tiff.svg │ │ │ ├── filetype-tsx.svg │ │ │ ├── filetype-ttf.svg │ │ │ ├── filetype-txt.svg │ │ │ ├── filetype-wav.svg │ │ │ ├── filetype-woff.svg │ │ │ ├── filetype-xls.svg │ │ │ ├── filetype-xlsx.svg │ │ │ ├── filetype-xml.svg │ │ │ ├── filetype-yml.svg │ │ │ ├── film.svg │ │ │ ├── filter-circle-fill.svg │ │ │ ├── filter-circle.svg │ │ │ ├── filter-left.svg │ │ │ ├── filter-right.svg │ │ │ ├── filter-square-fill.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire.svg │ │ │ ├── flag-fill.svg │ │ │ ├── flag.svg │ │ │ ├── floppy-fill.svg │ │ │ ├── floppy.svg │ │ │ ├── floppy2-fill.svg │ │ │ ├── floppy2.svg │ │ │ ├── flower1.svg │ │ │ ├── flower2.svg │ │ │ ├── flower3.svg │ │ │ ├── folder-check.svg │ │ │ ├── folder-fill.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-symlink-fill.svg │ │ │ ├── folder-symlink.svg │ │ │ ├── folder-x.svg │ │ │ ├── folder.svg │ │ │ ├── folder2-open.svg │ │ │ ├── folder2.svg │ │ │ ├── fonts.svg │ │ │ ├── forward-fill.svg │ │ │ ├── forward.svg │ │ │ ├── front.svg │ │ │ ├── fuel-pump-diesel-fill.svg │ │ │ ├── fuel-pump-diesel.svg │ │ │ ├── fuel-pump-fill.svg │ │ │ ├── fuel-pump.svg │ │ │ ├── fullscreen-exit.svg │ │ │ ├── fullscreen.svg │ │ │ ├── funnel-fill.svg │ │ │ ├── funnel.svg │ │ │ ├── gear-fill.svg │ │ │ ├── gear-wide-connected.svg │ │ │ ├── gear-wide.svg │ │ │ ├── gear.svg │ │ │ ├── gem.svg │ │ │ ├── gender-ambiguous.svg │ │ │ ├── gender-female.svg │ │ │ ├── gender-male.svg │ │ │ ├── gender-neuter.svg │ │ │ ├── gender-trans.svg │ │ │ ├── geo-alt-fill.svg │ │ │ ├── geo-alt.svg │ │ │ ├── geo-fill.svg │ │ │ ├── geo.svg │ │ │ ├── gift-fill.svg │ │ │ ├── gift.svg │ │ │ ├── git.svg │ │ │ ├── github.svg │ │ │ ├── gitlab.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia-australia.svg │ │ │ ├── globe-central-south-asia.svg │ │ │ ├── globe-europe-africa.svg │ │ │ ├── globe.svg │ │ │ ├── globe2.svg │ │ │ ├── google-play.svg │ │ │ ├── google.svg │ │ │ ├── gpu-card.svg │ │ │ ├── graph-down-arrow.svg │ │ │ ├── graph-down.svg │ │ │ ├── graph-up-arrow.svg │ │ │ ├── graph-up.svg │ │ │ ├── grid-1x2-fill.svg │ │ │ ├── grid-1x2.svg │ │ │ ├── grid-3x2-gap-fill.svg │ │ │ ├── grid-3x2-gap.svg │ │ │ ├── grid-3x2.svg │ │ │ ├── grid-3x3-gap-fill.svg │ │ │ ├── grid-3x3-gap.svg │ │ │ ├── grid-3x3.svg │ │ │ ├── grid-fill.svg │ │ │ ├── grid.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── h-circle-fill.svg │ │ │ ├── h-circle.svg │ │ │ ├── h-square-fill.svg │ │ │ ├── h-square.svg │ │ │ ├── hammer.svg │ │ │ ├── hand-index-fill.svg │ │ │ ├── hand-index-thumb-fill.svg │ │ │ ├── hand-index-thumb.svg │ │ │ ├── hand-index.svg │ │ │ ├── hand-thumbs-down-fill.svg │ │ │ ├── hand-thumbs-down.svg │ │ │ ├── hand-thumbs-up-fill.svg │ │ │ ├── hand-thumbs-up.svg │ │ │ ├── handbag-fill.svg │ │ │ ├── handbag.svg │ │ │ ├── hash.svg │ │ │ ├── hdd-fill.svg │ │ │ ├── hdd-network-fill.svg │ │ │ ├── hdd-network.svg │ │ │ ├── hdd-rack-fill.svg │ │ │ ├── hdd-rack.svg │ │ │ ├── hdd-stack-fill.svg │ │ │ ├── hdd-stack.svg │ │ │ ├── hdd.svg │ │ │ ├── hdmi-fill.svg │ │ │ ├── hdmi.svg │ │ │ ├── headphones.svg │ │ │ ├── headset-vr.svg │ │ │ ├── headset.svg │ │ │ ├── heart-arrow.svg │ │ │ ├── heart-fill.svg │ │ │ ├── heart-half.svg │ │ │ ├── heart-pulse-fill.svg │ │ │ ├── heart-pulse.svg │ │ │ ├── heart.svg │ │ │ ├── heartbreak-fill.svg │ │ │ ├── heartbreak.svg │ │ │ ├── hearts.svg │ │ │ ├── heptagon-fill.svg │ │ │ ├── heptagon-half.svg │ │ │ ├── heptagon.svg │ │ │ ├── hexagon-fill.svg │ │ │ ├── hexagon-half.svg │ │ │ ├── hexagon.svg │ │ │ ├── highlighter.svg │ │ │ ├── highlights.svg │ │ │ ├── hospital-fill.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass-bottom.svg │ │ │ ├── hourglass-split.svg │ │ │ ├── hourglass-top.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-add-fill.svg │ │ │ ├── house-add.svg │ │ │ ├── house-check-fill.svg │ │ │ ├── house-check.svg │ │ │ ├── house-dash-fill.svg │ │ │ ├── house-dash.svg │ │ │ ├── house-door-fill.svg │ │ │ ├── house-door.svg │ │ │ ├── house-down-fill.svg │ │ │ ├── house-down.svg │ │ │ ├── house-exclamation-fill.svg │ │ │ ├── house-exclamation.svg │ │ │ ├── house-fill.svg │ │ │ ├── house-gear-fill.svg │ │ │ ├── house-gear.svg │ │ │ ├── house-heart-fill.svg │ │ │ ├── house-heart.svg │ │ │ ├── house-lock-fill.svg │ │ │ ├── house-lock.svg │ │ │ ├── house-slash-fill.svg │ │ │ ├── house-slash.svg │ │ │ ├── house-up-fill.svg │ │ │ ├── house-up.svg │ │ │ ├── house-x-fill.svg │ │ │ ├── house-x.svg │ │ │ ├── house.svg │ │ │ ├── houses-fill.svg │ │ │ ├── houses.svg │ │ │ ├── hr.svg │ │ │ ├── hurricane.svg │ │ │ ├── hypnotize.svg │ │ │ ├── image-alt.svg │ │ │ ├── image-fill.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox-fill.svg │ │ │ ├── inbox.svg │ │ │ ├── inboxes-fill.svg │ │ │ ├── inboxes.svg │ │ │ ├── incognito.svg │ │ │ ├── indent.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle-fill.svg │ │ │ ├── info-circle.svg │ │ │ ├── info-lg.svg │ │ │ ├── info-square-fill.svg │ │ │ ├── info-square.svg │ │ │ ├── info.svg │ │ │ ├── input-cursor-text.svg │ │ │ ├── input-cursor.svg │ │ │ ├── instagram.svg │ │ │ ├── intersect.svg │ │ │ ├── journal-album.svg │ │ │ ├── journal-arrow-down.svg │ │ │ ├── journal-arrow-up.svg │ │ │ ├── journal-bookmark-fill.svg │ │ │ ├── journal-bookmark.svg │ │ │ ├── journal-check.svg │ │ │ ├── journal-code.svg │ │ │ ├── journal-medical.svg │ │ │ ├── journal-minus.svg │ │ │ ├── journal-plus.svg │ │ │ ├── journal-richtext.svg │ │ │ ├── journal-text.svg │ │ │ ├── journal-x.svg │ │ │ ├── journal.svg │ │ │ ├── journals.svg │ │ │ ├── joystick.svg │ │ │ ├── justify-left.svg │ │ │ ├── justify-right.svg │ │ │ ├── justify.svg │ │ │ ├── kanban-fill.svg │ │ │ ├── kanban.svg │ │ │ ├── key-fill.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-fill.svg │ │ │ ├── keyboard.svg │ │ │ ├── ladder.svg │ │ │ ├── lamp-fill.svg │ │ │ ├── lamp.svg │ │ │ ├── laptop-fill.svg │ │ │ ├── laptop.svg │ │ │ ├── layer-backward.svg │ │ │ ├── layer-forward.svg │ │ │ ├── layers-fill.svg │ │ │ ├── layers-half.svg │ │ │ ├── layers.svg │ │ │ ├── layout-sidebar-inset-reverse.svg │ │ │ ├── layout-sidebar-inset.svg │ │ │ ├── layout-sidebar-reverse.svg │ │ │ ├── layout-sidebar.svg │ │ │ ├── layout-split.svg │ │ │ ├── layout-text-sidebar-reverse.svg │ │ │ ├── layout-text-sidebar.svg │ │ │ ├── layout-text-window-reverse.svg │ │ │ ├── layout-text-window.svg │ │ │ ├── layout-three-columns.svg │ │ │ ├── layout-wtf.svg │ │ │ ├── life-preserver.svg │ │ │ ├── lightbulb-fill.svg │ │ │ ├── lightbulb-off-fill.svg │ │ │ ├── lightbulb-off.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lightning-charge-fill.svg │ │ │ ├── lightning-charge.svg │ │ │ ├── lightning-fill.svg │ │ │ ├── lightning.svg │ │ │ ├── line.svg │ │ │ ├── link-45deg.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── list-check.svg │ │ │ ├── list-columns-reverse.svg │ │ │ ├── list-columns.svg │ │ │ ├── list-nested.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-stars.svg │ │ │ ├── list-task.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── lock-fill.svg │ │ │ ├── lock.svg │ │ │ ├── luggage-fill.svg │ │ │ ├── luggage.svg │ │ │ ├── lungs-fill.svg │ │ │ ├── lungs.svg │ │ │ ├── magic.svg │ │ │ ├── magnet-fill.svg │ │ │ ├── magnet.svg │ │ │ ├── mailbox-flag.svg │ │ │ ├── mailbox.svg │ │ │ ├── mailbox2-flag.svg │ │ │ ├── mailbox2.svg │ │ │ ├── map-fill.svg │ │ │ ├── map.svg │ │ │ ├── markdown-fill.svg │ │ │ ├── markdown.svg │ │ │ ├── marker-tip.svg │ │ │ ├── mask.svg │ │ │ ├── mastodon.svg │ │ │ ├── medium.svg │ │ │ ├── megaphone-fill.svg │ │ │ ├── megaphone.svg │ │ │ ├── memory.svg │ │ │ ├── menu-app-fill.svg │ │ │ ├── menu-app.svg │ │ │ ├── menu-button-fill.svg │ │ │ ├── menu-button-wide-fill.svg │ │ │ ├── menu-button-wide.svg │ │ │ ├── menu-button.svg │ │ │ ├── menu-down.svg │ │ │ ├── menu-up.svg │ │ │ ├── messenger.svg │ │ │ ├── meta.svg │ │ │ ├── mic-fill.svg │ │ │ ├── mic-mute-fill.svg │ │ │ ├── mic-mute.svg │ │ │ ├── mic.svg │ │ │ ├── microsoft-teams.svg │ │ │ ├── microsoft.svg │ │ │ ├── minecart-loaded.svg │ │ │ ├── minecart.svg │ │ │ ├── modem-fill.svg │ │ │ ├── modem.svg │ │ │ ├── moisture.svg │ │ │ ├── moon-fill.svg │ │ │ ├── moon-stars-fill.svg │ │ │ ├── moon-stars.svg │ │ │ ├── moon.svg │ │ │ ├── mortarboard-fill.svg │ │ │ ├── mortarboard.svg │ │ │ ├── motherboard-fill.svg │ │ │ ├── motherboard.svg │ │ │ ├── mouse-fill.svg │ │ │ ├── mouse.svg │ │ │ ├── mouse2-fill.svg │ │ │ ├── mouse2.svg │ │ │ ├── mouse3-fill.svg │ │ │ ├── mouse3.svg │ │ │ ├── music-note-beamed.svg │ │ │ ├── music-note-list.svg │ │ │ ├── music-note.svg │ │ │ ├── music-player-fill.svg │ │ │ ├── music-player.svg │ │ │ ├── newspaper.svg │ │ │ ├── nintendo-switch.svg │ │ │ ├── node-minus-fill.svg │ │ │ ├── node-minus.svg │ │ │ ├── node-plus-fill.svg │ │ │ ├── node-plus.svg │ │ │ ├── noise-reduction.svg │ │ │ ├── nut-fill.svg │ │ │ ├── nut.svg │ │ │ ├── nvidia.svg │ │ │ ├── nvme-fill.svg │ │ │ ├── nvme.svg │ │ │ ├── octagon-fill.svg │ │ │ ├── octagon-half.svg │ │ │ ├── octagon.svg │ │ │ ├── opencollective.svg │ │ │ ├── optical-audio-fill.svg │ │ │ ├── optical-audio.svg │ │ │ ├── option.svg │ │ │ ├── outlet.svg │ │ │ ├── p-circle-fill.svg │ │ │ ├── p-circle.svg │ │ │ ├── p-square-fill.svg │ │ │ ├── p-square.svg │ │ │ ├── paint-bucket.svg │ │ │ ├── palette-fill.svg │ │ │ ├── palette.svg │ │ │ ├── palette2.svg │ │ │ ├── paperclip.svg │ │ │ ├── paragraph.svg │ │ │ ├── pass-fill.svg │ │ │ ├── pass.svg │ │ │ ├── passport-fill.svg │ │ │ ├── passport.svg │ │ │ ├── patch-check-fill.svg │ │ │ ├── patch-check.svg │ │ │ ├── patch-exclamation-fill.svg │ │ │ ├── patch-exclamation.svg │ │ │ ├── patch-minus-fill.svg │ │ │ ├── patch-minus.svg │ │ │ ├── patch-plus-fill.svg │ │ │ ├── patch-plus.svg │ │ │ ├── patch-question-fill.svg │ │ │ ├── patch-question.svg │ │ │ ├── pause-btn-fill.svg │ │ │ ├── pause-btn.svg │ │ │ ├── pause-circle-fill.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause-fill.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pc-display-horizontal.svg │ │ │ ├── pc-display.svg │ │ │ ├── pc-horizontal.svg │ │ │ ├── pc.svg │ │ │ ├── pci-card-network.svg │ │ │ ├── pci-card-sound.svg │ │ │ ├── pci-card.svg │ │ │ ├── peace-fill.svg │ │ │ ├── peace.svg │ │ │ ├── pen-fill.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-fill.svg │ │ │ ├── pencil-square.svg │ │ │ ├── pencil.svg │ │ │ ├── pentagon-fill.svg │ │ │ ├── pentagon-half.svg │ │ │ ├── pentagon.svg │ │ │ ├── people-fill.svg │ │ │ ├── people.svg │ │ │ ├── percent.svg │ │ │ ├── person-add.svg │ │ │ ├── person-arms-up.svg │ │ │ ├── person-badge-fill.svg │ │ │ ├── person-badge.svg │ │ │ ├── person-bounding-box.svg │ │ │ ├── person-check-fill.svg │ │ │ ├── person-check.svg │ │ │ ├── person-circle.svg │ │ │ ├── person-dash-fill.svg │ │ │ ├── person-dash.svg │ │ │ ├── person-down.svg │ │ │ ├── person-exclamation.svg │ │ │ ├── person-fill-add.svg │ │ │ ├── person-fill-check.svg │ │ │ ├── person-fill-dash.svg │ │ │ ├── person-fill-down.svg │ │ │ ├── person-fill-exclamation.svg │ │ │ ├── person-fill-gear.svg │ │ │ ├── person-fill-lock.svg │ │ │ ├── person-fill-slash.svg │ │ │ ├── person-fill-up.svg │ │ │ ├── person-fill-x.svg │ │ │ ├── person-fill.svg │ │ │ ├── person-gear.svg │ │ │ ├── person-heart.svg │ │ │ ├── person-hearts.svg │ │ │ ├── person-lines-fill.svg │ │ │ ├── person-lock.svg │ │ │ ├── person-plus-fill.svg │ │ │ ├── person-plus.svg │ │ │ ├── person-raised-hand.svg │ │ │ ├── person-rolodex.svg │ │ │ ├── person-slash.svg │ │ │ ├── person-square.svg │ │ │ ├── person-standing-dress.svg │ │ │ ├── person-standing.svg │ │ │ ├── person-up.svg │ │ │ ├── person-vcard-fill.svg │ │ │ ├── person-vcard.svg │ │ │ ├── person-video.svg │ │ │ ├── person-video2.svg │ │ │ ├── person-video3.svg │ │ │ ├── person-walking.svg │ │ │ ├── person-wheelchair.svg │ │ │ ├── person-workspace.svg │ │ │ ├── person-x-fill.svg │ │ │ ├── person-x.svg │ │ │ ├── person.svg │ │ │ ├── phone-fill.svg │ │ │ ├── phone-flip.svg │ │ │ ├── phone-landscape-fill.svg │ │ │ ├── phone-landscape.svg │ │ │ ├── phone-vibrate-fill.svg │ │ │ ├── phone-vibrate.svg │ │ │ ├── phone.svg │ │ │ ├── pie-chart-fill.svg │ │ │ ├── pie-chart.svg │ │ │ ├── piggy-bank-fill.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pin-angle-fill.svg │ │ │ ├── pin-angle.svg │ │ │ ├── pin-fill.svg │ │ │ ├── pin-map-fill.svg │ │ │ ├── pin-map.svg │ │ │ ├── pin.svg │ │ │ ├── pinterest.svg │ │ │ ├── pip-fill.svg │ │ │ ├── pip.svg │ │ │ ├── play-btn-fill.svg │ │ │ ├── play-btn.svg │ │ │ ├── play-circle-fill.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-fill.svg │ │ │ ├── play.svg │ │ │ ├── playstation.svg │ │ │ ├── plug-fill.svg │ │ │ ├── plug.svg │ │ │ ├── plugin.svg │ │ │ ├── plus-circle-dotted.svg │ │ │ ├── plus-circle-fill.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-lg.svg │ │ │ ├── plus-slash-minus.svg │ │ │ ├── plus-square-dotted.svg │ │ │ ├── plus-square-fill.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── postage-fill.svg │ │ │ ├── postage-heart-fill.svg │ │ │ ├── postage-heart.svg │ │ │ ├── postage.svg │ │ │ ├── postcard-fill.svg │ │ │ ├── postcard-heart-fill.svg │ │ │ ├── postcard-heart.svg │ │ │ ├── postcard.svg │ │ │ ├── power.svg │ │ │ ├── prescription.svg │ │ │ ├── prescription2.svg │ │ │ ├── printer-fill.svg │ │ │ ├── printer.svg │ │ │ ├── projector-fill.svg │ │ │ ├── projector.svg │ │ │ ├── puzzle-fill.svg │ │ │ ├── puzzle.svg │ │ │ ├── qr-code-scan.svg │ │ │ ├── qr-code.svg │ │ │ ├── question-circle-fill.svg │ │ │ ├── question-circle.svg │ │ │ ├── question-diamond-fill.svg │ │ │ ├── question-diamond.svg │ │ │ ├── question-lg.svg │ │ │ ├── question-octagon-fill.svg │ │ │ ├── question-octagon.svg │ │ │ ├── question-square-fill.svg │ │ │ ├── question-square.svg │ │ │ ├── question.svg │ │ │ ├── quora.svg │ │ │ ├── quote.svg │ │ │ ├── r-circle-fill.svg │ │ │ ├── r-circle.svg │ │ │ ├── r-square-fill.svg │ │ │ ├── r-square.svg │ │ │ ├── radar.svg │ │ │ ├── radioactive.svg │ │ │ ├── rainbow.svg │ │ │ ├── receipt-cutoff.svg │ │ │ ├── receipt.svg │ │ │ ├── reception-0.svg │ │ │ ├── reception-1.svg │ │ │ ├── reception-2.svg │ │ │ ├── reception-3.svg │ │ │ ├── reception-4.svg │ │ │ ├── record-btn-fill.svg │ │ │ ├── record-btn.svg │ │ │ ├── record-circle-fill.svg │ │ │ ├── record-circle.svg │ │ │ ├── record-fill.svg │ │ │ ├── record.svg │ │ │ ├── record2-fill.svg │ │ │ ├── record2.svg │ │ │ ├── recycle.svg │ │ │ ├── reddit.svg │ │ │ ├── regex.svg │ │ │ ├── repeat-1.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-all-fill.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply-fill.svg │ │ │ ├── reply.svg │ │ │ ├── rewind-btn-fill.svg │ │ │ ├── rewind-btn.svg │ │ │ ├── rewind-circle-fill.svg │ │ │ ├── rewind-circle.svg │ │ │ ├── rewind-fill.svg │ │ │ ├── rewind.svg │ │ │ ├── robot.svg │ │ │ ├── rocket-fill.svg │ │ │ ├── rocket-takeoff-fill.svg │ │ │ ├── rocket-takeoff.svg │ │ │ ├── rocket.svg │ │ │ ├── router-fill.svg │ │ │ ├── router.svg │ │ │ ├── rss-fill.svg │ │ │ ├── rss.svg │ │ │ ├── rulers.svg │ │ │ ├── safe-fill.svg │ │ │ ├── safe.svg │ │ │ ├── safe2-fill.svg │ │ │ ├── safe2.svg │ │ │ ├── save-fill.svg │ │ │ ├── save.svg │ │ │ ├── save2-fill.svg │ │ │ ├── save2.svg │ │ │ ├── scissors.svg │ │ │ ├── scooter.svg │ │ │ ├── screwdriver.svg │ │ │ ├── sd-card-fill.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-heart-fill.svg │ │ │ ├── search-heart.svg │ │ │ ├── search.svg │ │ │ ├── segmented-nav.svg │ │ │ ├── send-arrow-down-fill.svg │ │ │ ├── send-arrow-down.svg │ │ │ ├── send-arrow-up-fill.svg │ │ │ ├── send-arrow-up.svg │ │ │ ├── send-check-fill.svg │ │ │ ├── send-check.svg │ │ │ ├── send-dash-fill.svg │ │ │ ├── send-dash.svg │ │ │ ├── send-exclamation-fill.svg │ │ │ ├── send-exclamation.svg │ │ │ ├── send-fill.svg │ │ │ ├── send-plus-fill.svg │ │ │ ├── send-plus.svg │ │ │ ├── send-slash-fill.svg │ │ │ ├── send-slash.svg │ │ │ ├── send-x-fill.svg │ │ │ ├── send-x.svg │ │ │ ├── send.svg │ │ │ ├── server.svg │ │ │ ├── shadows.svg │ │ │ ├── share-fill.svg │ │ │ ├── share.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-exclamation.svg │ │ │ ├── shield-fill-check.svg │ │ │ ├── shield-fill-exclamation.svg │ │ │ ├── shield-fill-minus.svg │ │ │ ├── shield-fill-plus.svg │ │ │ ├── shield-fill-x.svg │ │ │ ├── shield-fill.svg │ │ │ ├── shield-lock-fill.svg │ │ │ ├── shield-lock.svg │ │ │ ├── shield-minus.svg │ │ │ ├── shield-plus.svg │ │ │ ├── shield-shaded.svg │ │ │ ├── shield-slash-fill.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-x.svg │ │ │ ├── shield.svg │ │ │ ├── shift-fill.svg │ │ │ ├── shift.svg │ │ │ ├── shop-window.svg │ │ │ ├── shop.svg │ │ │ ├── shuffle.svg │ │ │ ├── sign-dead-end-fill.svg │ │ │ ├── sign-dead-end.svg │ │ │ ├── sign-do-not-enter-fill.svg │ │ │ ├── sign-do-not-enter.svg │ │ │ ├── sign-intersection-fill.svg │ │ │ ├── sign-intersection-side-fill.svg │ │ │ ├── sign-intersection-side.svg │ │ │ ├── sign-intersection-t-fill.svg │ │ │ ├── sign-intersection-t.svg │ │ │ ├── sign-intersection-y-fill.svg │ │ │ ├── sign-intersection-y.svg │ │ │ ├── sign-intersection.svg │ │ │ ├── sign-merge-left-fill.svg │ │ │ ├── sign-merge-left.svg │ │ │ ├── sign-merge-right-fill.svg │ │ │ ├── sign-merge-right.svg │ │ │ ├── sign-no-left-turn-fill.svg │ │ │ ├── sign-no-left-turn.svg │ │ │ ├── sign-no-parking-fill.svg │ │ │ ├── sign-no-parking.svg │ │ │ ├── sign-no-right-turn-fill.svg │ │ │ ├── sign-no-right-turn.svg │ │ │ ├── sign-railroad-fill.svg │ │ │ ├── sign-railroad.svg │ │ │ ├── sign-stop-fill.svg │ │ │ ├── sign-stop-lights-fill.svg │ │ │ ├── sign-stop-lights.svg │ │ │ ├── sign-stop.svg │ │ │ ├── sign-turn-left-fill.svg │ │ │ ├── sign-turn-left.svg │ │ │ ├── sign-turn-right-fill.svg │ │ │ ├── sign-turn-right.svg │ │ │ ├── sign-turn-slight-left-fill.svg │ │ │ ├── sign-turn-slight-left.svg │ │ │ ├── sign-turn-slight-right-fill.svg │ │ │ ├── sign-turn-slight-right.svg │ │ │ ├── sign-yield-fill.svg │ │ │ ├── sign-yield.svg │ │ │ ├── signal.svg │ │ │ ├── signpost-2-fill.svg │ │ │ ├── signpost-2.svg │ │ │ ├── signpost-fill.svg │ │ │ ├── signpost-split-fill.svg │ │ │ ├── signpost-split.svg │ │ │ ├── signpost.svg │ │ │ ├── sim-fill.svg │ │ │ ├── sim-slash-fill.svg │ │ │ ├── sim-slash.svg │ │ │ ├── sim.svg │ │ │ ├── sina-weibo.svg │ │ │ ├── skip-backward-btn-fill.svg │ │ │ ├── skip-backward-btn.svg │ │ │ ├── skip-backward-circle-fill.svg │ │ │ ├── skip-backward-circle.svg │ │ │ ├── skip-backward-fill.svg │ │ │ ├── skip-backward.svg │ │ │ ├── skip-end-btn-fill.svg │ │ │ ├── skip-end-btn.svg │ │ │ ├── skip-end-circle-fill.svg │ │ │ ├── skip-end-circle.svg │ │ │ ├── skip-end-fill.svg │ │ │ ├── skip-end.svg │ │ │ ├── skip-forward-btn-fill.svg │ │ │ ├── skip-forward-btn.svg │ │ │ ├── skip-forward-circle-fill.svg │ │ │ ├── skip-forward-circle.svg │ │ │ ├── skip-forward-fill.svg │ │ │ ├── skip-forward.svg │ │ │ ├── skip-start-btn-fill.svg │ │ │ ├── skip-start-btn.svg │ │ │ ├── skip-start-circle-fill.svg │ │ │ ├── skip-start-circle.svg │ │ │ ├── skip-start-fill.svg │ │ │ ├── skip-start.svg │ │ │ ├── skype.svg │ │ │ ├── slack.svg │ │ │ ├── slash-circle-fill.svg │ │ │ ├── slash-circle.svg │ │ │ ├── slash-lg.svg │ │ │ ├── slash-square-fill.svg │ │ │ ├── slash-square.svg │ │ │ ├── slash.svg │ │ │ ├── sliders.svg │ │ │ ├── sliders2-vertical.svg │ │ │ ├── sliders2.svg │ │ │ ├── smartwatch.svg │ │ │ ├── snapchat.svg │ │ │ ├── snow.svg │ │ │ ├── snow2.svg │ │ │ ├── snow3.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-down-alt.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up-alt.svg │ │ │ ├── sort-up.svg │ │ │ ├── soundwave.svg │ │ │ ├── sourceforge.svg │ │ │ ├── speaker-fill.svg │ │ │ ├── speaker.svg │ │ │ ├── speedometer.svg │ │ │ ├── speedometer2.svg │ │ │ ├── spellcheck.svg │ │ │ ├── spotify.svg │ │ │ ├── square-fill.svg │ │ │ ├── square-half.svg │ │ │ ├── square.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stack.svg │ │ │ ├── star-fill.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── stars.svg │ │ │ ├── steam.svg │ │ │ ├── stickies-fill.svg │ │ │ ├── stickies.svg │ │ │ ├── sticky-fill.svg │ │ │ ├── sticky.svg │ │ │ ├── stop-btn-fill.svg │ │ │ ├── stop-btn.svg │ │ │ ├── stop-circle-fill.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop-fill.svg │ │ │ ├── stop.svg │ │ │ ├── stoplights-fill.svg │ │ │ ├── stoplights.svg │ │ │ ├── stopwatch-fill.svg │ │ │ ├── stopwatch.svg │ │ │ ├── strava.svg │ │ │ ├── stripe.svg │ │ │ ├── subscript.svg │ │ │ ├── substack.svg │ │ │ ├── subtract.svg │ │ │ ├── suit-club-fill.svg │ │ │ ├── suit-club.svg │ │ │ ├── suit-diamond-fill.svg │ │ │ ├── suit-diamond.svg │ │ │ ├── suit-heart-fill.svg │ │ │ ├── suit-heart.svg │ │ │ ├── suit-spade-fill.svg │ │ │ ├── suit-spade.svg │ │ │ ├── suitcase-fill.svg │ │ │ ├── suitcase-lg-fill.svg │ │ │ ├── suitcase-lg.svg │ │ │ ├── suitcase.svg │ │ │ ├── suitcase2-fill.svg │ │ │ ├── suitcase2.svg │ │ │ ├── sun-fill.svg │ │ │ ├── sun.svg │ │ │ ├── sunglasses.svg │ │ │ ├── sunrise-fill.svg │ │ │ ├── sunrise.svg │ │ │ ├── sunset-fill.svg │ │ │ ├── sunset.svg │ │ │ ├── superscript.svg │ │ │ ├── symmetry-horizontal.svg │ │ │ ├── symmetry-vertical.svg │ │ │ ├── table.svg │ │ │ ├── tablet-fill.svg │ │ │ ├── tablet-landscape-fill.svg │ │ │ ├── tablet-landscape.svg │ │ │ ├── tablet.svg │ │ │ ├── tag-fill.svg │ │ │ ├── tag.svg │ │ │ ├── tags-fill.svg │ │ │ ├── tags.svg │ │ │ ├── taxi-front-fill.svg │ │ │ ├── taxi-front.svg │ │ │ ├── telegram.svg │ │ │ ├── telephone-fill.svg │ │ │ ├── telephone-forward-fill.svg │ │ │ ├── telephone-forward.svg │ │ │ ├── telephone-inbound-fill.svg │ │ │ ├── telephone-inbound.svg │ │ │ ├── telephone-minus-fill.svg │ │ │ ├── telephone-minus.svg │ │ │ ├── telephone-outbound-fill.svg │ │ │ ├── telephone-outbound.svg │ │ │ ├── telephone-plus-fill.svg │ │ │ ├── telephone-plus.svg │ │ │ ├── telephone-x-fill.svg │ │ │ ├── telephone-x.svg │ │ │ ├── telephone.svg │ │ │ ├── tencent-qq.svg │ │ │ ├── terminal-dash.svg │ │ │ ├── terminal-fill.svg │ │ │ ├── terminal-plus.svg │ │ │ ├── terminal-split.svg │ │ │ ├── terminal-x.svg │ │ │ ├── terminal.svg │ │ │ ├── text-center.svg │ │ │ ├── text-indent-left.svg │ │ │ ├── text-indent-right.svg │ │ │ ├── text-left.svg │ │ │ ├── text-paragraph.svg │ │ │ ├── text-right.svg │ │ │ ├── text-wrap.svg │ │ │ ├── textarea-resize.svg │ │ │ ├── textarea-t.svg │ │ │ ├── textarea.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-high.svg │ │ │ ├── thermometer-low.svg │ │ │ ├── thermometer-snow.svg │ │ │ ├── thermometer-sun.svg │ │ │ ├── thermometer.svg │ │ │ ├── threads-fill.svg │ │ │ ├── threads.svg │ │ │ ├── three-dots-vertical.svg │ │ │ ├── three-dots.svg │ │ │ ├── thunderbolt-fill.svg │ │ │ ├── thunderbolt.svg │ │ │ ├── ticket-detailed-fill.svg │ │ │ ├── ticket-detailed.svg │ │ │ ├── ticket-fill.svg │ │ │ ├── ticket-perforated-fill.svg │ │ │ ├── ticket-perforated.svg │ │ │ ├── ticket.svg │ │ │ ├── tiktok.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toggle2-off.svg │ │ │ ├── toggle2-on.svg │ │ │ ├── toggles.svg │ │ │ ├── toggles2.svg │ │ │ ├── tools.svg │ │ │ ├── tornado.svg │ │ │ ├── train-freight-front-fill.svg │ │ │ ├── train-freight-front.svg │ │ │ ├── train-front-fill.svg │ │ │ ├── train-front.svg │ │ │ ├── train-lightrail-front-fill.svg │ │ │ ├── train-lightrail-front.svg │ │ │ ├── translate.svg │ │ │ ├── transparency.svg │ │ │ ├── trash-fill.svg │ │ │ ├── trash.svg │ │ │ ├── trash2-fill.svg │ │ │ ├── trash2.svg │ │ │ ├── trash3-fill.svg │ │ │ ├── trash3.svg │ │ │ ├── tree-fill.svg │ │ │ ├── tree.svg │ │ │ ├── trello.svg │ │ │ ├── triangle-fill.svg │ │ │ ├── triangle-half.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-fill.svg │ │ │ ├── trophy.svg │ │ │ ├── tropical-storm.svg │ │ │ ├── truck-flatbed.svg │ │ │ ├── truck-front-fill.svg │ │ │ ├── truck-front.svg │ │ │ ├── truck.svg │ │ │ ├── tsunami.svg │ │ │ ├── tv-fill.svg │ │ │ ├── tv.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-x.svg │ │ │ ├── twitter.svg │ │ │ ├── type-bold.svg │ │ │ ├── type-h1.svg │ │ │ ├── type-h2.svg │ │ │ ├── type-h3.svg │ │ │ ├── type-h4.svg │ │ │ ├── type-h5.svg │ │ │ ├── type-h6.svg │ │ │ ├── type-italic.svg │ │ │ ├── type-strikethrough.svg │ │ │ ├── type-underline.svg │ │ │ ├── type.svg │ │ │ ├── ubuntu.svg │ │ │ ├── ui-checks-grid.svg │ │ │ ├── ui-checks.svg │ │ │ ├── ui-radios-grid.svg │ │ │ ├── ui-radios.svg │ │ │ ├── umbrella-fill.svg │ │ │ ├── umbrella.svg │ │ │ ├── unindent.svg │ │ │ ├── union.svg │ │ │ ├── unity.svg │ │ │ ├── universal-access-circle.svg │ │ │ ├── universal-access.svg │ │ │ ├── unlock-fill.svg │ │ │ ├── unlock.svg │ │ │ ├── upc-scan.svg │ │ │ ├── upc.svg │ │ │ ├── upload.svg │ │ │ ├── usb-c-fill.svg │ │ │ ├── usb-c.svg │ │ │ ├── usb-drive-fill.svg │ │ │ ├── usb-drive.svg │ │ │ ├── usb-fill.svg │ │ │ ├── usb-micro-fill.svg │ │ │ ├── usb-micro.svg │ │ │ ├── usb-mini-fill.svg │ │ │ ├── usb-mini.svg │ │ │ ├── usb-plug-fill.svg │ │ │ ├── usb-plug.svg │ │ │ ├── usb-symbol.svg │ │ │ ├── usb.svg │ │ │ ├── valentine.svg │ │ │ ├── valentine2.svg │ │ │ ├── vector-pen.svg │ │ │ ├── view-list.svg │ │ │ ├── view-stacked.svg │ │ │ ├── vignette.svg │ │ │ ├── vimeo.svg │ │ │ ├── vinyl-fill.svg │ │ │ ├── vinyl.svg │ │ │ ├── virus.svg │ │ │ ├── virus2.svg │ │ │ ├── voicemail.svg │ │ │ ├── volume-down-fill.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute-fill.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off-fill.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up-fill.svg │ │ │ ├── volume-up.svg │ │ │ ├── vr.svg │ │ │ ├── wallet-fill.svg │ │ │ ├── wallet.svg │ │ │ ├── wallet2.svg │ │ │ ├── watch.svg │ │ │ ├── water.svg │ │ │ ├── webcam-fill.svg │ │ │ ├── webcam.svg │ │ │ ├── wechat.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wifi-1.svg │ │ │ ├── wifi-2.svg │ │ │ ├── wifi-off.svg │ │ │ ├── wifi.svg │ │ │ ├── wikipedia.svg │ │ │ ├── wind.svg │ │ │ ├── window-dash.svg │ │ │ ├── window-desktop.svg │ │ │ ├── window-dock.svg │ │ │ ├── window-fullscreen.svg │ │ │ ├── window-plus.svg │ │ │ ├── window-sidebar.svg │ │ │ ├── window-split.svg │ │ │ ├── window-stack.svg │ │ │ ├── window-x.svg │ │ │ ├── window.svg │ │ │ ├── windows.svg │ │ │ ├── wordpress.svg │ │ │ ├── wrench-adjustable-circle-fill.svg │ │ │ ├── wrench-adjustable-circle.svg │ │ │ ├── wrench-adjustable.svg │ │ │ ├── wrench.svg │ │ │ ├── x-circle-fill.svg │ │ │ ├── x-circle.svg │ │ │ ├── x-diamond-fill.svg │ │ │ ├── x-diamond.svg │ │ │ ├── x-lg.svg │ │ │ ├── x-octagon-fill.svg │ │ │ ├── x-octagon.svg │ │ │ ├── x-square-fill.svg │ │ │ ├── x-square.svg │ │ │ ├── x.svg │ │ │ ├── xbox.svg │ │ │ ├── yelp.svg │ │ │ ├── yin-yang.svg │ │ │ ├── youtube.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ └── package.json │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── base-component.js │ │ │ │ ├── base-component.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dom │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.js.map │ │ │ │ │ ├── event-handler.js │ │ │ │ │ ├── event-handler.js.map │ │ │ │ │ ├── manipulator.js │ │ │ │ │ ├── manipulator.js.map │ │ │ │ │ ├── selector-engine.js │ │ │ │ │ └── selector-engine.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── offcanvas.js │ │ │ │ ├── offcanvas.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── toast.js │ │ │ │ ├── toast.js.map │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.js.map │ │ │ │ └── util │ │ │ │ │ ├── backdrop.js │ │ │ │ │ ├── backdrop.js.map │ │ │ │ │ ├── component-functions.js │ │ │ │ │ ├── component-functions.js.map │ │ │ │ │ ├── config.js │ │ │ │ │ ├── config.js.map │ │ │ │ │ ├── focustrap.js │ │ │ │ │ ├── focustrap.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── sanitizer.js │ │ │ │ │ ├── sanitizer.js.map │ │ │ │ │ ├── scrollbar.js │ │ │ │ │ ├── scrollbar.js.map │ │ │ │ │ ├── swipe.js │ │ │ │ │ ├── swipe.js.map │ │ │ │ │ ├── template-factory.js │ │ │ │ │ └── template-factory.js.map │ │ │ ├── index.esm.js │ │ │ ├── index.umd.js │ │ │ └── src │ │ │ │ ├── alert.js │ │ │ │ ├── base-component.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── event-handler.js │ │ │ │ ├── manipulator.js │ │ │ │ └── selector-engine.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── offcanvas.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── toast.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util │ │ │ │ ├── backdrop.js │ │ │ │ ├── component-functions.js │ │ │ │ ├── config.js │ │ │ │ ├── focustrap.js │ │ │ │ ├── index.js │ │ │ │ ├── sanitizer.js │ │ │ │ ├── scrollbar.js │ │ │ │ ├── swipe.js │ │ │ │ └── template-factory.js │ │ ├── package.json │ │ └── scss │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _containers.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ ├── _images.scss │ │ │ ├── _list-group.scss │ │ │ ├── _maps.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _placeholders.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables-dark.scss │ │ │ ├── _variables.scss │ │ │ ├── _vendor │ │ │ └── _rfs.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap.scss │ │ │ ├── forms │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _form-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _labels.scss │ │ │ └── _validation.scss │ │ │ ├── helpers │ │ │ ├── _clearfix.scss │ │ │ ├── _color-bg.scss │ │ │ ├── _colored-links.scss │ │ │ ├── _focus-ring.scss │ │ │ ├── _icon-link.scss │ │ │ ├── _position.scss │ │ │ ├── _ratio.scss │ │ │ ├── _stacks.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text-truncation.scss │ │ │ ├── _visually-hidden.scss │ │ │ └── _vr.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _backdrop.scss │ │ │ ├── _banner.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _color-mode.scss │ │ │ ├── _color-scheme.scss │ │ │ ├── _container.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _table-variants.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ ├── _utilities.scss │ │ │ └── _visually-hidden.scss │ │ │ └── utilities │ │ │ └── _api.scss │ ├── commander │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── esm.mjs │ │ ├── index.js │ │ ├── lib │ │ │ ├── argument.js │ │ │ ├── command.js │ │ │ ├── error.js │ │ │ ├── help.js │ │ │ ├── option.js │ │ │ └── suggestSimilar.js │ │ ├── package-support.json │ │ ├── package.json │ │ └── typings │ │ │ └── index.d.ts │ ├── flexsearch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── flexsearch.bundle.debug.js │ │ │ ├── flexsearch.bundle.min.js │ │ │ ├── flexsearch.bundle.module.debug.js │ │ │ ├── flexsearch.bundle.module.min.js │ │ │ ├── flexsearch.compact.debug.js │ │ │ ├── flexsearch.compact.min.js │ │ │ ├── flexsearch.compact.module.debug.js │ │ │ ├── flexsearch.compact.module.min.js │ │ │ ├── flexsearch.es5.debug.js │ │ │ ├── flexsearch.es5.min.js │ │ │ ├── flexsearch.light.debug.js │ │ │ ├── flexsearch.light.min.js │ │ │ ├── flexsearch.light.module.debug.js │ │ │ ├── flexsearch.light.module.min.js │ │ │ ├── lang │ │ │ │ ├── arabic │ │ │ │ │ └── default.min.js │ │ │ │ ├── at.min.js │ │ │ │ ├── cjk │ │ │ │ │ └── default.min.js │ │ │ │ ├── cyrillic │ │ │ │ │ └── default.min.js │ │ │ │ ├── de.min.js │ │ │ │ ├── en.min.js │ │ │ │ ├── latin │ │ │ │ │ ├── advanced.min.js │ │ │ │ │ ├── balance.min.js │ │ │ │ │ ├── default.min.js │ │ │ │ │ ├── extra.min.js │ │ │ │ │ └── simple.min.js │ │ │ │ └── us.min.js │ │ │ ├── module-debug │ │ │ │ ├── async.js │ │ │ │ ├── cache.js │ │ │ │ ├── common.js │ │ │ │ ├── document.js │ │ │ │ ├── engine.js │ │ │ │ ├── global.js │ │ │ │ ├── index.js │ │ │ │ ├── intersect.js │ │ │ │ ├── lang.js │ │ │ │ ├── lang │ │ │ │ │ ├── arabic │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── at.js │ │ │ │ │ ├── cjk │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── cyrillic │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── latin │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ ├── balance.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── extra.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ └── us.js │ │ │ │ ├── polyfill.js │ │ │ │ ├── preset.js │ │ │ │ ├── serialize.js │ │ │ │ ├── type.js │ │ │ │ └── worker │ │ │ │ │ ├── handler.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node.js │ │ │ │ │ └── worker.js │ │ │ ├── module-min │ │ │ │ ├── async.js │ │ │ │ ├── cache.js │ │ │ │ ├── common.js │ │ │ │ ├── document.js │ │ │ │ ├── engine.js │ │ │ │ ├── global.js │ │ │ │ ├── index.js │ │ │ │ ├── intersect.js │ │ │ │ ├── lang.js │ │ │ │ ├── lang │ │ │ │ │ ├── arabic │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── at.js │ │ │ │ │ ├── cjk │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── cyrillic │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── latin │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ ├── balance.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── extra.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ └── us.js │ │ │ │ ├── polyfill.js │ │ │ │ ├── preset.js │ │ │ │ ├── serialize.js │ │ │ │ ├── type.js │ │ │ │ └── worker │ │ │ │ │ ├── handler.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node.js │ │ │ │ │ └── worker.js │ │ │ ├── module │ │ │ │ ├── async.js │ │ │ │ ├── cache.js │ │ │ │ ├── common.js │ │ │ │ ├── document.js │ │ │ │ ├── engine.js │ │ │ │ ├── global.js │ │ │ │ ├── index.js │ │ │ │ ├── intersect.js │ │ │ │ ├── lang.js │ │ │ │ ├── lang │ │ │ │ │ ├── arabic │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── at.js │ │ │ │ │ ├── cjk │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── cyrillic │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── latin │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ ├── balance.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── extra.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ └── us.js │ │ │ │ ├── polyfill.js │ │ │ │ ├── preset.js │ │ │ │ ├── serialize.js │ │ │ │ ├── type.js │ │ │ │ └── worker │ │ │ │ │ ├── handler.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node.js │ │ │ │ │ └── worker.js │ │ │ └── node │ │ │ │ └── node.js │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── _config │ │ │ │ ├── bundle │ │ │ │ │ └── config.js │ │ │ │ ├── compact │ │ │ │ │ └── config.js │ │ │ │ ├── debug │ │ │ │ │ └── config.js │ │ │ │ └── light │ │ │ │ │ └── config.js │ │ │ ├── async.js │ │ │ ├── cache.js │ │ │ ├── common.js │ │ │ ├── config.js │ │ │ ├── document.js │ │ │ ├── engine.js │ │ │ ├── global.js │ │ │ ├── index.js │ │ │ ├── intersect.js │ │ │ ├── lang.js │ │ │ ├── lang │ │ │ │ ├── arabic │ │ │ │ │ └── default.js │ │ │ │ ├── at.js │ │ │ │ ├── cjk │ │ │ │ │ └── default.js │ │ │ │ ├── cyrillic │ │ │ │ │ └── default.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── latin │ │ │ │ │ ├── advanced.js │ │ │ │ │ ├── balance.js │ │ │ │ │ ├── default.js │ │ │ │ │ ├── extra.js │ │ │ │ │ └── simple.js │ │ │ │ └── us.js │ │ │ ├── polyfill.js │ │ │ ├── preset.js │ │ │ ├── serialize.js │ │ │ ├── type.js │ │ │ ├── webpack.js │ │ │ └── worker │ │ │ │ ├── handler.js │ │ │ │ ├── index.js │ │ │ │ ├── node.js │ │ │ │ └── worker.js │ │ └── task │ │ │ ├── babel.bundle.json │ │ │ ├── babel.debug.json │ │ │ ├── babel.js │ │ │ ├── babel.min.json │ │ │ └── build.js │ └── katex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── contrib │ │ ├── auto-render │ │ │ ├── README.md │ │ │ ├── auto-render.js │ │ │ ├── index.html │ │ │ ├── splitAtDelimiters.js │ │ │ └── test │ │ │ │ └── auto-render-spec.js │ │ ├── copy-tex │ │ │ ├── README.md │ │ │ ├── copy-tex.js │ │ │ ├── index.html │ │ │ └── katex2tex.js │ │ ├── mathtex-script-type │ │ │ ├── README.md │ │ │ └── mathtex-script-type.js │ │ ├── mhchem │ │ │ ├── README.md │ │ │ └── mhchem.js │ │ └── render-a11y-string │ │ │ ├── render-a11y-string.js │ │ │ └── test │ │ │ └── render-a11y-string-spec.js │ │ ├── dist │ │ ├── README.md │ │ ├── contrib │ │ │ ├── auto-render.js │ │ │ ├── auto-render.min.js │ │ │ ├── auto-render.mjs │ │ │ ├── copy-tex.js │ │ │ ├── copy-tex.min.js │ │ │ ├── copy-tex.mjs │ │ │ ├── mathtex-script-type.js │ │ │ ├── mathtex-script-type.min.js │ │ │ ├── mathtex-script-type.mjs │ │ │ ├── mhchem.js │ │ │ ├── mhchem.min.js │ │ │ ├── mhchem.mjs │ │ │ ├── render-a11y-string.js │ │ │ ├── render-a11y-string.min.js │ │ │ └── render-a11y-string.mjs │ │ ├── fonts │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ └── KaTeX_Typewriter-Regular.woff2 │ │ ├── katex.css │ │ ├── katex.js │ │ ├── katex.min.css │ │ ├── katex.min.js │ │ └── katex.mjs │ │ ├── katex.js │ │ ├── package.json │ │ ├── src │ │ ├── Lexer.js │ │ ├── MacroExpander.js │ │ ├── Namespace.js │ │ ├── Options.js │ │ ├── ParseError.js │ │ ├── Parser.js │ │ ├── Settings.js │ │ ├── SourceLocation.js │ │ ├── Style.js │ │ ├── Token.js │ │ ├── buildCommon.js │ │ ├── buildHTML.js │ │ ├── buildMathML.js │ │ ├── buildTree.js │ │ ├── defineEnvironment.js │ │ ├── defineFunction.js │ │ ├── defineMacro.js │ │ ├── delimiter.js │ │ ├── domTree.js │ │ ├── environments.js │ │ ├── environments │ │ │ ├── array.js │ │ │ └── cd.js │ │ ├── fontMetrics.js │ │ ├── fontMetricsData.js │ │ ├── fonts │ │ │ ├── Makefile │ │ │ ├── default.cfg │ │ │ ├── generate_fonts.py │ │ │ ├── lib │ │ │ │ ├── Extra.otf │ │ │ │ └── Space.ttx │ │ │ ├── makeBlacker │ │ │ ├── makeFF │ │ │ └── xbbold.mf │ │ ├── functions.js │ │ ├── functions │ │ │ ├── accent.js │ │ │ ├── accentunder.js │ │ │ ├── arrow.js │ │ │ ├── char.js │ │ │ ├── color.js │ │ │ ├── cr.js │ │ │ ├── def.js │ │ │ ├── delimsizing.js │ │ │ ├── enclose.js │ │ │ ├── environment.js │ │ │ ├── font.js │ │ │ ├── genfrac.js │ │ │ ├── hbox.js │ │ │ ├── horizBrace.js │ │ │ ├── href.js │ │ │ ├── html.js │ │ │ ├── htmlmathml.js │ │ │ ├── includegraphics.js │ │ │ ├── kern.js │ │ │ ├── lap.js │ │ │ ├── math.js │ │ │ ├── mathchoice.js │ │ │ ├── mclass.js │ │ │ ├── op.js │ │ │ ├── operatorname.js │ │ │ ├── ordgroup.js │ │ │ ├── overline.js │ │ │ ├── phantom.js │ │ │ ├── pmb.js │ │ │ ├── raisebox.js │ │ │ ├── relax.js │ │ │ ├── rule.js │ │ │ ├── sizing.js │ │ │ ├── smash.js │ │ │ ├── sqrt.js │ │ │ ├── styling.js │ │ │ ├── supsub.js │ │ │ ├── symbolsOp.js │ │ │ ├── symbolsOrd.js │ │ │ ├── symbolsSpacing.js │ │ │ ├── tag.js │ │ │ ├── text.js │ │ │ ├── underline.js │ │ │ ├── utils │ │ │ │ └── assembleSupSub.js │ │ │ ├── vcenter.js │ │ │ └── verb.js │ │ ├── macros.js │ │ ├── mathMLTree.js │ │ ├── metrics │ │ │ ├── README.md │ │ │ ├── extract_tfms.py │ │ │ ├── extract_ttfs.py │ │ │ ├── format_json.py │ │ │ ├── mapping.pl │ │ │ └── parse_tfm.py │ │ ├── parseNode.js │ │ ├── parseTree.js │ │ ├── spacingData.js │ │ ├── stretchy.js │ │ ├── styles │ │ │ ├── fonts.scss │ │ │ └── katex.scss │ │ ├── svgGeometry.js │ │ ├── symbols.js │ │ ├── tree.js │ │ ├── types.js │ │ ├── unicodeAccents.js │ │ ├── unicodeScripts.js │ │ ├── unicodeSupOrSub.js │ │ ├── unicodeSymbols.js │ │ ├── units.js │ │ ├── utils.js │ │ └── wide-character.js │ │ └── types │ │ └── katex.d.ts ├── package-lock.json ├── package.json └── translate.py ├── static ├── apple-touch-icon.png ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | example/public 3 | example/resources 4 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2022 Will Faught 2 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | {{- $now := now -}} 2 | +++ 3 | categories = [] 4 | date = {{ .Date }} 5 | description = "" 6 | draft = true 7 | link = "" 8 | tags = [] 9 | title = "{{ replace (strings.TrimPrefix (print ($now.Format `2006-01-02`) `-`) .Name) `-` ` ` | title }}" 10 | +++ 11 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | # Paige example site 2 | 3 | If you move this directory out of its parent directory, 4 | you must remove this line from the file go.mod: 5 | 6 | ``` 7 | replace github.com/willfaught/paige => ../ 8 | ``` 9 | 10 | and then run this command: 11 | 12 | ``` 13 | $ cd example 14 | $ hugo mod get github.com/willfaught/paige@latest 15 | ``` 16 | -------------------------------------------------------------------------------- /example/content/authors/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Browse by author." 3 | title = "Authors" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/authors/author-demo/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstration of an author." 3 | title = "Author Demo" 4 | [paige.author] 5 | email = "example@example.com" 6 | name = "Author Demo" 7 | url = "https://example.com" 8 | +++ 9 | -------------------------------------------------------------------------------- /example/content/categories/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Browse by category." 3 | layout = "paige/cloud" 4 | title = "Categories" 5 | +++ 6 | -------------------------------------------------------------------------------- /example/content/categories/paige/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstration of a category." 3 | title = "Paige" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/content/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstrations of content." 3 | title = "Content" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/content/link.md: -------------------------------------------------------------------------------- 1 | +++ 2 | authors = ["author-demo"] 3 | categories = ["content", "paige"] 4 | description = "A front matter link." 5 | link = "https://willfaught.com/paige" 6 | tags = ["link"] 7 | title = "Link" 8 | +++ 9 | 10 | It takes you to the home page. 11 | -------------------------------------------------------------------------------- /example/content/layouts/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstrations of layouts." 3 | title = "Layouts" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/layouts/cloud/apple.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Apple" 3 | +++ 4 | -------------------------------------------------------------------------------- /example/content/layouts/cloud/banana.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Banana" 3 | +++ 4 | -------------------------------------------------------------------------------- /example/content/layouts/cloud/cantaloupe.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Cantaloupe" 3 | +++ 4 | -------------------------------------------------------------------------------- /example/content/series/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Browse by series." 3 | title = "Series" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/series/series-demo/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstration of a series." 3 | title = "Series Demo" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/shortcodes/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstrations of shortcodes." 3 | title = "Shortcodes" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/01-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/01-2.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/02-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/02-2.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/03.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/04.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/05.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/06.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/07.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/08.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/09.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/10.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/11.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/12.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/13.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/14.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/15.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/16.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/17.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/18.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/19.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/20.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/21.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/22.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/23.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/24.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/25.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/26.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/27.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/28.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/29.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/30.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/31.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/32.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/33.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/34.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/35.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/36.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/37.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/38.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/large/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/large/1.jpg -------------------------------------------------------------------------------- /example/content/shortcodes/gallery/large/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/example/content/shortcodes/gallery/large/2.jpg -------------------------------------------------------------------------------- /example/content/tags/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Browse by tag." 3 | layout = "paige/cloud" 4 | title = "Tags" 5 | +++ 6 | -------------------------------------------------------------------------------- /example/content/tags/sections/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | description = "Demonstration of a tag." 3 | title = "Sections" 4 | +++ 5 | -------------------------------------------------------------------------------- /example/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/willfaught/paige/example 2 | 3 | go 1.20 4 | 5 | require github.com/willfaught/paige v0.97.0 // indirect 6 | replace github.com/willfaught/paige => ../ 7 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/willfaught/paige 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /images/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/images/screenshot-dark.jpg -------------------------------------------------------------------------------- /images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/images/screenshot.jpg -------------------------------------------------------------------------------- /images/tn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/images/tn.jpg -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |

Not Found

3 | {{ end }} 4 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.atom.xml: -------------------------------------------------------------------------------- 1 | {{ $context := . }} 2 | 3 | {{ $anchor := $context.Anchor }} 4 | {{ $level := $context.Level }} 5 | {{ $text := $context.Text }} 6 | 7 | {{ $text }} 8 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.rss.xml: -------------------------------------------------------------------------------- 1 | {{ $context := . }} 2 | 3 | {{ $anchor := $context.Anchor }} 4 | {{ $level := $context.Level }} 5 | {{ $text := $context.Text }} 6 | 7 | {{ $text }} 8 | -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ $page := . }} 3 | 4 | {{ partial "paige/page.html" $page }} 5 | {{ partial "paige/list.html" $page }} 6 | {{ end }} 7 | -------------------------------------------------------------------------------- /layouts/_default/paige/search.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ $page := . }} 3 | 4 | {{ partial "paige/page.html" $page }} 5 | {{ partial "paige/search.html" $page }} 6 | {{ end }} 7 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ $page := . }} 3 | 4 | {{ partial "paige/page.html" $page }} 5 | {{ end }} 6 | -------------------------------------------------------------------------------- /layouts/partials/paige/body.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/partials/paige/func-minify.html: -------------------------------------------------------------------------------- 1 | {{ $params := . }} 2 | 3 | {{ $content := $params.content }} 4 | {{ $extension := $params.extension | default "html" }} 5 | 6 | {{ $path := print (sha1 $content) ".paige.tmp." $extension }} 7 | 8 | {{ $result := (resources.FromString $path $content | minify).Content }} 9 | 10 | {{ return $result }} 11 | -------------------------------------------------------------------------------- /layouts/partials/paige/func-target.html: -------------------------------------------------------------------------------- 1 | {{ $params := . }} 2 | 3 | {{ $page := $params.page }} 4 | {{ $url := $params.url }} 5 | 6 | {{ $external := cond (urls.Parse $url).IsAbs (not (strings.HasSuffix $url site.BaseURL)) false }} 7 | 8 | {{ return cond (and $external ($page.Param "paige.site.external_link_new_tab" | not | not)) "_blank" "" }} 9 | -------------------------------------------------------------------------------- /layouts/partials/paige/html.html: -------------------------------------------------------------------------------- 1 | {{ $page := . }} 2 | 3 | {{ $dark := eq ($page.Param "paige.site.color_scheme") "dark" }} 4 | {{ $lang := site.LanguageCode }} 5 | {{ $rtl := eq $page.Language.LanguageDirection "rtl" }} 6 | 7 | 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/paige/tabs.html: -------------------------------------------------------------------------------- 1 | {{ $content := chomp .InnerDeindent }} 2 | 3 | {{ if not (.Page.Scratch.Get "paige-tabs") }} 4 | {{ .Page.Scratch.Set "paige-tabs" 0 }} 5 | {{ end }} 6 | 7 | {{ .Page.Scratch.Add "paige-tabs" 1 }} 8 | 9 |
10 | {{ $content }} 11 |
12 | -------------------------------------------------------------------------------- /layouts/shortcodes/paige/tabs/buttons.html: -------------------------------------------------------------------------------- 1 | {{ $content := chomp .InnerDeindent }} 2 | 3 | {{ .Page.Scratch.Set "paige-tabs-button" 0 }} 4 | 5 |
6 | 9 |
10 | -------------------------------------------------------------------------------- /layouts/shortcodes/paige/tabs/panes.html: -------------------------------------------------------------------------------- 1 | {{ $content := chomp .InnerDeindent }} 2 | 3 | {{ .Page.Scratch.Set "paige-tabs-pane" 0 }} 4 | 5 |
6 |
7 | {{ $content }} 8 |
9 |
10 | -------------------------------------------------------------------------------- /paige/node_modules/.bin/katex: -------------------------------------------------------------------------------- 1 | ../katex/cli.js -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/cjs/enums.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/enums.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/cjs/popper-base.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-base.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/cjs/popper-lite.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-lite.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/cjs/popper.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/getComputedStyle.js: -------------------------------------------------------------------------------- 1 | import getWindow from "./getWindow.js"; 2 | export default function getComputedStyle(element) { 3 | return getWindow(element).getComputedStyle(element); 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/getHTMLElementScroll.js: -------------------------------------------------------------------------------- 1 | export default function getHTMLElementScroll(element) { 2 | return { 3 | scrollLeft: element.scrollLeft, 4 | scrollTop: element.scrollTop 5 | }; 6 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/getNodeName.js: -------------------------------------------------------------------------------- 1 | export default function getNodeName(element) { 2 | return element ? (element.nodeName || '').toLowerCase() : null; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/getWindow.js: -------------------------------------------------------------------------------- 1 | export default function getWindow(node) { 2 | if (node == null) { 3 | return window; 4 | } 5 | 6 | if (node.toString() !== '[object Window]') { 7 | var ownerDocument = node.ownerDocument; 8 | return ownerDocument ? ownerDocument.defaultView || window : window; 9 | } 10 | 11 | return node; 12 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScroll.js: -------------------------------------------------------------------------------- 1 | import getWindow from "./getWindow.js"; 2 | export default function getWindowScroll(node) { 3 | var win = getWindow(node); 4 | var scrollLeft = win.pageXOffset; 5 | var scrollTop = win.pageYOffset; 6 | return { 7 | scrollLeft: scrollLeft, 8 | scrollTop: scrollTop 9 | }; 10 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/isLayoutViewport.js: -------------------------------------------------------------------------------- 1 | import getUAString from "../utils/userAgent.js"; 2 | export default function isLayoutViewport() { 3 | return !/^((?!chrome|android).)*safari/i.test(getUAString()); 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/dom-utils/isTableElement.js: -------------------------------------------------------------------------------- 1 | import getNodeName from "./getNodeName.js"; 2 | export default function isTableElement(element) { 3 | return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0; 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/popper-base.js: -------------------------------------------------------------------------------- 1 | import { createPopper, popperGenerator, detectOverflow } from "./createPopper.js"; 2 | // eslint-disable-next-line import/no-unused-modules 3 | export { createPopper, popperGenerator, detectOverflow }; -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/@popperjs/core/dist/esm/types.js -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/expandToHashMap.js: -------------------------------------------------------------------------------- 1 | export default function expandToHashMap(value, keys) { 2 | return keys.reduce(function (hashMap, key) { 3 | hashMap[key] = value; 4 | return hashMap; 5 | }, {}); 6 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getAltAxis.js: -------------------------------------------------------------------------------- 1 | export default function getAltAxis(axis) { 2 | return axis === 'x' ? 'y' : 'x'; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getAltLen.js: -------------------------------------------------------------------------------- 1 | export default function getAltLen(len) { 2 | return len === 'width' ? 'height' : 'width'; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getBasePlacement.js: -------------------------------------------------------------------------------- 1 | import { auto } from "../enums.js"; 2 | export default function getBasePlacement(placement) { 3 | return placement.split('-')[0]; 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getFreshSideObject.js: -------------------------------------------------------------------------------- 1 | export default function getFreshSideObject() { 2 | return { 3 | top: 0, 4 | right: 0, 5 | bottom: 0, 6 | left: 0 7 | }; 8 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getMainAxisFromPlacement.js: -------------------------------------------------------------------------------- 1 | export default function getMainAxisFromPlacement(placement) { 2 | return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getOppositePlacement.js: -------------------------------------------------------------------------------- 1 | var hash = { 2 | left: 'right', 3 | right: 'left', 4 | bottom: 'top', 5 | top: 'bottom' 6 | }; 7 | export default function getOppositePlacement(placement) { 8 | return placement.replace(/left|right|bottom|top/g, function (matched) { 9 | return hash[matched]; 10 | }); 11 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getOppositeVariationPlacement.js: -------------------------------------------------------------------------------- 1 | var hash = { 2 | start: 'end', 3 | end: 'start' 4 | }; 5 | export default function getOppositeVariationPlacement(placement) { 6 | return placement.replace(/start|end/g, function (matched) { 7 | return hash[matched]; 8 | }); 9 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/getVariation.js: -------------------------------------------------------------------------------- 1 | export default function getVariation(placement) { 2 | return placement.split('-')[1]; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/math.js: -------------------------------------------------------------------------------- 1 | export var max = Math.max; 2 | export var min = Math.min; 3 | export var round = Math.round; -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/mergePaddingObject.js: -------------------------------------------------------------------------------- 1 | import getFreshSideObject from "./getFreshSideObject.js"; 2 | export default function mergePaddingObject(paddingObject) { 3 | return Object.assign({}, getFreshSideObject(), paddingObject); 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/rectToClientRect.js: -------------------------------------------------------------------------------- 1 | export default function rectToClientRect(rect) { 2 | return Object.assign({}, rect, { 3 | left: rect.x, 4 | top: rect.y, 5 | right: rect.x + rect.width, 6 | bottom: rect.y + rect.height 7 | }); 8 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/uniqueBy.js: -------------------------------------------------------------------------------- 1 | export default function uniqueBy(arr, fn) { 2 | var identifiers = new Set(); 3 | return arr.filter(function (item) { 4 | var identifier = fn(item); 5 | 6 | if (!identifiers.has(identifier)) { 7 | identifiers.add(identifier); 8 | return true; 9 | } 10 | }); 11 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/esm/utils/within.js: -------------------------------------------------------------------------------- 1 | import { max as mathMax, min as mathMin } from "./math.js"; 2 | export function within(min, value, max) { 3 | return mathMax(min, mathMin(value, max)); 4 | } 5 | export function withinMaxClamp(min, value, max) { 6 | var v = within(min, value, max); 7 | return v > max ? max : v; 8 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/umd/enums.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/enums.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/umd/popper-base.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-base.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/umd/popper-lite.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-lite.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/dist/umd/popper.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper.js' 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/contains.d.ts: -------------------------------------------------------------------------------- 1 | export default function contains(parent: Element, child: Element): boolean; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { ClientRectObject, VirtualElement } from "../types"; 2 | export default function getBoundingClientRect(element: Element | VirtualElement, includeScale?: boolean, isFixedStrategy?: boolean): ClientRectObject; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { ClientRectObject, PositioningStrategy } from "../types"; 2 | import type { Boundary, RootBoundary } from "../enums"; 3 | export default function getClippingRect(element: Element, boundary: Boundary, rootBoundary: RootBoundary, strategy: PositioningStrategy): ClientRectObject; 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { Rect, VirtualElement, Window } from "../types"; 2 | export default function getCompositeRect(elementOrVirtualElement: Element | VirtualElement, offsetParent: Element | Window, isFixed?: boolean): Rect; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.d.ts: -------------------------------------------------------------------------------- 1 | export default function getComputedStyle(element: Element): CSSStyleDeclaration; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js: -------------------------------------------------------------------------------- 1 | import getWindow from "./getWindow.js"; 2 | export default function getComputedStyle(element) { 3 | return getWindow(element).getComputedStyle(element); 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import getWindow from './getWindow'; 3 | 4 | export default function getComputedStyle( 5 | element: Element 6 | ): CSSStyleDeclaration { 7 | return getWindow(element).getComputedStyle(element); 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.d.ts: -------------------------------------------------------------------------------- 1 | import type { Window } from "../types"; 2 | export default function getDocumentElement(element: Element | Window): HTMLElement; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { Rect } from "../types"; 2 | export default function getDocumentRect(element: HTMLElement): Rect; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.d.ts: -------------------------------------------------------------------------------- 1 | export default function getHTMLElementScroll(element: HTMLElement): { 2 | scrollLeft: number; 3 | scrollTop: number; 4 | }; 5 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js: -------------------------------------------------------------------------------- 1 | export default function getHTMLElementScroll(element) { 2 | return { 3 | scrollLeft: element.scrollLeft, 4 | scrollTop: element.scrollTop 5 | }; 6 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export default function getHTMLElementScroll(element: HTMLElement) { 4 | return { 5 | scrollLeft: element.scrollLeft, 6 | scrollTop: element.scrollTop, 7 | }; 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { Rect } from "../types"; 2 | export default function getLayoutRect(element: HTMLElement): Rect; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getNodeName.d.ts: -------------------------------------------------------------------------------- 1 | import type { Window } from "../types"; 2 | export default function getNodeName(element: (Node | null | undefined) | Window): string | null | undefined; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js: -------------------------------------------------------------------------------- 1 | export default function getNodeName(element) { 2 | return element ? (element.nodeName || '').toLowerCase() : null; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { Window } from '../types'; 3 | 4 | export default function getNodeName(element: ?Node | Window): ?string { 5 | return element ? (element.nodeName || '').toLowerCase() : null; 6 | } 7 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.d.ts: -------------------------------------------------------------------------------- 1 | import type { Window } from "../types"; 2 | export default function getNodeScroll(node: Node | Window): { 3 | scrollLeft: any; 4 | scrollTop: any; 5 | }; 6 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.d.ts: -------------------------------------------------------------------------------- 1 | export default function getOffsetParent(element: Element): any; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getParentNode.d.ts: -------------------------------------------------------------------------------- 1 | export default function getParentNode(element: Node | ShadowRoot): Node; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.d.ts: -------------------------------------------------------------------------------- 1 | export default function getScrollParent(node: Node): HTMLElement; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { PositioningStrategy } from "../types"; 2 | export default function getViewportRect(element: Element, strategy: PositioningStrategy): { 3 | width: number; 4 | height: number; 5 | x: number; 6 | y: number; 7 | }; 8 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getWindow.d.ts: -------------------------------------------------------------------------------- 1 | export default function getWindow(node: any): any; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getWindow.js: -------------------------------------------------------------------------------- 1 | export default function getWindow(node) { 2 | if (node == null) { 3 | return window; 4 | } 5 | 6 | if (node.toString() !== '[object Window]') { 7 | var ownerDocument = node.ownerDocument; 8 | return ownerDocument ? ownerDocument.defaultView || window : window; 9 | } 10 | 11 | return node; 12 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.d.ts: -------------------------------------------------------------------------------- 1 | import type { Window } from "../types"; 2 | export default function getWindowScroll(node: Node | Window): { 3 | scrollLeft: any; 4 | scrollTop: any; 5 | }; 6 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js: -------------------------------------------------------------------------------- 1 | import getWindow from "./getWindow.js"; 2 | export default function getWindowScroll(node) { 3 | var win = getWindow(node); 4 | var scrollLeft = win.pageXOffset; 5 | var scrollTop = win.pageYOffset; 6 | return { 7 | scrollLeft: scrollLeft, 8 | scrollTop: scrollTop 9 | }; 10 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.d.ts: -------------------------------------------------------------------------------- 1 | export default function getWindowScrollBarX(element: Element): number; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/instanceOf.d.ts: -------------------------------------------------------------------------------- 1 | declare function isElement(node: unknown): boolean; 2 | declare function isHTMLElement(node: unknown): boolean; 3 | declare function isShadowRoot(node: unknown): boolean; 4 | export { isElement, isHTMLElement, isShadowRoot }; 5 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.d.ts: -------------------------------------------------------------------------------- 1 | export default function isLayoutViewport(): boolean; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js: -------------------------------------------------------------------------------- 1 | import getUAString from "../utils/userAgent.js"; 2 | export default function isLayoutViewport() { 3 | return !/^((?!chrome|android).)*safari/i.test(getUAString()); 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import getUAString from '../utils/userAgent'; 3 | 4 | export default function isLayoutViewport() { 5 | return !/^((?!chrome|android).)*safari/i.test(getUAString()); 6 | } 7 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.d.ts: -------------------------------------------------------------------------------- 1 | export default function isScrollParent(element: HTMLElement): boolean; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isTableElement.d.ts: -------------------------------------------------------------------------------- 1 | export default function isTableElement(element: Element): boolean; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js: -------------------------------------------------------------------------------- 1 | import getNodeName from "./getNodeName.js"; 2 | export default function isTableElement(element) { 3 | return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0; 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import getNodeName from './getNodeName'; 3 | 4 | export default function isTableElement(element: Element): boolean { 5 | return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0; 6 | } 7 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.d.ts: -------------------------------------------------------------------------------- 1 | import type { Window, VisualViewport } from "../types"; 2 | export default function listScrollParents(element: Node, list?: Array): Array; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | export * from "./enums"; 3 | export * from "./modifiers"; 4 | export { popperGenerator, detectOverflow, createPopper as createPopperBase } from "./createPopper"; 5 | export { createPopper } from "./popper"; 6 | export { createPopper as createPopperLite } from "./popper-lite"; 7 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/modifiers/applyStyles.d.ts: -------------------------------------------------------------------------------- 1 | import type { Modifier } from "../types"; 2 | export declare type ApplyStylesModifier = Modifier<"applyStyles", {}>; 3 | declare const _default: ApplyStylesModifier; 4 | export default _default; 5 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/modifiers/eventListeners.d.ts: -------------------------------------------------------------------------------- 1 | import type { Modifier } from "../types"; 2 | export declare type Options = { 3 | scroll: boolean; 4 | resize: boolean; 5 | }; 6 | export declare type EventListenersModifier = Modifier<"eventListeners", Options>; 7 | declare const _default: EventListenersModifier; 8 | export default _default; 9 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/modifiers/hide.d.ts: -------------------------------------------------------------------------------- 1 | import type { Modifier } from "../types"; 2 | export declare type HideModifier = Modifier<"hide", {}>; 3 | declare const _default: HideModifier; 4 | export default _default; 5 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/modifiers/popperOffsets.d.ts: -------------------------------------------------------------------------------- 1 | import type { Modifier } from "../types"; 2 | export declare type PopperOffsetsModifier = Modifier<"popperOffsets", {}>; 3 | declare const _default: PopperOffsetsModifier; 4 | export default _default; 5 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/popper-base.d.ts: -------------------------------------------------------------------------------- 1 | import { createPopper, popperGenerator, detectOverflow } from "./createPopper"; 2 | export * from "./types"; 3 | export { createPopper, popperGenerator, detectOverflow }; 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/popper-base.js: -------------------------------------------------------------------------------- 1 | import { createPopper, popperGenerator, detectOverflow } from "./createPopper.js"; 2 | // eslint-disable-next-line import/no-unused-modules 3 | export { createPopper, popperGenerator, detectOverflow }; -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/popper-base.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { createPopper, popperGenerator, detectOverflow } from './createPopper'; 3 | 4 | export type * from './types'; 5 | 6 | // eslint-disable-next-line import/no-unused-modules 7 | export { createPopper, popperGenerator, detectOverflow }; 8 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/@popperjs/core/lib/types.js -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/debounce.d.ts: -------------------------------------------------------------------------------- 1 | export default function debounce(fn: (...args: Array) => any): () => Promise; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/expandToHashMap.d.ts: -------------------------------------------------------------------------------- 1 | export default function expandToHashMap(value: T, keys: Array): { 2 | [key: string]: T; 3 | }; 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/expandToHashMap.js: -------------------------------------------------------------------------------- 1 | export default function expandToHashMap(value, keys) { 2 | return keys.reduce(function (hashMap, key) { 3 | hashMap[key] = value; 4 | return hashMap; 5 | }, {}); 6 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/expandToHashMap.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export default function expandToHashMap< 4 | T: number | string | boolean, 5 | K: string 6 | >(value: T, keys: Array): { [key: string]: T } { 7 | return keys.reduce((hashMap, key) => { 8 | hashMap[key] = value; 9 | return hashMap; 10 | }, {}); 11 | } 12 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getAltAxis.d.ts: -------------------------------------------------------------------------------- 1 | export default function getAltAxis(axis: "x" | "y"): "x" | "y"; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getAltAxis.js: -------------------------------------------------------------------------------- 1 | export default function getAltAxis(axis) { 2 | return axis === 'x' ? 'y' : 'x'; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getAltAxis.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export default function getAltAxis(axis: 'x' | 'y'): 'x' | 'y' { 4 | return axis === 'x' ? 'y' : 'x'; 5 | } 6 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getAltLen.d.ts: -------------------------------------------------------------------------------- 1 | export default function getAltLen(len: "width" | "height"): "width" | "height"; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getAltLen.js: -------------------------------------------------------------------------------- 1 | export default function getAltLen(len) { 2 | return len === 'width' ? 'height' : 'width'; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getAltLen.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export default function getAltLen(len: 'width' | 'height'): 'width' | 'height' { 4 | return len === 'width' ? 'height' : 'width'; 5 | } 6 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getBasePlacement.d.ts: -------------------------------------------------------------------------------- 1 | import { BasePlacement, Placement, auto } from "../enums"; 2 | export default function getBasePlacement(placement: Placement | typeof auto): BasePlacement; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getBasePlacement.js: -------------------------------------------------------------------------------- 1 | import { auto } from "../enums.js"; 2 | export default function getBasePlacement(placement) { 3 | return placement.split('-')[0]; 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getBasePlacement.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type BasePlacement, type Placement, auto } from '../enums'; 3 | 4 | export default function getBasePlacement( 5 | placement: Placement | typeof auto 6 | ): BasePlacement { 7 | return (placement.split('-')[0]: any); 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getFreshSideObject.d.ts: -------------------------------------------------------------------------------- 1 | import type { SideObject } from "../types"; 2 | export default function getFreshSideObject(): SideObject; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js: -------------------------------------------------------------------------------- 1 | export default function getFreshSideObject() { 2 | return { 3 | top: 0, 4 | right: 0, 5 | bottom: 0, 6 | left: 0 7 | }; 8 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { SideObject } from '../types'; 3 | 4 | export default function getFreshSideObject(): SideObject { 5 | return { 6 | top: 0, 7 | right: 0, 8 | bottom: 0, 9 | left: 0, 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.d.ts: -------------------------------------------------------------------------------- 1 | import type { Placement } from "../enums"; 2 | export default function getMainAxisFromPlacement(placement: Placement): "x" | "y"; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js: -------------------------------------------------------------------------------- 1 | export default function getMainAxisFromPlacement(placement) { 2 | return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { Placement } from '../enums'; 3 | 4 | export default function getMainAxisFromPlacement( 5 | placement: Placement 6 | ): 'x' | 'y' { 7 | return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getOppositePlacement.d.ts: -------------------------------------------------------------------------------- 1 | import type { Placement } from "../enums"; 2 | export default function getOppositePlacement(placement: Placement): Placement; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js: -------------------------------------------------------------------------------- 1 | var hash = { 2 | left: 'right', 3 | right: 'left', 4 | bottom: 'top', 5 | top: 'bottom' 6 | }; 7 | export default function getOppositePlacement(placement) { 8 | return placement.replace(/left|right|bottom|top/g, function (matched) { 9 | return hash[matched]; 10 | }); 11 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.d.ts: -------------------------------------------------------------------------------- 1 | import type { Placement } from "../enums"; 2 | export default function getOppositeVariationPlacement(placement: Placement): Placement; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js: -------------------------------------------------------------------------------- 1 | var hash = { 2 | start: 'end', 3 | end: 'start' 4 | }; 5 | export default function getOppositeVariationPlacement(placement) { 6 | return placement.replace(/start|end/g, function (matched) { 7 | return hash[matched]; 8 | }); 9 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getVariation.d.ts: -------------------------------------------------------------------------------- 1 | import { Variation, Placement } from "../enums"; 2 | export default function getVariation(placement: Placement): Variation | null | undefined; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getVariation.js: -------------------------------------------------------------------------------- 1 | export default function getVariation(placement) { 2 | return placement.split('-')[1]; 3 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/getVariation.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Variation, type Placement } from '../enums'; 3 | 4 | export default function getVariation(placement: Placement): ?Variation { 5 | return (placement.split('-')[1]: any); 6 | } 7 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/math.d.ts: -------------------------------------------------------------------------------- 1 | export declare const max: (...values: number[]) => number; 2 | export declare const min: (...values: number[]) => number; 3 | export declare const round: (x: number) => number; 4 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/math.js: -------------------------------------------------------------------------------- 1 | export var max = Math.max; 2 | export var min = Math.min; 3 | export var round = Math.round; -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/math.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | export const max = Math.max; 3 | export const min = Math.min; 4 | export const round = Math.round; 5 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/mergeByName.d.ts: -------------------------------------------------------------------------------- 1 | import type { Modifier } from "../types"; 2 | export default function mergeByName(modifiers: Array>>): Array>>; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/mergePaddingObject.d.ts: -------------------------------------------------------------------------------- 1 | import type { SideObject } from "../types"; 2 | export default function mergePaddingObject(paddingObject: Partial): SideObject; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js: -------------------------------------------------------------------------------- 1 | import getFreshSideObject from "./getFreshSideObject.js"; 2 | export default function mergePaddingObject(paddingObject) { 3 | return Object.assign({}, getFreshSideObject(), paddingObject); 4 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/orderModifiers.d.ts: -------------------------------------------------------------------------------- 1 | import type { Modifier } from "../types"; 2 | export default function orderModifiers(modifiers: Array>): Array>; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/rectToClientRect.d.ts: -------------------------------------------------------------------------------- 1 | import type { Rect, ClientRectObject } from "../types"; 2 | export default function rectToClientRect(rect: Rect): ClientRectObject; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/rectToClientRect.js: -------------------------------------------------------------------------------- 1 | export default function rectToClientRect(rect) { 2 | return Object.assign({}, rect, { 3 | left: rect.x, 4 | top: rect.y, 5 | right: rect.x + rect.width, 6 | bottom: rect.y + rect.height 7 | }); 8 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/uniqueBy.d.ts: -------------------------------------------------------------------------------- 1 | export default function uniqueBy(arr: Array, fn: (arg0: T) => any): Array; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/uniqueBy.js: -------------------------------------------------------------------------------- 1 | export default function uniqueBy(arr, fn) { 2 | var identifiers = new Set(); 3 | return arr.filter(function (item) { 4 | var identifier = fn(item); 5 | 6 | if (!identifiers.has(identifier)) { 7 | identifiers.add(identifier); 8 | return true; 9 | } 10 | }); 11 | } -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/userAgent.d.ts: -------------------------------------------------------------------------------- 1 | export default function getUAString(): string; 2 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/within.d.ts: -------------------------------------------------------------------------------- 1 | export declare function within(min: number, value: number, max: number): number; 2 | export declare function withinMaxClamp(min: number, value: number, max: number): number; 3 | -------------------------------------------------------------------------------- /paige/node_modules/@popperjs/core/lib/utils/within.js: -------------------------------------------------------------------------------- 1 | import { max as mathMax, min as mathMin } from "./math.js"; 2 | export function within(min, value, max) { 3 | return mathMax(min, mathMin(value, max)); 4 | } 5 | export function withinMaxClamp(min, value, max) { 6 | var v = within(min, value, max); 7 | return v > max ? max : v; 8 | } -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/1-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/1-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/1-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/7-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/7-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/7-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/align-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/align-end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/align-middle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/align-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/align-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/amd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/app.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-left-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-right-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bag-dash-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/ban-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/ban.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bar-chart-line-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/battery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bell-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bookmark-dash-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bookmark-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bookmark-heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bookshelf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/border-all.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bounding-box.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/box2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/box2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/brilliance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/bucket-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar-minus-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar-range-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar3-event-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/calendar3-range-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/camera-video-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/capsule.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-down-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-left-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-right-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-up-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-up-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/caret-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/cash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chat-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chat-left-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chat-right-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chat-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/check-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/check2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-compact-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-compact-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-compact-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-compact-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/circle-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/clock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/cloudy-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/code.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/columns.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/compass-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/cone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/credit-card-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/currency-yen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/cursor-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dash-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dash-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dash-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dash-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/diamond-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dice-1-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dice-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dice-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/display-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/door-closed-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/door-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/easel3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/easel3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/egg-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/eject-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/emoji-expressionless-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/exclamation-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/exclamation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/exclude.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/explicit-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/eye-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-break-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-earmark-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-earmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-minus-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-play-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-plus-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file-ruled-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/forward-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/front.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/funnel-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/gender-female.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/gender-male.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/gender-neuter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/geo-alt-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/h-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/h-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/h-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/headphones.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/heartbreak-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/hexagon-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/hexagon-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/image-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/key-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/ladder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/laptop-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/laptop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/layout-sidebar-reverse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/layout-sidebar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/layout-split.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/lightning-charge-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/lightning-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/lock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/magnet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/magnet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/microsoft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/mouse-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/mouse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/mouse2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/option.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/paperclip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/pause-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/peace-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/pentagon-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/person-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/person-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/phone-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/phone-landscape-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/phone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/pie-chart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/pie-chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/pip-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/play-btn-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/play-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/play-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/plus-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/plus-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/plus-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record-btn-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/record2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/reply-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/rulers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/segmented-nav.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/share-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/shift-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/skip-end-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/skip-end-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/skip-end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/skip-start-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/skip-start-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/skip-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/slash-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/slash-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/slash-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/slash-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/square-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/stop-btn-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/stop-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/stop-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/strava.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/substack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/subtract.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/suit-diamond-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/suit-heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/tablet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/tablet-landscape-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/tag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/three-dots-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/three-dots.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/tiktok.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/toggle-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/toggle-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/toggle2-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/toggle2-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/triangle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/tv-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/twitter-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/type-h1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/type-underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/union.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/unlock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/usb-c-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/usb-c.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/usb-drive-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/vinyl-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/voicemail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/volume-off-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/x-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap-icons/icons/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Reboot); 3 | 4 | @import "functions"; 5 | @import "variables"; 6 | @import "variables-dark"; 7 | @import "maps"; 8 | @import "mixins"; 9 | @import "root"; 10 | @import "reboot"; 11 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/helpers/_stacks.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start stacks 2 | .hstack { 3 | display: flex; 4 | flex-direction: row; 5 | align-items: center; 6 | align-self: stretch; 7 | } 8 | 9 | .vstack { 10 | display: flex; 11 | flex: 1 1 auto; 12 | flex-direction: column; 13 | align-self: stretch; 14 | } 15 | // scss-docs-end stacks 16 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/helpers/_vr.scss: -------------------------------------------------------------------------------- 1 | .vr { 2 | display: inline-block; 3 | align-self: stretch; 4 | width: $vr-border-width; 5 | min-height: 1em; 6 | background-color: currentcolor; 7 | opacity: $hr-opacity; 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/mixins/_banner.scss: -------------------------------------------------------------------------------- 1 | @mixin bsBanner($file) { 2 | /*! 3 | * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/) 4 | * Copyright 2011-2024 The Bootstrap Authors 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | } 8 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /paige/node_modules/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /paige/node_modules/commander/esm.mjs: -------------------------------------------------------------------------------- 1 | import commander from './index.js'; 2 | 3 | // wrapper to provide named exports for ESM. 4 | export const { 5 | program, 6 | createCommand, 7 | createArgument, 8 | createOption, 9 | CommanderError, 10 | InvalidArgumentError, 11 | Command, 12 | Argument, 13 | Option, 14 | Help 15 | } = commander; 16 | -------------------------------------------------------------------------------- /paige/node_modules/commander/package-support.json: -------------------------------------------------------------------------------- 1 | { 2 | "versions": [ 3 | { 4 | "version": "*", 5 | "target": { 6 | "node": "supported" 7 | }, 8 | "response": { 9 | "type": "time-permitting" 10 | }, 11 | "backing": { 12 | "npm-funding": true 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/lang/arabic/default.min.js: -------------------------------------------------------------------------------- 1 | (function(self){'use strict';const a=/[\x00-\x7F]+/g;self.FlexSearch.registerCharset("arabic:default",{encode:function(b){return this.g(b.replace(a," "),!1," ",!1)},h:!0});}(this)); 2 | -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/lang/cjk/default.min.js: -------------------------------------------------------------------------------- 1 | (function(self){'use strict';const a=/[\x00-\x7F]+/g;self.FlexSearch.registerCharset("cjk:default",{encode:function(b){return this.g(b.replace(a,""),!1,"",!1)},h:!1,i:"strict"});}(this)); 2 | -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/lang/cyrillic/default.min.js: -------------------------------------------------------------------------------- 1 | (function(self){'use strict';const a=/[\x00-\x7F]+/g;self.FlexSearch.registerCharset("cyrillic:default",{encode:function(b){return this.g(b.replace(a," "),!1," ",!1)},h:!1});}(this)); 2 | -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/lang/latin/default.min.js: -------------------------------------------------------------------------------- 1 | (function(self){'use strict';const b=/[\u0300-\u036f]/g;const c=/[\W_]+/;self.FlexSearch.registerCharset("latin:default",{encode:function(a){var d=this.g;a.normalize&&(a=a.normalize("NFD").replace(b,""));return d.call(this,a.toLowerCase(),!1,c,!1)},h:!1,i:""});}(this)); 2 | -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-debug/worker/worker.js: -------------------------------------------------------------------------------- 1 | import handler from "./handler.js"; 2 | onmessage = handler; -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/global.js: -------------------------------------------------------------------------------- 1 | export const global_lang={};export const global_charset={};export function registerCharset(a,b){global_charset[a]=b}export function registerLanguage(a,b){global_lang[a]=b} -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/lang/arabic/default.js: -------------------------------------------------------------------------------- 1 | import{IndexInterface}from"../../type.js";import{pipeline}from"../../lang.js";export const rtl=!0;export const tokenize="";export default{encode:encode,rtl:!0};const regex=/[\x00-\x7F]+/g,split=/\s+/;export function encode(a){return pipeline.call(this,(""+a).replace(regex," "),!1,split,!1)} -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/lang/cjk/default.js: -------------------------------------------------------------------------------- 1 | import{IndexInterface}from"../../type.js";import{pipeline}from"../../lang.js";export const rtl=!1;export const tokenize="strict";export default{encode:encode,rtl:!1,tokenize:"strict"};const regex=/[\x00-\x7F]+/g;export function encode(a){return pipeline.call(this,(""+a).replace(regex,""),!1,"",!1)} -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/lang/cyrillic/default.js: -------------------------------------------------------------------------------- 1 | import{IndexInterface}from"../../type.js";import{pipeline}from"../../lang.js";export const rtl=!1;export const tokenize="";export default{encode:encode,rtl:!1};const regex=/[\x00-\x7F]+/g,split=/\s+/;export function encode(a){return pipeline.call(this,(""+a).replace(regex," "),!1,split,!1)} -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/lang/latin/default.js: -------------------------------------------------------------------------------- 1 | import{IndexInterface}from"../../type.js";import{pipeline,normalize,regex_whitespace}from"../../lang.js";export const rtl=!1;export const tokenize="";export default{encode:encode,rtl:!1,tokenize:""};export function encode(a){return pipeline.call(this,(""+a).toLowerCase(),!1,regex_whitespace,!1)} -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/type.js: -------------------------------------------------------------------------------- 1 | export function IndexInterface(){this.cache=null,this.matcher=null,this.stemmer=null,this.filter=null}IndexInterface.prototype.add,IndexInterface.prototype.append,IndexInterface.prototype.search,IndexInterface.prototype.update,IndexInterface.prototype.remove;export function DocumentInterface(){this.field=null,this.index=null} -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module-min/worker/worker.js: -------------------------------------------------------------------------------- 1 | import handler from"./handler.js";onmessage=handler; -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/dist/module/worker/worker.js: -------------------------------------------------------------------------------- 1 | import handler from "./handler.js"; 2 | onmessage = handler; -------------------------------------------------------------------------------- /paige/node_modules/flexsearch/src/worker/worker.js: -------------------------------------------------------------------------------- 1 | import handler from "./handler.js"; 2 | onmessage = handler; 3 | -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /paige/node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /paige/node_modules/katex/src/environments.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import {_environments} from "./defineEnvironment"; 3 | 4 | const environments = _environments; 5 | 6 | export default environments; 7 | 8 | // All environment definitions should be imported below 9 | import "./environments/array"; 10 | -------------------------------------------------------------------------------- /paige/node_modules/katex/src/fonts/lib/Extra.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/paige/node_modules/katex/src/fonts/lib/Extra.otf -------------------------------------------------------------------------------- /paige/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "bootstrap": "^5.3.3", 4 | "bootstrap-icons": "^1.11.0", 5 | "flexsearch": "^0.7.43", 6 | "katex": "^0.16.10" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/static/favicon-96x96.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/static/favicon.ico -------------------------------------------------------------------------------- /static/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/static/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /static/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willfaught/paige/8219b9fe0cd563d8436a8a3e7c175528f1ba2795/static/web-app-manifest-512x512.png --------------------------------------------------------------------------------