From 4e0708f6bc3b3fd871a2d61b3b68fd302956f485 Mon Sep 17 00:00:00 2001 From: vemv Date: Tue, 7 Nov 2023 20:15:10 +0100 Subject: [PATCH] Update site docs --- docs/cider-nrepl/usage.html | 16 +- docs/cider/basics/middleware_setup.html | 12 +- docs/cider/basics/up_and_running.html | 4 +- docs/cider/cljs/shadow-cljs.html | 2 +- docs/cider/cljs/up_and_running.html | 2 +- docs/sitemap-cider-nrepl.xml | 120 +-- docs/sitemap-cider.xml | 1310 +++++++++++------------ 7 files changed, 733 insertions(+), 733 deletions(-) diff --git a/docs/cider-nrepl/usage.html b/docs/cider-nrepl/usage.html index 967aead7..c7cc962b 100644 --- a/docs/cider-nrepl/usage.html +++ b/docs/cider-nrepl/usage.html @@ -238,7 +238,7 @@

Via Leiningen
-
:plugins [[cider/cider-nrepl "0.43.0"]]
+
:plugins [[cider/cider-nrepl "0.43.1"]]
@@ -246,7 +246,7 @@

Via Leiningen

-
{:user {:plugins [[cider/cider-nrepl "0.43.0"]]}}
+
{:user {:plugins [[cider/cider-nrepl "0.43.1"]]}}
@@ -256,7 +256,7 @@

Via Leiningen

