├── .github └── workflows │ ├── build.yml │ ├── gh-pages.yml │ └── security-checks.yml ├── .gitignore ├── .gitmodules ├── .semgrepignore ├── LICENSE ├── Makefile ├── README.md ├── conductor ├── go.mod ├── go.sum ├── main.go └── main_test.go ├── docs ├── .DS_Store ├── .hugo_build.lock ├── config.yaml ├── content │ ├── _index.md │ ├── architecture │ │ ├── architecture.md │ │ ├── errors.md │ │ └── state.md │ ├── contrib.md │ ├── functions │ │ ├── alienvaultotx.md │ │ ├── crowdstrike.md │ │ ├── exonerator.md │ │ ├── greynoise.md │ │ ├── ipapi.md │ │ └── list.md │ └── usage │ │ ├── customise.md │ │ ├── getting_started.md │ │ ├── jira.md │ │ ├── opsgenie.md │ │ ├── requirements.md │ │ ├── splunk.md │ │ └── sumologic.md ├── data │ └── menu │ │ ├── extra.yaml │ │ └── main.yaml ├── static │ ├── .DS_Store │ ├── logo.png │ └── media │ │ ├── deploypatterns.png │ │ └── statemachine.png └── themes │ └── hugo-geekdoc │ ├── .nvmrc │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── archetypes │ ├── docs.md │ └── posts.md │ ├── assets │ ├── search │ │ ├── config.json │ │ └── data.json │ └── sprites │ │ └── geekdoc.svg │ ├── data │ └── assets.json │ ├── eslint.config.js │ ├── i18n │ ├── am.yaml │ ├── cs.yaml │ ├── de.yaml │ ├── en.yaml │ ├── es.yaml │ ├── fr.yaml │ ├── it.yaml │ ├── ja.yaml │ ├── nl.yaml │ ├── oc.yaml │ └── zh-cn.yaml │ ├── images │ ├── readme.png │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── _markup │ │ │ ├── render-codeblock-mermaid.html │ │ │ ├── render-heading.html │ │ │ ├── render-image.html │ │ │ └── render-link.html │ │ ├── baseof.html │ │ ├── list.html │ │ ├── single.html │ │ ├── taxonomy.html │ │ └── terms.html │ ├── partials │ │ ├── foot.html │ │ ├── head │ │ │ ├── custom.html │ │ │ ├── favicons.html │ │ │ ├── meta.html │ │ │ ├── microformats.html │ │ │ ├── others.html │ │ │ └── rel-me.html │ │ ├── language.html │ │ ├── menu-bundle-np.html │ │ ├── menu-bundle.html │ │ ├── menu-extra.html │ │ ├── menu-filetree-np.html │ │ ├── menu-filetree.html │ │ ├── menu.html │ │ ├── microformats │ │ │ ├── opengraph.html │ │ │ ├── schema.html │ │ │ └── twitter_cards.html │ │ ├── page-header.html │ │ ├── page-metadata.html │ │ ├── pagination.html │ │ ├── posts │ │ │ └── metadata.html │ │ ├── search.html │ │ ├── site-footer.html │ │ ├── site-header.html │ │ ├── svg-icon-symbols.html │ │ └── utils │ │ │ ├── content.html │ │ │ ├── description.html │ │ │ ├── featured.html │ │ │ └── title.html │ ├── posts │ │ ├── list.html │ │ └── single.html │ ├── robots.txt │ └── shortcodes │ │ ├── avatar.html │ │ ├── button.html │ │ ├── columns.html │ │ ├── expand.html │ │ ├── hint.html │ │ ├── icon.html │ │ ├── img.html │ │ ├── include.html │ │ ├── katex.html │ │ ├── mermaid.html │ │ ├── progress.html │ │ ├── propertylist.html │ │ ├── tab.html │ │ ├── tabs.html │ │ ├── toc-tree.html │ │ └── toc.html │ ├── static │ ├── brand.svg │ ├── custom.css │ ├── favicon │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-384x384.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-1024x1024.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-startup-image-1125x2436.png │ │ ├── apple-touch-startup-image-1136x640.png │ │ ├── apple-touch-startup-image-1170x2532.png │ │ ├── apple-touch-startup-image-1179x2556.png │ │ ├── apple-touch-startup-image-1242x2208.png │ │ ├── apple-touch-startup-image-1242x2688.png │ │ ├── apple-touch-startup-image-1284x2778.png │ │ ├── apple-touch-startup-image-1290x2796.png │ │ ├── apple-touch-startup-image-1334x750.png │ │ ├── apple-touch-startup-image-1488x2266.png │ │ ├── apple-touch-startup-image-1536x2048.png │ │ ├── apple-touch-startup-image-1620x2160.png │ │ ├── apple-touch-startup-image-1640x2160.png │ │ ├── apple-touch-startup-image-1668x2224.png │ │ ├── apple-touch-startup-image-1668x2388.png │ │ ├── apple-touch-startup-image-1792x828.png │ │ ├── apple-touch-startup-image-2048x1536.png │ │ ├── apple-touch-startup-image-2048x2732.png │ │ ├── apple-touch-startup-image-2160x1620.png │ │ ├── apple-touch-startup-image-2160x1640.png │ │ ├── apple-touch-startup-image-2208x1242.png │ │ ├── apple-touch-startup-image-2224x1668.png │ │ ├── apple-touch-startup-image-2266x1488.png │ │ ├── apple-touch-startup-image-2388x1668.png │ │ ├── apple-touch-startup-image-2436x1125.png │ │ ├── apple-touch-startup-image-2532x1170.png │ │ ├── apple-touch-startup-image-2556x1179.png │ │ ├── apple-touch-startup-image-2688x1242.png │ │ ├── apple-touch-startup-image-2732x2048.png │ │ ├── apple-touch-startup-image-2778x1284.png │ │ ├── apple-touch-startup-image-2796x1290.png │ │ ├── apple-touch-startup-image-640x1136.png │ │ ├── apple-touch-startup-image-750x1334.png │ │ ├── apple-touch-startup-image-828x1792.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-48x48.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── manifest.webmanifest │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ └── mstile-70x70.png │ ├── fonts │ │ ├── GeekdocIcons.woff │ │ ├── GeekdocIcons.woff2 │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.woff │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ ├── LiberationMono.woff │ │ ├── LiberationMono.woff2 │ │ ├── LiberationSans-Bold.woff │ │ ├── LiberationSans-Bold.woff2 │ │ ├── LiberationSans-BoldItalic.woff │ │ ├── LiberationSans-BoldItalic.woff2 │ │ ├── LiberationSans-Italic.woff │ │ ├── LiberationSans-Italic.woff2 │ │ ├── LiberationSans.woff │ │ ├── LiberationSans.woff2 │ │ ├── Metropolis.woff │ │ └── Metropolis.woff2 │ ├── img │ │ └── geekdoc-stack.svg │ ├── js │ │ ├── 130-395cb664.chunk.min.js │ │ ├── 155-155e0581.chunk.min.js │ │ ├── 164-c7b61128.chunk.min.js │ │ ├── 165-4df74207.chunk.min.js │ │ ├── 165-4df74207.chunk.min.js.LICENSE.txt │ │ ├── 174-5ff0286f.chunk.min.js │ │ ├── 178-3e4e928c.chunk.min.js │ │ ├── 186-df634c5c.chunk.min.js │ │ ├── 247-34fff2e1.chunk.min.js │ │ ├── 32-f6b664cc.chunk.min.js │ │ ├── 357-2a926bc9.chunk.min.js │ │ ├── 364-fd5df3dd.chunk.min.js │ │ ├── 379-233b54d3.chunk.min.js │ │ ├── 387-3546ecdc.chunk.min.js │ │ ├── 445-99c1ba44.chunk.min.js │ │ ├── 449-121db0c2.chunk.min.js │ │ ├── 452-e65d6d68.chunk.min.js │ │ ├── 484-77a146f6.chunk.min.js │ │ ├── 496-1979476f.chunk.min.js │ │ ├── 525-abc802a0.chunk.min.js │ │ ├── 567-4fef9a1a.chunk.min.js │ │ ├── 573-5fb26808.chunk.min.js │ │ ├── 606-72346440.chunk.min.js │ │ ├── 664-723fc55c.chunk.min.js │ │ ├── 689-3cbd5ea9.chunk.min.js │ │ ├── 711-c5eeef68.chunk.min.js │ │ ├── 720-970f726e.chunk.min.js │ │ ├── 723-47eb515a.chunk.min.js │ │ ├── 731-70ea2831.chunk.min.js │ │ ├── 763-66119f34.chunk.min.js │ │ ├── 790-2b300153.chunk.min.js │ │ ├── 802-4ae1987e.chunk.min.js │ │ ├── 840-6b7093bb.chunk.min.js │ │ ├── 875-6da97aae.chunk.min.js │ │ ├── 890-c9907c95.chunk.min.js │ │ ├── 921-8d080722.chunk.min.js │ │ ├── 998-ac49fa4c.chunk.min.js │ │ ├── colortheme-662de488.bundle.min.js │ │ ├── katex-81adfa46.bundle.min.js │ │ ├── main-2e274343.bundle.min.js │ │ ├── main-2e274343.bundle.min.js.LICENSE.txt │ │ ├── mermaid-16393d09.bundle.min.js │ │ ├── mermaid-16393d09.bundle.min.js.LICENSE.txt │ │ ├── search-d0afef64.bundle.min.js │ │ └── search-d0afef64.bundle.min.js.LICENSE.txt │ ├── katex-59efccf3.min.css │ ├── main-4434ec39.min.css │ ├── mobile-79ddc617.min.css │ └── print-735ccc12.min.css │ └── theme.toml ├── event ├── alert.json ├── domain-alert.json ├── ip-alert.json ├── multiple-alert.json ├── output.json ├── post_from_sumo.json ├── sns_from_opsgenie.json ├── sns_from_splunk.json └── url-alert.json ├── function ├── alienvaultotx │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── crowdstrikefalcon │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── exonerator │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── greynoise │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go └── ipapi │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── output ├── jira │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go └── opsgenie │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── pkg └── squyre │ ├── LICENSE │ ├── go.mod │ ├── go.sum │ ├── managesecrets.go │ ├── managesecrets_test.go │ ├── squyre.go │ └── squyre_test.go ├── scripts └── bootstrap │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── statemachine ├── enrich.asl.json └── templates │ ├── pass.tmp │ ├── task.tmp │ └── template.tmp ├── template.yaml └── template └── opsgenie_sns.yaml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/security-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/.github/workflows/security-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .aws-sam 2 | samconfig.toml 3 | docs/public 4 | .hugo_build.lock 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/.gitmodules -------------------------------------------------------------------------------- /.semgrepignore: -------------------------------------------------------------------------------- 1 | docs/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/README.md -------------------------------------------------------------------------------- /conductor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/conductor/go.mod -------------------------------------------------------------------------------- /conductor/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/conductor/go.sum -------------------------------------------------------------------------------- /conductor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/conductor/main.go -------------------------------------------------------------------------------- /conductor/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/conductor/main_test.go -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/config.yaml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/architecture/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/architecture/architecture.md -------------------------------------------------------------------------------- /docs/content/architecture/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/architecture/errors.md -------------------------------------------------------------------------------- /docs/content/architecture/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/architecture/state.md -------------------------------------------------------------------------------- /docs/content/contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/contrib.md -------------------------------------------------------------------------------- /docs/content/functions/alienvaultotx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/functions/alienvaultotx.md -------------------------------------------------------------------------------- /docs/content/functions/crowdstrike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/functions/crowdstrike.md -------------------------------------------------------------------------------- /docs/content/functions/exonerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/functions/exonerator.md -------------------------------------------------------------------------------- /docs/content/functions/greynoise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/functions/greynoise.md -------------------------------------------------------------------------------- /docs/content/functions/ipapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/functions/ipapi.md -------------------------------------------------------------------------------- /docs/content/functions/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/functions/list.md -------------------------------------------------------------------------------- /docs/content/usage/customise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/customise.md -------------------------------------------------------------------------------- /docs/content/usage/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/getting_started.md -------------------------------------------------------------------------------- /docs/content/usage/jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/jira.md -------------------------------------------------------------------------------- /docs/content/usage/opsgenie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/opsgenie.md -------------------------------------------------------------------------------- /docs/content/usage/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/requirements.md -------------------------------------------------------------------------------- /docs/content/usage/splunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/splunk.md -------------------------------------------------------------------------------- /docs/content/usage/sumologic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/content/usage/sumologic.md -------------------------------------------------------------------------------- /docs/data/menu/extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/data/menu/extra.yaml -------------------------------------------------------------------------------- /docs/data/menu/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/data/menu/main.yaml -------------------------------------------------------------------------------- /docs/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/static/.DS_Store -------------------------------------------------------------------------------- /docs/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/static/logo.png -------------------------------------------------------------------------------- /docs/static/media/deploypatterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/static/media/deploypatterns.png -------------------------------------------------------------------------------- /docs/static/media/statemachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/static/media/statemachine.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/LICENSE -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/README.md -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/VERSION: -------------------------------------------------------------------------------- 1 | v1.2.1 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/archetypes/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/archetypes/docs.md -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/archetypes/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/archetypes/posts.md -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/assets/search/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/assets/search/config.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/assets/search/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/assets/search/data.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/assets/sprites/geekdoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/assets/sprites/geekdoc.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/data/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/data/assets.json -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/eslint.config.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/am.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/am.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/cs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/cs.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/de.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/en.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/es.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/fr.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/it.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/ja.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/nl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/nl.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/oc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/oc.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/i18n/zh-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/i18n/zh-cn.yaml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/images/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/images/readme.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/images/screenshot.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/images/tn.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/404.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-codeblock-mermaid.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/_default/terms.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/foot.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/custom.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/favicons.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/meta.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/microformats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/microformats.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/others.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/head/rel-me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/head/rel-me.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/language.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-bundle-np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-bundle-np.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-bundle.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-extra.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-filetree-np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-filetree-np.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu-filetree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu-filetree.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/menu.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/microformats/opengraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/microformats/opengraph.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/microformats/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/microformats/schema.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/microformats/twitter_cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/microformats/twitter_cards.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/page-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/page-header.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/page-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/page-metadata.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/pagination.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/posts/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/posts/metadata.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/search.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/site-footer.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/site-header.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/content.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/description.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/featured.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/featured.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/partials/utils/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/partials/utils/title.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/posts/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/posts/list.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/posts/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/posts/single.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/robots.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/avatar.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/button.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/columns.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/expand.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/hint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/hint.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/icon.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/img.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/include.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/katex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/katex.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/progress.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/propertylist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/propertylist.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/tabs.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/toc-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/toc-tree.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/layouts/shortcodes/toc.html -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/brand.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/custom.css: -------------------------------------------------------------------------------- 1 | /* You can add custom styles here. */ 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-256x256.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-36x36.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-384x384.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-48x48.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-72x72.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/android-chrome-96x96.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-1024x1024.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-167x167.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1125x2436.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1136x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1136x640.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1170x2532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1170x2532.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1179x2556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1179x2556.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2208.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2688.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1284x2778.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1284x2778.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1290x2796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1290x2796.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1334x750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1334x750.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1488x2266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1488x2266.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1536x2048.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1620x2160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1620x2160.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1640x2160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1640x2160.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2224.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2388.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1792x828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1792x828.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x1536.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x2732.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1620.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1640.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2208x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2208x1242.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2224x1668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2224x1668.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2266x1488.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2266x1488.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2388x1668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2388x1668.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2436x1125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2436x1125.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2532x1170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2532x1170.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2556x1179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2556x1179.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2688x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2688x1242.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2732x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2732x2048.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2778x1284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2778x1284.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2796x1290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2796x1290.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-640x1136.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-750x1334.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-828x1792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-828x1792.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/browserconfig.xml -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon.ico -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/favicon.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/manifest.webmanifest -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/img/geekdoc-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/img/geekdoc-stack.svg -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/130-395cb664.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/130-395cb664.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/155-155e0581.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/155-155e0581.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/164-c7b61128.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/164-c7b61128.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/165-4df74207.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/165-4df74207.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/165-4df74207.chunk.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/165-4df74207.chunk.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/174-5ff0286f.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/174-5ff0286f.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/178-3e4e928c.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/178-3e4e928c.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/186-df634c5c.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/186-df634c5c.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/247-34fff2e1.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/247-34fff2e1.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/32-f6b664cc.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/32-f6b664cc.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/357-2a926bc9.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/357-2a926bc9.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/364-fd5df3dd.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/364-fd5df3dd.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/379-233b54d3.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/379-233b54d3.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/387-3546ecdc.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/387-3546ecdc.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/445-99c1ba44.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/445-99c1ba44.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/449-121db0c2.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/449-121db0c2.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/452-e65d6d68.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/452-e65d6d68.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/484-77a146f6.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/484-77a146f6.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/496-1979476f.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/496-1979476f.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/525-abc802a0.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/525-abc802a0.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/567-4fef9a1a.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/567-4fef9a1a.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/573-5fb26808.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/573-5fb26808.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/606-72346440.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/606-72346440.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/664-723fc55c.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/664-723fc55c.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/689-3cbd5ea9.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/689-3cbd5ea9.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/711-c5eeef68.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/711-c5eeef68.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/720-970f726e.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/720-970f726e.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/723-47eb515a.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/723-47eb515a.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/731-70ea2831.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/731-70ea2831.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/763-66119f34.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/763-66119f34.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/790-2b300153.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/790-2b300153.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/802-4ae1987e.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/802-4ae1987e.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/840-6b7093bb.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/840-6b7093bb.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/875-6da97aae.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/875-6da97aae.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/890-c9907c95.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/890-c9907c95.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/921-8d080722.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/921-8d080722.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/998-ac49fa4c.chunk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/998-ac49fa4c.chunk.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/colortheme-662de488.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/colortheme-662de488.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/katex-81adfa46.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/katex-81adfa46.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/main-2e274343.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/main-2e274343.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/main-2e274343.bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/main-2e274343.bundle.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/mermaid-16393d09.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/mermaid-16393d09.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/mermaid-16393d09.bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/mermaid-16393d09.bundle.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/search-d0afef64.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/search-d0afef64.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/js/search-d0afef64.bundle.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/js/search-d0afef64.bundle.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/katex-59efccf3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/katex-59efccf3.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/main-4434ec39.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/main-4434ec39.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/mobile-79ddc617.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/mobile-79ddc617.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/static/print-735ccc12.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/static/print-735ccc12.min.css -------------------------------------------------------------------------------- /docs/themes/hugo-geekdoc/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/docs/themes/hugo-geekdoc/theme.toml -------------------------------------------------------------------------------- /event/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/alert.json -------------------------------------------------------------------------------- /event/domain-alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/domain-alert.json -------------------------------------------------------------------------------- /event/ip-alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/ip-alert.json -------------------------------------------------------------------------------- /event/multiple-alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/multiple-alert.json -------------------------------------------------------------------------------- /event/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/output.json -------------------------------------------------------------------------------- /event/post_from_sumo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/post_from_sumo.json -------------------------------------------------------------------------------- /event/sns_from_opsgenie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/sns_from_opsgenie.json -------------------------------------------------------------------------------- /event/sns_from_splunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/sns_from_splunk.json -------------------------------------------------------------------------------- /event/url-alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/event/url-alert.json -------------------------------------------------------------------------------- /function/alienvaultotx/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/alienvaultotx/go.mod -------------------------------------------------------------------------------- /function/alienvaultotx/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/alienvaultotx/go.sum -------------------------------------------------------------------------------- /function/alienvaultotx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/alienvaultotx/main.go -------------------------------------------------------------------------------- /function/alienvaultotx/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/alienvaultotx/main_test.go -------------------------------------------------------------------------------- /function/crowdstrikefalcon/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/crowdstrikefalcon/go.mod -------------------------------------------------------------------------------- /function/crowdstrikefalcon/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/crowdstrikefalcon/go.sum -------------------------------------------------------------------------------- /function/crowdstrikefalcon/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/crowdstrikefalcon/main.go -------------------------------------------------------------------------------- /function/crowdstrikefalcon/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/crowdstrikefalcon/main_test.go -------------------------------------------------------------------------------- /function/exonerator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/exonerator/go.mod -------------------------------------------------------------------------------- /function/exonerator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/exonerator/go.sum -------------------------------------------------------------------------------- /function/exonerator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/exonerator/main.go -------------------------------------------------------------------------------- /function/exonerator/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/exonerator/main_test.go -------------------------------------------------------------------------------- /function/greynoise/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/greynoise/go.mod -------------------------------------------------------------------------------- /function/greynoise/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/greynoise/go.sum -------------------------------------------------------------------------------- /function/greynoise/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/greynoise/main.go -------------------------------------------------------------------------------- /function/greynoise/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/greynoise/main_test.go -------------------------------------------------------------------------------- /function/ipapi/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/ipapi/go.mod -------------------------------------------------------------------------------- /function/ipapi/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/ipapi/go.sum -------------------------------------------------------------------------------- /function/ipapi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/ipapi/main.go -------------------------------------------------------------------------------- /function/ipapi/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/function/ipapi/main_test.go -------------------------------------------------------------------------------- /output/jira/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/jira/go.mod -------------------------------------------------------------------------------- /output/jira/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/jira/go.sum -------------------------------------------------------------------------------- /output/jira/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/jira/main.go -------------------------------------------------------------------------------- /output/jira/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/jira/main_test.go -------------------------------------------------------------------------------- /output/opsgenie/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/opsgenie/go.mod -------------------------------------------------------------------------------- /output/opsgenie/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/opsgenie/go.sum -------------------------------------------------------------------------------- /output/opsgenie/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/opsgenie/main.go -------------------------------------------------------------------------------- /output/opsgenie/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/output/opsgenie/main_test.go -------------------------------------------------------------------------------- /pkg/squyre/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LICENSE -------------------------------------------------------------------------------- /pkg/squyre/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/pkg/squyre/go.mod -------------------------------------------------------------------------------- /pkg/squyre/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/pkg/squyre/go.sum -------------------------------------------------------------------------------- /pkg/squyre/managesecrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/pkg/squyre/managesecrets.go -------------------------------------------------------------------------------- /pkg/squyre/managesecrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/pkg/squyre/managesecrets_test.go -------------------------------------------------------------------------------- /pkg/squyre/squyre.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/pkg/squyre/squyre.go -------------------------------------------------------------------------------- /pkg/squyre/squyre_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/pkg/squyre/squyre_test.go -------------------------------------------------------------------------------- /scripts/bootstrap/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/scripts/bootstrap/go.mod -------------------------------------------------------------------------------- /scripts/bootstrap/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/scripts/bootstrap/go.sum -------------------------------------------------------------------------------- /scripts/bootstrap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/scripts/bootstrap/main.go -------------------------------------------------------------------------------- /scripts/bootstrap/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/scripts/bootstrap/main_test.go -------------------------------------------------------------------------------- /statemachine/enrich.asl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/statemachine/enrich.asl.json -------------------------------------------------------------------------------- /statemachine/templates/pass.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/statemachine/templates/pass.tmp -------------------------------------------------------------------------------- /statemachine/templates/task.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/statemachine/templates/task.tmp -------------------------------------------------------------------------------- /statemachine/templates/template.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/statemachine/templates/template.tmp -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/template.yaml -------------------------------------------------------------------------------- /template/opsgenie_sns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyrospectre/squyre/HEAD/template/opsgenie_sns.yaml --------------------------------------------------------------------------------