-
:dependencies [[cider/cider-nrepl "0.43.0"]]
+
:dependencies [[cider/cider-nrepl "0.43.1"]]
 :repl-options {:nrepl-middleware
                  [cider.nrepl/wrap-apropos
                   cider.nrepl/wrap-classpath
@@ -292,7 +292,7 @@ 

Via Boot

-
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.43.0 -i "(require 'cider.tasks)" cider.tasks/add-middleware -m cider.nrepl.middleware.apropos/wrap-apropos -m cider.nrepl.middleware.version/wrap-version repl --server wait
+
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.43.1 -i "(require 'cider.tasks)" cider.tasks/add-middleware -m cider.nrepl.middleware.apropos/wrap-apropos -m cider.nrepl.middleware.version/wrap-version repl --server wait
@@ -301,7 +301,7 @@

Via Boot

(set-env! :dependencies '[[nrepl "1.0.0"]
-                          [cider/cider-nrepl "0.43.0"]])
+                          [cider/cider-nrepl "0.43.1"]])
 
 (require '[cider.tasks :refer [add-middleware]])
 
@@ -342,7 +342,7 @@ 

Via clj

-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.43.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.43.1"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
@@ -353,12 +353,12 @@

Via clj

{...
  :aliases
  {:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
-                           cider/cider-nrepl {:mvn/version "0.43.0"}}
+                           cider/cider-nrepl {:mvn/version "0.43.1"}}
               :main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
 
   :cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
                             org.clojure/clojurescript {:mvn/version "1.10.339"}
-                            cider/cider-nrepl {:mvn/version "0.43.0"}
+                            cider/cider-nrepl {:mvn/version "0.43.1"}
                             cider/piggieback {:mvn/version "0.5.2"}}
                :main-opts ["-m" "nrepl.cmdline" "--middleware"
                            "[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}
diff --git a/docs/cider/basics/middleware_setup.html b/docs/cider/basics/middleware_setup.html index 9c495fe4..b487135e 100644 --- a/docs/cider/basics/middleware_setup.html +++ b/docs/cider/basics/middleware_setup.html @@ -481,7 +481,7 @@

Using Lei

-
:plugins [[cider/cider-nrepl "0.43.0"]]
+
:plugins [[cider/cider-nrepl "0.43.1"]]
@@ -489,7 +489,7 @@

Using Lei

-
{:repl {:plugins [[cider/cider-nrepl "0.43.0"]]}}
+
{:repl {:plugins [[cider/cider-nrepl "0.43.1"]]}}
@@ -531,7 +531,7 @@

Using Boot

(require 'boot.repl)
 
 (swap! boot.repl/*default-dependencies*
-       concat '[[cider/cider-nrepl "0.43.0"]])
+       concat '[[cider/cider-nrepl "0.43.1"]])
 
 (swap! boot.repl/*default-middleware*
        conj 'cider.nrepl/cider-middleware)
@@ -551,11 +551,11 @@

Using t

-
  :cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.43.0"}}
+
  :cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.43.1"}}
               :main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
 
   :cider-cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.339"}
-                            cider/cider-nrepl {:mvn/version "0.43.0"}
+                            cider/cider-nrepl {:mvn/version "0.43.1"}
                             cider/piggieback {:mvn/version "0.5.3"}}
                :main-opts ["-m" "nrepl.cmdline" "--middleware"
                            "[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}
@@ -595,7 +595,7 @@

Using Gradle
dependencies {
   devImplementation 'nrepl:nrepl:0.9.0'
-  devImplementation 'cider:cider-nrepl:0.43.0'
+  devImplementation 'cider:cider-nrepl:0.43.1'
 }
 
 tasks.named('clojureRepl') {
diff --git a/docs/cider/basics/up_and_running.html b/docs/cider/basics/up_and_running.html
index 75b3dcff..354f4e8e 100644
--- a/docs/cider/basics/up_and_running.html
+++ b/docs/cider/basics/up_and_running.html
@@ -543,7 +543,7 @@ 

-
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.43.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.43.1"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'

diff --git a/docs/cider/cljs/shadow-cljs.html b/docs/cider/cljs/shadow-cljs.html index 1c643929..7bac78bc 100644 --- a/docs/cider/cljs/shadow-cljs.html +++ b/docs/cider/cljs/shadow-cljs.html @@ -525,7 +525,7 @@

-
 :dependencies [[cider/cider-nrepl "0.43.0"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
+
 :dependencies [[cider/cider-nrepl "0.43.1"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
                 [refactor-nrepl/refactor-nrepl "3.9.0"]] ;; refactor-nrepl is optional
 
  :nrepl {:middleware [cider.nrepl/cider-middleware ;; it's advisable to explicitly add this middleware. It's automatically added by shadow-cljs (if available in the classpath), unless `:nrepl {:cider false}`
diff --git a/docs/cider/cljs/up_and_running.html b/docs/cider/cljs/up_and_running.html
index 7be56db4..00323df2 100644
--- a/docs/cider/cljs/up_and_running.html
+++ b/docs/cider/cljs/up_and_running.html
@@ -482,7 +482,7 @@ 

dependencies {
   devImplementation 'nrepl:nrepl:0.9.0'
-  devImplementation 'cider:cider-nrepl:0.43.0'
+  devImplementation 'cider:cider-nrepl:0.43.1'
   devImplementation 'cider:cider-piggieback:0.5.3'
 }
 
diff --git a/docs/sitemap-cider-nrepl.xml b/docs/sitemap-cider-nrepl.xml
index ba35bb85..131c857f 100644
--- a/docs/sitemap-cider-nrepl.xml
+++ b/docs/sitemap-cider-nrepl.xml
@@ -2,242 +2,242 @@
 
 
 https://docs.cider.mx/cider-nrepl/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/internals.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/nrepl-api/ops.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/nrepl-api/supplied_middleware.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/internals.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/nrepl-api/ops.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/nrepl-api/supplied_middleware.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.43/usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/internals.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/nrepl-api/ops.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/nrepl-api/supplied_middleware.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.26/usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/internals.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/nrepl-api/ops.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/nrepl-api/supplied_middleware.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.25/usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/internals.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/nrepl-api/ops.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/nrepl-api/supplied_middleware.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider-nrepl/0.24/usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
diff --git a/docs/sitemap-cider.xml b/docs/sitemap-cider.xml
index 0bf5db7b..a1db5ce3 100644
--- a/docs/sitemap-cider.xml
+++ b/docs/sitemap-cider.xml
@@ -2,2622 +2,2622 @@
 
 
 https://docs.cider.mx/cider/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/logging.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/platforms/clojureclr.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/platforms/nbb.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/platforms/other_platforms.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/logging.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/platforms/clojureclr.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/platforms/nbb.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/platforms/other_platforms.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.9/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/logging.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/platforms/clojureclr.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/platforms/nbb.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/platforms/other_platforms.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.8/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/platforms/clojureclr.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/platforms/nbb.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/platforms/other_platforms.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.7/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/platforms/nbb.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/platforms/other_platforms.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.6/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.5/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.4/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.3/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.2/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.1/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/changelog.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/compatibility.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/license.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/logo.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/release_policy.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/support.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/about/team.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/additional_packages.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/additional_resources.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/basics/installation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/basics/middleware_setup.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/basics/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/caveats.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/figwheel.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/krell.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/other_repls.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/shadow-cljs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/cljs/up_and_running.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/config/basic_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/config/eldoc.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/config/indentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/config/project_config.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/config/syntax_highlighting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/contributing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/contributing/docs.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/contributing/funding.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/contributing/hacking.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/debugging/debugger.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/debugging/enlighten.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/debugging/inspector.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/debugging/macroexpansion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/debugging/profiling.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/debugging/tracing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/faq.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/indent_spec.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/index.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/platforms/babashka.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/platforms/overview.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/repl/basic_usage.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/repl/configuration.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/repl/history.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/repl/keybindings.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/testing/running_tests.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/testing/supported_libraries.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/testing/test_reports.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/troubleshooting.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/cider_mode.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/code_completion.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/code_evaluation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/dealing_with_errors.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/interactive_programming.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/managing_connections.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/misc_features.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/pretty_printing.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z
 
 
 https://docs.cider.mx/cider/1.0/usage/working_with_documentation.html
-2023-11-04T21:06:12.835Z
+2023-11-07T19:15:09.051Z