From ef778d8687a958aeea1817ce16bbe3deb6d10a3e Mon Sep 17 00:00:00 2001 From: "Documenter.jl" Date: Tue, 3 Sep 2024 16:46:45 +0000 Subject: [PATCH] build based on bc086e5 --- previews/PR873/.documenter-siteinfo.json | 1 + previews/PR873/api/index.html | 40 + previews/PR873/assets/documenter.js | 1064 +++++++++++++++++ previews/PR873/assets/logo.png | Bin 0 -> 246623 bytes previews/PR873/assets/style.css | 20 + .../PR873/assets/themes/catppuccin-frappe.css | 1 + .../PR873/assets/themes/catppuccin-latte.css | 1 + .../assets/themes/catppuccin-macchiato.css | 1 + .../PR873/assets/themes/catppuccin-mocha.css | 1 + .../PR873/assets/themes/documenter-dark.css | 7 + .../PR873/assets/themes/documenter-light.css | 9 + previews/PR873/assets/themeswap.js | 84 ++ previews/PR873/assets/warner.js | 52 + previews/PR873/block_krylov/index.html | 22 + previews/PR873/block_processes/index.html | 102 ++ previews/PR873/callbacks/index.html | 53 + previews/PR873/examples/bicgstab/index.html | 54 + .../PR873/examples/block_gmres/index.html | 28 + previews/PR873/examples/car/index.html | 28 + previews/PR873/examples/cg/index.html | 28 + .../examples/cg_lanczos_shift/index.html | 39 + previews/PR873/examples/cgls/index.html | 34 + previews/PR873/examples/cgne/index.html | 33 + previews/PR873/examples/craig/index.html | 43 + previews/PR873/examples/craigmr/index.html | 35 + previews/PR873/examples/crls/index.html | 34 + previews/PR873/examples/crmr/index.html | 35 + previews/PR873/examples/dqgmres/index.html | 54 + previews/PR873/examples/lsmr/index.html | 38 + previews/PR873/examples/lsqr/index.html | 34 + previews/PR873/examples/minares/index.html | 28 + previews/PR873/examples/minres_qlp/index.html | 20 + previews/PR873/examples/symmlq/index.html | 20 + previews/PR873/examples/tricg/index.html | 84 ++ previews/PR873/examples/trimr/index.html | 68 ++ previews/PR873/factorization-free/index.html | 90 ++ previews/PR873/gpu/index.html | 183 +++ previews/PR873/graphics/arnoldi.png | Bin 0 -> 180677 bytes previews/PR873/graphics/block_arnoldi.png | Bin 0 -> 189043 bytes previews/PR873/graphics/block_golub_kahan.png | Bin 0 -> 218808 bytes .../graphics/block_hermitian_lanczos.png | Bin 0 -> 173311 bytes .../PR873/graphics/block_montoison_orban.png | Bin 0 -> 284447 bytes .../graphics/block_nonhermitian_lanczos.png | Bin 0 -> 228310 bytes .../graphics/block_saunders_simon_yip.png | Bin 0 -> 246402 bytes previews/PR873/graphics/golub_kahan.png | Bin 0 -> 200294 bytes previews/PR873/graphics/hermitian_lanczos.png | Bin 0 -> 162473 bytes previews/PR873/graphics/julia_vs_mkl.svg | 1 + previews/PR873/graphics/montoison_orban.png | Bin 0 -> 268356 bytes .../PR873/graphics/nonhermitian_lanczos.png | Bin 0 -> 214667 bytes .../PR873/graphics/saunders_simon_yip.png | Bin 0 -> 223991 bytes previews/PR873/index.html | 4 + previews/PR873/inplace/index.html | 68 ++ previews/PR873/objects.inv | Bin 0 -> 3423 bytes previews/PR873/preconditioners/index.html | 63 + previews/PR873/processes/index.html | 167 +++ previews/PR873/reference/index.html | 2 + previews/PR873/search_index.js | 3 + previews/PR873/siteinfo.js | 1 + previews/PR873/solvers/as/index.html | 14 + previews/PR873/solvers/gsp/index.html | 13 + previews/PR873/solvers/ln/index.html | 43 + previews/PR873/solvers/ls/index.html | 47 + previews/PR873/solvers/sid/index.html | 30 + previews/PR873/solvers/sp_sqd/index.html | 22 + previews/PR873/solvers/spd/index.html | 31 + previews/PR873/solvers/unsymmetric/index.html | 54 + previews/PR873/storage/index.html | 55 + previews/PR873/tips/index.html | 26 + previews/PR873/warm-start/index.html | 26 + 69 files changed, 3138 insertions(+) create mode 100644 previews/PR873/.documenter-siteinfo.json create mode 100644 previews/PR873/api/index.html create mode 100644 previews/PR873/assets/documenter.js create mode 100644 previews/PR873/assets/logo.png create mode 100644 previews/PR873/assets/style.css create mode 100644 previews/PR873/assets/themes/catppuccin-frappe.css create mode 100644 previews/PR873/assets/themes/catppuccin-latte.css create mode 100644 previews/PR873/assets/themes/catppuccin-macchiato.css create mode 100644 previews/PR873/assets/themes/catppuccin-mocha.css create mode 100644 previews/PR873/assets/themes/documenter-dark.css create mode 100644 previews/PR873/assets/themes/documenter-light.css create mode 100644 previews/PR873/assets/themeswap.js create mode 100644 previews/PR873/assets/warner.js create mode 100644 previews/PR873/block_krylov/index.html create mode 100644 previews/PR873/block_processes/index.html create mode 100644 previews/PR873/callbacks/index.html create mode 100644 previews/PR873/examples/bicgstab/index.html create mode 100644 previews/PR873/examples/block_gmres/index.html create mode 100644 previews/PR873/examples/car/index.html create mode 100644 previews/PR873/examples/cg/index.html create mode 100644 previews/PR873/examples/cg_lanczos_shift/index.html create mode 100644 previews/PR873/examples/cgls/index.html create mode 100644 previews/PR873/examples/cgne/index.html create mode 100644 previews/PR873/examples/craig/index.html create mode 100644 previews/PR873/examples/craigmr/index.html create mode 100644 previews/PR873/examples/crls/index.html create mode 100644 previews/PR873/examples/crmr/index.html create mode 100644 previews/PR873/examples/dqgmres/index.html create mode 100644 previews/PR873/examples/lsmr/index.html create mode 100644 previews/PR873/examples/lsqr/index.html create mode 100644 previews/PR873/examples/minares/index.html create mode 100644 previews/PR873/examples/minres_qlp/index.html create mode 100644 previews/PR873/examples/symmlq/index.html create mode 100644 previews/PR873/examples/tricg/index.html create mode 100644 previews/PR873/examples/trimr/index.html create mode 100644 previews/PR873/factorization-free/index.html create mode 100644 previews/PR873/gpu/index.html create mode 100644 previews/PR873/graphics/arnoldi.png create mode 100644 previews/PR873/graphics/block_arnoldi.png create mode 100644 previews/PR873/graphics/block_golub_kahan.png create mode 100644 previews/PR873/graphics/block_hermitian_lanczos.png create mode 100644 previews/PR873/graphics/block_montoison_orban.png create mode 100644 previews/PR873/graphics/block_nonhermitian_lanczos.png create mode 100644 previews/PR873/graphics/block_saunders_simon_yip.png create mode 100644 previews/PR873/graphics/golub_kahan.png create mode 100644 previews/PR873/graphics/hermitian_lanczos.png create mode 100644 previews/PR873/graphics/julia_vs_mkl.svg create mode 100644 previews/PR873/graphics/montoison_orban.png create mode 100644 previews/PR873/graphics/nonhermitian_lanczos.png create mode 100644 previews/PR873/graphics/saunders_simon_yip.png create mode 100644 previews/PR873/index.html create mode 100644 previews/PR873/inplace/index.html create mode 100644 previews/PR873/objects.inv create mode 100644 previews/PR873/preconditioners/index.html create mode 100644 previews/PR873/processes/index.html create mode 100644 previews/PR873/reference/index.html create mode 100644 previews/PR873/search_index.js create mode 100644 previews/PR873/siteinfo.js create mode 100644 previews/PR873/solvers/as/index.html create mode 100644 previews/PR873/solvers/gsp/index.html create mode 100644 previews/PR873/solvers/ln/index.html create mode 100644 previews/PR873/solvers/ls/index.html create mode 100644 previews/PR873/solvers/sid/index.html create mode 100644 previews/PR873/solvers/sp_sqd/index.html create mode 100644 previews/PR873/solvers/spd/index.html create mode 100644 previews/PR873/solvers/unsymmetric/index.html create mode 100644 previews/PR873/storage/index.html create mode 100644 previews/PR873/tips/index.html create mode 100644 previews/PR873/warm-start/index.html diff --git a/previews/PR873/.documenter-siteinfo.json b/previews/PR873/.documenter-siteinfo.json new file mode 100644 index 000000000..ad96f0e62 --- /dev/null +++ b/previews/PR873/.documenter-siteinfo.json @@ -0,0 +1 @@ +{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-09-03T16:46:39","documenter_version":"1.6.0"}} \ No newline at end of file diff --git a/previews/PR873/api/index.html b/previews/PR873/api/index.html new file mode 100644 index 000000000..3fdd0ecf4 --- /dev/null +++ b/previews/PR873/api/index.html @@ -0,0 +1,40 @@ + +API · Krylov.jl

Stats Types

Krylov.SimpleStatsType

Type for statistics returned by the majority of Krylov solvers, the attributes are:

  • niter
  • solved
  • inconsistent
  • residuals
  • Aresiduals
  • Acond
  • timer
  • status
source
Krylov.LanczosStatsType

Type for statistics returned by CG-LANCZOS, the attributes are:

  • niter
  • solved
  • residuals
  • indefinite
  • Anorm
  • Acond
  • timer
  • status
source
Krylov.LanczosShiftStatsType

Type for statistics returned by CG-LANCZOS with shifts, the attributes are:

  • niter
  • solved
  • residuals
  • indefinite
  • Anorm
  • Acond
  • timer
  • status
source
Krylov.SymmlqStatsType

Type for statistics returned by SYMMLQ, the attributes are:

  • niter
  • solved
  • residuals
  • residualscg
  • errors
  • errorscg
  • Anorm
  • Acond
  • timer
  • status
source
Krylov.AdjointStatsType

Type for statistics returned by adjoint systems solvers BiLQR and TriLQR, the attributes are:

  • niter
  • solved_primal
  • solved_dual
  • residuals_primal
  • residuals_dual
  • timer
  • status
source
Krylov.LNLQStatsType

Type for statistics returned by the LNLQ method, the attributes are:

  • niter
  • solved
  • residuals
  • errorwithbnd
  • errorbndx
  • errorbndy
  • timer
  • status
source
Krylov.LSLQStatsType

Type for statistics returned by the LSLQ method, the attributes are:

  • niter
  • solved
  • inconsistent
  • residuals
  • Aresiduals
  • err_lbnds
  • errorwithbnd
  • errubndslq
  • errubndscg
  • timer
  • status
source
Krylov.LsmrStatsType

Type for statistics returned by LSMR. The attributes are:

  • niter
  • solved
  • inconsistent
  • residuals
  • Aresiduals
  • Acond
  • Anorm
  • xNorm
  • timer
  • status
source

Solver Types

Krylov.MinresSolverType

Type for storing the vectors required by the in-place version of MINRES.

The outer constructors

solver = MinresSolver(m, n, S; window :: Int=5)
+solver = MinresSolver(A, b; window :: Int=5)

may be used in order to create these vectors.

source
Krylov.MinaresSolverType

Type for storing the vectors required by the in-place version of MINARES.

The outer constructors

solver = MinaresSolver(m, n, S)
+solver = MinaresSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CgSolverType

Type for storing the vectors required by the in-place version of CG.

The outer constructors

solver = CgSolver(m, n, S)
+solver = CgSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CrSolverType

Type for storing the vectors required by the in-place version of CR.

The outer constructors

solver = CrSolver(m, n, S)
+solver = CrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CarSolverType

Type for storing the vectors required by the in-place version of CAR.

The outer constructors

solver = CarSolver(m, n, S)
+solver = CarSolver(A, b)

may be used in order to create these vectors.

source
Krylov.SymmlqSolverType

Type for storing the vectors required by the in-place version of SYMMLQ.

The outer constructors

solver = SymmlqSolver(m, n, S)
+solver = SymmlqSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CgLanczosSolverType

Type for storing the vectors required by the in-place version of CG-LANCZOS.

The outer constructors

solver = CgLanczosSolver(m, n, S)
+solver = CgLanczosSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CgLanczosShiftSolverType

Type for storing the vectors required by the in-place version of CG-LANCZOS-SHIFT.

The outer constructors

solver = CgLanczosShiftSolver(m, n, nshifts, S)
+solver = CgLanczosShiftSolver(A, b, nshifts)

may be used in order to create these vectors.

source
Krylov.MinresQlpSolverType

Type for storing the vectors required by the in-place version of MINRES-QLP.

The outer constructors

solver = MinresQlpSolver(m, n, S)
+solver = MinresQlpSolver(A, b)

may be used in order to create these vectors.

source
Krylov.DiomSolverType

Type for storing the vectors required by the in-place version of DIOM.

The outer constructors

solver = DiomSolver(m, n, memory, S)
+solver = DiomSolver(A, b, memory = 20)

may be used in order to create these vectors. memory is set to n if the value given is larger than n.

source
Krylov.FomSolverType

Type for storing the vectors required by the in-place version of FOM.

The outer constructors

solver = FomSolver(m, n, memory, S)
+solver = FomSolver(A, b, memory = 20)

may be used in order to create these vectors. memory is set to n if the value given is larger than n.

source
Krylov.DqgmresSolverType

Type for storing the vectors required by the in-place version of DQGMRES.

The outer constructors

solver = DqgmresSolver(m, n, memory, S)
+solver = DqgmresSolver(A, b, memory = 20)

may be used in order to create these vectors. memory is set to n if the value given is larger than n.

source
Krylov.GmresSolverType

Type for storing the vectors required by the in-place version of GMRES.

The outer constructors

solver = GmresSolver(m, n, memory, S)
+solver = GmresSolver(A, b, memory = 20)

may be used in order to create these vectors. memory is set to n if the value given is larger than n.

source
Krylov.UsymlqSolverType

Type for storing the vectors required by the in-place version of USYMLQ.

The outer constructors

solver = UsymlqSolver(m, n, S)
+solver = UsymlqSolver(A, b)

may be used in order to create these vectors.

source
Krylov.UsymqrSolverType

Type for storing the vectors required by the in-place version of USYMQR.

The outer constructors

solver = UsymqrSolver(m, n, S)
+solver = UsymqrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.TricgSolverType

Type for storing the vectors required by the in-place version of TRICG.

The outer constructors

solver = TricgSolver(m, n, S)
+solver = TricgSolver(A, b)

may be used in order to create these vectors.

source
Krylov.TrimrSolverType

Type for storing the vectors required by the in-place version of TRIMR.

The outer constructors

solver = TrimrSolver(m, n, S)
+solver = TrimrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.TrilqrSolverType

Type for storing the vectors required by the in-place version of TRILQR.

The outer constructors

solver = TrilqrSolver(m, n, S)
+solver = TrilqrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CgsSolverType

Type for storing the vectors required by the in-place version of CGS.

The outer constructorss

solver = CgsSolver(m, n, S)
+solver = CgsSolver(A, b)

may be used in order to create these vectors.

source
Krylov.BicgstabSolverType

Type for storing the vectors required by the in-place version of BICGSTAB.

The outer constructors

solver = BicgstabSolver(m, n, S)
+solver = BicgstabSolver(A, b)

may be used in order to create these vectors.

source
Krylov.BilqSolverType

Type for storing the vectors required by the in-place version of BILQ.

The outer constructors

solver = BilqSolver(m, n, S)
+solver = BilqSolver(A, b)

may be used in order to create these vectors.

source
Krylov.QmrSolverType

Type for storing the vectors required by the in-place version of QMR.

The outer constructors

solver = QmrSolver(m, n, S)
+solver = QmrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.BilqrSolverType

Type for storing the vectors required by the in-place version of BILQR.

The outer constructors

solver = BilqrSolver(m, n, S)
+solver = BilqrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CglsSolverType

Type for storing the vectors required by the in-place version of CGLS.

The outer constructors

solver = CglsSolver(m, n, S)
+solver = CglsSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CrlsSolverType

Type for storing the vectors required by the in-place version of CRLS.

The outer constructors

solver = CrlsSolver(m, n, S)
+solver = CrlsSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CgneSolverType

Type for storing the vectors required by the in-place version of CGNE.

The outer constructors

solver = CgneSolver(m, n, S)
+solver = CgneSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CrmrSolverType

Type for storing the vectors required by the in-place version of CRMR.

The outer constructors

solver = CrmrSolver(m, n, S)
+solver = CrmrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.LslqSolverType

Type for storing the vectors required by the in-place version of LSLQ.

The outer constructors

solver = LslqSolver(m, n, S)
+solver = LslqSolver(A, b)

may be used in order to create these vectors.

source
Krylov.LsqrSolverType

Type for storing the vectors required by the in-place version of LSQR.

The outer constructors

solver = LsqrSolver(m, n, S)
+solver = LsqrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.LsmrSolverType

Type for storing the vectors required by the in-place version of LSMR.

The outer constructors

solver = LsmrSolver(m, n, S)
+solver = LsmrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.LnlqSolverType

Type for storing the vectors required by the in-place version of LNLQ.

The outer constructors

solver = LnlqSolver(m, n, S)
+solver = LnlqSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CraigSolverType

Type for storing the vectors required by the in-place version of CRAIG.

The outer constructors

solver = CraigSolver(m, n, S)
+solver = CraigSolver(A, b)

may be used in order to create these vectors.

source
Krylov.CraigmrSolverType

Type for storing the vectors required by the in-place version of CRAIGMR.

The outer constructors

solver = CraigmrSolver(m, n, S)
+solver = CraigmrSolver(A, b)

may be used in order to create these vectors.

source
Krylov.GpmrSolverType

Type for storing the vectors required by the in-place version of GPMR.

The outer constructors

solver = GpmrSolver(m, n, memory, S)
+solver = GpmrSolver(A, b, memory = 20)

may be used in order to create these vectors. memory is set to n + m if the value given is larger than n + m.

source
Krylov.FgmresSolverType

Type for storing the vectors required by the in-place version of FGMRES.

The outer constructors

solver = FgmresSolver(m, n, memory, S)
+solver = FgmresSolver(A, b, memory = 20)

may be used in order to create these vectors. memory is set to n if the value given is larger than n.

source
Krylov.BlockGmresSolverType

Type for storing the vectors required by the in-place version of BLOCK-GMRES.

The outer constructors

solver = BlockGmresSolver(m, n, p, memory, SV, SM)
+solver = BlockGmresSolver(A, B; memory=5)

may be used in order to create these vectors. memory is set to div(n,p) if the value given is larger than div(n,p).

source

Utilities

Krylov.roots_quadraticFunction
roots = roots_quadratic(q₂, q₁, q₀; nitref)

Find the real roots of the quadratic

q(x) = q₂ x² + q₁ x + q₀,

where q₂, q₁ and q₀ are real. Care is taken to avoid numerical cancellation. Optionally, nitref steps of iterative refinement may be performed to improve accuracy. By default, nitref=1.

source
Krylov.sym_givensFunction
(c, s, ρ) = sym_givens(a, b)

Numerically stable symmetric Givens reflection. Given a and b reals, return (c, s, ρ) such that

[ c  s ] [ a ] = [ ρ ]
+[ s -c ] [ b ] = [ 0 ].
source

Numerically stable symmetric Givens reflection. Given a and b complexes, return (c, s, ρ) with c real and (s, ρ) complexes such that

[ c   s ] [ a ] = [ ρ ]
+[ s̅  -c ] [ b ] = [ 0 ].
source
Krylov.to_boundaryFunction
roots = to_boundary(n, x, d, radius; flip, xNorm2, dNorm2)

Given a trust-region radius radius, a vector x lying inside the trust-region and a direction d, return σ1 and σ2 such that

‖x + σi d‖ = radius, i = 1, 2

in the Euclidean norm. n is the length of vectors x and d. If known, ‖x‖² and ‖d‖² may be supplied with xNorm2 and dNorm2.

If flip is set to true, σ1 and σ2 are computed such that

‖x - σi d‖ = radius, i = 1, 2.
source
Krylov.vec2strFunction
s = vec2str(x; ndisp)

Display an array in the form

[ -3.0e-01 -5.1e-01  1.9e-01 ... -2.3e-01 -4.4e-01  2.4e-01 ]

with (ndisp - 1)/2 elements on each side.

source
Krylov.ktypeofFunction
S = ktypeof(v)

Return the most relevant storage type S based on the type of v.

source
Krylov.kzerosFunction
v = kzeros(S, n)

Create a vector of storage type S of length n only composed of zero.

source
Krylov.konesFunction
v = kones(S, n)

Create a vector of storage type S of length n only composed of one.

source
Krylov.vector_to_matrixFunction
M = vector_to_matrix(S)

Return the dense matrix storage type M related to the dense vector storage type S.

source
Krylov.matrix_to_vectorFunction
S = matrix_to_vector(M)

Return the dense vector storage type S related to the dense matrix storage type M.

source
diff --git a/previews/PR873/assets/documenter.js b/previews/PR873/assets/documenter.js new file mode 100644 index 000000000..82252a11d --- /dev/null +++ b/previews/PR873/assets/documenter.js @@ -0,0 +1,1064 @@ +// Generated by Documenter.jl +requirejs.config({ + paths: { + 'highlight-julia': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/julia.min', + 'headroom': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/headroom.min', + 'jqueryui': 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min', + 'katex-auto-render': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/contrib/auto-render.min', + 'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min', + 'headroom-jquery': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/jQuery.headroom.min', + 'katex': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/katex.min', + 'highlight': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min', + 'highlight-julia-repl': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/julia-repl.min', + }, + shim: { + "highlight-julia": { + "deps": [ + "highlight" + ] + }, + "katex-auto-render": { + "deps": [ + "katex" + ] + }, + "headroom-jquery": { + "deps": [ + "jquery", + "headroom" + ] + }, + "highlight-julia-repl": { + "deps": [ + "highlight" + ] + } +} +}); +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'katex', 'katex-auto-render'], function($, katex, renderMathInElement) { +$(document).ready(function() { + renderMathInElement( + document.body, + { + "delimiters": [ + { + "left": "$", + "right": "$", + "display": false + }, + { + "left": "$$", + "right": "$$", + "display": true + }, + { + "left": "\\[", + "right": "\\]", + "display": true + } + ] +} + + ); +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'highlight', 'highlight-julia', 'highlight-julia-repl'], function($) { +$(document).ready(function() { + hljs.highlightAll(); +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +let timer = 0; +var isExpanded = true; + +$(document).on( + "click", + ".docstring .docstring-article-toggle-button", + function () { + let articleToggleTitle = "Expand docstring"; + const parent = $(this).parent(); + + debounce(() => { + if (parent.siblings("section").is(":visible")) { + parent + .find("a.docstring-article-toggle-button") + .removeClass("fa-chevron-down") + .addClass("fa-chevron-right"); + } else { + parent + .find("a.docstring-article-toggle-button") + .removeClass("fa-chevron-right") + .addClass("fa-chevron-down"); + + articleToggleTitle = "Collapse docstring"; + } + + parent + .children(".docstring-article-toggle-button") + .prop("title", articleToggleTitle); + parent.siblings("section").slideToggle(); + }); + } +); + +$(document).on("click", ".docs-article-toggle-button", function (event) { + let articleToggleTitle = "Expand docstring"; + let navArticleToggleTitle = "Expand all docstrings"; + let animationSpeed = event.noToggleAnimation ? 0 : 400; + + debounce(() => { + if (isExpanded) { + $(this).removeClass("fa-chevron-up").addClass("fa-chevron-down"); + $("a.docstring-article-toggle-button") + .removeClass("fa-chevron-down") + .addClass("fa-chevron-right"); + + isExpanded = false; + + $(".docstring section").slideUp(animationSpeed); + } else { + $(this).removeClass("fa-chevron-down").addClass("fa-chevron-up"); + $("a.docstring-article-toggle-button") + .removeClass("fa-chevron-right") + .addClass("fa-chevron-down"); + + isExpanded = true; + articleToggleTitle = "Collapse docstring"; + navArticleToggleTitle = "Collapse all docstrings"; + + $(".docstring section").slideDown(animationSpeed); + } + + $(this).prop("title", navArticleToggleTitle); + $(".docstring-article-toggle-button").prop("title", articleToggleTitle); + }); +}); + +function debounce(callback, timeout = 300) { + if (Date.now() - timer > timeout) { + callback(); + } + + clearTimeout(timer); + + timer = Date.now(); +} + +}) +//////////////////////////////////////////////////////////////////////////////// +require([], function() { +function addCopyButtonCallbacks() { + for (const el of document.getElementsByTagName("pre")) { + const button = document.createElement("button"); + button.classList.add("copy-button", "fa-solid", "fa-copy"); + button.setAttribute("aria-label", "Copy this code block"); + button.setAttribute("title", "Copy"); + + el.appendChild(button); + + const success = function () { + button.classList.add("success", "fa-check"); + button.classList.remove("fa-copy"); + }; + + const failure = function () { + button.classList.add("error", "fa-xmark"); + button.classList.remove("fa-copy"); + }; + + button.addEventListener("click", function () { + copyToClipboard(el.innerText).then(success, failure); + + setTimeout(function () { + button.classList.add("fa-copy"); + button.classList.remove("success", "fa-check", "fa-xmark"); + }, 5000); + }); + } +} + +function copyToClipboard(text) { + // clipboard API is only available in secure contexts + if (window.navigator && window.navigator.clipboard) { + return window.navigator.clipboard.writeText(text); + } else { + return new Promise(function (resolve, reject) { + try { + const el = document.createElement("textarea"); + el.textContent = text; + el.style.position = "fixed"; + el.style.opacity = 0; + document.body.appendChild(el); + el.select(); + document.execCommand("copy"); + + resolve(); + } catch (err) { + reject(err); + } finally { + document.body.removeChild(el); + } + }); + } +} + +if (document.readyState === "loading") { + document.addEventListener("DOMContentLoaded", addCopyButtonCallbacks); +} else { + addCopyButtonCallbacks(); +} + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'headroom', 'headroom-jquery'], function($, Headroom) { + +// Manages the top navigation bar (hides it when the user starts scrolling down on the +// mobile). +window.Headroom = Headroom; // work around buggy module loading? +$(document).ready(function () { + $("#documenter .docs-navbar").headroom({ + tolerance: { up: 10, down: 10 }, + }); +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +$(document).ready(function () { + let meta = $("div[data-docstringscollapsed]").data(); + + if (meta?.docstringscollapsed) { + $("#documenter-article-toggle-button").trigger({ + type: "click", + noToggleAnimation: true, + }); + } +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +/* +To get an in-depth about the thought process you can refer: https://hetarth02.hashnode.dev/series/gsoc + +PSEUDOCODE: + +Searching happens automatically as the user types or adjusts the selected filters. +To preserve responsiveness, as much as possible of the slow parts of the search are done +in a web worker. Searching and result generation are done in the worker, and filtering and +DOM updates are done in the main thread. The filters are in the main thread as they should +be very quick to apply. This lets filters be changed without re-searching with minisearch +(which is possible even if filtering is on the worker thread) and also lets filters be +changed _while_ the worker is searching and without message passing (neither of which are +possible if filtering is on the worker thread) + +SEARCH WORKER: + +Import minisearch + +Build index + +On message from main thread + run search + find the first 200 unique results from each category, and compute their divs for display + note that this is necessary and sufficient information for the main thread to find the + first 200 unique results from any given filter set + post results to main thread + +MAIN: + +Launch worker + +Declare nonconstant globals (worker_is_running, last_search_text, unfiltered_results) + +On text update + if worker is not running, launch_search() + +launch_search + set worker_is_running to true, set last_search_text to the search text + post the search query to worker + +on message from worker + if last_search_text is not the same as the text in the search field, + the latest search result is not reflective of the latest search query, so update again + launch_search() + otherwise + set worker_is_running to false + + regardless, display the new search results to the user + save the unfiltered_results as a global + update_search() + +on filter click + adjust the filter selection + update_search() + +update_search + apply search filters by looping through the unfiltered_results and finding the first 200 + unique results that match the filters + + Update the DOM +*/ + +/////// SEARCH WORKER /////// + +function worker_function(documenterSearchIndex, documenterBaseURL, filters) { + importScripts( + "https://cdn.jsdelivr.net/npm/minisearch@6.1.0/dist/umd/index.min.js" + ); + + let data = documenterSearchIndex.map((x, key) => { + x["id"] = key; // minisearch requires a unique for each object + return x; + }); + + // list below is the lunr 2.1.3 list minus the intersect with names(Base) + // (all, any, get, in, is, only, which) and (do, else, for, let, where, while, with) + // ideally we'd just filter the original list but it's not available as a variable + const stopWords = new Set([ + "a", + "able", + "about", + "across", + "after", + "almost", + "also", + "am", + "among", + "an", + "and", + "are", + "as", + "at", + "be", + "because", + "been", + "but", + "by", + "can", + "cannot", + "could", + "dear", + "did", + "does", + "either", + "ever", + "every", + "from", + "got", + "had", + "has", + "have", + "he", + "her", + "hers", + "him", + "his", + "how", + "however", + "i", + "if", + "into", + "it", + "its", + "just", + "least", + "like", + "likely", + "may", + "me", + "might", + "most", + "must", + "my", + "neither", + "no", + "nor", + "not", + "of", + "off", + "often", + "on", + "or", + "other", + "our", + "own", + "rather", + "said", + "say", + "says", + "she", + "should", + "since", + "so", + "some", + "than", + "that", + "the", + "their", + "them", + "then", + "there", + "these", + "they", + "this", + "tis", + "to", + "too", + "twas", + "us", + "wants", + "was", + "we", + "were", + "what", + "when", + "who", + "whom", + "why", + "will", + "would", + "yet", + "you", + "your", + ]); + + let index = new MiniSearch({ + fields: ["title", "text"], // fields to index for full-text search + storeFields: ["location", "title", "text", "category", "page"], // fields to return with results + processTerm: (term) => { + let word = stopWords.has(term) ? null : term; + if (word) { + // custom trimmer that doesn't strip @ and !, which are used in julia macro and function names + word = word + .replace(/^[^a-zA-Z0-9@!]+/, "") + .replace(/[^a-zA-Z0-9@!]+$/, ""); + + word = word.toLowerCase(); + } + + return word ?? null; + }, + // add . as a separator, because otherwise "title": "Documenter.Anchors.add!", would not + // find anything if searching for "add!", only for the entire qualification + tokenize: (string) => string.split(/[\s\-\.]+/), + // options which will be applied during the search + searchOptions: { + prefix: true, + boost: { title: 100 }, + fuzzy: 2, + }, + }); + + index.addAll(data); + + /** + * Used to map characters to HTML entities. + * Refer: https://github.com/lodash/lodash/blob/main/src/escape.ts + */ + const htmlEscapes = { + "&": "&", + "<": "<", + ">": ">", + '"': """, + "'": "'", + }; + + /** + * Used to match HTML entities and HTML characters. + * Refer: https://github.com/lodash/lodash/blob/main/src/escape.ts + */ + const reUnescapedHtml = /[&<>"']/g; + const reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** + * Escape function from lodash + * Refer: https://github.com/lodash/lodash/blob/main/src/escape.ts + */ + function escape(string) { + return string && reHasUnescapedHtml.test(string) + ? string.replace(reUnescapedHtml, (chr) => htmlEscapes[chr]) + : string || ""; + } + + /** + * RegX escape function from MDN + * Refer: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping + */ + function escapeRegExp(string) { + return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string + } + + /** + * Make the result component given a minisearch result data object and the value + * of the search input as queryString. To view the result object structure, refer: + * https://lucaong.github.io/minisearch/modules/_minisearch_.html#searchresult + * + * @param {object} result + * @param {string} querystring + * @returns string + */ + function make_search_result(result, querystring) { + let search_divider = `
`; + let display_link = + result.location.slice(Math.max(0), Math.min(50, result.location.length)) + + (result.location.length > 30 ? "..." : ""); // To cut-off the link because it messes with the overflow of the whole div + + if (result.page !== "") { + display_link += ` (${result.page})`; + } + searchstring = escapeRegExp(querystring); + let textindex = new RegExp(`${searchstring}`, "i").exec(result.text); + let text = + textindex !== null + ? result.text.slice( + Math.max(textindex.index - 100, 0), + Math.min( + textindex.index + querystring.length + 100, + result.text.length + ) + ) + : ""; // cut-off text before and after from the match + + text = text.length ? escape(text) : ""; + + let display_result = text.length + ? "..." + + text.replace( + new RegExp(`${escape(searchstring)}`, "i"), // For first occurrence + '$&' + ) + + "..." + : ""; // highlights the match + + let in_code = false; + if (!["page", "section"].includes(result.category.toLowerCase())) { + in_code = true; + } + + // We encode the full url to escape some special characters which can lead to broken links + let result_div = ` + +
+
${escape(result.title)}
+
${result.category}
+
+

+ ${display_result} +

+
+ ${display_link} +
+
+ ${search_divider} + `; + + return result_div; + } + + self.onmessage = function (e) { + let query = e.data; + let results = index.search(query, { + filter: (result) => { + // Only return relevant results + return result.score >= 1; + }, + combineWith: "AND", + }); + + // Pre-filter to deduplicate and limit to 200 per category to the extent + // possible without knowing what the filters are. + let filtered_results = []; + let counts = {}; + for (let filter of filters) { + counts[filter] = 0; + } + let present = {}; + + for (let result of results) { + cat = result.category; + cnt = counts[cat]; + if (cnt < 200) { + id = cat + "---" + result.location; + if (present[id]) { + continue; + } + present[id] = true; + filtered_results.push({ + location: result.location, + category: cat, + div: make_search_result(result, query), + }); + } + } + + postMessage(filtered_results); + }; +} + +// `worker = Threads.@spawn worker_function(documenterSearchIndex)`, but in JavaScript! +const filters = [ + ...new Set(documenterSearchIndex["docs"].map((x) => x.category)), +]; +const worker_str = + "(" + + worker_function.toString() + + ")(" + + JSON.stringify(documenterSearchIndex["docs"]) + + "," + + JSON.stringify(documenterBaseURL) + + "," + + JSON.stringify(filters) + + ")"; +const worker_blob = new Blob([worker_str], { type: "text/javascript" }); +const worker = new Worker(URL.createObjectURL(worker_blob)); + +/////// SEARCH MAIN /////// + +// Whether the worker is currently handling a search. This is a boolean +// as the worker only ever handles 1 or 0 searches at a time. +var worker_is_running = false; + +// The last search text that was sent to the worker. This is used to determine +// if the worker should be launched again when it reports back results. +var last_search_text = ""; + +// The results of the last search. This, in combination with the state of the filters +// in the DOM, is used compute the results to display on calls to update_search. +var unfiltered_results = []; + +// Which filter is currently selected +var selected_filter = ""; + +$(document).on("input", ".documenter-search-input", function (event) { + if (!worker_is_running) { + launch_search(); + } +}); + +function launch_search() { + worker_is_running = true; + last_search_text = $(".documenter-search-input").val(); + worker.postMessage(last_search_text); +} + +worker.onmessage = function (e) { + if (last_search_text !== $(".documenter-search-input").val()) { + launch_search(); + } else { + worker_is_running = false; + } + + unfiltered_results = e.data; + update_search(); +}; + +$(document).on("click", ".search-filter", function () { + if ($(this).hasClass("search-filter-selected")) { + selected_filter = ""; + } else { + selected_filter = $(this).text().toLowerCase(); + } + + // This updates search results and toggles classes for UI: + update_search(); +}); + +/** + * Make/Update the search component + */ +function update_search() { + let querystring = $(".documenter-search-input").val(); + + if (querystring.trim()) { + if (selected_filter == "") { + results = unfiltered_results; + } else { + results = unfiltered_results.filter((result) => { + return selected_filter == result.category.toLowerCase(); + }); + } + + let search_result_container = ``; + let modal_filters = make_modal_body_filters(); + let search_divider = `
`; + + if (results.length) { + let links = []; + let count = 0; + let search_results = ""; + + for (var i = 0, n = results.length; i < n && count < 200; ++i) { + let result = results[i]; + if (result.location && !links.includes(result.location)) { + search_results += result.div; + count++; + links.push(result.location); + } + } + + if (count == 1) { + count_str = "1 result"; + } else if (count == 200) { + count_str = "200+ results"; + } else { + count_str = count + " results"; + } + let result_count = `
${count_str}
`; + + search_result_container = ` +
+ ${modal_filters} + ${search_divider} + ${result_count} +
+ ${search_results} +
+
+ `; + } else { + search_result_container = ` +
+ ${modal_filters} + ${search_divider} +
0 result(s)
+
+
No result found!
+ `; + } + + if ($(".search-modal-card-body").hasClass("is-justify-content-center")) { + $(".search-modal-card-body").removeClass("is-justify-content-center"); + } + + $(".search-modal-card-body").html(search_result_container); + } else { + if (!$(".search-modal-card-body").hasClass("is-justify-content-center")) { + $(".search-modal-card-body").addClass("is-justify-content-center"); + } + + $(".search-modal-card-body").html(` +
Type something to get started!
+ `); + } +} + +/** + * Make the modal filter html + * + * @returns string + */ +function make_modal_body_filters() { + let str = filters + .map((val) => { + if (selected_filter == val.toLowerCase()) { + return `${val}`; + } else { + return `${val}`; + } + }) + .join(""); + + return ` +
+ Filters: + ${str} +
`; +} + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// Modal settings dialog +$(document).ready(function () { + var settings = $("#documenter-settings"); + $("#documenter-settings-button").click(function () { + settings.toggleClass("is-active"); + }); + // Close the dialog if X is clicked + $("#documenter-settings button.delete").click(function () { + settings.removeClass("is-active"); + }); + // Close dialog if ESC is pressed + $(document).keyup(function (e) { + if (e.keyCode == 27) settings.removeClass("is-active"); + }); +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +$(document).ready(function () { + let search_modal_header = ` + + `; + + let initial_search_body = ` +
Type something to get started!
+ `; + + let search_modal_footer = ` + + `; + + $(document.body).append( + ` + + ` + ); + + document.querySelector(".docs-search-query").addEventListener("click", () => { + openModal(); + }); + + document + .querySelector(".close-search-modal") + .addEventListener("click", () => { + closeModal(); + }); + + $(document).on("click", ".search-result-link", function () { + closeModal(); + }); + + document.addEventListener("keydown", (event) => { + if ((event.ctrlKey || event.metaKey) && event.key === "/") { + openModal(); + } else if (event.key === "Escape") { + closeModal(); + } + + return false; + }); + + // Functions to open and close a modal + function openModal() { + let searchModal = document.querySelector("#search-modal"); + + searchModal.classList.add("is-active"); + document.querySelector(".documenter-search-input").focus(); + } + + function closeModal() { + let searchModal = document.querySelector("#search-modal"); + let initial_search_body = ` +
Type something to get started!
+ `; + + searchModal.classList.remove("is-active"); + document.querySelector(".documenter-search-input").blur(); + + if (!$(".search-modal-card-body").hasClass("is-justify-content-center")) { + $(".search-modal-card-body").addClass("is-justify-content-center"); + } + + $(".documenter-search-input").val(""); + $(".search-modal-card-body").html(initial_search_body); + } + + document + .querySelector("#search-modal .modal-background") + .addEventListener("click", () => { + closeModal(); + }); +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// Manages the showing and hiding of the sidebar. +$(document).ready(function () { + var sidebar = $("#documenter > .docs-sidebar"); + var sidebar_button = $("#documenter-sidebar-button"); + sidebar_button.click(function (ev) { + ev.preventDefault(); + sidebar.toggleClass("visible"); + if (sidebar.hasClass("visible")) { + // Makes sure that the current menu item is visible in the sidebar. + $("#documenter .docs-menu a.is-active").focus(); + } + }); + $("#documenter > .docs-main").bind("click", function (ev) { + if ($(ev.target).is(sidebar_button)) { + return; + } + if (sidebar.hasClass("visible")) { + sidebar.removeClass("visible"); + } + }); +}); + +// Resizes the package name / sitename in the sidebar if it is too wide. +// Inspired by: https://github.com/davatron5000/FitText.js +$(document).ready(function () { + e = $("#documenter .docs-autofit"); + function resize() { + var L = parseInt(e.css("max-width"), 10); + var L0 = e.width(); + if (L0 > L) { + var h0 = parseInt(e.css("font-size"), 10); + e.css("font-size", (L * h0) / L0); + // TODO: make sure it survives resizes? + } + } + // call once and then register events + resize(); + $(window).resize(resize); + $(window).on("orientationchange", resize); +}); + +// Scroll the navigation bar to the currently selected menu item +$(document).ready(function () { + var sidebar = $("#documenter .docs-menu").get(0); + var active = $("#documenter .docs-menu .is-active").get(0); + if (typeof active !== "undefined") { + sidebar.scrollTop = active.offsetTop - sidebar.offsetTop - 15; + } +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// Theme picker setup +$(document).ready(function () { + // onchange callback + $("#documenter-themepicker").change(function themepick_callback(ev) { + var themename = $("#documenter-themepicker option:selected").attr("value"); + if (themename === "auto") { + // set_theme(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'); + window.localStorage.removeItem("documenter-theme"); + } else { + // set_theme(themename); + window.localStorage.setItem("documenter-theme", themename); + } + // We re-use the global function from themeswap.js to actually do the swapping. + set_theme_from_local_storage(); + }); + + // Make sure that the themepicker displays the correct theme when the theme is retrieved + // from localStorage + if (typeof window.localStorage !== "undefined") { + var theme = window.localStorage.getItem("documenter-theme"); + if (theme !== null) { + $("#documenter-themepicker option").each(function (i, e) { + e.selected = e.value === theme; + }); + } + } +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// update the version selector with info from the siteinfo.js and ../versions.js files +$(document).ready(function () { + // If the version selector is disabled with DOCUMENTER_VERSION_SELECTOR_DISABLED in the + // siteinfo.js file, we just return immediately and not display the version selector. + if ( + typeof DOCUMENTER_VERSION_SELECTOR_DISABLED === "boolean" && + DOCUMENTER_VERSION_SELECTOR_DISABLED + ) { + return; + } + + var version_selector = $("#documenter .docs-version-selector"); + var version_selector_select = $("#documenter .docs-version-selector select"); + + version_selector_select.change(function (x) { + target_href = version_selector_select + .children("option:selected") + .get(0).value; + window.location.href = target_href; + }); + + // add the current version to the selector based on siteinfo.js, but only if the selector is empty + if ( + typeof DOCUMENTER_CURRENT_VERSION !== "undefined" && + $("#version-selector > option").length == 0 + ) { + var option = $( + "" + ); + version_selector_select.append(option); + } + + if (typeof DOC_VERSIONS !== "undefined") { + var existing_versions = version_selector_select.children("option"); + var existing_versions_texts = existing_versions.map(function (i, x) { + return x.text; + }); + DOC_VERSIONS.forEach(function (each) { + var version_url = documenterBaseURL + "/../" + each + "/"; + var existing_id = $.inArray(each, existing_versions_texts); + // if not already in the version selector, add it as a new option, + // otherwise update the old option with the URL and enable it + if (existing_id == -1) { + var option = $( + "" + ); + version_selector_select.append(option); + } else { + var option = existing_versions[existing_id]; + option.value = version_url; + option.disabled = false; + } + }); + } + + // only show the version selector if the selector has been populated + if (version_selector_select.children("option").length > 0) { + version_selector.toggleClass("visible"); + } +}); + +}) diff --git a/previews/PR873/assets/logo.png b/previews/PR873/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f1947e9901af479254de35c1d91f97a7d3ebecfc GIT binary patch literal 246623 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 z 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,html.theme--catppuccin-frappe .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-frappe .pagination-previous:focus,html.theme--catppuccin-frappe .pagination-next:focus,html.theme--catppuccin-frappe .pagination-link:focus,html.theme--catppuccin-frappe .pagination-ellipsis:focus,html.theme--catppuccin-frappe .file-cta:focus,html.theme--catppuccin-frappe .file-name:focus,html.theme--catppuccin-frappe .select select:focus,html.theme--catppuccin-frappe .textarea:focus,html.theme--catppuccin-frappe .input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-frappe .button:focus,html.theme--catppuccin-frappe .is-focused.pagination-previous,html.theme--catppuccin-frappe .is-focused.pagination-next,html.theme--catppuccin-frappe .is-focused.pagination-link,html.theme--catppuccin-frappe .is-focused.pagination-ellipsis,html.theme--catppuccin-frappe .is-focused.file-cta,html.theme--catppuccin-frappe .is-focused.file-name,html.theme--catppuccin-frappe .select select.is-focused,html.theme--catppuccin-frappe .is-focused.textarea,html.theme--catppuccin-frappe .is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-focused.button,html.theme--catppuccin-frappe .pagination-previous:active,html.theme--catppuccin-frappe .pagination-next:active,html.theme--catppuccin-frappe .pagination-link:active,html.theme--catppuccin-frappe .pagination-ellipsis:active,html.theme--catppuccin-frappe .file-cta:active,html.theme--catppuccin-frappe .file-name:active,html.theme--catppuccin-frappe .select select:active,html.theme--catppuccin-frappe .textarea:active,html.theme--catppuccin-frappe .input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-frappe .button:active,html.theme--catppuccin-frappe .is-active.pagination-previous,html.theme--catppuccin-frappe .is-active.pagination-next,html.theme--catppuccin-frappe .is-active.pagination-link,html.theme--catppuccin-frappe .is-active.pagination-ellipsis,html.theme--catppuccin-frappe .is-active.file-cta,html.theme--catppuccin-frappe .is-active.file-name,html.theme--catppuccin-frappe .select select.is-active,html.theme--catppuccin-frappe .is-active.textarea,html.theme--catppuccin-frappe .is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-frappe .is-active.button{outline:none}html.theme--catppuccin-frappe .pagination-previous[disabled],html.theme--catppuccin-frappe .pagination-next[disabled],html.theme--catppuccin-frappe .pagination-link[disabled],html.theme--catppuccin-frappe .pagination-ellipsis[disabled],html.theme--catppuccin-frappe .file-cta[disabled],html.theme--catppuccin-frappe .file-name[disabled],html.theme--catppuccin-frappe .select select[disabled],html.theme--catppuccin-frappe .textarea[disabled],html.theme--catppuccin-frappe .input[disabled],html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-frappe .button[disabled],fieldset[disabled] html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-frappe .file-cta,html.theme--catppuccin-frappe fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-frappe .file-name,html.theme--catppuccin-frappe fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-frappe .select select,fieldset[disabled] html.theme--catppuccin-frappe .textarea,fieldset[disabled] html.theme--catppuccin-frappe .input,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe fieldset[disabled] .select select,html.theme--catppuccin-frappe .select fieldset[disabled] select,html.theme--catppuccin-frappe fieldset[disabled] .textarea,html.theme--catppuccin-frappe fieldset[disabled] .input,html.theme--catppuccin-frappe fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-frappe .button,html.theme--catppuccin-frappe fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-frappe .tabs,html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe .breadcrumb,html.theme--catppuccin-frappe .file,html.theme--catppuccin-frappe .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-frappe .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-frappe .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-frappe .admonition:not(:last-child),html.theme--catppuccin-frappe .tabs:not(:last-child),html.theme--catppuccin-frappe .pagination:not(:last-child),html.theme--catppuccin-frappe .message:not(:last-child),html.theme--catppuccin-frappe .level:not(:last-child),html.theme--catppuccin-frappe .breadcrumb:not(:last-child),html.theme--catppuccin-frappe .block:not(:last-child),html.theme--catppuccin-frappe .title:not(:last-child),html.theme--catppuccin-frappe .subtitle:not(:last-child),html.theme--catppuccin-frappe .table-container:not(:last-child),html.theme--catppuccin-frappe .table:not(:last-child),html.theme--catppuccin-frappe .progress:not(:last-child),html.theme--catppuccin-frappe .notification:not(:last-child),html.theme--catppuccin-frappe .content:not(:last-child),html.theme--catppuccin-frappe .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .modal-close,html.theme--catppuccin-frappe .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-frappe .modal-close::before,html.theme--catppuccin-frappe .delete::before,html.theme--catppuccin-frappe .modal-close::after,html.theme--catppuccin-frappe .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-frappe .modal-close::before,html.theme--catppuccin-frappe .delete::before{height:2px;width:50%}html.theme--catppuccin-frappe .modal-close::after,html.theme--catppuccin-frappe .delete::after{height:50%;width:2px}html.theme--catppuccin-frappe .modal-close:hover,html.theme--catppuccin-frappe .delete:hover,html.theme--catppuccin-frappe .modal-close:focus,html.theme--catppuccin-frappe .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-frappe .modal-close:active,html.theme--catppuccin-frappe .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-frappe .is-small.modal-close,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-frappe .is-small.delete,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-frappe .is-medium.modal-close,html.theme--catppuccin-frappe .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-frappe .is-large.modal-close,html.theme--catppuccin-frappe .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-frappe .control.is-loading::after,html.theme--catppuccin-frappe .select.is-loading::after,html.theme--catppuccin-frappe .loader,html.theme--catppuccin-frappe .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #838ba7;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-frappe .hero-video,html.theme--catppuccin-frappe .modal-background,html.theme--catppuccin-frappe .modal,html.theme--catppuccin-frappe .image.is-square img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-frappe .image.is-square .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-frappe .image.is-1by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-frappe .image.is-1by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-frappe .image.is-5by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-frappe .image.is-5by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-frappe .image.is-4by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-frappe .image.is-4by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-frappe .image.is-3by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-frappe .image.is-5by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-frappe .image.is-5by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-frappe .image.is-16by9 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-frappe .image.is-16by9 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-frappe .image.is-2by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-frappe .image.is-2by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-frappe .image.is-3by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-frappe .image.is-3by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-frappe .image.is-4by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-frappe .image.is-4by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-frappe .image.is-3by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-frappe .image.is-3by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-frappe .image.is-2by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-frappe .image.is-2by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-frappe .image.is-3by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-frappe .image.is-9by16 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-frappe .image.is-9by16 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-frappe .image.is-1by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-frappe .image.is-1by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-frappe .image.is-1by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-frappe .image.is-1by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-frappe .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#414559 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#2b2e3c !important}.has-background-dark{background-color:#414559 !important}.has-text-primary{color:#8caaee !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#6089e7 !important}.has-background-primary{background-color:#8caaee !important}.has-text-primary-light{color:#edf2fc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#c1d1f6 !important}.has-background-primary-light{background-color:#edf2fc !important}.has-text-primary-dark{color:#153a8e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#1c4cbb !important}.has-background-primary-dark{background-color:#153a8e !important}.has-text-link{color:#8caaee !important}a.has-text-link:hover,a.has-text-link:focus{color:#6089e7 !important}.has-background-link{background-color:#8caaee !important}.has-text-link-light{color:#edf2fc !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c1d1f6 !important}.has-background-link-light{background-color:#edf2fc !important}.has-text-link-dark{color:#153a8e !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#1c4cbb !important}.has-background-link-dark{background-color:#153a8e !important}.has-text-info{color:#81c8be !important}a.has-text-info:hover,a.has-text-info:focus{color:#5db9ac !important}.has-background-info{background-color:#81c8be !important}.has-text-info-light{color:#f1f9f8 !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#cde9e5 !important}.has-background-info-light{background-color:#f1f9f8 !important}.has-text-info-dark{color:#2d675f !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#3c8a7f !important}.has-background-info-dark{background-color:#2d675f !important}.has-text-success{color:#a6d189 !important}a.has-text-success:hover,a.has-text-success:focus{color:#8ac364 !important}.has-background-success{background-color:#a6d189 !important}.has-text-success-light{color:#f4f9f0 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#d8ebcc !important}.has-background-success-light{background-color:#f4f9f0 !important}.has-text-success-dark{color:#446a29 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#5b8f38 !important}.has-background-success-dark{background-color:#446a29 !important}.has-text-warning{color:#e5c890 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#dbb467 !important}.has-background-warning{background-color:#e5c890 !important}.has-text-warning-light{color:#fbf7ee !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#f1e2c5 !important}.has-background-warning-light{background-color:#fbf7ee !important}.has-text-warning-dark{color:#78591c !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#a17726 !important}.has-background-warning-dark{background-color:#78591c !important}.has-text-danger{color:#e78284 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#df575a !important}.has-background-danger{background-color:#e78284 !important}.has-text-danger-light{color:#fceeee !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f3c3c4 !important}.has-background-danger-light{background-color:#fceeee !important}.has-text-danger-dark{color:#9a1e20 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#c52629 !important}.has-background-danger-dark{background-color:#9a1e20 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#414559 !important}.has-background-grey-darker{background-color:#414559 !important}.has-text-grey-dark{color:#51576d !important}.has-background-grey-dark{background-color:#51576d !important}.has-text-grey{color:#626880 !important}.has-background-grey{background-color:#626880 !important}.has-text-grey-light{color:#737994 !important}.has-background-grey-light{background-color:#737994 !important}.has-text-grey-lighter{color:#838ba7 !important}.has-background-grey-lighter{background-color:#838ba7 !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-frappe html{background-color:#303446;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-frappe article,html.theme--catppuccin-frappe aside,html.theme--catppuccin-frappe figure,html.theme--catppuccin-frappe footer,html.theme--catppuccin-frappe header,html.theme--catppuccin-frappe hgroup,html.theme--catppuccin-frappe section{display:block}html.theme--catppuccin-frappe body,html.theme--catppuccin-frappe button,html.theme--catppuccin-frappe input,html.theme--catppuccin-frappe optgroup,html.theme--catppuccin-frappe select,html.theme--catppuccin-frappe textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-frappe code,html.theme--catppuccin-frappe pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-frappe body{color:#c6d0f5;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-frappe a{color:#8caaee;cursor:pointer;text-decoration:none}html.theme--catppuccin-frappe a strong{color:currentColor}html.theme--catppuccin-frappe a:hover{color:#99d1db}html.theme--catppuccin-frappe code{background-color:#292c3c;color:#c6d0f5;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-frappe hr{background-color:#292c3c;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-frappe img{height:auto;max-width:100%}html.theme--catppuccin-frappe input[type="checkbox"],html.theme--catppuccin-frappe input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-frappe small{font-size:.875em}html.theme--catppuccin-frappe span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-frappe strong{color:#b0bef1;font-weight:700}html.theme--catppuccin-frappe fieldset{border:none}html.theme--catppuccin-frappe pre{-webkit-overflow-scrolling:touch;background-color:#292c3c;color:#c6d0f5;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-frappe pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-frappe table td,html.theme--catppuccin-frappe table th{vertical-align:top}html.theme--catppuccin-frappe table td:not([align]),html.theme--catppuccin-frappe table th:not([align]){text-align:inherit}html.theme--catppuccin-frappe table th{color:#b0bef1}html.theme--catppuccin-frappe .box{background-color:#51576d;border-radius:8px;box-shadow:none;color:#c6d0f5;display:block;padding:1.25rem}html.theme--catppuccin-frappe a.box:hover,html.theme--catppuccin-frappe a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #8caaee}html.theme--catppuccin-frappe a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #8caaee}html.theme--catppuccin-frappe .button{background-color:#292c3c;border-color:#484d69;border-width:1px;color:#8caaee;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-frappe .button strong{color:inherit}html.theme--catppuccin-frappe .button .icon,html.theme--catppuccin-frappe .button .icon.is-small,html.theme--catppuccin-frappe .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-frappe .button .icon.is-medium,html.theme--catppuccin-frappe .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-frappe .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-frappe .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-frappe .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-frappe .button:hover,html.theme--catppuccin-frappe .button.is-hovered{border-color:#737994;color:#b0bef1}html.theme--catppuccin-frappe .button:focus,html.theme--catppuccin-frappe .button.is-focused{border-color:#737994;color:#769aeb}html.theme--catppuccin-frappe .button:focus:not(:active),html.theme--catppuccin-frappe .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .button:active,html.theme--catppuccin-frappe .button.is-active{border-color:#51576d;color:#b0bef1}html.theme--catppuccin-frappe .button.is-text{background-color:transparent;border-color:transparent;color:#c6d0f5;text-decoration:underline}html.theme--catppuccin-frappe .button.is-text:hover,html.theme--catppuccin-frappe .button.is-text.is-hovered,html.theme--catppuccin-frappe .button.is-text:focus,html.theme--catppuccin-frappe .button.is-text.is-focused{background-color:#292c3c;color:#b0bef1}html.theme--catppuccin-frappe .button.is-text:active,html.theme--catppuccin-frappe .button.is-text.is-active{background-color:#1f212d;color:#b0bef1}html.theme--catppuccin-frappe .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-frappe .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#8caaee;text-decoration:none}html.theme--catppuccin-frappe .button.is-ghost:hover,html.theme--catppuccin-frappe .button.is-ghost.is-hovered{color:#8caaee;text-decoration:underline}html.theme--catppuccin-frappe .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white:hover,html.theme--catppuccin-frappe .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white:focus,html.theme--catppuccin-frappe .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white:focus:not(:active),html.theme--catppuccin-frappe .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-frappe .button.is-white:active,html.theme--catppuccin-frappe .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-frappe .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-inverted:hover,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-frappe .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-outlined:hover,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-white.is-outlined:focus,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black:hover,html.theme--catppuccin-frappe .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black:focus,html.theme--catppuccin-frappe .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black:focus:not(:active),html.theme--catppuccin-frappe .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-frappe .button.is-black:active,html.theme--catppuccin-frappe .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-frappe .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-inverted:hover,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-outlined:hover,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-black.is-outlined:focus,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light:hover,html.theme--catppuccin-frappe .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light:focus,html.theme--catppuccin-frappe .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light:focus:not(:active),html.theme--catppuccin-frappe .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-frappe .button.is-light:active,html.theme--catppuccin-frappe .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-frappe .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-inverted:hover,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-outlined:hover,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-light.is-outlined:focus,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-dark,html.theme--catppuccin-frappe .content kbd.button{background-color:#414559;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark:hover,html.theme--catppuccin-frappe .content kbd.button:hover,html.theme--catppuccin-frappe .button.is-dark.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-hovered{background-color:#3c3f52;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark:focus,html.theme--catppuccin-frappe .content kbd.button:focus,html.theme--catppuccin-frappe .button.is-dark.is-focused,html.theme--catppuccin-frappe .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark:focus:not(:active),html.theme--catppuccin-frappe .content kbd.button:focus:not(:active),html.theme--catppuccin-frappe .button.is-dark.is-focused:not(:active),html.theme--catppuccin-frappe .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(65,69,89,0.25)}html.theme--catppuccin-frappe .button.is-dark:active,html.theme--catppuccin-frappe .content kbd.button:active,html.theme--catppuccin-frappe .button.is-dark.is-active,html.theme--catppuccin-frappe .content kbd.button.is-active{background-color:#363a4a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark[disabled],html.theme--catppuccin-frappe .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button{background-color:#414559;border-color:#414559;box-shadow:none}html.theme--catppuccin-frappe .button.is-dark.is-inverted,html.theme--catppuccin-frappe .content kbd.button.is-inverted{background-color:#fff;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-inverted:hover,html.theme--catppuccin-frappe .content kbd.button.is-inverted:hover,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-dark.is-inverted[disabled],html.theme--catppuccin-frappe .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-loading::after,html.theme--catppuccin-frappe .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-dark.is-outlined,html.theme--catppuccin-frappe .content kbd.button.is-outlined{background-color:transparent;border-color:#414559;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-outlined:hover,html.theme--catppuccin-frappe .content kbd.button.is-outlined:hover,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-dark.is-outlined:focus,html.theme--catppuccin-frappe .content kbd.button.is-outlined:focus,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-focused{background-color:#414559;border-color:#414559;color:#fff}html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #414559 #414559 !important}html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-dark.is-outlined[disabled],html.theme--catppuccin-frappe .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button.is-outlined{background-color:transparent;border-color:#414559;box-shadow:none;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #414559 #414559 !important}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-primary,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary:hover,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary:focus,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-frappe .button.is-primary.is-focused,html.theme--catppuccin-frappe .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary:focus:not(:active),html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-frappe .button.is-primary.is-focused:not(:active),html.theme--catppuccin-frappe .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .button.is-primary:active,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-frappe .button.is-primary.is-active,html.theme--catppuccin-frappe .docstring>section>a.button.is-active.docs-sourcelink{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink{background-color:#8caaee;border-color:#8caaee;box-shadow:none}html.theme--catppuccin-frappe .button.is-primary.is-inverted,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-inverted:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-primary.is-inverted[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-loading::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-primary.is-outlined,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8caaee;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-outlined:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-frappe .button.is-primary.is-outlined:focus,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-primary.is-outlined[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8caaee;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-primary.is-light,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.docs-sourcelink{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .button.is-primary.is-light:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-light.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e2eafb;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-primary.is-light:active,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-frappe .button.is-primary.is-light.is-active,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d7e1f9;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-link{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link:hover,html.theme--catppuccin-frappe .button.is-link.is-hovered{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link:focus,html.theme--catppuccin-frappe .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link:focus:not(:active),html.theme--catppuccin-frappe .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .button.is-link:active,html.theme--catppuccin-frappe .button.is-link.is-active{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link{background-color:#8caaee;border-color:#8caaee;box-shadow:none}html.theme--catppuccin-frappe .button.is-link.is-inverted{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-inverted:hover,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-link.is-outlined{background-color:transparent;border-color:#8caaee;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-outlined:hover,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-link.is-outlined:focus,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-focused{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link.is-outlined{background-color:transparent;border-color:#8caaee;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-link.is-light{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .button.is-link.is-light:hover,html.theme--catppuccin-frappe .button.is-link.is-light.is-hovered{background-color:#e2eafb;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-link.is-light:active,html.theme--catppuccin-frappe .button.is-link.is-light.is-active{background-color:#d7e1f9;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-info{background-color:#81c8be;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info:hover,html.theme--catppuccin-frappe .button.is-info.is-hovered{background-color:#78c4b9;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info:focus,html.theme--catppuccin-frappe .button.is-info.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info:focus:not(:active),html.theme--catppuccin-frappe .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(129,200,190,0.25)}html.theme--catppuccin-frappe .button.is-info:active,html.theme--catppuccin-frappe .button.is-info.is-active{background-color:#6fc0b5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info{background-color:#81c8be;border-color:#81c8be;box-shadow:none}html.theme--catppuccin-frappe .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-inverted:hover,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-info.is-outlined{background-color:transparent;border-color:#81c8be;color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-outlined:hover,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-info.is-outlined:focus,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-focused{background-color:#81c8be;border-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #81c8be #81c8be !important}html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info.is-outlined{background-color:transparent;border-color:#81c8be;box-shadow:none;color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #81c8be #81c8be !important}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-light{background-color:#f1f9f8;color:#2d675f}html.theme--catppuccin-frappe .button.is-info.is-light:hover,html.theme--catppuccin-frappe .button.is-info.is-light.is-hovered{background-color:#e8f5f3;border-color:transparent;color:#2d675f}html.theme--catppuccin-frappe .button.is-info.is-light:active,html.theme--catppuccin-frappe .button.is-info.is-light.is-active{background-color:#dff1ef;border-color:transparent;color:#2d675f}html.theme--catppuccin-frappe .button.is-success{background-color:#a6d189;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success:hover,html.theme--catppuccin-frappe .button.is-success.is-hovered{background-color:#9fcd80;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success:focus,html.theme--catppuccin-frappe .button.is-success.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success:focus:not(:active),html.theme--catppuccin-frappe .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(166,209,137,0.25)}html.theme--catppuccin-frappe .button.is-success:active,html.theme--catppuccin-frappe .button.is-success.is-active{background-color:#98ca77;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success{background-color:#a6d189;border-color:#a6d189;box-shadow:none}html.theme--catppuccin-frappe .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-inverted:hover,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-success.is-outlined{background-color:transparent;border-color:#a6d189;color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-outlined:hover,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-success.is-outlined:focus,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-focused{background-color:#a6d189;border-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #a6d189 #a6d189 !important}html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success.is-outlined{background-color:transparent;border-color:#a6d189;box-shadow:none;color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a6d189 #a6d189 !important}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-light{background-color:#f4f9f0;color:#446a29}html.theme--catppuccin-frappe .button.is-success.is-light:hover,html.theme--catppuccin-frappe .button.is-success.is-light.is-hovered{background-color:#edf6e7;border-color:transparent;color:#446a29}html.theme--catppuccin-frappe .button.is-success.is-light:active,html.theme--catppuccin-frappe .button.is-success.is-light.is-active{background-color:#e6f2de;border-color:transparent;color:#446a29}html.theme--catppuccin-frappe .button.is-warning{background-color:#e5c890;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning:hover,html.theme--catppuccin-frappe .button.is-warning.is-hovered{background-color:#e3c386;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning:focus,html.theme--catppuccin-frappe .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning:focus:not(:active),html.theme--catppuccin-frappe .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(229,200,144,0.25)}html.theme--catppuccin-frappe .button.is-warning:active,html.theme--catppuccin-frappe .button.is-warning.is-active{background-color:#e0be7b;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning{background-color:#e5c890;border-color:#e5c890;box-shadow:none}html.theme--catppuccin-frappe .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-inverted:hover,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-warning.is-outlined{background-color:transparent;border-color:#e5c890;color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-outlined:hover,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-warning.is-outlined:focus,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-focused{background-color:#e5c890;border-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #e5c890 #e5c890 !important}html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning.is-outlined{background-color:transparent;border-color:#e5c890;box-shadow:none;color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #e5c890 #e5c890 !important}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-light{background-color:#fbf7ee;color:#78591c}html.theme--catppuccin-frappe .button.is-warning.is-light:hover,html.theme--catppuccin-frappe .button.is-warning.is-light.is-hovered{background-color:#f9f2e4;border-color:transparent;color:#78591c}html.theme--catppuccin-frappe .button.is-warning.is-light:active,html.theme--catppuccin-frappe .button.is-warning.is-light.is-active{background-color:#f6edda;border-color:transparent;color:#78591c}html.theme--catppuccin-frappe .button.is-danger{background-color:#e78284;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger:hover,html.theme--catppuccin-frappe .button.is-danger.is-hovered{background-color:#e57779;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger:focus,html.theme--catppuccin-frappe .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger:focus:not(:active),html.theme--catppuccin-frappe .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(231,130,132,0.25)}html.theme--catppuccin-frappe .button.is-danger:active,html.theme--catppuccin-frappe .button.is-danger.is-active{background-color:#e36d6f;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger{background-color:#e78284;border-color:#e78284;box-shadow:none}html.theme--catppuccin-frappe .button.is-danger.is-inverted{background-color:#fff;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-inverted:hover,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-danger.is-outlined{background-color:transparent;border-color:#e78284;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-outlined:hover,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-danger.is-outlined:focus,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-focused{background-color:#e78284;border-color:#e78284;color:#fff}html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #e78284 #e78284 !important}html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger.is-outlined{background-color:transparent;border-color:#e78284;box-shadow:none;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #e78284 #e78284 !important}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-danger.is-light{background-color:#fceeee;color:#9a1e20}html.theme--catppuccin-frappe .button.is-danger.is-light:hover,html.theme--catppuccin-frappe .button.is-danger.is-light.is-hovered{background-color:#fae3e4;border-color:transparent;color:#9a1e20}html.theme--catppuccin-frappe .button.is-danger.is-light:active,html.theme--catppuccin-frappe .button.is-danger.is-light.is-active{background-color:#f8d8d9;border-color:transparent;color:#9a1e20}html.theme--catppuccin-frappe .button.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-frappe .button.is-small:not(.is-rounded),html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-frappe .button.is-normal{font-size:1rem}html.theme--catppuccin-frappe .button.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .button.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .button[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button{background-color:#737994;border-color:#626880;box-shadow:none;opacity:.5}html.theme--catppuccin-frappe .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-frappe .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-frappe .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-frappe .button.is-static{background-color:#292c3c;border-color:#626880;color:#838ba7;box-shadow:none;pointer-events:none}html.theme--catppuccin-frappe .button.is-rounded,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-frappe .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-frappe .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-frappe .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-frappe .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-frappe .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-frappe .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-frappe .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-frappe .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-frappe .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-frappe .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-frappe .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-frappe .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-frappe .buttons.has-addons .button:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-frappe .buttons.has-addons .button:focus,html.theme--catppuccin-frappe .buttons.has-addons .button.is-focused,html.theme--catppuccin-frappe .buttons.has-addons .button:active,html.theme--catppuccin-frappe .buttons.has-addons .button.is-active,html.theme--catppuccin-frappe .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-frappe .buttons.has-addons .button:focus:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-frappe .buttons.has-addons .button:active:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-frappe .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .buttons.is-centered{justify-content:center}html.theme--catppuccin-frappe .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-frappe .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-frappe .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .button.is-responsive.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-frappe .button.is-responsive,html.theme--catppuccin-frappe .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-frappe .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-frappe .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .button.is-responsive.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-frappe .button.is-responsive,html.theme--catppuccin-frappe .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-frappe .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-frappe .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-frappe .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-frappe .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-frappe .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-frappe .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-frappe .content li+li{margin-top:0.25em}html.theme--catppuccin-frappe .content p:not(:last-child),html.theme--catppuccin-frappe .content dl:not(:last-child),html.theme--catppuccin-frappe .content ol:not(:last-child),html.theme--catppuccin-frappe .content ul:not(:last-child),html.theme--catppuccin-frappe .content blockquote:not(:last-child),html.theme--catppuccin-frappe .content pre:not(:last-child),html.theme--catppuccin-frappe .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-frappe .content h1,html.theme--catppuccin-frappe .content h2,html.theme--catppuccin-frappe .content h3,html.theme--catppuccin-frappe .content h4,html.theme--catppuccin-frappe .content h5,html.theme--catppuccin-frappe .content h6{color:#c6d0f5;font-weight:600;line-height:1.125}html.theme--catppuccin-frappe .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-frappe .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-frappe .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-frappe .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-frappe .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-frappe .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-frappe .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-frappe .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-frappe .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-frappe .content blockquote{background-color:#292c3c;border-left:5px solid #626880;padding:1.25em 1.5em}html.theme--catppuccin-frappe .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-frappe .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-frappe .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-frappe .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-frappe .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-frappe .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-frappe .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-frappe .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-frappe .content ul ul ul{list-style-type:square}html.theme--catppuccin-frappe .content dd{margin-left:2em}html.theme--catppuccin-frappe .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-frappe .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-frappe .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-frappe .content figure img{display:inline-block}html.theme--catppuccin-frappe .content figure figcaption{font-style:italic}html.theme--catppuccin-frappe .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-frappe .content sup,html.theme--catppuccin-frappe .content sub{font-size:75%}html.theme--catppuccin-frappe .content table{width:100%}html.theme--catppuccin-frappe .content table td,html.theme--catppuccin-frappe .content table th{border:1px solid #626880;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-frappe .content table th{color:#b0bef1}html.theme--catppuccin-frappe .content table th:not([align]){text-align:inherit}html.theme--catppuccin-frappe .content table thead td,html.theme--catppuccin-frappe .content table thead th{border-width:0 0 2px;color:#b0bef1}html.theme--catppuccin-frappe .content table tfoot td,html.theme--catppuccin-frappe .content table tfoot th{border-width:2px 0 0;color:#b0bef1}html.theme--catppuccin-frappe .content table tbody tr:last-child td,html.theme--catppuccin-frappe .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-frappe .content .tabs li+li{margin-top:0}html.theme--catppuccin-frappe .content.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-frappe .content.is-normal{font-size:1rem}html.theme--catppuccin-frappe .content.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .content.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-frappe .icon.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-frappe .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-frappe .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-frappe .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-frappe .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-frappe .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-frappe div.icon-text{display:flex}html.theme--catppuccin-frappe .image,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-frappe .image img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-frappe .image img.is-rounded,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-frappe .image.is-fullwidth,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-frappe .image.is-square img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-frappe .image.is-square .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-frappe .image.is-1by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-frappe .image.is-1by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-frappe .image.is-5by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-frappe .image.is-5by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-frappe .image.is-4by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-frappe .image.is-4by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-frappe .image.is-3by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-frappe .image.is-5by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-frappe .image.is-5by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-frappe .image.is-16by9 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-frappe .image.is-16by9 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-frappe .image.is-2by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-frappe .image.is-2by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-frappe .image.is-3by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-frappe .image.is-3by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-frappe .image.is-4by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-frappe .image.is-4by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-frappe .image.is-3by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-frappe .image.is-3by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-frappe .image.is-2by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-frappe .image.is-2by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-frappe .image.is-3by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-frappe .image.is-9by16 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-frappe .image.is-9by16 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-frappe .image.is-1by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-frappe .image.is-1by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-frappe .image.is-1by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-frappe .image.is-1by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-frappe .image.is-square,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-frappe .image.is-1by1,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-frappe .image.is-5by4,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-frappe .image.is-4by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-frappe .image.is-3by2,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-frappe .image.is-5by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-frappe .image.is-16by9,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-frappe .image.is-2by1,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-frappe .image.is-3by1,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-frappe .image.is-4by5,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-frappe .image.is-3by4,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-frappe .image.is-2by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-frappe .image.is-3by5,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-frappe .image.is-9by16,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-frappe .image.is-1by2,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-frappe .image.is-1by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-frappe .image.is-16x16,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-frappe .image.is-24x24,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-frappe .image.is-32x32,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-frappe .image.is-48x48,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-frappe .image.is-64x64,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-frappe .image.is-96x96,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-frappe .image.is-128x128,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-frappe .notification{background-color:#292c3c;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-frappe .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-frappe .notification strong{color:currentColor}html.theme--catppuccin-frappe .notification code,html.theme--catppuccin-frappe .notification pre{background:#fff}html.theme--catppuccin-frappe .notification pre code{background:transparent}html.theme--catppuccin-frappe .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-frappe .notification .title,html.theme--catppuccin-frappe .notification .subtitle,html.theme--catppuccin-frappe .notification .content{color:currentColor}html.theme--catppuccin-frappe .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-dark,html.theme--catppuccin-frappe .content kbd.notification{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .notification.is-primary,html.theme--catppuccin-frappe .docstring>section>a.notification.docs-sourcelink{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .notification.is-primary.is-light,html.theme--catppuccin-frappe .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .notification.is-link{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .notification.is-link.is-light{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .notification.is-info{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-info.is-light{background-color:#f1f9f8;color:#2d675f}html.theme--catppuccin-frappe .notification.is-success{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-success.is-light{background-color:#f4f9f0;color:#446a29}html.theme--catppuccin-frappe .notification.is-warning{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-warning.is-light{background-color:#fbf7ee;color:#78591c}html.theme--catppuccin-frappe .notification.is-danger{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .notification.is-danger.is-light{background-color:#fceeee;color:#9a1e20}html.theme--catppuccin-frappe .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-frappe .progress::-webkit-progress-bar{background-color:#51576d}html.theme--catppuccin-frappe .progress::-webkit-progress-value{background-color:#838ba7}html.theme--catppuccin-frappe .progress::-moz-progress-bar{background-color:#838ba7}html.theme--catppuccin-frappe .progress::-ms-fill{background-color:#838ba7;border:none}html.theme--catppuccin-frappe .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-frappe .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-frappe .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-frappe .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-frappe .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-frappe .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-frappe .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-frappe .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-frappe .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-frappe .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-frappe .content kbd.progress::-webkit-progress-value{background-color:#414559}html.theme--catppuccin-frappe .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-frappe .content kbd.progress::-moz-progress-bar{background-color:#414559}html.theme--catppuccin-frappe .progress.is-dark::-ms-fill,html.theme--catppuccin-frappe .content kbd.progress::-ms-fill{background-color:#414559}html.theme--catppuccin-frappe .progress.is-dark:indeterminate,html.theme--catppuccin-frappe .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #414559 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-primary::-ms-fill,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-primary:indeterminate,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #8caaee 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-link::-webkit-progress-value{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-link::-moz-progress-bar{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-link::-ms-fill{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-link:indeterminate{background-image:linear-gradient(to right, #8caaee 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-info::-webkit-progress-value{background-color:#81c8be}html.theme--catppuccin-frappe .progress.is-info::-moz-progress-bar{background-color:#81c8be}html.theme--catppuccin-frappe .progress.is-info::-ms-fill{background-color:#81c8be}html.theme--catppuccin-frappe .progress.is-info:indeterminate{background-image:linear-gradient(to right, #81c8be 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-success::-webkit-progress-value{background-color:#a6d189}html.theme--catppuccin-frappe .progress.is-success::-moz-progress-bar{background-color:#a6d189}html.theme--catppuccin-frappe .progress.is-success::-ms-fill{background-color:#a6d189}html.theme--catppuccin-frappe .progress.is-success:indeterminate{background-image:linear-gradient(to right, #a6d189 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-warning::-webkit-progress-value{background-color:#e5c890}html.theme--catppuccin-frappe .progress.is-warning::-moz-progress-bar{background-color:#e5c890}html.theme--catppuccin-frappe .progress.is-warning::-ms-fill{background-color:#e5c890}html.theme--catppuccin-frappe .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #e5c890 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-danger::-webkit-progress-value{background-color:#e78284}html.theme--catppuccin-frappe .progress.is-danger::-moz-progress-bar{background-color:#e78284}html.theme--catppuccin-frappe .progress.is-danger::-ms-fill{background-color:#e78284}html.theme--catppuccin-frappe .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #e78284 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#51576d;background-image:linear-gradient(to right, #c6d0f5 30%, #51576d 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-frappe .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-frappe .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-frappe .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-frappe .progress.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-frappe .progress.is-medium{height:1.25rem}html.theme--catppuccin-frappe .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-frappe .table{background-color:#51576d;color:#c6d0f5}html.theme--catppuccin-frappe .table td,html.theme--catppuccin-frappe .table th{border:1px solid #626880;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-frappe .table td.is-white,html.theme--catppuccin-frappe .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .table td.is-black,html.theme--catppuccin-frappe .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .table td.is-light,html.theme--catppuccin-frappe .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-dark,html.theme--catppuccin-frappe .table th.is-dark{background-color:#414559;border-color:#414559;color:#fff}html.theme--catppuccin-frappe .table td.is-primary,html.theme--catppuccin-frappe .table th.is-primary{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table td.is-link,html.theme--catppuccin-frappe .table th.is-link{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table td.is-info,html.theme--catppuccin-frappe .table th.is-info{background-color:#81c8be;border-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-success,html.theme--catppuccin-frappe .table th.is-success{background-color:#a6d189;border-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-warning,html.theme--catppuccin-frappe .table th.is-warning{background-color:#e5c890;border-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-danger,html.theme--catppuccin-frappe .table th.is-danger{background-color:#e78284;border-color:#e78284;color:#fff}html.theme--catppuccin-frappe .table td.is-narrow,html.theme--catppuccin-frappe .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-frappe .table td.is-selected,html.theme--catppuccin-frappe .table th.is-selected{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table td.is-selected a,html.theme--catppuccin-frappe .table td.is-selected strong,html.theme--catppuccin-frappe .table th.is-selected a,html.theme--catppuccin-frappe .table th.is-selected strong{color:currentColor}html.theme--catppuccin-frappe .table td.is-vcentered,html.theme--catppuccin-frappe .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-frappe .table th{color:#b0bef1}html.theme--catppuccin-frappe .table th:not([align]){text-align:left}html.theme--catppuccin-frappe .table tr.is-selected{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table tr.is-selected a,html.theme--catppuccin-frappe .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-frappe .table tr.is-selected td,html.theme--catppuccin-frappe .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-frappe .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .table thead td,html.theme--catppuccin-frappe .table thead th{border-width:0 0 2px;color:#b0bef1}html.theme--catppuccin-frappe .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .table tfoot td,html.theme--catppuccin-frappe .table tfoot th{border-width:2px 0 0;color:#b0bef1}html.theme--catppuccin-frappe .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .table tbody tr:last-child td,html.theme--catppuccin-frappe .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-frappe .table.is-bordered td,html.theme--catppuccin-frappe .table.is-bordered th{border-width:1px}html.theme--catppuccin-frappe .table.is-bordered tr:last-child td,html.theme--catppuccin-frappe .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-frappe .table.is-fullwidth{width:100%}html.theme--catppuccin-frappe .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#414559}html.theme--catppuccin-frappe .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#414559}html.theme--catppuccin-frappe .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#454a5f}html.theme--catppuccin-frappe .table.is-narrow td,html.theme--catppuccin-frappe .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-frappe .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#414559}html.theme--catppuccin-frappe .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-frappe .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-frappe .tags .tag,html.theme--catppuccin-frappe .tags .content kbd,html.theme--catppuccin-frappe .content .tags kbd,html.theme--catppuccin-frappe .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-frappe .tags .tag:not(:last-child),html.theme--catppuccin-frappe .tags .content kbd:not(:last-child),html.theme--catppuccin-frappe .content .tags kbd:not(:last-child),html.theme--catppuccin-frappe .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-frappe .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-frappe .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-frappe .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-frappe .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-frappe .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-frappe .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-frappe .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-frappe .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-frappe .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-frappe .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-frappe .tags.is-centered{justify-content:center}html.theme--catppuccin-frappe .tags.is-centered .tag,html.theme--catppuccin-frappe .tags.is-centered .content kbd,html.theme--catppuccin-frappe .content .tags.is-centered kbd,html.theme--catppuccin-frappe .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-frappe .tags.is-right{justify-content:flex-end}html.theme--catppuccin-frappe .tags.is-right .tag:not(:first-child),html.theme--catppuccin-frappe .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-frappe .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-frappe .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-frappe .tags.is-right .tag:not(:last-child),html.theme--catppuccin-frappe .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-frappe .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-frappe .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-frappe .tags.has-addons .tag,html.theme--catppuccin-frappe .tags.has-addons .content kbd,html.theme--catppuccin-frappe .content .tags.has-addons kbd,html.theme--catppuccin-frappe .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-frappe .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-frappe .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-frappe .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-frappe .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-frappe .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-frappe .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-frappe .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-frappe .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-frappe .tag:not(body),html.theme--catppuccin-frappe .content kbd:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#292c3c;border-radius:.4em;color:#c6d0f5;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-frappe .tag:not(body) .delete,html.theme--catppuccin-frappe .content kbd:not(body) .delete,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-frappe .tag.is-white:not(body),html.theme--catppuccin-frappe .content kbd.is-white:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .tag.is-black:not(body),html.theme--catppuccin-frappe .content kbd.is-black:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .tag.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-dark:not(body),html.theme--catppuccin-frappe .content kbd:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-frappe .content .docstring>section>kbd:not(body){background-color:#414559;color:#fff}html.theme--catppuccin-frappe .tag.is-primary:not(body),html.theme--catppuccin-frappe .content kbd.is-primary:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body){background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .tag.is-primary.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .tag.is-link:not(body),html.theme--catppuccin-frappe .content kbd.is-link:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .tag.is-link.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-link.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .tag.is-info:not(body),html.theme--catppuccin-frappe .content kbd.is-info:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-info.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-info.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#f1f9f8;color:#2d675f}html.theme--catppuccin-frappe .tag.is-success:not(body),html.theme--catppuccin-frappe .content kbd.is-success:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-success.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-success.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f4f9f0;color:#446a29}html.theme--catppuccin-frappe .tag.is-warning:not(body),html.theme--catppuccin-frappe .content kbd.is-warning:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-warning.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fbf7ee;color:#78591c}html.theme--catppuccin-frappe .tag.is-danger:not(body),html.theme--catppuccin-frappe .content kbd.is-danger:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .tag.is-danger.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fceeee;color:#9a1e20}html.theme--catppuccin-frappe .tag.is-normal:not(body),html.theme--catppuccin-frappe .content kbd.is-normal:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-frappe .tag.is-medium:not(body),html.theme--catppuccin-frappe .content kbd.is-medium:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-frappe .tag.is-large:not(body),html.theme--catppuccin-frappe .content kbd.is-large:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-frappe .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-frappe .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-frappe .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-frappe .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-frappe .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-frappe .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-frappe .tag.is-delete:not(body),html.theme--catppuccin-frappe .content kbd.is-delete:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-frappe .tag.is-delete:not(body)::before,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::before,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-frappe .tag.is-delete:not(body)::after,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::after,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-frappe .tag.is-delete:not(body)::before,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::before,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-frappe .tag.is-delete:not(body)::after,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::after,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-frappe .tag.is-delete:not(body):hover,html.theme--catppuccin-frappe .content kbd.is-delete:not(body):hover,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-frappe .tag.is-delete:not(body):focus,html.theme--catppuccin-frappe .content kbd.is-delete:not(body):focus,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#1f212d}html.theme--catppuccin-frappe .tag.is-delete:not(body):active,html.theme--catppuccin-frappe .content kbd.is-delete:not(body):active,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#14161e}html.theme--catppuccin-frappe .tag.is-rounded:not(body),html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-frappe .content kbd.is-rounded:not(body),html.theme--catppuccin-frappe #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-frappe a.tag:hover,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-frappe .title,html.theme--catppuccin-frappe .subtitle{word-break:break-word}html.theme--catppuccin-frappe .title em,html.theme--catppuccin-frappe .title span,html.theme--catppuccin-frappe .subtitle em,html.theme--catppuccin-frappe .subtitle span{font-weight:inherit}html.theme--catppuccin-frappe .title sub,html.theme--catppuccin-frappe .subtitle sub{font-size:.75em}html.theme--catppuccin-frappe .title sup,html.theme--catppuccin-frappe .subtitle sup{font-size:.75em}html.theme--catppuccin-frappe .title .tag,html.theme--catppuccin-frappe .title .content kbd,html.theme--catppuccin-frappe .content .title kbd,html.theme--catppuccin-frappe .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-frappe .subtitle .tag,html.theme--catppuccin-frappe .subtitle .content kbd,html.theme--catppuccin-frappe .content .subtitle kbd,html.theme--catppuccin-frappe .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-frappe .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-frappe .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-frappe .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-frappe .title.is-1{font-size:3rem}html.theme--catppuccin-frappe .title.is-2{font-size:2.5rem}html.theme--catppuccin-frappe .title.is-3{font-size:2rem}html.theme--catppuccin-frappe .title.is-4{font-size:1.5rem}html.theme--catppuccin-frappe .title.is-5{font-size:1.25rem}html.theme--catppuccin-frappe .title.is-6{font-size:1rem}html.theme--catppuccin-frappe .title.is-7{font-size:.75rem}html.theme--catppuccin-frappe .subtitle{color:#737994;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-frappe .subtitle strong{color:#737994;font-weight:600}html.theme--catppuccin-frappe .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-frappe .subtitle.is-1{font-size:3rem}html.theme--catppuccin-frappe .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-frappe .subtitle.is-3{font-size:2rem}html.theme--catppuccin-frappe .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-frappe .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-frappe .subtitle.is-6{font-size:1rem}html.theme--catppuccin-frappe .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-frappe .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-frappe .number{align-items:center;background-color:#292c3c;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-frappe .select select,html.theme--catppuccin-frappe .textarea,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{background-color:#303446;border-color:#626880;border-radius:.4em;color:#838ba7}html.theme--catppuccin-frappe .select select::-moz-placeholder,html.theme--catppuccin-frappe .textarea::-moz-placeholder,html.theme--catppuccin-frappe .input::-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select::-webkit-input-placeholder,html.theme--catppuccin-frappe .textarea::-webkit-input-placeholder,html.theme--catppuccin-frappe .input::-webkit-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select:-moz-placeholder,html.theme--catppuccin-frappe .textarea:-moz-placeholder,html.theme--catppuccin-frappe .input:-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select:-ms-input-placeholder,html.theme--catppuccin-frappe .textarea:-ms-input-placeholder,html.theme--catppuccin-frappe .input:-ms-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select:hover,html.theme--catppuccin-frappe .textarea:hover,html.theme--catppuccin-frappe .input:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-frappe .select select.is-hovered,html.theme--catppuccin-frappe .is-hovered.textarea,html.theme--catppuccin-frappe .is-hovered.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#737994}html.theme--catppuccin-frappe .select select:focus,html.theme--catppuccin-frappe .textarea:focus,html.theme--catppuccin-frappe .input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-frappe .select select.is-focused,html.theme--catppuccin-frappe .is-focused.textarea,html.theme--catppuccin-frappe .is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .select select:active,html.theme--catppuccin-frappe .textarea:active,html.theme--catppuccin-frappe .input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-frappe .select select.is-active,html.theme--catppuccin-frappe .is-active.textarea,html.theme--catppuccin-frappe .is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#8caaee;box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .select select[disabled],html.theme--catppuccin-frappe .textarea[disabled],html.theme--catppuccin-frappe .input[disabled],html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-frappe .select select,fieldset[disabled] html.theme--catppuccin-frappe .textarea,fieldset[disabled] html.theme--catppuccin-frappe .input,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{background-color:#737994;border-color:#292c3c;box-shadow:none;color:#f1f4fd}html.theme--catppuccin-frappe .select select[disabled]::-moz-placeholder,html.theme--catppuccin-frappe .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-frappe .input[disabled]::-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-frappe .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-frappe .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .select select[disabled]:-moz-placeholder,html.theme--catppuccin-frappe .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-frappe .input[disabled]:-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-frappe .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-frappe .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .textarea,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-frappe .textarea[readonly],html.theme--catppuccin-frappe .input[readonly],html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-frappe .is-white.textarea,html.theme--catppuccin-frappe .is-white.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-frappe .is-white.textarea:focus,html.theme--catppuccin-frappe .is-white.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-frappe .is-white.is-focused.textarea,html.theme--catppuccin-frappe .is-white.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-white.textarea:active,html.theme--catppuccin-frappe .is-white.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-frappe .is-white.is-active.textarea,html.theme--catppuccin-frappe .is-white.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-frappe .is-black.textarea,html.theme--catppuccin-frappe .is-black.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-frappe .is-black.textarea:focus,html.theme--catppuccin-frappe .is-black.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-frappe .is-black.is-focused.textarea,html.theme--catppuccin-frappe .is-black.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-black.textarea:active,html.theme--catppuccin-frappe .is-black.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-frappe .is-black.is-active.textarea,html.theme--catppuccin-frappe .is-black.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-frappe .is-light.textarea,html.theme--catppuccin-frappe .is-light.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-frappe .is-light.textarea:focus,html.theme--catppuccin-frappe .is-light.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-frappe .is-light.is-focused.textarea,html.theme--catppuccin-frappe .is-light.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-light.textarea:active,html.theme--catppuccin-frappe .is-light.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-frappe .is-light.is-active.textarea,html.theme--catppuccin-frappe .is-light.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-frappe .is-dark.textarea,html.theme--catppuccin-frappe .content kbd.textarea,html.theme--catppuccin-frappe .is-dark.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-frappe .content kbd.input{border-color:#414559}html.theme--catppuccin-frappe .is-dark.textarea:focus,html.theme--catppuccin-frappe .content kbd.textarea:focus,html.theme--catppuccin-frappe .is-dark.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-frappe .content kbd.input:focus,html.theme--catppuccin-frappe .is-dark.is-focused.textarea,html.theme--catppuccin-frappe .content kbd.is-focused.textarea,html.theme--catppuccin-frappe .is-dark.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .content kbd.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-dark.textarea:active,html.theme--catppuccin-frappe .content kbd.textarea:active,html.theme--catppuccin-frappe .is-dark.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-frappe .content kbd.input:active,html.theme--catppuccin-frappe .is-dark.is-active.textarea,html.theme--catppuccin-frappe .content kbd.is-active.textarea,html.theme--catppuccin-frappe .is-dark.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-frappe .content kbd.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(65,69,89,0.25)}html.theme--catppuccin-frappe .is-primary.textarea,html.theme--catppuccin-frappe .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-frappe .docstring>section>a.input.docs-sourcelink{border-color:#8caaee}html.theme--catppuccin-frappe .is-primary.textarea:focus,html.theme--catppuccin-frappe .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-frappe .is-primary.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-frappe .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-frappe .is-primary.is-focused.textarea,html.theme--catppuccin-frappe .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.textarea:active,html.theme--catppuccin-frappe .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-frappe .is-primary.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-frappe .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-frappe .is-primary.is-active.textarea,html.theme--catppuccin-frappe .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-frappe .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .is-link.textarea,html.theme--catppuccin-frappe .is-link.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#8caaee}html.theme--catppuccin-frappe .is-link.textarea:focus,html.theme--catppuccin-frappe .is-link.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-frappe .is-link.is-focused.textarea,html.theme--catppuccin-frappe .is-link.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-link.textarea:active,html.theme--catppuccin-frappe .is-link.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-frappe .is-link.is-active.textarea,html.theme--catppuccin-frappe .is-link.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .is-info.textarea,html.theme--catppuccin-frappe .is-info.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#81c8be}html.theme--catppuccin-frappe .is-info.textarea:focus,html.theme--catppuccin-frappe .is-info.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-frappe .is-info.is-focused.textarea,html.theme--catppuccin-frappe .is-info.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-info.textarea:active,html.theme--catppuccin-frappe .is-info.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-frappe .is-info.is-active.textarea,html.theme--catppuccin-frappe .is-info.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(129,200,190,0.25)}html.theme--catppuccin-frappe .is-success.textarea,html.theme--catppuccin-frappe .is-success.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#a6d189}html.theme--catppuccin-frappe .is-success.textarea:focus,html.theme--catppuccin-frappe .is-success.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-frappe .is-success.is-focused.textarea,html.theme--catppuccin-frappe .is-success.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-success.textarea:active,html.theme--catppuccin-frappe .is-success.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-frappe .is-success.is-active.textarea,html.theme--catppuccin-frappe .is-success.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(166,209,137,0.25)}html.theme--catppuccin-frappe .is-warning.textarea,html.theme--catppuccin-frappe .is-warning.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#e5c890}html.theme--catppuccin-frappe .is-warning.textarea:focus,html.theme--catppuccin-frappe .is-warning.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-frappe .is-warning.is-focused.textarea,html.theme--catppuccin-frappe .is-warning.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-warning.textarea:active,html.theme--catppuccin-frappe .is-warning.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-frappe .is-warning.is-active.textarea,html.theme--catppuccin-frappe .is-warning.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(229,200,144,0.25)}html.theme--catppuccin-frappe .is-danger.textarea,html.theme--catppuccin-frappe .is-danger.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#e78284}html.theme--catppuccin-frappe .is-danger.textarea:focus,html.theme--catppuccin-frappe .is-danger.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-frappe .is-danger.is-focused.textarea,html.theme--catppuccin-frappe .is-danger.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-danger.textarea:active,html.theme--catppuccin-frappe .is-danger.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-frappe .is-danger.is-active.textarea,html.theme--catppuccin-frappe .is-danger.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(231,130,132,0.25)}html.theme--catppuccin-frappe .is-small.textarea,html.theme--catppuccin-frappe .is-small.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-frappe .is-medium.textarea,html.theme--catppuccin-frappe .is-medium.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .is-large.textarea,html.theme--catppuccin-frappe .is-large.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .is-fullwidth.textarea,html.theme--catppuccin-frappe .is-fullwidth.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-frappe .is-inline.textarea,html.theme--catppuccin-frappe .is-inline.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-frappe .input.is-rounded,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-frappe .input.is-static,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-frappe .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-frappe .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-frappe .textarea[rows]{height:initial}html.theme--catppuccin-frappe .textarea.has-fixed-size{resize:none}html.theme--catppuccin-frappe .radio,html.theme--catppuccin-frappe .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-frappe .radio input,html.theme--catppuccin-frappe .checkbox input{cursor:pointer}html.theme--catppuccin-frappe .radio:hover,html.theme--catppuccin-frappe .checkbox:hover{color:#99d1db}html.theme--catppuccin-frappe .radio[disabled],html.theme--catppuccin-frappe .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-frappe .radio,fieldset[disabled] html.theme--catppuccin-frappe .checkbox,html.theme--catppuccin-frappe .radio input[disabled],html.theme--catppuccin-frappe .checkbox input[disabled]{color:#f1f4fd;cursor:not-allowed}html.theme--catppuccin-frappe .radio+.radio{margin-left:.5em}html.theme--catppuccin-frappe .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-frappe .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-frappe .select:not(.is-multiple):not(.is-loading)::after{border-color:#8caaee;right:1.125em;z-index:4}html.theme--catppuccin-frappe .select.is-rounded select,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-frappe .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-frappe .select select::-ms-expand{display:none}html.theme--catppuccin-frappe .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-frappe .select select:hover{border-color:#292c3c}html.theme--catppuccin-frappe .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-frappe .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-frappe .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-frappe .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#99d1db}html.theme--catppuccin-frappe .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-frappe .select.is-white select{border-color:#fff}html.theme--catppuccin-frappe .select.is-white select:hover,html.theme--catppuccin-frappe .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-frappe .select.is-white select:focus,html.theme--catppuccin-frappe .select.is-white select.is-focused,html.theme--catppuccin-frappe .select.is-white select:active,html.theme--catppuccin-frappe .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-frappe .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-frappe .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-frappe .select.is-black select:hover,html.theme--catppuccin-frappe .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-frappe .select.is-black select:focus,html.theme--catppuccin-frappe .select.is-black select.is-focused,html.theme--catppuccin-frappe .select.is-black select:active,html.theme--catppuccin-frappe .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-frappe .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-frappe .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-frappe .select.is-light select:hover,html.theme--catppuccin-frappe .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-frappe .select.is-light select:focus,html.theme--catppuccin-frappe .select.is-light select.is-focused,html.theme--catppuccin-frappe .select.is-light select:active,html.theme--catppuccin-frappe .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-frappe .select.is-dark:not(:hover)::after,html.theme--catppuccin-frappe .content kbd.select:not(:hover)::after{border-color:#414559}html.theme--catppuccin-frappe .select.is-dark select,html.theme--catppuccin-frappe .content kbd.select select{border-color:#414559}html.theme--catppuccin-frappe .select.is-dark select:hover,html.theme--catppuccin-frappe .content kbd.select select:hover,html.theme--catppuccin-frappe .select.is-dark select.is-hovered,html.theme--catppuccin-frappe .content kbd.select select.is-hovered{border-color:#363a4a}html.theme--catppuccin-frappe .select.is-dark select:focus,html.theme--catppuccin-frappe .content kbd.select select:focus,html.theme--catppuccin-frappe .select.is-dark select.is-focused,html.theme--catppuccin-frappe .content kbd.select select.is-focused,html.theme--catppuccin-frappe .select.is-dark select:active,html.theme--catppuccin-frappe .content kbd.select select:active,html.theme--catppuccin-frappe .select.is-dark select.is-active,html.theme--catppuccin-frappe .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(65,69,89,0.25)}html.theme--catppuccin-frappe .select.is-primary:not(:hover)::after,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-primary select,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-primary select:hover,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-frappe .select.is-primary select.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#769aeb}html.theme--catppuccin-frappe .select.is-primary select:focus,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-frappe .select.is-primary select.is-focused,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-frappe .select.is-primary select:active,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-frappe .select.is-primary select.is-active,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .select.is-link:not(:hover)::after{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-link select{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-link select:hover,html.theme--catppuccin-frappe .select.is-link select.is-hovered{border-color:#769aeb}html.theme--catppuccin-frappe .select.is-link select:focus,html.theme--catppuccin-frappe .select.is-link select.is-focused,html.theme--catppuccin-frappe .select.is-link select:active,html.theme--catppuccin-frappe .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .select.is-info:not(:hover)::after{border-color:#81c8be}html.theme--catppuccin-frappe .select.is-info select{border-color:#81c8be}html.theme--catppuccin-frappe .select.is-info select:hover,html.theme--catppuccin-frappe .select.is-info select.is-hovered{border-color:#6fc0b5}html.theme--catppuccin-frappe .select.is-info select:focus,html.theme--catppuccin-frappe .select.is-info select.is-focused,html.theme--catppuccin-frappe .select.is-info select:active,html.theme--catppuccin-frappe .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(129,200,190,0.25)}html.theme--catppuccin-frappe .select.is-success:not(:hover)::after{border-color:#a6d189}html.theme--catppuccin-frappe .select.is-success select{border-color:#a6d189}html.theme--catppuccin-frappe .select.is-success select:hover,html.theme--catppuccin-frappe .select.is-success select.is-hovered{border-color:#98ca77}html.theme--catppuccin-frappe .select.is-success select:focus,html.theme--catppuccin-frappe .select.is-success select.is-focused,html.theme--catppuccin-frappe .select.is-success select:active,html.theme--catppuccin-frappe .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(166,209,137,0.25)}html.theme--catppuccin-frappe .select.is-warning:not(:hover)::after{border-color:#e5c890}html.theme--catppuccin-frappe .select.is-warning select{border-color:#e5c890}html.theme--catppuccin-frappe .select.is-warning select:hover,html.theme--catppuccin-frappe .select.is-warning select.is-hovered{border-color:#e0be7b}html.theme--catppuccin-frappe .select.is-warning select:focus,html.theme--catppuccin-frappe .select.is-warning select.is-focused,html.theme--catppuccin-frappe .select.is-warning select:active,html.theme--catppuccin-frappe .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(229,200,144,0.25)}html.theme--catppuccin-frappe .select.is-danger:not(:hover)::after{border-color:#e78284}html.theme--catppuccin-frappe .select.is-danger select{border-color:#e78284}html.theme--catppuccin-frappe .select.is-danger select:hover,html.theme--catppuccin-frappe .select.is-danger select.is-hovered{border-color:#e36d6f}html.theme--catppuccin-frappe .select.is-danger select:focus,html.theme--catppuccin-frappe .select.is-danger select.is-focused,html.theme--catppuccin-frappe .select.is-danger select:active,html.theme--catppuccin-frappe .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(231,130,132,0.25)}html.theme--catppuccin-frappe .select.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-frappe .select.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .select.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .select.is-disabled::after{border-color:#f1f4fd !important;opacity:0.5}html.theme--catppuccin-frappe .select.is-fullwidth{width:100%}html.theme--catppuccin-frappe .select.is-fullwidth select{width:100%}html.theme--catppuccin-frappe .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-frappe .select.is-loading.is-small:after,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-frappe .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-frappe .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-frappe .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-frappe .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .file.is-white:hover .file-cta,html.theme--catppuccin-frappe .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .file.is-white:focus .file-cta,html.theme--catppuccin-frappe .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-frappe .file.is-white:active .file-cta,html.theme--catppuccin-frappe .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-black:hover .file-cta,html.theme--catppuccin-frappe .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-black:focus .file-cta,html.theme--catppuccin-frappe .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-black:active .file-cta,html.theme--catppuccin-frappe .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-light:hover .file-cta,html.theme--catppuccin-frappe .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-light:focus .file-cta,html.theme--catppuccin-frappe .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-light:active .file-cta,html.theme--catppuccin-frappe .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-dark .file-cta,html.theme--catppuccin-frappe .content kbd.file .file-cta{background-color:#414559;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-dark:hover .file-cta,html.theme--catppuccin-frappe .content kbd.file:hover .file-cta,html.theme--catppuccin-frappe .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-frappe .content kbd.file.is-hovered .file-cta{background-color:#3c3f52;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-dark:focus .file-cta,html.theme--catppuccin-frappe .content kbd.file:focus .file-cta,html.theme--catppuccin-frappe .file.is-dark.is-focused .file-cta,html.theme--catppuccin-frappe .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(65,69,89,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-dark:active .file-cta,html.theme--catppuccin-frappe .content kbd.file:active .file-cta,html.theme--catppuccin-frappe .file.is-dark.is-active .file-cta,html.theme--catppuccin-frappe .content kbd.file.is-active .file-cta{background-color:#363a4a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-primary .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-primary:hover .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-frappe .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-primary:focus .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-frappe .file.is-primary.is-focused .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(140,170,238,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-primary:active .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-frappe .file.is-primary.is-active .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-link .file-cta{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-link:hover .file-cta,html.theme--catppuccin-frappe .file.is-link.is-hovered .file-cta{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-link:focus .file-cta,html.theme--catppuccin-frappe .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(140,170,238,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-link:active .file-cta,html.theme--catppuccin-frappe .file.is-link.is-active .file-cta{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-info .file-cta{background-color:#81c8be;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-info:hover .file-cta,html.theme--catppuccin-frappe .file.is-info.is-hovered .file-cta{background-color:#78c4b9;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-info:focus .file-cta,html.theme--catppuccin-frappe .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(129,200,190,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-info:active .file-cta,html.theme--catppuccin-frappe .file.is-info.is-active .file-cta{background-color:#6fc0b5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success .file-cta{background-color:#a6d189;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success:hover .file-cta,html.theme--catppuccin-frappe .file.is-success.is-hovered .file-cta{background-color:#9fcd80;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success:focus .file-cta,html.theme--catppuccin-frappe .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(166,209,137,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success:active .file-cta,html.theme--catppuccin-frappe .file.is-success.is-active .file-cta{background-color:#98ca77;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning .file-cta{background-color:#e5c890;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning:hover .file-cta,html.theme--catppuccin-frappe .file.is-warning.is-hovered .file-cta{background-color:#e3c386;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning:focus .file-cta,html.theme--catppuccin-frappe .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(229,200,144,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning:active .file-cta,html.theme--catppuccin-frappe .file.is-warning.is-active .file-cta{background-color:#e0be7b;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-danger .file-cta{background-color:#e78284;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-danger:hover .file-cta,html.theme--catppuccin-frappe .file.is-danger.is-hovered .file-cta{background-color:#e57779;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-danger:focus .file-cta,html.theme--catppuccin-frappe .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(231,130,132,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-danger:active .file-cta,html.theme--catppuccin-frappe .file.is-danger.is-active .file-cta{background-color:#e36d6f;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-frappe .file.is-normal{font-size:1rem}html.theme--catppuccin-frappe .file.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-frappe .file.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-frappe .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-frappe .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-frappe .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-frappe .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-frappe .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-frappe .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-frappe .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-frappe .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-frappe .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-frappe .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-frappe .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-frappe .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-frappe .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-frappe .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-frappe .file.is-centered{justify-content:center}html.theme--catppuccin-frappe .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-frappe .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-frappe .file.is-right{justify-content:flex-end}html.theme--catppuccin-frappe .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-frappe .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-frappe .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-frappe .file-label:hover .file-cta{background-color:#3c3f52;color:#b0bef1}html.theme--catppuccin-frappe .file-label:hover .file-name{border-color:#5c6279}html.theme--catppuccin-frappe .file-label:active .file-cta{background-color:#363a4a;color:#b0bef1}html.theme--catppuccin-frappe .file-label:active .file-name{border-color:#575c72}html.theme--catppuccin-frappe .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-frappe .file-cta,html.theme--catppuccin-frappe .file-name{border-color:#626880;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-frappe .file-cta{background-color:#414559;color:#c6d0f5}html.theme--catppuccin-frappe .file-name{border-color:#626880;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-frappe .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-frappe .file-icon .fa{font-size:14px}html.theme--catppuccin-frappe .label{color:#b0bef1;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-frappe .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-frappe .label.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-frappe .label.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .label.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-frappe .help.is-white{color:#fff}html.theme--catppuccin-frappe .help.is-black{color:#0a0a0a}html.theme--catppuccin-frappe .help.is-light{color:#f5f5f5}html.theme--catppuccin-frappe .help.is-dark,html.theme--catppuccin-frappe .content kbd.help{color:#414559}html.theme--catppuccin-frappe .help.is-primary,html.theme--catppuccin-frappe .docstring>section>a.help.docs-sourcelink{color:#8caaee}html.theme--catppuccin-frappe .help.is-link{color:#8caaee}html.theme--catppuccin-frappe .help.is-info{color:#81c8be}html.theme--catppuccin-frappe .help.is-success{color:#a6d189}html.theme--catppuccin-frappe .help.is-warning{color:#e5c890}html.theme--catppuccin-frappe .help.is-danger{color:#e78284}html.theme--catppuccin-frappe .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-frappe .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-frappe .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-frappe .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-frappe .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-frappe .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-frappe .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-frappe .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-frappe .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-frappe .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .field.is-horizontal{display:flex}}html.theme--catppuccin-frappe .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-frappe .field-label.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-frappe .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-frappe .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-frappe .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-frappe .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-frappe .field-body .field{margin-bottom:0}html.theme--catppuccin-frappe .field-body>.field{flex-shrink:1}html.theme--catppuccin-frappe .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-frappe .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-frappe .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-frappe .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select:focus~.icon{color:#414559}html.theme--catppuccin-frappe .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-frappe .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-frappe .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-frappe .control.has-icons-left .icon,html.theme--catppuccin-frappe .control.has-icons-right .icon{color:#626880;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-frappe .control.has-icons-left .input,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-frappe .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-frappe .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-frappe .control.has-icons-right .input,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-frappe .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-frappe .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-frappe .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-frappe .control.is-loading.is-small:after,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-frappe .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-frappe .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-frappe .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-frappe .breadcrumb a{align-items:center;color:#8caaee;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-frappe .breadcrumb a:hover{color:#99d1db}html.theme--catppuccin-frappe .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-frappe .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-frappe .breadcrumb li.is-active a{color:#b0bef1;cursor:default;pointer-events:none}html.theme--catppuccin-frappe .breadcrumb li+li::before{color:#737994;content:"\0002f"}html.theme--catppuccin-frappe .breadcrumb ul,html.theme--catppuccin-frappe .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-frappe .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-frappe .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-frappe .breadcrumb.is-centered ol,html.theme--catppuccin-frappe .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-frappe .breadcrumb.is-right ol,html.theme--catppuccin-frappe .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-frappe .breadcrumb.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-frappe .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-frappe .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-frappe .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-frappe .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-frappe .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#c6d0f5;max-width:100%;position:relative}html.theme--catppuccin-frappe .card-footer:first-child,html.theme--catppuccin-frappe .card-content:first-child,html.theme--catppuccin-frappe .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-frappe .card-footer:last-child,html.theme--catppuccin-frappe .card-content:last-child,html.theme--catppuccin-frappe .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-frappe .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-frappe .card-header-title{align-items:center;color:#b0bef1;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-frappe .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-frappe .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-frappe .card-image{display:block;position:relative}html.theme--catppuccin-frappe .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-frappe .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-frappe .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-frappe .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-frappe .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-frappe .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-frappe .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-frappe .dropdown.is-active .dropdown-menu,html.theme--catppuccin-frappe .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-frappe .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-frappe .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-frappe .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-frappe .dropdown-content{background-color:#292c3c;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-frappe .dropdown-item{color:#c6d0f5;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-frappe a.dropdown-item,html.theme--catppuccin-frappe button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-frappe a.dropdown-item:hover,html.theme--catppuccin-frappe button.dropdown-item:hover{background-color:#292c3c;color:#0a0a0a}html.theme--catppuccin-frappe a.dropdown-item.is-active,html.theme--catppuccin-frappe button.dropdown-item.is-active{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-frappe .level{align-items:center;justify-content:space-between}html.theme--catppuccin-frappe .level code{border-radius:.4em}html.theme--catppuccin-frappe .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-frappe .level.is-mobile{display:flex}html.theme--catppuccin-frappe .level.is-mobile .level-left,html.theme--catppuccin-frappe .level.is-mobile .level-right{display:flex}html.theme--catppuccin-frappe .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-frappe .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-frappe .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level{display:flex}html.theme--catppuccin-frappe .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-frappe .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-frappe .level-item .title,html.theme--catppuccin-frappe .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-frappe .level-left,html.theme--catppuccin-frappe .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .level-left .level-item.is-flexible,html.theme--catppuccin-frappe .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level-left .level-item:not(:last-child),html.theme--catppuccin-frappe .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-frappe .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level-left{display:flex}}html.theme--catppuccin-frappe .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level-right{display:flex}}html.theme--catppuccin-frappe .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-frappe .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-frappe .media .media{border-top:1px solid rgba(98,104,128,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-frappe .media .media .content:not(:last-child),html.theme--catppuccin-frappe .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-frappe .media .media .media{padding-top:.5rem}html.theme--catppuccin-frappe .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-frappe .media+.media{border-top:1px solid rgba(98,104,128,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-frappe .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-frappe .media-left,html.theme--catppuccin-frappe .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .media-left{margin-right:1rem}html.theme--catppuccin-frappe .media-right{margin-left:1rem}html.theme--catppuccin-frappe .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .media-content{overflow-x:auto}}html.theme--catppuccin-frappe .menu{font-size:1rem}html.theme--catppuccin-frappe .menu.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-frappe .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .menu.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .menu-list{line-height:1.25}html.theme--catppuccin-frappe .menu-list a{border-radius:3px;color:#c6d0f5;display:block;padding:0.5em 0.75em}html.theme--catppuccin-frappe .menu-list a:hover{background-color:#292c3c;color:#b0bef1}html.theme--catppuccin-frappe .menu-list a.is-active{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .menu-list li ul{border-left:1px solid #626880;margin:.75em;padding-left:.75em}html.theme--catppuccin-frappe .menu-label{color:#f1f4fd;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-frappe .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-frappe .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-frappe .message{background-color:#292c3c;border-radius:.4em;font-size:1rem}html.theme--catppuccin-frappe .message strong{color:currentColor}html.theme--catppuccin-frappe .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-frappe .message.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-frappe .message.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .message.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .message.is-white{background-color:#fff}html.theme--catppuccin-frappe .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-frappe .message.is-black{background-color:#fafafa}html.theme--catppuccin-frappe .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-frappe .message.is-light{background-color:#fafafa}html.theme--catppuccin-frappe .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-frappe .message.is-dark,html.theme--catppuccin-frappe .content kbd.message{background-color:#f9f9fb}html.theme--catppuccin-frappe .message.is-dark .message-header,html.theme--catppuccin-frappe .content kbd.message .message-header{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .message.is-dark .message-body,html.theme--catppuccin-frappe .content kbd.message .message-body{border-color:#414559}html.theme--catppuccin-frappe .message.is-primary,html.theme--catppuccin-frappe .docstring>section>a.message.docs-sourcelink{background-color:#edf2fc}html.theme--catppuccin-frappe .message.is-primary .message-header,html.theme--catppuccin-frappe .docstring>section>a.message.docs-sourcelink .message-header{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .message.is-primary .message-body,html.theme--catppuccin-frappe .docstring>section>a.message.docs-sourcelink .message-body{border-color:#8caaee;color:#153a8e}html.theme--catppuccin-frappe .message.is-link{background-color:#edf2fc}html.theme--catppuccin-frappe .message.is-link .message-header{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .message.is-link .message-body{border-color:#8caaee;color:#153a8e}html.theme--catppuccin-frappe .message.is-info{background-color:#f1f9f8}html.theme--catppuccin-frappe .message.is-info .message-header{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-info .message-body{border-color:#81c8be;color:#2d675f}html.theme--catppuccin-frappe .message.is-success{background-color:#f4f9f0}html.theme--catppuccin-frappe .message.is-success .message-header{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-success .message-body{border-color:#a6d189;color:#446a29}html.theme--catppuccin-frappe .message.is-warning{background-color:#fbf7ee}html.theme--catppuccin-frappe .message.is-warning .message-header{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-warning .message-body{border-color:#e5c890;color:#78591c}html.theme--catppuccin-frappe .message.is-danger{background-color:#fceeee}html.theme--catppuccin-frappe .message.is-danger .message-header{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .message.is-danger .message-body{border-color:#e78284;color:#9a1e20}html.theme--catppuccin-frappe .message-header{align-items:center;background-color:#c6d0f5;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-frappe .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-frappe .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-frappe .message-body{border-color:#626880;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#c6d0f5;padding:1.25em 1.5em}html.theme--catppuccin-frappe .message-body code,html.theme--catppuccin-frappe .message-body pre{background-color:#fff}html.theme--catppuccin-frappe .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-frappe .modal.is-active{display:flex}html.theme--catppuccin-frappe .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-frappe .modal-content,html.theme--catppuccin-frappe .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-frappe .modal-content,html.theme--catppuccin-frappe .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-frappe .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-frappe .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-frappe .modal-card-head,html.theme--catppuccin-frappe .modal-card-foot{align-items:center;background-color:#292c3c;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-frappe .modal-card-head{border-bottom:1px solid #626880;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-frappe .modal-card-title{color:#c6d0f5;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-frappe .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #626880}html.theme--catppuccin-frappe .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-frappe .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#303446;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-frappe .navbar{background-color:#8caaee;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-frappe .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-frappe .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-frappe .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-dark,html.theme--catppuccin-frappe .content kbd.navbar{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-burger,html.theme--catppuccin-frappe .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#414559;color:#fff}}html.theme--catppuccin-frappe .navbar.is-primary,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-burger,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8caaee;color:#fff}}html.theme--catppuccin-frappe .navbar.is-link{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#8caaee;color:#fff}}html.theme--catppuccin-frappe .navbar.is-info{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#81c8be;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-success{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#a6d189;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-warning{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#e5c890;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-danger{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#e78284;color:#fff}}html.theme--catppuccin-frappe .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-frappe .navbar.has-shadow{box-shadow:0 2px 0 0 #292c3c}html.theme--catppuccin-frappe .navbar.is-fixed-bottom,html.theme--catppuccin-frappe .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-frappe .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-frappe .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #292c3c}html.theme--catppuccin-frappe .navbar.is-fixed-top{top:0}html.theme--catppuccin-frappe html.has-navbar-fixed-top,html.theme--catppuccin-frappe body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-frappe html.has-navbar-fixed-bottom,html.theme--catppuccin-frappe body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-frappe .navbar-brand,html.theme--catppuccin-frappe .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-frappe .navbar-brand a.navbar-item:focus,html.theme--catppuccin-frappe .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-frappe .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-frappe .navbar-burger{color:#c6d0f5;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-frappe .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-frappe .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-frappe .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-frappe .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-frappe .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-frappe .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-frappe .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-frappe .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-frappe .navbar-menu{display:none}html.theme--catppuccin-frappe .navbar-item,html.theme--catppuccin-frappe .navbar-link{color:#c6d0f5;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-frappe .navbar-item .icon:only-child,html.theme--catppuccin-frappe .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-frappe a.navbar-item,html.theme--catppuccin-frappe .navbar-link{cursor:pointer}html.theme--catppuccin-frappe a.navbar-item:focus,html.theme--catppuccin-frappe a.navbar-item:focus-within,html.theme--catppuccin-frappe a.navbar-item:hover,html.theme--catppuccin-frappe a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar-link:focus,html.theme--catppuccin-frappe .navbar-link:focus-within,html.theme--catppuccin-frappe .navbar-link:hover,html.theme--catppuccin-frappe .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#8caaee}html.theme--catppuccin-frappe .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .navbar-item img{max-height:1.75rem}html.theme--catppuccin-frappe .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-frappe .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-frappe .navbar-item.is-tab:focus,html.theme--catppuccin-frappe .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#8caaee}html.theme--catppuccin-frappe .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#8caaee;border-bottom-style:solid;border-bottom-width:3px;color:#8caaee;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-frappe .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-frappe .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-frappe .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-frappe .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-frappe .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .navbar>.container{display:block}html.theme--catppuccin-frappe .navbar-brand .navbar-item,html.theme--catppuccin-frappe .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-frappe .navbar-link::after{display:none}html.theme--catppuccin-frappe .navbar-menu{background-color:#8caaee;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-frappe .navbar-menu.is-active{display:block}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-touch,html.theme--catppuccin-frappe .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-frappe .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-frappe .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-frappe html.has-navbar-fixed-top-touch,html.theme--catppuccin-frappe body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-frappe html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-frappe body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar,html.theme--catppuccin-frappe .navbar-menu,html.theme--catppuccin-frappe .navbar-start,html.theme--catppuccin-frappe .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-frappe .navbar{min-height:4rem}html.theme--catppuccin-frappe .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-frappe .navbar.is-spaced .navbar-start,html.theme--catppuccin-frappe .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-frappe .navbar.is-spaced a.navbar-item,html.theme--catppuccin-frappe .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-frappe .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-frappe .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#838ba7}html.theme--catppuccin-frappe .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8caaee}html.theme--catppuccin-frappe .navbar-burger{display:none}html.theme--catppuccin-frappe .navbar-item,html.theme--catppuccin-frappe .navbar-link{align-items:center;display:flex}html.theme--catppuccin-frappe .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-frappe .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-frappe .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-frappe .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-frappe .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-frappe .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-frappe .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-frappe .navbar-dropdown{background-color:#8caaee;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-frappe .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#838ba7}html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8caaee}.navbar.is-spaced html.theme--catppuccin-frappe .navbar-dropdown,html.theme--catppuccin-frappe .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-frappe .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-frappe .navbar-divider{display:block}html.theme--catppuccin-frappe .navbar>.container .navbar-brand,html.theme--catppuccin-frappe .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-frappe .navbar>.container .navbar-menu,html.theme--catppuccin-frappe .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-frappe .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-frappe html.has-navbar-fixed-top-desktop,html.theme--catppuccin-frappe body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-frappe html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-frappe body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-frappe html.has-spaced-navbar-fixed-top,html.theme--catppuccin-frappe body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-frappe html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-frappe body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-frappe a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar-link.is-active{color:#8caaee}html.theme--catppuccin-frappe a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-frappe .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-frappe .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-frappe .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-frappe .pagination.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-frappe .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .pagination.is-rounded .pagination-previous,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-frappe .pagination.is-rounded .pagination-next,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-frappe .pagination.is-rounded .pagination-link,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-frappe .pagination,html.theme--catppuccin-frappe .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link{border-color:#626880;color:#8caaee;min-width:2.5em}html.theme--catppuccin-frappe .pagination-previous:hover,html.theme--catppuccin-frappe .pagination-next:hover,html.theme--catppuccin-frappe .pagination-link:hover{border-color:#737994;color:#99d1db}html.theme--catppuccin-frappe .pagination-previous:focus,html.theme--catppuccin-frappe .pagination-next:focus,html.theme--catppuccin-frappe .pagination-link:focus{border-color:#737994}html.theme--catppuccin-frappe .pagination-previous:active,html.theme--catppuccin-frappe .pagination-next:active,html.theme--catppuccin-frappe .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-frappe .pagination-previous[disabled],html.theme--catppuccin-frappe .pagination-previous.is-disabled,html.theme--catppuccin-frappe .pagination-next[disabled],html.theme--catppuccin-frappe .pagination-next.is-disabled,html.theme--catppuccin-frappe .pagination-link[disabled],html.theme--catppuccin-frappe .pagination-link.is-disabled{background-color:#626880;border-color:#626880;box-shadow:none;color:#f1f4fd;opacity:0.5}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-frappe .pagination-link.is-current{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .pagination-ellipsis{color:#737994;pointer-events:none}html.theme--catppuccin-frappe .pagination-list{flex-wrap:wrap}html.theme--catppuccin-frappe .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .pagination{flex-wrap:wrap}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-frappe .pagination-previous{order:2}html.theme--catppuccin-frappe .pagination-next{order:3}html.theme--catppuccin-frappe .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-frappe .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-frappe .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-frappe .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-frappe .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-frappe .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-frappe .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-frappe .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-frappe .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-frappe .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-frappe .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-frappe .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-frappe .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-frappe .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-frappe .panel.is-dark .panel-heading,html.theme--catppuccin-frappe .content kbd.panel .panel-heading{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-frappe .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#414559}html.theme--catppuccin-frappe .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-frappe .content kbd.panel .panel-block.is-active .panel-icon{color:#414559}html.theme--catppuccin-frappe .panel.is-primary .panel-heading,html.theme--catppuccin-frappe .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-frappe .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#8caaee}html.theme--catppuccin-frappe .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-frappe .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#8caaee}html.theme--catppuccin-frappe .panel.is-link .panel-heading{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .panel.is-link .panel-tabs a.is-active{border-bottom-color:#8caaee}html.theme--catppuccin-frappe .panel.is-link .panel-block.is-active .panel-icon{color:#8caaee}html.theme--catppuccin-frappe .panel.is-info .panel-heading{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-info .panel-tabs a.is-active{border-bottom-color:#81c8be}html.theme--catppuccin-frappe .panel.is-info .panel-block.is-active .panel-icon{color:#81c8be}html.theme--catppuccin-frappe .panel.is-success .panel-heading{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-success .panel-tabs a.is-active{border-bottom-color:#a6d189}html.theme--catppuccin-frappe .panel.is-success .panel-block.is-active .panel-icon{color:#a6d189}html.theme--catppuccin-frappe .panel.is-warning .panel-heading{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#e5c890}html.theme--catppuccin-frappe .panel.is-warning .panel-block.is-active .panel-icon{color:#e5c890}html.theme--catppuccin-frappe .panel.is-danger .panel-heading{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#e78284}html.theme--catppuccin-frappe .panel.is-danger .panel-block.is-active .panel-icon{color:#e78284}html.theme--catppuccin-frappe .panel-tabs:not(:last-child),html.theme--catppuccin-frappe .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-frappe .panel-heading{background-color:#51576d;border-radius:8px 8px 0 0;color:#b0bef1;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-frappe .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-frappe .panel-tabs a{border-bottom:1px solid #626880;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-frappe .panel-tabs a.is-active{border-bottom-color:#51576d;color:#769aeb}html.theme--catppuccin-frappe .panel-list a{color:#c6d0f5}html.theme--catppuccin-frappe .panel-list a:hover{color:#8caaee}html.theme--catppuccin-frappe .panel-block{align-items:center;color:#b0bef1;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-frappe .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-frappe .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-frappe .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-frappe .panel-block.is-active{border-left-color:#8caaee;color:#769aeb}html.theme--catppuccin-frappe .panel-block.is-active .panel-icon{color:#8caaee}html.theme--catppuccin-frappe .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-frappe a.panel-block,html.theme--catppuccin-frappe label.panel-block{cursor:pointer}html.theme--catppuccin-frappe a.panel-block:hover,html.theme--catppuccin-frappe label.panel-block:hover{background-color:#292c3c}html.theme--catppuccin-frappe .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#f1f4fd;margin-right:.75em}html.theme--catppuccin-frappe .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-frappe .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-frappe .tabs a{align-items:center;border-bottom-color:#626880;border-bottom-style:solid;border-bottom-width:1px;color:#c6d0f5;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-frappe .tabs a:hover{border-bottom-color:#b0bef1;color:#b0bef1}html.theme--catppuccin-frappe .tabs li{display:block}html.theme--catppuccin-frappe .tabs li.is-active a{border-bottom-color:#8caaee;color:#8caaee}html.theme--catppuccin-frappe .tabs ul{align-items:center;border-bottom-color:#626880;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-frappe .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-frappe .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-frappe .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-frappe .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-frappe .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-frappe .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-frappe .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-frappe .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-frappe .tabs.is-boxed a:hover{background-color:#292c3c;border-bottom-color:#626880}html.theme--catppuccin-frappe .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#626880;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-frappe .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-frappe .tabs.is-toggle a{border-color:#626880;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-frappe .tabs.is-toggle a:hover{background-color:#292c3c;border-color:#737994;z-index:2}html.theme--catppuccin-frappe .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-frappe .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-frappe .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-frappe .tabs.is-toggle li.is-active a{background-color:#8caaee;border-color:#8caaee;color:#fff;z-index:1}html.theme--catppuccin-frappe .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-frappe .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-frappe .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-frappe .tabs.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-frappe .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .column.is-narrow,html.theme--catppuccin-frappe .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full,html.theme--catppuccin-frappe .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters,html.theme--catppuccin-frappe .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds,html.theme--catppuccin-frappe .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half,html.theme--catppuccin-frappe .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third,html.theme--catppuccin-frappe .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter,html.theme--catppuccin-frappe .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth,html.theme--catppuccin-frappe .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths,html.theme--catppuccin-frappe .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths,html.theme--catppuccin-frappe .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths,html.theme--catppuccin-frappe .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters,html.theme--catppuccin-frappe .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds,html.theme--catppuccin-frappe .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half,html.theme--catppuccin-frappe .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third,html.theme--catppuccin-frappe .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter,html.theme--catppuccin-frappe .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth,html.theme--catppuccin-frappe .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths,html.theme--catppuccin-frappe .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths,html.theme--catppuccin-frappe .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths,html.theme--catppuccin-frappe .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-frappe .column.is-0,html.theme--catppuccin-frappe .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0,html.theme--catppuccin-frappe .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-frappe .column.is-1,html.theme--catppuccin-frappe .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1,html.theme--catppuccin-frappe .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2,html.theme--catppuccin-frappe .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2,html.theme--catppuccin-frappe .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3,html.theme--catppuccin-frappe .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3,html.theme--catppuccin-frappe .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-frappe .column.is-4,html.theme--catppuccin-frappe .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4,html.theme--catppuccin-frappe .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5,html.theme--catppuccin-frappe .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5,html.theme--catppuccin-frappe .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6,html.theme--catppuccin-frappe .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6,html.theme--catppuccin-frappe .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-frappe .column.is-7,html.theme--catppuccin-frappe .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7,html.theme--catppuccin-frappe .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8,html.theme--catppuccin-frappe .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8,html.theme--catppuccin-frappe .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9,html.theme--catppuccin-frappe .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9,html.theme--catppuccin-frappe .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-frappe .column.is-10,html.theme--catppuccin-frappe .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10,html.theme--catppuccin-frappe .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11,html.theme--catppuccin-frappe .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11,html.theme--catppuccin-frappe .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12,html.theme--catppuccin-frappe .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12,html.theme--catppuccin-frappe .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-frappe .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-frappe .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-frappe .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-frappe .columns.is-centered{justify-content:center}html.theme--catppuccin-frappe .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-frappe .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-frappe .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-frappe .columns.is-mobile{display:flex}html.theme--catppuccin-frappe .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-frappe .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-desktop{display:flex}}html.theme--catppuccin-frappe .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-frappe .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-frappe .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-frappe .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-frappe .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-frappe .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-frappe .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-frappe .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-frappe .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-frappe .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-frappe .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-frappe .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-frappe .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-frappe .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-frappe .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-frappe .tile.is-child{margin:0 !important}html.theme--catppuccin-frappe .tile.is-parent{padding:.75rem}html.theme--catppuccin-frappe .tile.is-vertical{flex-direction:column}html.theme--catppuccin-frappe .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .tile:not(.is-child){display:flex}html.theme--catppuccin-frappe .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .tile.is-3{flex:none;width:25%}html.theme--catppuccin-frappe .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .tile.is-6{flex:none;width:50%}html.theme--catppuccin-frappe .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .tile.is-9{flex:none;width:75%}html.theme--catppuccin-frappe .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-frappe .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-frappe .hero .navbar{background:none}html.theme--catppuccin-frappe .hero .tabs ul{border-bottom:none}html.theme--catppuccin-frappe .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-white strong{color:inherit}html.theme--catppuccin-frappe .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-frappe .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-frappe .hero.is-white .navbar-item,html.theme--catppuccin-frappe .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-frappe .hero.is-white a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-white .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-frappe .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-frappe .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-black strong{color:inherit}html.theme--catppuccin-frappe .hero.is-black .title{color:#fff}html.theme--catppuccin-frappe .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-frappe .hero.is-black .navbar-item,html.theme--catppuccin-frappe .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-black a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-black .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-frappe .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-frappe .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-light strong{color:inherit}html.theme--catppuccin-frappe .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-frappe .hero.is-light .navbar-item,html.theme--catppuccin-frappe .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-light .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-frappe .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-frappe .hero.is-dark,html.theme--catppuccin-frappe .content kbd.hero{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-dark strong,html.theme--catppuccin-frappe .content kbd.hero strong{color:inherit}html.theme--catppuccin-frappe .hero.is-dark .title,html.theme--catppuccin-frappe .content kbd.hero .title{color:#fff}html.theme--catppuccin-frappe .hero.is-dark .subtitle,html.theme--catppuccin-frappe .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-frappe .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-dark .subtitle strong,html.theme--catppuccin-frappe .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-dark .navbar-menu,html.theme--catppuccin-frappe .content kbd.hero .navbar-menu{background-color:#414559}}html.theme--catppuccin-frappe .hero.is-dark .navbar-item,html.theme--catppuccin-frappe .content kbd.hero .navbar-item,html.theme--catppuccin-frappe .hero.is-dark .navbar-link,html.theme--catppuccin-frappe .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-dark .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.hero .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.hero .navbar-link.is-active{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .hero.is-dark .tabs a,html.theme--catppuccin-frappe .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-dark .tabs a:hover,html.theme--catppuccin-frappe .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-frappe .content kbd.hero .tabs li.is-active a{color:#414559 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#414559}html.theme--catppuccin-frappe .hero.is-dark.is-bold,html.theme--catppuccin-frappe .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #262f41 0%, #414559 71%, #47476c 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-frappe .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #262f41 0%, #414559 71%, #47476c 100%)}}html.theme--catppuccin-frappe .hero.is-primary,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-primary strong,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-frappe .hero.is-primary .title,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-frappe .hero.is-primary .subtitle,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-primary .subtitle strong,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-primary .navbar-menu,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#8caaee}}html.theme--catppuccin-frappe .hero.is-primary .navbar-item,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-frappe .hero.is-primary .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-primary .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .hero.is-primary .tabs a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-primary .tabs a:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#8caaee !important;opacity:1}html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .hero.is-primary.is-bold,html.theme--catppuccin-frappe .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-frappe .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}}html.theme--catppuccin-frappe .hero.is-link{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-link strong{color:inherit}html.theme--catppuccin-frappe .hero.is-link .title{color:#fff}html.theme--catppuccin-frappe .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-link .navbar-menu{background-color:#8caaee}}html.theme--catppuccin-frappe .hero.is-link .navbar-item,html.theme--catppuccin-frappe .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-link a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-link .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-link .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-link .tabs li.is-active a{color:#8caaee !important;opacity:1}html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .hero.is-link.is-bold{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}}html.theme--catppuccin-frappe .hero.is-info{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-info strong{color:inherit}html.theme--catppuccin-frappe .hero.is-info .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-info .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-info .navbar-menu{background-color:#81c8be}}html.theme--catppuccin-frappe .hero.is-info .navbar-item,html.theme--catppuccin-frappe .hero.is-info .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-info .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-info .navbar-link.is-active{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-info .tabs li.is-active a{color:#81c8be !important;opacity:1}html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#81c8be}html.theme--catppuccin-frappe .hero.is-info.is-bold{background-image:linear-gradient(141deg, #52c4a1 0%, #81c8be 71%, #8fd2d4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #52c4a1 0%, #81c8be 71%, #8fd2d4 100%)}}html.theme--catppuccin-frappe .hero.is-success{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-success strong{color:inherit}html.theme--catppuccin-frappe .hero.is-success .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-success .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-success .navbar-menu{background-color:#a6d189}}html.theme--catppuccin-frappe .hero.is-success .navbar-item,html.theme--catppuccin-frappe .hero.is-success .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-success .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-success .navbar-link.is-active{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-success .tabs li.is-active a{color:#a6d189 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#a6d189}html.theme--catppuccin-frappe .hero.is-success.is-bold{background-image:linear-gradient(141deg, #9ccd5a 0%, #a6d189 71%, #a8dc98 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #9ccd5a 0%, #a6d189 71%, #a8dc98 100%)}}html.theme--catppuccin-frappe .hero.is-warning{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-warning strong{color:inherit}html.theme--catppuccin-frappe .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-warning .navbar-menu{background-color:#e5c890}}html.theme--catppuccin-frappe .hero.is-warning .navbar-item,html.theme--catppuccin-frappe .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-warning .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-warning .navbar-link.is-active{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-warning .tabs li.is-active a{color:#e5c890 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#e5c890}html.theme--catppuccin-frappe .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #e5a05d 0%, #e5c890 71%, #ede0a2 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e5a05d 0%, #e5c890 71%, #ede0a2 100%)}}html.theme--catppuccin-frappe .hero.is-danger{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-danger strong{color:inherit}html.theme--catppuccin-frappe .hero.is-danger .title{color:#fff}html.theme--catppuccin-frappe .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-danger .navbar-menu{background-color:#e78284}}html.theme--catppuccin-frappe .hero.is-danger .navbar-item,html.theme--catppuccin-frappe .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-danger .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-danger .navbar-link.is-active{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-danger .tabs li.is-active a{color:#e78284 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#e78284}html.theme--catppuccin-frappe .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #e94d6a 0%, #e78284 71%, #eea294 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e94d6a 0%, #e78284 71%, #eea294 100%)}}html.theme--catppuccin-frappe .hero.is-small .hero-body,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-frappe .hero.is-halfheight .hero-body,html.theme--catppuccin-frappe .hero.is-fullheight .hero-body,html.theme--catppuccin-frappe .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-frappe .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-frappe .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-frappe .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-frappe .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-frappe .hero-video{overflow:hidden}html.theme--catppuccin-frappe .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-frappe .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero-video{display:none}}html.theme--catppuccin-frappe .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero-buttons .button{display:flex}html.theme--catppuccin-frappe .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-frappe .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-frappe .hero-head,html.theme--catppuccin-frappe .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero-body{padding:3rem 3rem}}html.theme--catppuccin-frappe .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .section{padding:3rem 3rem}html.theme--catppuccin-frappe .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-frappe .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-frappe .footer{background-color:#292c3c;padding:3rem 1.5rem 6rem}html.theme--catppuccin-frappe h1 .docs-heading-anchor,html.theme--catppuccin-frappe h1 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h1 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h2 .docs-heading-anchor,html.theme--catppuccin-frappe h2 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h2 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h3 .docs-heading-anchor,html.theme--catppuccin-frappe h3 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h3 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h4 .docs-heading-anchor,html.theme--catppuccin-frappe h4 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h4 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h5 .docs-heading-anchor,html.theme--catppuccin-frappe h5 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h5 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h6 .docs-heading-anchor,html.theme--catppuccin-frappe h6 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h6 .docs-heading-anchor:visited{color:#c6d0f5}html.theme--catppuccin-frappe h1 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h2 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h3 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h4 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h5 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-frappe h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-frappe h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-frappe .docs-light-only{display:none !important}html.theme--catppuccin-frappe pre{position:relative;overflow:hidden}html.theme--catppuccin-frappe pre code,html.theme--catppuccin-frappe pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-frappe pre code:first-of-type,html.theme--catppuccin-frappe pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-frappe pre code:last-of-type,html.theme--catppuccin-frappe pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-frappe pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#c6d0f5;cursor:pointer;text-align:center}html.theme--catppuccin-frappe pre .copy-button:focus,html.theme--catppuccin-frappe pre .copy-button:hover{opacity:1;background:rgba(198,208,245,0.1);color:#8caaee}html.theme--catppuccin-frappe pre .copy-button.success{color:#a6d189;opacity:1}html.theme--catppuccin-frappe pre .copy-button.error{color:#e78284;opacity:1}html.theme--catppuccin-frappe pre:hover .copy-button{opacity:1}html.theme--catppuccin-frappe .admonition{background-color:#292c3c;border-style:solid;border-width:2px;border-color:#b5bfe2;border-radius:4px;font-size:1rem}html.theme--catppuccin-frappe .admonition strong{color:currentColor}html.theme--catppuccin-frappe .admonition.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-frappe .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .admonition.is-default{background-color:#292c3c;border-color:#b5bfe2}html.theme--catppuccin-frappe .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#b5bfe2}html.theme--catppuccin-frappe .admonition.is-default>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-info{background-color:#292c3c;border-color:#81c8be}html.theme--catppuccin-frappe .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#81c8be}html.theme--catppuccin-frappe .admonition.is-info>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-success{background-color:#292c3c;border-color:#a6d189}html.theme--catppuccin-frappe .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#a6d189}html.theme--catppuccin-frappe .admonition.is-success>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-warning{background-color:#292c3c;border-color:#e5c890}html.theme--catppuccin-frappe .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#e5c890}html.theme--catppuccin-frappe .admonition.is-warning>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-danger{background-color:#292c3c;border-color:#e78284}html.theme--catppuccin-frappe .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#e78284}html.theme--catppuccin-frappe .admonition.is-danger>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-compat{background-color:#292c3c;border-color:#99d1db}html.theme--catppuccin-frappe .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#99d1db}html.theme--catppuccin-frappe .admonition.is-compat>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition-header{color:#b5bfe2;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-frappe .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-frappe details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-frappe details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-frappe details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-frappe .admonition-body{color:#c6d0f5;padding:0.5rem .75rem}html.theme--catppuccin-frappe .admonition-body pre{background-color:#292c3c}html.theme--catppuccin-frappe .admonition-body code{background-color:#292c3c}html.theme--catppuccin-frappe .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #626880;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-frappe .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#292c3c;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #626880;overflow:auto}html.theme--catppuccin-frappe .docstring>header code{background-color:transparent}html.theme--catppuccin-frappe .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-frappe .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-frappe .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-frappe .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #626880}html.theme--catppuccin-frappe .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-frappe .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-frappe .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-frappe .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-frappe .documenter-example-output{background-color:#303446}html.theme--catppuccin-frappe .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#292c3c;color:#c6d0f5;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-frappe .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-frappe .outdated-warning-overlay a{color:#8caaee}html.theme--catppuccin-frappe .outdated-warning-overlay a:hover{color:#99d1db}html.theme--catppuccin-frappe .content pre{border:2px solid #626880;border-radius:4px}html.theme--catppuccin-frappe .content code{font-weight:inherit}html.theme--catppuccin-frappe .content a code{color:#8caaee}html.theme--catppuccin-frappe .content a:hover code{color:#99d1db}html.theme--catppuccin-frappe .content h1 code,html.theme--catppuccin-frappe .content h2 code,html.theme--catppuccin-frappe .content h3 code,html.theme--catppuccin-frappe .content h4 code,html.theme--catppuccin-frappe .content h5 code,html.theme--catppuccin-frappe .content h6 code{color:#c6d0f5}html.theme--catppuccin-frappe .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-frappe .content blockquote>ul:first-child,html.theme--catppuccin-frappe .content blockquote>ol:first-child,html.theme--catppuccin-frappe .content .admonition-body>ul:first-child,html.theme--catppuccin-frappe .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-frappe pre,html.theme--catppuccin-frappe code{font-variant-ligatures:no-contextual}html.theme--catppuccin-frappe .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-frappe .breadcrumb a.is-disabled,html.theme--catppuccin-frappe .breadcrumb a.is-disabled:hover{color:#b0bef1}html.theme--catppuccin-frappe .hljs{background:initial !important}html.theme--catppuccin-frappe .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-frappe .katex-display,html.theme--catppuccin-frappe mjx-container,html.theme--catppuccin-frappe .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-frappe html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-frappe li.no-marker{list-style:none}html.theme--catppuccin-frappe #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-frappe #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main{width:100%}html.theme--catppuccin-frappe #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-frappe #documenter .docs-main>header,html.theme--catppuccin-frappe #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar{background-color:#303446;border-bottom:1px solid #626880;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-frappe #documenter .docs-main section.footnotes{border-top:1px solid #626880}html.theme--catppuccin-frappe #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-frappe #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-frappe #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-frappe .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #626880;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-frappe #documenter .docs-sidebar{display:flex;flex-direction:column;color:#c6d0f5;background-color:#292c3c;border-right:1px solid #626880;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-frappe #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name a:hover{color:#c6d0f5}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #626880;display:none;padding:0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #626880;padding-bottom:1.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #626880}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#c6d0f5;background:#292c3c}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#c6d0f5;background-color:#313548}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #626880;border-bottom:1px solid #626880;background-color:#232634}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#232634;color:#c6d0f5}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#313548;color:#c6d0f5}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #626880}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-frappe #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3a3e54}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#4a506c}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-frappe #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-frappe #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3a3e54}html.theme--catppuccin-frappe #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#4a506c}}html.theme--catppuccin-frappe kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-frappe .search-min-width-50{min-width:50%}html.theme--catppuccin-frappe .search-min-height-100{min-height:100%}html.theme--catppuccin-frappe .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-frappe .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-frappe .search-result-link:hover,html.theme--catppuccin-frappe .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-frappe .search-result-link .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-frappe .property-search-result-badge,html.theme--catppuccin-frappe .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-frappe .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:hover .search-filter,html.theme--catppuccin-frappe .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-frappe .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-frappe .search-filter:hover,html.theme--catppuccin-frappe .search-filter:focus{color:#333}html.theme--catppuccin-frappe .search-filter-selected{color:#414559;background-color:#babbf1}html.theme--catppuccin-frappe .search-filter-selected:hover,html.theme--catppuccin-frappe .search-filter-selected:focus{color:#414559}html.theme--catppuccin-frappe .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-frappe .search-divider{border-bottom:1px solid #626880}html.theme--catppuccin-frappe .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-frappe .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-frappe #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-frappe #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-frappe #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-frappe #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-frappe #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-frappe #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-frappe .w-100{width:100%}html.theme--catppuccin-frappe .gap-2{gap:0.5rem}html.theme--catppuccin-frappe .gap-4{gap:1rem}html.theme--catppuccin-frappe .gap-8{gap:2rem}html.theme--catppuccin-frappe{background-color:#303446;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-frappe a{transition:all 200ms ease}html.theme--catppuccin-frappe .label{color:#c6d0f5}html.theme--catppuccin-frappe .button,html.theme--catppuccin-frappe .control.has-icons-left .icon,html.theme--catppuccin-frappe .control.has-icons-right .icon,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .select,html.theme--catppuccin-frappe .select select,html.theme--catppuccin-frappe .textarea{height:2.5em;color:#c6d0f5}html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#c6d0f5}html.theme--catppuccin-frappe .select:after,html.theme--catppuccin-frappe .select select{border-width:1px}html.theme--catppuccin-frappe .menu-list a{transition:all 300ms ease}html.theme--catppuccin-frappe .modal-card-foot,html.theme--catppuccin-frappe .modal-card-head{border-color:#626880}html.theme--catppuccin-frappe .navbar{border-radius:.4em}html.theme--catppuccin-frappe .navbar.is-transparent{background:none}html.theme--catppuccin-frappe .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8caaee}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .navbar .navbar-menu{background-color:#8caaee;border-radius:0 0 .4em .4em}}html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body){color:#414559}html.theme--catppuccin-frappe .tag.is-link:not(body),html.theme--catppuccin-frappe .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-frappe .content kbd.is-link:not(body){color:#414559}html.theme--catppuccin-frappe .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-frappe .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-frappe .ansi span.sgr3{font-style:italic}html.theme--catppuccin-frappe .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-frappe .ansi span.sgr7{color:#303446;background-color:#c6d0f5}html.theme--catppuccin-frappe .ansi span.sgr8{color:transparent}html.theme--catppuccin-frappe .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-frappe .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-frappe .ansi span.sgr30{color:#51576d}html.theme--catppuccin-frappe .ansi span.sgr31{color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr32{color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr33{color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr34{color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr35{color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr36{color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr37{color:#b5bfe2}html.theme--catppuccin-frappe .ansi span.sgr40{background-color:#51576d}html.theme--catppuccin-frappe .ansi span.sgr41{background-color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr42{background-color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr43{background-color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr44{background-color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr45{background-color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr46{background-color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr47{background-color:#b5bfe2}html.theme--catppuccin-frappe .ansi span.sgr90{color:#626880}html.theme--catppuccin-frappe .ansi span.sgr91{color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr92{color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr93{color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr94{color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr95{color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr96{color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr97{color:#a5adce}html.theme--catppuccin-frappe .ansi span.sgr100{background-color:#626880}html.theme--catppuccin-frappe .ansi span.sgr101{background-color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr102{background-color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr103{background-color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr104{background-color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr105{background-color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr106{background-color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr107{background-color:#a5adce}html.theme--catppuccin-frappe code.language-julia-repl>span.hljs-meta{color:#a6d189;font-weight:bolder}html.theme--catppuccin-frappe code .hljs{color:#c6d0f5;background:#303446}html.theme--catppuccin-frappe code .hljs-keyword{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-built_in{color:#e78284}html.theme--catppuccin-frappe code .hljs-type{color:#e5c890}html.theme--catppuccin-frappe code .hljs-literal{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-number{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-operator{color:#81c8be}html.theme--catppuccin-frappe code .hljs-punctuation{color:#b5bfe2}html.theme--catppuccin-frappe code .hljs-property{color:#81c8be}html.theme--catppuccin-frappe code .hljs-regexp{color:#f4b8e4}html.theme--catppuccin-frappe code .hljs-string{color:#a6d189}html.theme--catppuccin-frappe code .hljs-char.escape_{color:#a6d189}html.theme--catppuccin-frappe code .hljs-subst{color:#a5adce}html.theme--catppuccin-frappe code .hljs-symbol{color:#eebebe}html.theme--catppuccin-frappe code .hljs-variable{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-variable.language_{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-variable.constant_{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-title{color:#8caaee}html.theme--catppuccin-frappe code .hljs-title.class_{color:#e5c890}html.theme--catppuccin-frappe code .hljs-title.function_{color:#8caaee}html.theme--catppuccin-frappe code .hljs-params{color:#c6d0f5}html.theme--catppuccin-frappe code .hljs-comment{color:#626880}html.theme--catppuccin-frappe code .hljs-doctag{color:#e78284}html.theme--catppuccin-frappe code .hljs-meta{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-section{color:#8caaee}html.theme--catppuccin-frappe code .hljs-tag{color:#a5adce}html.theme--catppuccin-frappe code .hljs-name{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-attr{color:#8caaee}html.theme--catppuccin-frappe code .hljs-attribute{color:#a6d189}html.theme--catppuccin-frappe code .hljs-bullet{color:#81c8be}html.theme--catppuccin-frappe code .hljs-code{color:#a6d189}html.theme--catppuccin-frappe code .hljs-emphasis{color:#e78284;font-style:italic}html.theme--catppuccin-frappe code .hljs-strong{color:#e78284;font-weight:bold}html.theme--catppuccin-frappe code .hljs-formula{color:#81c8be}html.theme--catppuccin-frappe code .hljs-link{color:#85c1dc;font-style:italic}html.theme--catppuccin-frappe code .hljs-quote{color:#a6d189;font-style:italic}html.theme--catppuccin-frappe code .hljs-selector-tag{color:#e5c890}html.theme--catppuccin-frappe code .hljs-selector-id{color:#8caaee}html.theme--catppuccin-frappe code .hljs-selector-class{color:#81c8be}html.theme--catppuccin-frappe code .hljs-selector-attr{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-selector-pseudo{color:#81c8be}html.theme--catppuccin-frappe code .hljs-template-tag{color:#eebebe}html.theme--catppuccin-frappe code .hljs-template-variable{color:#eebebe}html.theme--catppuccin-frappe code .hljs-addition{color:#a6d189;background:rgba(166,227,161,0.15)}html.theme--catppuccin-frappe code .hljs-deletion{color:#e78284;background:rgba(243,139,168,0.15)}html.theme--catppuccin-frappe .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-frappe .search-result-link:hover,html.theme--catppuccin-frappe .search-result-link:focus{background-color:#414559}html.theme--catppuccin-frappe .search-result-link .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-frappe .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:hover .search-filter,html.theme--catppuccin-frappe .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:focus .search-filter{color:#414559 !important;background-color:#babbf1 !important}html.theme--catppuccin-frappe .search-result-title{color:#c6d0f5}html.theme--catppuccin-frappe .search-result-highlight{background-color:#e78284;color:#292c3c}html.theme--catppuccin-frappe .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-frappe .w-100{width:100%}html.theme--catppuccin-frappe .gap-2{gap:0.5rem}html.theme--catppuccin-frappe .gap-4{gap:1rem} diff --git a/previews/PR873/assets/themes/catppuccin-latte.css b/previews/PR873/assets/themes/catppuccin-latte.css new file mode 100644 index 000000000..ca172b630 --- /dev/null +++ b/previews/PR873/assets/themes/catppuccin-latte.css @@ -0,0 +1 @@ +html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte .file-cta,html.theme--catppuccin-latte .file-name,html.theme--catppuccin-latte .select select,html.theme--catppuccin-latte .textarea,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-latte .pagination-previous:focus,html.theme--catppuccin-latte .pagination-next:focus,html.theme--catppuccin-latte .pagination-link:focus,html.theme--catppuccin-latte .pagination-ellipsis:focus,html.theme--catppuccin-latte .file-cta:focus,html.theme--catppuccin-latte .file-name:focus,html.theme--catppuccin-latte .select select:focus,html.theme--catppuccin-latte .textarea:focus,html.theme--catppuccin-latte .input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-latte .button:focus,html.theme--catppuccin-latte .is-focused.pagination-previous,html.theme--catppuccin-latte .is-focused.pagination-next,html.theme--catppuccin-latte .is-focused.pagination-link,html.theme--catppuccin-latte .is-focused.pagination-ellipsis,html.theme--catppuccin-latte .is-focused.file-cta,html.theme--catppuccin-latte .is-focused.file-name,html.theme--catppuccin-latte .select select.is-focused,html.theme--catppuccin-latte .is-focused.textarea,html.theme--catppuccin-latte .is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-focused.button,html.theme--catppuccin-latte .pagination-previous:active,html.theme--catppuccin-latte .pagination-next:active,html.theme--catppuccin-latte .pagination-link:active,html.theme--catppuccin-latte .pagination-ellipsis:active,html.theme--catppuccin-latte .file-cta:active,html.theme--catppuccin-latte .file-name:active,html.theme--catppuccin-latte .select select:active,html.theme--catppuccin-latte .textarea:active,html.theme--catppuccin-latte .input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-latte .button:active,html.theme--catppuccin-latte .is-active.pagination-previous,html.theme--catppuccin-latte .is-active.pagination-next,html.theme--catppuccin-latte .is-active.pagination-link,html.theme--catppuccin-latte .is-active.pagination-ellipsis,html.theme--catppuccin-latte .is-active.file-cta,html.theme--catppuccin-latte .is-active.file-name,html.theme--catppuccin-latte .select select.is-active,html.theme--catppuccin-latte .is-active.textarea,html.theme--catppuccin-latte .is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-latte .is-active.button{outline:none}html.theme--catppuccin-latte .pagination-previous[disabled],html.theme--catppuccin-latte .pagination-next[disabled],html.theme--catppuccin-latte .pagination-link[disabled],html.theme--catppuccin-latte .pagination-ellipsis[disabled],html.theme--catppuccin-latte .file-cta[disabled],html.theme--catppuccin-latte .file-name[disabled],html.theme--catppuccin-latte .select select[disabled],html.theme--catppuccin-latte .textarea[disabled],html.theme--catppuccin-latte .input[disabled],html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-latte .button[disabled],fieldset[disabled] html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-latte .file-cta,html.theme--catppuccin-latte fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-latte .file-name,html.theme--catppuccin-latte fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-latte .select select,fieldset[disabled] html.theme--catppuccin-latte .textarea,fieldset[disabled] html.theme--catppuccin-latte .input,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte fieldset[disabled] .select select,html.theme--catppuccin-latte .select fieldset[disabled] select,html.theme--catppuccin-latte fieldset[disabled] .textarea,html.theme--catppuccin-latte fieldset[disabled] .input,html.theme--catppuccin-latte fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-latte .button,html.theme--catppuccin-latte fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-latte .tabs,html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte .breadcrumb,html.theme--catppuccin-latte .file,html.theme--catppuccin-latte .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-latte .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-latte .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-latte .admonition:not(:last-child),html.theme--catppuccin-latte .tabs:not(:last-child),html.theme--catppuccin-latte .pagination:not(:last-child),html.theme--catppuccin-latte .message:not(:last-child),html.theme--catppuccin-latte .level:not(:last-child),html.theme--catppuccin-latte .breadcrumb:not(:last-child),html.theme--catppuccin-latte .block:not(:last-child),html.theme--catppuccin-latte .title:not(:last-child),html.theme--catppuccin-latte .subtitle:not(:last-child),html.theme--catppuccin-latte .table-container:not(:last-child),html.theme--catppuccin-latte .table:not(:last-child),html.theme--catppuccin-latte .progress:not(:last-child),html.theme--catppuccin-latte .notification:not(:last-child),html.theme--catppuccin-latte .content:not(:last-child),html.theme--catppuccin-latte .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .modal-close,html.theme--catppuccin-latte .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-latte .modal-close::before,html.theme--catppuccin-latte .delete::before,html.theme--catppuccin-latte .modal-close::after,html.theme--catppuccin-latte .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-latte .modal-close::before,html.theme--catppuccin-latte .delete::before{height:2px;width:50%}html.theme--catppuccin-latte .modal-close::after,html.theme--catppuccin-latte .delete::after{height:50%;width:2px}html.theme--catppuccin-latte .modal-close:hover,html.theme--catppuccin-latte .delete:hover,html.theme--catppuccin-latte .modal-close:focus,html.theme--catppuccin-latte .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-latte .modal-close:active,html.theme--catppuccin-latte .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-latte .is-small.modal-close,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-latte .is-small.delete,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-latte .is-medium.modal-close,html.theme--catppuccin-latte .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-latte .is-large.modal-close,html.theme--catppuccin-latte .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-latte .control.is-loading::after,html.theme--catppuccin-latte .select.is-loading::after,html.theme--catppuccin-latte .loader,html.theme--catppuccin-latte .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #8c8fa1;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-latte .hero-video,html.theme--catppuccin-latte .modal-background,html.theme--catppuccin-latte .modal,html.theme--catppuccin-latte .image.is-square img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-latte .image.is-square .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-latte .image.is-1by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-latte .image.is-1by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-latte .image.is-5by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-latte .image.is-5by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-latte .image.is-4by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-latte .image.is-4by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-latte .image.is-3by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-latte .image.is-5by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-latte .image.is-5by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-latte .image.is-16by9 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-latte .image.is-16by9 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-latte .image.is-2by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-latte .image.is-2by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-latte .image.is-3by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-latte .image.is-3by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-latte .image.is-4by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-latte .image.is-4by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-latte .image.is-3by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-latte .image.is-3by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-latte .image.is-2by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-latte .image.is-2by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-latte .image.is-3by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-latte .image.is-9by16 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-latte .image.is-9by16 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-latte .image.is-1by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-latte .image.is-1by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-latte .image.is-1by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-latte .image.is-1by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-latte .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#ccd0da !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#aeb5c5 !important}.has-background-dark{background-color:#ccd0da !important}.has-text-primary{color:#1e66f5 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#0a4ed6 !important}.has-background-primary{background-color:#1e66f5 !important}.has-text-primary-light{color:#ebf2fe !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#bbd1fc !important}.has-background-primary-light{background-color:#ebf2fe !important}.has-text-primary-dark{color:#0a52e1 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#286df5 !important}.has-background-primary-dark{background-color:#0a52e1 !important}.has-text-link{color:#1e66f5 !important}a.has-text-link:hover,a.has-text-link:focus{color:#0a4ed6 !important}.has-background-link{background-color:#1e66f5 !important}.has-text-link-light{color:#ebf2fe !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#bbd1fc !important}.has-background-link-light{background-color:#ebf2fe !important}.has-text-link-dark{color:#0a52e1 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#286df5 !important}.has-background-link-dark{background-color:#0a52e1 !important}.has-text-info{color:#179299 !important}a.has-text-info:hover,a.has-text-info:focus{color:#10686d !important}.has-background-info{background-color:#179299 !important}.has-text-info-light{color:#edfcfc !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c1f3f6 !important}.has-background-info-light{background-color:#edfcfc !important}.has-text-info-dark{color:#1cb2ba !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#2ad5df !important}.has-background-info-dark{background-color:#1cb2ba !important}.has-text-success{color:#40a02b !important}a.has-text-success:hover,a.has-text-success:focus{color:#307820 !important}.has-background-success{background-color:#40a02b !important}.has-text-success-light{color:#f1fbef !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#cef0c7 !important}.has-background-success-light{background-color:#f1fbef !important}.has-text-success-dark{color:#40a12b !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#50c936 !important}.has-background-success-dark{background-color:#40a12b !important}.has-text-warning{color:#df8e1d !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#b27117 !important}.has-background-warning{background-color:#df8e1d !important}.has-text-warning-light{color:#fdf6ed !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#f7e0c0 !important}.has-background-warning-light{background-color:#fdf6ed !important}.has-text-warning-dark{color:#9e6515 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#cb811a !important}.has-background-warning-dark{background-color:#9e6515 !important}.has-text-danger{color:#d20f39 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a20c2c !important}.has-background-danger{background-color:#d20f39 !important}.has-text-danger-light{color:#feecf0 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabcca !important}.has-background-danger-light{background-color:#feecf0 !important}.has-text-danger-dark{color:#e9113f !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#f13c63 !important}.has-background-danger-dark{background-color:#e9113f !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#ccd0da !important}.has-background-grey-darker{background-color:#ccd0da !important}.has-text-grey-dark{color:#bcc0cc !important}.has-background-grey-dark{background-color:#bcc0cc !important}.has-text-grey{color:#acb0be !important}.has-background-grey{background-color:#acb0be !important}.has-text-grey-light{color:#9ca0b0 !important}.has-background-grey-light{background-color:#9ca0b0 !important}.has-text-grey-lighter{color:#8c8fa1 !important}.has-background-grey-lighter{background-color:#8c8fa1 !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-latte html{background-color:#eff1f5;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-latte article,html.theme--catppuccin-latte aside,html.theme--catppuccin-latte figure,html.theme--catppuccin-latte footer,html.theme--catppuccin-latte header,html.theme--catppuccin-latte hgroup,html.theme--catppuccin-latte section{display:block}html.theme--catppuccin-latte body,html.theme--catppuccin-latte button,html.theme--catppuccin-latte input,html.theme--catppuccin-latte optgroup,html.theme--catppuccin-latte select,html.theme--catppuccin-latte textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-latte code,html.theme--catppuccin-latte pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-latte body{color:#4c4f69;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-latte a{color:#1e66f5;cursor:pointer;text-decoration:none}html.theme--catppuccin-latte a strong{color:currentColor}html.theme--catppuccin-latte a:hover{color:#04a5e5}html.theme--catppuccin-latte code{background-color:#e6e9ef;color:#4c4f69;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-latte hr{background-color:#e6e9ef;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-latte img{height:auto;max-width:100%}html.theme--catppuccin-latte input[type="checkbox"],html.theme--catppuccin-latte input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-latte small{font-size:.875em}html.theme--catppuccin-latte span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-latte strong{color:#41445a;font-weight:700}html.theme--catppuccin-latte fieldset{border:none}html.theme--catppuccin-latte pre{-webkit-overflow-scrolling:touch;background-color:#e6e9ef;color:#4c4f69;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-latte pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-latte table td,html.theme--catppuccin-latte table th{vertical-align:top}html.theme--catppuccin-latte table td:not([align]),html.theme--catppuccin-latte table th:not([align]){text-align:inherit}html.theme--catppuccin-latte table th{color:#41445a}html.theme--catppuccin-latte .box{background-color:#bcc0cc;border-radius:8px;box-shadow:none;color:#4c4f69;display:block;padding:1.25rem}html.theme--catppuccin-latte a.box:hover,html.theme--catppuccin-latte a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #1e66f5}html.theme--catppuccin-latte a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #1e66f5}html.theme--catppuccin-latte .button{background-color:#e6e9ef;border-color:#fff;border-width:1px;color:#1e66f5;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-latte .button strong{color:inherit}html.theme--catppuccin-latte .button .icon,html.theme--catppuccin-latte .button .icon.is-small,html.theme--catppuccin-latte .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-latte .button .icon.is-medium,html.theme--catppuccin-latte .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-latte .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-latte .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-latte .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-latte .button:hover,html.theme--catppuccin-latte .button.is-hovered{border-color:#9ca0b0;color:#41445a}html.theme--catppuccin-latte .button:focus,html.theme--catppuccin-latte .button.is-focused{border-color:#9ca0b0;color:#0b57ef}html.theme--catppuccin-latte .button:focus:not(:active),html.theme--catppuccin-latte .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .button:active,html.theme--catppuccin-latte .button.is-active{border-color:#bcc0cc;color:#41445a}html.theme--catppuccin-latte .button.is-text{background-color:transparent;border-color:transparent;color:#4c4f69;text-decoration:underline}html.theme--catppuccin-latte .button.is-text:hover,html.theme--catppuccin-latte .button.is-text.is-hovered,html.theme--catppuccin-latte .button.is-text:focus,html.theme--catppuccin-latte .button.is-text.is-focused{background-color:#e6e9ef;color:#41445a}html.theme--catppuccin-latte .button.is-text:active,html.theme--catppuccin-latte .button.is-text.is-active{background-color:#d6dbe5;color:#41445a}html.theme--catppuccin-latte .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-latte .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#1e66f5;text-decoration:none}html.theme--catppuccin-latte .button.is-ghost:hover,html.theme--catppuccin-latte .button.is-ghost.is-hovered{color:#1e66f5;text-decoration:underline}html.theme--catppuccin-latte .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white:hover,html.theme--catppuccin-latte .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white:focus,html.theme--catppuccin-latte .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white:focus:not(:active),html.theme--catppuccin-latte .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-latte .button.is-white:active,html.theme--catppuccin-latte .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-latte .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .button.is-white.is-inverted:hover,html.theme--catppuccin-latte .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-latte .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-white.is-outlined:hover,html.theme--catppuccin-latte .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-white.is-outlined:focus,html.theme--catppuccin-latte .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black:hover,html.theme--catppuccin-latte .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black:focus,html.theme--catppuccin-latte .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black:focus:not(:active),html.theme--catppuccin-latte .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-latte .button.is-black:active,html.theme--catppuccin-latte .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-latte .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-inverted:hover,html.theme--catppuccin-latte .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-outlined:hover,html.theme--catppuccin-latte .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-black.is-outlined:focus,html.theme--catppuccin-latte .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light:hover,html.theme--catppuccin-latte .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light:focus,html.theme--catppuccin-latte .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light:focus:not(:active),html.theme--catppuccin-latte .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-latte .button.is-light:active,html.theme--catppuccin-latte .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-latte .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-inverted:hover,html.theme--catppuccin-latte .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-outlined:hover,html.theme--catppuccin-latte .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-light.is-outlined:focus,html.theme--catppuccin-latte .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark,html.theme--catppuccin-latte .content kbd.button{background-color:#ccd0da;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark:hover,html.theme--catppuccin-latte .content kbd.button:hover,html.theme--catppuccin-latte .button.is-dark.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-hovered{background-color:#c5c9d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark:focus,html.theme--catppuccin-latte .content kbd.button:focus,html.theme--catppuccin-latte .button.is-dark.is-focused,html.theme--catppuccin-latte .content kbd.button.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark:focus:not(:active),html.theme--catppuccin-latte .content kbd.button:focus:not(:active),html.theme--catppuccin-latte .button.is-dark.is-focused:not(:active),html.theme--catppuccin-latte .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(204,208,218,0.25)}html.theme--catppuccin-latte .button.is-dark:active,html.theme--catppuccin-latte .content kbd.button:active,html.theme--catppuccin-latte .button.is-dark.is-active,html.theme--catppuccin-latte .content kbd.button.is-active{background-color:#bdc2cf;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark[disabled],html.theme--catppuccin-latte .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button{background-color:#ccd0da;border-color:#ccd0da;box-shadow:none}html.theme--catppuccin-latte .button.is-dark.is-inverted,html.theme--catppuccin-latte .content kbd.button.is-inverted{background-color:rgba(0,0,0,0.7);color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-inverted:hover,html.theme--catppuccin-latte .content kbd.button.is-inverted:hover,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark.is-inverted[disabled],html.theme--catppuccin-latte .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-loading::after,html.theme--catppuccin-latte .content kbd.button.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-dark.is-outlined,html.theme--catppuccin-latte .content kbd.button.is-outlined{background-color:transparent;border-color:#ccd0da;color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-outlined:hover,html.theme--catppuccin-latte .content kbd.button.is-outlined:hover,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-dark.is-outlined:focus,html.theme--catppuccin-latte .content kbd.button.is-outlined:focus,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-focused{background-color:#ccd0da;border-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #ccd0da #ccd0da !important}html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-dark.is-outlined[disabled],html.theme--catppuccin-latte .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button.is-outlined{background-color:transparent;border-color:#ccd0da;box-shadow:none;color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ccd0da #ccd0da !important}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-primary,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary:hover,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary:focus,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-latte .button.is-primary.is-focused,html.theme--catppuccin-latte .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary:focus:not(:active),html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-latte .button.is-primary.is-focused:not(:active),html.theme--catppuccin-latte .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .button.is-primary:active,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-latte .button.is-primary.is-active,html.theme--catppuccin-latte .docstring>section>a.button.is-active.docs-sourcelink{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary[disabled],html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink{background-color:#1e66f5;border-color:#1e66f5;box-shadow:none}html.theme--catppuccin-latte .button.is-primary.is-inverted,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-inverted:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-primary.is-inverted[disabled],html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-loading::after,html.theme--catppuccin-latte .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-primary.is-outlined,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#1e66f5;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-outlined:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-latte .button.is-primary.is-outlined:focus,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-primary.is-outlined[disabled],html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#1e66f5;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-primary.is-light,html.theme--catppuccin-latte .docstring>section>a.button.is-light.docs-sourcelink{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .button.is-primary.is-light:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-light.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#dfe9fe;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-primary.is-light:active,html.theme--catppuccin-latte .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-latte .button.is-primary.is-light.is-active,html.theme--catppuccin-latte .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d3e1fd;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-link{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link:hover,html.theme--catppuccin-latte .button.is-link.is-hovered{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link:focus,html.theme--catppuccin-latte .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link:focus:not(:active),html.theme--catppuccin-latte .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .button.is-link:active,html.theme--catppuccin-latte .button.is-link.is-active{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link{background-color:#1e66f5;border-color:#1e66f5;box-shadow:none}html.theme--catppuccin-latte .button.is-link.is-inverted{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-inverted:hover,html.theme--catppuccin-latte .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-link.is-outlined{background-color:transparent;border-color:#1e66f5;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-outlined:hover,html.theme--catppuccin-latte .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-link.is-outlined:focus,html.theme--catppuccin-latte .button.is-link.is-outlined.is-focused{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link.is-outlined{background-color:transparent;border-color:#1e66f5;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-link.is-light{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .button.is-link.is-light:hover,html.theme--catppuccin-latte .button.is-link.is-light.is-hovered{background-color:#dfe9fe;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-link.is-light:active,html.theme--catppuccin-latte .button.is-link.is-light.is-active{background-color:#d3e1fd;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-info{background-color:#179299;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info:hover,html.theme--catppuccin-latte .button.is-info.is-hovered{background-color:#15878e;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info:focus,html.theme--catppuccin-latte .button.is-info.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info:focus:not(:active),html.theme--catppuccin-latte .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(23,146,153,0.25)}html.theme--catppuccin-latte .button.is-info:active,html.theme--catppuccin-latte .button.is-info.is-active{background-color:#147d83;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info{background-color:#179299;border-color:#179299;box-shadow:none}html.theme--catppuccin-latte .button.is-info.is-inverted{background-color:#fff;color:#179299}html.theme--catppuccin-latte .button.is-info.is-inverted:hover,html.theme--catppuccin-latte .button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#179299}html.theme--catppuccin-latte .button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-info.is-outlined{background-color:transparent;border-color:#179299;color:#179299}html.theme--catppuccin-latte .button.is-info.is-outlined:hover,html.theme--catppuccin-latte .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-info.is-outlined:focus,html.theme--catppuccin-latte .button.is-info.is-outlined.is-focused{background-color:#179299;border-color:#179299;color:#fff}html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #179299 #179299 !important}html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info.is-outlined{background-color:transparent;border-color:#179299;box-shadow:none;color:#179299}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#179299}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #179299 #179299 !important}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-info.is-light{background-color:#edfcfc;color:#1cb2ba}html.theme--catppuccin-latte .button.is-info.is-light:hover,html.theme--catppuccin-latte .button.is-info.is-light.is-hovered{background-color:#e2f9fb;border-color:transparent;color:#1cb2ba}html.theme--catppuccin-latte .button.is-info.is-light:active,html.theme--catppuccin-latte .button.is-info.is-light.is-active{background-color:#d7f7f9;border-color:transparent;color:#1cb2ba}html.theme--catppuccin-latte .button.is-success{background-color:#40a02b;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success:hover,html.theme--catppuccin-latte .button.is-success.is-hovered{background-color:#3c9628;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success:focus,html.theme--catppuccin-latte .button.is-success.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success:focus:not(:active),html.theme--catppuccin-latte .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(64,160,43,0.25)}html.theme--catppuccin-latte .button.is-success:active,html.theme--catppuccin-latte .button.is-success.is-active{background-color:#388c26;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success{background-color:#40a02b;border-color:#40a02b;box-shadow:none}html.theme--catppuccin-latte .button.is-success.is-inverted{background-color:#fff;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-inverted:hover,html.theme--catppuccin-latte .button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-success.is-outlined{background-color:transparent;border-color:#40a02b;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-outlined:hover,html.theme--catppuccin-latte .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-success.is-outlined:focus,html.theme--catppuccin-latte .button.is-success.is-outlined.is-focused{background-color:#40a02b;border-color:#40a02b;color:#fff}html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #40a02b #40a02b !important}html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success.is-outlined{background-color:transparent;border-color:#40a02b;box-shadow:none;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #40a02b #40a02b !important}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-success.is-light{background-color:#f1fbef;color:#40a12b}html.theme--catppuccin-latte .button.is-success.is-light:hover,html.theme--catppuccin-latte .button.is-success.is-light.is-hovered{background-color:#e8f8e5;border-color:transparent;color:#40a12b}html.theme--catppuccin-latte .button.is-success.is-light:active,html.theme--catppuccin-latte .button.is-success.is-light.is-active{background-color:#e0f5db;border-color:transparent;color:#40a12b}html.theme--catppuccin-latte .button.is-warning{background-color:#df8e1d;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning:hover,html.theme--catppuccin-latte .button.is-warning.is-hovered{background-color:#d4871c;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning:focus,html.theme--catppuccin-latte .button.is-warning.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning:focus:not(:active),html.theme--catppuccin-latte .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(223,142,29,0.25)}html.theme--catppuccin-latte .button.is-warning:active,html.theme--catppuccin-latte .button.is-warning.is-active{background-color:#c8801a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning{background-color:#df8e1d;border-color:#df8e1d;box-shadow:none}html.theme--catppuccin-latte .button.is-warning.is-inverted{background-color:#fff;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-inverted:hover,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-warning.is-outlined{background-color:transparent;border-color:#df8e1d;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-outlined:hover,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-warning.is-outlined:focus,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-focused{background-color:#df8e1d;border-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #df8e1d #df8e1d !important}html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning.is-outlined{background-color:transparent;border-color:#df8e1d;box-shadow:none;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-focused{background-color:#fff;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #df8e1d #df8e1d !important}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-warning.is-light{background-color:#fdf6ed;color:#9e6515}html.theme--catppuccin-latte .button.is-warning.is-light:hover,html.theme--catppuccin-latte .button.is-warning.is-light.is-hovered{background-color:#fbf1e2;border-color:transparent;color:#9e6515}html.theme--catppuccin-latte .button.is-warning.is-light:active,html.theme--catppuccin-latte .button.is-warning.is-light.is-active{background-color:#faebd6;border-color:transparent;color:#9e6515}html.theme--catppuccin-latte .button.is-danger{background-color:#d20f39;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger:hover,html.theme--catppuccin-latte .button.is-danger.is-hovered{background-color:#c60e36;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger:focus,html.theme--catppuccin-latte .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger:focus:not(:active),html.theme--catppuccin-latte .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(210,15,57,0.25)}html.theme--catppuccin-latte .button.is-danger:active,html.theme--catppuccin-latte .button.is-danger.is-active{background-color:#ba0d33;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger{background-color:#d20f39;border-color:#d20f39;box-shadow:none}html.theme--catppuccin-latte .button.is-danger.is-inverted{background-color:#fff;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-inverted:hover,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-danger.is-outlined{background-color:transparent;border-color:#d20f39;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-outlined:hover,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-danger.is-outlined:focus,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-focused{background-color:#d20f39;border-color:#d20f39;color:#fff}html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #d20f39 #d20f39 !important}html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger.is-outlined{background-color:transparent;border-color:#d20f39;box-shadow:none;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #d20f39 #d20f39 !important}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-danger.is-light{background-color:#feecf0;color:#e9113f}html.theme--catppuccin-latte .button.is-danger.is-light:hover,html.theme--catppuccin-latte .button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#e9113f}html.theme--catppuccin-latte .button.is-danger.is-light:active,html.theme--catppuccin-latte .button.is-danger.is-light.is-active{background-color:#fcd4dd;border-color:transparent;color:#e9113f}html.theme--catppuccin-latte .button.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-latte .button.is-small:not(.is-rounded),html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-latte .button.is-normal{font-size:1rem}html.theme--catppuccin-latte .button.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .button.is-large{font-size:1.5rem}html.theme--catppuccin-latte .button[disabled],fieldset[disabled] html.theme--catppuccin-latte .button{background-color:#9ca0b0;border-color:#acb0be;box-shadow:none;opacity:.5}html.theme--catppuccin-latte .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-latte .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-latte .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-latte .button.is-static{background-color:#e6e9ef;border-color:#acb0be;color:#8c8fa1;box-shadow:none;pointer-events:none}html.theme--catppuccin-latte .button.is-rounded,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-latte .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-latte .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-latte .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-latte .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-latte .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-latte .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-latte .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-latte .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-latte .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-latte .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-latte .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-latte .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-latte .buttons.has-addons .button:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-latte .buttons.has-addons .button:focus,html.theme--catppuccin-latte .buttons.has-addons .button.is-focused,html.theme--catppuccin-latte .buttons.has-addons .button:active,html.theme--catppuccin-latte .buttons.has-addons .button.is-active,html.theme--catppuccin-latte .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-latte .buttons.has-addons .button:focus:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-latte .buttons.has-addons .button:active:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-latte .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .buttons.is-centered{justify-content:center}html.theme--catppuccin-latte .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-latte .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-latte .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .button.is-responsive.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-latte .button.is-responsive,html.theme--catppuccin-latte .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-latte .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-latte .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .button.is-responsive.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-latte .button.is-responsive,html.theme--catppuccin-latte .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-latte .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-latte .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-latte .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-latte .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-latte .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-latte .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-latte .content li+li{margin-top:0.25em}html.theme--catppuccin-latte .content p:not(:last-child),html.theme--catppuccin-latte .content dl:not(:last-child),html.theme--catppuccin-latte .content ol:not(:last-child),html.theme--catppuccin-latte .content ul:not(:last-child),html.theme--catppuccin-latte .content blockquote:not(:last-child),html.theme--catppuccin-latte .content pre:not(:last-child),html.theme--catppuccin-latte .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-latte .content h1,html.theme--catppuccin-latte .content h2,html.theme--catppuccin-latte .content h3,html.theme--catppuccin-latte .content h4,html.theme--catppuccin-latte .content h5,html.theme--catppuccin-latte .content h6{color:#4c4f69;font-weight:600;line-height:1.125}html.theme--catppuccin-latte .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-latte .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-latte .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-latte .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-latte .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-latte .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-latte .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-latte .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-latte .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-latte .content blockquote{background-color:#e6e9ef;border-left:5px solid #acb0be;padding:1.25em 1.5em}html.theme--catppuccin-latte .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-latte .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-latte .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-latte .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-latte .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-latte .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-latte .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-latte .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-latte .content ul ul ul{list-style-type:square}html.theme--catppuccin-latte .content dd{margin-left:2em}html.theme--catppuccin-latte .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-latte .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-latte .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-latte .content figure img{display:inline-block}html.theme--catppuccin-latte .content figure figcaption{font-style:italic}html.theme--catppuccin-latte .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-latte .content sup,html.theme--catppuccin-latte .content sub{font-size:75%}html.theme--catppuccin-latte .content table{width:100%}html.theme--catppuccin-latte .content table td,html.theme--catppuccin-latte .content table th{border:1px solid #acb0be;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-latte .content table th{color:#41445a}html.theme--catppuccin-latte .content table th:not([align]){text-align:inherit}html.theme--catppuccin-latte .content table thead td,html.theme--catppuccin-latte .content table thead th{border-width:0 0 2px;color:#41445a}html.theme--catppuccin-latte .content table tfoot td,html.theme--catppuccin-latte .content table tfoot th{border-width:2px 0 0;color:#41445a}html.theme--catppuccin-latte .content table tbody tr:last-child td,html.theme--catppuccin-latte .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-latte .content .tabs li+li{margin-top:0}html.theme--catppuccin-latte .content.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-latte .content.is-normal{font-size:1rem}html.theme--catppuccin-latte .content.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .content.is-large{font-size:1.5rem}html.theme--catppuccin-latte .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-latte .icon.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-latte .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-latte .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-latte .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-latte .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-latte .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-latte div.icon-text{display:flex}html.theme--catppuccin-latte .image,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-latte .image img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-latte .image img.is-rounded,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-latte .image.is-fullwidth,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-latte .image.is-square img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-latte .image.is-square .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-latte .image.is-1by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-latte .image.is-1by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-latte .image.is-5by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-latte .image.is-5by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-latte .image.is-4by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-latte .image.is-4by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-latte .image.is-3by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-latte .image.is-5by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-latte .image.is-5by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-latte .image.is-16by9 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-latte .image.is-16by9 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-latte .image.is-2by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-latte .image.is-2by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-latte .image.is-3by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-latte .image.is-3by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-latte .image.is-4by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-latte .image.is-4by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-latte .image.is-3by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-latte .image.is-3by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-latte .image.is-2by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-latte .image.is-2by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-latte .image.is-3by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-latte .image.is-9by16 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-latte .image.is-9by16 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-latte .image.is-1by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-latte .image.is-1by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-latte .image.is-1by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-latte .image.is-1by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-latte .image.is-square,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-latte .image.is-1by1,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-latte .image.is-5by4,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-latte .image.is-4by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-latte .image.is-3by2,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-latte .image.is-5by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-latte .image.is-16by9,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-latte .image.is-2by1,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-latte .image.is-3by1,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-latte .image.is-4by5,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-latte .image.is-3by4,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-latte .image.is-2by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-latte .image.is-3by5,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-latte .image.is-9by16,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-latte .image.is-1by2,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-latte .image.is-1by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-latte .image.is-16x16,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-latte .image.is-24x24,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-latte .image.is-32x32,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-latte .image.is-48x48,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-latte .image.is-64x64,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-latte .image.is-96x96,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-latte .image.is-128x128,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-latte .notification{background-color:#e6e9ef;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-latte .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-latte .notification strong{color:currentColor}html.theme--catppuccin-latte .notification code,html.theme--catppuccin-latte .notification pre{background:#fff}html.theme--catppuccin-latte .notification pre code{background:transparent}html.theme--catppuccin-latte .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-latte .notification .title,html.theme--catppuccin-latte .notification .subtitle,html.theme--catppuccin-latte .notification .content{color:currentColor}html.theme--catppuccin-latte .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .notification.is-dark,html.theme--catppuccin-latte .content kbd.notification{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .notification.is-primary,html.theme--catppuccin-latte .docstring>section>a.notification.docs-sourcelink{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .notification.is-primary.is-light,html.theme--catppuccin-latte .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .notification.is-link{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .notification.is-link.is-light{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .notification.is-info{background-color:#179299;color:#fff}html.theme--catppuccin-latte .notification.is-info.is-light{background-color:#edfcfc;color:#1cb2ba}html.theme--catppuccin-latte .notification.is-success{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .notification.is-success.is-light{background-color:#f1fbef;color:#40a12b}html.theme--catppuccin-latte .notification.is-warning{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .notification.is-warning.is-light{background-color:#fdf6ed;color:#9e6515}html.theme--catppuccin-latte .notification.is-danger{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .notification.is-danger.is-light{background-color:#feecf0;color:#e9113f}html.theme--catppuccin-latte .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-latte .progress::-webkit-progress-bar{background-color:#bcc0cc}html.theme--catppuccin-latte .progress::-webkit-progress-value{background-color:#8c8fa1}html.theme--catppuccin-latte .progress::-moz-progress-bar{background-color:#8c8fa1}html.theme--catppuccin-latte .progress::-ms-fill{background-color:#8c8fa1;border:none}html.theme--catppuccin-latte .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-latte .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-latte .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-latte .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-latte .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-latte .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-latte .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-latte .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-latte .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-latte .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-latte .content kbd.progress::-webkit-progress-value{background-color:#ccd0da}html.theme--catppuccin-latte .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-latte .content kbd.progress::-moz-progress-bar{background-color:#ccd0da}html.theme--catppuccin-latte .progress.is-dark::-ms-fill,html.theme--catppuccin-latte .content kbd.progress::-ms-fill{background-color:#ccd0da}html.theme--catppuccin-latte .progress.is-dark:indeterminate,html.theme--catppuccin-latte .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #ccd0da 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-primary::-ms-fill,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-primary:indeterminate,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #1e66f5 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-link::-webkit-progress-value{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-link::-moz-progress-bar{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-link::-ms-fill{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-link:indeterminate{background-image:linear-gradient(to right, #1e66f5 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-info::-webkit-progress-value{background-color:#179299}html.theme--catppuccin-latte .progress.is-info::-moz-progress-bar{background-color:#179299}html.theme--catppuccin-latte .progress.is-info::-ms-fill{background-color:#179299}html.theme--catppuccin-latte .progress.is-info:indeterminate{background-image:linear-gradient(to right, #179299 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-success::-webkit-progress-value{background-color:#40a02b}html.theme--catppuccin-latte .progress.is-success::-moz-progress-bar{background-color:#40a02b}html.theme--catppuccin-latte .progress.is-success::-ms-fill{background-color:#40a02b}html.theme--catppuccin-latte .progress.is-success:indeterminate{background-image:linear-gradient(to right, #40a02b 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-warning::-webkit-progress-value{background-color:#df8e1d}html.theme--catppuccin-latte .progress.is-warning::-moz-progress-bar{background-color:#df8e1d}html.theme--catppuccin-latte .progress.is-warning::-ms-fill{background-color:#df8e1d}html.theme--catppuccin-latte .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #df8e1d 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-danger::-webkit-progress-value{background-color:#d20f39}html.theme--catppuccin-latte .progress.is-danger::-moz-progress-bar{background-color:#d20f39}html.theme--catppuccin-latte .progress.is-danger::-ms-fill{background-color:#d20f39}html.theme--catppuccin-latte .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #d20f39 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#bcc0cc;background-image:linear-gradient(to right, #4c4f69 30%, #bcc0cc 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-latte .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-latte .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-latte .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-latte .progress.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-latte .progress.is-medium{height:1.25rem}html.theme--catppuccin-latte .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-latte .table{background-color:#bcc0cc;color:#4c4f69}html.theme--catppuccin-latte .table td,html.theme--catppuccin-latte .table th{border:1px solid #acb0be;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-latte .table td.is-white,html.theme--catppuccin-latte .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .table td.is-black,html.theme--catppuccin-latte .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .table td.is-light,html.theme--catppuccin-latte .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .table td.is-dark,html.theme--catppuccin-latte .table th.is-dark{background-color:#ccd0da;border-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .table td.is-primary,html.theme--catppuccin-latte .table th.is-primary{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table td.is-link,html.theme--catppuccin-latte .table th.is-link{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table td.is-info,html.theme--catppuccin-latte .table th.is-info{background-color:#179299;border-color:#179299;color:#fff}html.theme--catppuccin-latte .table td.is-success,html.theme--catppuccin-latte .table th.is-success{background-color:#40a02b;border-color:#40a02b;color:#fff}html.theme--catppuccin-latte .table td.is-warning,html.theme--catppuccin-latte .table th.is-warning{background-color:#df8e1d;border-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .table td.is-danger,html.theme--catppuccin-latte .table th.is-danger{background-color:#d20f39;border-color:#d20f39;color:#fff}html.theme--catppuccin-latte .table td.is-narrow,html.theme--catppuccin-latte .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-latte .table td.is-selected,html.theme--catppuccin-latte .table th.is-selected{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table td.is-selected a,html.theme--catppuccin-latte .table td.is-selected strong,html.theme--catppuccin-latte .table th.is-selected a,html.theme--catppuccin-latte .table th.is-selected strong{color:currentColor}html.theme--catppuccin-latte .table td.is-vcentered,html.theme--catppuccin-latte .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-latte .table th{color:#41445a}html.theme--catppuccin-latte .table th:not([align]){text-align:left}html.theme--catppuccin-latte .table tr.is-selected{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table tr.is-selected a,html.theme--catppuccin-latte .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-latte .table tr.is-selected td,html.theme--catppuccin-latte .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-latte .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .table thead td,html.theme--catppuccin-latte .table thead th{border-width:0 0 2px;color:#41445a}html.theme--catppuccin-latte .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .table tfoot td,html.theme--catppuccin-latte .table tfoot th{border-width:2px 0 0;color:#41445a}html.theme--catppuccin-latte .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .table tbody tr:last-child td,html.theme--catppuccin-latte .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-latte .table.is-bordered td,html.theme--catppuccin-latte .table.is-bordered th{border-width:1px}html.theme--catppuccin-latte .table.is-bordered tr:last-child td,html.theme--catppuccin-latte .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-latte .table.is-fullwidth{width:100%}html.theme--catppuccin-latte .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#ccd0da}html.theme--catppuccin-latte .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#ccd0da}html.theme--catppuccin-latte .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#d2d5de}html.theme--catppuccin-latte .table.is-narrow td,html.theme--catppuccin-latte .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-latte .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#ccd0da}html.theme--catppuccin-latte .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-latte .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-latte .tags .tag,html.theme--catppuccin-latte .tags .content kbd,html.theme--catppuccin-latte .content .tags kbd,html.theme--catppuccin-latte .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-latte .tags .tag:not(:last-child),html.theme--catppuccin-latte .tags .content kbd:not(:last-child),html.theme--catppuccin-latte .content .tags kbd:not(:last-child),html.theme--catppuccin-latte .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-latte .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-latte .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-latte .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-latte .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-latte .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-latte .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-latte .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-latte .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-latte .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-latte .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-latte .tags.is-centered{justify-content:center}html.theme--catppuccin-latte .tags.is-centered .tag,html.theme--catppuccin-latte .tags.is-centered .content kbd,html.theme--catppuccin-latte .content .tags.is-centered kbd,html.theme--catppuccin-latte .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-latte .tags.is-right{justify-content:flex-end}html.theme--catppuccin-latte .tags.is-right .tag:not(:first-child),html.theme--catppuccin-latte .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-latte .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-latte .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-latte .tags.is-right .tag:not(:last-child),html.theme--catppuccin-latte .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-latte .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-latte .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-latte .tags.has-addons .tag,html.theme--catppuccin-latte .tags.has-addons .content kbd,html.theme--catppuccin-latte .content .tags.has-addons kbd,html.theme--catppuccin-latte .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-latte .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-latte .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-latte .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-latte .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-latte .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-latte .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-latte .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-latte .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-latte .tag:not(body),html.theme--catppuccin-latte .content kbd:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#e6e9ef;border-radius:.4em;color:#4c4f69;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-latte .tag:not(body) .delete,html.theme--catppuccin-latte .content kbd:not(body) .delete,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-latte .tag.is-white:not(body),html.theme--catppuccin-latte .content kbd.is-white:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .tag.is-black:not(body),html.theme--catppuccin-latte .content kbd.is-black:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .tag.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .tag.is-dark:not(body),html.theme--catppuccin-latte .content kbd:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-latte .content .docstring>section>kbd:not(body){background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .tag.is-primary:not(body),html.theme--catppuccin-latte .content kbd.is-primary:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body){background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .tag.is-primary.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .tag.is-link:not(body),html.theme--catppuccin-latte .content kbd.is-link:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .tag.is-link.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-link.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .tag.is-info:not(body),html.theme--catppuccin-latte .content kbd.is-info:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#179299;color:#fff}html.theme--catppuccin-latte .tag.is-info.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-info.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#edfcfc;color:#1cb2ba}html.theme--catppuccin-latte .tag.is-success:not(body),html.theme--catppuccin-latte .content kbd.is-success:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .tag.is-success.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-success.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f1fbef;color:#40a12b}html.theme--catppuccin-latte .tag.is-warning:not(body),html.theme--catppuccin-latte .content kbd.is-warning:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .tag.is-warning.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fdf6ed;color:#9e6515}html.theme--catppuccin-latte .tag.is-danger:not(body),html.theme--catppuccin-latte .content kbd.is-danger:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .tag.is-danger.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#feecf0;color:#e9113f}html.theme--catppuccin-latte .tag.is-normal:not(body),html.theme--catppuccin-latte .content kbd.is-normal:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-latte .tag.is-medium:not(body),html.theme--catppuccin-latte .content kbd.is-medium:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-latte .tag.is-large:not(body),html.theme--catppuccin-latte .content kbd.is-large:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-latte .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-latte .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-latte .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-latte .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-latte .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-latte .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-latte .tag.is-delete:not(body),html.theme--catppuccin-latte .content kbd.is-delete:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-latte .tag.is-delete:not(body)::before,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::before,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-latte .tag.is-delete:not(body)::after,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::after,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-latte .tag.is-delete:not(body)::before,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::before,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-latte .tag.is-delete:not(body)::after,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::after,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-latte .tag.is-delete:not(body):hover,html.theme--catppuccin-latte .content kbd.is-delete:not(body):hover,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-latte .tag.is-delete:not(body):focus,html.theme--catppuccin-latte .content kbd.is-delete:not(body):focus,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#d6dbe5}html.theme--catppuccin-latte .tag.is-delete:not(body):active,html.theme--catppuccin-latte .content kbd.is-delete:not(body):active,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#c7cedb}html.theme--catppuccin-latte .tag.is-rounded:not(body),html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-latte .content kbd.is-rounded:not(body),html.theme--catppuccin-latte #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-latte a.tag:hover,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-latte .title,html.theme--catppuccin-latte .subtitle{word-break:break-word}html.theme--catppuccin-latte .title em,html.theme--catppuccin-latte .title span,html.theme--catppuccin-latte .subtitle em,html.theme--catppuccin-latte .subtitle span{font-weight:inherit}html.theme--catppuccin-latte .title sub,html.theme--catppuccin-latte .subtitle sub{font-size:.75em}html.theme--catppuccin-latte .title sup,html.theme--catppuccin-latte .subtitle sup{font-size:.75em}html.theme--catppuccin-latte .title .tag,html.theme--catppuccin-latte .title .content kbd,html.theme--catppuccin-latte .content .title kbd,html.theme--catppuccin-latte .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-latte .subtitle .tag,html.theme--catppuccin-latte .subtitle .content kbd,html.theme--catppuccin-latte .content .subtitle kbd,html.theme--catppuccin-latte .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-latte .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-latte .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-latte .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-latte .title.is-1{font-size:3rem}html.theme--catppuccin-latte .title.is-2{font-size:2.5rem}html.theme--catppuccin-latte .title.is-3{font-size:2rem}html.theme--catppuccin-latte .title.is-4{font-size:1.5rem}html.theme--catppuccin-latte .title.is-5{font-size:1.25rem}html.theme--catppuccin-latte .title.is-6{font-size:1rem}html.theme--catppuccin-latte .title.is-7{font-size:.75rem}html.theme--catppuccin-latte .subtitle{color:#9ca0b0;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-latte .subtitle strong{color:#9ca0b0;font-weight:600}html.theme--catppuccin-latte .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-latte .subtitle.is-1{font-size:3rem}html.theme--catppuccin-latte .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-latte .subtitle.is-3{font-size:2rem}html.theme--catppuccin-latte .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-latte .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-latte .subtitle.is-6{font-size:1rem}html.theme--catppuccin-latte .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-latte .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-latte .number{align-items:center;background-color:#e6e9ef;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-latte .select select,html.theme--catppuccin-latte .textarea,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{background-color:#eff1f5;border-color:#acb0be;border-radius:.4em;color:#8c8fa1}html.theme--catppuccin-latte .select select::-moz-placeholder,html.theme--catppuccin-latte .textarea::-moz-placeholder,html.theme--catppuccin-latte .input::-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-latte .select select::-webkit-input-placeholder,html.theme--catppuccin-latte .textarea::-webkit-input-placeholder,html.theme--catppuccin-latte .input::-webkit-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-latte .select select:-moz-placeholder,html.theme--catppuccin-latte .textarea:-moz-placeholder,html.theme--catppuccin-latte .input:-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-latte .select select:-ms-input-placeholder,html.theme--catppuccin-latte .textarea:-ms-input-placeholder,html.theme--catppuccin-latte .input:-ms-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-latte .select select:hover,html.theme--catppuccin-latte .textarea:hover,html.theme--catppuccin-latte .input:hover,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-latte .select select.is-hovered,html.theme--catppuccin-latte .is-hovered.textarea,html.theme--catppuccin-latte .is-hovered.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#9ca0b0}html.theme--catppuccin-latte .select select:focus,html.theme--catppuccin-latte .textarea:focus,html.theme--catppuccin-latte .input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-latte .select select.is-focused,html.theme--catppuccin-latte .is-focused.textarea,html.theme--catppuccin-latte .is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .select select:active,html.theme--catppuccin-latte .textarea:active,html.theme--catppuccin-latte .input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-latte .select select.is-active,html.theme--catppuccin-latte .is-active.textarea,html.theme--catppuccin-latte .is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#1e66f5;box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .select select[disabled],html.theme--catppuccin-latte .textarea[disabled],html.theme--catppuccin-latte .input[disabled],html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-latte .select select,fieldset[disabled] html.theme--catppuccin-latte .textarea,fieldset[disabled] html.theme--catppuccin-latte .input,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{background-color:#9ca0b0;border-color:#e6e9ef;box-shadow:none;color:#616587}html.theme--catppuccin-latte .select select[disabled]::-moz-placeholder,html.theme--catppuccin-latte .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-latte .input[disabled]::-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-latte .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-latte .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .select select[disabled]:-moz-placeholder,html.theme--catppuccin-latte .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-latte .input[disabled]:-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-latte .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-latte .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .textarea,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-latte .textarea[readonly],html.theme--catppuccin-latte .input[readonly],html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-latte .is-white.textarea,html.theme--catppuccin-latte .is-white.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-latte .is-white.textarea:focus,html.theme--catppuccin-latte .is-white.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-latte .is-white.is-focused.textarea,html.theme--catppuccin-latte .is-white.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-white.textarea:active,html.theme--catppuccin-latte .is-white.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-latte .is-white.is-active.textarea,html.theme--catppuccin-latte .is-white.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-latte .is-black.textarea,html.theme--catppuccin-latte .is-black.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-latte .is-black.textarea:focus,html.theme--catppuccin-latte .is-black.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-latte .is-black.is-focused.textarea,html.theme--catppuccin-latte .is-black.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-black.textarea:active,html.theme--catppuccin-latte .is-black.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-latte .is-black.is-active.textarea,html.theme--catppuccin-latte .is-black.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-latte .is-light.textarea,html.theme--catppuccin-latte .is-light.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-latte .is-light.textarea:focus,html.theme--catppuccin-latte .is-light.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-latte .is-light.is-focused.textarea,html.theme--catppuccin-latte .is-light.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-light.textarea:active,html.theme--catppuccin-latte .is-light.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-latte .is-light.is-active.textarea,html.theme--catppuccin-latte .is-light.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-latte .is-dark.textarea,html.theme--catppuccin-latte .content kbd.textarea,html.theme--catppuccin-latte .is-dark.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-latte .content kbd.input{border-color:#ccd0da}html.theme--catppuccin-latte .is-dark.textarea:focus,html.theme--catppuccin-latte .content kbd.textarea:focus,html.theme--catppuccin-latte .is-dark.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-latte .content kbd.input:focus,html.theme--catppuccin-latte .is-dark.is-focused.textarea,html.theme--catppuccin-latte .content kbd.is-focused.textarea,html.theme--catppuccin-latte .is-dark.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .content kbd.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-dark.textarea:active,html.theme--catppuccin-latte .content kbd.textarea:active,html.theme--catppuccin-latte .is-dark.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-latte .content kbd.input:active,html.theme--catppuccin-latte .is-dark.is-active.textarea,html.theme--catppuccin-latte .content kbd.is-active.textarea,html.theme--catppuccin-latte .is-dark.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-latte .content kbd.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(204,208,218,0.25)}html.theme--catppuccin-latte .is-primary.textarea,html.theme--catppuccin-latte .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-latte .is-primary.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-latte .docstring>section>a.input.docs-sourcelink{border-color:#1e66f5}html.theme--catppuccin-latte .is-primary.textarea:focus,html.theme--catppuccin-latte .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-latte .is-primary.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-latte .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-latte .is-primary.is-focused.textarea,html.theme--catppuccin-latte .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-latte .is-primary.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-latte .is-primary.textarea:active,html.theme--catppuccin-latte .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-latte .is-primary.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-latte .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-latte .is-primary.is-active.textarea,html.theme--catppuccin-latte .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-latte .is-primary.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-latte .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .is-link.textarea,html.theme--catppuccin-latte .is-link.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#1e66f5}html.theme--catppuccin-latte .is-link.textarea:focus,html.theme--catppuccin-latte .is-link.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-latte .is-link.is-focused.textarea,html.theme--catppuccin-latte .is-link.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-link.textarea:active,html.theme--catppuccin-latte .is-link.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-latte .is-link.is-active.textarea,html.theme--catppuccin-latte .is-link.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .is-info.textarea,html.theme--catppuccin-latte .is-info.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#179299}html.theme--catppuccin-latte .is-info.textarea:focus,html.theme--catppuccin-latte .is-info.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-latte .is-info.is-focused.textarea,html.theme--catppuccin-latte .is-info.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-info.textarea:active,html.theme--catppuccin-latte .is-info.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-latte .is-info.is-active.textarea,html.theme--catppuccin-latte .is-info.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(23,146,153,0.25)}html.theme--catppuccin-latte .is-success.textarea,html.theme--catppuccin-latte .is-success.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#40a02b}html.theme--catppuccin-latte .is-success.textarea:focus,html.theme--catppuccin-latte .is-success.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-latte .is-success.is-focused.textarea,html.theme--catppuccin-latte .is-success.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-success.textarea:active,html.theme--catppuccin-latte .is-success.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-latte .is-success.is-active.textarea,html.theme--catppuccin-latte .is-success.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(64,160,43,0.25)}html.theme--catppuccin-latte .is-warning.textarea,html.theme--catppuccin-latte .is-warning.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#df8e1d}html.theme--catppuccin-latte .is-warning.textarea:focus,html.theme--catppuccin-latte .is-warning.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-latte .is-warning.is-focused.textarea,html.theme--catppuccin-latte .is-warning.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-warning.textarea:active,html.theme--catppuccin-latte .is-warning.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-latte .is-warning.is-active.textarea,html.theme--catppuccin-latte .is-warning.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(223,142,29,0.25)}html.theme--catppuccin-latte .is-danger.textarea,html.theme--catppuccin-latte .is-danger.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#d20f39}html.theme--catppuccin-latte .is-danger.textarea:focus,html.theme--catppuccin-latte .is-danger.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-latte .is-danger.is-focused.textarea,html.theme--catppuccin-latte .is-danger.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-danger.textarea:active,html.theme--catppuccin-latte .is-danger.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-latte .is-danger.is-active.textarea,html.theme--catppuccin-latte .is-danger.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(210,15,57,0.25)}html.theme--catppuccin-latte .is-small.textarea,html.theme--catppuccin-latte .is-small.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-latte .is-medium.textarea,html.theme--catppuccin-latte .is-medium.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .is-large.textarea,html.theme--catppuccin-latte .is-large.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-latte .is-fullwidth.textarea,html.theme--catppuccin-latte .is-fullwidth.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-latte .is-inline.textarea,html.theme--catppuccin-latte .is-inline.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-latte .input.is-rounded,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-latte .input.is-static,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-latte .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-latte .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-latte .textarea[rows]{height:initial}html.theme--catppuccin-latte .textarea.has-fixed-size{resize:none}html.theme--catppuccin-latte .radio,html.theme--catppuccin-latte .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-latte .radio input,html.theme--catppuccin-latte .checkbox input{cursor:pointer}html.theme--catppuccin-latte .radio:hover,html.theme--catppuccin-latte .checkbox:hover{color:#04a5e5}html.theme--catppuccin-latte .radio[disabled],html.theme--catppuccin-latte .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-latte .radio,fieldset[disabled] html.theme--catppuccin-latte .checkbox,html.theme--catppuccin-latte .radio input[disabled],html.theme--catppuccin-latte .checkbox input[disabled]{color:#616587;cursor:not-allowed}html.theme--catppuccin-latte .radio+.radio{margin-left:.5em}html.theme--catppuccin-latte .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-latte .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-latte .select:not(.is-multiple):not(.is-loading)::after{border-color:#1e66f5;right:1.125em;z-index:4}html.theme--catppuccin-latte .select.is-rounded select,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-latte .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-latte .select select::-ms-expand{display:none}html.theme--catppuccin-latte .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-latte .select select:hover{border-color:#e6e9ef}html.theme--catppuccin-latte .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-latte .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-latte .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-latte .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#04a5e5}html.theme--catppuccin-latte .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-latte .select.is-white select{border-color:#fff}html.theme--catppuccin-latte .select.is-white select:hover,html.theme--catppuccin-latte .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-latte .select.is-white select:focus,html.theme--catppuccin-latte .select.is-white select.is-focused,html.theme--catppuccin-latte .select.is-white select:active,html.theme--catppuccin-latte .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-latte .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-latte .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-latte .select.is-black select:hover,html.theme--catppuccin-latte .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-latte .select.is-black select:focus,html.theme--catppuccin-latte .select.is-black select.is-focused,html.theme--catppuccin-latte .select.is-black select:active,html.theme--catppuccin-latte .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-latte .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-latte .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-latte .select.is-light select:hover,html.theme--catppuccin-latte .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-latte .select.is-light select:focus,html.theme--catppuccin-latte .select.is-light select.is-focused,html.theme--catppuccin-latte .select.is-light select:active,html.theme--catppuccin-latte .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-latte .select.is-dark:not(:hover)::after,html.theme--catppuccin-latte .content kbd.select:not(:hover)::after{border-color:#ccd0da}html.theme--catppuccin-latte .select.is-dark select,html.theme--catppuccin-latte .content kbd.select select{border-color:#ccd0da}html.theme--catppuccin-latte .select.is-dark select:hover,html.theme--catppuccin-latte .content kbd.select select:hover,html.theme--catppuccin-latte .select.is-dark select.is-hovered,html.theme--catppuccin-latte .content kbd.select select.is-hovered{border-color:#bdc2cf}html.theme--catppuccin-latte .select.is-dark select:focus,html.theme--catppuccin-latte .content kbd.select select:focus,html.theme--catppuccin-latte .select.is-dark select.is-focused,html.theme--catppuccin-latte .content kbd.select select.is-focused,html.theme--catppuccin-latte .select.is-dark select:active,html.theme--catppuccin-latte .content kbd.select select:active,html.theme--catppuccin-latte .select.is-dark select.is-active,html.theme--catppuccin-latte .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(204,208,218,0.25)}html.theme--catppuccin-latte .select.is-primary:not(:hover)::after,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-primary select,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-primary select:hover,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-latte .select.is-primary select.is-hovered,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#0b57ef}html.theme--catppuccin-latte .select.is-primary select:focus,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-latte .select.is-primary select.is-focused,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-latte .select.is-primary select:active,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-latte .select.is-primary select.is-active,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .select.is-link:not(:hover)::after{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-link select{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-link select:hover,html.theme--catppuccin-latte .select.is-link select.is-hovered{border-color:#0b57ef}html.theme--catppuccin-latte .select.is-link select:focus,html.theme--catppuccin-latte .select.is-link select.is-focused,html.theme--catppuccin-latte .select.is-link select:active,html.theme--catppuccin-latte .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .select.is-info:not(:hover)::after{border-color:#179299}html.theme--catppuccin-latte .select.is-info select{border-color:#179299}html.theme--catppuccin-latte .select.is-info select:hover,html.theme--catppuccin-latte .select.is-info select.is-hovered{border-color:#147d83}html.theme--catppuccin-latte .select.is-info select:focus,html.theme--catppuccin-latte .select.is-info select.is-focused,html.theme--catppuccin-latte .select.is-info select:active,html.theme--catppuccin-latte .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(23,146,153,0.25)}html.theme--catppuccin-latte .select.is-success:not(:hover)::after{border-color:#40a02b}html.theme--catppuccin-latte .select.is-success select{border-color:#40a02b}html.theme--catppuccin-latte .select.is-success select:hover,html.theme--catppuccin-latte .select.is-success select.is-hovered{border-color:#388c26}html.theme--catppuccin-latte .select.is-success select:focus,html.theme--catppuccin-latte .select.is-success select.is-focused,html.theme--catppuccin-latte .select.is-success select:active,html.theme--catppuccin-latte .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(64,160,43,0.25)}html.theme--catppuccin-latte .select.is-warning:not(:hover)::after{border-color:#df8e1d}html.theme--catppuccin-latte .select.is-warning select{border-color:#df8e1d}html.theme--catppuccin-latte .select.is-warning select:hover,html.theme--catppuccin-latte .select.is-warning select.is-hovered{border-color:#c8801a}html.theme--catppuccin-latte .select.is-warning select:focus,html.theme--catppuccin-latte .select.is-warning select.is-focused,html.theme--catppuccin-latte .select.is-warning select:active,html.theme--catppuccin-latte .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(223,142,29,0.25)}html.theme--catppuccin-latte .select.is-danger:not(:hover)::after{border-color:#d20f39}html.theme--catppuccin-latte .select.is-danger select{border-color:#d20f39}html.theme--catppuccin-latte .select.is-danger select:hover,html.theme--catppuccin-latte .select.is-danger select.is-hovered{border-color:#ba0d33}html.theme--catppuccin-latte .select.is-danger select:focus,html.theme--catppuccin-latte .select.is-danger select.is-focused,html.theme--catppuccin-latte .select.is-danger select:active,html.theme--catppuccin-latte .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(210,15,57,0.25)}html.theme--catppuccin-latte .select.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-latte .select.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .select.is-large{font-size:1.5rem}html.theme--catppuccin-latte .select.is-disabled::after{border-color:#616587 !important;opacity:0.5}html.theme--catppuccin-latte .select.is-fullwidth{width:100%}html.theme--catppuccin-latte .select.is-fullwidth select{width:100%}html.theme--catppuccin-latte .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-latte .select.is-loading.is-small:after,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-latte .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-latte .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-latte .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-latte .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .file.is-white:hover .file-cta,html.theme--catppuccin-latte .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .file.is-white:focus .file-cta,html.theme--catppuccin-latte .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-latte .file.is-white:active .file-cta,html.theme--catppuccin-latte .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-black:hover .file-cta,html.theme--catppuccin-latte .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-black:focus .file-cta,html.theme--catppuccin-latte .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-latte .file.is-black:active .file-cta,html.theme--catppuccin-latte .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-light:hover .file-cta,html.theme--catppuccin-latte .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-light:focus .file-cta,html.theme--catppuccin-latte .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-light:active .file-cta,html.theme--catppuccin-latte .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark .file-cta,html.theme--catppuccin-latte .content kbd.file .file-cta{background-color:#ccd0da;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark:hover .file-cta,html.theme--catppuccin-latte .content kbd.file:hover .file-cta,html.theme--catppuccin-latte .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-latte .content kbd.file.is-hovered .file-cta{background-color:#c5c9d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark:focus .file-cta,html.theme--catppuccin-latte .content kbd.file:focus .file-cta,html.theme--catppuccin-latte .file.is-dark.is-focused .file-cta,html.theme--catppuccin-latte .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(204,208,218,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark:active .file-cta,html.theme--catppuccin-latte .content kbd.file:active .file-cta,html.theme--catppuccin-latte .file.is-dark.is-active .file-cta,html.theme--catppuccin-latte .content kbd.file.is-active .file-cta{background-color:#bdc2cf;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-primary .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-primary:hover .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-latte .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-primary:focus .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-latte .file.is-primary.is-focused .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(30,102,245,0.25);color:#fff}html.theme--catppuccin-latte .file.is-primary:active .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-latte .file.is-primary.is-active .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-link .file-cta{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-link:hover .file-cta,html.theme--catppuccin-latte .file.is-link.is-hovered .file-cta{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-link:focus .file-cta,html.theme--catppuccin-latte .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(30,102,245,0.25);color:#fff}html.theme--catppuccin-latte .file.is-link:active .file-cta,html.theme--catppuccin-latte .file.is-link.is-active .file-cta{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-info .file-cta{background-color:#179299;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-info:hover .file-cta,html.theme--catppuccin-latte .file.is-info.is-hovered .file-cta{background-color:#15878e;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-info:focus .file-cta,html.theme--catppuccin-latte .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(23,146,153,0.25);color:#fff}html.theme--catppuccin-latte .file.is-info:active .file-cta,html.theme--catppuccin-latte .file.is-info.is-active .file-cta{background-color:#147d83;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-success .file-cta{background-color:#40a02b;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-success:hover .file-cta,html.theme--catppuccin-latte .file.is-success.is-hovered .file-cta{background-color:#3c9628;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-success:focus .file-cta,html.theme--catppuccin-latte .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(64,160,43,0.25);color:#fff}html.theme--catppuccin-latte .file.is-success:active .file-cta,html.theme--catppuccin-latte .file.is-success.is-active .file-cta{background-color:#388c26;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-warning .file-cta{background-color:#df8e1d;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-warning:hover .file-cta,html.theme--catppuccin-latte .file.is-warning.is-hovered .file-cta{background-color:#d4871c;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-warning:focus .file-cta,html.theme--catppuccin-latte .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(223,142,29,0.25);color:#fff}html.theme--catppuccin-latte .file.is-warning:active .file-cta,html.theme--catppuccin-latte .file.is-warning.is-active .file-cta{background-color:#c8801a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-danger .file-cta{background-color:#d20f39;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-danger:hover .file-cta,html.theme--catppuccin-latte .file.is-danger.is-hovered .file-cta{background-color:#c60e36;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-danger:focus .file-cta,html.theme--catppuccin-latte .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(210,15,57,0.25);color:#fff}html.theme--catppuccin-latte .file.is-danger:active .file-cta,html.theme--catppuccin-latte .file.is-danger.is-active .file-cta{background-color:#ba0d33;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-latte .file.is-normal{font-size:1rem}html.theme--catppuccin-latte .file.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-latte .file.is-large{font-size:1.5rem}html.theme--catppuccin-latte .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-latte .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-latte .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-latte .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-latte .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-latte .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-latte .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-latte .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-latte .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-latte .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-latte .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-latte .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-latte .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-latte .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-latte .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-latte .file.is-centered{justify-content:center}html.theme--catppuccin-latte .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-latte .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-latte .file.is-right{justify-content:flex-end}html.theme--catppuccin-latte .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-latte .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-latte .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-latte .file-label:hover .file-cta{background-color:#c5c9d5;color:#41445a}html.theme--catppuccin-latte .file-label:hover .file-name{border-color:#a5a9b8}html.theme--catppuccin-latte .file-label:active .file-cta{background-color:#bdc2cf;color:#41445a}html.theme--catppuccin-latte .file-label:active .file-name{border-color:#9ea2b3}html.theme--catppuccin-latte .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-latte .file-cta,html.theme--catppuccin-latte .file-name{border-color:#acb0be;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-latte .file-cta{background-color:#ccd0da;color:#4c4f69}html.theme--catppuccin-latte .file-name{border-color:#acb0be;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-latte .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-latte .file-icon .fa{font-size:14px}html.theme--catppuccin-latte .label{color:#41445a;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-latte .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-latte .label.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-latte .label.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .label.is-large{font-size:1.5rem}html.theme--catppuccin-latte .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-latte .help.is-white{color:#fff}html.theme--catppuccin-latte .help.is-black{color:#0a0a0a}html.theme--catppuccin-latte .help.is-light{color:#f5f5f5}html.theme--catppuccin-latte .help.is-dark,html.theme--catppuccin-latte .content kbd.help{color:#ccd0da}html.theme--catppuccin-latte .help.is-primary,html.theme--catppuccin-latte .docstring>section>a.help.docs-sourcelink{color:#1e66f5}html.theme--catppuccin-latte .help.is-link{color:#1e66f5}html.theme--catppuccin-latte .help.is-info{color:#179299}html.theme--catppuccin-latte .help.is-success{color:#40a02b}html.theme--catppuccin-latte .help.is-warning{color:#df8e1d}html.theme--catppuccin-latte .help.is-danger{color:#d20f39}html.theme--catppuccin-latte .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-latte .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-latte .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-latte .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-latte .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-latte .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-latte .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-latte .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-latte .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-latte .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-latte .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .field.is-horizontal{display:flex}}html.theme--catppuccin-latte .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-latte .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-latte .field-label.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-latte .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-latte .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-latte .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-latte .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-latte .field-body .field{margin-bottom:0}html.theme--catppuccin-latte .field-body>.field{flex-shrink:1}html.theme--catppuccin-latte .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-latte .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-latte .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-latte .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-latte .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-right .select:focus~.icon{color:#ccd0da}html.theme--catppuccin-latte .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-latte .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-latte .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-latte .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-latte .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-latte .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-latte .control.has-icons-left .icon,html.theme--catppuccin-latte .control.has-icons-right .icon{color:#acb0be;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-latte .control.has-icons-left .input,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-latte .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-latte .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-latte .control.has-icons-right .input,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-latte .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-latte .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-latte .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-latte .control.is-loading.is-small:after,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-latte .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-latte .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-latte .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-latte .breadcrumb a{align-items:center;color:#1e66f5;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-latte .breadcrumb a:hover{color:#04a5e5}html.theme--catppuccin-latte .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-latte .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-latte .breadcrumb li.is-active a{color:#41445a;cursor:default;pointer-events:none}html.theme--catppuccin-latte .breadcrumb li+li::before{color:#9ca0b0;content:"\0002f"}html.theme--catppuccin-latte .breadcrumb ul,html.theme--catppuccin-latte .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-latte .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-latte .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-latte .breadcrumb.is-centered ol,html.theme--catppuccin-latte .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-latte .breadcrumb.is-right ol,html.theme--catppuccin-latte .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-latte .breadcrumb.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-latte .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-latte .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-latte .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-latte .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-latte .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-latte .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#4c4f69;max-width:100%;position:relative}html.theme--catppuccin-latte .card-footer:first-child,html.theme--catppuccin-latte .card-content:first-child,html.theme--catppuccin-latte .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-latte .card-footer:last-child,html.theme--catppuccin-latte .card-content:last-child,html.theme--catppuccin-latte .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-latte .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-latte .card-header-title{align-items:center;color:#41445a;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-latte .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-latte .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-latte .card-image{display:block;position:relative}html.theme--catppuccin-latte .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-latte .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-latte .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-latte .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-latte .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-latte .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-latte .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-latte .dropdown.is-active .dropdown-menu,html.theme--catppuccin-latte .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-latte .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-latte .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-latte .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-latte .dropdown-content{background-color:#e6e9ef;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-latte .dropdown-item{color:#4c4f69;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-latte a.dropdown-item,html.theme--catppuccin-latte button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-latte a.dropdown-item:hover,html.theme--catppuccin-latte button.dropdown-item:hover{background-color:#e6e9ef;color:#0a0a0a}html.theme--catppuccin-latte a.dropdown-item.is-active,html.theme--catppuccin-latte button.dropdown-item.is-active{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-latte .level{align-items:center;justify-content:space-between}html.theme--catppuccin-latte .level code{border-radius:.4em}html.theme--catppuccin-latte .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-latte .level.is-mobile{display:flex}html.theme--catppuccin-latte .level.is-mobile .level-left,html.theme--catppuccin-latte .level.is-mobile .level-right{display:flex}html.theme--catppuccin-latte .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-latte .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-latte .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level{display:flex}html.theme--catppuccin-latte .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-latte .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-latte .level-item .title,html.theme--catppuccin-latte .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-latte .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-latte .level-left,html.theme--catppuccin-latte .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .level-left .level-item.is-flexible,html.theme--catppuccin-latte .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level-left .level-item:not(:last-child),html.theme--catppuccin-latte .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-latte .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-latte .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level-left{display:flex}}html.theme--catppuccin-latte .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level-right{display:flex}}html.theme--catppuccin-latte .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-latte .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-latte .media .media{border-top:1px solid rgba(172,176,190,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-latte .media .media .content:not(:last-child),html.theme--catppuccin-latte .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-latte .media .media .media{padding-top:.5rem}html.theme--catppuccin-latte .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-latte .media+.media{border-top:1px solid rgba(172,176,190,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-latte .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-latte .media-left,html.theme--catppuccin-latte .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .media-left{margin-right:1rem}html.theme--catppuccin-latte .media-right{margin-left:1rem}html.theme--catppuccin-latte .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-latte .media-content{overflow-x:auto}}html.theme--catppuccin-latte .menu{font-size:1rem}html.theme--catppuccin-latte .menu.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-latte .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .menu.is-large{font-size:1.5rem}html.theme--catppuccin-latte .menu-list{line-height:1.25}html.theme--catppuccin-latte .menu-list a{border-radius:3px;color:#4c4f69;display:block;padding:0.5em 0.75em}html.theme--catppuccin-latte .menu-list a:hover{background-color:#e6e9ef;color:#41445a}html.theme--catppuccin-latte .menu-list a.is-active{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .menu-list li ul{border-left:1px solid #acb0be;margin:.75em;padding-left:.75em}html.theme--catppuccin-latte .menu-label{color:#616587;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-latte .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-latte .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-latte .message{background-color:#e6e9ef;border-radius:.4em;font-size:1rem}html.theme--catppuccin-latte .message strong{color:currentColor}html.theme--catppuccin-latte .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-latte .message.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-latte .message.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .message.is-large{font-size:1.5rem}html.theme--catppuccin-latte .message.is-white{background-color:#fff}html.theme--catppuccin-latte .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-latte .message.is-black{background-color:#fafafa}html.theme--catppuccin-latte .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-latte .message.is-light{background-color:#fafafa}html.theme--catppuccin-latte .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-latte .message.is-dark,html.theme--catppuccin-latte .content kbd.message{background-color:#f9fafb}html.theme--catppuccin-latte .message.is-dark .message-header,html.theme--catppuccin-latte .content kbd.message .message-header{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .message.is-dark .message-body,html.theme--catppuccin-latte .content kbd.message .message-body{border-color:#ccd0da}html.theme--catppuccin-latte .message.is-primary,html.theme--catppuccin-latte .docstring>section>a.message.docs-sourcelink{background-color:#ebf2fe}html.theme--catppuccin-latte .message.is-primary .message-header,html.theme--catppuccin-latte .docstring>section>a.message.docs-sourcelink .message-header{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .message.is-primary .message-body,html.theme--catppuccin-latte .docstring>section>a.message.docs-sourcelink .message-body{border-color:#1e66f5;color:#0a52e1}html.theme--catppuccin-latte .message.is-link{background-color:#ebf2fe}html.theme--catppuccin-latte .message.is-link .message-header{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .message.is-link .message-body{border-color:#1e66f5;color:#0a52e1}html.theme--catppuccin-latte .message.is-info{background-color:#edfcfc}html.theme--catppuccin-latte .message.is-info .message-header{background-color:#179299;color:#fff}html.theme--catppuccin-latte .message.is-info .message-body{border-color:#179299;color:#1cb2ba}html.theme--catppuccin-latte .message.is-success{background-color:#f1fbef}html.theme--catppuccin-latte .message.is-success .message-header{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .message.is-success .message-body{border-color:#40a02b;color:#40a12b}html.theme--catppuccin-latte .message.is-warning{background-color:#fdf6ed}html.theme--catppuccin-latte .message.is-warning .message-header{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .message.is-warning .message-body{border-color:#df8e1d;color:#9e6515}html.theme--catppuccin-latte .message.is-danger{background-color:#feecf0}html.theme--catppuccin-latte .message.is-danger .message-header{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .message.is-danger .message-body{border-color:#d20f39;color:#e9113f}html.theme--catppuccin-latte .message-header{align-items:center;background-color:#4c4f69;border-radius:.4em .4em 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-latte .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-latte .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-latte .message-body{border-color:#acb0be;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#4c4f69;padding:1.25em 1.5em}html.theme--catppuccin-latte .message-body code,html.theme--catppuccin-latte .message-body pre{background-color:#fff}html.theme--catppuccin-latte .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-latte .modal.is-active{display:flex}html.theme--catppuccin-latte .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-latte .modal-content,html.theme--catppuccin-latte .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-latte .modal-content,html.theme--catppuccin-latte .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-latte .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-latte .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-latte .modal-card-head,html.theme--catppuccin-latte .modal-card-foot{align-items:center;background-color:#e6e9ef;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-latte .modal-card-head{border-bottom:1px solid #acb0be;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-latte .modal-card-title{color:#4c4f69;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-latte .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #acb0be}html.theme--catppuccin-latte .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-latte .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#eff1f5;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-latte .navbar{background-color:#1e66f5;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-latte .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-latte .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-latte .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-latte .navbar.is-dark,html.theme--catppuccin-latte .content kbd.navbar{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-burger,html.theme--catppuccin-latte .content kbd.navbar .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#ccd0da;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-latte .navbar.is-primary,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-burger,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1e66f5;color:#fff}}html.theme--catppuccin-latte .navbar.is-link{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#1e66f5;color:#fff}}html.theme--catppuccin-latte .navbar.is-info{background-color:#179299;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#179299;color:#fff}}html.theme--catppuccin-latte .navbar.is-success{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#40a02b;color:#fff}}html.theme--catppuccin-latte .navbar.is-warning{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#df8e1d;color:#fff}}html.theme--catppuccin-latte .navbar.is-danger{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#d20f39;color:#fff}}html.theme--catppuccin-latte .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-latte .navbar.has-shadow{box-shadow:0 2px 0 0 #e6e9ef}html.theme--catppuccin-latte .navbar.is-fixed-bottom,html.theme--catppuccin-latte .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-latte .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-latte .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #e6e9ef}html.theme--catppuccin-latte .navbar.is-fixed-top{top:0}html.theme--catppuccin-latte html.has-navbar-fixed-top,html.theme--catppuccin-latte body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-latte html.has-navbar-fixed-bottom,html.theme--catppuccin-latte body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-latte .navbar-brand,html.theme--catppuccin-latte .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-latte .navbar-brand a.navbar-item:focus,html.theme--catppuccin-latte .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-latte .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-latte .navbar-burger{color:#4c4f69;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-latte .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-latte .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-latte .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-latte .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-latte .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-latte .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-latte .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-latte .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-latte .navbar-menu{display:none}html.theme--catppuccin-latte .navbar-item,html.theme--catppuccin-latte .navbar-link{color:#4c4f69;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-latte .navbar-item .icon:only-child,html.theme--catppuccin-latte .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-latte a.navbar-item,html.theme--catppuccin-latte .navbar-link{cursor:pointer}html.theme--catppuccin-latte a.navbar-item:focus,html.theme--catppuccin-latte a.navbar-item:focus-within,html.theme--catppuccin-latte a.navbar-item:hover,html.theme--catppuccin-latte a.navbar-item.is-active,html.theme--catppuccin-latte .navbar-link:focus,html.theme--catppuccin-latte .navbar-link:focus-within,html.theme--catppuccin-latte .navbar-link:hover,html.theme--catppuccin-latte .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#1e66f5}html.theme--catppuccin-latte .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .navbar-item img{max-height:1.75rem}html.theme--catppuccin-latte .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-latte .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-latte .navbar-item.is-tab:focus,html.theme--catppuccin-latte .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#1e66f5}html.theme--catppuccin-latte .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#1e66f5;border-bottom-style:solid;border-bottom-width:3px;color:#1e66f5;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-latte .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-latte .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-latte .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-latte .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-latte .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .navbar>.container{display:block}html.theme--catppuccin-latte .navbar-brand .navbar-item,html.theme--catppuccin-latte .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-latte .navbar-link::after{display:none}html.theme--catppuccin-latte .navbar-menu{background-color:#1e66f5;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-latte .navbar-menu.is-active{display:block}html.theme--catppuccin-latte .navbar.is-fixed-bottom-touch,html.theme--catppuccin-latte .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-latte .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-latte .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-latte .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-latte .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-latte .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-latte html.has-navbar-fixed-top-touch,html.theme--catppuccin-latte body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-latte html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-latte body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar,html.theme--catppuccin-latte .navbar-menu,html.theme--catppuccin-latte .navbar-start,html.theme--catppuccin-latte .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-latte .navbar{min-height:4rem}html.theme--catppuccin-latte .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-latte .navbar.is-spaced .navbar-start,html.theme--catppuccin-latte .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-latte .navbar.is-spaced a.navbar-item,html.theme--catppuccin-latte .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-latte .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-latte .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8c8fa1}html.theme--catppuccin-latte .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1e66f5}html.theme--catppuccin-latte .navbar-burger{display:none}html.theme--catppuccin-latte .navbar-item,html.theme--catppuccin-latte .navbar-link{align-items:center;display:flex}html.theme--catppuccin-latte .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-latte .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-latte .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-latte .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-latte .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-latte .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-latte .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-latte .navbar-dropdown{background-color:#1e66f5;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-latte .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-latte .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-latte .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-latte .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8c8fa1}html.theme--catppuccin-latte .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1e66f5}.navbar.is-spaced html.theme--catppuccin-latte .navbar-dropdown,html.theme--catppuccin-latte .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-latte .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-latte .navbar-divider{display:block}html.theme--catppuccin-latte .navbar>.container .navbar-brand,html.theme--catppuccin-latte .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-latte .navbar>.container .navbar-menu,html.theme--catppuccin-latte .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-latte .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-latte .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-latte .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-latte .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-latte .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-latte html.has-navbar-fixed-top-desktop,html.theme--catppuccin-latte body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-latte html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-latte body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-latte html.has-spaced-navbar-fixed-top,html.theme--catppuccin-latte body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-latte html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-latte body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-latte a.navbar-item.is-active,html.theme--catppuccin-latte .navbar-link.is-active{color:#1e66f5}html.theme--catppuccin-latte a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-latte .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-latte .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-latte .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-latte .pagination.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-latte .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-latte .pagination.is-rounded .pagination-previous,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-latte .pagination.is-rounded .pagination-next,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-latte .pagination.is-rounded .pagination-link,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-latte .pagination,html.theme--catppuccin-latte .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link{border-color:#acb0be;color:#1e66f5;min-width:2.5em}html.theme--catppuccin-latte .pagination-previous:hover,html.theme--catppuccin-latte .pagination-next:hover,html.theme--catppuccin-latte .pagination-link:hover{border-color:#9ca0b0;color:#04a5e5}html.theme--catppuccin-latte .pagination-previous:focus,html.theme--catppuccin-latte .pagination-next:focus,html.theme--catppuccin-latte .pagination-link:focus{border-color:#9ca0b0}html.theme--catppuccin-latte .pagination-previous:active,html.theme--catppuccin-latte .pagination-next:active,html.theme--catppuccin-latte .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-latte .pagination-previous[disabled],html.theme--catppuccin-latte .pagination-previous.is-disabled,html.theme--catppuccin-latte .pagination-next[disabled],html.theme--catppuccin-latte .pagination-next.is-disabled,html.theme--catppuccin-latte .pagination-link[disabled],html.theme--catppuccin-latte .pagination-link.is-disabled{background-color:#acb0be;border-color:#acb0be;box-shadow:none;color:#616587;opacity:0.5}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-latte .pagination-link.is-current{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .pagination-ellipsis{color:#9ca0b0;pointer-events:none}html.theme--catppuccin-latte .pagination-list{flex-wrap:wrap}html.theme--catppuccin-latte .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-latte .pagination{flex-wrap:wrap}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-latte .pagination-previous{order:2}html.theme--catppuccin-latte .pagination-next{order:3}html.theme--catppuccin-latte .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-latte .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-latte .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-latte .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-latte .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-latte .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-latte .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-latte .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-latte .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-latte .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-latte .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-latte .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-latte .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-latte .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-latte .panel.is-dark .panel-heading,html.theme--catppuccin-latte .content kbd.panel .panel-heading{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-latte .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#ccd0da}html.theme--catppuccin-latte .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-latte .content kbd.panel .panel-block.is-active .panel-icon{color:#ccd0da}html.theme--catppuccin-latte .panel.is-primary .panel-heading,html.theme--catppuccin-latte .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-latte .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#1e66f5}html.theme--catppuccin-latte .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-latte .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#1e66f5}html.theme--catppuccin-latte .panel.is-link .panel-heading{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .panel.is-link .panel-tabs a.is-active{border-bottom-color:#1e66f5}html.theme--catppuccin-latte .panel.is-link .panel-block.is-active .panel-icon{color:#1e66f5}html.theme--catppuccin-latte .panel.is-info .panel-heading{background-color:#179299;color:#fff}html.theme--catppuccin-latte .panel.is-info .panel-tabs a.is-active{border-bottom-color:#179299}html.theme--catppuccin-latte .panel.is-info .panel-block.is-active .panel-icon{color:#179299}html.theme--catppuccin-latte .panel.is-success .panel-heading{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .panel.is-success .panel-tabs a.is-active{border-bottom-color:#40a02b}html.theme--catppuccin-latte .panel.is-success .panel-block.is-active .panel-icon{color:#40a02b}html.theme--catppuccin-latte .panel.is-warning .panel-heading{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#df8e1d}html.theme--catppuccin-latte .panel.is-warning .panel-block.is-active .panel-icon{color:#df8e1d}html.theme--catppuccin-latte .panel.is-danger .panel-heading{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#d20f39}html.theme--catppuccin-latte .panel.is-danger .panel-block.is-active .panel-icon{color:#d20f39}html.theme--catppuccin-latte .panel-tabs:not(:last-child),html.theme--catppuccin-latte .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-latte .panel-heading{background-color:#bcc0cc;border-radius:8px 8px 0 0;color:#41445a;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-latte .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-latte .panel-tabs a{border-bottom:1px solid #acb0be;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-latte .panel-tabs a.is-active{border-bottom-color:#bcc0cc;color:#0b57ef}html.theme--catppuccin-latte .panel-list a{color:#4c4f69}html.theme--catppuccin-latte .panel-list a:hover{color:#1e66f5}html.theme--catppuccin-latte .panel-block{align-items:center;color:#41445a;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-latte .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-latte .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-latte .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-latte .panel-block.is-active{border-left-color:#1e66f5;color:#0b57ef}html.theme--catppuccin-latte .panel-block.is-active .panel-icon{color:#1e66f5}html.theme--catppuccin-latte .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-latte a.panel-block,html.theme--catppuccin-latte label.panel-block{cursor:pointer}html.theme--catppuccin-latte a.panel-block:hover,html.theme--catppuccin-latte label.panel-block:hover{background-color:#e6e9ef}html.theme--catppuccin-latte .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#616587;margin-right:.75em}html.theme--catppuccin-latte .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-latte .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-latte .tabs a{align-items:center;border-bottom-color:#acb0be;border-bottom-style:solid;border-bottom-width:1px;color:#4c4f69;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-latte .tabs a:hover{border-bottom-color:#41445a;color:#41445a}html.theme--catppuccin-latte .tabs li{display:block}html.theme--catppuccin-latte .tabs li.is-active a{border-bottom-color:#1e66f5;color:#1e66f5}html.theme--catppuccin-latte .tabs ul{align-items:center;border-bottom-color:#acb0be;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-latte .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-latte .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-latte .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-latte .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-latte .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-latte .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-latte .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-latte .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-latte .tabs.is-boxed a:hover{background-color:#e6e9ef;border-bottom-color:#acb0be}html.theme--catppuccin-latte .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#acb0be;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-latte .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-latte .tabs.is-toggle a{border-color:#acb0be;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-latte .tabs.is-toggle a:hover{background-color:#e6e9ef;border-color:#9ca0b0;z-index:2}html.theme--catppuccin-latte .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-latte .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-latte .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-latte .tabs.is-toggle li.is-active a{background-color:#1e66f5;border-color:#1e66f5;color:#fff;z-index:1}html.theme--catppuccin-latte .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-latte .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-latte .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-latte .tabs.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-latte .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-latte .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-latte .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-latte .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-latte .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-latte .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-latte .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-latte .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-latte .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-latte .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .column.is-narrow,html.theme--catppuccin-latte .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full,html.theme--catppuccin-latte .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters,html.theme--catppuccin-latte .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds,html.theme--catppuccin-latte .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half,html.theme--catppuccin-latte .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third,html.theme--catppuccin-latte .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter,html.theme--catppuccin-latte .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth,html.theme--catppuccin-latte .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths,html.theme--catppuccin-latte .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths,html.theme--catppuccin-latte .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths,html.theme--catppuccin-latte .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters,html.theme--catppuccin-latte .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds,html.theme--catppuccin-latte .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half,html.theme--catppuccin-latte .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third,html.theme--catppuccin-latte .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter,html.theme--catppuccin-latte .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth,html.theme--catppuccin-latte .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths,html.theme--catppuccin-latte .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths,html.theme--catppuccin-latte .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths,html.theme--catppuccin-latte .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-latte .column.is-0,html.theme--catppuccin-latte .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0,html.theme--catppuccin-latte .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-latte .column.is-1,html.theme--catppuccin-latte .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1,html.theme--catppuccin-latte .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2,html.theme--catppuccin-latte .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2,html.theme--catppuccin-latte .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3,html.theme--catppuccin-latte .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3,html.theme--catppuccin-latte .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-latte .column.is-4,html.theme--catppuccin-latte .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4,html.theme--catppuccin-latte .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5,html.theme--catppuccin-latte .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5,html.theme--catppuccin-latte .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6,html.theme--catppuccin-latte .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6,html.theme--catppuccin-latte .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-latte .column.is-7,html.theme--catppuccin-latte .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7,html.theme--catppuccin-latte .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8,html.theme--catppuccin-latte .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8,html.theme--catppuccin-latte .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9,html.theme--catppuccin-latte .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9,html.theme--catppuccin-latte .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-latte .column.is-10,html.theme--catppuccin-latte .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10,html.theme--catppuccin-latte .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11,html.theme--catppuccin-latte .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11,html.theme--catppuccin-latte .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12,html.theme--catppuccin-latte .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12,html.theme--catppuccin-latte .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-latte .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-latte .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-latte .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-latte .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-latte .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-latte .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-latte .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-latte .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-latte .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-latte .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-latte .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-latte .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-latte .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-latte .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-latte .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-latte .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-latte .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-latte .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-latte .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-latte .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-latte .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-latte .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-latte .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-latte .columns.is-centered{justify-content:center}html.theme--catppuccin-latte .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-latte .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-latte .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-latte .columns.is-mobile{display:flex}html.theme--catppuccin-latte .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-latte .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-desktop{display:flex}}html.theme--catppuccin-latte .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-latte .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-latte .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-latte .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-latte .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-latte .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-latte .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-latte .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-latte .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-latte .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-latte .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-latte .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-latte .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-latte .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-latte .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-latte .tile.is-child{margin:0 !important}html.theme--catppuccin-latte .tile.is-parent{padding:.75rem}html.theme--catppuccin-latte .tile.is-vertical{flex-direction:column}html.theme--catppuccin-latte .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .tile:not(.is-child){display:flex}html.theme--catppuccin-latte .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-latte .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-latte .tile.is-3{flex:none;width:25%}html.theme--catppuccin-latte .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-latte .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-latte .tile.is-6{flex:none;width:50%}html.theme--catppuccin-latte .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-latte .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-latte .tile.is-9{flex:none;width:75%}html.theme--catppuccin-latte .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-latte .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-latte .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-latte .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-latte .hero .navbar{background:none}html.theme--catppuccin-latte .hero .tabs ul{border-bottom:none}html.theme--catppuccin-latte .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-white strong{color:inherit}html.theme--catppuccin-latte .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-latte .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-latte .hero.is-white .navbar-item,html.theme--catppuccin-latte .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-latte .hero.is-white a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-white .navbar-link:hover,html.theme--catppuccin-latte .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-latte .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-latte .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-black strong{color:inherit}html.theme--catppuccin-latte .hero.is-black .title{color:#fff}html.theme--catppuccin-latte .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-latte .hero.is-black .navbar-item,html.theme--catppuccin-latte .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-black a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-black .navbar-link:hover,html.theme--catppuccin-latte .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-latte .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-latte .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-light strong{color:inherit}html.theme--catppuccin-latte .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-latte .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-latte .hero.is-light .navbar-item,html.theme--catppuccin-latte .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-light .navbar-link:hover,html.theme--catppuccin-latte .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-latte .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-latte .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-latte .hero.is-dark,html.theme--catppuccin-latte .content kbd.hero{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-dark strong,html.theme--catppuccin-latte .content kbd.hero strong{color:inherit}html.theme--catppuccin-latte .hero.is-dark .title,html.theme--catppuccin-latte .content kbd.hero .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark .subtitle,html.theme--catppuccin-latte .content kbd.hero .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-latte .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-latte .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-dark .subtitle strong,html.theme--catppuccin-latte .content kbd.hero .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-dark .navbar-menu,html.theme--catppuccin-latte .content kbd.hero .navbar-menu{background-color:#ccd0da}}html.theme--catppuccin-latte .hero.is-dark .navbar-item,html.theme--catppuccin-latte .content kbd.hero .navbar-item,html.theme--catppuccin-latte .hero.is-dark .navbar-link,html.theme--catppuccin-latte .content kbd.hero .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-dark .navbar-link:hover,html.theme--catppuccin-latte .content kbd.hero .navbar-link:hover,html.theme--catppuccin-latte .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.hero .navbar-link.is-active{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark .tabs a,html.theme--catppuccin-latte .content kbd.hero .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-latte .hero.is-dark .tabs a:hover,html.theme--catppuccin-latte .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-latte .content kbd.hero .tabs li.is-active a{color:#ccd0da !important;opacity:1}html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-latte .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-latte .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#ccd0da}html.theme--catppuccin-latte .hero.is-dark.is-bold,html.theme--catppuccin-latte .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #a7b8cc 0%, #ccd0da 71%, #d9dbe6 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-latte .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #a7b8cc 0%, #ccd0da 71%, #d9dbe6 100%)}}html.theme--catppuccin-latte .hero.is-primary,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-primary strong,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-latte .hero.is-primary .title,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-latte .hero.is-primary .subtitle,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-primary .subtitle strong,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-primary .navbar-menu,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#1e66f5}}html.theme--catppuccin-latte .hero.is-primary .navbar-item,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-latte .hero.is-primary .navbar-link,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-primary .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-latte .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .hero.is-primary .tabs a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-primary .tabs a:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#1e66f5 !important;opacity:1}html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .hero.is-primary.is-bold,html.theme--catppuccin-latte .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-latte .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}}html.theme--catppuccin-latte .hero.is-link{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-link strong{color:inherit}html.theme--catppuccin-latte .hero.is-link .title{color:#fff}html.theme--catppuccin-latte .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-link .navbar-menu{background-color:#1e66f5}}html.theme--catppuccin-latte .hero.is-link .navbar-item,html.theme--catppuccin-latte .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-link a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-link .navbar-link:hover,html.theme--catppuccin-latte .hero.is-link .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-link .tabs li.is-active a{color:#1e66f5 !important;opacity:1}html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .hero.is-link.is-bold{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}}html.theme--catppuccin-latte .hero.is-info{background-color:#179299;color:#fff}html.theme--catppuccin-latte .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-info strong{color:inherit}html.theme--catppuccin-latte .hero.is-info .title{color:#fff}html.theme--catppuccin-latte .hero.is-info .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-info .navbar-menu{background-color:#179299}}html.theme--catppuccin-latte .hero.is-info .navbar-item,html.theme--catppuccin-latte .hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-info a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-info .navbar-link:hover,html.theme--catppuccin-latte .hero.is-info .navbar-link.is-active{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .hero.is-info .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-info .tabs li.is-active a{color:#179299 !important;opacity:1}html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#179299}html.theme--catppuccin-latte .hero.is-info.is-bold{background-image:linear-gradient(141deg, #0a7367 0%, #179299 71%, #1591b4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0a7367 0%, #179299 71%, #1591b4 100%)}}html.theme--catppuccin-latte .hero.is-success{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-success strong{color:inherit}html.theme--catppuccin-latte .hero.is-success .title{color:#fff}html.theme--catppuccin-latte .hero.is-success .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-success .navbar-menu{background-color:#40a02b}}html.theme--catppuccin-latte .hero.is-success .navbar-item,html.theme--catppuccin-latte .hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-success a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-success .navbar-link:hover,html.theme--catppuccin-latte .hero.is-success .navbar-link.is-active{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .hero.is-success .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-success .tabs li.is-active a{color:#40a02b !important;opacity:1}html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#40a02b}html.theme--catppuccin-latte .hero.is-success.is-bold{background-image:linear-gradient(141deg, #3c7f19 0%, #40a02b 71%, #2dba2b 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #3c7f19 0%, #40a02b 71%, #2dba2b 100%)}}html.theme--catppuccin-latte .hero.is-warning{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-warning strong{color:inherit}html.theme--catppuccin-latte .hero.is-warning .title{color:#fff}html.theme--catppuccin-latte .hero.is-warning .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-warning .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-warning .navbar-menu{background-color:#df8e1d}}html.theme--catppuccin-latte .hero.is-warning .navbar-item,html.theme--catppuccin-latte .hero.is-warning .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-warning .navbar-link:hover,html.theme--catppuccin-latte .hero.is-warning .navbar-link.is-active{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .hero.is-warning .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-warning .tabs li.is-active a{color:#df8e1d !important;opacity:1}html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#df8e1d}html.theme--catppuccin-latte .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #bc560d 0%, #df8e1d 71%, #eaba2b 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #bc560d 0%, #df8e1d 71%, #eaba2b 100%)}}html.theme--catppuccin-latte .hero.is-danger{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-danger strong{color:inherit}html.theme--catppuccin-latte .hero.is-danger .title{color:#fff}html.theme--catppuccin-latte .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-danger .navbar-menu{background-color:#d20f39}}html.theme--catppuccin-latte .hero.is-danger .navbar-item,html.theme--catppuccin-latte .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-danger .navbar-link:hover,html.theme--catppuccin-latte .hero.is-danger .navbar-link.is-active{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-danger .tabs li.is-active a{color:#d20f39 !important;opacity:1}html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#d20f39}html.theme--catppuccin-latte .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #ab0343 0%, #d20f39 71%, #f00a16 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ab0343 0%, #d20f39 71%, #f00a16 100%)}}html.theme--catppuccin-latte .hero.is-small .hero-body,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-latte .hero.is-halfheight .hero-body,html.theme--catppuccin-latte .hero.is-fullheight .hero-body,html.theme--catppuccin-latte .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-latte .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-latte .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-latte .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-latte .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-latte .hero-video{overflow:hidden}html.theme--catppuccin-latte .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-latte .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero-video{display:none}}html.theme--catppuccin-latte .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero-buttons .button{display:flex}html.theme--catppuccin-latte .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-latte .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-latte .hero-head,html.theme--catppuccin-latte .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero-body{padding:3rem 3rem}}html.theme--catppuccin-latte .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .section{padding:3rem 3rem}html.theme--catppuccin-latte .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-latte .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-latte .footer{background-color:#e6e9ef;padding:3rem 1.5rem 6rem}html.theme--catppuccin-latte h1 .docs-heading-anchor,html.theme--catppuccin-latte h1 .docs-heading-anchor:hover,html.theme--catppuccin-latte h1 .docs-heading-anchor:visited,html.theme--catppuccin-latte h2 .docs-heading-anchor,html.theme--catppuccin-latte h2 .docs-heading-anchor:hover,html.theme--catppuccin-latte h2 .docs-heading-anchor:visited,html.theme--catppuccin-latte h3 .docs-heading-anchor,html.theme--catppuccin-latte h3 .docs-heading-anchor:hover,html.theme--catppuccin-latte h3 .docs-heading-anchor:visited,html.theme--catppuccin-latte h4 .docs-heading-anchor,html.theme--catppuccin-latte h4 .docs-heading-anchor:hover,html.theme--catppuccin-latte h4 .docs-heading-anchor:visited,html.theme--catppuccin-latte h5 .docs-heading-anchor,html.theme--catppuccin-latte h5 .docs-heading-anchor:hover,html.theme--catppuccin-latte h5 .docs-heading-anchor:visited,html.theme--catppuccin-latte h6 .docs-heading-anchor,html.theme--catppuccin-latte h6 .docs-heading-anchor:hover,html.theme--catppuccin-latte h6 .docs-heading-anchor:visited{color:#4c4f69}html.theme--catppuccin-latte h1 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h2 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h3 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h4 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h5 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-latte h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-latte h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-latte .docs-dark-only{display:none !important}html.theme--catppuccin-latte pre{position:relative;overflow:hidden}html.theme--catppuccin-latte pre code,html.theme--catppuccin-latte pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-latte pre code:first-of-type,html.theme--catppuccin-latte pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-latte pre code:last-of-type,html.theme--catppuccin-latte pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-latte pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#4c4f69;cursor:pointer;text-align:center}html.theme--catppuccin-latte pre .copy-button:focus,html.theme--catppuccin-latte pre .copy-button:hover{opacity:1;background:rgba(76,79,105,0.1);color:#1e66f5}html.theme--catppuccin-latte pre .copy-button.success{color:#40a02b;opacity:1}html.theme--catppuccin-latte pre .copy-button.error{color:#d20f39;opacity:1}html.theme--catppuccin-latte pre:hover .copy-button{opacity:1}html.theme--catppuccin-latte .admonition{background-color:#e6e9ef;border-style:solid;border-width:2px;border-color:#5c5f77;border-radius:4px;font-size:1rem}html.theme--catppuccin-latte .admonition strong{color:currentColor}html.theme--catppuccin-latte .admonition.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-latte .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-latte .admonition.is-default{background-color:#e6e9ef;border-color:#5c5f77}html.theme--catppuccin-latte .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#5c5f77}html.theme--catppuccin-latte .admonition.is-default>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-info{background-color:#e6e9ef;border-color:#179299}html.theme--catppuccin-latte .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#179299}html.theme--catppuccin-latte .admonition.is-info>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-success{background-color:#e6e9ef;border-color:#40a02b}html.theme--catppuccin-latte .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#40a02b}html.theme--catppuccin-latte .admonition.is-success>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-warning{background-color:#e6e9ef;border-color:#df8e1d}html.theme--catppuccin-latte .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#df8e1d}html.theme--catppuccin-latte .admonition.is-warning>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-danger{background-color:#e6e9ef;border-color:#d20f39}html.theme--catppuccin-latte .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#d20f39}html.theme--catppuccin-latte .admonition.is-danger>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-compat{background-color:#e6e9ef;border-color:#04a5e5}html.theme--catppuccin-latte .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#04a5e5}html.theme--catppuccin-latte .admonition.is-compat>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition-header{color:#5c5f77;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-latte .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-latte details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-latte details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-latte details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-latte .admonition-body{color:#4c4f69;padding:0.5rem .75rem}html.theme--catppuccin-latte .admonition-body pre{background-color:#e6e9ef}html.theme--catppuccin-latte .admonition-body code{background-color:#e6e9ef}html.theme--catppuccin-latte .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #acb0be;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-latte .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#e6e9ef;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #acb0be;overflow:auto}html.theme--catppuccin-latte .docstring>header code{background-color:transparent}html.theme--catppuccin-latte .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-latte .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-latte .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-latte .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #acb0be}html.theme--catppuccin-latte .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-latte .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-latte .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-latte .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-latte .documenter-example-output{background-color:#eff1f5}html.theme--catppuccin-latte .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#e6e9ef;color:#4c4f69;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-latte .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-latte .outdated-warning-overlay a{color:#1e66f5}html.theme--catppuccin-latte .outdated-warning-overlay a:hover{color:#04a5e5}html.theme--catppuccin-latte .content pre{border:2px solid #acb0be;border-radius:4px}html.theme--catppuccin-latte .content code{font-weight:inherit}html.theme--catppuccin-latte .content a code{color:#1e66f5}html.theme--catppuccin-latte .content a:hover code{color:#04a5e5}html.theme--catppuccin-latte .content h1 code,html.theme--catppuccin-latte .content h2 code,html.theme--catppuccin-latte .content h3 code,html.theme--catppuccin-latte .content h4 code,html.theme--catppuccin-latte .content h5 code,html.theme--catppuccin-latte .content h6 code{color:#4c4f69}html.theme--catppuccin-latte .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-latte .content blockquote>ul:first-child,html.theme--catppuccin-latte .content blockquote>ol:first-child,html.theme--catppuccin-latte .content .admonition-body>ul:first-child,html.theme--catppuccin-latte .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-latte pre,html.theme--catppuccin-latte code{font-variant-ligatures:no-contextual}html.theme--catppuccin-latte .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-latte .breadcrumb a.is-disabled,html.theme--catppuccin-latte .breadcrumb a.is-disabled:hover{color:#41445a}html.theme--catppuccin-latte .hljs{background:initial !important}html.theme--catppuccin-latte .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-latte .katex-display,html.theme--catppuccin-latte mjx-container,html.theme--catppuccin-latte .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-latte html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-latte li.no-marker{list-style:none}html.theme--catppuccin-latte #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-latte #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main{width:100%}html.theme--catppuccin-latte #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-latte #documenter .docs-main>header,html.theme--catppuccin-latte #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar{background-color:#eff1f5;border-bottom:1px solid #acb0be;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-latte #documenter .docs-main section.footnotes{border-top:1px solid #acb0be}html.theme--catppuccin-latte #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-latte #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-latte #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-latte .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-latte #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #acb0be;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-latte #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-latte #documenter .docs-sidebar{display:flex;flex-direction:column;color:#4c4f69;background-color:#e6e9ef;border-right:1px solid #acb0be;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-latte #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name a:hover{color:#4c4f69}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #acb0be;display:none;padding:0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #acb0be;padding-bottom:1.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #acb0be}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#4c4f69;background:#e6e9ef}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#4c4f69;background-color:#f2f4f7}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #acb0be;border-bottom:1px solid #acb0be;background-color:#dce0e8}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#dce0e8;color:#4c4f69}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#f2f4f7;color:#4c4f69}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #acb0be}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-latte #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#fff}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#fff}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-latte #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-latte #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#fff}html.theme--catppuccin-latte #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#fff}}html.theme--catppuccin-latte kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-latte .search-min-width-50{min-width:50%}html.theme--catppuccin-latte .search-min-height-100{min-height:100%}html.theme--catppuccin-latte .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-latte .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-latte .search-result-link:hover,html.theme--catppuccin-latte .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-latte .search-result-link .property-search-result-badge,html.theme--catppuccin-latte .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-latte .property-search-result-badge,html.theme--catppuccin-latte .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-latte .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:hover .search-filter,html.theme--catppuccin-latte .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-latte .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-latte .search-filter:hover,html.theme--catppuccin-latte .search-filter:focus{color:#333}html.theme--catppuccin-latte .search-filter-selected{color:#ccd0da;background-color:#7287fd}html.theme--catppuccin-latte .search-filter-selected:hover,html.theme--catppuccin-latte .search-filter-selected:focus{color:#ccd0da}html.theme--catppuccin-latte .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-latte .search-divider{border-bottom:1px solid #acb0be}html.theme--catppuccin-latte .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-latte .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-latte #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-latte #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-latte #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-latte #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-latte #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-latte #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-latte .w-100{width:100%}html.theme--catppuccin-latte .gap-2{gap:0.5rem}html.theme--catppuccin-latte .gap-4{gap:1rem}html.theme--catppuccin-latte .gap-8{gap:2rem}html.theme--catppuccin-latte{background-color:#eff1f5;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-latte a{transition:all 200ms ease}html.theme--catppuccin-latte .label{color:#4c4f69}html.theme--catppuccin-latte .button,html.theme--catppuccin-latte .control.has-icons-left .icon,html.theme--catppuccin-latte .control.has-icons-right .icon,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .select,html.theme--catppuccin-latte .select select,html.theme--catppuccin-latte .textarea{height:2.5em;color:#4c4f69}html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#4c4f69}html.theme--catppuccin-latte .select:after,html.theme--catppuccin-latte .select select{border-width:1px}html.theme--catppuccin-latte .menu-list a{transition:all 300ms ease}html.theme--catppuccin-latte .modal-card-foot,html.theme--catppuccin-latte .modal-card-head{border-color:#acb0be}html.theme--catppuccin-latte .navbar{border-radius:.4em}html.theme--catppuccin-latte .navbar.is-transparent{background:none}html.theme--catppuccin-latte .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1e66f5}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .navbar .navbar-menu{background-color:#1e66f5;border-radius:0 0 .4em .4em}}html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body){color:#ccd0da}html.theme--catppuccin-latte .tag.is-link:not(body),html.theme--catppuccin-latte .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-latte .content kbd.is-link:not(body){color:#ccd0da}html.theme--catppuccin-latte .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-latte .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-latte .ansi span.sgr3{font-style:italic}html.theme--catppuccin-latte .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-latte .ansi span.sgr7{color:#eff1f5;background-color:#4c4f69}html.theme--catppuccin-latte .ansi span.sgr8{color:transparent}html.theme--catppuccin-latte .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-latte .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-latte .ansi span.sgr30{color:#5c5f77}html.theme--catppuccin-latte .ansi span.sgr31{color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr32{color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr33{color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr34{color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr35{color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr36{color:#179299}html.theme--catppuccin-latte .ansi span.sgr37{color:#acb0be}html.theme--catppuccin-latte .ansi span.sgr40{background-color:#5c5f77}html.theme--catppuccin-latte .ansi span.sgr41{background-color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr42{background-color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr43{background-color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr44{background-color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr45{background-color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr46{background-color:#179299}html.theme--catppuccin-latte .ansi span.sgr47{background-color:#acb0be}html.theme--catppuccin-latte .ansi span.sgr90{color:#6c6f85}html.theme--catppuccin-latte .ansi span.sgr91{color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr92{color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr93{color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr94{color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr95{color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr96{color:#179299}html.theme--catppuccin-latte .ansi span.sgr97{color:#bcc0cc}html.theme--catppuccin-latte .ansi span.sgr100{background-color:#6c6f85}html.theme--catppuccin-latte .ansi span.sgr101{background-color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr102{background-color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr103{background-color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr104{background-color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr105{background-color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr106{background-color:#179299}html.theme--catppuccin-latte .ansi span.sgr107{background-color:#bcc0cc}html.theme--catppuccin-latte code.language-julia-repl>span.hljs-meta{color:#40a02b;font-weight:bolder}html.theme--catppuccin-latte code .hljs{color:#4c4f69;background:#eff1f5}html.theme--catppuccin-latte code .hljs-keyword{color:#8839ef}html.theme--catppuccin-latte code .hljs-built_in{color:#d20f39}html.theme--catppuccin-latte code .hljs-type{color:#df8e1d}html.theme--catppuccin-latte code .hljs-literal{color:#fe640b}html.theme--catppuccin-latte code .hljs-number{color:#fe640b}html.theme--catppuccin-latte code .hljs-operator{color:#179299}html.theme--catppuccin-latte code .hljs-punctuation{color:#5c5f77}html.theme--catppuccin-latte code .hljs-property{color:#179299}html.theme--catppuccin-latte code .hljs-regexp{color:#ea76cb}html.theme--catppuccin-latte code .hljs-string{color:#40a02b}html.theme--catppuccin-latte code .hljs-char.escape_{color:#40a02b}html.theme--catppuccin-latte code .hljs-subst{color:#6c6f85}html.theme--catppuccin-latte code .hljs-symbol{color:#dd7878}html.theme--catppuccin-latte code .hljs-variable{color:#8839ef}html.theme--catppuccin-latte code .hljs-variable.language_{color:#8839ef}html.theme--catppuccin-latte code .hljs-variable.constant_{color:#fe640b}html.theme--catppuccin-latte code .hljs-title{color:#1e66f5}html.theme--catppuccin-latte code .hljs-title.class_{color:#df8e1d}html.theme--catppuccin-latte code .hljs-title.function_{color:#1e66f5}html.theme--catppuccin-latte code .hljs-params{color:#4c4f69}html.theme--catppuccin-latte code .hljs-comment{color:#acb0be}html.theme--catppuccin-latte code .hljs-doctag{color:#d20f39}html.theme--catppuccin-latte code .hljs-meta{color:#fe640b}html.theme--catppuccin-latte code .hljs-section{color:#1e66f5}html.theme--catppuccin-latte code .hljs-tag{color:#6c6f85}html.theme--catppuccin-latte code .hljs-name{color:#8839ef}html.theme--catppuccin-latte code .hljs-attr{color:#1e66f5}html.theme--catppuccin-latte code .hljs-attribute{color:#40a02b}html.theme--catppuccin-latte code .hljs-bullet{color:#179299}html.theme--catppuccin-latte code .hljs-code{color:#40a02b}html.theme--catppuccin-latte code .hljs-emphasis{color:#d20f39;font-style:italic}html.theme--catppuccin-latte code .hljs-strong{color:#d20f39;font-weight:bold}html.theme--catppuccin-latte code .hljs-formula{color:#179299}html.theme--catppuccin-latte code .hljs-link{color:#209fb5;font-style:italic}html.theme--catppuccin-latte code .hljs-quote{color:#40a02b;font-style:italic}html.theme--catppuccin-latte code .hljs-selector-tag{color:#df8e1d}html.theme--catppuccin-latte code .hljs-selector-id{color:#1e66f5}html.theme--catppuccin-latte code .hljs-selector-class{color:#179299}html.theme--catppuccin-latte code .hljs-selector-attr{color:#8839ef}html.theme--catppuccin-latte code .hljs-selector-pseudo{color:#179299}html.theme--catppuccin-latte code .hljs-template-tag{color:#dd7878}html.theme--catppuccin-latte code .hljs-template-variable{color:#dd7878}html.theme--catppuccin-latte code .hljs-addition{color:#40a02b;background:rgba(166,227,161,0.15)}html.theme--catppuccin-latte code .hljs-deletion{color:#d20f39;background:rgba(243,139,168,0.15)}html.theme--catppuccin-latte .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-latte .search-result-link:hover,html.theme--catppuccin-latte .search-result-link:focus{background-color:#ccd0da}html.theme--catppuccin-latte .search-result-link .property-search-result-badge,html.theme--catppuccin-latte .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-latte .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:hover .search-filter,html.theme--catppuccin-latte .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:focus .search-filter{color:#ccd0da !important;background-color:#7287fd !important}html.theme--catppuccin-latte .search-result-title{color:#4c4f69}html.theme--catppuccin-latte .search-result-highlight{background-color:#d20f39;color:#e6e9ef}html.theme--catppuccin-latte .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-latte .w-100{width:100%}html.theme--catppuccin-latte .gap-2{gap:0.5rem}html.theme--catppuccin-latte .gap-4{gap:1rem} diff --git a/previews/PR873/assets/themes/catppuccin-macchiato.css b/previews/PR873/assets/themes/catppuccin-macchiato.css new file mode 100644 index 000000000..6ed16f8eb --- /dev/null +++ b/previews/PR873/assets/themes/catppuccin-macchiato.css @@ -0,0 +1 @@ +html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato .file-cta,html.theme--catppuccin-macchiato .file-name,html.theme--catppuccin-macchiato .select select,html.theme--catppuccin-macchiato .textarea,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-macchiato .pagination-previous:focus,html.theme--catppuccin-macchiato .pagination-next:focus,html.theme--catppuccin-macchiato .pagination-link:focus,html.theme--catppuccin-macchiato .pagination-ellipsis:focus,html.theme--catppuccin-macchiato .file-cta:focus,html.theme--catppuccin-macchiato .file-name:focus,html.theme--catppuccin-macchiato .select select:focus,html.theme--catppuccin-macchiato .textarea:focus,html.theme--catppuccin-macchiato .input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-macchiato .button:focus,html.theme--catppuccin-macchiato .is-focused.pagination-previous,html.theme--catppuccin-macchiato .is-focused.pagination-next,html.theme--catppuccin-macchiato .is-focused.pagination-link,html.theme--catppuccin-macchiato .is-focused.pagination-ellipsis,html.theme--catppuccin-macchiato .is-focused.file-cta,html.theme--catppuccin-macchiato .is-focused.file-name,html.theme--catppuccin-macchiato .select select.is-focused,html.theme--catppuccin-macchiato .is-focused.textarea,html.theme--catppuccin-macchiato .is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-focused.button,html.theme--catppuccin-macchiato .pagination-previous:active,html.theme--catppuccin-macchiato .pagination-next:active,html.theme--catppuccin-macchiato .pagination-link:active,html.theme--catppuccin-macchiato .pagination-ellipsis:active,html.theme--catppuccin-macchiato .file-cta:active,html.theme--catppuccin-macchiato .file-name:active,html.theme--catppuccin-macchiato .select select:active,html.theme--catppuccin-macchiato .textarea:active,html.theme--catppuccin-macchiato .input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-macchiato .button:active,html.theme--catppuccin-macchiato .is-active.pagination-previous,html.theme--catppuccin-macchiato .is-active.pagination-next,html.theme--catppuccin-macchiato .is-active.pagination-link,html.theme--catppuccin-macchiato .is-active.pagination-ellipsis,html.theme--catppuccin-macchiato .is-active.file-cta,html.theme--catppuccin-macchiato .is-active.file-name,html.theme--catppuccin-macchiato .select select.is-active,html.theme--catppuccin-macchiato .is-active.textarea,html.theme--catppuccin-macchiato .is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-macchiato .is-active.button{outline:none}html.theme--catppuccin-macchiato .pagination-previous[disabled],html.theme--catppuccin-macchiato .pagination-next[disabled],html.theme--catppuccin-macchiato .pagination-link[disabled],html.theme--catppuccin-macchiato .pagination-ellipsis[disabled],html.theme--catppuccin-macchiato .file-cta[disabled],html.theme--catppuccin-macchiato .file-name[disabled],html.theme--catppuccin-macchiato .select select[disabled],html.theme--catppuccin-macchiato .textarea[disabled],html.theme--catppuccin-macchiato .input[disabled],html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-macchiato .button[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-macchiato .file-cta,html.theme--catppuccin-macchiato fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-macchiato .file-name,html.theme--catppuccin-macchiato fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-macchiato .select select,fieldset[disabled] html.theme--catppuccin-macchiato .textarea,fieldset[disabled] html.theme--catppuccin-macchiato .input,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato fieldset[disabled] .select select,html.theme--catppuccin-macchiato .select fieldset[disabled] select,html.theme--catppuccin-macchiato fieldset[disabled] .textarea,html.theme--catppuccin-macchiato fieldset[disabled] .input,html.theme--catppuccin-macchiato fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-macchiato .button,html.theme--catppuccin-macchiato fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-macchiato .tabs,html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato .breadcrumb,html.theme--catppuccin-macchiato .file,html.theme--catppuccin-macchiato .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-macchiato .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-macchiato .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-macchiato .admonition:not(:last-child),html.theme--catppuccin-macchiato .tabs:not(:last-child),html.theme--catppuccin-macchiato .pagination:not(:last-child),html.theme--catppuccin-macchiato .message:not(:last-child),html.theme--catppuccin-macchiato .level:not(:last-child),html.theme--catppuccin-macchiato .breadcrumb:not(:last-child),html.theme--catppuccin-macchiato .block:not(:last-child),html.theme--catppuccin-macchiato .title:not(:last-child),html.theme--catppuccin-macchiato .subtitle:not(:last-child),html.theme--catppuccin-macchiato .table-container:not(:last-child),html.theme--catppuccin-macchiato .table:not(:last-child),html.theme--catppuccin-macchiato .progress:not(:last-child),html.theme--catppuccin-macchiato .notification:not(:last-child),html.theme--catppuccin-macchiato .content:not(:last-child),html.theme--catppuccin-macchiato .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .modal-close,html.theme--catppuccin-macchiato .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-macchiato .modal-close::before,html.theme--catppuccin-macchiato .delete::before,html.theme--catppuccin-macchiato .modal-close::after,html.theme--catppuccin-macchiato .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-macchiato .modal-close::before,html.theme--catppuccin-macchiato .delete::before{height:2px;width:50%}html.theme--catppuccin-macchiato .modal-close::after,html.theme--catppuccin-macchiato .delete::after{height:50%;width:2px}html.theme--catppuccin-macchiato .modal-close:hover,html.theme--catppuccin-macchiato .delete:hover,html.theme--catppuccin-macchiato .modal-close:focus,html.theme--catppuccin-macchiato .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-macchiato .modal-close:active,html.theme--catppuccin-macchiato .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-macchiato .is-small.modal-close,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-macchiato .is-small.delete,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-macchiato .is-medium.modal-close,html.theme--catppuccin-macchiato .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-macchiato .is-large.modal-close,html.theme--catppuccin-macchiato .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-macchiato .control.is-loading::after,html.theme--catppuccin-macchiato .select.is-loading::after,html.theme--catppuccin-macchiato .loader,html.theme--catppuccin-macchiato .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #8087a2;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-macchiato .hero-video,html.theme--catppuccin-macchiato .modal-background,html.theme--catppuccin-macchiato .modal,html.theme--catppuccin-macchiato .image.is-square img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-macchiato .image.is-square .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-macchiato .image.is-1by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-macchiato .image.is-1by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-macchiato .image.is-5by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-macchiato .image.is-4by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-macchiato .image.is-3by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-macchiato .image.is-5by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-16by9 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-macchiato .image.is-16by9 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-macchiato .image.is-2by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-macchiato .image.is-3by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-macchiato .image.is-4by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-macchiato .image.is-3by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-macchiato .image.is-2by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-macchiato .image.is-3by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-9by16 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-macchiato .image.is-9by16 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-macchiato .image.is-1by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-macchiato .image.is-1by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-macchiato .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363a4f !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#212431 !important}.has-background-dark{background-color:#363a4f !important}.has-text-primary{color:#8aadf4 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#5b8cf0 !important}.has-background-primary{background-color:#8aadf4 !important}.has-text-primary-light{color:#ecf2fd !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#bed1f9 !important}.has-background-primary-light{background-color:#ecf2fd !important}.has-text-primary-dark{color:#0e3b95 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#124dc4 !important}.has-background-primary-dark{background-color:#0e3b95 !important}.has-text-link{color:#8aadf4 !important}a.has-text-link:hover,a.has-text-link:focus{color:#5b8cf0 !important}.has-background-link{background-color:#8aadf4 !important}.has-text-link-light{color:#ecf2fd !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#bed1f9 !important}.has-background-link-light{background-color:#ecf2fd !important}.has-text-link-dark{color:#0e3b95 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#124dc4 !important}.has-background-link-dark{background-color:#0e3b95 !important}.has-text-info{color:#8bd5ca !important}a.has-text-info:hover,a.has-text-info:focus{color:#66c7b9 !important}.has-background-info{background-color:#8bd5ca !important}.has-text-info-light{color:#f0faf8 !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#cbece7 !important}.has-background-info-light{background-color:#f0faf8 !important}.has-text-info-dark{color:#276d62 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#359284 !important}.has-background-info-dark{background-color:#276d62 !important}.has-text-success{color:#a6da95 !important}a.has-text-success:hover,a.has-text-success:focus{color:#86cd6f !important}.has-background-success{background-color:#a6da95 !important}.has-text-success-light{color:#f2faf0 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#d3edca !important}.has-background-success-light{background-color:#f2faf0 !important}.has-text-success-dark{color:#386e26 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#4b9333 !important}.has-background-success-dark{background-color:#386e26 !important}.has-text-warning{color:#eed49f !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#e6c174 !important}.has-background-warning{background-color:#eed49f !important}.has-text-warning-light{color:#fcf7ee !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#f4e4c2 !important}.has-background-warning-light{background-color:#fcf7ee !important}.has-text-warning-dark{color:#7e5c16 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#a97b1e !important}.has-background-warning-dark{background-color:#7e5c16 !important}.has-text-danger{color:#ed8796 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#e65b6f !important}.has-background-danger{background-color:#ed8796 !important}.has-text-danger-light{color:#fcedef !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f6c1c9 !important}.has-background-danger-light{background-color:#fcedef !important}.has-text-danger-dark{color:#971729 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#c31d36 !important}.has-background-danger-dark{background-color:#971729 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363a4f !important}.has-background-grey-darker{background-color:#363a4f !important}.has-text-grey-dark{color:#494d64 !important}.has-background-grey-dark{background-color:#494d64 !important}.has-text-grey{color:#5b6078 !important}.has-background-grey{background-color:#5b6078 !important}.has-text-grey-light{color:#6e738d !important}.has-background-grey-light{background-color:#6e738d !important}.has-text-grey-lighter{color:#8087a2 !important}.has-background-grey-lighter{background-color:#8087a2 !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-macchiato html{background-color:#24273a;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-macchiato article,html.theme--catppuccin-macchiato aside,html.theme--catppuccin-macchiato figure,html.theme--catppuccin-macchiato footer,html.theme--catppuccin-macchiato header,html.theme--catppuccin-macchiato hgroup,html.theme--catppuccin-macchiato section{display:block}html.theme--catppuccin-macchiato body,html.theme--catppuccin-macchiato button,html.theme--catppuccin-macchiato input,html.theme--catppuccin-macchiato optgroup,html.theme--catppuccin-macchiato select,html.theme--catppuccin-macchiato textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-macchiato code,html.theme--catppuccin-macchiato pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-macchiato body{color:#cad3f5;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-macchiato a{color:#8aadf4;cursor:pointer;text-decoration:none}html.theme--catppuccin-macchiato a strong{color:currentColor}html.theme--catppuccin-macchiato a:hover{color:#91d7e3}html.theme--catppuccin-macchiato code{background-color:#1e2030;color:#cad3f5;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-macchiato hr{background-color:#1e2030;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-macchiato img{height:auto;max-width:100%}html.theme--catppuccin-macchiato input[type="checkbox"],html.theme--catppuccin-macchiato input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-macchiato small{font-size:.875em}html.theme--catppuccin-macchiato span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-macchiato strong{color:#b5c1f1;font-weight:700}html.theme--catppuccin-macchiato fieldset{border:none}html.theme--catppuccin-macchiato pre{-webkit-overflow-scrolling:touch;background-color:#1e2030;color:#cad3f5;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-macchiato pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-macchiato table td,html.theme--catppuccin-macchiato table th{vertical-align:top}html.theme--catppuccin-macchiato table td:not([align]),html.theme--catppuccin-macchiato table th:not([align]){text-align:inherit}html.theme--catppuccin-macchiato table th{color:#b5c1f1}html.theme--catppuccin-macchiato .box{background-color:#494d64;border-radius:8px;box-shadow:none;color:#cad3f5;display:block;padding:1.25rem}html.theme--catppuccin-macchiato a.box:hover,html.theme--catppuccin-macchiato a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #8aadf4}html.theme--catppuccin-macchiato a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #8aadf4}html.theme--catppuccin-macchiato .button{background-color:#1e2030;border-color:#3b3f5f;border-width:1px;color:#8aadf4;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-macchiato .button strong{color:inherit}html.theme--catppuccin-macchiato .button .icon,html.theme--catppuccin-macchiato .button .icon.is-small,html.theme--catppuccin-macchiato .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-macchiato .button .icon.is-medium,html.theme--catppuccin-macchiato .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-macchiato .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-macchiato .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-macchiato .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-macchiato .button:hover,html.theme--catppuccin-macchiato .button.is-hovered{border-color:#6e738d;color:#b5c1f1}html.theme--catppuccin-macchiato .button:focus,html.theme--catppuccin-macchiato .button.is-focused{border-color:#6e738d;color:#739df2}html.theme--catppuccin-macchiato .button:focus:not(:active),html.theme--catppuccin-macchiato .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .button:active,html.theme--catppuccin-macchiato .button.is-active{border-color:#494d64;color:#b5c1f1}html.theme--catppuccin-macchiato .button.is-text{background-color:transparent;border-color:transparent;color:#cad3f5;text-decoration:underline}html.theme--catppuccin-macchiato .button.is-text:hover,html.theme--catppuccin-macchiato .button.is-text.is-hovered,html.theme--catppuccin-macchiato .button.is-text:focus,html.theme--catppuccin-macchiato .button.is-text.is-focused{background-color:#1e2030;color:#b5c1f1}html.theme--catppuccin-macchiato .button.is-text:active,html.theme--catppuccin-macchiato .button.is-text.is-active{background-color:#141620;color:#b5c1f1}html.theme--catppuccin-macchiato .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-macchiato .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#8aadf4;text-decoration:none}html.theme--catppuccin-macchiato .button.is-ghost:hover,html.theme--catppuccin-macchiato .button.is-ghost.is-hovered{color:#8aadf4;text-decoration:underline}html.theme--catppuccin-macchiato .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white:hover,html.theme--catppuccin-macchiato .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white:focus,html.theme--catppuccin-macchiato .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white:focus:not(:active),html.theme--catppuccin-macchiato .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-macchiato .button.is-white:active,html.theme--catppuccin-macchiato .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-macchiato .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-macchiato .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-white.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black:hover,html.theme--catppuccin-macchiato .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black:focus,html.theme--catppuccin-macchiato .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black:focus:not(:active),html.theme--catppuccin-macchiato .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-macchiato .button.is-black:active,html.theme--catppuccin-macchiato .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-macchiato .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-black.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light:hover,html.theme--catppuccin-macchiato .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light:focus,html.theme--catppuccin-macchiato .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light:focus:not(:active),html.theme--catppuccin-macchiato .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-macchiato .button.is-light:active,html.theme--catppuccin-macchiato .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-macchiato .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-light.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-dark,html.theme--catppuccin-macchiato .content kbd.button{background-color:#363a4f;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark:hover,html.theme--catppuccin-macchiato .content kbd.button:hover,html.theme--catppuccin-macchiato .button.is-dark.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-hovered{background-color:#313447;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark:focus,html.theme--catppuccin-macchiato .content kbd.button:focus,html.theme--catppuccin-macchiato .button.is-dark.is-focused,html.theme--catppuccin-macchiato .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark:focus:not(:active),html.theme--catppuccin-macchiato .content kbd.button:focus:not(:active),html.theme--catppuccin-macchiato .button.is-dark.is-focused:not(:active),html.theme--catppuccin-macchiato .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(54,58,79,0.25)}html.theme--catppuccin-macchiato .button.is-dark:active,html.theme--catppuccin-macchiato .content kbd.button:active,html.theme--catppuccin-macchiato .button.is-dark.is-active,html.theme--catppuccin-macchiato .content kbd.button.is-active{background-color:#2c2f40;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark[disabled],html.theme--catppuccin-macchiato .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button{background-color:#363a4f;border-color:#363a4f;box-shadow:none}html.theme--catppuccin-macchiato .button.is-dark.is-inverted,html.theme--catppuccin-macchiato .content kbd.button.is-inverted{background-color:#fff;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-inverted:hover,html.theme--catppuccin-macchiato .content kbd.button.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-dark.is-inverted[disabled],html.theme--catppuccin-macchiato .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-loading::after,html.theme--catppuccin-macchiato .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-dark.is-outlined,html.theme--catppuccin-macchiato .content kbd.button.is-outlined{background-color:transparent;border-color:#363a4f;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-outlined:hover,html.theme--catppuccin-macchiato .content kbd.button.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-dark.is-outlined:focus,html.theme--catppuccin-macchiato .content kbd.button.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-focused{background-color:#363a4f;border-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #363a4f #363a4f !important}html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-dark.is-outlined[disabled],html.theme--catppuccin-macchiato .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button.is-outlined{background-color:transparent;border-color:#363a4f;box-shadow:none;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363a4f #363a4f !important}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary:focus,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-macchiato .button.is-primary.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary:focus:not(:active),html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-macchiato .button.is-primary.is-focused:not(:active),html.theme--catppuccin-macchiato .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .button.is-primary:active,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-macchiato .button.is-primary.is-active,html.theme--catppuccin-macchiato .docstring>section>a.button.is-active.docs-sourcelink{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink{background-color:#8aadf4;border-color:#8aadf4;box-shadow:none}html.theme--catppuccin-macchiato .button.is-primary.is-inverted,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-inverted:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-primary.is-inverted[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-loading::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-primary.is-outlined,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8aadf4;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-outlined:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-macchiato .button.is-primary.is-outlined:focus,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-primary.is-outlined[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8aadf4;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-primary.is-light,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.docs-sourcelink{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-primary.is-light:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-light.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e1eafc;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-primary.is-light:active,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-macchiato .button.is-primary.is-light.is-active,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d5e2fb;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-link{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link:hover,html.theme--catppuccin-macchiato .button.is-link.is-hovered{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link:focus,html.theme--catppuccin-macchiato .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link:focus:not(:active),html.theme--catppuccin-macchiato .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .button.is-link:active,html.theme--catppuccin-macchiato .button.is-link.is-active{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link{background-color:#8aadf4;border-color:#8aadf4;box-shadow:none}html.theme--catppuccin-macchiato .button.is-link.is-inverted{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-link.is-outlined{background-color:transparent;border-color:#8aadf4;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-link.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-focused{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link.is-outlined{background-color:transparent;border-color:#8aadf4;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-link.is-light{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-link.is-light:hover,html.theme--catppuccin-macchiato .button.is-link.is-light.is-hovered{background-color:#e1eafc;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-link.is-light:active,html.theme--catppuccin-macchiato .button.is-link.is-light.is-active{background-color:#d5e2fb;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-info{background-color:#8bd5ca;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info:hover,html.theme--catppuccin-macchiato .button.is-info.is-hovered{background-color:#82d2c6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info:focus,html.theme--catppuccin-macchiato .button.is-info.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info:focus:not(:active),html.theme--catppuccin-macchiato .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(139,213,202,0.25)}html.theme--catppuccin-macchiato .button.is-info:active,html.theme--catppuccin-macchiato .button.is-info.is-active{background-color:#78cec1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info{background-color:#8bd5ca;border-color:#8bd5ca;box-shadow:none}html.theme--catppuccin-macchiato .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-info.is-outlined{background-color:transparent;border-color:#8bd5ca;color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-info.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-focused{background-color:#8bd5ca;border-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #8bd5ca #8bd5ca !important}html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info.is-outlined{background-color:transparent;border-color:#8bd5ca;box-shadow:none;color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #8bd5ca #8bd5ca !important}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-light{background-color:#f0faf8;color:#276d62}html.theme--catppuccin-macchiato .button.is-info.is-light:hover,html.theme--catppuccin-macchiato .button.is-info.is-light.is-hovered{background-color:#e7f6f4;border-color:transparent;color:#276d62}html.theme--catppuccin-macchiato .button.is-info.is-light:active,html.theme--catppuccin-macchiato .button.is-info.is-light.is-active{background-color:#ddf3f0;border-color:transparent;color:#276d62}html.theme--catppuccin-macchiato .button.is-success{background-color:#a6da95;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success:hover,html.theme--catppuccin-macchiato .button.is-success.is-hovered{background-color:#9ed78c;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success:focus,html.theme--catppuccin-macchiato .button.is-success.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success:focus:not(:active),html.theme--catppuccin-macchiato .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(166,218,149,0.25)}html.theme--catppuccin-macchiato .button.is-success:active,html.theme--catppuccin-macchiato .button.is-success.is-active{background-color:#96d382;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success{background-color:#a6da95;border-color:#a6da95;box-shadow:none}html.theme--catppuccin-macchiato .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-success.is-outlined{background-color:transparent;border-color:#a6da95;color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-success.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-focused{background-color:#a6da95;border-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #a6da95 #a6da95 !important}html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success.is-outlined{background-color:transparent;border-color:#a6da95;box-shadow:none;color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a6da95 #a6da95 !important}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-light{background-color:#f2faf0;color:#386e26}html.theme--catppuccin-macchiato .button.is-success.is-light:hover,html.theme--catppuccin-macchiato .button.is-success.is-light.is-hovered{background-color:#eaf6e6;border-color:transparent;color:#386e26}html.theme--catppuccin-macchiato .button.is-success.is-light:active,html.theme--catppuccin-macchiato .button.is-success.is-light.is-active{background-color:#e2f3dd;border-color:transparent;color:#386e26}html.theme--catppuccin-macchiato .button.is-warning{background-color:#eed49f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning:hover,html.theme--catppuccin-macchiato .button.is-warning.is-hovered{background-color:#eccf94;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning:focus,html.theme--catppuccin-macchiato .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning:focus:not(:active),html.theme--catppuccin-macchiato .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(238,212,159,0.25)}html.theme--catppuccin-macchiato .button.is-warning:active,html.theme--catppuccin-macchiato .button.is-warning.is-active{background-color:#eaca89;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning{background-color:#eed49f;border-color:#eed49f;box-shadow:none}html.theme--catppuccin-macchiato .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-warning.is-outlined{background-color:transparent;border-color:#eed49f;color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-warning.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-focused{background-color:#eed49f;border-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #eed49f #eed49f !important}html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning.is-outlined{background-color:transparent;border-color:#eed49f;box-shadow:none;color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #eed49f #eed49f !important}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-light{background-color:#fcf7ee;color:#7e5c16}html.theme--catppuccin-macchiato .button.is-warning.is-light:hover,html.theme--catppuccin-macchiato .button.is-warning.is-light.is-hovered{background-color:#faf2e3;border-color:transparent;color:#7e5c16}html.theme--catppuccin-macchiato .button.is-warning.is-light:active,html.theme--catppuccin-macchiato .button.is-warning.is-light.is-active{background-color:#f8eed8;border-color:transparent;color:#7e5c16}html.theme--catppuccin-macchiato .button.is-danger{background-color:#ed8796;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger:hover,html.theme--catppuccin-macchiato .button.is-danger.is-hovered{background-color:#eb7c8c;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger:focus,html.theme--catppuccin-macchiato .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger:focus:not(:active),html.theme--catppuccin-macchiato .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(237,135,150,0.25)}html.theme--catppuccin-macchiato .button.is-danger:active,html.theme--catppuccin-macchiato .button.is-danger.is-active{background-color:#ea7183;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger{background-color:#ed8796;border-color:#ed8796;box-shadow:none}html.theme--catppuccin-macchiato .button.is-danger.is-inverted{background-color:#fff;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-danger.is-outlined{background-color:transparent;border-color:#ed8796;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-danger.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-focused{background-color:#ed8796;border-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #ed8796 #ed8796 !important}html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger.is-outlined{background-color:transparent;border-color:#ed8796;box-shadow:none;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ed8796 #ed8796 !important}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-danger.is-light{background-color:#fcedef;color:#971729}html.theme--catppuccin-macchiato .button.is-danger.is-light:hover,html.theme--catppuccin-macchiato .button.is-danger.is-light.is-hovered{background-color:#fbe2e6;border-color:transparent;color:#971729}html.theme--catppuccin-macchiato .button.is-danger.is-light:active,html.theme--catppuccin-macchiato .button.is-danger.is-light.is-active{background-color:#f9d7dc;border-color:transparent;color:#971729}html.theme--catppuccin-macchiato .button.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-macchiato .button.is-small:not(.is-rounded),html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-macchiato .button.is-normal{font-size:1rem}html.theme--catppuccin-macchiato .button.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .button.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .button[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button{background-color:#6e738d;border-color:#5b6078;box-shadow:none;opacity:.5}html.theme--catppuccin-macchiato .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-macchiato .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-macchiato .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-macchiato .button.is-static{background-color:#1e2030;border-color:#5b6078;color:#8087a2;box-shadow:none;pointer-events:none}html.theme--catppuccin-macchiato .button.is-rounded,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-macchiato .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-macchiato .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-macchiato .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-macchiato .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-macchiato .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-macchiato .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-macchiato .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-macchiato .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-macchiato .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-macchiato .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-macchiato .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-macchiato .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-macchiato .buttons.has-addons .button:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-macchiato .buttons.has-addons .button:focus,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-focused,html.theme--catppuccin-macchiato .buttons.has-addons .button:active,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-active,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-macchiato .buttons.has-addons .button:focus:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button:active:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-macchiato .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .buttons.is-centered{justify-content:center}html.theme--catppuccin-macchiato .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-macchiato .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-macchiato .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .button.is-responsive.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-macchiato .button.is-responsive,html.theme--catppuccin-macchiato .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-macchiato .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-macchiato .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .button.is-responsive.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-macchiato .button.is-responsive,html.theme--catppuccin-macchiato .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-macchiato .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-macchiato .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-macchiato .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-macchiato .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-macchiato .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-macchiato .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-macchiato .content li+li{margin-top:0.25em}html.theme--catppuccin-macchiato .content p:not(:last-child),html.theme--catppuccin-macchiato .content dl:not(:last-child),html.theme--catppuccin-macchiato .content ol:not(:last-child),html.theme--catppuccin-macchiato .content ul:not(:last-child),html.theme--catppuccin-macchiato .content blockquote:not(:last-child),html.theme--catppuccin-macchiato .content pre:not(:last-child),html.theme--catppuccin-macchiato .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-macchiato .content h1,html.theme--catppuccin-macchiato .content h2,html.theme--catppuccin-macchiato .content h3,html.theme--catppuccin-macchiato .content h4,html.theme--catppuccin-macchiato .content h5,html.theme--catppuccin-macchiato .content h6{color:#cad3f5;font-weight:600;line-height:1.125}html.theme--catppuccin-macchiato .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-macchiato .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-macchiato .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-macchiato .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-macchiato .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-macchiato .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-macchiato .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-macchiato .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-macchiato .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-macchiato .content blockquote{background-color:#1e2030;border-left:5px solid #5b6078;padding:1.25em 1.5em}html.theme--catppuccin-macchiato .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-macchiato .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-macchiato .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-macchiato .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-macchiato .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-macchiato .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-macchiato .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-macchiato .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-macchiato .content ul ul ul{list-style-type:square}html.theme--catppuccin-macchiato .content dd{margin-left:2em}html.theme--catppuccin-macchiato .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-macchiato .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-macchiato .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-macchiato .content figure img{display:inline-block}html.theme--catppuccin-macchiato .content figure figcaption{font-style:italic}html.theme--catppuccin-macchiato .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-macchiato .content sup,html.theme--catppuccin-macchiato .content sub{font-size:75%}html.theme--catppuccin-macchiato .content table{width:100%}html.theme--catppuccin-macchiato .content table td,html.theme--catppuccin-macchiato .content table th{border:1px solid #5b6078;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-macchiato .content table th{color:#b5c1f1}html.theme--catppuccin-macchiato .content table th:not([align]){text-align:inherit}html.theme--catppuccin-macchiato .content table thead td,html.theme--catppuccin-macchiato .content table thead th{border-width:0 0 2px;color:#b5c1f1}html.theme--catppuccin-macchiato .content table tfoot td,html.theme--catppuccin-macchiato .content table tfoot th{border-width:2px 0 0;color:#b5c1f1}html.theme--catppuccin-macchiato .content table tbody tr:last-child td,html.theme--catppuccin-macchiato .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-macchiato .content .tabs li+li{margin-top:0}html.theme--catppuccin-macchiato .content.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-macchiato .content.is-normal{font-size:1rem}html.theme--catppuccin-macchiato .content.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .content.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-macchiato .icon.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-macchiato .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-macchiato .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-macchiato .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-macchiato .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-macchiato .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-macchiato div.icon-text{display:flex}html.theme--catppuccin-macchiato .image,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-macchiato .image img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-macchiato .image img.is-rounded,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-macchiato .image.is-fullwidth,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-macchiato .image.is-square img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-macchiato .image.is-square .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-macchiato .image.is-1by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-macchiato .image.is-1by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-macchiato .image.is-5by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-macchiato .image.is-4by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-macchiato .image.is-3by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-macchiato .image.is-5by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-16by9 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-macchiato .image.is-16by9 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-macchiato .image.is-2by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-macchiato .image.is-3by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-macchiato .image.is-4by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-macchiato .image.is-3by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-macchiato .image.is-2by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-macchiato .image.is-3by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-9by16 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-macchiato .image.is-9by16 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-macchiato .image.is-1by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-macchiato .image.is-1by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-macchiato .image.is-square,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-macchiato .image.is-1by1,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-macchiato .image.is-5by4,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-macchiato .image.is-4by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-macchiato .image.is-3by2,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-macchiato .image.is-5by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-macchiato .image.is-16by9,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-macchiato .image.is-2by1,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-macchiato .image.is-3by1,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-macchiato .image.is-4by5,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-macchiato .image.is-3by4,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-macchiato .image.is-2by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-macchiato .image.is-3by5,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-macchiato .image.is-9by16,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-macchiato .image.is-1by2,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-macchiato .image.is-1by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-macchiato .image.is-16x16,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-macchiato .image.is-24x24,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-macchiato .image.is-32x32,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-macchiato .image.is-48x48,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-macchiato .image.is-64x64,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-macchiato .image.is-96x96,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-macchiato .image.is-128x128,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-macchiato .notification{background-color:#1e2030;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-macchiato .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-macchiato .notification strong{color:currentColor}html.theme--catppuccin-macchiato .notification code,html.theme--catppuccin-macchiato .notification pre{background:#fff}html.theme--catppuccin-macchiato .notification pre code{background:transparent}html.theme--catppuccin-macchiato .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-macchiato .notification .title,html.theme--catppuccin-macchiato .notification .subtitle,html.theme--catppuccin-macchiato .notification .content{color:currentColor}html.theme--catppuccin-macchiato .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-dark,html.theme--catppuccin-macchiato .content kbd.notification{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .notification.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.notification.docs-sourcelink{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .notification.is-primary.is-light,html.theme--catppuccin-macchiato .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .notification.is-link{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .notification.is-link.is-light{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .notification.is-info{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-info.is-light{background-color:#f0faf8;color:#276d62}html.theme--catppuccin-macchiato .notification.is-success{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-success.is-light{background-color:#f2faf0;color:#386e26}html.theme--catppuccin-macchiato .notification.is-warning{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-warning.is-light{background-color:#fcf7ee;color:#7e5c16}html.theme--catppuccin-macchiato .notification.is-danger{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .notification.is-danger.is-light{background-color:#fcedef;color:#971729}html.theme--catppuccin-macchiato .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-macchiato .progress::-webkit-progress-bar{background-color:#494d64}html.theme--catppuccin-macchiato .progress::-webkit-progress-value{background-color:#8087a2}html.theme--catppuccin-macchiato .progress::-moz-progress-bar{background-color:#8087a2}html.theme--catppuccin-macchiato .progress::-ms-fill{background-color:#8087a2;border:none}html.theme--catppuccin-macchiato .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-macchiato .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-macchiato .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-macchiato .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-macchiato .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-macchiato .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-macchiato .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-macchiato .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-macchiato .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-macchiato .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-macchiato .content kbd.progress::-webkit-progress-value{background-color:#363a4f}html.theme--catppuccin-macchiato .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-macchiato .content kbd.progress::-moz-progress-bar{background-color:#363a4f}html.theme--catppuccin-macchiato .progress.is-dark::-ms-fill,html.theme--catppuccin-macchiato .content kbd.progress::-ms-fill{background-color:#363a4f}html.theme--catppuccin-macchiato .progress.is-dark:indeterminate,html.theme--catppuccin-macchiato .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #363a4f 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-primary::-ms-fill,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-primary:indeterminate,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #8aadf4 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-link::-webkit-progress-value{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-link::-moz-progress-bar{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-link::-ms-fill{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-link:indeterminate{background-image:linear-gradient(to right, #8aadf4 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-info::-webkit-progress-value{background-color:#8bd5ca}html.theme--catppuccin-macchiato .progress.is-info::-moz-progress-bar{background-color:#8bd5ca}html.theme--catppuccin-macchiato .progress.is-info::-ms-fill{background-color:#8bd5ca}html.theme--catppuccin-macchiato .progress.is-info:indeterminate{background-image:linear-gradient(to right, #8bd5ca 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-success::-webkit-progress-value{background-color:#a6da95}html.theme--catppuccin-macchiato .progress.is-success::-moz-progress-bar{background-color:#a6da95}html.theme--catppuccin-macchiato .progress.is-success::-ms-fill{background-color:#a6da95}html.theme--catppuccin-macchiato .progress.is-success:indeterminate{background-image:linear-gradient(to right, #a6da95 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-warning::-webkit-progress-value{background-color:#eed49f}html.theme--catppuccin-macchiato .progress.is-warning::-moz-progress-bar{background-color:#eed49f}html.theme--catppuccin-macchiato .progress.is-warning::-ms-fill{background-color:#eed49f}html.theme--catppuccin-macchiato .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #eed49f 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-danger::-webkit-progress-value{background-color:#ed8796}html.theme--catppuccin-macchiato .progress.is-danger::-moz-progress-bar{background-color:#ed8796}html.theme--catppuccin-macchiato .progress.is-danger::-ms-fill{background-color:#ed8796}html.theme--catppuccin-macchiato .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #ed8796 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#494d64;background-image:linear-gradient(to right, #cad3f5 30%, #494d64 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-macchiato .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-macchiato .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-macchiato .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-macchiato .progress.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-macchiato .progress.is-medium{height:1.25rem}html.theme--catppuccin-macchiato .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-macchiato .table{background-color:#494d64;color:#cad3f5}html.theme--catppuccin-macchiato .table td,html.theme--catppuccin-macchiato .table th{border:1px solid #5b6078;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-macchiato .table td.is-white,html.theme--catppuccin-macchiato .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .table td.is-black,html.theme--catppuccin-macchiato .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .table td.is-light,html.theme--catppuccin-macchiato .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-dark,html.theme--catppuccin-macchiato .table th.is-dark{background-color:#363a4f;border-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .table td.is-primary,html.theme--catppuccin-macchiato .table th.is-primary{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table td.is-link,html.theme--catppuccin-macchiato .table th.is-link{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table td.is-info,html.theme--catppuccin-macchiato .table th.is-info{background-color:#8bd5ca;border-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-success,html.theme--catppuccin-macchiato .table th.is-success{background-color:#a6da95;border-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-warning,html.theme--catppuccin-macchiato .table th.is-warning{background-color:#eed49f;border-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-danger,html.theme--catppuccin-macchiato .table th.is-danger{background-color:#ed8796;border-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .table td.is-narrow,html.theme--catppuccin-macchiato .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-macchiato .table td.is-selected,html.theme--catppuccin-macchiato .table th.is-selected{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table td.is-selected a,html.theme--catppuccin-macchiato .table td.is-selected strong,html.theme--catppuccin-macchiato .table th.is-selected a,html.theme--catppuccin-macchiato .table th.is-selected strong{color:currentColor}html.theme--catppuccin-macchiato .table td.is-vcentered,html.theme--catppuccin-macchiato .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-macchiato .table th{color:#b5c1f1}html.theme--catppuccin-macchiato .table th:not([align]){text-align:left}html.theme--catppuccin-macchiato .table tr.is-selected{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table tr.is-selected a,html.theme--catppuccin-macchiato .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-macchiato .table tr.is-selected td,html.theme--catppuccin-macchiato .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-macchiato .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .table thead td,html.theme--catppuccin-macchiato .table thead th{border-width:0 0 2px;color:#b5c1f1}html.theme--catppuccin-macchiato .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .table tfoot td,html.theme--catppuccin-macchiato .table tfoot th{border-width:2px 0 0;color:#b5c1f1}html.theme--catppuccin-macchiato .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .table tbody tr:last-child td,html.theme--catppuccin-macchiato .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-macchiato .table.is-bordered td,html.theme--catppuccin-macchiato .table.is-bordered th{border-width:1px}html.theme--catppuccin-macchiato .table.is-bordered tr:last-child td,html.theme--catppuccin-macchiato .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-macchiato .table.is-fullwidth{width:100%}html.theme--catppuccin-macchiato .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#363a4f}html.theme--catppuccin-macchiato .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#363a4f}html.theme--catppuccin-macchiato .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#3a3e55}html.theme--catppuccin-macchiato .table.is-narrow td,html.theme--catppuccin-macchiato .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-macchiato .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#363a4f}html.theme--catppuccin-macchiato .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-macchiato .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-macchiato .tags .tag,html.theme--catppuccin-macchiato .tags .content kbd,html.theme--catppuccin-macchiato .content .tags kbd,html.theme--catppuccin-macchiato .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-macchiato .tags .tag:not(:last-child),html.theme--catppuccin-macchiato .tags .content kbd:not(:last-child),html.theme--catppuccin-macchiato .content .tags kbd:not(:last-child),html.theme--catppuccin-macchiato .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-macchiato .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-macchiato .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-macchiato .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-macchiato .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-macchiato .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-macchiato .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-macchiato .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-macchiato .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-macchiato .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-macchiato .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-macchiato .tags.is-centered{justify-content:center}html.theme--catppuccin-macchiato .tags.is-centered .tag,html.theme--catppuccin-macchiato .tags.is-centered .content kbd,html.theme--catppuccin-macchiato .content .tags.is-centered kbd,html.theme--catppuccin-macchiato .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-macchiato .tags.is-right{justify-content:flex-end}html.theme--catppuccin-macchiato .tags.is-right .tag:not(:first-child),html.theme--catppuccin-macchiato .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-macchiato .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-macchiato .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-macchiato .tags.is-right .tag:not(:last-child),html.theme--catppuccin-macchiato .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-macchiato .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-macchiato .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-macchiato .tags.has-addons .tag,html.theme--catppuccin-macchiato .tags.has-addons .content kbd,html.theme--catppuccin-macchiato .content .tags.has-addons kbd,html.theme--catppuccin-macchiato .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-macchiato .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-macchiato .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-macchiato .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-macchiato .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-macchiato .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-macchiato .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-macchiato .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-macchiato .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-macchiato .tag:not(body),html.theme--catppuccin-macchiato .content kbd:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#1e2030;border-radius:.4em;color:#cad3f5;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-macchiato .tag:not(body) .delete,html.theme--catppuccin-macchiato .content kbd:not(body) .delete,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-macchiato .tag.is-white:not(body),html.theme--catppuccin-macchiato .content kbd.is-white:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .tag.is-black:not(body),html.theme--catppuccin-macchiato .content kbd.is-black:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .tag.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-dark:not(body),html.theme--catppuccin-macchiato .content kbd:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-macchiato .content .docstring>section>kbd:not(body){background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .tag.is-primary:not(body),html.theme--catppuccin-macchiato .content kbd.is-primary:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body){background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .tag.is-primary.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .tag.is-link:not(body),html.theme--catppuccin-macchiato .content kbd.is-link:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .tag.is-link.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-link.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .tag.is-info:not(body),html.theme--catppuccin-macchiato .content kbd.is-info:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-info.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-info.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#f0faf8;color:#276d62}html.theme--catppuccin-macchiato .tag.is-success:not(body),html.theme--catppuccin-macchiato .content kbd.is-success:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-success.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-success.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f2faf0;color:#386e26}html.theme--catppuccin-macchiato .tag.is-warning:not(body),html.theme--catppuccin-macchiato .content kbd.is-warning:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-warning.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fcf7ee;color:#7e5c16}html.theme--catppuccin-macchiato .tag.is-danger:not(body),html.theme--catppuccin-macchiato .content kbd.is-danger:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .tag.is-danger.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fcedef;color:#971729}html.theme--catppuccin-macchiato .tag.is-normal:not(body),html.theme--catppuccin-macchiato .content kbd.is-normal:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-macchiato .tag.is-medium:not(body),html.theme--catppuccin-macchiato .content kbd.is-medium:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-macchiato .tag.is-large:not(body),html.theme--catppuccin-macchiato .content kbd.is-large:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-macchiato .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-macchiato .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-macchiato .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-macchiato .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-macchiato .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-macchiato .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-macchiato .tag.is-delete:not(body),html.theme--catppuccin-macchiato .content kbd.is-delete:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-macchiato .tag.is-delete:not(body)::before,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::before,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-macchiato .tag.is-delete:not(body)::after,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::after,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-macchiato .tag.is-delete:not(body)::before,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::before,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-macchiato .tag.is-delete:not(body)::after,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::after,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-macchiato .tag.is-delete:not(body):hover,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body):hover,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-macchiato .tag.is-delete:not(body):focus,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body):focus,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#141620}html.theme--catppuccin-macchiato .tag.is-delete:not(body):active,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body):active,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#0a0b11}html.theme--catppuccin-macchiato .tag.is-rounded:not(body),html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-macchiato .content kbd.is-rounded:not(body),html.theme--catppuccin-macchiato #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-macchiato a.tag:hover,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-macchiato .title,html.theme--catppuccin-macchiato .subtitle{word-break:break-word}html.theme--catppuccin-macchiato .title em,html.theme--catppuccin-macchiato .title span,html.theme--catppuccin-macchiato .subtitle em,html.theme--catppuccin-macchiato .subtitle span{font-weight:inherit}html.theme--catppuccin-macchiato .title sub,html.theme--catppuccin-macchiato .subtitle sub{font-size:.75em}html.theme--catppuccin-macchiato .title sup,html.theme--catppuccin-macchiato .subtitle sup{font-size:.75em}html.theme--catppuccin-macchiato .title .tag,html.theme--catppuccin-macchiato .title .content kbd,html.theme--catppuccin-macchiato .content .title kbd,html.theme--catppuccin-macchiato .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-macchiato .subtitle .tag,html.theme--catppuccin-macchiato .subtitle .content kbd,html.theme--catppuccin-macchiato .content .subtitle kbd,html.theme--catppuccin-macchiato .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-macchiato .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-macchiato .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-macchiato .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-macchiato .title.is-1{font-size:3rem}html.theme--catppuccin-macchiato .title.is-2{font-size:2.5rem}html.theme--catppuccin-macchiato .title.is-3{font-size:2rem}html.theme--catppuccin-macchiato .title.is-4{font-size:1.5rem}html.theme--catppuccin-macchiato .title.is-5{font-size:1.25rem}html.theme--catppuccin-macchiato .title.is-6{font-size:1rem}html.theme--catppuccin-macchiato .title.is-7{font-size:.75rem}html.theme--catppuccin-macchiato .subtitle{color:#6e738d;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-macchiato .subtitle strong{color:#6e738d;font-weight:600}html.theme--catppuccin-macchiato .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-macchiato .subtitle.is-1{font-size:3rem}html.theme--catppuccin-macchiato .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-macchiato .subtitle.is-3{font-size:2rem}html.theme--catppuccin-macchiato .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-macchiato .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-macchiato .subtitle.is-6{font-size:1rem}html.theme--catppuccin-macchiato .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-macchiato .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-macchiato .number{align-items:center;background-color:#1e2030;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-macchiato .select select,html.theme--catppuccin-macchiato .textarea,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{background-color:#24273a;border-color:#5b6078;border-radius:.4em;color:#8087a2}html.theme--catppuccin-macchiato .select select::-moz-placeholder,html.theme--catppuccin-macchiato .textarea::-moz-placeholder,html.theme--catppuccin-macchiato .input::-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select::-webkit-input-placeholder,html.theme--catppuccin-macchiato .textarea::-webkit-input-placeholder,html.theme--catppuccin-macchiato .input::-webkit-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select:-moz-placeholder,html.theme--catppuccin-macchiato .textarea:-moz-placeholder,html.theme--catppuccin-macchiato .input:-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select:-ms-input-placeholder,html.theme--catppuccin-macchiato .textarea:-ms-input-placeholder,html.theme--catppuccin-macchiato .input:-ms-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select:hover,html.theme--catppuccin-macchiato .textarea:hover,html.theme--catppuccin-macchiato .input:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-macchiato .select select.is-hovered,html.theme--catppuccin-macchiato .is-hovered.textarea,html.theme--catppuccin-macchiato .is-hovered.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#6e738d}html.theme--catppuccin-macchiato .select select:focus,html.theme--catppuccin-macchiato .textarea:focus,html.theme--catppuccin-macchiato .input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-macchiato .select select.is-focused,html.theme--catppuccin-macchiato .is-focused.textarea,html.theme--catppuccin-macchiato .is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .select select:active,html.theme--catppuccin-macchiato .textarea:active,html.theme--catppuccin-macchiato .input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-macchiato .select select.is-active,html.theme--catppuccin-macchiato .is-active.textarea,html.theme--catppuccin-macchiato .is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#8aadf4;box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .select select[disabled],html.theme--catppuccin-macchiato .textarea[disabled],html.theme--catppuccin-macchiato .input[disabled],html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .select select,fieldset[disabled] html.theme--catppuccin-macchiato .textarea,fieldset[disabled] html.theme--catppuccin-macchiato .input,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{background-color:#6e738d;border-color:#1e2030;box-shadow:none;color:#f5f7fd}html.theme--catppuccin-macchiato .select select[disabled]::-moz-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-macchiato .input[disabled]::-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-macchiato .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .select select[disabled]:-moz-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-macchiato .input[disabled]:-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-macchiato .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .textarea,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-macchiato .textarea[readonly],html.theme--catppuccin-macchiato .input[readonly],html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-macchiato .is-white.textarea,html.theme--catppuccin-macchiato .is-white.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-macchiato .is-white.textarea:focus,html.theme--catppuccin-macchiato .is-white.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-macchiato .is-white.is-focused.textarea,html.theme--catppuccin-macchiato .is-white.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-white.textarea:active,html.theme--catppuccin-macchiato .is-white.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-macchiato .is-white.is-active.textarea,html.theme--catppuccin-macchiato .is-white.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-macchiato .is-black.textarea,html.theme--catppuccin-macchiato .is-black.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-macchiato .is-black.textarea:focus,html.theme--catppuccin-macchiato .is-black.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-macchiato .is-black.is-focused.textarea,html.theme--catppuccin-macchiato .is-black.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-black.textarea:active,html.theme--catppuccin-macchiato .is-black.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-macchiato .is-black.is-active.textarea,html.theme--catppuccin-macchiato .is-black.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-macchiato .is-light.textarea,html.theme--catppuccin-macchiato .is-light.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-macchiato .is-light.textarea:focus,html.theme--catppuccin-macchiato .is-light.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-macchiato .is-light.is-focused.textarea,html.theme--catppuccin-macchiato .is-light.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-light.textarea:active,html.theme--catppuccin-macchiato .is-light.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-macchiato .is-light.is-active.textarea,html.theme--catppuccin-macchiato .is-light.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-macchiato .is-dark.textarea,html.theme--catppuccin-macchiato .content kbd.textarea,html.theme--catppuccin-macchiato .is-dark.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-macchiato .content kbd.input{border-color:#363a4f}html.theme--catppuccin-macchiato .is-dark.textarea:focus,html.theme--catppuccin-macchiato .content kbd.textarea:focus,html.theme--catppuccin-macchiato .is-dark.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-macchiato .content kbd.input:focus,html.theme--catppuccin-macchiato .is-dark.is-focused.textarea,html.theme--catppuccin-macchiato .content kbd.is-focused.textarea,html.theme--catppuccin-macchiato .is-dark.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .content kbd.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-dark.textarea:active,html.theme--catppuccin-macchiato .content kbd.textarea:active,html.theme--catppuccin-macchiato .is-dark.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-macchiato .content kbd.input:active,html.theme--catppuccin-macchiato .is-dark.is-active.textarea,html.theme--catppuccin-macchiato .content kbd.is-active.textarea,html.theme--catppuccin-macchiato .is-dark.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-macchiato .content kbd.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(54,58,79,0.25)}html.theme--catppuccin-macchiato .is-primary.textarea,html.theme--catppuccin-macchiato .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.input.docs-sourcelink{border-color:#8aadf4}html.theme--catppuccin-macchiato .is-primary.textarea:focus,html.theme--catppuccin-macchiato .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-macchiato .is-primary.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-macchiato .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-macchiato .is-primary.is-focused.textarea,html.theme--catppuccin-macchiato .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.textarea:active,html.theme--catppuccin-macchiato .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-macchiato .is-primary.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-macchiato .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-macchiato .is-primary.is-active.textarea,html.theme--catppuccin-macchiato .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-macchiato .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .is-link.textarea,html.theme--catppuccin-macchiato .is-link.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#8aadf4}html.theme--catppuccin-macchiato .is-link.textarea:focus,html.theme--catppuccin-macchiato .is-link.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-macchiato .is-link.is-focused.textarea,html.theme--catppuccin-macchiato .is-link.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-link.textarea:active,html.theme--catppuccin-macchiato .is-link.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-macchiato .is-link.is-active.textarea,html.theme--catppuccin-macchiato .is-link.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .is-info.textarea,html.theme--catppuccin-macchiato .is-info.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#8bd5ca}html.theme--catppuccin-macchiato .is-info.textarea:focus,html.theme--catppuccin-macchiato .is-info.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-macchiato .is-info.is-focused.textarea,html.theme--catppuccin-macchiato .is-info.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-info.textarea:active,html.theme--catppuccin-macchiato .is-info.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-macchiato .is-info.is-active.textarea,html.theme--catppuccin-macchiato .is-info.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(139,213,202,0.25)}html.theme--catppuccin-macchiato .is-success.textarea,html.theme--catppuccin-macchiato .is-success.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#a6da95}html.theme--catppuccin-macchiato .is-success.textarea:focus,html.theme--catppuccin-macchiato .is-success.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-macchiato .is-success.is-focused.textarea,html.theme--catppuccin-macchiato .is-success.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-success.textarea:active,html.theme--catppuccin-macchiato .is-success.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-macchiato .is-success.is-active.textarea,html.theme--catppuccin-macchiato .is-success.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(166,218,149,0.25)}html.theme--catppuccin-macchiato .is-warning.textarea,html.theme--catppuccin-macchiato .is-warning.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#eed49f}html.theme--catppuccin-macchiato .is-warning.textarea:focus,html.theme--catppuccin-macchiato .is-warning.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-macchiato .is-warning.is-focused.textarea,html.theme--catppuccin-macchiato .is-warning.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-warning.textarea:active,html.theme--catppuccin-macchiato .is-warning.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-macchiato .is-warning.is-active.textarea,html.theme--catppuccin-macchiato .is-warning.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(238,212,159,0.25)}html.theme--catppuccin-macchiato .is-danger.textarea,html.theme--catppuccin-macchiato .is-danger.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#ed8796}html.theme--catppuccin-macchiato .is-danger.textarea:focus,html.theme--catppuccin-macchiato .is-danger.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-macchiato .is-danger.is-focused.textarea,html.theme--catppuccin-macchiato .is-danger.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-danger.textarea:active,html.theme--catppuccin-macchiato .is-danger.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-macchiato .is-danger.is-active.textarea,html.theme--catppuccin-macchiato .is-danger.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(237,135,150,0.25)}html.theme--catppuccin-macchiato .is-small.textarea,html.theme--catppuccin-macchiato .is-small.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-macchiato .is-medium.textarea,html.theme--catppuccin-macchiato .is-medium.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .is-large.textarea,html.theme--catppuccin-macchiato .is-large.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .is-fullwidth.textarea,html.theme--catppuccin-macchiato .is-fullwidth.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-macchiato .is-inline.textarea,html.theme--catppuccin-macchiato .is-inline.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-macchiato .input.is-rounded,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-macchiato .input.is-static,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-macchiato .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-macchiato .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-macchiato .textarea[rows]{height:initial}html.theme--catppuccin-macchiato .textarea.has-fixed-size{resize:none}html.theme--catppuccin-macchiato .radio,html.theme--catppuccin-macchiato .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-macchiato .radio input,html.theme--catppuccin-macchiato .checkbox input{cursor:pointer}html.theme--catppuccin-macchiato .radio:hover,html.theme--catppuccin-macchiato .checkbox:hover{color:#91d7e3}html.theme--catppuccin-macchiato .radio[disabled],html.theme--catppuccin-macchiato .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .radio,fieldset[disabled] html.theme--catppuccin-macchiato .checkbox,html.theme--catppuccin-macchiato .radio input[disabled],html.theme--catppuccin-macchiato .checkbox input[disabled]{color:#f5f7fd;cursor:not-allowed}html.theme--catppuccin-macchiato .radio+.radio{margin-left:.5em}html.theme--catppuccin-macchiato .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-macchiato .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-macchiato .select:not(.is-multiple):not(.is-loading)::after{border-color:#8aadf4;right:1.125em;z-index:4}html.theme--catppuccin-macchiato .select.is-rounded select,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-macchiato .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-macchiato .select select::-ms-expand{display:none}html.theme--catppuccin-macchiato .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-macchiato .select select:hover{border-color:#1e2030}html.theme--catppuccin-macchiato .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-macchiato .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-macchiato .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-macchiato .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#91d7e3}html.theme--catppuccin-macchiato .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-macchiato .select.is-white select{border-color:#fff}html.theme--catppuccin-macchiato .select.is-white select:hover,html.theme--catppuccin-macchiato .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-macchiato .select.is-white select:focus,html.theme--catppuccin-macchiato .select.is-white select.is-focused,html.theme--catppuccin-macchiato .select.is-white select:active,html.theme--catppuccin-macchiato .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-macchiato .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-macchiato .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-macchiato .select.is-black select:hover,html.theme--catppuccin-macchiato .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-macchiato .select.is-black select:focus,html.theme--catppuccin-macchiato .select.is-black select.is-focused,html.theme--catppuccin-macchiato .select.is-black select:active,html.theme--catppuccin-macchiato .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-macchiato .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-macchiato .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-macchiato .select.is-light select:hover,html.theme--catppuccin-macchiato .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-macchiato .select.is-light select:focus,html.theme--catppuccin-macchiato .select.is-light select.is-focused,html.theme--catppuccin-macchiato .select.is-light select:active,html.theme--catppuccin-macchiato .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-macchiato .select.is-dark:not(:hover)::after,html.theme--catppuccin-macchiato .content kbd.select:not(:hover)::after{border-color:#363a4f}html.theme--catppuccin-macchiato .select.is-dark select,html.theme--catppuccin-macchiato .content kbd.select select{border-color:#363a4f}html.theme--catppuccin-macchiato .select.is-dark select:hover,html.theme--catppuccin-macchiato .content kbd.select select:hover,html.theme--catppuccin-macchiato .select.is-dark select.is-hovered,html.theme--catppuccin-macchiato .content kbd.select select.is-hovered{border-color:#2c2f40}html.theme--catppuccin-macchiato .select.is-dark select:focus,html.theme--catppuccin-macchiato .content kbd.select select:focus,html.theme--catppuccin-macchiato .select.is-dark select.is-focused,html.theme--catppuccin-macchiato .content kbd.select select.is-focused,html.theme--catppuccin-macchiato .select.is-dark select:active,html.theme--catppuccin-macchiato .content kbd.select select:active,html.theme--catppuccin-macchiato .select.is-dark select.is-active,html.theme--catppuccin-macchiato .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(54,58,79,0.25)}html.theme--catppuccin-macchiato .select.is-primary:not(:hover)::after,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-primary select,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-primary select:hover,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-macchiato .select.is-primary select.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#739df2}html.theme--catppuccin-macchiato .select.is-primary select:focus,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-macchiato .select.is-primary select.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-macchiato .select.is-primary select:active,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-macchiato .select.is-primary select.is-active,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .select.is-link:not(:hover)::after{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-link select{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-link select:hover,html.theme--catppuccin-macchiato .select.is-link select.is-hovered{border-color:#739df2}html.theme--catppuccin-macchiato .select.is-link select:focus,html.theme--catppuccin-macchiato .select.is-link select.is-focused,html.theme--catppuccin-macchiato .select.is-link select:active,html.theme--catppuccin-macchiato .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .select.is-info:not(:hover)::after{border-color:#8bd5ca}html.theme--catppuccin-macchiato .select.is-info select{border-color:#8bd5ca}html.theme--catppuccin-macchiato .select.is-info select:hover,html.theme--catppuccin-macchiato .select.is-info select.is-hovered{border-color:#78cec1}html.theme--catppuccin-macchiato .select.is-info select:focus,html.theme--catppuccin-macchiato .select.is-info select.is-focused,html.theme--catppuccin-macchiato .select.is-info select:active,html.theme--catppuccin-macchiato .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(139,213,202,0.25)}html.theme--catppuccin-macchiato .select.is-success:not(:hover)::after{border-color:#a6da95}html.theme--catppuccin-macchiato .select.is-success select{border-color:#a6da95}html.theme--catppuccin-macchiato .select.is-success select:hover,html.theme--catppuccin-macchiato .select.is-success select.is-hovered{border-color:#96d382}html.theme--catppuccin-macchiato .select.is-success select:focus,html.theme--catppuccin-macchiato .select.is-success select.is-focused,html.theme--catppuccin-macchiato .select.is-success select:active,html.theme--catppuccin-macchiato .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(166,218,149,0.25)}html.theme--catppuccin-macchiato .select.is-warning:not(:hover)::after{border-color:#eed49f}html.theme--catppuccin-macchiato .select.is-warning select{border-color:#eed49f}html.theme--catppuccin-macchiato .select.is-warning select:hover,html.theme--catppuccin-macchiato .select.is-warning select.is-hovered{border-color:#eaca89}html.theme--catppuccin-macchiato .select.is-warning select:focus,html.theme--catppuccin-macchiato .select.is-warning select.is-focused,html.theme--catppuccin-macchiato .select.is-warning select:active,html.theme--catppuccin-macchiato .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(238,212,159,0.25)}html.theme--catppuccin-macchiato .select.is-danger:not(:hover)::after{border-color:#ed8796}html.theme--catppuccin-macchiato .select.is-danger select{border-color:#ed8796}html.theme--catppuccin-macchiato .select.is-danger select:hover,html.theme--catppuccin-macchiato .select.is-danger select.is-hovered{border-color:#ea7183}html.theme--catppuccin-macchiato .select.is-danger select:focus,html.theme--catppuccin-macchiato .select.is-danger select.is-focused,html.theme--catppuccin-macchiato .select.is-danger select:active,html.theme--catppuccin-macchiato .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(237,135,150,0.25)}html.theme--catppuccin-macchiato .select.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-macchiato .select.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .select.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .select.is-disabled::after{border-color:#f5f7fd !important;opacity:0.5}html.theme--catppuccin-macchiato .select.is-fullwidth{width:100%}html.theme--catppuccin-macchiato .select.is-fullwidth select{width:100%}html.theme--catppuccin-macchiato .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-macchiato .select.is-loading.is-small:after,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-macchiato .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-macchiato .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-macchiato .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-macchiato .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-white:hover .file-cta,html.theme--catppuccin-macchiato .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-white:focus .file-cta,html.theme--catppuccin-macchiato .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-white:active .file-cta,html.theme--catppuccin-macchiato .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-black:hover .file-cta,html.theme--catppuccin-macchiato .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-black:focus .file-cta,html.theme--catppuccin-macchiato .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-black:active .file-cta,html.theme--catppuccin-macchiato .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-light:hover .file-cta,html.theme--catppuccin-macchiato .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-light:focus .file-cta,html.theme--catppuccin-macchiato .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-light:active .file-cta,html.theme--catppuccin-macchiato .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-dark .file-cta,html.theme--catppuccin-macchiato .content kbd.file .file-cta{background-color:#363a4f;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-dark:hover .file-cta,html.theme--catppuccin-macchiato .content kbd.file:hover .file-cta,html.theme--catppuccin-macchiato .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-macchiato .content kbd.file.is-hovered .file-cta{background-color:#313447;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-dark:focus .file-cta,html.theme--catppuccin-macchiato .content kbd.file:focus .file-cta,html.theme--catppuccin-macchiato .file.is-dark.is-focused .file-cta,html.theme--catppuccin-macchiato .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(54,58,79,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-dark:active .file-cta,html.theme--catppuccin-macchiato .content kbd.file:active .file-cta,html.theme--catppuccin-macchiato .file.is-dark.is-active .file-cta,html.theme--catppuccin-macchiato .content kbd.file.is-active .file-cta{background-color:#2c2f40;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-primary .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-primary:hover .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-macchiato .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-primary:focus .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-macchiato .file.is-primary.is-focused .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(138,173,244,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-primary:active .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-macchiato .file.is-primary.is-active .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-link .file-cta{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-link:hover .file-cta,html.theme--catppuccin-macchiato .file.is-link.is-hovered .file-cta{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-link:focus .file-cta,html.theme--catppuccin-macchiato .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(138,173,244,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-link:active .file-cta,html.theme--catppuccin-macchiato .file.is-link.is-active .file-cta{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-info .file-cta{background-color:#8bd5ca;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-info:hover .file-cta,html.theme--catppuccin-macchiato .file.is-info.is-hovered .file-cta{background-color:#82d2c6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-info:focus .file-cta,html.theme--catppuccin-macchiato .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(139,213,202,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-info:active .file-cta,html.theme--catppuccin-macchiato .file.is-info.is-active .file-cta{background-color:#78cec1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success .file-cta{background-color:#a6da95;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success:hover .file-cta,html.theme--catppuccin-macchiato .file.is-success.is-hovered .file-cta{background-color:#9ed78c;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success:focus .file-cta,html.theme--catppuccin-macchiato .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(166,218,149,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success:active .file-cta,html.theme--catppuccin-macchiato .file.is-success.is-active .file-cta{background-color:#96d382;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning .file-cta{background-color:#eed49f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning:hover .file-cta,html.theme--catppuccin-macchiato .file.is-warning.is-hovered .file-cta{background-color:#eccf94;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning:focus .file-cta,html.theme--catppuccin-macchiato .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(238,212,159,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning:active .file-cta,html.theme--catppuccin-macchiato .file.is-warning.is-active .file-cta{background-color:#eaca89;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-danger .file-cta{background-color:#ed8796;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-danger:hover .file-cta,html.theme--catppuccin-macchiato .file.is-danger.is-hovered .file-cta{background-color:#eb7c8c;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-danger:focus .file-cta,html.theme--catppuccin-macchiato .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(237,135,150,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-danger:active .file-cta,html.theme--catppuccin-macchiato .file.is-danger.is-active .file-cta{background-color:#ea7183;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-macchiato .file.is-normal{font-size:1rem}html.theme--catppuccin-macchiato .file.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-macchiato .file.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-macchiato .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-macchiato .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-macchiato .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-macchiato .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-macchiato .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-macchiato .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-macchiato .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-macchiato .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-macchiato .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-macchiato .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-macchiato .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-macchiato .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-macchiato .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-macchiato .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-macchiato .file.is-centered{justify-content:center}html.theme--catppuccin-macchiato .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-macchiato .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-macchiato .file.is-right{justify-content:flex-end}html.theme--catppuccin-macchiato .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-macchiato .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-macchiato .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-macchiato .file-label:hover .file-cta{background-color:#313447;color:#b5c1f1}html.theme--catppuccin-macchiato .file-label:hover .file-name{border-color:#565a71}html.theme--catppuccin-macchiato .file-label:active .file-cta{background-color:#2c2f40;color:#b5c1f1}html.theme--catppuccin-macchiato .file-label:active .file-name{border-color:#505469}html.theme--catppuccin-macchiato .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-macchiato .file-cta,html.theme--catppuccin-macchiato .file-name{border-color:#5b6078;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-macchiato .file-cta{background-color:#363a4f;color:#cad3f5}html.theme--catppuccin-macchiato .file-name{border-color:#5b6078;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-macchiato .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-macchiato .file-icon .fa{font-size:14px}html.theme--catppuccin-macchiato .label{color:#b5c1f1;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-macchiato .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-macchiato .label.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-macchiato .label.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .label.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-macchiato .help.is-white{color:#fff}html.theme--catppuccin-macchiato .help.is-black{color:#0a0a0a}html.theme--catppuccin-macchiato .help.is-light{color:#f5f5f5}html.theme--catppuccin-macchiato .help.is-dark,html.theme--catppuccin-macchiato .content kbd.help{color:#363a4f}html.theme--catppuccin-macchiato .help.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.help.docs-sourcelink{color:#8aadf4}html.theme--catppuccin-macchiato .help.is-link{color:#8aadf4}html.theme--catppuccin-macchiato .help.is-info{color:#8bd5ca}html.theme--catppuccin-macchiato .help.is-success{color:#a6da95}html.theme--catppuccin-macchiato .help.is-warning{color:#eed49f}html.theme--catppuccin-macchiato .help.is-danger{color:#ed8796}html.theme--catppuccin-macchiato .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-macchiato .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-macchiato .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-macchiato .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-macchiato .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-macchiato .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-macchiato .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-macchiato .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-macchiato .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-macchiato .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .field.is-horizontal{display:flex}}html.theme--catppuccin-macchiato .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-macchiato .field-label.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-macchiato .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-macchiato .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-macchiato .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-macchiato .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-macchiato .field-body .field{margin-bottom:0}html.theme--catppuccin-macchiato .field-body>.field{flex-shrink:1}html.theme--catppuccin-macchiato .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-macchiato .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-macchiato .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-macchiato .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select:focus~.icon{color:#363a4f}html.theme--catppuccin-macchiato .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-macchiato .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-macchiato .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-macchiato .control.has-icons-left .icon,html.theme--catppuccin-macchiato .control.has-icons-right .icon{color:#5b6078;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-macchiato .control.has-icons-left .input,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-macchiato .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-macchiato .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-macchiato .control.has-icons-right .input,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-macchiato .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-macchiato .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-macchiato .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-macchiato .control.is-loading.is-small:after,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-macchiato .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-macchiato .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-macchiato .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-macchiato .breadcrumb a{align-items:center;color:#8aadf4;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-macchiato .breadcrumb a:hover{color:#91d7e3}html.theme--catppuccin-macchiato .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-macchiato .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-macchiato .breadcrumb li.is-active a{color:#b5c1f1;cursor:default;pointer-events:none}html.theme--catppuccin-macchiato .breadcrumb li+li::before{color:#6e738d;content:"\0002f"}html.theme--catppuccin-macchiato .breadcrumb ul,html.theme--catppuccin-macchiato .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-macchiato .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-macchiato .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-macchiato .breadcrumb.is-centered ol,html.theme--catppuccin-macchiato .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-macchiato .breadcrumb.is-right ol,html.theme--catppuccin-macchiato .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-macchiato .breadcrumb.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-macchiato .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-macchiato .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-macchiato .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-macchiato .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-macchiato .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#cad3f5;max-width:100%;position:relative}html.theme--catppuccin-macchiato .card-footer:first-child,html.theme--catppuccin-macchiato .card-content:first-child,html.theme--catppuccin-macchiato .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-macchiato .card-footer:last-child,html.theme--catppuccin-macchiato .card-content:last-child,html.theme--catppuccin-macchiato .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-macchiato .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-macchiato .card-header-title{align-items:center;color:#b5c1f1;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-macchiato .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-macchiato .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-macchiato .card-image{display:block;position:relative}html.theme--catppuccin-macchiato .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-macchiato .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-macchiato .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-macchiato .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-macchiato .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-macchiato .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-macchiato .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-macchiato .dropdown.is-active .dropdown-menu,html.theme--catppuccin-macchiato .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-macchiato .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-macchiato .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-macchiato .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-macchiato .dropdown-content{background-color:#1e2030;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-macchiato .dropdown-item{color:#cad3f5;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-macchiato a.dropdown-item,html.theme--catppuccin-macchiato button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-macchiato a.dropdown-item:hover,html.theme--catppuccin-macchiato button.dropdown-item:hover{background-color:#1e2030;color:#0a0a0a}html.theme--catppuccin-macchiato a.dropdown-item.is-active,html.theme--catppuccin-macchiato button.dropdown-item.is-active{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-macchiato .level{align-items:center;justify-content:space-between}html.theme--catppuccin-macchiato .level code{border-radius:.4em}html.theme--catppuccin-macchiato .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-macchiato .level.is-mobile{display:flex}html.theme--catppuccin-macchiato .level.is-mobile .level-left,html.theme--catppuccin-macchiato .level.is-mobile .level-right{display:flex}html.theme--catppuccin-macchiato .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-macchiato .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-macchiato .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level{display:flex}html.theme--catppuccin-macchiato .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-macchiato .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-macchiato .level-item .title,html.theme--catppuccin-macchiato .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-macchiato .level-left,html.theme--catppuccin-macchiato .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .level-left .level-item.is-flexible,html.theme--catppuccin-macchiato .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level-left .level-item:not(:last-child),html.theme--catppuccin-macchiato .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-macchiato .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level-left{display:flex}}html.theme--catppuccin-macchiato .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level-right{display:flex}}html.theme--catppuccin-macchiato .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-macchiato .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-macchiato .media .media{border-top:1px solid rgba(91,96,120,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-macchiato .media .media .content:not(:last-child),html.theme--catppuccin-macchiato .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-macchiato .media .media .media{padding-top:.5rem}html.theme--catppuccin-macchiato .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-macchiato .media+.media{border-top:1px solid rgba(91,96,120,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-macchiato .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-macchiato .media-left,html.theme--catppuccin-macchiato .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .media-left{margin-right:1rem}html.theme--catppuccin-macchiato .media-right{margin-left:1rem}html.theme--catppuccin-macchiato .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .media-content{overflow-x:auto}}html.theme--catppuccin-macchiato .menu{font-size:1rem}html.theme--catppuccin-macchiato .menu.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-macchiato .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .menu.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .menu-list{line-height:1.25}html.theme--catppuccin-macchiato .menu-list a{border-radius:3px;color:#cad3f5;display:block;padding:0.5em 0.75em}html.theme--catppuccin-macchiato .menu-list a:hover{background-color:#1e2030;color:#b5c1f1}html.theme--catppuccin-macchiato .menu-list a.is-active{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .menu-list li ul{border-left:1px solid #5b6078;margin:.75em;padding-left:.75em}html.theme--catppuccin-macchiato .menu-label{color:#f5f7fd;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-macchiato .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-macchiato .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-macchiato .message{background-color:#1e2030;border-radius:.4em;font-size:1rem}html.theme--catppuccin-macchiato .message strong{color:currentColor}html.theme--catppuccin-macchiato .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-macchiato .message.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-macchiato .message.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .message.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .message.is-white{background-color:#fff}html.theme--catppuccin-macchiato .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-macchiato .message.is-black{background-color:#fafafa}html.theme--catppuccin-macchiato .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-macchiato .message.is-light{background-color:#fafafa}html.theme--catppuccin-macchiato .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-macchiato .message.is-dark,html.theme--catppuccin-macchiato .content kbd.message{background-color:#f9f9fb}html.theme--catppuccin-macchiato .message.is-dark .message-header,html.theme--catppuccin-macchiato .content kbd.message .message-header{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .message.is-dark .message-body,html.theme--catppuccin-macchiato .content kbd.message .message-body{border-color:#363a4f}html.theme--catppuccin-macchiato .message.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.message.docs-sourcelink{background-color:#ecf2fd}html.theme--catppuccin-macchiato .message.is-primary .message-header,html.theme--catppuccin-macchiato .docstring>section>a.message.docs-sourcelink .message-header{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .message.is-primary .message-body,html.theme--catppuccin-macchiato .docstring>section>a.message.docs-sourcelink .message-body{border-color:#8aadf4;color:#0e3b95}html.theme--catppuccin-macchiato .message.is-link{background-color:#ecf2fd}html.theme--catppuccin-macchiato .message.is-link .message-header{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .message.is-link .message-body{border-color:#8aadf4;color:#0e3b95}html.theme--catppuccin-macchiato .message.is-info{background-color:#f0faf8}html.theme--catppuccin-macchiato .message.is-info .message-header{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-info .message-body{border-color:#8bd5ca;color:#276d62}html.theme--catppuccin-macchiato .message.is-success{background-color:#f2faf0}html.theme--catppuccin-macchiato .message.is-success .message-header{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-success .message-body{border-color:#a6da95;color:#386e26}html.theme--catppuccin-macchiato .message.is-warning{background-color:#fcf7ee}html.theme--catppuccin-macchiato .message.is-warning .message-header{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-warning .message-body{border-color:#eed49f;color:#7e5c16}html.theme--catppuccin-macchiato .message.is-danger{background-color:#fcedef}html.theme--catppuccin-macchiato .message.is-danger .message-header{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .message.is-danger .message-body{border-color:#ed8796;color:#971729}html.theme--catppuccin-macchiato .message-header{align-items:center;background-color:#cad3f5;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-macchiato .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-macchiato .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-macchiato .message-body{border-color:#5b6078;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#cad3f5;padding:1.25em 1.5em}html.theme--catppuccin-macchiato .message-body code,html.theme--catppuccin-macchiato .message-body pre{background-color:#fff}html.theme--catppuccin-macchiato .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-macchiato .modal.is-active{display:flex}html.theme--catppuccin-macchiato .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-macchiato .modal-content,html.theme--catppuccin-macchiato .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-macchiato .modal-content,html.theme--catppuccin-macchiato .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-macchiato .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-macchiato .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-macchiato .modal-card-head,html.theme--catppuccin-macchiato .modal-card-foot{align-items:center;background-color:#1e2030;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-macchiato .modal-card-head{border-bottom:1px solid #5b6078;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-macchiato .modal-card-title{color:#cad3f5;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-macchiato .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #5b6078}html.theme--catppuccin-macchiato .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-macchiato .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#24273a;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-macchiato .navbar{background-color:#8aadf4;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-macchiato .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-macchiato .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-dark,html.theme--catppuccin-macchiato .content kbd.navbar{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-burger,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#363a4f;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-burger,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8aadf4;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-link{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#8aadf4;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-info{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-success{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#a6da95;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-warning{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#eed49f;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-danger{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#ed8796;color:#fff}}html.theme--catppuccin-macchiato .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-macchiato .navbar.has-shadow{box-shadow:0 2px 0 0 #1e2030}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom,html.theme--catppuccin-macchiato .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #1e2030}html.theme--catppuccin-macchiato .navbar.is-fixed-top{top:0}html.theme--catppuccin-macchiato html.has-navbar-fixed-top,html.theme--catppuccin-macchiato body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-macchiato html.has-navbar-fixed-bottom,html.theme--catppuccin-macchiato body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-macchiato .navbar-brand,html.theme--catppuccin-macchiato .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-macchiato .navbar-brand a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-macchiato .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-macchiato .navbar-burger{color:#cad3f5;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-macchiato .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-macchiato .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-macchiato .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-macchiato .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-macchiato .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-macchiato .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-macchiato .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-macchiato .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-macchiato .navbar-menu{display:none}html.theme--catppuccin-macchiato .navbar-item,html.theme--catppuccin-macchiato .navbar-link{color:#cad3f5;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-macchiato .navbar-item .icon:only-child,html.theme--catppuccin-macchiato .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-macchiato a.navbar-item,html.theme--catppuccin-macchiato .navbar-link{cursor:pointer}html.theme--catppuccin-macchiato a.navbar-item:focus,html.theme--catppuccin-macchiato a.navbar-item:focus-within,html.theme--catppuccin-macchiato a.navbar-item:hover,html.theme--catppuccin-macchiato a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar-link:focus,html.theme--catppuccin-macchiato .navbar-link:focus-within,html.theme--catppuccin-macchiato .navbar-link:hover,html.theme--catppuccin-macchiato .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#8aadf4}html.theme--catppuccin-macchiato .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .navbar-item img{max-height:1.75rem}html.theme--catppuccin-macchiato .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-macchiato .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-macchiato .navbar-item.is-tab:focus,html.theme--catppuccin-macchiato .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#8aadf4}html.theme--catppuccin-macchiato .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#8aadf4;border-bottom-style:solid;border-bottom-width:3px;color:#8aadf4;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-macchiato .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-macchiato .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-macchiato .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-macchiato .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-macchiato .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .navbar>.container{display:block}html.theme--catppuccin-macchiato .navbar-brand .navbar-item,html.theme--catppuccin-macchiato .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-macchiato .navbar-link::after{display:none}html.theme--catppuccin-macchiato .navbar-menu{background-color:#8aadf4;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-macchiato .navbar-menu.is-active{display:block}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-touch,html.theme--catppuccin-macchiato .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-macchiato .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-macchiato .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-macchiato html.has-navbar-fixed-top-touch,html.theme--catppuccin-macchiato body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-macchiato html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-macchiato body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar,html.theme--catppuccin-macchiato .navbar-menu,html.theme--catppuccin-macchiato .navbar-start,html.theme--catppuccin-macchiato .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-macchiato .navbar{min-height:4rem}html.theme--catppuccin-macchiato .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-macchiato .navbar.is-spaced .navbar-start,html.theme--catppuccin-macchiato .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-macchiato .navbar.is-spaced a.navbar-item,html.theme--catppuccin-macchiato .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-macchiato .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8087a2}html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8aadf4}html.theme--catppuccin-macchiato .navbar-burger{display:none}html.theme--catppuccin-macchiato .navbar-item,html.theme--catppuccin-macchiato .navbar-link{align-items:center;display:flex}html.theme--catppuccin-macchiato .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-macchiato .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-macchiato .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-macchiato .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-macchiato .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-macchiato .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-macchiato .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-macchiato .navbar-dropdown{background-color:#8aadf4;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-macchiato .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8087a2}html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8aadf4}.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-macchiato .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-macchiato .navbar-divider{display:block}html.theme--catppuccin-macchiato .navbar>.container .navbar-brand,html.theme--catppuccin-macchiato .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-macchiato .navbar>.container .navbar-menu,html.theme--catppuccin-macchiato .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-macchiato .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-macchiato html.has-navbar-fixed-top-desktop,html.theme--catppuccin-macchiato body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-macchiato html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-macchiato body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-macchiato html.has-spaced-navbar-fixed-top,html.theme--catppuccin-macchiato body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-macchiato html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-macchiato body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-macchiato a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar-link.is-active{color:#8aadf4}html.theme--catppuccin-macchiato a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-macchiato .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-macchiato .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-macchiato .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-macchiato .pagination.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-macchiato .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .pagination.is-rounded .pagination-previous,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-macchiato .pagination.is-rounded .pagination-next,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-macchiato .pagination.is-rounded .pagination-link,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-macchiato .pagination,html.theme--catppuccin-macchiato .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link{border-color:#5b6078;color:#8aadf4;min-width:2.5em}html.theme--catppuccin-macchiato .pagination-previous:hover,html.theme--catppuccin-macchiato .pagination-next:hover,html.theme--catppuccin-macchiato .pagination-link:hover{border-color:#6e738d;color:#91d7e3}html.theme--catppuccin-macchiato .pagination-previous:focus,html.theme--catppuccin-macchiato .pagination-next:focus,html.theme--catppuccin-macchiato .pagination-link:focus{border-color:#6e738d}html.theme--catppuccin-macchiato .pagination-previous:active,html.theme--catppuccin-macchiato .pagination-next:active,html.theme--catppuccin-macchiato .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-macchiato .pagination-previous[disabled],html.theme--catppuccin-macchiato .pagination-previous.is-disabled,html.theme--catppuccin-macchiato .pagination-next[disabled],html.theme--catppuccin-macchiato .pagination-next.is-disabled,html.theme--catppuccin-macchiato .pagination-link[disabled],html.theme--catppuccin-macchiato .pagination-link.is-disabled{background-color:#5b6078;border-color:#5b6078;box-shadow:none;color:#f5f7fd;opacity:0.5}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-macchiato .pagination-link.is-current{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .pagination-ellipsis{color:#6e738d;pointer-events:none}html.theme--catppuccin-macchiato .pagination-list{flex-wrap:wrap}html.theme--catppuccin-macchiato .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .pagination{flex-wrap:wrap}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-macchiato .pagination-previous{order:2}html.theme--catppuccin-macchiato .pagination-next{order:3}html.theme--catppuccin-macchiato .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-macchiato .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-macchiato .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-macchiato .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-macchiato .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-macchiato .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-macchiato .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-macchiato .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-macchiato .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-macchiato .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-macchiato .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-macchiato .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-macchiato .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-macchiato .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-macchiato .panel.is-dark .panel-heading,html.theme--catppuccin-macchiato .content kbd.panel .panel-heading{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-macchiato .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#363a4f}html.theme--catppuccin-macchiato .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-macchiato .content kbd.panel .panel-block.is-active .panel-icon{color:#363a4f}html.theme--catppuccin-macchiato .panel.is-primary .panel-heading,html.theme--catppuccin-macchiato .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-macchiato .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-macchiato .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-link .panel-heading{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .panel.is-link .panel-tabs a.is-active{border-bottom-color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-link .panel-block.is-active .panel-icon{color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-info .panel-heading{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-info .panel-tabs a.is-active{border-bottom-color:#8bd5ca}html.theme--catppuccin-macchiato .panel.is-info .panel-block.is-active .panel-icon{color:#8bd5ca}html.theme--catppuccin-macchiato .panel.is-success .panel-heading{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-success .panel-tabs a.is-active{border-bottom-color:#a6da95}html.theme--catppuccin-macchiato .panel.is-success .panel-block.is-active .panel-icon{color:#a6da95}html.theme--catppuccin-macchiato .panel.is-warning .panel-heading{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#eed49f}html.theme--catppuccin-macchiato .panel.is-warning .panel-block.is-active .panel-icon{color:#eed49f}html.theme--catppuccin-macchiato .panel.is-danger .panel-heading{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#ed8796}html.theme--catppuccin-macchiato .panel.is-danger .panel-block.is-active .panel-icon{color:#ed8796}html.theme--catppuccin-macchiato .panel-tabs:not(:last-child),html.theme--catppuccin-macchiato .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-macchiato .panel-heading{background-color:#494d64;border-radius:8px 8px 0 0;color:#b5c1f1;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-macchiato .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-macchiato .panel-tabs a{border-bottom:1px solid #5b6078;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-macchiato .panel-tabs a.is-active{border-bottom-color:#494d64;color:#739df2}html.theme--catppuccin-macchiato .panel-list a{color:#cad3f5}html.theme--catppuccin-macchiato .panel-list a:hover{color:#8aadf4}html.theme--catppuccin-macchiato .panel-block{align-items:center;color:#b5c1f1;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-macchiato .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-macchiato .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-macchiato .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-macchiato .panel-block.is-active{border-left-color:#8aadf4;color:#739df2}html.theme--catppuccin-macchiato .panel-block.is-active .panel-icon{color:#8aadf4}html.theme--catppuccin-macchiato .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-macchiato a.panel-block,html.theme--catppuccin-macchiato label.panel-block{cursor:pointer}html.theme--catppuccin-macchiato a.panel-block:hover,html.theme--catppuccin-macchiato label.panel-block:hover{background-color:#1e2030}html.theme--catppuccin-macchiato .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#f5f7fd;margin-right:.75em}html.theme--catppuccin-macchiato .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-macchiato .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-macchiato .tabs a{align-items:center;border-bottom-color:#5b6078;border-bottom-style:solid;border-bottom-width:1px;color:#cad3f5;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-macchiato .tabs a:hover{border-bottom-color:#b5c1f1;color:#b5c1f1}html.theme--catppuccin-macchiato .tabs li{display:block}html.theme--catppuccin-macchiato .tabs li.is-active a{border-bottom-color:#8aadf4;color:#8aadf4}html.theme--catppuccin-macchiato .tabs ul{align-items:center;border-bottom-color:#5b6078;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-macchiato .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-macchiato .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-macchiato .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-macchiato .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-macchiato .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-macchiato .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-macchiato .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-macchiato .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-macchiato .tabs.is-boxed a:hover{background-color:#1e2030;border-bottom-color:#5b6078}html.theme--catppuccin-macchiato .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#5b6078;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-macchiato .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-macchiato .tabs.is-toggle a{border-color:#5b6078;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-macchiato .tabs.is-toggle a:hover{background-color:#1e2030;border-color:#6e738d;z-index:2}html.theme--catppuccin-macchiato .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-macchiato .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-macchiato .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-macchiato .tabs.is-toggle li.is-active a{background-color:#8aadf4;border-color:#8aadf4;color:#fff;z-index:1}html.theme--catppuccin-macchiato .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-macchiato .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-macchiato .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-macchiato .tabs.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-macchiato .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .column.is-narrow,html.theme--catppuccin-macchiato .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full,html.theme--catppuccin-macchiato .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters,html.theme--catppuccin-macchiato .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds,html.theme--catppuccin-macchiato .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half,html.theme--catppuccin-macchiato .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third,html.theme--catppuccin-macchiato .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter,html.theme--catppuccin-macchiato .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth,html.theme--catppuccin-macchiato .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths,html.theme--catppuccin-macchiato .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths,html.theme--catppuccin-macchiato .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths,html.theme--catppuccin-macchiato .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters,html.theme--catppuccin-macchiato .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds,html.theme--catppuccin-macchiato .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half,html.theme--catppuccin-macchiato .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third,html.theme--catppuccin-macchiato .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter,html.theme--catppuccin-macchiato .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth,html.theme--catppuccin-macchiato .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths,html.theme--catppuccin-macchiato .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths,html.theme--catppuccin-macchiato .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths,html.theme--catppuccin-macchiato .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0,html.theme--catppuccin-macchiato .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0,html.theme--catppuccin-macchiato .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1,html.theme--catppuccin-macchiato .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1,html.theme--catppuccin-macchiato .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2,html.theme--catppuccin-macchiato .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2,html.theme--catppuccin-macchiato .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3,html.theme--catppuccin-macchiato .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3,html.theme--catppuccin-macchiato .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4,html.theme--catppuccin-macchiato .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4,html.theme--catppuccin-macchiato .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5,html.theme--catppuccin-macchiato .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5,html.theme--catppuccin-macchiato .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6,html.theme--catppuccin-macchiato .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6,html.theme--catppuccin-macchiato .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7,html.theme--catppuccin-macchiato .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7,html.theme--catppuccin-macchiato .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8,html.theme--catppuccin-macchiato .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8,html.theme--catppuccin-macchiato .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9,html.theme--catppuccin-macchiato .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9,html.theme--catppuccin-macchiato .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10,html.theme--catppuccin-macchiato .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10,html.theme--catppuccin-macchiato .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11,html.theme--catppuccin-macchiato .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11,html.theme--catppuccin-macchiato .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12,html.theme--catppuccin-macchiato .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12,html.theme--catppuccin-macchiato .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-macchiato .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-macchiato .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-macchiato .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-macchiato .columns.is-centered{justify-content:center}html.theme--catppuccin-macchiato .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-macchiato .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-macchiato .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-macchiato .columns.is-mobile{display:flex}html.theme--catppuccin-macchiato .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-macchiato .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-desktop{display:flex}}html.theme--catppuccin-macchiato .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-macchiato .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-macchiato .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-macchiato .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-macchiato .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-macchiato .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-macchiato .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-macchiato .tile.is-child{margin:0 !important}html.theme--catppuccin-macchiato .tile.is-parent{padding:.75rem}html.theme--catppuccin-macchiato .tile.is-vertical{flex-direction:column}html.theme--catppuccin-macchiato .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .tile:not(.is-child){display:flex}html.theme--catppuccin-macchiato .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .tile.is-3{flex:none;width:25%}html.theme--catppuccin-macchiato .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .tile.is-6{flex:none;width:50%}html.theme--catppuccin-macchiato .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .tile.is-9{flex:none;width:75%}html.theme--catppuccin-macchiato .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-macchiato .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-macchiato .hero .navbar{background:none}html.theme--catppuccin-macchiato .hero .tabs ul{border-bottom:none}html.theme--catppuccin-macchiato .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-white strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-macchiato .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-macchiato .hero.is-white .navbar-item,html.theme--catppuccin-macchiato .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-macchiato .hero.is-white a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-white .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-macchiato .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-black strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-black .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-macchiato .hero.is-black .navbar-item,html.theme--catppuccin-macchiato .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-black a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-black .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-macchiato .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-light strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-macchiato .hero.is-light .navbar-item,html.theme--catppuccin-macchiato .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-light .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-macchiato .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-macchiato .hero.is-dark,html.theme--catppuccin-macchiato .content kbd.hero{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-dark strong,html.theme--catppuccin-macchiato .content kbd.hero strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-dark .title,html.theme--catppuccin-macchiato .content kbd.hero .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-dark .subtitle,html.theme--catppuccin-macchiato .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-macchiato .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-dark .subtitle strong,html.theme--catppuccin-macchiato .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-dark .navbar-menu,html.theme--catppuccin-macchiato .content kbd.hero .navbar-menu{background-color:#363a4f}}html.theme--catppuccin-macchiato .hero.is-dark .navbar-item,html.theme--catppuccin-macchiato .content kbd.hero .navbar-item,html.theme--catppuccin-macchiato .hero.is-dark .navbar-link,html.theme--catppuccin-macchiato .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-dark .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.hero .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.hero .navbar-link.is-active{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .hero.is-dark .tabs a,html.theme--catppuccin-macchiato .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-dark .tabs a:hover,html.theme--catppuccin-macchiato .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-macchiato .content kbd.hero .tabs li.is-active a{color:#363a4f !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363a4f}html.theme--catppuccin-macchiato .hero.is-dark.is-bold,html.theme--catppuccin-macchiato .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #1d2535 0%, #363a4f 71%, #3d3c62 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-macchiato .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1d2535 0%, #363a4f 71%, #3d3c62 100%)}}html.theme--catppuccin-macchiato .hero.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-primary strong,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-primary .title,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-primary .subtitle,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-primary .subtitle strong,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-primary .navbar-menu,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#8aadf4}}html.theme--catppuccin-macchiato .hero.is-primary .navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-macchiato .hero.is-primary .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-primary .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .hero.is-primary .tabs a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-primary .tabs a:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#8aadf4 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .hero.is-primary.is-bold,html.theme--catppuccin-macchiato .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-macchiato .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}}html.theme--catppuccin-macchiato .hero.is-link{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-link strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-link .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-link .navbar-menu{background-color:#8aadf4}}html.theme--catppuccin-macchiato .hero.is-link .navbar-item,html.theme--catppuccin-macchiato .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-link a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-link .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-link .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-link .tabs li.is-active a{color:#8aadf4 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .hero.is-link.is-bold{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}}html.theme--catppuccin-macchiato .hero.is-info{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-info strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-info .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-info .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-info .navbar-menu{background-color:#8bd5ca}}html.theme--catppuccin-macchiato .hero.is-info .navbar-item,html.theme--catppuccin-macchiato .hero.is-info .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-info .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-info .navbar-link.is-active{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-info .tabs li.is-active a{color:#8bd5ca !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#8bd5ca}html.theme--catppuccin-macchiato .hero.is-info.is-bold{background-image:linear-gradient(141deg, #5bd2ac 0%, #8bd5ca 71%, #9adedf 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #5bd2ac 0%, #8bd5ca 71%, #9adedf 100%)}}html.theme--catppuccin-macchiato .hero.is-success{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-success strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-success .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-success .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-success .navbar-menu{background-color:#a6da95}}html.theme--catppuccin-macchiato .hero.is-success .navbar-item,html.theme--catppuccin-macchiato .hero.is-success .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-success .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-success .navbar-link.is-active{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-success .tabs li.is-active a{color:#a6da95 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#a6da95}html.theme--catppuccin-macchiato .hero.is-success.is-bold{background-image:linear-gradient(141deg, #94d765 0%, #a6da95 71%, #aae4a5 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #94d765 0%, #a6da95 71%, #aae4a5 100%)}}html.theme--catppuccin-macchiato .hero.is-warning{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-warning strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-warning .navbar-menu{background-color:#eed49f}}html.theme--catppuccin-macchiato .hero.is-warning .navbar-item,html.theme--catppuccin-macchiato .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-warning .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-warning .navbar-link.is-active{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-warning .tabs li.is-active a{color:#eed49f !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#eed49f}html.theme--catppuccin-macchiato .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #efae6b 0%, #eed49f 71%, #f4e9b2 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #efae6b 0%, #eed49f 71%, #f4e9b2 100%)}}html.theme--catppuccin-macchiato .hero.is-danger{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-danger strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-danger .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-danger .navbar-menu{background-color:#ed8796}}html.theme--catppuccin-macchiato .hero.is-danger .navbar-item,html.theme--catppuccin-macchiato .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-danger .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-danger .navbar-link.is-active{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-danger .tabs li.is-active a{color:#ed8796 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#ed8796}html.theme--catppuccin-macchiato .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #f05183 0%, #ed8796 71%, #f39c9a 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #f05183 0%, #ed8796 71%, #f39c9a 100%)}}html.theme--catppuccin-macchiato .hero.is-small .hero-body,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-macchiato .hero.is-halfheight .hero-body,html.theme--catppuccin-macchiato .hero.is-fullheight .hero-body,html.theme--catppuccin-macchiato .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-macchiato .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-macchiato .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-macchiato .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-macchiato .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-macchiato .hero-video{overflow:hidden}html.theme--catppuccin-macchiato .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-macchiato .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero-video{display:none}}html.theme--catppuccin-macchiato .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero-buttons .button{display:flex}html.theme--catppuccin-macchiato .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-macchiato .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-macchiato .hero-head,html.theme--catppuccin-macchiato .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero-body{padding:3rem 3rem}}html.theme--catppuccin-macchiato .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .section{padding:3rem 3rem}html.theme--catppuccin-macchiato .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-macchiato .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-macchiato .footer{background-color:#1e2030;padding:3rem 1.5rem 6rem}html.theme--catppuccin-macchiato h1 .docs-heading-anchor,html.theme--catppuccin-macchiato h1 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h1 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h2 .docs-heading-anchor,html.theme--catppuccin-macchiato h2 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h2 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h3 .docs-heading-anchor,html.theme--catppuccin-macchiato h3 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h3 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h4 .docs-heading-anchor,html.theme--catppuccin-macchiato h4 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h4 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h5 .docs-heading-anchor,html.theme--catppuccin-macchiato h5 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h5 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h6 .docs-heading-anchor,html.theme--catppuccin-macchiato h6 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h6 .docs-heading-anchor:visited{color:#cad3f5}html.theme--catppuccin-macchiato h1 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h2 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h3 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h4 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h5 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-macchiato h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-macchiato h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-macchiato .docs-light-only{display:none !important}html.theme--catppuccin-macchiato pre{position:relative;overflow:hidden}html.theme--catppuccin-macchiato pre code,html.theme--catppuccin-macchiato pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-macchiato pre code:first-of-type,html.theme--catppuccin-macchiato pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-macchiato pre code:last-of-type,html.theme--catppuccin-macchiato pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-macchiato pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#cad3f5;cursor:pointer;text-align:center}html.theme--catppuccin-macchiato pre .copy-button:focus,html.theme--catppuccin-macchiato pre .copy-button:hover{opacity:1;background:rgba(202,211,245,0.1);color:#8aadf4}html.theme--catppuccin-macchiato pre .copy-button.success{color:#a6da95;opacity:1}html.theme--catppuccin-macchiato pre .copy-button.error{color:#ed8796;opacity:1}html.theme--catppuccin-macchiato pre:hover .copy-button{opacity:1}html.theme--catppuccin-macchiato .admonition{background-color:#1e2030;border-style:solid;border-width:2px;border-color:#b8c0e0;border-radius:4px;font-size:1rem}html.theme--catppuccin-macchiato .admonition strong{color:currentColor}html.theme--catppuccin-macchiato .admonition.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-macchiato .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .admonition.is-default{background-color:#1e2030;border-color:#b8c0e0}html.theme--catppuccin-macchiato .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#b8c0e0}html.theme--catppuccin-macchiato .admonition.is-default>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-info{background-color:#1e2030;border-color:#8bd5ca}html.theme--catppuccin-macchiato .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#8bd5ca}html.theme--catppuccin-macchiato .admonition.is-info>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-success{background-color:#1e2030;border-color:#a6da95}html.theme--catppuccin-macchiato .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#a6da95}html.theme--catppuccin-macchiato .admonition.is-success>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-warning{background-color:#1e2030;border-color:#eed49f}html.theme--catppuccin-macchiato .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#eed49f}html.theme--catppuccin-macchiato .admonition.is-warning>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-danger{background-color:#1e2030;border-color:#ed8796}html.theme--catppuccin-macchiato .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#ed8796}html.theme--catppuccin-macchiato .admonition.is-danger>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-compat{background-color:#1e2030;border-color:#91d7e3}html.theme--catppuccin-macchiato .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#91d7e3}html.theme--catppuccin-macchiato .admonition.is-compat>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition-header{color:#b8c0e0;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-macchiato .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-macchiato details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-macchiato details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-macchiato details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-macchiato .admonition-body{color:#cad3f5;padding:0.5rem .75rem}html.theme--catppuccin-macchiato .admonition-body pre{background-color:#1e2030}html.theme--catppuccin-macchiato .admonition-body code{background-color:#1e2030}html.theme--catppuccin-macchiato .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #5b6078;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-macchiato .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#1e2030;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #5b6078;overflow:auto}html.theme--catppuccin-macchiato .docstring>header code{background-color:transparent}html.theme--catppuccin-macchiato .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-macchiato .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-macchiato .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-macchiato .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #5b6078}html.theme--catppuccin-macchiato .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-macchiato .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-macchiato .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-macchiato .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-macchiato .documenter-example-output{background-color:#24273a}html.theme--catppuccin-macchiato .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#1e2030;color:#cad3f5;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-macchiato .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-macchiato .outdated-warning-overlay a{color:#8aadf4}html.theme--catppuccin-macchiato .outdated-warning-overlay a:hover{color:#91d7e3}html.theme--catppuccin-macchiato .content pre{border:2px solid #5b6078;border-radius:4px}html.theme--catppuccin-macchiato .content code{font-weight:inherit}html.theme--catppuccin-macchiato .content a code{color:#8aadf4}html.theme--catppuccin-macchiato .content a:hover code{color:#91d7e3}html.theme--catppuccin-macchiato .content h1 code,html.theme--catppuccin-macchiato .content h2 code,html.theme--catppuccin-macchiato .content h3 code,html.theme--catppuccin-macchiato .content h4 code,html.theme--catppuccin-macchiato .content h5 code,html.theme--catppuccin-macchiato .content h6 code{color:#cad3f5}html.theme--catppuccin-macchiato .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-macchiato .content blockquote>ul:first-child,html.theme--catppuccin-macchiato .content blockquote>ol:first-child,html.theme--catppuccin-macchiato .content .admonition-body>ul:first-child,html.theme--catppuccin-macchiato .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-macchiato pre,html.theme--catppuccin-macchiato code{font-variant-ligatures:no-contextual}html.theme--catppuccin-macchiato .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-macchiato .breadcrumb a.is-disabled,html.theme--catppuccin-macchiato .breadcrumb a.is-disabled:hover{color:#b5c1f1}html.theme--catppuccin-macchiato .hljs{background:initial !important}html.theme--catppuccin-macchiato .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-macchiato .katex-display,html.theme--catppuccin-macchiato mjx-container,html.theme--catppuccin-macchiato .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-macchiato html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-macchiato li.no-marker{list-style:none}html.theme--catppuccin-macchiato #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-macchiato #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main{width:100%}html.theme--catppuccin-macchiato #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-macchiato #documenter .docs-main>header,html.theme--catppuccin-macchiato #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar{background-color:#24273a;border-bottom:1px solid #5b6078;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes{border-top:1px solid #5b6078}html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-macchiato .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #5b6078;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-macchiato #documenter .docs-sidebar{display:flex;flex-direction:column;color:#cad3f5;background-color:#1e2030;border-right:1px solid #5b6078;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-macchiato #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name a:hover{color:#cad3f5}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #5b6078;display:none;padding:0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #5b6078;padding-bottom:1.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #5b6078}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#cad3f5;background:#1e2030}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#cad3f5;background-color:#26283d}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #5b6078;border-bottom:1px solid #5b6078;background-color:#181926}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#181926;color:#cad3f5}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#26283d;color:#cad3f5}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #5b6078}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#2e3149}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#3d4162}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-macchiato #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#2e3149}html.theme--catppuccin-macchiato #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#3d4162}}html.theme--catppuccin-macchiato kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-macchiato .search-min-width-50{min-width:50%}html.theme--catppuccin-macchiato .search-min-height-100{min-height:100%}html.theme--catppuccin-macchiato .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-macchiato .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-macchiato .search-result-link:hover,html.theme--catppuccin-macchiato .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-macchiato .search-result-link .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-macchiato .property-search-result-badge,html.theme--catppuccin-macchiato .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-macchiato .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:hover .search-filter,html.theme--catppuccin-macchiato .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-macchiato .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-macchiato .search-filter:hover,html.theme--catppuccin-macchiato .search-filter:focus{color:#333}html.theme--catppuccin-macchiato .search-filter-selected{color:#363a4f;background-color:#b7bdf8}html.theme--catppuccin-macchiato .search-filter-selected:hover,html.theme--catppuccin-macchiato .search-filter-selected:focus{color:#363a4f}html.theme--catppuccin-macchiato .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-macchiato .search-divider{border-bottom:1px solid #5b6078}html.theme--catppuccin-macchiato .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-macchiato .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-macchiato #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-macchiato #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-macchiato #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-macchiato #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-macchiato #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-macchiato #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-macchiato .w-100{width:100%}html.theme--catppuccin-macchiato .gap-2{gap:0.5rem}html.theme--catppuccin-macchiato .gap-4{gap:1rem}html.theme--catppuccin-macchiato .gap-8{gap:2rem}html.theme--catppuccin-macchiato{background-color:#24273a;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-macchiato a{transition:all 200ms ease}html.theme--catppuccin-macchiato .label{color:#cad3f5}html.theme--catppuccin-macchiato .button,html.theme--catppuccin-macchiato .control.has-icons-left .icon,html.theme--catppuccin-macchiato .control.has-icons-right .icon,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .select,html.theme--catppuccin-macchiato .select select,html.theme--catppuccin-macchiato .textarea{height:2.5em;color:#cad3f5}html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#cad3f5}html.theme--catppuccin-macchiato .select:after,html.theme--catppuccin-macchiato .select select{border-width:1px}html.theme--catppuccin-macchiato .menu-list a{transition:all 300ms ease}html.theme--catppuccin-macchiato .modal-card-foot,html.theme--catppuccin-macchiato .modal-card-head{border-color:#5b6078}html.theme--catppuccin-macchiato .navbar{border-radius:.4em}html.theme--catppuccin-macchiato .navbar.is-transparent{background:none}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8aadf4}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .navbar .navbar-menu{background-color:#8aadf4;border-radius:0 0 .4em .4em}}html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body){color:#363a4f}html.theme--catppuccin-macchiato .tag.is-link:not(body),html.theme--catppuccin-macchiato .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-macchiato .content kbd.is-link:not(body){color:#363a4f}html.theme--catppuccin-macchiato .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-macchiato .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-macchiato .ansi span.sgr3{font-style:italic}html.theme--catppuccin-macchiato .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-macchiato .ansi span.sgr7{color:#24273a;background-color:#cad3f5}html.theme--catppuccin-macchiato .ansi span.sgr8{color:transparent}html.theme--catppuccin-macchiato .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-macchiato .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-macchiato .ansi span.sgr30{color:#494d64}html.theme--catppuccin-macchiato .ansi span.sgr31{color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr32{color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr33{color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr34{color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr35{color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr36{color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr37{color:#b8c0e0}html.theme--catppuccin-macchiato .ansi span.sgr40{background-color:#494d64}html.theme--catppuccin-macchiato .ansi span.sgr41{background-color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr42{background-color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr43{background-color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr44{background-color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr45{background-color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr46{background-color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr47{background-color:#b8c0e0}html.theme--catppuccin-macchiato .ansi span.sgr90{color:#5b6078}html.theme--catppuccin-macchiato .ansi span.sgr91{color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr92{color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr93{color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr94{color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr95{color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr96{color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr97{color:#a5adcb}html.theme--catppuccin-macchiato .ansi span.sgr100{background-color:#5b6078}html.theme--catppuccin-macchiato .ansi span.sgr101{background-color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr102{background-color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr103{background-color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr104{background-color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr105{background-color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr106{background-color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr107{background-color:#a5adcb}html.theme--catppuccin-macchiato code.language-julia-repl>span.hljs-meta{color:#a6da95;font-weight:bolder}html.theme--catppuccin-macchiato code .hljs{color:#cad3f5;background:#24273a}html.theme--catppuccin-macchiato code .hljs-keyword{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-built_in{color:#ed8796}html.theme--catppuccin-macchiato code .hljs-type{color:#eed49f}html.theme--catppuccin-macchiato code .hljs-literal{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-number{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-operator{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-punctuation{color:#b8c0e0}html.theme--catppuccin-macchiato code .hljs-property{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-regexp{color:#f5bde6}html.theme--catppuccin-macchiato code .hljs-string{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-char.escape_{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-subst{color:#a5adcb}html.theme--catppuccin-macchiato code .hljs-symbol{color:#f0c6c6}html.theme--catppuccin-macchiato code .hljs-variable{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-variable.language_{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-variable.constant_{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-title{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-title.class_{color:#eed49f}html.theme--catppuccin-macchiato code .hljs-title.function_{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-params{color:#cad3f5}html.theme--catppuccin-macchiato code .hljs-comment{color:#5b6078}html.theme--catppuccin-macchiato code .hljs-doctag{color:#ed8796}html.theme--catppuccin-macchiato code .hljs-meta{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-section{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-tag{color:#a5adcb}html.theme--catppuccin-macchiato code .hljs-name{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-attr{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-attribute{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-bullet{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-code{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-emphasis{color:#ed8796;font-style:italic}html.theme--catppuccin-macchiato code .hljs-strong{color:#ed8796;font-weight:bold}html.theme--catppuccin-macchiato code .hljs-formula{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-link{color:#7dc4e4;font-style:italic}html.theme--catppuccin-macchiato code .hljs-quote{color:#a6da95;font-style:italic}html.theme--catppuccin-macchiato code .hljs-selector-tag{color:#eed49f}html.theme--catppuccin-macchiato code .hljs-selector-id{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-selector-class{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-selector-attr{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-selector-pseudo{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-template-tag{color:#f0c6c6}html.theme--catppuccin-macchiato code .hljs-template-variable{color:#f0c6c6}html.theme--catppuccin-macchiato code .hljs-addition{color:#a6da95;background:rgba(166,227,161,0.15)}html.theme--catppuccin-macchiato code .hljs-deletion{color:#ed8796;background:rgba(243,139,168,0.15)}html.theme--catppuccin-macchiato .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-macchiato .search-result-link:hover,html.theme--catppuccin-macchiato .search-result-link:focus{background-color:#363a4f}html.theme--catppuccin-macchiato .search-result-link .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-macchiato .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:hover .search-filter,html.theme--catppuccin-macchiato .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:focus .search-filter{color:#363a4f !important;background-color:#b7bdf8 !important}html.theme--catppuccin-macchiato .search-result-title{color:#cad3f5}html.theme--catppuccin-macchiato .search-result-highlight{background-color:#ed8796;color:#1e2030}html.theme--catppuccin-macchiato .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-macchiato .w-100{width:100%}html.theme--catppuccin-macchiato .gap-2{gap:0.5rem}html.theme--catppuccin-macchiato .gap-4{gap:1rem} diff --git a/previews/PR873/assets/themes/catppuccin-mocha.css b/previews/PR873/assets/themes/catppuccin-mocha.css new file mode 100644 index 000000000..6f27b4c5f --- /dev/null +++ b/previews/PR873/assets/themes/catppuccin-mocha.css @@ -0,0 +1 @@ +html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha .file-cta,html.theme--catppuccin-mocha .file-name,html.theme--catppuccin-mocha .select select,html.theme--catppuccin-mocha .textarea,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-mocha .pagination-previous:focus,html.theme--catppuccin-mocha .pagination-next:focus,html.theme--catppuccin-mocha .pagination-link:focus,html.theme--catppuccin-mocha .pagination-ellipsis:focus,html.theme--catppuccin-mocha .file-cta:focus,html.theme--catppuccin-mocha .file-name:focus,html.theme--catppuccin-mocha .select select:focus,html.theme--catppuccin-mocha .textarea:focus,html.theme--catppuccin-mocha .input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-mocha .button:focus,html.theme--catppuccin-mocha .is-focused.pagination-previous,html.theme--catppuccin-mocha .is-focused.pagination-next,html.theme--catppuccin-mocha .is-focused.pagination-link,html.theme--catppuccin-mocha .is-focused.pagination-ellipsis,html.theme--catppuccin-mocha .is-focused.file-cta,html.theme--catppuccin-mocha .is-focused.file-name,html.theme--catppuccin-mocha .select select.is-focused,html.theme--catppuccin-mocha .is-focused.textarea,html.theme--catppuccin-mocha .is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-focused.button,html.theme--catppuccin-mocha .pagination-previous:active,html.theme--catppuccin-mocha .pagination-next:active,html.theme--catppuccin-mocha .pagination-link:active,html.theme--catppuccin-mocha .pagination-ellipsis:active,html.theme--catppuccin-mocha .file-cta:active,html.theme--catppuccin-mocha .file-name:active,html.theme--catppuccin-mocha .select select:active,html.theme--catppuccin-mocha .textarea:active,html.theme--catppuccin-mocha .input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-mocha .button:active,html.theme--catppuccin-mocha .is-active.pagination-previous,html.theme--catppuccin-mocha .is-active.pagination-next,html.theme--catppuccin-mocha .is-active.pagination-link,html.theme--catppuccin-mocha .is-active.pagination-ellipsis,html.theme--catppuccin-mocha .is-active.file-cta,html.theme--catppuccin-mocha .is-active.file-name,html.theme--catppuccin-mocha .select select.is-active,html.theme--catppuccin-mocha .is-active.textarea,html.theme--catppuccin-mocha .is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-mocha .is-active.button{outline:none}html.theme--catppuccin-mocha .pagination-previous[disabled],html.theme--catppuccin-mocha .pagination-next[disabled],html.theme--catppuccin-mocha .pagination-link[disabled],html.theme--catppuccin-mocha .pagination-ellipsis[disabled],html.theme--catppuccin-mocha .file-cta[disabled],html.theme--catppuccin-mocha .file-name[disabled],html.theme--catppuccin-mocha .select select[disabled],html.theme--catppuccin-mocha .textarea[disabled],html.theme--catppuccin-mocha .input[disabled],html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-mocha .button[disabled],fieldset[disabled] html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-mocha .file-cta,html.theme--catppuccin-mocha fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-mocha .file-name,html.theme--catppuccin-mocha fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-mocha .select select,fieldset[disabled] html.theme--catppuccin-mocha .textarea,fieldset[disabled] html.theme--catppuccin-mocha .input,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha fieldset[disabled] .select select,html.theme--catppuccin-mocha .select fieldset[disabled] select,html.theme--catppuccin-mocha fieldset[disabled] .textarea,html.theme--catppuccin-mocha fieldset[disabled] .input,html.theme--catppuccin-mocha fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-mocha .button,html.theme--catppuccin-mocha fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-mocha .tabs,html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha .breadcrumb,html.theme--catppuccin-mocha .file,html.theme--catppuccin-mocha .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-mocha .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-mocha .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-mocha .admonition:not(:last-child),html.theme--catppuccin-mocha .tabs:not(:last-child),html.theme--catppuccin-mocha .pagination:not(:last-child),html.theme--catppuccin-mocha .message:not(:last-child),html.theme--catppuccin-mocha .level:not(:last-child),html.theme--catppuccin-mocha .breadcrumb:not(:last-child),html.theme--catppuccin-mocha .block:not(:last-child),html.theme--catppuccin-mocha .title:not(:last-child),html.theme--catppuccin-mocha .subtitle:not(:last-child),html.theme--catppuccin-mocha .table-container:not(:last-child),html.theme--catppuccin-mocha .table:not(:last-child),html.theme--catppuccin-mocha .progress:not(:last-child),html.theme--catppuccin-mocha .notification:not(:last-child),html.theme--catppuccin-mocha .content:not(:last-child),html.theme--catppuccin-mocha .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .modal-close,html.theme--catppuccin-mocha .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-mocha .modal-close::before,html.theme--catppuccin-mocha .delete::before,html.theme--catppuccin-mocha .modal-close::after,html.theme--catppuccin-mocha .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-mocha .modal-close::before,html.theme--catppuccin-mocha .delete::before{height:2px;width:50%}html.theme--catppuccin-mocha .modal-close::after,html.theme--catppuccin-mocha .delete::after{height:50%;width:2px}html.theme--catppuccin-mocha .modal-close:hover,html.theme--catppuccin-mocha .delete:hover,html.theme--catppuccin-mocha .modal-close:focus,html.theme--catppuccin-mocha .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-mocha .modal-close:active,html.theme--catppuccin-mocha .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-mocha .is-small.modal-close,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-mocha .is-small.delete,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-mocha .is-medium.modal-close,html.theme--catppuccin-mocha .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-mocha .is-large.modal-close,html.theme--catppuccin-mocha .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-mocha .control.is-loading::after,html.theme--catppuccin-mocha .select.is-loading::after,html.theme--catppuccin-mocha .loader,html.theme--catppuccin-mocha .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #7f849c;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-mocha .hero-video,html.theme--catppuccin-mocha .modal-background,html.theme--catppuccin-mocha .modal,html.theme--catppuccin-mocha .image.is-square img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-mocha .image.is-square .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-mocha .image.is-1by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-mocha .image.is-1by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-mocha .image.is-5by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-mocha .image.is-5by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-mocha .image.is-4by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-mocha .image.is-4by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-mocha .image.is-3by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-mocha .image.is-5by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-mocha .image.is-5by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-mocha .image.is-16by9 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-mocha .image.is-16by9 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-mocha .image.is-2by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-mocha .image.is-2by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-mocha .image.is-3by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-mocha .image.is-3by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-mocha .image.is-4by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-mocha .image.is-4by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-mocha .image.is-3by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-mocha .image.is-3by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-mocha .image.is-2by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-mocha .image.is-2by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-mocha .image.is-3by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-mocha .image.is-9by16 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-mocha .image.is-9by16 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-mocha .image.is-1by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-mocha .image.is-1by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-mocha .image.is-1by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-mocha .image.is-1by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-mocha .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#313244 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c26 !important}.has-background-dark{background-color:#313244 !important}.has-text-primary{color:#89b4fa !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#5895f8 !important}.has-background-primary{background-color:#89b4fa !important}.has-text-primary-light{color:#ebf3fe !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#bbd3fc !important}.has-background-primary-light{background-color:#ebf3fe !important}.has-text-primary-dark{color:#063c93 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#0850c4 !important}.has-background-primary-dark{background-color:#063c93 !important}.has-text-link{color:#89b4fa !important}a.has-text-link:hover,a.has-text-link:focus{color:#5895f8 !important}.has-background-link{background-color:#89b4fa !important}.has-text-link-light{color:#ebf3fe !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#bbd3fc !important}.has-background-link-light{background-color:#ebf3fe !important}.has-text-link-dark{color:#063c93 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#0850c4 !important}.has-background-link-dark{background-color:#063c93 !important}.has-text-info{color:#94e2d5 !important}a.has-text-info:hover,a.has-text-info:focus{color:#6cd7c5 !important}.has-background-info{background-color:#94e2d5 !important}.has-text-info-light{color:#effbf9 !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c7f0e9 !important}.has-background-info-light{background-color:#effbf9 !important}.has-text-info-dark{color:#207466 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#2a9c89 !important}.has-background-info-dark{background-color:#207466 !important}.has-text-success{color:#a6e3a1 !important}a.has-text-success:hover,a.has-text-success:focus{color:#81d77a !important}.has-background-success{background-color:#a6e3a1 !important}.has-text-success-light{color:#f0faef !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#cbefc8 !important}.has-background-success-light{background-color:#f0faef !important}.has-text-success-dark{color:#287222 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#36992e !important}.has-background-success-dark{background-color:#287222 !important}.has-text-warning{color:#f9e2af !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#f5d180 !important}.has-background-warning{background-color:#f9e2af !important}.has-text-warning-light{color:#fef8ec !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fae7bd !important}.has-background-warning-light{background-color:#fef8ec !important}.has-text-warning-dark{color:#8a620a !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#b9840e !important}.has-background-warning-dark{background-color:#8a620a !important}.has-text-danger{color:#f38ba8 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee5d85 !important}.has-background-danger{background-color:#f38ba8 !important}.has-text-danger-light{color:#fdedf1 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f8bece !important}.has-background-danger-light{background-color:#fdedf1 !important}.has-text-danger-dark{color:#991036 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#c71546 !important}.has-background-danger-dark{background-color:#991036 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#313244 !important}.has-background-grey-darker{background-color:#313244 !important}.has-text-grey-dark{color:#45475a !important}.has-background-grey-dark{background-color:#45475a !important}.has-text-grey{color:#585b70 !important}.has-background-grey{background-color:#585b70 !important}.has-text-grey-light{color:#6c7086 !important}.has-background-grey-light{background-color:#6c7086 !important}.has-text-grey-lighter{color:#7f849c !important}.has-background-grey-lighter{background-color:#7f849c !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-mocha html{background-color:#1e1e2e;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-mocha article,html.theme--catppuccin-mocha aside,html.theme--catppuccin-mocha figure,html.theme--catppuccin-mocha footer,html.theme--catppuccin-mocha header,html.theme--catppuccin-mocha hgroup,html.theme--catppuccin-mocha section{display:block}html.theme--catppuccin-mocha body,html.theme--catppuccin-mocha button,html.theme--catppuccin-mocha input,html.theme--catppuccin-mocha optgroup,html.theme--catppuccin-mocha select,html.theme--catppuccin-mocha textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-mocha code,html.theme--catppuccin-mocha pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-mocha body{color:#cdd6f4;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-mocha a{color:#89b4fa;cursor:pointer;text-decoration:none}html.theme--catppuccin-mocha a strong{color:currentColor}html.theme--catppuccin-mocha a:hover{color:#89dceb}html.theme--catppuccin-mocha code{background-color:#181825;color:#cdd6f4;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-mocha hr{background-color:#181825;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-mocha img{height:auto;max-width:100%}html.theme--catppuccin-mocha input[type="checkbox"],html.theme--catppuccin-mocha input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-mocha small{font-size:.875em}html.theme--catppuccin-mocha span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-mocha strong{color:#b8c5ef;font-weight:700}html.theme--catppuccin-mocha fieldset{border:none}html.theme--catppuccin-mocha pre{-webkit-overflow-scrolling:touch;background-color:#181825;color:#cdd6f4;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-mocha pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-mocha table td,html.theme--catppuccin-mocha table th{vertical-align:top}html.theme--catppuccin-mocha table td:not([align]),html.theme--catppuccin-mocha table th:not([align]){text-align:inherit}html.theme--catppuccin-mocha table th{color:#b8c5ef}html.theme--catppuccin-mocha .box{background-color:#45475a;border-radius:8px;box-shadow:none;color:#cdd6f4;display:block;padding:1.25rem}html.theme--catppuccin-mocha a.box:hover,html.theme--catppuccin-mocha a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #89b4fa}html.theme--catppuccin-mocha a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #89b4fa}html.theme--catppuccin-mocha .button{background-color:#181825;border-color:#363653;border-width:1px;color:#89b4fa;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-mocha .button strong{color:inherit}html.theme--catppuccin-mocha .button .icon,html.theme--catppuccin-mocha .button .icon.is-small,html.theme--catppuccin-mocha .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-mocha .button .icon.is-medium,html.theme--catppuccin-mocha .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-mocha .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-mocha .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-mocha .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-mocha .button:hover,html.theme--catppuccin-mocha .button.is-hovered{border-color:#6c7086;color:#b8c5ef}html.theme--catppuccin-mocha .button:focus,html.theme--catppuccin-mocha .button.is-focused{border-color:#6c7086;color:#71a4f9}html.theme--catppuccin-mocha .button:focus:not(:active),html.theme--catppuccin-mocha .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .button:active,html.theme--catppuccin-mocha .button.is-active{border-color:#45475a;color:#b8c5ef}html.theme--catppuccin-mocha .button.is-text{background-color:transparent;border-color:transparent;color:#cdd6f4;text-decoration:underline}html.theme--catppuccin-mocha .button.is-text:hover,html.theme--catppuccin-mocha .button.is-text.is-hovered,html.theme--catppuccin-mocha .button.is-text:focus,html.theme--catppuccin-mocha .button.is-text.is-focused{background-color:#181825;color:#b8c5ef}html.theme--catppuccin-mocha .button.is-text:active,html.theme--catppuccin-mocha .button.is-text.is-active{background-color:#0e0e16;color:#b8c5ef}html.theme--catppuccin-mocha .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-mocha .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#89b4fa;text-decoration:none}html.theme--catppuccin-mocha .button.is-ghost:hover,html.theme--catppuccin-mocha .button.is-ghost.is-hovered{color:#89b4fa;text-decoration:underline}html.theme--catppuccin-mocha .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white:hover,html.theme--catppuccin-mocha .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white:focus,html.theme--catppuccin-mocha .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white:focus:not(:active),html.theme--catppuccin-mocha .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-mocha .button.is-white:active,html.theme--catppuccin-mocha .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-mocha .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-inverted:hover,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-mocha .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-outlined:hover,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-white.is-outlined:focus,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black:hover,html.theme--catppuccin-mocha .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black:focus,html.theme--catppuccin-mocha .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black:focus:not(:active),html.theme--catppuccin-mocha .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-mocha .button.is-black:active,html.theme--catppuccin-mocha .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-mocha .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-inverted:hover,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-outlined:hover,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-black.is-outlined:focus,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light:hover,html.theme--catppuccin-mocha .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light:focus,html.theme--catppuccin-mocha .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light:focus:not(:active),html.theme--catppuccin-mocha .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-mocha .button.is-light:active,html.theme--catppuccin-mocha .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-mocha .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-inverted:hover,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-outlined:hover,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-light.is-outlined:focus,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-dark,html.theme--catppuccin-mocha .content kbd.button{background-color:#313244;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark:hover,html.theme--catppuccin-mocha .content kbd.button:hover,html.theme--catppuccin-mocha .button.is-dark.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-hovered{background-color:#2c2d3d;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark:focus,html.theme--catppuccin-mocha .content kbd.button:focus,html.theme--catppuccin-mocha .button.is-dark.is-focused,html.theme--catppuccin-mocha .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark:focus:not(:active),html.theme--catppuccin-mocha .content kbd.button:focus:not(:active),html.theme--catppuccin-mocha .button.is-dark.is-focused:not(:active),html.theme--catppuccin-mocha .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(49,50,68,0.25)}html.theme--catppuccin-mocha .button.is-dark:active,html.theme--catppuccin-mocha .content kbd.button:active,html.theme--catppuccin-mocha .button.is-dark.is-active,html.theme--catppuccin-mocha .content kbd.button.is-active{background-color:#262735;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark[disabled],html.theme--catppuccin-mocha .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button{background-color:#313244;border-color:#313244;box-shadow:none}html.theme--catppuccin-mocha .button.is-dark.is-inverted,html.theme--catppuccin-mocha .content kbd.button.is-inverted{background-color:#fff;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-inverted:hover,html.theme--catppuccin-mocha .content kbd.button.is-inverted:hover,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-dark.is-inverted[disabled],html.theme--catppuccin-mocha .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-loading::after,html.theme--catppuccin-mocha .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-dark.is-outlined,html.theme--catppuccin-mocha .content kbd.button.is-outlined{background-color:transparent;border-color:#313244;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-outlined:hover,html.theme--catppuccin-mocha .content kbd.button.is-outlined:hover,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-dark.is-outlined:focus,html.theme--catppuccin-mocha .content kbd.button.is-outlined:focus,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-focused{background-color:#313244;border-color:#313244;color:#fff}html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #313244 #313244 !important}html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-dark.is-outlined[disabled],html.theme--catppuccin-mocha .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button.is-outlined{background-color:transparent;border-color:#313244;box-shadow:none;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #313244 #313244 !important}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-primary,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary:hover,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary:focus,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-mocha .button.is-primary.is-focused,html.theme--catppuccin-mocha .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary:focus:not(:active),html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-mocha .button.is-primary.is-focused:not(:active),html.theme--catppuccin-mocha .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .button.is-primary:active,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-mocha .button.is-primary.is-active,html.theme--catppuccin-mocha .docstring>section>a.button.is-active.docs-sourcelink{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink{background-color:#89b4fa;border-color:#89b4fa;box-shadow:none}html.theme--catppuccin-mocha .button.is-primary.is-inverted,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-inverted:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-primary.is-inverted[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-loading::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-primary.is-outlined,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#89b4fa;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-outlined:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-mocha .button.is-primary.is-outlined:focus,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-primary.is-outlined[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#89b4fa;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-primary.is-light,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.docs-sourcelink{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .button.is-primary.is-light:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-light.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#dfebfe;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-primary.is-light:active,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-mocha .button.is-primary.is-light.is-active,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d3e3fd;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-link{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link:hover,html.theme--catppuccin-mocha .button.is-link.is-hovered{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link:focus,html.theme--catppuccin-mocha .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link:focus:not(:active),html.theme--catppuccin-mocha .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .button.is-link:active,html.theme--catppuccin-mocha .button.is-link.is-active{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link{background-color:#89b4fa;border-color:#89b4fa;box-shadow:none}html.theme--catppuccin-mocha .button.is-link.is-inverted{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-inverted:hover,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-link.is-outlined{background-color:transparent;border-color:#89b4fa;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-outlined:hover,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-link.is-outlined:focus,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-focused{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link.is-outlined{background-color:transparent;border-color:#89b4fa;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-link.is-light{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .button.is-link.is-light:hover,html.theme--catppuccin-mocha .button.is-link.is-light.is-hovered{background-color:#dfebfe;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-link.is-light:active,html.theme--catppuccin-mocha .button.is-link.is-light.is-active{background-color:#d3e3fd;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-info{background-color:#94e2d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info:hover,html.theme--catppuccin-mocha .button.is-info.is-hovered{background-color:#8adfd1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info:focus,html.theme--catppuccin-mocha .button.is-info.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info:focus:not(:active),html.theme--catppuccin-mocha .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(148,226,213,0.25)}html.theme--catppuccin-mocha .button.is-info:active,html.theme--catppuccin-mocha .button.is-info.is-active{background-color:#80ddcd;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info{background-color:#94e2d5;border-color:#94e2d5;box-shadow:none}html.theme--catppuccin-mocha .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-inverted:hover,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-info.is-outlined{background-color:transparent;border-color:#94e2d5;color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-outlined:hover,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-info.is-outlined:focus,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-focused{background-color:#94e2d5;border-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #94e2d5 #94e2d5 !important}html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info.is-outlined{background-color:transparent;border-color:#94e2d5;box-shadow:none;color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #94e2d5 #94e2d5 !important}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-light{background-color:#effbf9;color:#207466}html.theme--catppuccin-mocha .button.is-info.is-light:hover,html.theme--catppuccin-mocha .button.is-info.is-light.is-hovered{background-color:#e5f8f5;border-color:transparent;color:#207466}html.theme--catppuccin-mocha .button.is-info.is-light:active,html.theme--catppuccin-mocha .button.is-info.is-light.is-active{background-color:#dbf5f1;border-color:transparent;color:#207466}html.theme--catppuccin-mocha .button.is-success{background-color:#a6e3a1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success:hover,html.theme--catppuccin-mocha .button.is-success.is-hovered{background-color:#9de097;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success:focus,html.theme--catppuccin-mocha .button.is-success.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success:focus:not(:active),html.theme--catppuccin-mocha .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(166,227,161,0.25)}html.theme--catppuccin-mocha .button.is-success:active,html.theme--catppuccin-mocha .button.is-success.is-active{background-color:#93dd8d;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success{background-color:#a6e3a1;border-color:#a6e3a1;box-shadow:none}html.theme--catppuccin-mocha .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-inverted:hover,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-success.is-outlined{background-color:transparent;border-color:#a6e3a1;color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-outlined:hover,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-success.is-outlined:focus,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-focused{background-color:#a6e3a1;border-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #a6e3a1 #a6e3a1 !important}html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success.is-outlined{background-color:transparent;border-color:#a6e3a1;box-shadow:none;color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a6e3a1 #a6e3a1 !important}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-light{background-color:#f0faef;color:#287222}html.theme--catppuccin-mocha .button.is-success.is-light:hover,html.theme--catppuccin-mocha .button.is-success.is-light.is-hovered{background-color:#e7f7e5;border-color:transparent;color:#287222}html.theme--catppuccin-mocha .button.is-success.is-light:active,html.theme--catppuccin-mocha .button.is-success.is-light.is-active{background-color:#def4dc;border-color:transparent;color:#287222}html.theme--catppuccin-mocha .button.is-warning{background-color:#f9e2af;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning:hover,html.theme--catppuccin-mocha .button.is-warning.is-hovered{background-color:#f8dea3;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning:focus,html.theme--catppuccin-mocha .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning:focus:not(:active),html.theme--catppuccin-mocha .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(249,226,175,0.25)}html.theme--catppuccin-mocha .button.is-warning:active,html.theme--catppuccin-mocha .button.is-warning.is-active{background-color:#f7d997;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning{background-color:#f9e2af;border-color:#f9e2af;box-shadow:none}html.theme--catppuccin-mocha .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-inverted:hover,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-warning.is-outlined{background-color:transparent;border-color:#f9e2af;color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-outlined:hover,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-warning.is-outlined:focus,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-focused{background-color:#f9e2af;border-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #f9e2af #f9e2af !important}html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning.is-outlined{background-color:transparent;border-color:#f9e2af;box-shadow:none;color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f9e2af #f9e2af !important}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-light{background-color:#fef8ec;color:#8a620a}html.theme--catppuccin-mocha .button.is-warning.is-light:hover,html.theme--catppuccin-mocha .button.is-warning.is-light.is-hovered{background-color:#fdf4e0;border-color:transparent;color:#8a620a}html.theme--catppuccin-mocha .button.is-warning.is-light:active,html.theme--catppuccin-mocha .button.is-warning.is-light.is-active{background-color:#fcf0d4;border-color:transparent;color:#8a620a}html.theme--catppuccin-mocha .button.is-danger{background-color:#f38ba8;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger:hover,html.theme--catppuccin-mocha .button.is-danger.is-hovered{background-color:#f27f9f;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger:focus,html.theme--catppuccin-mocha .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger:focus:not(:active),html.theme--catppuccin-mocha .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(243,139,168,0.25)}html.theme--catppuccin-mocha .button.is-danger:active,html.theme--catppuccin-mocha .button.is-danger.is-active{background-color:#f17497;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger{background-color:#f38ba8;border-color:#f38ba8;box-shadow:none}html.theme--catppuccin-mocha .button.is-danger.is-inverted{background-color:#fff;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-inverted:hover,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-danger.is-outlined{background-color:transparent;border-color:#f38ba8;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-outlined:hover,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-danger.is-outlined:focus,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-focused{background-color:#f38ba8;border-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #f38ba8 #f38ba8 !important}html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger.is-outlined{background-color:transparent;border-color:#f38ba8;box-shadow:none;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f38ba8 #f38ba8 !important}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-danger.is-light{background-color:#fdedf1;color:#991036}html.theme--catppuccin-mocha .button.is-danger.is-light:hover,html.theme--catppuccin-mocha .button.is-danger.is-light.is-hovered{background-color:#fce1e8;border-color:transparent;color:#991036}html.theme--catppuccin-mocha .button.is-danger.is-light:active,html.theme--catppuccin-mocha .button.is-danger.is-light.is-active{background-color:#fbd5e0;border-color:transparent;color:#991036}html.theme--catppuccin-mocha .button.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-mocha .button.is-small:not(.is-rounded),html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-mocha .button.is-normal{font-size:1rem}html.theme--catppuccin-mocha .button.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .button.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .button[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button{background-color:#6c7086;border-color:#585b70;box-shadow:none;opacity:.5}html.theme--catppuccin-mocha .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-mocha .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-mocha .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-mocha .button.is-static{background-color:#181825;border-color:#585b70;color:#7f849c;box-shadow:none;pointer-events:none}html.theme--catppuccin-mocha .button.is-rounded,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-mocha .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-mocha .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-mocha .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-mocha .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-mocha .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-mocha .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-mocha .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-mocha .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-mocha .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-mocha .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-mocha .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-mocha .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-mocha .buttons.has-addons .button:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-mocha .buttons.has-addons .button:focus,html.theme--catppuccin-mocha .buttons.has-addons .button.is-focused,html.theme--catppuccin-mocha .buttons.has-addons .button:active,html.theme--catppuccin-mocha .buttons.has-addons .button.is-active,html.theme--catppuccin-mocha .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-mocha .buttons.has-addons .button:focus:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-mocha .buttons.has-addons .button:active:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-mocha .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .buttons.is-centered{justify-content:center}html.theme--catppuccin-mocha .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-mocha .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-mocha .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .button.is-responsive.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-mocha .button.is-responsive,html.theme--catppuccin-mocha .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-mocha .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-mocha .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .button.is-responsive.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-mocha .button.is-responsive,html.theme--catppuccin-mocha .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-mocha .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-mocha .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-mocha .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-mocha .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-mocha .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-mocha .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-mocha .content li+li{margin-top:0.25em}html.theme--catppuccin-mocha .content p:not(:last-child),html.theme--catppuccin-mocha .content dl:not(:last-child),html.theme--catppuccin-mocha .content ol:not(:last-child),html.theme--catppuccin-mocha .content ul:not(:last-child),html.theme--catppuccin-mocha .content blockquote:not(:last-child),html.theme--catppuccin-mocha .content pre:not(:last-child),html.theme--catppuccin-mocha .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-mocha .content h1,html.theme--catppuccin-mocha .content h2,html.theme--catppuccin-mocha .content h3,html.theme--catppuccin-mocha .content h4,html.theme--catppuccin-mocha .content h5,html.theme--catppuccin-mocha .content h6{color:#cdd6f4;font-weight:600;line-height:1.125}html.theme--catppuccin-mocha .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-mocha .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-mocha .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-mocha .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-mocha .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-mocha .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-mocha .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-mocha .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-mocha .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-mocha .content blockquote{background-color:#181825;border-left:5px solid #585b70;padding:1.25em 1.5em}html.theme--catppuccin-mocha .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-mocha .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-mocha .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-mocha .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-mocha .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-mocha .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-mocha .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-mocha .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-mocha .content ul ul ul{list-style-type:square}html.theme--catppuccin-mocha .content dd{margin-left:2em}html.theme--catppuccin-mocha .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-mocha .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-mocha .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-mocha .content figure img{display:inline-block}html.theme--catppuccin-mocha .content figure figcaption{font-style:italic}html.theme--catppuccin-mocha .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-mocha .content sup,html.theme--catppuccin-mocha .content sub{font-size:75%}html.theme--catppuccin-mocha .content table{width:100%}html.theme--catppuccin-mocha .content table td,html.theme--catppuccin-mocha .content table th{border:1px solid #585b70;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-mocha .content table th{color:#b8c5ef}html.theme--catppuccin-mocha .content table th:not([align]){text-align:inherit}html.theme--catppuccin-mocha .content table thead td,html.theme--catppuccin-mocha .content table thead th{border-width:0 0 2px;color:#b8c5ef}html.theme--catppuccin-mocha .content table tfoot td,html.theme--catppuccin-mocha .content table tfoot th{border-width:2px 0 0;color:#b8c5ef}html.theme--catppuccin-mocha .content table tbody tr:last-child td,html.theme--catppuccin-mocha .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-mocha .content .tabs li+li{margin-top:0}html.theme--catppuccin-mocha .content.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-mocha .content.is-normal{font-size:1rem}html.theme--catppuccin-mocha .content.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .content.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-mocha .icon.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-mocha .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-mocha .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-mocha .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-mocha .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-mocha .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-mocha div.icon-text{display:flex}html.theme--catppuccin-mocha .image,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-mocha .image img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-mocha .image img.is-rounded,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-mocha .image.is-fullwidth,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-mocha .image.is-square img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-mocha .image.is-square .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-mocha .image.is-1by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-mocha .image.is-1by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-mocha .image.is-5by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-mocha .image.is-5by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-mocha .image.is-4by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-mocha .image.is-4by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-mocha .image.is-3by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-mocha .image.is-5by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-mocha .image.is-5by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-mocha .image.is-16by9 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-mocha .image.is-16by9 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-mocha .image.is-2by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-mocha .image.is-2by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-mocha .image.is-3by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-mocha .image.is-3by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-mocha .image.is-4by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-mocha .image.is-4by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-mocha .image.is-3by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-mocha .image.is-3by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-mocha .image.is-2by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-mocha .image.is-2by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-mocha .image.is-3by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-mocha .image.is-9by16 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-mocha .image.is-9by16 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-mocha .image.is-1by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-mocha .image.is-1by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-mocha .image.is-1by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-mocha .image.is-1by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-mocha .image.is-square,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-mocha .image.is-1by1,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-mocha .image.is-5by4,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-mocha .image.is-4by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-mocha .image.is-3by2,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-mocha .image.is-5by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-mocha .image.is-16by9,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-mocha .image.is-2by1,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-mocha .image.is-3by1,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-mocha .image.is-4by5,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-mocha .image.is-3by4,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-mocha .image.is-2by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-mocha .image.is-3by5,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-mocha .image.is-9by16,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-mocha .image.is-1by2,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-mocha .image.is-1by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-mocha .image.is-16x16,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-mocha .image.is-24x24,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-mocha .image.is-32x32,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-mocha .image.is-48x48,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-mocha .image.is-64x64,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-mocha .image.is-96x96,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-mocha .image.is-128x128,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-mocha .notification{background-color:#181825;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-mocha .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-mocha .notification strong{color:currentColor}html.theme--catppuccin-mocha .notification code,html.theme--catppuccin-mocha .notification pre{background:#fff}html.theme--catppuccin-mocha .notification pre code{background:transparent}html.theme--catppuccin-mocha .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-mocha .notification .title,html.theme--catppuccin-mocha .notification .subtitle,html.theme--catppuccin-mocha .notification .content{color:currentColor}html.theme--catppuccin-mocha .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-dark,html.theme--catppuccin-mocha .content kbd.notification{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .notification.is-primary,html.theme--catppuccin-mocha .docstring>section>a.notification.docs-sourcelink{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .notification.is-primary.is-light,html.theme--catppuccin-mocha .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .notification.is-link{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .notification.is-link.is-light{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .notification.is-info{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-info.is-light{background-color:#effbf9;color:#207466}html.theme--catppuccin-mocha .notification.is-success{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-success.is-light{background-color:#f0faef;color:#287222}html.theme--catppuccin-mocha .notification.is-warning{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-warning.is-light{background-color:#fef8ec;color:#8a620a}html.theme--catppuccin-mocha .notification.is-danger{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .notification.is-danger.is-light{background-color:#fdedf1;color:#991036}html.theme--catppuccin-mocha .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-mocha .progress::-webkit-progress-bar{background-color:#45475a}html.theme--catppuccin-mocha .progress::-webkit-progress-value{background-color:#7f849c}html.theme--catppuccin-mocha .progress::-moz-progress-bar{background-color:#7f849c}html.theme--catppuccin-mocha .progress::-ms-fill{background-color:#7f849c;border:none}html.theme--catppuccin-mocha .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-mocha .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-mocha .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-mocha .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-mocha .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-mocha .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-mocha .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-mocha .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-mocha .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-mocha .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-mocha .content kbd.progress::-webkit-progress-value{background-color:#313244}html.theme--catppuccin-mocha .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-mocha .content kbd.progress::-moz-progress-bar{background-color:#313244}html.theme--catppuccin-mocha .progress.is-dark::-ms-fill,html.theme--catppuccin-mocha .content kbd.progress::-ms-fill{background-color:#313244}html.theme--catppuccin-mocha .progress.is-dark:indeterminate,html.theme--catppuccin-mocha .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #313244 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-primary::-ms-fill,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-primary:indeterminate,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #89b4fa 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-link::-webkit-progress-value{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-link::-moz-progress-bar{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-link::-ms-fill{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-link:indeterminate{background-image:linear-gradient(to right, #89b4fa 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-info::-webkit-progress-value{background-color:#94e2d5}html.theme--catppuccin-mocha .progress.is-info::-moz-progress-bar{background-color:#94e2d5}html.theme--catppuccin-mocha .progress.is-info::-ms-fill{background-color:#94e2d5}html.theme--catppuccin-mocha .progress.is-info:indeterminate{background-image:linear-gradient(to right, #94e2d5 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-success::-webkit-progress-value{background-color:#a6e3a1}html.theme--catppuccin-mocha .progress.is-success::-moz-progress-bar{background-color:#a6e3a1}html.theme--catppuccin-mocha .progress.is-success::-ms-fill{background-color:#a6e3a1}html.theme--catppuccin-mocha .progress.is-success:indeterminate{background-image:linear-gradient(to right, #a6e3a1 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-warning::-webkit-progress-value{background-color:#f9e2af}html.theme--catppuccin-mocha .progress.is-warning::-moz-progress-bar{background-color:#f9e2af}html.theme--catppuccin-mocha .progress.is-warning::-ms-fill{background-color:#f9e2af}html.theme--catppuccin-mocha .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #f9e2af 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-danger::-webkit-progress-value{background-color:#f38ba8}html.theme--catppuccin-mocha .progress.is-danger::-moz-progress-bar{background-color:#f38ba8}html.theme--catppuccin-mocha .progress.is-danger::-ms-fill{background-color:#f38ba8}html.theme--catppuccin-mocha .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #f38ba8 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#45475a;background-image:linear-gradient(to right, #cdd6f4 30%, #45475a 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-mocha .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-mocha .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-mocha .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-mocha .progress.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-mocha .progress.is-medium{height:1.25rem}html.theme--catppuccin-mocha .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-mocha .table{background-color:#45475a;color:#cdd6f4}html.theme--catppuccin-mocha .table td,html.theme--catppuccin-mocha .table th{border:1px solid #585b70;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-mocha .table td.is-white,html.theme--catppuccin-mocha .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .table td.is-black,html.theme--catppuccin-mocha .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .table td.is-light,html.theme--catppuccin-mocha .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-dark,html.theme--catppuccin-mocha .table th.is-dark{background-color:#313244;border-color:#313244;color:#fff}html.theme--catppuccin-mocha .table td.is-primary,html.theme--catppuccin-mocha .table th.is-primary{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table td.is-link,html.theme--catppuccin-mocha .table th.is-link{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table td.is-info,html.theme--catppuccin-mocha .table th.is-info{background-color:#94e2d5;border-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-success,html.theme--catppuccin-mocha .table th.is-success{background-color:#a6e3a1;border-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-warning,html.theme--catppuccin-mocha .table th.is-warning{background-color:#f9e2af;border-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-danger,html.theme--catppuccin-mocha .table th.is-danger{background-color:#f38ba8;border-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .table td.is-narrow,html.theme--catppuccin-mocha .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-mocha .table td.is-selected,html.theme--catppuccin-mocha .table th.is-selected{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table td.is-selected a,html.theme--catppuccin-mocha .table td.is-selected strong,html.theme--catppuccin-mocha .table th.is-selected a,html.theme--catppuccin-mocha .table th.is-selected strong{color:currentColor}html.theme--catppuccin-mocha .table td.is-vcentered,html.theme--catppuccin-mocha .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-mocha .table th{color:#b8c5ef}html.theme--catppuccin-mocha .table th:not([align]){text-align:left}html.theme--catppuccin-mocha .table tr.is-selected{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table tr.is-selected a,html.theme--catppuccin-mocha .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-mocha .table tr.is-selected td,html.theme--catppuccin-mocha .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-mocha .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .table thead td,html.theme--catppuccin-mocha .table thead th{border-width:0 0 2px;color:#b8c5ef}html.theme--catppuccin-mocha .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .table tfoot td,html.theme--catppuccin-mocha .table tfoot th{border-width:2px 0 0;color:#b8c5ef}html.theme--catppuccin-mocha .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .table tbody tr:last-child td,html.theme--catppuccin-mocha .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-mocha .table.is-bordered td,html.theme--catppuccin-mocha .table.is-bordered th{border-width:1px}html.theme--catppuccin-mocha .table.is-bordered tr:last-child td,html.theme--catppuccin-mocha .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-mocha .table.is-fullwidth{width:100%}html.theme--catppuccin-mocha .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#313244}html.theme--catppuccin-mocha .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#313244}html.theme--catppuccin-mocha .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#35364a}html.theme--catppuccin-mocha .table.is-narrow td,html.theme--catppuccin-mocha .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-mocha .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#313244}html.theme--catppuccin-mocha .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-mocha .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-mocha .tags .tag,html.theme--catppuccin-mocha .tags .content kbd,html.theme--catppuccin-mocha .content .tags kbd,html.theme--catppuccin-mocha .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-mocha .tags .tag:not(:last-child),html.theme--catppuccin-mocha .tags .content kbd:not(:last-child),html.theme--catppuccin-mocha .content .tags kbd:not(:last-child),html.theme--catppuccin-mocha .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-mocha .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-mocha .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-mocha .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-mocha .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-mocha .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-mocha .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-mocha .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-mocha .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-mocha .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-mocha .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-mocha .tags.is-centered{justify-content:center}html.theme--catppuccin-mocha .tags.is-centered .tag,html.theme--catppuccin-mocha .tags.is-centered .content kbd,html.theme--catppuccin-mocha .content .tags.is-centered kbd,html.theme--catppuccin-mocha .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-mocha .tags.is-right{justify-content:flex-end}html.theme--catppuccin-mocha .tags.is-right .tag:not(:first-child),html.theme--catppuccin-mocha .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-mocha .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-mocha .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-mocha .tags.is-right .tag:not(:last-child),html.theme--catppuccin-mocha .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-mocha .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-mocha .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-mocha .tags.has-addons .tag,html.theme--catppuccin-mocha .tags.has-addons .content kbd,html.theme--catppuccin-mocha .content .tags.has-addons kbd,html.theme--catppuccin-mocha .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-mocha .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-mocha .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-mocha .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-mocha .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-mocha .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-mocha .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-mocha .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-mocha .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-mocha .tag:not(body),html.theme--catppuccin-mocha .content kbd:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#181825;border-radius:.4em;color:#cdd6f4;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-mocha .tag:not(body) .delete,html.theme--catppuccin-mocha .content kbd:not(body) .delete,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-mocha .tag.is-white:not(body),html.theme--catppuccin-mocha .content kbd.is-white:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .tag.is-black:not(body),html.theme--catppuccin-mocha .content kbd.is-black:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .tag.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-dark:not(body),html.theme--catppuccin-mocha .content kbd:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-mocha .content .docstring>section>kbd:not(body){background-color:#313244;color:#fff}html.theme--catppuccin-mocha .tag.is-primary:not(body),html.theme--catppuccin-mocha .content kbd.is-primary:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body){background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .tag.is-primary.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .tag.is-link:not(body),html.theme--catppuccin-mocha .content kbd.is-link:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .tag.is-link.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-link.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .tag.is-info:not(body),html.theme--catppuccin-mocha .content kbd.is-info:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-info.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-info.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#effbf9;color:#207466}html.theme--catppuccin-mocha .tag.is-success:not(body),html.theme--catppuccin-mocha .content kbd.is-success:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-success.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-success.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f0faef;color:#287222}html.theme--catppuccin-mocha .tag.is-warning:not(body),html.theme--catppuccin-mocha .content kbd.is-warning:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-warning.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fef8ec;color:#8a620a}html.theme--catppuccin-mocha .tag.is-danger:not(body),html.theme--catppuccin-mocha .content kbd.is-danger:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .tag.is-danger.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fdedf1;color:#991036}html.theme--catppuccin-mocha .tag.is-normal:not(body),html.theme--catppuccin-mocha .content kbd.is-normal:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-mocha .tag.is-medium:not(body),html.theme--catppuccin-mocha .content kbd.is-medium:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-mocha .tag.is-large:not(body),html.theme--catppuccin-mocha .content kbd.is-large:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-mocha .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-mocha .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-mocha .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-mocha .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-mocha .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-mocha .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-mocha .tag.is-delete:not(body),html.theme--catppuccin-mocha .content kbd.is-delete:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-mocha .tag.is-delete:not(body)::before,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::before,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-mocha .tag.is-delete:not(body)::after,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::after,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-mocha .tag.is-delete:not(body)::before,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::before,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-mocha .tag.is-delete:not(body)::after,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::after,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-mocha .tag.is-delete:not(body):hover,html.theme--catppuccin-mocha .content kbd.is-delete:not(body):hover,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-mocha .tag.is-delete:not(body):focus,html.theme--catppuccin-mocha .content kbd.is-delete:not(body):focus,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#0e0e16}html.theme--catppuccin-mocha .tag.is-delete:not(body):active,html.theme--catppuccin-mocha .content kbd.is-delete:not(body):active,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#040406}html.theme--catppuccin-mocha .tag.is-rounded:not(body),html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-mocha .content kbd.is-rounded:not(body),html.theme--catppuccin-mocha #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-mocha a.tag:hover,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-mocha .title,html.theme--catppuccin-mocha .subtitle{word-break:break-word}html.theme--catppuccin-mocha .title em,html.theme--catppuccin-mocha .title span,html.theme--catppuccin-mocha .subtitle em,html.theme--catppuccin-mocha .subtitle span{font-weight:inherit}html.theme--catppuccin-mocha .title sub,html.theme--catppuccin-mocha .subtitle sub{font-size:.75em}html.theme--catppuccin-mocha .title sup,html.theme--catppuccin-mocha .subtitle sup{font-size:.75em}html.theme--catppuccin-mocha .title .tag,html.theme--catppuccin-mocha .title .content kbd,html.theme--catppuccin-mocha .content .title kbd,html.theme--catppuccin-mocha .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-mocha .subtitle .tag,html.theme--catppuccin-mocha .subtitle .content kbd,html.theme--catppuccin-mocha .content .subtitle kbd,html.theme--catppuccin-mocha .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-mocha .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-mocha .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-mocha .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-mocha .title.is-1{font-size:3rem}html.theme--catppuccin-mocha .title.is-2{font-size:2.5rem}html.theme--catppuccin-mocha .title.is-3{font-size:2rem}html.theme--catppuccin-mocha .title.is-4{font-size:1.5rem}html.theme--catppuccin-mocha .title.is-5{font-size:1.25rem}html.theme--catppuccin-mocha .title.is-6{font-size:1rem}html.theme--catppuccin-mocha .title.is-7{font-size:.75rem}html.theme--catppuccin-mocha .subtitle{color:#6c7086;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-mocha .subtitle strong{color:#6c7086;font-weight:600}html.theme--catppuccin-mocha .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-mocha .subtitle.is-1{font-size:3rem}html.theme--catppuccin-mocha .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-mocha .subtitle.is-3{font-size:2rem}html.theme--catppuccin-mocha .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-mocha .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-mocha .subtitle.is-6{font-size:1rem}html.theme--catppuccin-mocha .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-mocha .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-mocha .number{align-items:center;background-color:#181825;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-mocha .select select,html.theme--catppuccin-mocha .textarea,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{background-color:#1e1e2e;border-color:#585b70;border-radius:.4em;color:#7f849c}html.theme--catppuccin-mocha .select select::-moz-placeholder,html.theme--catppuccin-mocha .textarea::-moz-placeholder,html.theme--catppuccin-mocha .input::-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select::-webkit-input-placeholder,html.theme--catppuccin-mocha .textarea::-webkit-input-placeholder,html.theme--catppuccin-mocha .input::-webkit-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select:-moz-placeholder,html.theme--catppuccin-mocha .textarea:-moz-placeholder,html.theme--catppuccin-mocha .input:-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select:-ms-input-placeholder,html.theme--catppuccin-mocha .textarea:-ms-input-placeholder,html.theme--catppuccin-mocha .input:-ms-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select:hover,html.theme--catppuccin-mocha .textarea:hover,html.theme--catppuccin-mocha .input:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-mocha .select select.is-hovered,html.theme--catppuccin-mocha .is-hovered.textarea,html.theme--catppuccin-mocha .is-hovered.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#6c7086}html.theme--catppuccin-mocha .select select:focus,html.theme--catppuccin-mocha .textarea:focus,html.theme--catppuccin-mocha .input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-mocha .select select.is-focused,html.theme--catppuccin-mocha .is-focused.textarea,html.theme--catppuccin-mocha .is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .select select:active,html.theme--catppuccin-mocha .textarea:active,html.theme--catppuccin-mocha .input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-mocha .select select.is-active,html.theme--catppuccin-mocha .is-active.textarea,html.theme--catppuccin-mocha .is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#89b4fa;box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .select select[disabled],html.theme--catppuccin-mocha .textarea[disabled],html.theme--catppuccin-mocha .input[disabled],html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-mocha .select select,fieldset[disabled] html.theme--catppuccin-mocha .textarea,fieldset[disabled] html.theme--catppuccin-mocha .input,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{background-color:#6c7086;border-color:#181825;box-shadow:none;color:#f7f8fd}html.theme--catppuccin-mocha .select select[disabled]::-moz-placeholder,html.theme--catppuccin-mocha .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-mocha .input[disabled]::-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-mocha .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-mocha .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .select select[disabled]:-moz-placeholder,html.theme--catppuccin-mocha .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-mocha .input[disabled]:-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-mocha .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-mocha .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .textarea,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-mocha .textarea[readonly],html.theme--catppuccin-mocha .input[readonly],html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-mocha .is-white.textarea,html.theme--catppuccin-mocha .is-white.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-mocha .is-white.textarea:focus,html.theme--catppuccin-mocha .is-white.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-mocha .is-white.is-focused.textarea,html.theme--catppuccin-mocha .is-white.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-white.textarea:active,html.theme--catppuccin-mocha .is-white.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-mocha .is-white.is-active.textarea,html.theme--catppuccin-mocha .is-white.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-mocha .is-black.textarea,html.theme--catppuccin-mocha .is-black.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-mocha .is-black.textarea:focus,html.theme--catppuccin-mocha .is-black.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-mocha .is-black.is-focused.textarea,html.theme--catppuccin-mocha .is-black.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-black.textarea:active,html.theme--catppuccin-mocha .is-black.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-mocha .is-black.is-active.textarea,html.theme--catppuccin-mocha .is-black.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-mocha .is-light.textarea,html.theme--catppuccin-mocha .is-light.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-mocha .is-light.textarea:focus,html.theme--catppuccin-mocha .is-light.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-mocha .is-light.is-focused.textarea,html.theme--catppuccin-mocha .is-light.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-light.textarea:active,html.theme--catppuccin-mocha .is-light.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-mocha .is-light.is-active.textarea,html.theme--catppuccin-mocha .is-light.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-mocha .is-dark.textarea,html.theme--catppuccin-mocha .content kbd.textarea,html.theme--catppuccin-mocha .is-dark.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-mocha .content kbd.input{border-color:#313244}html.theme--catppuccin-mocha .is-dark.textarea:focus,html.theme--catppuccin-mocha .content kbd.textarea:focus,html.theme--catppuccin-mocha .is-dark.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-mocha .content kbd.input:focus,html.theme--catppuccin-mocha .is-dark.is-focused.textarea,html.theme--catppuccin-mocha .content kbd.is-focused.textarea,html.theme--catppuccin-mocha .is-dark.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .content kbd.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-dark.textarea:active,html.theme--catppuccin-mocha .content kbd.textarea:active,html.theme--catppuccin-mocha .is-dark.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-mocha .content kbd.input:active,html.theme--catppuccin-mocha .is-dark.is-active.textarea,html.theme--catppuccin-mocha .content kbd.is-active.textarea,html.theme--catppuccin-mocha .is-dark.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-mocha .content kbd.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(49,50,68,0.25)}html.theme--catppuccin-mocha .is-primary.textarea,html.theme--catppuccin-mocha .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-mocha .docstring>section>a.input.docs-sourcelink{border-color:#89b4fa}html.theme--catppuccin-mocha .is-primary.textarea:focus,html.theme--catppuccin-mocha .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-mocha .is-primary.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-mocha .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-mocha .is-primary.is-focused.textarea,html.theme--catppuccin-mocha .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.textarea:active,html.theme--catppuccin-mocha .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-mocha .is-primary.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-mocha .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-mocha .is-primary.is-active.textarea,html.theme--catppuccin-mocha .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-mocha .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .is-link.textarea,html.theme--catppuccin-mocha .is-link.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#89b4fa}html.theme--catppuccin-mocha .is-link.textarea:focus,html.theme--catppuccin-mocha .is-link.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-mocha .is-link.is-focused.textarea,html.theme--catppuccin-mocha .is-link.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-link.textarea:active,html.theme--catppuccin-mocha .is-link.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-mocha .is-link.is-active.textarea,html.theme--catppuccin-mocha .is-link.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .is-info.textarea,html.theme--catppuccin-mocha .is-info.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#94e2d5}html.theme--catppuccin-mocha .is-info.textarea:focus,html.theme--catppuccin-mocha .is-info.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-mocha .is-info.is-focused.textarea,html.theme--catppuccin-mocha .is-info.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-info.textarea:active,html.theme--catppuccin-mocha .is-info.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-mocha .is-info.is-active.textarea,html.theme--catppuccin-mocha .is-info.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(148,226,213,0.25)}html.theme--catppuccin-mocha .is-success.textarea,html.theme--catppuccin-mocha .is-success.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#a6e3a1}html.theme--catppuccin-mocha .is-success.textarea:focus,html.theme--catppuccin-mocha .is-success.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-mocha .is-success.is-focused.textarea,html.theme--catppuccin-mocha .is-success.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-success.textarea:active,html.theme--catppuccin-mocha .is-success.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-mocha .is-success.is-active.textarea,html.theme--catppuccin-mocha .is-success.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(166,227,161,0.25)}html.theme--catppuccin-mocha .is-warning.textarea,html.theme--catppuccin-mocha .is-warning.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#f9e2af}html.theme--catppuccin-mocha .is-warning.textarea:focus,html.theme--catppuccin-mocha .is-warning.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-mocha .is-warning.is-focused.textarea,html.theme--catppuccin-mocha .is-warning.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-warning.textarea:active,html.theme--catppuccin-mocha .is-warning.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-mocha .is-warning.is-active.textarea,html.theme--catppuccin-mocha .is-warning.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(249,226,175,0.25)}html.theme--catppuccin-mocha .is-danger.textarea,html.theme--catppuccin-mocha .is-danger.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#f38ba8}html.theme--catppuccin-mocha .is-danger.textarea:focus,html.theme--catppuccin-mocha .is-danger.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-mocha .is-danger.is-focused.textarea,html.theme--catppuccin-mocha .is-danger.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-danger.textarea:active,html.theme--catppuccin-mocha .is-danger.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-mocha .is-danger.is-active.textarea,html.theme--catppuccin-mocha .is-danger.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(243,139,168,0.25)}html.theme--catppuccin-mocha .is-small.textarea,html.theme--catppuccin-mocha .is-small.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-mocha .is-medium.textarea,html.theme--catppuccin-mocha .is-medium.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .is-large.textarea,html.theme--catppuccin-mocha .is-large.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .is-fullwidth.textarea,html.theme--catppuccin-mocha .is-fullwidth.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-mocha .is-inline.textarea,html.theme--catppuccin-mocha .is-inline.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-mocha .input.is-rounded,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-mocha .input.is-static,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-mocha .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-mocha .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-mocha .textarea[rows]{height:initial}html.theme--catppuccin-mocha .textarea.has-fixed-size{resize:none}html.theme--catppuccin-mocha .radio,html.theme--catppuccin-mocha .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-mocha .radio input,html.theme--catppuccin-mocha .checkbox input{cursor:pointer}html.theme--catppuccin-mocha .radio:hover,html.theme--catppuccin-mocha .checkbox:hover{color:#89dceb}html.theme--catppuccin-mocha .radio[disabled],html.theme--catppuccin-mocha .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-mocha .radio,fieldset[disabled] html.theme--catppuccin-mocha .checkbox,html.theme--catppuccin-mocha .radio input[disabled],html.theme--catppuccin-mocha .checkbox input[disabled]{color:#f7f8fd;cursor:not-allowed}html.theme--catppuccin-mocha .radio+.radio{margin-left:.5em}html.theme--catppuccin-mocha .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-mocha .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-mocha .select:not(.is-multiple):not(.is-loading)::after{border-color:#89b4fa;right:1.125em;z-index:4}html.theme--catppuccin-mocha .select.is-rounded select,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-mocha .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-mocha .select select::-ms-expand{display:none}html.theme--catppuccin-mocha .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-mocha .select select:hover{border-color:#181825}html.theme--catppuccin-mocha .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-mocha .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-mocha .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-mocha .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#89dceb}html.theme--catppuccin-mocha .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-mocha .select.is-white select{border-color:#fff}html.theme--catppuccin-mocha .select.is-white select:hover,html.theme--catppuccin-mocha .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-mocha .select.is-white select:focus,html.theme--catppuccin-mocha .select.is-white select.is-focused,html.theme--catppuccin-mocha .select.is-white select:active,html.theme--catppuccin-mocha .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-mocha .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-mocha .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-mocha .select.is-black select:hover,html.theme--catppuccin-mocha .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-mocha .select.is-black select:focus,html.theme--catppuccin-mocha .select.is-black select.is-focused,html.theme--catppuccin-mocha .select.is-black select:active,html.theme--catppuccin-mocha .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-mocha .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-mocha .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-mocha .select.is-light select:hover,html.theme--catppuccin-mocha .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-mocha .select.is-light select:focus,html.theme--catppuccin-mocha .select.is-light select.is-focused,html.theme--catppuccin-mocha .select.is-light select:active,html.theme--catppuccin-mocha .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-mocha .select.is-dark:not(:hover)::after,html.theme--catppuccin-mocha .content kbd.select:not(:hover)::after{border-color:#313244}html.theme--catppuccin-mocha .select.is-dark select,html.theme--catppuccin-mocha .content kbd.select select{border-color:#313244}html.theme--catppuccin-mocha .select.is-dark select:hover,html.theme--catppuccin-mocha .content kbd.select select:hover,html.theme--catppuccin-mocha .select.is-dark select.is-hovered,html.theme--catppuccin-mocha .content kbd.select select.is-hovered{border-color:#262735}html.theme--catppuccin-mocha .select.is-dark select:focus,html.theme--catppuccin-mocha .content kbd.select select:focus,html.theme--catppuccin-mocha .select.is-dark select.is-focused,html.theme--catppuccin-mocha .content kbd.select select.is-focused,html.theme--catppuccin-mocha .select.is-dark select:active,html.theme--catppuccin-mocha .content kbd.select select:active,html.theme--catppuccin-mocha .select.is-dark select.is-active,html.theme--catppuccin-mocha .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(49,50,68,0.25)}html.theme--catppuccin-mocha .select.is-primary:not(:hover)::after,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-primary select,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-primary select:hover,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-mocha .select.is-primary select.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#71a4f9}html.theme--catppuccin-mocha .select.is-primary select:focus,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-mocha .select.is-primary select.is-focused,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-mocha .select.is-primary select:active,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-mocha .select.is-primary select.is-active,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .select.is-link:not(:hover)::after{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-link select{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-link select:hover,html.theme--catppuccin-mocha .select.is-link select.is-hovered{border-color:#71a4f9}html.theme--catppuccin-mocha .select.is-link select:focus,html.theme--catppuccin-mocha .select.is-link select.is-focused,html.theme--catppuccin-mocha .select.is-link select:active,html.theme--catppuccin-mocha .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .select.is-info:not(:hover)::after{border-color:#94e2d5}html.theme--catppuccin-mocha .select.is-info select{border-color:#94e2d5}html.theme--catppuccin-mocha .select.is-info select:hover,html.theme--catppuccin-mocha .select.is-info select.is-hovered{border-color:#80ddcd}html.theme--catppuccin-mocha .select.is-info select:focus,html.theme--catppuccin-mocha .select.is-info select.is-focused,html.theme--catppuccin-mocha .select.is-info select:active,html.theme--catppuccin-mocha .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(148,226,213,0.25)}html.theme--catppuccin-mocha .select.is-success:not(:hover)::after{border-color:#a6e3a1}html.theme--catppuccin-mocha .select.is-success select{border-color:#a6e3a1}html.theme--catppuccin-mocha .select.is-success select:hover,html.theme--catppuccin-mocha .select.is-success select.is-hovered{border-color:#93dd8d}html.theme--catppuccin-mocha .select.is-success select:focus,html.theme--catppuccin-mocha .select.is-success select.is-focused,html.theme--catppuccin-mocha .select.is-success select:active,html.theme--catppuccin-mocha .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(166,227,161,0.25)}html.theme--catppuccin-mocha .select.is-warning:not(:hover)::after{border-color:#f9e2af}html.theme--catppuccin-mocha .select.is-warning select{border-color:#f9e2af}html.theme--catppuccin-mocha .select.is-warning select:hover,html.theme--catppuccin-mocha .select.is-warning select.is-hovered{border-color:#f7d997}html.theme--catppuccin-mocha .select.is-warning select:focus,html.theme--catppuccin-mocha .select.is-warning select.is-focused,html.theme--catppuccin-mocha .select.is-warning select:active,html.theme--catppuccin-mocha .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(249,226,175,0.25)}html.theme--catppuccin-mocha .select.is-danger:not(:hover)::after{border-color:#f38ba8}html.theme--catppuccin-mocha .select.is-danger select{border-color:#f38ba8}html.theme--catppuccin-mocha .select.is-danger select:hover,html.theme--catppuccin-mocha .select.is-danger select.is-hovered{border-color:#f17497}html.theme--catppuccin-mocha .select.is-danger select:focus,html.theme--catppuccin-mocha .select.is-danger select.is-focused,html.theme--catppuccin-mocha .select.is-danger select:active,html.theme--catppuccin-mocha .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(243,139,168,0.25)}html.theme--catppuccin-mocha .select.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-mocha .select.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .select.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .select.is-disabled::after{border-color:#f7f8fd !important;opacity:0.5}html.theme--catppuccin-mocha .select.is-fullwidth{width:100%}html.theme--catppuccin-mocha .select.is-fullwidth select{width:100%}html.theme--catppuccin-mocha .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-mocha .select.is-loading.is-small:after,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-mocha .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-mocha .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-mocha .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-mocha .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .file.is-white:hover .file-cta,html.theme--catppuccin-mocha .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .file.is-white:focus .file-cta,html.theme--catppuccin-mocha .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-mocha .file.is-white:active .file-cta,html.theme--catppuccin-mocha .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-black:hover .file-cta,html.theme--catppuccin-mocha .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-black:focus .file-cta,html.theme--catppuccin-mocha .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-black:active .file-cta,html.theme--catppuccin-mocha .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-light:hover .file-cta,html.theme--catppuccin-mocha .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-light:focus .file-cta,html.theme--catppuccin-mocha .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-light:active .file-cta,html.theme--catppuccin-mocha .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-dark .file-cta,html.theme--catppuccin-mocha .content kbd.file .file-cta{background-color:#313244;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-dark:hover .file-cta,html.theme--catppuccin-mocha .content kbd.file:hover .file-cta,html.theme--catppuccin-mocha .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-mocha .content kbd.file.is-hovered .file-cta{background-color:#2c2d3d;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-dark:focus .file-cta,html.theme--catppuccin-mocha .content kbd.file:focus .file-cta,html.theme--catppuccin-mocha .file.is-dark.is-focused .file-cta,html.theme--catppuccin-mocha .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(49,50,68,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-dark:active .file-cta,html.theme--catppuccin-mocha .content kbd.file:active .file-cta,html.theme--catppuccin-mocha .file.is-dark.is-active .file-cta,html.theme--catppuccin-mocha .content kbd.file.is-active .file-cta{background-color:#262735;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-primary .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-primary:hover .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-mocha .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-primary:focus .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-mocha .file.is-primary.is-focused .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(137,180,250,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-primary:active .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-mocha .file.is-primary.is-active .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-link .file-cta{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-link:hover .file-cta,html.theme--catppuccin-mocha .file.is-link.is-hovered .file-cta{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-link:focus .file-cta,html.theme--catppuccin-mocha .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(137,180,250,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-link:active .file-cta,html.theme--catppuccin-mocha .file.is-link.is-active .file-cta{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-info .file-cta{background-color:#94e2d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-info:hover .file-cta,html.theme--catppuccin-mocha .file.is-info.is-hovered .file-cta{background-color:#8adfd1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-info:focus .file-cta,html.theme--catppuccin-mocha .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(148,226,213,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-info:active .file-cta,html.theme--catppuccin-mocha .file.is-info.is-active .file-cta{background-color:#80ddcd;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success .file-cta{background-color:#a6e3a1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success:hover .file-cta,html.theme--catppuccin-mocha .file.is-success.is-hovered .file-cta{background-color:#9de097;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success:focus .file-cta,html.theme--catppuccin-mocha .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(166,227,161,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success:active .file-cta,html.theme--catppuccin-mocha .file.is-success.is-active .file-cta{background-color:#93dd8d;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning .file-cta{background-color:#f9e2af;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning:hover .file-cta,html.theme--catppuccin-mocha .file.is-warning.is-hovered .file-cta{background-color:#f8dea3;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning:focus .file-cta,html.theme--catppuccin-mocha .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(249,226,175,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning:active .file-cta,html.theme--catppuccin-mocha .file.is-warning.is-active .file-cta{background-color:#f7d997;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-danger .file-cta{background-color:#f38ba8;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-danger:hover .file-cta,html.theme--catppuccin-mocha .file.is-danger.is-hovered .file-cta{background-color:#f27f9f;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-danger:focus .file-cta,html.theme--catppuccin-mocha .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(243,139,168,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-danger:active .file-cta,html.theme--catppuccin-mocha .file.is-danger.is-active .file-cta{background-color:#f17497;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-mocha .file.is-normal{font-size:1rem}html.theme--catppuccin-mocha .file.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-mocha .file.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-mocha .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-mocha .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-mocha .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-mocha .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-mocha .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-mocha .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-mocha .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-mocha .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-mocha .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-mocha .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-mocha .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-mocha .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-mocha .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-mocha .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-mocha .file.is-centered{justify-content:center}html.theme--catppuccin-mocha .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-mocha .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-mocha .file.is-right{justify-content:flex-end}html.theme--catppuccin-mocha .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-mocha .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-mocha .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-mocha .file-label:hover .file-cta{background-color:#2c2d3d;color:#b8c5ef}html.theme--catppuccin-mocha .file-label:hover .file-name{border-color:#525569}html.theme--catppuccin-mocha .file-label:active .file-cta{background-color:#262735;color:#b8c5ef}html.theme--catppuccin-mocha .file-label:active .file-name{border-color:#4d4f62}html.theme--catppuccin-mocha .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-mocha .file-cta,html.theme--catppuccin-mocha .file-name{border-color:#585b70;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-mocha .file-cta{background-color:#313244;color:#cdd6f4}html.theme--catppuccin-mocha .file-name{border-color:#585b70;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-mocha .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-mocha .file-icon .fa{font-size:14px}html.theme--catppuccin-mocha .label{color:#b8c5ef;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-mocha .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-mocha .label.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-mocha .label.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .label.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-mocha .help.is-white{color:#fff}html.theme--catppuccin-mocha .help.is-black{color:#0a0a0a}html.theme--catppuccin-mocha .help.is-light{color:#f5f5f5}html.theme--catppuccin-mocha .help.is-dark,html.theme--catppuccin-mocha .content kbd.help{color:#313244}html.theme--catppuccin-mocha .help.is-primary,html.theme--catppuccin-mocha .docstring>section>a.help.docs-sourcelink{color:#89b4fa}html.theme--catppuccin-mocha .help.is-link{color:#89b4fa}html.theme--catppuccin-mocha .help.is-info{color:#94e2d5}html.theme--catppuccin-mocha .help.is-success{color:#a6e3a1}html.theme--catppuccin-mocha .help.is-warning{color:#f9e2af}html.theme--catppuccin-mocha .help.is-danger{color:#f38ba8}html.theme--catppuccin-mocha .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-mocha .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-mocha .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-mocha .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-mocha .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-mocha .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-mocha .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-mocha .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-mocha .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-mocha .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .field.is-horizontal{display:flex}}html.theme--catppuccin-mocha .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-mocha .field-label.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-mocha .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-mocha .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-mocha .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-mocha .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-mocha .field-body .field{margin-bottom:0}html.theme--catppuccin-mocha .field-body>.field{flex-shrink:1}html.theme--catppuccin-mocha .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-mocha .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-mocha .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-mocha .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select:focus~.icon{color:#313244}html.theme--catppuccin-mocha .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-mocha .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-mocha .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-mocha .control.has-icons-left .icon,html.theme--catppuccin-mocha .control.has-icons-right .icon{color:#585b70;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-mocha .control.has-icons-left .input,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-mocha .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-mocha .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-mocha .control.has-icons-right .input,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-mocha .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-mocha .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-mocha .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-mocha .control.is-loading.is-small:after,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-mocha .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-mocha .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-mocha .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-mocha .breadcrumb a{align-items:center;color:#89b4fa;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-mocha .breadcrumb a:hover{color:#89dceb}html.theme--catppuccin-mocha .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-mocha .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-mocha .breadcrumb li.is-active a{color:#b8c5ef;cursor:default;pointer-events:none}html.theme--catppuccin-mocha .breadcrumb li+li::before{color:#6c7086;content:"\0002f"}html.theme--catppuccin-mocha .breadcrumb ul,html.theme--catppuccin-mocha .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-mocha .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-mocha .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-mocha .breadcrumb.is-centered ol,html.theme--catppuccin-mocha .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-mocha .breadcrumb.is-right ol,html.theme--catppuccin-mocha .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-mocha .breadcrumb.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-mocha .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-mocha .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-mocha .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-mocha .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-mocha .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#cdd6f4;max-width:100%;position:relative}html.theme--catppuccin-mocha .card-footer:first-child,html.theme--catppuccin-mocha .card-content:first-child,html.theme--catppuccin-mocha .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-mocha .card-footer:last-child,html.theme--catppuccin-mocha .card-content:last-child,html.theme--catppuccin-mocha .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-mocha .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-mocha .card-header-title{align-items:center;color:#b8c5ef;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-mocha .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-mocha .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-mocha .card-image{display:block;position:relative}html.theme--catppuccin-mocha .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-mocha .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-mocha .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-mocha .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-mocha .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-mocha .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-mocha .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-mocha .dropdown.is-active .dropdown-menu,html.theme--catppuccin-mocha .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-mocha .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-mocha .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-mocha .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-mocha .dropdown-content{background-color:#181825;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-mocha .dropdown-item{color:#cdd6f4;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-mocha a.dropdown-item,html.theme--catppuccin-mocha button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-mocha a.dropdown-item:hover,html.theme--catppuccin-mocha button.dropdown-item:hover{background-color:#181825;color:#0a0a0a}html.theme--catppuccin-mocha a.dropdown-item.is-active,html.theme--catppuccin-mocha button.dropdown-item.is-active{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-mocha .level{align-items:center;justify-content:space-between}html.theme--catppuccin-mocha .level code{border-radius:.4em}html.theme--catppuccin-mocha .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-mocha .level.is-mobile{display:flex}html.theme--catppuccin-mocha .level.is-mobile .level-left,html.theme--catppuccin-mocha .level.is-mobile .level-right{display:flex}html.theme--catppuccin-mocha .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-mocha .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-mocha .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level{display:flex}html.theme--catppuccin-mocha .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-mocha .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-mocha .level-item .title,html.theme--catppuccin-mocha .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-mocha .level-left,html.theme--catppuccin-mocha .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .level-left .level-item.is-flexible,html.theme--catppuccin-mocha .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level-left .level-item:not(:last-child),html.theme--catppuccin-mocha .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-mocha .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level-left{display:flex}}html.theme--catppuccin-mocha .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level-right{display:flex}}html.theme--catppuccin-mocha .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-mocha .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-mocha .media .media{border-top:1px solid rgba(88,91,112,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-mocha .media .media .content:not(:last-child),html.theme--catppuccin-mocha .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-mocha .media .media .media{padding-top:.5rem}html.theme--catppuccin-mocha .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-mocha .media+.media{border-top:1px solid rgba(88,91,112,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-mocha .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-mocha .media-left,html.theme--catppuccin-mocha .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .media-left{margin-right:1rem}html.theme--catppuccin-mocha .media-right{margin-left:1rem}html.theme--catppuccin-mocha .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .media-content{overflow-x:auto}}html.theme--catppuccin-mocha .menu{font-size:1rem}html.theme--catppuccin-mocha .menu.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-mocha .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .menu.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .menu-list{line-height:1.25}html.theme--catppuccin-mocha .menu-list a{border-radius:3px;color:#cdd6f4;display:block;padding:0.5em 0.75em}html.theme--catppuccin-mocha .menu-list a:hover{background-color:#181825;color:#b8c5ef}html.theme--catppuccin-mocha .menu-list a.is-active{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .menu-list li ul{border-left:1px solid #585b70;margin:.75em;padding-left:.75em}html.theme--catppuccin-mocha .menu-label{color:#f7f8fd;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-mocha .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-mocha .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-mocha .message{background-color:#181825;border-radius:.4em;font-size:1rem}html.theme--catppuccin-mocha .message strong{color:currentColor}html.theme--catppuccin-mocha .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-mocha .message.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-mocha .message.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .message.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .message.is-white{background-color:#fff}html.theme--catppuccin-mocha .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-mocha .message.is-black{background-color:#fafafa}html.theme--catppuccin-mocha .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-mocha .message.is-light{background-color:#fafafa}html.theme--catppuccin-mocha .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-mocha .message.is-dark,html.theme--catppuccin-mocha .content kbd.message{background-color:#f9f9fb}html.theme--catppuccin-mocha .message.is-dark .message-header,html.theme--catppuccin-mocha .content kbd.message .message-header{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .message.is-dark .message-body,html.theme--catppuccin-mocha .content kbd.message .message-body{border-color:#313244}html.theme--catppuccin-mocha .message.is-primary,html.theme--catppuccin-mocha .docstring>section>a.message.docs-sourcelink{background-color:#ebf3fe}html.theme--catppuccin-mocha .message.is-primary .message-header,html.theme--catppuccin-mocha .docstring>section>a.message.docs-sourcelink .message-header{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .message.is-primary .message-body,html.theme--catppuccin-mocha .docstring>section>a.message.docs-sourcelink .message-body{border-color:#89b4fa;color:#063c93}html.theme--catppuccin-mocha .message.is-link{background-color:#ebf3fe}html.theme--catppuccin-mocha .message.is-link .message-header{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .message.is-link .message-body{border-color:#89b4fa;color:#063c93}html.theme--catppuccin-mocha .message.is-info{background-color:#effbf9}html.theme--catppuccin-mocha .message.is-info .message-header{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-info .message-body{border-color:#94e2d5;color:#207466}html.theme--catppuccin-mocha .message.is-success{background-color:#f0faef}html.theme--catppuccin-mocha .message.is-success .message-header{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-success .message-body{border-color:#a6e3a1;color:#287222}html.theme--catppuccin-mocha .message.is-warning{background-color:#fef8ec}html.theme--catppuccin-mocha .message.is-warning .message-header{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-warning .message-body{border-color:#f9e2af;color:#8a620a}html.theme--catppuccin-mocha .message.is-danger{background-color:#fdedf1}html.theme--catppuccin-mocha .message.is-danger .message-header{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .message.is-danger .message-body{border-color:#f38ba8;color:#991036}html.theme--catppuccin-mocha .message-header{align-items:center;background-color:#cdd6f4;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-mocha .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-mocha .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-mocha .message-body{border-color:#585b70;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#cdd6f4;padding:1.25em 1.5em}html.theme--catppuccin-mocha .message-body code,html.theme--catppuccin-mocha .message-body pre{background-color:#fff}html.theme--catppuccin-mocha .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-mocha .modal.is-active{display:flex}html.theme--catppuccin-mocha .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-mocha .modal-content,html.theme--catppuccin-mocha .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-mocha .modal-content,html.theme--catppuccin-mocha .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-mocha .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-mocha .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-mocha .modal-card-head,html.theme--catppuccin-mocha .modal-card-foot{align-items:center;background-color:#181825;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-mocha .modal-card-head{border-bottom:1px solid #585b70;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-mocha .modal-card-title{color:#cdd6f4;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-mocha .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #585b70}html.theme--catppuccin-mocha .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-mocha .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#1e1e2e;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-mocha .navbar{background-color:#89b4fa;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-mocha .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-mocha .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-mocha .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-dark,html.theme--catppuccin-mocha .content kbd.navbar{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-burger,html.theme--catppuccin-mocha .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#313244;color:#fff}}html.theme--catppuccin-mocha .navbar.is-primary,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-burger,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#89b4fa;color:#fff}}html.theme--catppuccin-mocha .navbar.is-link{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#89b4fa;color:#fff}}html.theme--catppuccin-mocha .navbar.is-info{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#94e2d5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-success{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-warning{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#f9e2af;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-danger{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f38ba8;color:#fff}}html.theme--catppuccin-mocha .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-mocha .navbar.has-shadow{box-shadow:0 2px 0 0 #181825}html.theme--catppuccin-mocha .navbar.is-fixed-bottom,html.theme--catppuccin-mocha .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-mocha .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-mocha .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #181825}html.theme--catppuccin-mocha .navbar.is-fixed-top{top:0}html.theme--catppuccin-mocha html.has-navbar-fixed-top,html.theme--catppuccin-mocha body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-mocha html.has-navbar-fixed-bottom,html.theme--catppuccin-mocha body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-mocha .navbar-brand,html.theme--catppuccin-mocha .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-mocha .navbar-brand a.navbar-item:focus,html.theme--catppuccin-mocha .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-mocha .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-mocha .navbar-burger{color:#cdd6f4;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-mocha .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-mocha .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-mocha .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-mocha .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-mocha .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-mocha .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-mocha .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-mocha .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-mocha .navbar-menu{display:none}html.theme--catppuccin-mocha .navbar-item,html.theme--catppuccin-mocha .navbar-link{color:#cdd6f4;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-mocha .navbar-item .icon:only-child,html.theme--catppuccin-mocha .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-mocha a.navbar-item,html.theme--catppuccin-mocha .navbar-link{cursor:pointer}html.theme--catppuccin-mocha a.navbar-item:focus,html.theme--catppuccin-mocha a.navbar-item:focus-within,html.theme--catppuccin-mocha a.navbar-item:hover,html.theme--catppuccin-mocha a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar-link:focus,html.theme--catppuccin-mocha .navbar-link:focus-within,html.theme--catppuccin-mocha .navbar-link:hover,html.theme--catppuccin-mocha .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#89b4fa}html.theme--catppuccin-mocha .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .navbar-item img{max-height:1.75rem}html.theme--catppuccin-mocha .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-mocha .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-mocha .navbar-item.is-tab:focus,html.theme--catppuccin-mocha .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#89b4fa}html.theme--catppuccin-mocha .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#89b4fa;border-bottom-style:solid;border-bottom-width:3px;color:#89b4fa;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-mocha .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-mocha .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-mocha .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-mocha .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-mocha .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .navbar>.container{display:block}html.theme--catppuccin-mocha .navbar-brand .navbar-item,html.theme--catppuccin-mocha .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-mocha .navbar-link::after{display:none}html.theme--catppuccin-mocha .navbar-menu{background-color:#89b4fa;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-mocha .navbar-menu.is-active{display:block}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-touch,html.theme--catppuccin-mocha .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-mocha .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-mocha .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-mocha html.has-navbar-fixed-top-touch,html.theme--catppuccin-mocha body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-mocha html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-mocha body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar,html.theme--catppuccin-mocha .navbar-menu,html.theme--catppuccin-mocha .navbar-start,html.theme--catppuccin-mocha .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-mocha .navbar{min-height:4rem}html.theme--catppuccin-mocha .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-mocha .navbar.is-spaced .navbar-start,html.theme--catppuccin-mocha .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-mocha .navbar.is-spaced a.navbar-item,html.theme--catppuccin-mocha .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-mocha .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-mocha .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#7f849c}html.theme--catppuccin-mocha .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#89b4fa}html.theme--catppuccin-mocha .navbar-burger{display:none}html.theme--catppuccin-mocha .navbar-item,html.theme--catppuccin-mocha .navbar-link{align-items:center;display:flex}html.theme--catppuccin-mocha .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-mocha .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-mocha .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-mocha .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-mocha .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-mocha .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-mocha .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-mocha .navbar-dropdown{background-color:#89b4fa;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-mocha .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#7f849c}html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#89b4fa}.navbar.is-spaced html.theme--catppuccin-mocha .navbar-dropdown,html.theme--catppuccin-mocha .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-mocha .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-mocha .navbar-divider{display:block}html.theme--catppuccin-mocha .navbar>.container .navbar-brand,html.theme--catppuccin-mocha .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-mocha .navbar>.container .navbar-menu,html.theme--catppuccin-mocha .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-mocha .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-mocha html.has-navbar-fixed-top-desktop,html.theme--catppuccin-mocha body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-mocha html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-mocha body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-mocha html.has-spaced-navbar-fixed-top,html.theme--catppuccin-mocha body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-mocha html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-mocha body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-mocha a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar-link.is-active{color:#89b4fa}html.theme--catppuccin-mocha a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-mocha .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-mocha .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-mocha .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-mocha .pagination.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-mocha .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .pagination.is-rounded .pagination-previous,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-mocha .pagination.is-rounded .pagination-next,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-mocha .pagination.is-rounded .pagination-link,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-mocha .pagination,html.theme--catppuccin-mocha .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link{border-color:#585b70;color:#89b4fa;min-width:2.5em}html.theme--catppuccin-mocha .pagination-previous:hover,html.theme--catppuccin-mocha .pagination-next:hover,html.theme--catppuccin-mocha .pagination-link:hover{border-color:#6c7086;color:#89dceb}html.theme--catppuccin-mocha .pagination-previous:focus,html.theme--catppuccin-mocha .pagination-next:focus,html.theme--catppuccin-mocha .pagination-link:focus{border-color:#6c7086}html.theme--catppuccin-mocha .pagination-previous:active,html.theme--catppuccin-mocha .pagination-next:active,html.theme--catppuccin-mocha .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-mocha .pagination-previous[disabled],html.theme--catppuccin-mocha .pagination-previous.is-disabled,html.theme--catppuccin-mocha .pagination-next[disabled],html.theme--catppuccin-mocha .pagination-next.is-disabled,html.theme--catppuccin-mocha .pagination-link[disabled],html.theme--catppuccin-mocha .pagination-link.is-disabled{background-color:#585b70;border-color:#585b70;box-shadow:none;color:#f7f8fd;opacity:0.5}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-mocha .pagination-link.is-current{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .pagination-ellipsis{color:#6c7086;pointer-events:none}html.theme--catppuccin-mocha .pagination-list{flex-wrap:wrap}html.theme--catppuccin-mocha .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .pagination{flex-wrap:wrap}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-mocha .pagination-previous{order:2}html.theme--catppuccin-mocha .pagination-next{order:3}html.theme--catppuccin-mocha .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-mocha .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-mocha .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-mocha .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-mocha .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-mocha .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-mocha .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-mocha .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-mocha .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-mocha .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-mocha .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-mocha .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-mocha .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-mocha .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-mocha .panel.is-dark .panel-heading,html.theme--catppuccin-mocha .content kbd.panel .panel-heading{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-mocha .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#313244}html.theme--catppuccin-mocha .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-mocha .content kbd.panel .panel-block.is-active .panel-icon{color:#313244}html.theme--catppuccin-mocha .panel.is-primary .panel-heading,html.theme--catppuccin-mocha .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-mocha .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#89b4fa}html.theme--catppuccin-mocha .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-mocha .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#89b4fa}html.theme--catppuccin-mocha .panel.is-link .panel-heading{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .panel.is-link .panel-tabs a.is-active{border-bottom-color:#89b4fa}html.theme--catppuccin-mocha .panel.is-link .panel-block.is-active .panel-icon{color:#89b4fa}html.theme--catppuccin-mocha .panel.is-info .panel-heading{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-info .panel-tabs a.is-active{border-bottom-color:#94e2d5}html.theme--catppuccin-mocha .panel.is-info .panel-block.is-active .panel-icon{color:#94e2d5}html.theme--catppuccin-mocha .panel.is-success .panel-heading{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-success .panel-tabs a.is-active{border-bottom-color:#a6e3a1}html.theme--catppuccin-mocha .panel.is-success .panel-block.is-active .panel-icon{color:#a6e3a1}html.theme--catppuccin-mocha .panel.is-warning .panel-heading{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#f9e2af}html.theme--catppuccin-mocha .panel.is-warning .panel-block.is-active .panel-icon{color:#f9e2af}html.theme--catppuccin-mocha .panel.is-danger .panel-heading{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f38ba8}html.theme--catppuccin-mocha .panel.is-danger .panel-block.is-active .panel-icon{color:#f38ba8}html.theme--catppuccin-mocha .panel-tabs:not(:last-child),html.theme--catppuccin-mocha .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-mocha .panel-heading{background-color:#45475a;border-radius:8px 8px 0 0;color:#b8c5ef;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-mocha .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-mocha .panel-tabs a{border-bottom:1px solid #585b70;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-mocha .panel-tabs a.is-active{border-bottom-color:#45475a;color:#71a4f9}html.theme--catppuccin-mocha .panel-list a{color:#cdd6f4}html.theme--catppuccin-mocha .panel-list a:hover{color:#89b4fa}html.theme--catppuccin-mocha .panel-block{align-items:center;color:#b8c5ef;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-mocha .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-mocha .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-mocha .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-mocha .panel-block.is-active{border-left-color:#89b4fa;color:#71a4f9}html.theme--catppuccin-mocha .panel-block.is-active .panel-icon{color:#89b4fa}html.theme--catppuccin-mocha .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-mocha a.panel-block,html.theme--catppuccin-mocha label.panel-block{cursor:pointer}html.theme--catppuccin-mocha a.panel-block:hover,html.theme--catppuccin-mocha label.panel-block:hover{background-color:#181825}html.theme--catppuccin-mocha .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#f7f8fd;margin-right:.75em}html.theme--catppuccin-mocha .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-mocha .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-mocha .tabs a{align-items:center;border-bottom-color:#585b70;border-bottom-style:solid;border-bottom-width:1px;color:#cdd6f4;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-mocha .tabs a:hover{border-bottom-color:#b8c5ef;color:#b8c5ef}html.theme--catppuccin-mocha .tabs li{display:block}html.theme--catppuccin-mocha .tabs li.is-active a{border-bottom-color:#89b4fa;color:#89b4fa}html.theme--catppuccin-mocha .tabs ul{align-items:center;border-bottom-color:#585b70;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-mocha .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-mocha .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-mocha .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-mocha .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-mocha .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-mocha .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-mocha .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-mocha .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-mocha .tabs.is-boxed a:hover{background-color:#181825;border-bottom-color:#585b70}html.theme--catppuccin-mocha .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#585b70;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-mocha .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-mocha .tabs.is-toggle a{border-color:#585b70;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-mocha .tabs.is-toggle a:hover{background-color:#181825;border-color:#6c7086;z-index:2}html.theme--catppuccin-mocha .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-mocha .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-mocha .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-mocha .tabs.is-toggle li.is-active a{background-color:#89b4fa;border-color:#89b4fa;color:#fff;z-index:1}html.theme--catppuccin-mocha .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-mocha .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-mocha .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-mocha .tabs.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-mocha .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .column.is-narrow,html.theme--catppuccin-mocha .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full,html.theme--catppuccin-mocha .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters,html.theme--catppuccin-mocha .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds,html.theme--catppuccin-mocha .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half,html.theme--catppuccin-mocha .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third,html.theme--catppuccin-mocha .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter,html.theme--catppuccin-mocha .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth,html.theme--catppuccin-mocha .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths,html.theme--catppuccin-mocha .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths,html.theme--catppuccin-mocha .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths,html.theme--catppuccin-mocha .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters,html.theme--catppuccin-mocha .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds,html.theme--catppuccin-mocha .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half,html.theme--catppuccin-mocha .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third,html.theme--catppuccin-mocha .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter,html.theme--catppuccin-mocha .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth,html.theme--catppuccin-mocha .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths,html.theme--catppuccin-mocha .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths,html.theme--catppuccin-mocha .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths,html.theme--catppuccin-mocha .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-mocha .column.is-0,html.theme--catppuccin-mocha .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0,html.theme--catppuccin-mocha .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-mocha .column.is-1,html.theme--catppuccin-mocha .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1,html.theme--catppuccin-mocha .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2,html.theme--catppuccin-mocha .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2,html.theme--catppuccin-mocha .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3,html.theme--catppuccin-mocha .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3,html.theme--catppuccin-mocha .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-mocha .column.is-4,html.theme--catppuccin-mocha .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4,html.theme--catppuccin-mocha .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5,html.theme--catppuccin-mocha .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5,html.theme--catppuccin-mocha .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6,html.theme--catppuccin-mocha .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6,html.theme--catppuccin-mocha .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-mocha .column.is-7,html.theme--catppuccin-mocha .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7,html.theme--catppuccin-mocha .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8,html.theme--catppuccin-mocha .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8,html.theme--catppuccin-mocha .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9,html.theme--catppuccin-mocha .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9,html.theme--catppuccin-mocha .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-mocha .column.is-10,html.theme--catppuccin-mocha .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10,html.theme--catppuccin-mocha .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11,html.theme--catppuccin-mocha .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11,html.theme--catppuccin-mocha .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12,html.theme--catppuccin-mocha .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12,html.theme--catppuccin-mocha .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-mocha .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-mocha .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-mocha .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-mocha .columns.is-centered{justify-content:center}html.theme--catppuccin-mocha .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-mocha .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-mocha .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-mocha .columns.is-mobile{display:flex}html.theme--catppuccin-mocha .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-mocha .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-desktop{display:flex}}html.theme--catppuccin-mocha .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-mocha .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-mocha .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-mocha .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-mocha .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-mocha .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-mocha .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-mocha .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-mocha .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-mocha .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-mocha .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-mocha .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-mocha .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-mocha .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-mocha .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-mocha .tile.is-child{margin:0 !important}html.theme--catppuccin-mocha .tile.is-parent{padding:.75rem}html.theme--catppuccin-mocha .tile.is-vertical{flex-direction:column}html.theme--catppuccin-mocha .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .tile:not(.is-child){display:flex}html.theme--catppuccin-mocha .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .tile.is-3{flex:none;width:25%}html.theme--catppuccin-mocha .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .tile.is-6{flex:none;width:50%}html.theme--catppuccin-mocha .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .tile.is-9{flex:none;width:75%}html.theme--catppuccin-mocha .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-mocha .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-mocha .hero .navbar{background:none}html.theme--catppuccin-mocha .hero .tabs ul{border-bottom:none}html.theme--catppuccin-mocha .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-white strong{color:inherit}html.theme--catppuccin-mocha .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-mocha .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-mocha .hero.is-white .navbar-item,html.theme--catppuccin-mocha .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-mocha .hero.is-white a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-white .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-mocha .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-mocha .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-black strong{color:inherit}html.theme--catppuccin-mocha .hero.is-black .title{color:#fff}html.theme--catppuccin-mocha .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-mocha .hero.is-black .navbar-item,html.theme--catppuccin-mocha .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-black a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-black .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-mocha .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-mocha .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-light strong{color:inherit}html.theme--catppuccin-mocha .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-mocha .hero.is-light .navbar-item,html.theme--catppuccin-mocha .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-light .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-mocha .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-mocha .hero.is-dark,html.theme--catppuccin-mocha .content kbd.hero{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-dark strong,html.theme--catppuccin-mocha .content kbd.hero strong{color:inherit}html.theme--catppuccin-mocha .hero.is-dark .title,html.theme--catppuccin-mocha .content kbd.hero .title{color:#fff}html.theme--catppuccin-mocha .hero.is-dark .subtitle,html.theme--catppuccin-mocha .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-mocha .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-dark .subtitle strong,html.theme--catppuccin-mocha .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-dark .navbar-menu,html.theme--catppuccin-mocha .content kbd.hero .navbar-menu{background-color:#313244}}html.theme--catppuccin-mocha .hero.is-dark .navbar-item,html.theme--catppuccin-mocha .content kbd.hero .navbar-item,html.theme--catppuccin-mocha .hero.is-dark .navbar-link,html.theme--catppuccin-mocha .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-dark .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.hero .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.hero .navbar-link.is-active{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .hero.is-dark .tabs a,html.theme--catppuccin-mocha .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-dark .tabs a:hover,html.theme--catppuccin-mocha .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-mocha .content kbd.hero .tabs li.is-active a{color:#313244 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#313244}html.theme--catppuccin-mocha .hero.is-dark.is-bold,html.theme--catppuccin-mocha .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #181c2a 0%, #313244 71%, #3c3856 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-mocha .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #181c2a 0%, #313244 71%, #3c3856 100%)}}html.theme--catppuccin-mocha .hero.is-primary,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-primary strong,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-mocha .hero.is-primary .title,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-mocha .hero.is-primary .subtitle,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-primary .subtitle strong,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-primary .navbar-menu,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#89b4fa}}html.theme--catppuccin-mocha .hero.is-primary .navbar-item,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-mocha .hero.is-primary .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-primary .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .hero.is-primary .tabs a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-primary .tabs a:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#89b4fa !important;opacity:1}html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .hero.is-primary.is-bold,html.theme--catppuccin-mocha .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-mocha .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}}html.theme--catppuccin-mocha .hero.is-link{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-link strong{color:inherit}html.theme--catppuccin-mocha .hero.is-link .title{color:#fff}html.theme--catppuccin-mocha .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-link .navbar-menu{background-color:#89b4fa}}html.theme--catppuccin-mocha .hero.is-link .navbar-item,html.theme--catppuccin-mocha .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-link a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-link .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-link .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-link .tabs li.is-active a{color:#89b4fa !important;opacity:1}html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .hero.is-link.is-bold{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}}html.theme--catppuccin-mocha .hero.is-info{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-info strong{color:inherit}html.theme--catppuccin-mocha .hero.is-info .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-info .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-info .navbar-menu{background-color:#94e2d5}}html.theme--catppuccin-mocha .hero.is-info .navbar-item,html.theme--catppuccin-mocha .hero.is-info .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-info .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-info .navbar-link.is-active{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-info .tabs li.is-active a{color:#94e2d5 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#94e2d5}html.theme--catppuccin-mocha .hero.is-info.is-bold{background-image:linear-gradient(141deg, #63e0b6 0%, #94e2d5 71%, #a5eaea 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #63e0b6 0%, #94e2d5 71%, #a5eaea 100%)}}html.theme--catppuccin-mocha .hero.is-success{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-success strong{color:inherit}html.theme--catppuccin-mocha .hero.is-success .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-success .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-success .navbar-menu{background-color:#a6e3a1}}html.theme--catppuccin-mocha .hero.is-success .navbar-item,html.theme--catppuccin-mocha .hero.is-success .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-success .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-success .navbar-link.is-active{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-success .tabs li.is-active a{color:#a6e3a1 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#a6e3a1}html.theme--catppuccin-mocha .hero.is-success.is-bold{background-image:linear-gradient(141deg, #8ce071 0%, #a6e3a1 71%, #b2ebb7 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #8ce071 0%, #a6e3a1 71%, #b2ebb7 100%)}}html.theme--catppuccin-mocha .hero.is-warning{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-warning strong{color:inherit}html.theme--catppuccin-mocha .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-warning .navbar-menu{background-color:#f9e2af}}html.theme--catppuccin-mocha .hero.is-warning .navbar-item,html.theme--catppuccin-mocha .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-warning .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-warning .navbar-link.is-active{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-warning .tabs li.is-active a{color:#f9e2af !important;opacity:1}html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f9e2af}html.theme--catppuccin-mocha .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #fcbd79 0%, #f9e2af 71%, #fcf4c5 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #fcbd79 0%, #f9e2af 71%, #fcf4c5 100%)}}html.theme--catppuccin-mocha .hero.is-danger{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-danger strong{color:inherit}html.theme--catppuccin-mocha .hero.is-danger .title{color:#fff}html.theme--catppuccin-mocha .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-danger .navbar-menu{background-color:#f38ba8}}html.theme--catppuccin-mocha .hero.is-danger .navbar-item,html.theme--catppuccin-mocha .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-danger .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-danger .navbar-link.is-active{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-danger .tabs li.is-active a{color:#f38ba8 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f38ba8}html.theme--catppuccin-mocha .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #f7549d 0%, #f38ba8 71%, #f8a0a9 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #f7549d 0%, #f38ba8 71%, #f8a0a9 100%)}}html.theme--catppuccin-mocha .hero.is-small .hero-body,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-mocha .hero.is-halfheight .hero-body,html.theme--catppuccin-mocha .hero.is-fullheight .hero-body,html.theme--catppuccin-mocha .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-mocha .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-mocha .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-mocha .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-mocha .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-mocha .hero-video{overflow:hidden}html.theme--catppuccin-mocha .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-mocha .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero-video{display:none}}html.theme--catppuccin-mocha .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero-buttons .button{display:flex}html.theme--catppuccin-mocha .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-mocha .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-mocha .hero-head,html.theme--catppuccin-mocha .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero-body{padding:3rem 3rem}}html.theme--catppuccin-mocha .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .section{padding:3rem 3rem}html.theme--catppuccin-mocha .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-mocha .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-mocha .footer{background-color:#181825;padding:3rem 1.5rem 6rem}html.theme--catppuccin-mocha h1 .docs-heading-anchor,html.theme--catppuccin-mocha h1 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h1 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h2 .docs-heading-anchor,html.theme--catppuccin-mocha h2 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h2 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h3 .docs-heading-anchor,html.theme--catppuccin-mocha h3 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h3 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h4 .docs-heading-anchor,html.theme--catppuccin-mocha h4 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h4 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h5 .docs-heading-anchor,html.theme--catppuccin-mocha h5 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h5 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h6 .docs-heading-anchor,html.theme--catppuccin-mocha h6 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h6 .docs-heading-anchor:visited{color:#cdd6f4}html.theme--catppuccin-mocha h1 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h2 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h3 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h4 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h5 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-mocha h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-mocha h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-mocha .docs-light-only{display:none !important}html.theme--catppuccin-mocha pre{position:relative;overflow:hidden}html.theme--catppuccin-mocha pre code,html.theme--catppuccin-mocha pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-mocha pre code:first-of-type,html.theme--catppuccin-mocha pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-mocha pre code:last-of-type,html.theme--catppuccin-mocha pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-mocha pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#cdd6f4;cursor:pointer;text-align:center}html.theme--catppuccin-mocha pre .copy-button:focus,html.theme--catppuccin-mocha pre .copy-button:hover{opacity:1;background:rgba(205,214,244,0.1);color:#89b4fa}html.theme--catppuccin-mocha pre .copy-button.success{color:#a6e3a1;opacity:1}html.theme--catppuccin-mocha pre .copy-button.error{color:#f38ba8;opacity:1}html.theme--catppuccin-mocha pre:hover .copy-button{opacity:1}html.theme--catppuccin-mocha .admonition{background-color:#181825;border-style:solid;border-width:2px;border-color:#bac2de;border-radius:4px;font-size:1rem}html.theme--catppuccin-mocha .admonition strong{color:currentColor}html.theme--catppuccin-mocha .admonition.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-mocha .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .admonition.is-default{background-color:#181825;border-color:#bac2de}html.theme--catppuccin-mocha .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#bac2de}html.theme--catppuccin-mocha .admonition.is-default>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-info{background-color:#181825;border-color:#94e2d5}html.theme--catppuccin-mocha .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#94e2d5}html.theme--catppuccin-mocha .admonition.is-info>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-success{background-color:#181825;border-color:#a6e3a1}html.theme--catppuccin-mocha .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#a6e3a1}html.theme--catppuccin-mocha .admonition.is-success>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-warning{background-color:#181825;border-color:#f9e2af}html.theme--catppuccin-mocha .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#f9e2af}html.theme--catppuccin-mocha .admonition.is-warning>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-danger{background-color:#181825;border-color:#f38ba8}html.theme--catppuccin-mocha .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#f38ba8}html.theme--catppuccin-mocha .admonition.is-danger>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-compat{background-color:#181825;border-color:#89dceb}html.theme--catppuccin-mocha .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#89dceb}html.theme--catppuccin-mocha .admonition.is-compat>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition-header{color:#bac2de;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-mocha .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-mocha details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-mocha details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-mocha details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-mocha .admonition-body{color:#cdd6f4;padding:0.5rem .75rem}html.theme--catppuccin-mocha .admonition-body pre{background-color:#181825}html.theme--catppuccin-mocha .admonition-body code{background-color:#181825}html.theme--catppuccin-mocha .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #585b70;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-mocha .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#181825;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #585b70;overflow:auto}html.theme--catppuccin-mocha .docstring>header code{background-color:transparent}html.theme--catppuccin-mocha .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-mocha .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-mocha .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-mocha .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #585b70}html.theme--catppuccin-mocha .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-mocha .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-mocha .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-mocha .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-mocha .documenter-example-output{background-color:#1e1e2e}html.theme--catppuccin-mocha .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#181825;color:#cdd6f4;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-mocha .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-mocha .outdated-warning-overlay a{color:#89b4fa}html.theme--catppuccin-mocha .outdated-warning-overlay a:hover{color:#89dceb}html.theme--catppuccin-mocha .content pre{border:2px solid #585b70;border-radius:4px}html.theme--catppuccin-mocha .content code{font-weight:inherit}html.theme--catppuccin-mocha .content a code{color:#89b4fa}html.theme--catppuccin-mocha .content a:hover code{color:#89dceb}html.theme--catppuccin-mocha .content h1 code,html.theme--catppuccin-mocha .content h2 code,html.theme--catppuccin-mocha .content h3 code,html.theme--catppuccin-mocha .content h4 code,html.theme--catppuccin-mocha .content h5 code,html.theme--catppuccin-mocha .content h6 code{color:#cdd6f4}html.theme--catppuccin-mocha .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-mocha .content blockquote>ul:first-child,html.theme--catppuccin-mocha .content blockquote>ol:first-child,html.theme--catppuccin-mocha .content .admonition-body>ul:first-child,html.theme--catppuccin-mocha .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-mocha pre,html.theme--catppuccin-mocha code{font-variant-ligatures:no-contextual}html.theme--catppuccin-mocha .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-mocha .breadcrumb a.is-disabled,html.theme--catppuccin-mocha .breadcrumb a.is-disabled:hover{color:#b8c5ef}html.theme--catppuccin-mocha .hljs{background:initial !important}html.theme--catppuccin-mocha .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-mocha .katex-display,html.theme--catppuccin-mocha mjx-container,html.theme--catppuccin-mocha .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-mocha html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-mocha li.no-marker{list-style:none}html.theme--catppuccin-mocha #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-mocha #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main{width:100%}html.theme--catppuccin-mocha #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-mocha #documenter .docs-main>header,html.theme--catppuccin-mocha #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar{background-color:#1e1e2e;border-bottom:1px solid #585b70;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-mocha #documenter .docs-main section.footnotes{border-top:1px solid #585b70}html.theme--catppuccin-mocha #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-mocha #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-mocha #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-mocha .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #585b70;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-mocha #documenter .docs-sidebar{display:flex;flex-direction:column;color:#cdd6f4;background-color:#181825;border-right:1px solid #585b70;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-mocha #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name a:hover{color:#cdd6f4}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #585b70;display:none;padding:0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #585b70;padding-bottom:1.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #585b70}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#cdd6f4;background:#181825}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#cdd6f4;background-color:#202031}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #585b70;border-bottom:1px solid #585b70;background-color:#11111b}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#11111b;color:#cdd6f4}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#202031;color:#cdd6f4}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #585b70}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-mocha #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#28283e}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#383856}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-mocha #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-mocha #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#28283e}html.theme--catppuccin-mocha #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#383856}}html.theme--catppuccin-mocha kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-mocha .search-min-width-50{min-width:50%}html.theme--catppuccin-mocha .search-min-height-100{min-height:100%}html.theme--catppuccin-mocha .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-mocha .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-mocha .search-result-link:hover,html.theme--catppuccin-mocha .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-mocha .search-result-link .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-mocha .property-search-result-badge,html.theme--catppuccin-mocha .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-mocha .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:hover .search-filter,html.theme--catppuccin-mocha .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-mocha .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-mocha .search-filter:hover,html.theme--catppuccin-mocha .search-filter:focus{color:#333}html.theme--catppuccin-mocha .search-filter-selected{color:#313244;background-color:#b4befe}html.theme--catppuccin-mocha .search-filter-selected:hover,html.theme--catppuccin-mocha .search-filter-selected:focus{color:#313244}html.theme--catppuccin-mocha .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-mocha .search-divider{border-bottom:1px solid #585b70}html.theme--catppuccin-mocha .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-mocha .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-mocha #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-mocha #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-mocha #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-mocha #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-mocha #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-mocha #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-mocha .w-100{width:100%}html.theme--catppuccin-mocha .gap-2{gap:0.5rem}html.theme--catppuccin-mocha .gap-4{gap:1rem}html.theme--catppuccin-mocha .gap-8{gap:2rem}html.theme--catppuccin-mocha{background-color:#1e1e2e;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-mocha a{transition:all 200ms ease}html.theme--catppuccin-mocha .label{color:#cdd6f4}html.theme--catppuccin-mocha .button,html.theme--catppuccin-mocha .control.has-icons-left .icon,html.theme--catppuccin-mocha .control.has-icons-right .icon,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .select,html.theme--catppuccin-mocha .select select,html.theme--catppuccin-mocha .textarea{height:2.5em;color:#cdd6f4}html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#cdd6f4}html.theme--catppuccin-mocha .select:after,html.theme--catppuccin-mocha .select select{border-width:1px}html.theme--catppuccin-mocha .menu-list a{transition:all 300ms ease}html.theme--catppuccin-mocha .modal-card-foot,html.theme--catppuccin-mocha .modal-card-head{border-color:#585b70}html.theme--catppuccin-mocha .navbar{border-radius:.4em}html.theme--catppuccin-mocha .navbar.is-transparent{background:none}html.theme--catppuccin-mocha .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#89b4fa}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .navbar .navbar-menu{background-color:#89b4fa;border-radius:0 0 .4em .4em}}html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body){color:#313244}html.theme--catppuccin-mocha .tag.is-link:not(body),html.theme--catppuccin-mocha .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-mocha .content kbd.is-link:not(body){color:#313244}html.theme--catppuccin-mocha .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-mocha .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-mocha .ansi span.sgr3{font-style:italic}html.theme--catppuccin-mocha .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-mocha .ansi span.sgr7{color:#1e1e2e;background-color:#cdd6f4}html.theme--catppuccin-mocha .ansi span.sgr8{color:transparent}html.theme--catppuccin-mocha .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-mocha .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-mocha .ansi span.sgr30{color:#45475a}html.theme--catppuccin-mocha .ansi span.sgr31{color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr32{color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr33{color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr34{color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr35{color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr36{color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr37{color:#bac2de}html.theme--catppuccin-mocha .ansi span.sgr40{background-color:#45475a}html.theme--catppuccin-mocha .ansi span.sgr41{background-color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr42{background-color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr43{background-color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr44{background-color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr45{background-color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr46{background-color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr47{background-color:#bac2de}html.theme--catppuccin-mocha .ansi span.sgr90{color:#585b70}html.theme--catppuccin-mocha .ansi span.sgr91{color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr92{color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr93{color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr94{color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr95{color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr96{color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr97{color:#a6adc8}html.theme--catppuccin-mocha .ansi span.sgr100{background-color:#585b70}html.theme--catppuccin-mocha .ansi span.sgr101{background-color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr102{background-color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr103{background-color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr104{background-color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr105{background-color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr106{background-color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr107{background-color:#a6adc8}html.theme--catppuccin-mocha code.language-julia-repl>span.hljs-meta{color:#a6e3a1;font-weight:bolder}html.theme--catppuccin-mocha code .hljs{color:#cdd6f4;background:#1e1e2e}html.theme--catppuccin-mocha code .hljs-keyword{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-built_in{color:#f38ba8}html.theme--catppuccin-mocha code .hljs-type{color:#f9e2af}html.theme--catppuccin-mocha code .hljs-literal{color:#fab387}html.theme--catppuccin-mocha code .hljs-number{color:#fab387}html.theme--catppuccin-mocha code .hljs-operator{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-punctuation{color:#bac2de}html.theme--catppuccin-mocha code .hljs-property{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-regexp{color:#f5c2e7}html.theme--catppuccin-mocha code .hljs-string{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-char.escape_{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-subst{color:#a6adc8}html.theme--catppuccin-mocha code .hljs-symbol{color:#f2cdcd}html.theme--catppuccin-mocha code .hljs-variable{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-variable.language_{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-variable.constant_{color:#fab387}html.theme--catppuccin-mocha code .hljs-title{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-title.class_{color:#f9e2af}html.theme--catppuccin-mocha code .hljs-title.function_{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-params{color:#cdd6f4}html.theme--catppuccin-mocha code .hljs-comment{color:#585b70}html.theme--catppuccin-mocha code .hljs-doctag{color:#f38ba8}html.theme--catppuccin-mocha code .hljs-meta{color:#fab387}html.theme--catppuccin-mocha code .hljs-section{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-tag{color:#a6adc8}html.theme--catppuccin-mocha code .hljs-name{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-attr{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-attribute{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-bullet{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-code{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-emphasis{color:#f38ba8;font-style:italic}html.theme--catppuccin-mocha code .hljs-strong{color:#f38ba8;font-weight:bold}html.theme--catppuccin-mocha code .hljs-formula{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-link{color:#74c7ec;font-style:italic}html.theme--catppuccin-mocha code .hljs-quote{color:#a6e3a1;font-style:italic}html.theme--catppuccin-mocha code .hljs-selector-tag{color:#f9e2af}html.theme--catppuccin-mocha code .hljs-selector-id{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-selector-class{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-selector-attr{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-selector-pseudo{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-template-tag{color:#f2cdcd}html.theme--catppuccin-mocha code .hljs-template-variable{color:#f2cdcd}html.theme--catppuccin-mocha code .hljs-addition{color:#a6e3a1;background:rgba(166,227,161,0.15)}html.theme--catppuccin-mocha code .hljs-deletion{color:#f38ba8;background:rgba(243,139,168,0.15)}html.theme--catppuccin-mocha .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-mocha .search-result-link:hover,html.theme--catppuccin-mocha .search-result-link:focus{background-color:#313244}html.theme--catppuccin-mocha .search-result-link .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-mocha .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:hover .search-filter,html.theme--catppuccin-mocha .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:focus .search-filter{color:#313244 !important;background-color:#b4befe !important}html.theme--catppuccin-mocha .search-result-title{color:#cdd6f4}html.theme--catppuccin-mocha .search-result-highlight{background-color:#f38ba8;color:#181825}html.theme--catppuccin-mocha .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-mocha .w-100{width:100%}html.theme--catppuccin-mocha .gap-2{gap:0.5rem}html.theme--catppuccin-mocha .gap-4{gap:1rem} diff --git a/previews/PR873/assets/themes/documenter-dark.css b/previews/PR873/assets/themes/documenter-dark.css new file mode 100644 index 000000000..2892b385e --- /dev/null +++ b/previews/PR873/assets/themes/documenter-dark.css @@ -0,0 +1,7 @@ +html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .file-cta,html.theme--documenter-dark .file-name,html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--documenter-dark .pagination-previous:focus,html.theme--documenter-dark .pagination-next:focus,html.theme--documenter-dark .pagination-link:focus,html.theme--documenter-dark .pagination-ellipsis:focus,html.theme--documenter-dark .file-cta:focus,html.theme--documenter-dark .file-name:focus,html.theme--documenter-dark .select select:focus,html.theme--documenter-dark .textarea:focus,html.theme--documenter-dark .input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:focus,html.theme--documenter-dark .button:focus,html.theme--documenter-dark .is-focused.pagination-previous,html.theme--documenter-dark .is-focused.pagination-next,html.theme--documenter-dark .is-focused.pagination-link,html.theme--documenter-dark .is-focused.pagination-ellipsis,html.theme--documenter-dark .is-focused.file-cta,html.theme--documenter-dark .is-focused.file-name,html.theme--documenter-dark .select select.is-focused,html.theme--documenter-dark .is-focused.textarea,html.theme--documenter-dark .is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-focused.button,html.theme--documenter-dark .pagination-previous:active,html.theme--documenter-dark .pagination-next:active,html.theme--documenter-dark .pagination-link:active,html.theme--documenter-dark .pagination-ellipsis:active,html.theme--documenter-dark .file-cta:active,html.theme--documenter-dark .file-name:active,html.theme--documenter-dark .select select:active,html.theme--documenter-dark .textarea:active,html.theme--documenter-dark .input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:active,html.theme--documenter-dark .button:active,html.theme--documenter-dark .is-active.pagination-previous,html.theme--documenter-dark .is-active.pagination-next,html.theme--documenter-dark .is-active.pagination-link,html.theme--documenter-dark .is-active.pagination-ellipsis,html.theme--documenter-dark .is-active.file-cta,html.theme--documenter-dark .is-active.file-name,html.theme--documenter-dark .select select.is-active,html.theme--documenter-dark .is-active.textarea,html.theme--documenter-dark .is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .is-active.button{outline:none}html.theme--documenter-dark .pagination-previous[disabled],html.theme--documenter-dark .pagination-next[disabled],html.theme--documenter-dark .pagination-link[disabled],html.theme--documenter-dark .pagination-ellipsis[disabled],html.theme--documenter-dark .file-cta[disabled],html.theme--documenter-dark .file-name[disabled],html.theme--documenter-dark .select select[disabled],html.theme--documenter-dark .textarea[disabled],html.theme--documenter-dark .input[disabled],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--documenter-dark .button[disabled],fieldset[disabled] html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--documenter-dark .pagination-next,html.theme--documenter-dark fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--documenter-dark .pagination-link,html.theme--documenter-dark fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--documenter-dark .file-cta,html.theme--documenter-dark fieldset[disabled] .file-cta,fieldset[disabled] html.theme--documenter-dark .file-name,html.theme--documenter-dark fieldset[disabled] .file-name,fieldset[disabled] html.theme--documenter-dark .select select,fieldset[disabled] html.theme--documenter-dark .textarea,fieldset[disabled] html.theme--documenter-dark .input,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark fieldset[disabled] .select select,html.theme--documenter-dark .select fieldset[disabled] select,html.theme--documenter-dark fieldset[disabled] .textarea,html.theme--documenter-dark fieldset[disabled] .input,html.theme--documenter-dark fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--documenter-dark .button,html.theme--documenter-dark fieldset[disabled] .button{cursor:not-allowed}html.theme--documenter-dark .tabs,html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .breadcrumb,html.theme--documenter-dark .file,html.theme--documenter-dark .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after,html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--documenter-dark .admonition:not(:last-child),html.theme--documenter-dark .tabs:not(:last-child),html.theme--documenter-dark .pagination:not(:last-child),html.theme--documenter-dark .message:not(:last-child),html.theme--documenter-dark .level:not(:last-child),html.theme--documenter-dark .breadcrumb:not(:last-child),html.theme--documenter-dark .block:not(:last-child),html.theme--documenter-dark .title:not(:last-child),html.theme--documenter-dark .subtitle:not(:last-child),html.theme--documenter-dark .table-container:not(:last-child),html.theme--documenter-dark .table:not(:last-child),html.theme--documenter-dark .progress:not(:last-child),html.theme--documenter-dark .notification:not(:last-child),html.theme--documenter-dark .content:not(:last-child),html.theme--documenter-dark .box:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .modal-close,html.theme--documenter-dark .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--documenter-dark .modal-close::before,html.theme--documenter-dark .delete::before,html.theme--documenter-dark .modal-close::after,html.theme--documenter-dark .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--documenter-dark .modal-close::before,html.theme--documenter-dark .delete::before{height:2px;width:50%}html.theme--documenter-dark .modal-close::after,html.theme--documenter-dark .delete::after{height:50%;width:2px}html.theme--documenter-dark .modal-close:hover,html.theme--documenter-dark .delete:hover,html.theme--documenter-dark .modal-close:focus,html.theme--documenter-dark .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--documenter-dark .modal-close:active,html.theme--documenter-dark .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--documenter-dark .is-small.modal-close,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--documenter-dark .is-small.delete,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--documenter-dark .is-medium.modal-close,html.theme--documenter-dark .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--documenter-dark .is-large.modal-close,html.theme--documenter-dark .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--documenter-dark .control.is-loading::after,html.theme--documenter-dark .select.is-loading::after,html.theme--documenter-dark .loader,html.theme--documenter-dark .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdee0;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--documenter-dark .hero-video,html.theme--documenter-dark .modal-background,html.theme--documenter-dark .modal,html.theme--documenter-dark .image.is-square img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--documenter-dark .image.is-square .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--documenter-dark .image.is-1by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--documenter-dark .image.is-1by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--documenter-dark .image.is-5by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--documenter-dark .image.is-5by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--documenter-dark .image.is-4by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--documenter-dark .image.is-4by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--documenter-dark .image.is-3by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--documenter-dark .image.is-3by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--documenter-dark .image.is-5by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--documenter-dark .image.is-5by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--documenter-dark .image.is-16by9 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--documenter-dark .image.is-16by9 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--documenter-dark .image.is-2by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--documenter-dark .image.is-2by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--documenter-dark .image.is-3by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--documenter-dark .image.is-3by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--documenter-dark .image.is-4by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--documenter-dark .image.is-4by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--documenter-dark .image.is-3by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--documenter-dark .image.is-3by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--documenter-dark .image.is-2by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--documenter-dark .image.is-2by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--documenter-dark .image.is-3by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--documenter-dark .image.is-3by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--documenter-dark .image.is-9by16 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--documenter-dark .image.is-9by16 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--documenter-dark .image.is-1by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--documenter-dark .image.is-1by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--documenter-dark .image.is-1by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--documenter-dark .image.is-1by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--documenter-dark .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#ecf0f1 !important}a.has-text-light:hover,a.has-text-light:focus{color:#cfd9db !important}.has-background-light{background-color:#ecf0f1 !important}.has-text-dark{color:#282f2f !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#111414 !important}.has-background-dark{background-color:#282f2f !important}.has-text-primary{color:#375a7f !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#28415b !important}.has-background-primary{background-color:#375a7f !important}.has-text-primary-light{color:#f1f5f9 !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#cddbe9 !important}.has-background-primary-light{background-color:#f1f5f9 !important}.has-text-primary-dark{color:#4d7eb2 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#7198c1 !important}.has-background-primary-dark{background-color:#4d7eb2 !important}.has-text-link{color:#1abc9c !important}a.has-text-link:hover,a.has-text-link:focus{color:#148f77 !important}.has-background-link{background-color:#1abc9c !important}.has-text-link-light{color:#edfdf9 !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c0f6ec !important}.has-background-link-light{background-color:#edfdf9 !important}.has-text-link-dark{color:#15987e !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#1bc5a4 !important}.has-background-link-dark{background-color:#15987e !important}.has-text-info{color:#3c5dcd !important}a.has-text-info:hover,a.has-text-info:focus{color:#2c48aa !important}.has-background-info{background-color:#3c5dcd !important}.has-text-info-light{color:#eff2fb !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6d0f0 !important}.has-background-info-light{background-color:#eff2fb !important}.has-text-info-dark{color:#3253c3 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#5571d3 !important}.has-background-info-dark{background-color:#3253c3 !important}.has-text-success{color:#259a12 !important}a.has-text-success:hover,a.has-text-success:focus{color:#1a6c0d !important}.has-background-success{background-color:#259a12 !important}.has-text-success-light{color:#effded !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c7f8bf !important}.has-background-success-light{background-color:#effded !important}.has-text-success-dark{color:#2ec016 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#3fe524 !important}.has-background-success-dark{background-color:#2ec016 !important}.has-text-warning{color:#f4c72f !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#e4b30c !important}.has-background-warning{background-color:#f4c72f !important}.has-text-warning-light{color:#fefaec !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fbedbb !important}.has-background-warning-light{background-color:#fefaec !important}.has-text-warning-dark{color:#8c6e07 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#bd940a !important}.has-background-warning-dark{background-color:#8c6e07 !important}.has-text-danger{color:#cb3c33 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a23029 !important}.has-background-danger{background-color:#cb3c33 !important}.has-text-danger-light{color:#fbefef !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f1c8c6 !important}.has-background-danger-light{background-color:#fbefef !important}.has-text-danger-dark{color:#c03930 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#d35850 !important}.has-background-danger-dark{background-color:#c03930 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#282f2f !important}.has-background-grey-darker{background-color:#282f2f !important}.has-text-grey-dark{color:#343c3d !important}.has-background-grey-dark{background-color:#343c3d !important}.has-text-grey{color:#5e6d6f !important}.has-background-grey{background-color:#5e6d6f !important}.has-text-grey-light{color:#8c9b9d !important}.has-background-grey-light{background-color:#8c9b9d !important}.has-text-grey-lighter{color:#dbdee0 !important}.has-background-grey-lighter{background-color:#dbdee0 !important}.has-text-white-ter{color:#ecf0f1 !important}.has-background-white-ter{background-color:#ecf0f1 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--documenter-dark .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--documenter-dark{/*! + Theme: a11y-dark + Author: @ericwbailey + Maintainer: @ericwbailey + + Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css +*/}html.theme--documenter-dark html{background-color:#1f2424;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--documenter-dark article,html.theme--documenter-dark aside,html.theme--documenter-dark figure,html.theme--documenter-dark footer,html.theme--documenter-dark header,html.theme--documenter-dark hgroup,html.theme--documenter-dark section{display:block}html.theme--documenter-dark body,html.theme--documenter-dark button,html.theme--documenter-dark input,html.theme--documenter-dark optgroup,html.theme--documenter-dark select,html.theme--documenter-dark textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--documenter-dark code,html.theme--documenter-dark pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--documenter-dark body{color:#fff;font-size:1em;font-weight:400;line-height:1.5}html.theme--documenter-dark a{color:#1abc9c;cursor:pointer;text-decoration:none}html.theme--documenter-dark a strong{color:currentColor}html.theme--documenter-dark a:hover{color:#1dd2af}html.theme--documenter-dark code{background-color:rgba(255,255,255,0.05);color:#ececec;font-size:.875em;font-weight:normal;padding:.1em}html.theme--documenter-dark hr{background-color:#282f2f;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--documenter-dark img{height:auto;max-width:100%}html.theme--documenter-dark input[type="checkbox"],html.theme--documenter-dark input[type="radio"]{vertical-align:baseline}html.theme--documenter-dark small{font-size:.875em}html.theme--documenter-dark span{font-style:inherit;font-weight:inherit}html.theme--documenter-dark strong{color:#f2f2f2;font-weight:700}html.theme--documenter-dark fieldset{border:none}html.theme--documenter-dark pre{-webkit-overflow-scrolling:touch;background-color:#282f2f;color:#fff;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--documenter-dark pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--documenter-dark table td,html.theme--documenter-dark table th{vertical-align:top}html.theme--documenter-dark table td:not([align]),html.theme--documenter-dark table th:not([align]){text-align:inherit}html.theme--documenter-dark table th{color:#f2f2f2}html.theme--documenter-dark .box{background-color:#343c3d;border-radius:8px;box-shadow:none;color:#fff;display:block;padding:1.25rem}html.theme--documenter-dark a.box:hover,html.theme--documenter-dark a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #1abc9c}html.theme--documenter-dark a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #1abc9c}html.theme--documenter-dark .button{background-color:#282f2f;border-color:#4c5759;border-width:1px;color:#375a7f;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--documenter-dark .button strong{color:inherit}html.theme--documenter-dark .button .icon,html.theme--documenter-dark .button .icon.is-small,html.theme--documenter-dark .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--documenter-dark #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--documenter-dark .button .icon.is-medium,html.theme--documenter-dark .button .icon.is-large{height:1.5em;width:1.5em}html.theme--documenter-dark .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--documenter-dark .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--documenter-dark .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--documenter-dark .button:hover,html.theme--documenter-dark .button.is-hovered{border-color:#8c9b9d;color:#f2f2f2}html.theme--documenter-dark .button:focus,html.theme--documenter-dark .button.is-focused{border-color:#8c9b9d;color:#17a689}html.theme--documenter-dark .button:focus:not(:active),html.theme--documenter-dark .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .button:active,html.theme--documenter-dark .button.is-active{border-color:#343c3d;color:#f2f2f2}html.theme--documenter-dark .button.is-text{background-color:transparent;border-color:transparent;color:#fff;text-decoration:underline}html.theme--documenter-dark .button.is-text:hover,html.theme--documenter-dark .button.is-text.is-hovered,html.theme--documenter-dark .button.is-text:focus,html.theme--documenter-dark .button.is-text.is-focused{background-color:#282f2f;color:#f2f2f2}html.theme--documenter-dark .button.is-text:active,html.theme--documenter-dark .button.is-text.is-active{background-color:#1d2122;color:#f2f2f2}html.theme--documenter-dark .button.is-text[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#1abc9c;text-decoration:none}html.theme--documenter-dark .button.is-ghost:hover,html.theme--documenter-dark .button.is-ghost.is-hovered{color:#1abc9c;text-decoration:underline}html.theme--documenter-dark .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:hover,html.theme--documenter-dark .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:focus,html.theme--documenter-dark .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:focus:not(:active),html.theme--documenter-dark .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .button.is-white:active,html.theme--documenter-dark .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--documenter-dark .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted:hover,html.theme--documenter-dark .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--documenter-dark .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-white.is-outlined:hover,html.theme--documenter-dark .button.is-white.is-outlined.is-hovered,html.theme--documenter-dark .button.is-white.is-outlined:focus,html.theme--documenter-dark .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-white.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:hover,html.theme--documenter-dark .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:focus,html.theme--documenter-dark .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:focus:not(:active),html.theme--documenter-dark .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .button.is-black:active,html.theme--documenter-dark .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--documenter-dark .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted:hover,html.theme--documenter-dark .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-outlined:hover,html.theme--documenter-dark .button.is-black.is-outlined.is-hovered,html.theme--documenter-dark .button.is-black.is-outlined:focus,html.theme--documenter-dark .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-black.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-light{background-color:#ecf0f1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light:hover,html.theme--documenter-dark .button.is-light.is-hovered{background-color:#e5eaec;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light:focus,html.theme--documenter-dark .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light:focus:not(:active),html.theme--documenter-dark .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .button.is-light:active,html.theme--documenter-dark .button.is-light.is-active{background-color:#dde4e6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light{background-color:#ecf0f1;border-color:#ecf0f1;box-shadow:none}html.theme--documenter-dark .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted:hover,html.theme--documenter-dark .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-light.is-outlined{background-color:transparent;border-color:#ecf0f1;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-outlined:hover,html.theme--documenter-dark .button.is-light.is-outlined.is-hovered,html.theme--documenter-dark .button.is-light.is-outlined:focus,html.theme--documenter-dark .button.is-light.is-outlined.is-focused{background-color:#ecf0f1;border-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-light.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-outlined{background-color:transparent;border-color:#ecf0f1;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-dark,html.theme--documenter-dark .content kbd.button{background-color:#282f2f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark:hover,html.theme--documenter-dark .content kbd.button:hover,html.theme--documenter-dark .button.is-dark.is-hovered,html.theme--documenter-dark .content kbd.button.is-hovered{background-color:#232829;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark:focus,html.theme--documenter-dark .content kbd.button:focus,html.theme--documenter-dark .button.is-dark.is-focused,html.theme--documenter-dark .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark:focus:not(:active),html.theme--documenter-dark .content kbd.button:focus:not(:active),html.theme--documenter-dark .button.is-dark.is-focused:not(:active),html.theme--documenter-dark .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .button.is-dark:active,html.theme--documenter-dark .content kbd.button:active,html.theme--documenter-dark .button.is-dark.is-active,html.theme--documenter-dark .content kbd.button.is-active{background-color:#1d2122;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark[disabled],html.theme--documenter-dark .content kbd.button[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark,fieldset[disabled] html.theme--documenter-dark .content kbd.button{background-color:#282f2f;border-color:#282f2f;box-shadow:none}html.theme--documenter-dark .button.is-dark.is-inverted,html.theme--documenter-dark .content kbd.button.is-inverted{background-color:#fff;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted:hover,html.theme--documenter-dark .content kbd.button.is-inverted:hover,html.theme--documenter-dark .button.is-dark.is-inverted.is-hovered,html.theme--documenter-dark .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-dark.is-inverted[disabled],html.theme--documenter-dark .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-loading::after,html.theme--documenter-dark .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-dark.is-outlined,html.theme--documenter-dark .content kbd.button.is-outlined{background-color:transparent;border-color:#282f2f;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-outlined:hover,html.theme--documenter-dark .content kbd.button.is-outlined:hover,html.theme--documenter-dark .button.is-dark.is-outlined.is-hovered,html.theme--documenter-dark .content kbd.button.is-outlined.is-hovered,html.theme--documenter-dark .button.is-dark.is-outlined:focus,html.theme--documenter-dark .content kbd.button.is-outlined:focus,html.theme--documenter-dark .button.is-dark.is-outlined.is-focused,html.theme--documenter-dark .content kbd.button.is-outlined.is-focused{background-color:#282f2f;border-color:#282f2f;color:#fff}html.theme--documenter-dark .button.is-dark.is-outlined.is-loading::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:hover::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:focus::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-dark.is-outlined[disabled],html.theme--documenter-dark .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-outlined,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-outlined{background-color:transparent;border-color:#282f2f;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:hover,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:focus,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined[disabled],html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-primary,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink{background-color:#375a7f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:hover,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#335476;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:focus,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:focus:not(:active),html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--documenter-dark .button.is-primary.is-focused:not(:active),html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .button.is-primary:active,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary.is-active,html.theme--documenter-dark .docstring>section>a.button.is-active.docs-sourcelink{background-color:#2f4d6d;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary[disabled],html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink{background-color:#375a7f;border-color:#375a7f;box-shadow:none}html.theme--documenter-dark .button.is-primary.is-inverted,html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted:hover,html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-inverted.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--documenter-dark .button.is-primary.is-inverted[disabled],html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-loading::after,html.theme--documenter-dark .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-primary.is-outlined,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#375a7f;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-outlined:hover,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-outlined.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-outlined:focus,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-outlined.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#375a7f;border-color:#375a7f;color:#fff}html.theme--documenter-dark .button.is-primary.is-outlined.is-loading::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #375a7f #375a7f !important}html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:hover::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:focus::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-primary.is-outlined[disabled],html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-outlined,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#375a7f;box-shadow:none;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:hover,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:focus,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #375a7f #375a7f !important}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined[disabled],html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-primary.is-light,html.theme--documenter-dark .docstring>section>a.button.is-light.docs-sourcelink{background-color:#f1f5f9;color:#4d7eb2}html.theme--documenter-dark .button.is-primary.is-light:hover,html.theme--documenter-dark .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-light.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e8eef5;border-color:transparent;color:#4d7eb2}html.theme--documenter-dark .button.is-primary.is-light:active,html.theme--documenter-dark .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary.is-light.is-active,html.theme--documenter-dark .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#dfe8f1;border-color:transparent;color:#4d7eb2}html.theme--documenter-dark .button.is-link{background-color:#1abc9c;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:hover,html.theme--documenter-dark .button.is-link.is-hovered{background-color:#18b193;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:focus,html.theme--documenter-dark .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:focus:not(:active),html.theme--documenter-dark .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .button.is-link:active,html.theme--documenter-dark .button.is-link.is-active{background-color:#17a689;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link{background-color:#1abc9c;border-color:#1abc9c;box-shadow:none}html.theme--documenter-dark .button.is-link.is-inverted{background-color:#fff;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted:hover,html.theme--documenter-dark .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-link.is-outlined{background-color:transparent;border-color:#1abc9c;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-outlined:hover,html.theme--documenter-dark .button.is-link.is-outlined.is-hovered,html.theme--documenter-dark .button.is-link.is-outlined:focus,html.theme--documenter-dark .button.is-link.is-outlined.is-focused{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #1abc9c #1abc9c !important}html.theme--documenter-dark .button.is-link.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-outlined{background-color:transparent;border-color:#1abc9c;box-shadow:none;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #1abc9c #1abc9c !important}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-link.is-light{background-color:#edfdf9;color:#15987e}html.theme--documenter-dark .button.is-link.is-light:hover,html.theme--documenter-dark .button.is-link.is-light.is-hovered{background-color:#e2fbf6;border-color:transparent;color:#15987e}html.theme--documenter-dark .button.is-link.is-light:active,html.theme--documenter-dark .button.is-link.is-light.is-active{background-color:#d7f9f3;border-color:transparent;color:#15987e}html.theme--documenter-dark .button.is-info{background-color:#3c5dcd;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:hover,html.theme--documenter-dark .button.is-info.is-hovered{background-color:#3355c9;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:focus,html.theme--documenter-dark .button.is-info.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:focus:not(:active),html.theme--documenter-dark .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}html.theme--documenter-dark .button.is-info:active,html.theme--documenter-dark .button.is-info.is-active{background-color:#3151bf;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info{background-color:#3c5dcd;border-color:#3c5dcd;box-shadow:none}html.theme--documenter-dark .button.is-info.is-inverted{background-color:#fff;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-inverted:hover,html.theme--documenter-dark .button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-outlined:hover,html.theme--documenter-dark .button.is-info.is-outlined.is-hovered,html.theme--documenter-dark .button.is-info.is-outlined:focus,html.theme--documenter-dark .button.is-info.is-outlined.is-focused{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}html.theme--documenter-dark .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}html.theme--documenter-dark .button.is-info.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;box-shadow:none;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-info.is-light{background-color:#eff2fb;color:#3253c3}html.theme--documenter-dark .button.is-info.is-light:hover,html.theme--documenter-dark .button.is-info.is-light.is-hovered{background-color:#e5e9f8;border-color:transparent;color:#3253c3}html.theme--documenter-dark .button.is-info.is-light:active,html.theme--documenter-dark .button.is-info.is-light.is-active{background-color:#dae1f6;border-color:transparent;color:#3253c3}html.theme--documenter-dark .button.is-success{background-color:#259a12;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:hover,html.theme--documenter-dark .button.is-success.is-hovered{background-color:#228f11;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:focus,html.theme--documenter-dark .button.is-success.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:focus:not(:active),html.theme--documenter-dark .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}html.theme--documenter-dark .button.is-success:active,html.theme--documenter-dark .button.is-success.is-active{background-color:#20830f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success{background-color:#259a12;border-color:#259a12;box-shadow:none}html.theme--documenter-dark .button.is-success.is-inverted{background-color:#fff;color:#259a12}html.theme--documenter-dark .button.is-success.is-inverted:hover,html.theme--documenter-dark .button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#259a12}html.theme--documenter-dark .button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-success.is-outlined{background-color:transparent;border-color:#259a12;color:#259a12}html.theme--documenter-dark .button.is-success.is-outlined:hover,html.theme--documenter-dark .button.is-success.is-outlined.is-hovered,html.theme--documenter-dark .button.is-success.is-outlined:focus,html.theme--documenter-dark .button.is-success.is-outlined.is-focused{background-color:#259a12;border-color:#259a12;color:#fff}html.theme--documenter-dark .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #259a12 #259a12 !important}html.theme--documenter-dark .button.is-success.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-outlined{background-color:transparent;border-color:#259a12;box-shadow:none;color:#259a12}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#259a12}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #259a12 #259a12 !important}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-success.is-light{background-color:#effded;color:#2ec016}html.theme--documenter-dark .button.is-success.is-light:hover,html.theme--documenter-dark .button.is-success.is-light.is-hovered{background-color:#e5fce1;border-color:transparent;color:#2ec016}html.theme--documenter-dark .button.is-success.is-light:active,html.theme--documenter-dark .button.is-success.is-light.is-active{background-color:#dbfad6;border-color:transparent;color:#2ec016}html.theme--documenter-dark .button.is-warning{background-color:#f4c72f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning:hover,html.theme--documenter-dark .button.is-warning.is-hovered{background-color:#f3c423;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning:focus,html.theme--documenter-dark .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning:focus:not(:active),html.theme--documenter-dark .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(244,199,47,0.25)}html.theme--documenter-dark .button.is-warning:active,html.theme--documenter-dark .button.is-warning.is-active{background-color:#f3c017;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning{background-color:#f4c72f;border-color:#f4c72f;box-shadow:none}html.theme--documenter-dark .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-inverted:hover,html.theme--documenter-dark .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-warning.is-outlined{background-color:transparent;border-color:#f4c72f;color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-outlined:hover,html.theme--documenter-dark .button.is-warning.is-outlined.is-hovered,html.theme--documenter-dark .button.is-warning.is-outlined:focus,html.theme--documenter-dark .button.is-warning.is-outlined.is-focused{background-color:#f4c72f;border-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #f4c72f #f4c72f !important}html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-outlined{background-color:transparent;border-color:#f4c72f;box-shadow:none;color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f4c72f #f4c72f !important}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-light{background-color:#fefaec;color:#8c6e07}html.theme--documenter-dark .button.is-warning.is-light:hover,html.theme--documenter-dark .button.is-warning.is-light.is-hovered{background-color:#fdf7e0;border-color:transparent;color:#8c6e07}html.theme--documenter-dark .button.is-warning.is-light:active,html.theme--documenter-dark .button.is-warning.is-light.is-active{background-color:#fdf3d3;border-color:transparent;color:#8c6e07}html.theme--documenter-dark .button.is-danger{background-color:#cb3c33;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:hover,html.theme--documenter-dark .button.is-danger.is-hovered{background-color:#c13930;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:focus,html.theme--documenter-dark .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:focus:not(:active),html.theme--documenter-dark .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}html.theme--documenter-dark .button.is-danger:active,html.theme--documenter-dark .button.is-danger.is-active{background-color:#b7362e;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger{background-color:#cb3c33;border-color:#cb3c33;box-shadow:none}html.theme--documenter-dark .button.is-danger.is-inverted{background-color:#fff;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-inverted:hover,html.theme--documenter-dark .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-outlined:hover,html.theme--documenter-dark .button.is-danger.is-outlined.is-hovered,html.theme--documenter-dark .button.is-danger.is-outlined:focus,html.theme--documenter-dark .button.is-danger.is-outlined.is-focused{background-color:#cb3c33;border-color:#cb3c33;color:#fff}html.theme--documenter-dark .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;box-shadow:none;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-danger.is-light{background-color:#fbefef;color:#c03930}html.theme--documenter-dark .button.is-danger.is-light:hover,html.theme--documenter-dark .button.is-danger.is-light.is-hovered{background-color:#f8e6e5;border-color:transparent;color:#c03930}html.theme--documenter-dark .button.is-danger.is-light:active,html.theme--documenter-dark .button.is-danger.is-light.is-active{background-color:#f6dcda;border-color:transparent;color:#c03930}html.theme--documenter-dark .button.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--documenter-dark .button.is-small:not(.is-rounded),html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--documenter-dark .button.is-normal{font-size:1rem}html.theme--documenter-dark .button.is-medium{font-size:1.25rem}html.theme--documenter-dark .button.is-large{font-size:1.5rem}html.theme--documenter-dark .button[disabled],fieldset[disabled] html.theme--documenter-dark .button{background-color:#8c9b9d;border-color:#5e6d6f;box-shadow:none;opacity:.5}html.theme--documenter-dark .button.is-fullwidth{display:flex;width:100%}html.theme--documenter-dark .button.is-loading{color:transparent !important;pointer-events:none}html.theme--documenter-dark .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--documenter-dark .button.is-static{background-color:#282f2f;border-color:#5e6d6f;color:#dbdee0;box-shadow:none;pointer-events:none}html.theme--documenter-dark .button.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--documenter-dark .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .buttons .button{margin-bottom:0.5rem}html.theme--documenter-dark .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--documenter-dark .buttons:last-child{margin-bottom:-0.5rem}html.theme--documenter-dark .buttons:not(:last-child){margin-bottom:1rem}html.theme--documenter-dark .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--documenter-dark .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--documenter-dark .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--documenter-dark .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--documenter-dark .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--documenter-dark .buttons.has-addons .button:last-child{margin-right:0}html.theme--documenter-dark .buttons.has-addons .button:hover,html.theme--documenter-dark .buttons.has-addons .button.is-hovered{z-index:2}html.theme--documenter-dark .buttons.has-addons .button:focus,html.theme--documenter-dark .buttons.has-addons .button.is-focused,html.theme--documenter-dark .buttons.has-addons .button:active,html.theme--documenter-dark .buttons.has-addons .button.is-active,html.theme--documenter-dark .buttons.has-addons .button.is-selected{z-index:3}html.theme--documenter-dark .buttons.has-addons .button:focus:hover,html.theme--documenter-dark .buttons.has-addons .button.is-focused:hover,html.theme--documenter-dark .buttons.has-addons .button:active:hover,html.theme--documenter-dark .buttons.has-addons .button.is-active:hover,html.theme--documenter-dark .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--documenter-dark .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .buttons.is-centered{justify-content:center}html.theme--documenter-dark .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--documenter-dark .buttons.is-right{justify-content:flex-end}html.theme--documenter-dark .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .button.is-responsive.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--documenter-dark .button.is-responsive,html.theme--documenter-dark .button.is-responsive.is-normal{font-size:.65625rem}html.theme--documenter-dark .button.is-responsive.is-medium{font-size:.75rem}html.theme--documenter-dark .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .button.is-responsive.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--documenter-dark .button.is-responsive,html.theme--documenter-dark .button.is-responsive.is-normal{font-size:.75rem}html.theme--documenter-dark .button.is-responsive.is-medium{font-size:1rem}html.theme--documenter-dark .button.is-responsive.is-large{font-size:1.25rem}}html.theme--documenter-dark .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--documenter-dark .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--documenter-dark .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--documenter-dark .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--documenter-dark .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--documenter-dark .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--documenter-dark .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--documenter-dark .content li+li{margin-top:0.25em}html.theme--documenter-dark .content p:not(:last-child),html.theme--documenter-dark .content dl:not(:last-child),html.theme--documenter-dark .content ol:not(:last-child),html.theme--documenter-dark .content ul:not(:last-child),html.theme--documenter-dark .content blockquote:not(:last-child),html.theme--documenter-dark .content pre:not(:last-child),html.theme--documenter-dark .content table:not(:last-child){margin-bottom:1em}html.theme--documenter-dark .content h1,html.theme--documenter-dark .content h2,html.theme--documenter-dark .content h3,html.theme--documenter-dark .content h4,html.theme--documenter-dark .content h5,html.theme--documenter-dark .content h6{color:#f2f2f2;font-weight:600;line-height:1.125}html.theme--documenter-dark .content h1{font-size:2em;margin-bottom:0.5em}html.theme--documenter-dark .content h1:not(:first-child){margin-top:1em}html.theme--documenter-dark .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--documenter-dark .content h2:not(:first-child){margin-top:1.1428em}html.theme--documenter-dark .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--documenter-dark .content h3:not(:first-child){margin-top:1.3333em}html.theme--documenter-dark .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--documenter-dark .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--documenter-dark .content h6{font-size:1em;margin-bottom:1em}html.theme--documenter-dark .content blockquote{background-color:#282f2f;border-left:5px solid #5e6d6f;padding:1.25em 1.5em}html.theme--documenter-dark .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--documenter-dark .content ol:not([type]){list-style-type:decimal}html.theme--documenter-dark .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--documenter-dark .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--documenter-dark .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--documenter-dark .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--documenter-dark .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--documenter-dark .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--documenter-dark .content ul ul ul{list-style-type:square}html.theme--documenter-dark .content dd{margin-left:2em}html.theme--documenter-dark .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--documenter-dark .content figure:not(:first-child){margin-top:2em}html.theme--documenter-dark .content figure:not(:last-child){margin-bottom:2em}html.theme--documenter-dark .content figure img{display:inline-block}html.theme--documenter-dark .content figure figcaption{font-style:italic}html.theme--documenter-dark .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--documenter-dark .content sup,html.theme--documenter-dark .content sub{font-size:75%}html.theme--documenter-dark .content table{width:100%}html.theme--documenter-dark .content table td,html.theme--documenter-dark .content table th{border:1px solid #5e6d6f;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--documenter-dark .content table th{color:#f2f2f2}html.theme--documenter-dark .content table th:not([align]){text-align:inherit}html.theme--documenter-dark .content table thead td,html.theme--documenter-dark .content table thead th{border-width:0 0 2px;color:#f2f2f2}html.theme--documenter-dark .content table tfoot td,html.theme--documenter-dark .content table tfoot th{border-width:2px 0 0;color:#f2f2f2}html.theme--documenter-dark .content table tbody tr:last-child td,html.theme--documenter-dark .content table tbody tr:last-child th{border-bottom-width:0}html.theme--documenter-dark .content .tabs li+li{margin-top:0}html.theme--documenter-dark .content.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--documenter-dark .content.is-normal{font-size:1rem}html.theme--documenter-dark .content.is-medium{font-size:1.25rem}html.theme--documenter-dark .content.is-large{font-size:1.5rem}html.theme--documenter-dark .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--documenter-dark .icon.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--documenter-dark .icon.is-medium{height:2rem;width:2rem}html.theme--documenter-dark .icon.is-large{height:3rem;width:3rem}html.theme--documenter-dark .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--documenter-dark .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--documenter-dark .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--documenter-dark div.icon-text{display:flex}html.theme--documenter-dark .image,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--documenter-dark .image img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--documenter-dark .image img.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--documenter-dark .image.is-fullwidth,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--documenter-dark .image.is-square img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--documenter-dark .image.is-square .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--documenter-dark .image.is-1by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--documenter-dark .image.is-1by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--documenter-dark .image.is-5by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--documenter-dark .image.is-5by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--documenter-dark .image.is-4by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--documenter-dark .image.is-4by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--documenter-dark .image.is-3by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--documenter-dark .image.is-3by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--documenter-dark .image.is-5by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--documenter-dark .image.is-5by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--documenter-dark .image.is-16by9 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--documenter-dark .image.is-16by9 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--documenter-dark .image.is-2by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--documenter-dark .image.is-2by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--documenter-dark .image.is-3by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--documenter-dark .image.is-3by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--documenter-dark .image.is-4by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--documenter-dark .image.is-4by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--documenter-dark .image.is-3by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--documenter-dark .image.is-3by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--documenter-dark .image.is-2by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--documenter-dark .image.is-2by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--documenter-dark .image.is-3by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--documenter-dark .image.is-3by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--documenter-dark .image.is-9by16 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--documenter-dark .image.is-9by16 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--documenter-dark .image.is-1by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--documenter-dark .image.is-1by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--documenter-dark .image.is-1by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--documenter-dark .image.is-1by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--documenter-dark .image.is-square,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--documenter-dark .image.is-1by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--documenter-dark .image.is-5by4,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--documenter-dark .image.is-4by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--documenter-dark .image.is-3by2,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--documenter-dark .image.is-5by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--documenter-dark .image.is-16by9,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--documenter-dark .image.is-2by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--documenter-dark .image.is-3by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--documenter-dark .image.is-4by5,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--documenter-dark .image.is-3by4,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--documenter-dark .image.is-2by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--documenter-dark .image.is-3by5,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--documenter-dark .image.is-9by16,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--documenter-dark .image.is-1by2,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--documenter-dark .image.is-1by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--documenter-dark .image.is-16x16,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--documenter-dark .image.is-24x24,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--documenter-dark .image.is-32x32,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--documenter-dark .image.is-48x48,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--documenter-dark .image.is-64x64,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--documenter-dark .image.is-96x96,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--documenter-dark .image.is-128x128,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--documenter-dark .notification{background-color:#282f2f;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--documenter-dark .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--documenter-dark .notification strong{color:currentColor}html.theme--documenter-dark .notification code,html.theme--documenter-dark .notification pre{background:#fff}html.theme--documenter-dark .notification pre code{background:transparent}html.theme--documenter-dark .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--documenter-dark .notification .title,html.theme--documenter-dark .notification .subtitle,html.theme--documenter-dark .notification .content{color:currentColor}html.theme--documenter-dark .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .notification.is-light{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .notification.is-dark,html.theme--documenter-dark .content kbd.notification{background-color:#282f2f;color:#fff}html.theme--documenter-dark .notification.is-primary,html.theme--documenter-dark .docstring>section>a.notification.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .notification.is-primary.is-light,html.theme--documenter-dark .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#f1f5f9;color:#4d7eb2}html.theme--documenter-dark .notification.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .notification.is-link.is-light{background-color:#edfdf9;color:#15987e}html.theme--documenter-dark .notification.is-info{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .notification.is-info.is-light{background-color:#eff2fb;color:#3253c3}html.theme--documenter-dark .notification.is-success{background-color:#259a12;color:#fff}html.theme--documenter-dark .notification.is-success.is-light{background-color:#effded;color:#2ec016}html.theme--documenter-dark .notification.is-warning{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .notification.is-warning.is-light{background-color:#fefaec;color:#8c6e07}html.theme--documenter-dark .notification.is-danger{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .notification.is-danger.is-light{background-color:#fbefef;color:#c03930}html.theme--documenter-dark .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--documenter-dark .progress::-webkit-progress-bar{background-color:#343c3d}html.theme--documenter-dark .progress::-webkit-progress-value{background-color:#dbdee0}html.theme--documenter-dark .progress::-moz-progress-bar{background-color:#dbdee0}html.theme--documenter-dark .progress::-ms-fill{background-color:#dbdee0;border:none}html.theme--documenter-dark .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--documenter-dark .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--documenter-dark .progress.is-white::-ms-fill{background-color:#fff}html.theme--documenter-dark .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-light::-webkit-progress-value{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light::-moz-progress-bar{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light::-ms-fill{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light:indeterminate{background-image:linear-gradient(to right, #ecf0f1 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-dark::-webkit-progress-value,html.theme--documenter-dark .content kbd.progress::-webkit-progress-value{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark::-moz-progress-bar,html.theme--documenter-dark .content kbd.progress::-moz-progress-bar{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark::-ms-fill,html.theme--documenter-dark .content kbd.progress::-ms-fill{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark:indeterminate,html.theme--documenter-dark .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #282f2f 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-primary::-webkit-progress-value,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary::-moz-progress-bar,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary::-ms-fill,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary:indeterminate,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #375a7f 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-link::-webkit-progress-value{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link::-moz-progress-bar{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link::-ms-fill{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link:indeterminate{background-image:linear-gradient(to right, #1abc9c 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-info::-webkit-progress-value{background-color:#3c5dcd}html.theme--documenter-dark .progress.is-info::-moz-progress-bar{background-color:#3c5dcd}html.theme--documenter-dark .progress.is-info::-ms-fill{background-color:#3c5dcd}html.theme--documenter-dark .progress.is-info:indeterminate{background-image:linear-gradient(to right, #3c5dcd 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-success::-webkit-progress-value{background-color:#259a12}html.theme--documenter-dark .progress.is-success::-moz-progress-bar{background-color:#259a12}html.theme--documenter-dark .progress.is-success::-ms-fill{background-color:#259a12}html.theme--documenter-dark .progress.is-success:indeterminate{background-image:linear-gradient(to right, #259a12 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-warning::-webkit-progress-value{background-color:#f4c72f}html.theme--documenter-dark .progress.is-warning::-moz-progress-bar{background-color:#f4c72f}html.theme--documenter-dark .progress.is-warning::-ms-fill{background-color:#f4c72f}html.theme--documenter-dark .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #f4c72f 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-danger::-webkit-progress-value{background-color:#cb3c33}html.theme--documenter-dark .progress.is-danger::-moz-progress-bar{background-color:#cb3c33}html.theme--documenter-dark .progress.is-danger::-ms-fill{background-color:#cb3c33}html.theme--documenter-dark .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #cb3c33 30%, #343c3d 30%)}html.theme--documenter-dark .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#343c3d;background-image:linear-gradient(to right, #fff 30%, #343c3d 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--documenter-dark .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--documenter-dark .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--documenter-dark .progress:indeterminate::-ms-fill{animation-name:none}html.theme--documenter-dark .progress.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--documenter-dark .progress.is-medium{height:1.25rem}html.theme--documenter-dark .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--documenter-dark .table{background-color:#343c3d;color:#fff}html.theme--documenter-dark .table td,html.theme--documenter-dark .table th{border:1px solid #5e6d6f;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--documenter-dark .table td.is-white,html.theme--documenter-dark .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .table td.is-black,html.theme--documenter-dark .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .table td.is-light,html.theme--documenter-dark .table th.is-light{background-color:#ecf0f1;border-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .table td.is-dark,html.theme--documenter-dark .table th.is-dark{background-color:#282f2f;border-color:#282f2f;color:#fff}html.theme--documenter-dark .table td.is-primary,html.theme--documenter-dark .table th.is-primary{background-color:#375a7f;border-color:#375a7f;color:#fff}html.theme--documenter-dark .table td.is-link,html.theme--documenter-dark .table th.is-link{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .table td.is-info,html.theme--documenter-dark .table th.is-info{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}html.theme--documenter-dark .table td.is-success,html.theme--documenter-dark .table th.is-success{background-color:#259a12;border-color:#259a12;color:#fff}html.theme--documenter-dark .table td.is-warning,html.theme--documenter-dark .table th.is-warning{background-color:#f4c72f;border-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .table td.is-danger,html.theme--documenter-dark .table th.is-danger{background-color:#cb3c33;border-color:#cb3c33;color:#fff}html.theme--documenter-dark .table td.is-narrow,html.theme--documenter-dark .table th.is-narrow{white-space:nowrap;width:1%}html.theme--documenter-dark .table td.is-selected,html.theme--documenter-dark .table th.is-selected{background-color:#375a7f;color:#fff}html.theme--documenter-dark .table td.is-selected a,html.theme--documenter-dark .table td.is-selected strong,html.theme--documenter-dark .table th.is-selected a,html.theme--documenter-dark .table th.is-selected strong{color:currentColor}html.theme--documenter-dark .table td.is-vcentered,html.theme--documenter-dark .table th.is-vcentered{vertical-align:middle}html.theme--documenter-dark .table th{color:#f2f2f2}html.theme--documenter-dark .table th:not([align]){text-align:left}html.theme--documenter-dark .table tr.is-selected{background-color:#375a7f;color:#fff}html.theme--documenter-dark .table tr.is-selected a,html.theme--documenter-dark .table tr.is-selected strong{color:currentColor}html.theme--documenter-dark .table tr.is-selected td,html.theme--documenter-dark .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--documenter-dark .table thead{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table thead td,html.theme--documenter-dark .table thead th{border-width:0 0 2px;color:#f2f2f2}html.theme--documenter-dark .table tfoot{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table tfoot td,html.theme--documenter-dark .table tfoot th{border-width:2px 0 0;color:#f2f2f2}html.theme--documenter-dark .table tbody{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table tbody tr:last-child td,html.theme--documenter-dark .table tbody tr:last-child th{border-bottom-width:0}html.theme--documenter-dark .table.is-bordered td,html.theme--documenter-dark .table.is-bordered th{border-width:1px}html.theme--documenter-dark .table.is-bordered tr:last-child td,html.theme--documenter-dark .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--documenter-dark .table.is-fullwidth{width:100%}html.theme--documenter-dark .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#282f2f}html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#282f2f}html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#2d3435}html.theme--documenter-dark .table.is-narrow td,html.theme--documenter-dark .table.is-narrow th{padding:0.25em 0.5em}html.theme--documenter-dark .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#282f2f}html.theme--documenter-dark .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--documenter-dark .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .tags .tag,html.theme--documenter-dark .tags .content kbd,html.theme--documenter-dark .content .tags kbd,html.theme--documenter-dark .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--documenter-dark .tags .tag:not(:last-child),html.theme--documenter-dark .tags .content kbd:not(:last-child),html.theme--documenter-dark .content .tags kbd:not(:last-child),html.theme--documenter-dark .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--documenter-dark .tags:last-child{margin-bottom:-0.5rem}html.theme--documenter-dark .tags:not(:last-child){margin-bottom:1rem}html.theme--documenter-dark .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--documenter-dark .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--documenter-dark .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--documenter-dark .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--documenter-dark .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--documenter-dark .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--documenter-dark .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--documenter-dark .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--documenter-dark .tags.is-centered{justify-content:center}html.theme--documenter-dark .tags.is-centered .tag,html.theme--documenter-dark .tags.is-centered .content kbd,html.theme--documenter-dark .content .tags.is-centered kbd,html.theme--documenter-dark .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--documenter-dark .tags.is-right{justify-content:flex-end}html.theme--documenter-dark .tags.is-right .tag:not(:first-child),html.theme--documenter-dark .tags.is-right .content kbd:not(:first-child),html.theme--documenter-dark .content .tags.is-right kbd:not(:first-child),html.theme--documenter-dark .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--documenter-dark .tags.is-right .tag:not(:last-child),html.theme--documenter-dark .tags.is-right .content kbd:not(:last-child),html.theme--documenter-dark .content .tags.is-right kbd:not(:last-child),html.theme--documenter-dark .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--documenter-dark .tags.has-addons .tag,html.theme--documenter-dark .tags.has-addons .content kbd,html.theme--documenter-dark .content .tags.has-addons kbd,html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--documenter-dark .tags.has-addons .tag:not(:first-child),html.theme--documenter-dark .tags.has-addons .content kbd:not(:first-child),html.theme--documenter-dark .content .tags.has-addons kbd:not(:first-child),html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--documenter-dark .tags.has-addons .tag:not(:last-child),html.theme--documenter-dark .tags.has-addons .content kbd:not(:last-child),html.theme--documenter-dark .content .tags.has-addons kbd:not(:last-child),html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--documenter-dark .tag:not(body),html.theme--documenter-dark .content kbd:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#282f2f;border-radius:.4em;color:#fff;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--documenter-dark .tag:not(body) .delete,html.theme--documenter-dark .content kbd:not(body) .delete,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--documenter-dark .tag.is-white:not(body),html.theme--documenter-dark .content kbd.is-white:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .tag.is-black:not(body),html.theme--documenter-dark .content kbd.is-black:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .tag.is-light:not(body),html.theme--documenter-dark .content kbd.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .tag.is-dark:not(body),html.theme--documenter-dark .content kbd:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--documenter-dark .content .docstring>section>kbd:not(body){background-color:#282f2f;color:#fff}html.theme--documenter-dark .tag.is-primary:not(body),html.theme--documenter-dark .content kbd.is-primary:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body){background-color:#375a7f;color:#fff}html.theme--documenter-dark .tag.is-primary.is-light:not(body),html.theme--documenter-dark .content kbd.is-primary.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f1f5f9;color:#4d7eb2}html.theme--documenter-dark .tag.is-link:not(body),html.theme--documenter-dark .content kbd.is-link:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#1abc9c;color:#fff}html.theme--documenter-dark .tag.is-link.is-light:not(body),html.theme--documenter-dark .content kbd.is-link.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#edfdf9;color:#15987e}html.theme--documenter-dark .tag.is-info:not(body),html.theme--documenter-dark .content kbd.is-info:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .tag.is-info.is-light:not(body),html.theme--documenter-dark .content kbd.is-info.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#eff2fb;color:#3253c3}html.theme--documenter-dark .tag.is-success:not(body),html.theme--documenter-dark .content kbd.is-success:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#259a12;color:#fff}html.theme--documenter-dark .tag.is-success.is-light:not(body),html.theme--documenter-dark .content kbd.is-success.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#effded;color:#2ec016}html.theme--documenter-dark .tag.is-warning:not(body),html.theme--documenter-dark .content kbd.is-warning:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .tag.is-warning.is-light:not(body),html.theme--documenter-dark .content kbd.is-warning.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fefaec;color:#8c6e07}html.theme--documenter-dark .tag.is-danger:not(body),html.theme--documenter-dark .content kbd.is-danger:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#cb3c33;color:#fff}html.theme--documenter-dark .tag.is-danger.is-light:not(body),html.theme--documenter-dark .content kbd.is-danger.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fbefef;color:#c03930}html.theme--documenter-dark .tag.is-normal:not(body),html.theme--documenter-dark .content kbd.is-normal:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--documenter-dark .tag.is-medium:not(body),html.theme--documenter-dark .content kbd.is-medium:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--documenter-dark .tag.is-large:not(body),html.theme--documenter-dark .content kbd.is-large:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--documenter-dark .tag:not(body) .icon:first-child:not(:last-child),html.theme--documenter-dark .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--documenter-dark .tag:not(body) .icon:last-child:not(:first-child),html.theme--documenter-dark .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--documenter-dark .tag:not(body) .icon:first-child:last-child,html.theme--documenter-dark .content kbd:not(body) .icon:first-child:last-child,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--documenter-dark .tag.is-delete:not(body),html.theme--documenter-dark .content kbd.is-delete:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--documenter-dark .tag.is-delete:not(body)::before,html.theme--documenter-dark .content kbd.is-delete:not(body)::before,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--documenter-dark .tag.is-delete:not(body)::after,html.theme--documenter-dark .content kbd.is-delete:not(body)::after,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--documenter-dark .tag.is-delete:not(body)::before,html.theme--documenter-dark .content kbd.is-delete:not(body)::before,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--documenter-dark .tag.is-delete:not(body)::after,html.theme--documenter-dark .content kbd.is-delete:not(body)::after,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--documenter-dark .tag.is-delete:not(body):hover,html.theme--documenter-dark .content kbd.is-delete:not(body):hover,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--documenter-dark .tag.is-delete:not(body):focus,html.theme--documenter-dark .content kbd.is-delete:not(body):focus,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#1d2122}html.theme--documenter-dark .tag.is-delete:not(body):active,html.theme--documenter-dark .content kbd.is-delete:not(body):active,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#111414}html.theme--documenter-dark .tag.is-rounded:not(body),html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--documenter-dark .content kbd.is-rounded:not(body),html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--documenter-dark a.tag:hover,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--documenter-dark .title,html.theme--documenter-dark .subtitle{word-break:break-word}html.theme--documenter-dark .title em,html.theme--documenter-dark .title span,html.theme--documenter-dark .subtitle em,html.theme--documenter-dark .subtitle span{font-weight:inherit}html.theme--documenter-dark .title sub,html.theme--documenter-dark .subtitle sub{font-size:.75em}html.theme--documenter-dark .title sup,html.theme--documenter-dark .subtitle sup{font-size:.75em}html.theme--documenter-dark .title .tag,html.theme--documenter-dark .title .content kbd,html.theme--documenter-dark .content .title kbd,html.theme--documenter-dark .title .docstring>section>a.docs-sourcelink,html.theme--documenter-dark .subtitle .tag,html.theme--documenter-dark .subtitle .content kbd,html.theme--documenter-dark .content .subtitle kbd,html.theme--documenter-dark .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--documenter-dark .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--documenter-dark .title strong{color:inherit;font-weight:inherit}html.theme--documenter-dark .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--documenter-dark .title.is-1{font-size:3rem}html.theme--documenter-dark .title.is-2{font-size:2.5rem}html.theme--documenter-dark .title.is-3{font-size:2rem}html.theme--documenter-dark .title.is-4{font-size:1.5rem}html.theme--documenter-dark .title.is-5{font-size:1.25rem}html.theme--documenter-dark .title.is-6{font-size:1rem}html.theme--documenter-dark .title.is-7{font-size:.75rem}html.theme--documenter-dark .subtitle{color:#8c9b9d;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--documenter-dark .subtitle strong{color:#8c9b9d;font-weight:600}html.theme--documenter-dark .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--documenter-dark .subtitle.is-1{font-size:3rem}html.theme--documenter-dark .subtitle.is-2{font-size:2.5rem}html.theme--documenter-dark .subtitle.is-3{font-size:2rem}html.theme--documenter-dark .subtitle.is-4{font-size:1.5rem}html.theme--documenter-dark .subtitle.is-5{font-size:1.25rem}html.theme--documenter-dark .subtitle.is-6{font-size:1rem}html.theme--documenter-dark .subtitle.is-7{font-size:.75rem}html.theme--documenter-dark .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--documenter-dark .number{align-items:center;background-color:#282f2f;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{background-color:#1f2424;border-color:#5e6d6f;border-radius:.4em;color:#dbdee0}html.theme--documenter-dark .select select::-moz-placeholder,html.theme--documenter-dark .textarea::-moz-placeholder,html.theme--documenter-dark .input::-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--documenter-dark .select select::-webkit-input-placeholder,html.theme--documenter-dark .textarea::-webkit-input-placeholder,html.theme--documenter-dark .input::-webkit-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--documenter-dark .select select:-moz-placeholder,html.theme--documenter-dark .textarea:-moz-placeholder,html.theme--documenter-dark .input:-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--documenter-dark .select select:-ms-input-placeholder,html.theme--documenter-dark .textarea:-ms-input-placeholder,html.theme--documenter-dark .input:-ms-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--documenter-dark .select select:hover,html.theme--documenter-dark .textarea:hover,html.theme--documenter-dark .input:hover,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:hover,html.theme--documenter-dark .select select.is-hovered,html.theme--documenter-dark .is-hovered.textarea,html.theme--documenter-dark .is-hovered.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#8c9b9d}html.theme--documenter-dark .select select:focus,html.theme--documenter-dark .textarea:focus,html.theme--documenter-dark .input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:focus,html.theme--documenter-dark .select select.is-focused,html.theme--documenter-dark .is-focused.textarea,html.theme--documenter-dark .is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .select select:active,html.theme--documenter-dark .textarea:active,html.theme--documenter-dark .input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:active,html.theme--documenter-dark .select select.is-active,html.theme--documenter-dark .is-active.textarea,html.theme--documenter-dark .is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#1abc9c;box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .select select[disabled],html.theme--documenter-dark .textarea[disabled],html.theme--documenter-dark .input[disabled],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--documenter-dark .select select,fieldset[disabled] html.theme--documenter-dark .textarea,fieldset[disabled] html.theme--documenter-dark .input,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{background-color:#8c9b9d;border-color:#282f2f;box-shadow:none;color:#fff}html.theme--documenter-dark .select select[disabled]::-moz-placeholder,html.theme--documenter-dark .textarea[disabled]::-moz-placeholder,html.theme--documenter-dark .input[disabled]::-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .select select::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .input::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]::-webkit-input-placeholder,html.theme--documenter-dark .textarea[disabled]::-webkit-input-placeholder,html.theme--documenter-dark .input[disabled]::-webkit-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .input::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]:-moz-placeholder,html.theme--documenter-dark .textarea[disabled]:-moz-placeholder,html.theme--documenter-dark .input[disabled]:-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .select select:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .input:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]:-ms-input-placeholder,html.theme--documenter-dark .textarea[disabled]:-ms-input-placeholder,html.theme--documenter-dark .input[disabled]:-ms-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .select select:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .input:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--documenter-dark .textarea[readonly],html.theme--documenter-dark .input[readonly],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--documenter-dark .is-white.textarea,html.theme--documenter-dark .is-white.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--documenter-dark .is-white.textarea:focus,html.theme--documenter-dark .is-white.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--documenter-dark .is-white.is-focused.textarea,html.theme--documenter-dark .is-white.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-white.textarea:active,html.theme--documenter-dark .is-white.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--documenter-dark .is-white.is-active.textarea,html.theme--documenter-dark .is-white.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .is-black.textarea,html.theme--documenter-dark .is-black.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--documenter-dark .is-black.textarea:focus,html.theme--documenter-dark .is-black.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--documenter-dark .is-black.is-focused.textarea,html.theme--documenter-dark .is-black.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-black.textarea:active,html.theme--documenter-dark .is-black.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--documenter-dark .is-black.is-active.textarea,html.theme--documenter-dark .is-black.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .is-light.textarea,html.theme--documenter-dark .is-light.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#ecf0f1}html.theme--documenter-dark .is-light.textarea:focus,html.theme--documenter-dark .is-light.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--documenter-dark .is-light.is-focused.textarea,html.theme--documenter-dark .is-light.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-light.textarea:active,html.theme--documenter-dark .is-light.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--documenter-dark .is-light.is-active.textarea,html.theme--documenter-dark .is-light.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .is-dark.textarea,html.theme--documenter-dark .content kbd.textarea,html.theme--documenter-dark .is-dark.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--documenter-dark .content kbd.input{border-color:#282f2f}html.theme--documenter-dark .is-dark.textarea:focus,html.theme--documenter-dark .content kbd.textarea:focus,html.theme--documenter-dark .is-dark.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--documenter-dark .content kbd.input:focus,html.theme--documenter-dark .is-dark.is-focused.textarea,html.theme--documenter-dark .content kbd.is-focused.textarea,html.theme--documenter-dark .is-dark.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .content kbd.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--documenter-dark .is-dark.textarea:active,html.theme--documenter-dark .content kbd.textarea:active,html.theme--documenter-dark .is-dark.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--documenter-dark .content kbd.input:active,html.theme--documenter-dark .is-dark.is-active.textarea,html.theme--documenter-dark .content kbd.is-active.textarea,html.theme--documenter-dark .is-dark.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .content kbd.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .is-primary.textarea,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink{border-color:#375a7f}html.theme--documenter-dark .is-primary.textarea:focus,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--documenter-dark .is-primary.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink:focus,html.theme--documenter-dark .is-primary.is-focused.textarea,html.theme--documenter-dark .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--documenter-dark .is-primary.textarea:active,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink:active,html.theme--documenter-dark .is-primary.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink:active,html.theme--documenter-dark .is-primary.is-active.textarea,html.theme--documenter-dark .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .is-link.textarea,html.theme--documenter-dark .is-link.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#1abc9c}html.theme--documenter-dark .is-link.textarea:focus,html.theme--documenter-dark .is-link.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--documenter-dark .is-link.is-focused.textarea,html.theme--documenter-dark .is-link.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-link.textarea:active,html.theme--documenter-dark .is-link.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--documenter-dark .is-link.is-active.textarea,html.theme--documenter-dark .is-link.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .is-info.textarea,html.theme--documenter-dark .is-info.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#3c5dcd}html.theme--documenter-dark .is-info.textarea:focus,html.theme--documenter-dark .is-info.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--documenter-dark .is-info.is-focused.textarea,html.theme--documenter-dark .is-info.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-info.textarea:active,html.theme--documenter-dark .is-info.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--documenter-dark .is-info.is-active.textarea,html.theme--documenter-dark .is-info.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}html.theme--documenter-dark .is-success.textarea,html.theme--documenter-dark .is-success.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#259a12}html.theme--documenter-dark .is-success.textarea:focus,html.theme--documenter-dark .is-success.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--documenter-dark .is-success.is-focused.textarea,html.theme--documenter-dark .is-success.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-success.textarea:active,html.theme--documenter-dark .is-success.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--documenter-dark .is-success.is-active.textarea,html.theme--documenter-dark .is-success.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}html.theme--documenter-dark .is-warning.textarea,html.theme--documenter-dark .is-warning.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#f4c72f}html.theme--documenter-dark .is-warning.textarea:focus,html.theme--documenter-dark .is-warning.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--documenter-dark .is-warning.is-focused.textarea,html.theme--documenter-dark .is-warning.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-warning.textarea:active,html.theme--documenter-dark .is-warning.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--documenter-dark .is-warning.is-active.textarea,html.theme--documenter-dark .is-warning.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(244,199,47,0.25)}html.theme--documenter-dark .is-danger.textarea,html.theme--documenter-dark .is-danger.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#cb3c33}html.theme--documenter-dark .is-danger.textarea:focus,html.theme--documenter-dark .is-danger.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--documenter-dark .is-danger.is-focused.textarea,html.theme--documenter-dark .is-danger.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-danger.textarea:active,html.theme--documenter-dark .is-danger.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--documenter-dark .is-danger.is-active.textarea,html.theme--documenter-dark .is-danger.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}html.theme--documenter-dark .is-small.textarea,html.theme--documenter-dark .is-small.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--documenter-dark .is-medium.textarea,html.theme--documenter-dark .is-medium.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--documenter-dark .is-large.textarea,html.theme--documenter-dark .is-large.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--documenter-dark .is-fullwidth.textarea,html.theme--documenter-dark .is-fullwidth.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--documenter-dark .is-inline.textarea,html.theme--documenter-dark .is-inline.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--documenter-dark .input.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--documenter-dark .input.is-static,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--documenter-dark .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--documenter-dark .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--documenter-dark .textarea[rows]{height:initial}html.theme--documenter-dark .textarea.has-fixed-size{resize:none}html.theme--documenter-dark .radio,html.theme--documenter-dark .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--documenter-dark .radio input,html.theme--documenter-dark .checkbox input{cursor:pointer}html.theme--documenter-dark .radio:hover,html.theme--documenter-dark .checkbox:hover{color:#8c9b9d}html.theme--documenter-dark .radio[disabled],html.theme--documenter-dark .checkbox[disabled],fieldset[disabled] html.theme--documenter-dark .radio,fieldset[disabled] html.theme--documenter-dark .checkbox,html.theme--documenter-dark .radio input[disabled],html.theme--documenter-dark .checkbox input[disabled]{color:#fff;cursor:not-allowed}html.theme--documenter-dark .radio+.radio{margin-left:.5em}html.theme--documenter-dark .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--documenter-dark .select:not(.is-multiple){height:2.5em}html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after{border-color:#1abc9c;right:1.125em;z-index:4}html.theme--documenter-dark .select.is-rounded select,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--documenter-dark .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--documenter-dark .select select::-ms-expand{display:none}html.theme--documenter-dark .select select[disabled]:hover,fieldset[disabled] html.theme--documenter-dark .select select:hover{border-color:#282f2f}html.theme--documenter-dark .select select:not([multiple]){padding-right:2.5em}html.theme--documenter-dark .select select[multiple]{height:auto;padding:0}html.theme--documenter-dark .select select[multiple] option{padding:0.5em 1em}html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#8c9b9d}html.theme--documenter-dark .select.is-white:not(:hover)::after{border-color:#fff}html.theme--documenter-dark .select.is-white select{border-color:#fff}html.theme--documenter-dark .select.is-white select:hover,html.theme--documenter-dark .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--documenter-dark .select.is-white select:focus,html.theme--documenter-dark .select.is-white select.is-focused,html.theme--documenter-dark .select.is-white select:active,html.theme--documenter-dark .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--documenter-dark .select.is-black select{border-color:#0a0a0a}html.theme--documenter-dark .select.is-black select:hover,html.theme--documenter-dark .select.is-black select.is-hovered{border-color:#000}html.theme--documenter-dark .select.is-black select:focus,html.theme--documenter-dark .select.is-black select.is-focused,html.theme--documenter-dark .select.is-black select:active,html.theme--documenter-dark .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .select.is-light:not(:hover)::after{border-color:#ecf0f1}html.theme--documenter-dark .select.is-light select{border-color:#ecf0f1}html.theme--documenter-dark .select.is-light select:hover,html.theme--documenter-dark .select.is-light select.is-hovered{border-color:#dde4e6}html.theme--documenter-dark .select.is-light select:focus,html.theme--documenter-dark .select.is-light select.is-focused,html.theme--documenter-dark .select.is-light select:active,html.theme--documenter-dark .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .select.is-dark:not(:hover)::after,html.theme--documenter-dark .content kbd.select:not(:hover)::after{border-color:#282f2f}html.theme--documenter-dark .select.is-dark select,html.theme--documenter-dark .content kbd.select select{border-color:#282f2f}html.theme--documenter-dark .select.is-dark select:hover,html.theme--documenter-dark .content kbd.select select:hover,html.theme--documenter-dark .select.is-dark select.is-hovered,html.theme--documenter-dark .content kbd.select select.is-hovered{border-color:#1d2122}html.theme--documenter-dark .select.is-dark select:focus,html.theme--documenter-dark .content kbd.select select:focus,html.theme--documenter-dark .select.is-dark select.is-focused,html.theme--documenter-dark .content kbd.select select.is-focused,html.theme--documenter-dark .select.is-dark select:active,html.theme--documenter-dark .content kbd.select select:active,html.theme--documenter-dark .select.is-dark select.is-active,html.theme--documenter-dark .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .select.is-primary:not(:hover)::after,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#375a7f}html.theme--documenter-dark .select.is-primary select,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select{border-color:#375a7f}html.theme--documenter-dark .select.is-primary select:hover,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:hover,html.theme--documenter-dark .select.is-primary select.is-hovered,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#2f4d6d}html.theme--documenter-dark .select.is-primary select:focus,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:focus,html.theme--documenter-dark .select.is-primary select.is-focused,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--documenter-dark .select.is-primary select:active,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:active,html.theme--documenter-dark .select.is-primary select.is-active,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .select.is-link:not(:hover)::after{border-color:#1abc9c}html.theme--documenter-dark .select.is-link select{border-color:#1abc9c}html.theme--documenter-dark .select.is-link select:hover,html.theme--documenter-dark .select.is-link select.is-hovered{border-color:#17a689}html.theme--documenter-dark .select.is-link select:focus,html.theme--documenter-dark .select.is-link select.is-focused,html.theme--documenter-dark .select.is-link select:active,html.theme--documenter-dark .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .select.is-info:not(:hover)::after{border-color:#3c5dcd}html.theme--documenter-dark .select.is-info select{border-color:#3c5dcd}html.theme--documenter-dark .select.is-info select:hover,html.theme--documenter-dark .select.is-info select.is-hovered{border-color:#3151bf}html.theme--documenter-dark .select.is-info select:focus,html.theme--documenter-dark .select.is-info select.is-focused,html.theme--documenter-dark .select.is-info select:active,html.theme--documenter-dark .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}html.theme--documenter-dark .select.is-success:not(:hover)::after{border-color:#259a12}html.theme--documenter-dark .select.is-success select{border-color:#259a12}html.theme--documenter-dark .select.is-success select:hover,html.theme--documenter-dark .select.is-success select.is-hovered{border-color:#20830f}html.theme--documenter-dark .select.is-success select:focus,html.theme--documenter-dark .select.is-success select.is-focused,html.theme--documenter-dark .select.is-success select:active,html.theme--documenter-dark .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}html.theme--documenter-dark .select.is-warning:not(:hover)::after{border-color:#f4c72f}html.theme--documenter-dark .select.is-warning select{border-color:#f4c72f}html.theme--documenter-dark .select.is-warning select:hover,html.theme--documenter-dark .select.is-warning select.is-hovered{border-color:#f3c017}html.theme--documenter-dark .select.is-warning select:focus,html.theme--documenter-dark .select.is-warning select.is-focused,html.theme--documenter-dark .select.is-warning select:active,html.theme--documenter-dark .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(244,199,47,0.25)}html.theme--documenter-dark .select.is-danger:not(:hover)::after{border-color:#cb3c33}html.theme--documenter-dark .select.is-danger select{border-color:#cb3c33}html.theme--documenter-dark .select.is-danger select:hover,html.theme--documenter-dark .select.is-danger select.is-hovered{border-color:#b7362e}html.theme--documenter-dark .select.is-danger select:focus,html.theme--documenter-dark .select.is-danger select.is-focused,html.theme--documenter-dark .select.is-danger select:active,html.theme--documenter-dark .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}html.theme--documenter-dark .select.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--documenter-dark .select.is-medium{font-size:1.25rem}html.theme--documenter-dark .select.is-large{font-size:1.5rem}html.theme--documenter-dark .select.is-disabled::after{border-color:#fff !important;opacity:0.5}html.theme--documenter-dark .select.is-fullwidth{width:100%}html.theme--documenter-dark .select.is-fullwidth select{width:100%}html.theme--documenter-dark .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--documenter-dark .select.is-loading.is-small:after,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--documenter-dark .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--documenter-dark .select.is-loading.is-large:after{font-size:1.5rem}html.theme--documenter-dark .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--documenter-dark .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-white:hover .file-cta,html.theme--documenter-dark .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-white:focus .file-cta,html.theme--documenter-dark .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--documenter-dark .file.is-white:active .file-cta,html.theme--documenter-dark .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-black:hover .file-cta,html.theme--documenter-dark .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-black:focus .file-cta,html.theme--documenter-dark .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--documenter-dark .file.is-black:active .file-cta,html.theme--documenter-dark .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-light .file-cta{background-color:#ecf0f1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-light:hover .file-cta,html.theme--documenter-dark .file.is-light.is-hovered .file-cta{background-color:#e5eaec;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-light:focus .file-cta,html.theme--documenter-dark .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(236,240,241,0.25);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-light:active .file-cta,html.theme--documenter-dark .file.is-light.is-active .file-cta{background-color:#dde4e6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-dark .file-cta,html.theme--documenter-dark .content kbd.file .file-cta{background-color:#282f2f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-dark:hover .file-cta,html.theme--documenter-dark .content kbd.file:hover .file-cta,html.theme--documenter-dark .file.is-dark.is-hovered .file-cta,html.theme--documenter-dark .content kbd.file.is-hovered .file-cta{background-color:#232829;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-dark:focus .file-cta,html.theme--documenter-dark .content kbd.file:focus .file-cta,html.theme--documenter-dark .file.is-dark.is-focused .file-cta,html.theme--documenter-dark .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(40,47,47,0.25);color:#fff}html.theme--documenter-dark .file.is-dark:active .file-cta,html.theme--documenter-dark .content kbd.file:active .file-cta,html.theme--documenter-dark .file.is-dark.is-active .file-cta,html.theme--documenter-dark .content kbd.file.is-active .file-cta{background-color:#1d2122;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#375a7f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary:hover .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--documenter-dark .file.is-primary.is-hovered .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#335476;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary:focus .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--documenter-dark .file.is-primary.is-focused .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(55,90,127,0.25);color:#fff}html.theme--documenter-dark .file.is-primary:active .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--documenter-dark .file.is-primary.is-active .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#2f4d6d;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link .file-cta{background-color:#1abc9c;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link:hover .file-cta,html.theme--documenter-dark .file.is-link.is-hovered .file-cta{background-color:#18b193;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link:focus .file-cta,html.theme--documenter-dark .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(26,188,156,0.25);color:#fff}html.theme--documenter-dark .file.is-link:active .file-cta,html.theme--documenter-dark .file.is-link.is-active .file-cta{background-color:#17a689;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info .file-cta{background-color:#3c5dcd;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info:hover .file-cta,html.theme--documenter-dark .file.is-info.is-hovered .file-cta{background-color:#3355c9;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info:focus .file-cta,html.theme--documenter-dark .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(60,93,205,0.25);color:#fff}html.theme--documenter-dark .file.is-info:active .file-cta,html.theme--documenter-dark .file.is-info.is-active .file-cta{background-color:#3151bf;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success .file-cta{background-color:#259a12;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success:hover .file-cta,html.theme--documenter-dark .file.is-success.is-hovered .file-cta{background-color:#228f11;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success:focus .file-cta,html.theme--documenter-dark .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(37,154,18,0.25);color:#fff}html.theme--documenter-dark .file.is-success:active .file-cta,html.theme--documenter-dark .file.is-success.is-active .file-cta{background-color:#20830f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-warning .file-cta{background-color:#f4c72f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-warning:hover .file-cta,html.theme--documenter-dark .file.is-warning.is-hovered .file-cta{background-color:#f3c423;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-warning:focus .file-cta,html.theme--documenter-dark .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(244,199,47,0.25);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-warning:active .file-cta,html.theme--documenter-dark .file.is-warning.is-active .file-cta{background-color:#f3c017;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-danger .file-cta{background-color:#cb3c33;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger:hover .file-cta,html.theme--documenter-dark .file.is-danger.is-hovered .file-cta{background-color:#c13930;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger:focus .file-cta,html.theme--documenter-dark .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(203,60,51,0.25);color:#fff}html.theme--documenter-dark .file.is-danger:active .file-cta,html.theme--documenter-dark .file.is-danger.is-active .file-cta{background-color:#b7362e;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--documenter-dark .file.is-normal{font-size:1rem}html.theme--documenter-dark .file.is-medium{font-size:1.25rem}html.theme--documenter-dark .file.is-medium .file-icon .fa{font-size:21px}html.theme--documenter-dark .file.is-large{font-size:1.5rem}html.theme--documenter-dark .file.is-large .file-icon .fa{font-size:28px}html.theme--documenter-dark .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--documenter-dark .file.has-name.is-empty .file-name{display:none}html.theme--documenter-dark .file.is-boxed .file-label{flex-direction:column}html.theme--documenter-dark .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--documenter-dark .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--documenter-dark .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--documenter-dark .file.is-boxed .file-icon .fa{font-size:21px}html.theme--documenter-dark .file.is-boxed.is-small .file-icon .fa,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--documenter-dark .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--documenter-dark .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--documenter-dark .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--documenter-dark .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--documenter-dark .file.is-centered{justify-content:center}html.theme--documenter-dark .file.is-fullwidth .file-label{width:100%}html.theme--documenter-dark .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--documenter-dark .file.is-right{justify-content:flex-end}html.theme--documenter-dark .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--documenter-dark .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--documenter-dark .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--documenter-dark .file-label:hover .file-cta{background-color:#232829;color:#f2f2f2}html.theme--documenter-dark .file-label:hover .file-name{border-color:#596668}html.theme--documenter-dark .file-label:active .file-cta{background-color:#1d2122;color:#f2f2f2}html.theme--documenter-dark .file-label:active .file-name{border-color:#535f61}html.theme--documenter-dark .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--documenter-dark .file-cta,html.theme--documenter-dark .file-name{border-color:#5e6d6f;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--documenter-dark .file-cta{background-color:#282f2f;color:#fff}html.theme--documenter-dark .file-name{border-color:#5e6d6f;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--documenter-dark .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--documenter-dark .file-icon .fa{font-size:14px}html.theme--documenter-dark .label{color:#f2f2f2;display:block;font-size:1rem;font-weight:700}html.theme--documenter-dark .label:not(:last-child){margin-bottom:0.5em}html.theme--documenter-dark .label.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--documenter-dark .label.is-medium{font-size:1.25rem}html.theme--documenter-dark .label.is-large{font-size:1.5rem}html.theme--documenter-dark .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--documenter-dark .help.is-white{color:#fff}html.theme--documenter-dark .help.is-black{color:#0a0a0a}html.theme--documenter-dark .help.is-light{color:#ecf0f1}html.theme--documenter-dark .help.is-dark,html.theme--documenter-dark .content kbd.help{color:#282f2f}html.theme--documenter-dark .help.is-primary,html.theme--documenter-dark .docstring>section>a.help.docs-sourcelink{color:#375a7f}html.theme--documenter-dark .help.is-link{color:#1abc9c}html.theme--documenter-dark .help.is-info{color:#3c5dcd}html.theme--documenter-dark .help.is-success{color:#259a12}html.theme--documenter-dark .help.is-warning{color:#f4c72f}html.theme--documenter-dark .help.is-danger{color:#cb3c33}html.theme--documenter-dark .field:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .field.has-addons{display:flex;justify-content:flex-start}html.theme--documenter-dark .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .button,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .input,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .button,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .input,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .button.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .button.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .input.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .input.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--documenter-dark .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .field.has-addons.has-addons-centered{justify-content:center}html.theme--documenter-dark .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--documenter-dark .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .field.is-grouped{display:flex;justify-content:flex-start}html.theme--documenter-dark .field.is-grouped>.control{flex-shrink:0}html.theme--documenter-dark .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--documenter-dark .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--documenter-dark .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--documenter-dark .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field.is-horizontal{display:flex}}html.theme--documenter-dark .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--documenter-dark .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--documenter-dark .field-label.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--documenter-dark .field-label.is-normal{padding-top:0.375em}html.theme--documenter-dark .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--documenter-dark .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--documenter-dark .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--documenter-dark .field-body .field{margin-bottom:0}html.theme--documenter-dark .field-body>.field{flex-shrink:1}html.theme--documenter-dark .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--documenter-dark .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--documenter-dark .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--documenter-dark .control.has-icons-left .input:focus~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--documenter-dark .control.has-icons-left .select:focus~.icon,html.theme--documenter-dark .control.has-icons-right .input:focus~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--documenter-dark .control.has-icons-right .select:focus~.icon{color:#282f2f}html.theme--documenter-dark .control.has-icons-left .input.is-small~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-small~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-small~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--documenter-dark .control.has-icons-left .input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--documenter-dark .control.has-icons-left .input.is-large~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-large~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-large~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--documenter-dark .control.has-icons-left .icon,html.theme--documenter-dark .control.has-icons-right .icon{color:#5e6d6f;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--documenter-dark .control.has-icons-left .input,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--documenter-dark .control.has-icons-left .select select{padding-left:2.5em}html.theme--documenter-dark .control.has-icons-left .icon.is-left{left:0}html.theme--documenter-dark .control.has-icons-right .input,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--documenter-dark .control.has-icons-right .select select{padding-right:2.5em}html.theme--documenter-dark .control.has-icons-right .icon.is-right{right:0}html.theme--documenter-dark .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--documenter-dark .control.is-loading.is-small:after,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--documenter-dark .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--documenter-dark .control.is-loading.is-large:after{font-size:1.5rem}html.theme--documenter-dark .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--documenter-dark .breadcrumb a{align-items:center;color:#1abc9c;display:flex;justify-content:center;padding:0 .75em}html.theme--documenter-dark .breadcrumb a:hover{color:#1dd2af}html.theme--documenter-dark .breadcrumb li{align-items:center;display:flex}html.theme--documenter-dark .breadcrumb li:first-child a{padding-left:0}html.theme--documenter-dark .breadcrumb li.is-active a{color:#f2f2f2;cursor:default;pointer-events:none}html.theme--documenter-dark .breadcrumb li+li::before{color:#8c9b9d;content:"\0002f"}html.theme--documenter-dark .breadcrumb ul,html.theme--documenter-dark .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .breadcrumb .icon:first-child{margin-right:.5em}html.theme--documenter-dark .breadcrumb .icon:last-child{margin-left:.5em}html.theme--documenter-dark .breadcrumb.is-centered ol,html.theme--documenter-dark .breadcrumb.is-centered ul{justify-content:center}html.theme--documenter-dark .breadcrumb.is-right ol,html.theme--documenter-dark .breadcrumb.is-right ul{justify-content:flex-end}html.theme--documenter-dark .breadcrumb.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--documenter-dark .breadcrumb.is-medium{font-size:1.25rem}html.theme--documenter-dark .breadcrumb.is-large{font-size:1.5rem}html.theme--documenter-dark .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--documenter-dark .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--documenter-dark .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--documenter-dark .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--documenter-dark .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#fff;max-width:100%;position:relative}html.theme--documenter-dark .card-footer:first-child,html.theme--documenter-dark .card-content:first-child,html.theme--documenter-dark .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--documenter-dark .card-footer:last-child,html.theme--documenter-dark .card-content:last-child,html.theme--documenter-dark .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--documenter-dark .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--documenter-dark .card-header-title{align-items:center;color:#f2f2f2;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--documenter-dark .card-header-title.is-centered{justify-content:center}html.theme--documenter-dark .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--documenter-dark .card-image{display:block;position:relative}html.theme--documenter-dark .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--documenter-dark .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--documenter-dark .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--documenter-dark .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--documenter-dark .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--documenter-dark .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--documenter-dark .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--documenter-dark .dropdown.is-active .dropdown-menu,html.theme--documenter-dark .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--documenter-dark .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--documenter-dark .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--documenter-dark .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--documenter-dark .dropdown-content{background-color:#282f2f;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--documenter-dark .dropdown-item{color:#fff;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--documenter-dark a.dropdown-item,html.theme--documenter-dark button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--documenter-dark a.dropdown-item:hover,html.theme--documenter-dark button.dropdown-item:hover{background-color:#282f2f;color:#0a0a0a}html.theme--documenter-dark a.dropdown-item.is-active,html.theme--documenter-dark button.dropdown-item.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--documenter-dark .level{align-items:center;justify-content:space-between}html.theme--documenter-dark .level code{border-radius:.4em}html.theme--documenter-dark .level img{display:inline-block;vertical-align:top}html.theme--documenter-dark .level.is-mobile{display:flex}html.theme--documenter-dark .level.is-mobile .level-left,html.theme--documenter-dark .level.is-mobile .level-right{display:flex}html.theme--documenter-dark .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--documenter-dark .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--documenter-dark .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level{display:flex}html.theme--documenter-dark .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--documenter-dark .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--documenter-dark .level-item .title,html.theme--documenter-dark .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--documenter-dark .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--documenter-dark .level-left,html.theme--documenter-dark .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .level-left .level-item.is-flexible,html.theme--documenter-dark .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-left .level-item:not(:last-child),html.theme--documenter-dark .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--documenter-dark .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--documenter-dark .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-left{display:flex}}html.theme--documenter-dark .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-right{display:flex}}html.theme--documenter-dark .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--documenter-dark .media .content:not(:last-child){margin-bottom:.75rem}html.theme--documenter-dark .media .media{border-top:1px solid rgba(94,109,111,0.5);display:flex;padding-top:.75rem}html.theme--documenter-dark .media .media .content:not(:last-child),html.theme--documenter-dark .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--documenter-dark .media .media .media{padding-top:.5rem}html.theme--documenter-dark .media .media .media+.media{margin-top:.5rem}html.theme--documenter-dark .media+.media{border-top:1px solid rgba(94,109,111,0.5);margin-top:1rem;padding-top:1rem}html.theme--documenter-dark .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--documenter-dark .media-left,html.theme--documenter-dark .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .media-left{margin-right:1rem}html.theme--documenter-dark .media-right{margin-left:1rem}html.theme--documenter-dark .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--documenter-dark .media-content{overflow-x:auto}}html.theme--documenter-dark .menu{font-size:1rem}html.theme--documenter-dark .menu.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--documenter-dark .menu.is-medium{font-size:1.25rem}html.theme--documenter-dark .menu.is-large{font-size:1.5rem}html.theme--documenter-dark .menu-list{line-height:1.25}html.theme--documenter-dark .menu-list a{border-radius:3px;color:#fff;display:block;padding:0.5em 0.75em}html.theme--documenter-dark .menu-list a:hover{background-color:#282f2f;color:#f2f2f2}html.theme--documenter-dark .menu-list a.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .menu-list li ul{border-left:1px solid #5e6d6f;margin:.75em;padding-left:.75em}html.theme--documenter-dark .menu-label{color:#fff;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--documenter-dark .menu-label:not(:first-child){margin-top:1em}html.theme--documenter-dark .menu-label:not(:last-child){margin-bottom:1em}html.theme--documenter-dark .message{background-color:#282f2f;border-radius:.4em;font-size:1rem}html.theme--documenter-dark .message strong{color:currentColor}html.theme--documenter-dark .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--documenter-dark .message.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--documenter-dark .message.is-medium{font-size:1.25rem}html.theme--documenter-dark .message.is-large{font-size:1.5rem}html.theme--documenter-dark .message.is-white{background-color:#fff}html.theme--documenter-dark .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .message.is-white .message-body{border-color:#fff}html.theme--documenter-dark .message.is-black{background-color:#fafafa}html.theme--documenter-dark .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .message.is-black .message-body{border-color:#0a0a0a}html.theme--documenter-dark .message.is-light{background-color:#f9fafb}html.theme--documenter-dark .message.is-light .message-header{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .message.is-light .message-body{border-color:#ecf0f1}html.theme--documenter-dark .message.is-dark,html.theme--documenter-dark .content kbd.message{background-color:#f9fafa}html.theme--documenter-dark .message.is-dark .message-header,html.theme--documenter-dark .content kbd.message .message-header{background-color:#282f2f;color:#fff}html.theme--documenter-dark .message.is-dark .message-body,html.theme--documenter-dark .content kbd.message .message-body{border-color:#282f2f}html.theme--documenter-dark .message.is-primary,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink{background-color:#f1f5f9}html.theme--documenter-dark .message.is-primary .message-header,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink .message-header{background-color:#375a7f;color:#fff}html.theme--documenter-dark .message.is-primary .message-body,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink .message-body{border-color:#375a7f;color:#4d7eb2}html.theme--documenter-dark .message.is-link{background-color:#edfdf9}html.theme--documenter-dark .message.is-link .message-header{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .message.is-link .message-body{border-color:#1abc9c;color:#15987e}html.theme--documenter-dark .message.is-info{background-color:#eff2fb}html.theme--documenter-dark .message.is-info .message-header{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .message.is-info .message-body{border-color:#3c5dcd;color:#3253c3}html.theme--documenter-dark .message.is-success{background-color:#effded}html.theme--documenter-dark .message.is-success .message-header{background-color:#259a12;color:#fff}html.theme--documenter-dark .message.is-success .message-body{border-color:#259a12;color:#2ec016}html.theme--documenter-dark .message.is-warning{background-color:#fefaec}html.theme--documenter-dark .message.is-warning .message-header{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .message.is-warning .message-body{border-color:#f4c72f;color:#8c6e07}html.theme--documenter-dark .message.is-danger{background-color:#fbefef}html.theme--documenter-dark .message.is-danger .message-header{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .message.is-danger .message-body{border-color:#cb3c33;color:#c03930}html.theme--documenter-dark .message-header{align-items:center;background-color:#fff;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--documenter-dark .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--documenter-dark .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--documenter-dark .message-body{border-color:#5e6d6f;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#fff;padding:1.25em 1.5em}html.theme--documenter-dark .message-body code,html.theme--documenter-dark .message-body pre{background-color:#fff}html.theme--documenter-dark .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--documenter-dark .modal.is-active{display:flex}html.theme--documenter-dark .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--documenter-dark .modal-content,html.theme--documenter-dark .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--documenter-dark .modal-content,html.theme--documenter-dark .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--documenter-dark .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--documenter-dark .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--documenter-dark .modal-card-head,html.theme--documenter-dark .modal-card-foot{align-items:center;background-color:#282f2f;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--documenter-dark .modal-card-head{border-bottom:1px solid #5e6d6f;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--documenter-dark .modal-card-title{color:#f2f2f2;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--documenter-dark .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #5e6d6f}html.theme--documenter-dark .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--documenter-dark .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--documenter-dark .navbar{background-color:#375a7f;min-height:4rem;position:relative;z-index:30}html.theme--documenter-dark .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-white .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--documenter-dark .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-black .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--documenter-dark .navbar.is-light{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-light .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}}html.theme--documenter-dark .navbar.is-dark,html.theme--documenter-dark .content kbd.navbar{background-color:#282f2f;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-brand>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#1d2122;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-burger,html.theme--documenter-dark .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-dark .navbar-start>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-end>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#1d2122;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#1d2122;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#282f2f;color:#fff}}html.theme--documenter-dark .navbar.is-primary,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-burger,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-primary .navbar-start>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-end>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#375a7f;color:#fff}}html.theme--documenter-dark .navbar.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-link .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#1abc9c;color:#fff}}html.theme--documenter-dark .navbar.is-info{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3151bf;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-info .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3151bf;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3151bf;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3c5dcd;color:#fff}}html.theme--documenter-dark .navbar.is-success{background-color:#259a12;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#20830f;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-success .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#20830f;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#20830f;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#259a12;color:#fff}}html.theme--documenter-dark .navbar.is-warning{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-warning .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#f4c72f;color:rgba(0,0,0,0.7)}}html.theme--documenter-dark .navbar.is-danger{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#b7362e;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-danger .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#b7362e;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#b7362e;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#cb3c33;color:#fff}}html.theme--documenter-dark .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--documenter-dark .navbar.has-shadow{box-shadow:0 2px 0 0 #282f2f}html.theme--documenter-dark .navbar.is-fixed-bottom,html.theme--documenter-dark .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #282f2f}html.theme--documenter-dark .navbar.is-fixed-top{top:0}html.theme--documenter-dark html.has-navbar-fixed-top,html.theme--documenter-dark body.has-navbar-fixed-top{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom,html.theme--documenter-dark body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--documenter-dark .navbar-brand,html.theme--documenter-dark .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--documenter-dark .navbar-brand a.navbar-item:focus,html.theme--documenter-dark .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--documenter-dark .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--documenter-dark .navbar-burger{color:#fff;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--documenter-dark .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--documenter-dark .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--documenter-dark .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--documenter-dark .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--documenter-dark .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--documenter-dark .navbar-menu{display:none}html.theme--documenter-dark .navbar-item,html.theme--documenter-dark .navbar-link{color:#fff;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--documenter-dark .navbar-item .icon:only-child,html.theme--documenter-dark .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--documenter-dark a.navbar-item,html.theme--documenter-dark .navbar-link{cursor:pointer}html.theme--documenter-dark a.navbar-item:focus,html.theme--documenter-dark a.navbar-item:focus-within,html.theme--documenter-dark a.navbar-item:hover,html.theme--documenter-dark a.navbar-item.is-active,html.theme--documenter-dark .navbar-link:focus,html.theme--documenter-dark .navbar-link:focus-within,html.theme--documenter-dark .navbar-link:hover,html.theme--documenter-dark .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}html.theme--documenter-dark .navbar-item{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .navbar-item img{max-height:1.75rem}html.theme--documenter-dark .navbar-item.has-dropdown{padding:0}html.theme--documenter-dark .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--documenter-dark .navbar-item.is-tab:focus,html.theme--documenter-dark .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#1abc9c}html.theme--documenter-dark .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#1abc9c;border-bottom-style:solid;border-bottom-width:3px;color:#1abc9c;padding-bottom:calc(0.5rem - 3px)}html.theme--documenter-dark .navbar-content{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--documenter-dark .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--documenter-dark .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--documenter-dark .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--documenter-dark .navbar>.container{display:block}html.theme--documenter-dark .navbar-brand .navbar-item,html.theme--documenter-dark .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--documenter-dark .navbar-link::after{display:none}html.theme--documenter-dark .navbar-menu{background-color:#375a7f;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--documenter-dark .navbar-menu.is-active{display:block}html.theme--documenter-dark .navbar.is-fixed-bottom-touch,html.theme--documenter-dark .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom-touch{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--documenter-dark .navbar.is-fixed-top-touch{top:0}html.theme--documenter-dark .navbar.is-fixed-top .navbar-menu,html.theme--documenter-dark .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--documenter-dark html.has-navbar-fixed-top-touch,html.theme--documenter-dark body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom-touch,html.theme--documenter-dark body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar,html.theme--documenter-dark .navbar-menu,html.theme--documenter-dark .navbar-start,html.theme--documenter-dark .navbar-end{align-items:stretch;display:flex}html.theme--documenter-dark .navbar{min-height:4rem}html.theme--documenter-dark .navbar.is-spaced{padding:1rem 2rem}html.theme--documenter-dark .navbar.is-spaced .navbar-start,html.theme--documenter-dark .navbar.is-spaced .navbar-end{align-items:center}html.theme--documenter-dark .navbar.is-spaced a.navbar-item,html.theme--documenter-dark .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--documenter-dark .navbar.is-transparent a.navbar-item:focus,html.theme--documenter-dark .navbar.is-transparent a.navbar-item:hover,html.theme--documenter-dark .navbar.is-transparent a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-transparent .navbar-link:focus,html.theme--documenter-dark .navbar.is-transparent .navbar-link:hover,html.theme--documenter-dark .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}html.theme--documenter-dark .navbar-burger{display:none}html.theme--documenter-dark .navbar-item,html.theme--documenter-dark .navbar-link{align-items:center;display:flex}html.theme--documenter-dark .navbar-item.has-dropdown{align-items:stretch}html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--documenter-dark .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--documenter-dark .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--documenter-dark .navbar-dropdown{background-color:#375a7f;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--documenter-dark .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--documenter-dark .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--documenter-dark .navbar-dropdown a.navbar-item:focus,html.theme--documenter-dark .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}.navbar.is-spaced html.theme--documenter-dark .navbar-dropdown,html.theme--documenter-dark .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--documenter-dark .navbar-dropdown.is-right{left:auto;right:0}html.theme--documenter-dark .navbar-divider{display:block}html.theme--documenter-dark .navbar>.container .navbar-brand,html.theme--documenter-dark .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--documenter-dark .navbar>.container .navbar-menu,html.theme--documenter-dark .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop,html.theme--documenter-dark .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--documenter-dark .navbar.is-fixed-top-desktop{top:0}html.theme--documenter-dark html.has-navbar-fixed-top-desktop,html.theme--documenter-dark body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom-desktop,html.theme--documenter-dark body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--documenter-dark html.has-spaced-navbar-fixed-top,html.theme--documenter-dark body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--documenter-dark html.has-spaced-navbar-fixed-bottom,html.theme--documenter-dark body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--documenter-dark a.navbar-item.is-active,html.theme--documenter-dark .navbar-link.is-active{color:#1abc9c}html.theme--documenter-dark a.navbar-item.is-active:not(:focus):not(:hover),html.theme--documenter-dark .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--documenter-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--documenter-dark .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--documenter-dark .pagination{font-size:1rem;margin:-.25rem}html.theme--documenter-dark .pagination.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--documenter-dark .pagination.is-medium{font-size:1.25rem}html.theme--documenter-dark .pagination.is-large{font-size:1.5rem}html.theme--documenter-dark .pagination.is-rounded .pagination-previous,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--documenter-dark .pagination.is-rounded .pagination-next,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--documenter-dark .pagination.is-rounded .pagination-link,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--documenter-dark .pagination,html.theme--documenter-dark .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link{border-color:#5e6d6f;color:#1abc9c;min-width:2.5em}html.theme--documenter-dark .pagination-previous:hover,html.theme--documenter-dark .pagination-next:hover,html.theme--documenter-dark .pagination-link:hover{border-color:#8c9b9d;color:#1dd2af}html.theme--documenter-dark .pagination-previous:focus,html.theme--documenter-dark .pagination-next:focus,html.theme--documenter-dark .pagination-link:focus{border-color:#8c9b9d}html.theme--documenter-dark .pagination-previous:active,html.theme--documenter-dark .pagination-next:active,html.theme--documenter-dark .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--documenter-dark .pagination-previous[disabled],html.theme--documenter-dark .pagination-previous.is-disabled,html.theme--documenter-dark .pagination-next[disabled],html.theme--documenter-dark .pagination-next.is-disabled,html.theme--documenter-dark .pagination-link[disabled],html.theme--documenter-dark .pagination-link.is-disabled{background-color:#5e6d6f;border-color:#5e6d6f;box-shadow:none;color:#fff;opacity:0.5}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--documenter-dark .pagination-link.is-current{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .pagination-ellipsis{color:#8c9b9d;pointer-events:none}html.theme--documenter-dark .pagination-list{flex-wrap:wrap}html.theme--documenter-dark .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--documenter-dark .pagination{flex-wrap:wrap}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--documenter-dark .pagination-previous{order:2}html.theme--documenter-dark .pagination-next{order:3}html.theme--documenter-dark .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--documenter-dark .pagination.is-centered .pagination-previous{order:1}html.theme--documenter-dark .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--documenter-dark .pagination.is-centered .pagination-next{order:3}html.theme--documenter-dark .pagination.is-right .pagination-previous{order:1}html.theme--documenter-dark .pagination.is-right .pagination-next{order:2}html.theme--documenter-dark .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--documenter-dark .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--documenter-dark .panel:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--documenter-dark .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--documenter-dark .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--documenter-dark .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--documenter-dark .panel.is-light .panel-heading{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .panel.is-light .panel-tabs a.is-active{border-bottom-color:#ecf0f1}html.theme--documenter-dark .panel.is-light .panel-block.is-active .panel-icon{color:#ecf0f1}html.theme--documenter-dark .panel.is-dark .panel-heading,html.theme--documenter-dark .content kbd.panel .panel-heading{background-color:#282f2f;color:#fff}html.theme--documenter-dark .panel.is-dark .panel-tabs a.is-active,html.theme--documenter-dark .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#282f2f}html.theme--documenter-dark .panel.is-dark .panel-block.is-active .panel-icon,html.theme--documenter-dark .content kbd.panel .panel-block.is-active .panel-icon{color:#282f2f}html.theme--documenter-dark .panel.is-primary .panel-heading,html.theme--documenter-dark .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#375a7f;color:#fff}html.theme--documenter-dark .panel.is-primary .panel-tabs a.is-active,html.theme--documenter-dark .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#375a7f}html.theme--documenter-dark .panel.is-primary .panel-block.is-active .panel-icon,html.theme--documenter-dark .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#375a7f}html.theme--documenter-dark .panel.is-link .panel-heading{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .panel.is-link .panel-tabs a.is-active{border-bottom-color:#1abc9c}html.theme--documenter-dark .panel.is-link .panel-block.is-active .panel-icon{color:#1abc9c}html.theme--documenter-dark .panel.is-info .panel-heading{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .panel.is-info .panel-tabs a.is-active{border-bottom-color:#3c5dcd}html.theme--documenter-dark .panel.is-info .panel-block.is-active .panel-icon{color:#3c5dcd}html.theme--documenter-dark .panel.is-success .panel-heading{background-color:#259a12;color:#fff}html.theme--documenter-dark .panel.is-success .panel-tabs a.is-active{border-bottom-color:#259a12}html.theme--documenter-dark .panel.is-success .panel-block.is-active .panel-icon{color:#259a12}html.theme--documenter-dark .panel.is-warning .panel-heading{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#f4c72f}html.theme--documenter-dark .panel.is-warning .panel-block.is-active .panel-icon{color:#f4c72f}html.theme--documenter-dark .panel.is-danger .panel-heading{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#cb3c33}html.theme--documenter-dark .panel.is-danger .panel-block.is-active .panel-icon{color:#cb3c33}html.theme--documenter-dark .panel-tabs:not(:last-child),html.theme--documenter-dark .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--documenter-dark .panel-heading{background-color:#343c3d;border-radius:8px 8px 0 0;color:#f2f2f2;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--documenter-dark .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--documenter-dark .panel-tabs a{border-bottom:1px solid #5e6d6f;margin-bottom:-1px;padding:0.5em}html.theme--documenter-dark .panel-tabs a.is-active{border-bottom-color:#343c3d;color:#17a689}html.theme--documenter-dark .panel-list a{color:#fff}html.theme--documenter-dark .panel-list a:hover{color:#1abc9c}html.theme--documenter-dark .panel-block{align-items:center;color:#f2f2f2;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--documenter-dark .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--documenter-dark .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--documenter-dark .panel-block.is-wrapped{flex-wrap:wrap}html.theme--documenter-dark .panel-block.is-active{border-left-color:#1abc9c;color:#17a689}html.theme--documenter-dark .panel-block.is-active .panel-icon{color:#1abc9c}html.theme--documenter-dark .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--documenter-dark a.panel-block,html.theme--documenter-dark label.panel-block{cursor:pointer}html.theme--documenter-dark a.panel-block:hover,html.theme--documenter-dark label.panel-block:hover{background-color:#282f2f}html.theme--documenter-dark .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#fff;margin-right:.75em}html.theme--documenter-dark .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--documenter-dark .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--documenter-dark .tabs a{align-items:center;border-bottom-color:#5e6d6f;border-bottom-style:solid;border-bottom-width:1px;color:#fff;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--documenter-dark .tabs a:hover{border-bottom-color:#f2f2f2;color:#f2f2f2}html.theme--documenter-dark .tabs li{display:block}html.theme--documenter-dark .tabs li.is-active a{border-bottom-color:#1abc9c;color:#1abc9c}html.theme--documenter-dark .tabs ul{align-items:center;border-bottom-color:#5e6d6f;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--documenter-dark .tabs ul.is-left{padding-right:0.75em}html.theme--documenter-dark .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--documenter-dark .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--documenter-dark .tabs .icon:first-child{margin-right:.5em}html.theme--documenter-dark .tabs .icon:last-child{margin-left:.5em}html.theme--documenter-dark .tabs.is-centered ul{justify-content:center}html.theme--documenter-dark .tabs.is-right ul{justify-content:flex-end}html.theme--documenter-dark .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--documenter-dark .tabs.is-boxed a:hover{background-color:#282f2f;border-bottom-color:#5e6d6f}html.theme--documenter-dark .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#5e6d6f;border-bottom-color:rgba(0,0,0,0) !important}html.theme--documenter-dark .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .tabs.is-toggle a{border-color:#5e6d6f;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--documenter-dark .tabs.is-toggle a:hover{background-color:#282f2f;border-color:#8c9b9d;z-index:2}html.theme--documenter-dark .tabs.is-toggle li+li{margin-left:-1px}html.theme--documenter-dark .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--documenter-dark .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--documenter-dark .tabs.is-toggle li.is-active a{background-color:#1abc9c;border-color:#1abc9c;color:#fff;z-index:1}html.theme--documenter-dark .tabs.is-toggle ul{border-bottom:none}html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--documenter-dark .tabs.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--documenter-dark .tabs.is-medium{font-size:1.25rem}html.theme--documenter-dark .tabs.is-large{font-size:1.5rem}html.theme--documenter-dark .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--documenter-dark .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--documenter-dark .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--documenter-dark .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--documenter-dark .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--documenter-dark .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--documenter-dark .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--documenter-dark .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--documenter-dark .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--documenter-dark .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--documenter-dark .column.is-narrow-mobile{flex:none;width:unset}html.theme--documenter-dark .column.is-full-mobile{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-mobile{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-mobile{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--documenter-dark .column.is-0-mobile{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-mobile{margin-left:0%}html.theme--documenter-dark .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-mobile{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-mobile{margin-left:25%}html.theme--documenter-dark .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-mobile{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-mobile{margin-left:50%}html.theme--documenter-dark .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-mobile{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-mobile{margin-left:75%}html.theme--documenter-dark .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-mobile{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .column.is-narrow,html.theme--documenter-dark .column.is-narrow-tablet{flex:none;width:unset}html.theme--documenter-dark .column.is-full,html.theme--documenter-dark .column.is-full-tablet{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters,html.theme--documenter-dark .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds,html.theme--documenter-dark .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half,html.theme--documenter-dark .column.is-half-tablet{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third,html.theme--documenter-dark .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter,html.theme--documenter-dark .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth,html.theme--documenter-dark .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths,html.theme--documenter-dark .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths,html.theme--documenter-dark .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths,html.theme--documenter-dark .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters,html.theme--documenter-dark .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds,html.theme--documenter-dark .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half,html.theme--documenter-dark .column.is-offset-half-tablet{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third,html.theme--documenter-dark .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter,html.theme--documenter-dark .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth,html.theme--documenter-dark .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths,html.theme--documenter-dark .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths,html.theme--documenter-dark .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths,html.theme--documenter-dark .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--documenter-dark .column.is-0,html.theme--documenter-dark .column.is-0-tablet{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0,html.theme--documenter-dark .column.is-offset-0-tablet{margin-left:0%}html.theme--documenter-dark .column.is-1,html.theme--documenter-dark .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1,html.theme--documenter-dark .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2,html.theme--documenter-dark .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2,html.theme--documenter-dark .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3,html.theme--documenter-dark .column.is-3-tablet{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3,html.theme--documenter-dark .column.is-offset-3-tablet{margin-left:25%}html.theme--documenter-dark .column.is-4,html.theme--documenter-dark .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4,html.theme--documenter-dark .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5,html.theme--documenter-dark .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5,html.theme--documenter-dark .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6,html.theme--documenter-dark .column.is-6-tablet{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6,html.theme--documenter-dark .column.is-offset-6-tablet{margin-left:50%}html.theme--documenter-dark .column.is-7,html.theme--documenter-dark .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7,html.theme--documenter-dark .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8,html.theme--documenter-dark .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8,html.theme--documenter-dark .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9,html.theme--documenter-dark .column.is-9-tablet{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9,html.theme--documenter-dark .column.is-offset-9-tablet{margin-left:75%}html.theme--documenter-dark .column.is-10,html.theme--documenter-dark .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10,html.theme--documenter-dark .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11,html.theme--documenter-dark .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11,html.theme--documenter-dark .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12,html.theme--documenter-dark .column.is-12-tablet{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12,html.theme--documenter-dark .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--documenter-dark .column.is-narrow-touch{flex:none;width:unset}html.theme--documenter-dark .column.is-full-touch{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-touch{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-touch{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-touch{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-touch{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-touch{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-touch{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-touch{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-touch{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--documenter-dark .column.is-0-touch{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-touch{margin-left:0%}html.theme--documenter-dark .column.is-1-touch{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-touch{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-touch{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-touch{margin-left:25%}html.theme--documenter-dark .column.is-4-touch{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-touch{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-touch{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-touch{margin-left:50%}html.theme--documenter-dark .column.is-7-touch{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-touch{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-touch{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-touch{margin-left:75%}html.theme--documenter-dark .column.is-10-touch{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-touch{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-touch{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--documenter-dark .column.is-narrow-desktop{flex:none;width:unset}html.theme--documenter-dark .column.is-full-desktop{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-desktop{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-desktop{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--documenter-dark .column.is-0-desktop{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-desktop{margin-left:0%}html.theme--documenter-dark .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-desktop{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-desktop{margin-left:25%}html.theme--documenter-dark .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-desktop{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-desktop{margin-left:50%}html.theme--documenter-dark .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-desktop{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-desktop{margin-left:75%}html.theme--documenter-dark .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-desktop{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--documenter-dark .column.is-narrow-widescreen{flex:none;width:unset}html.theme--documenter-dark .column.is-full-widescreen{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-widescreen{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-widescreen{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--documenter-dark .column.is-0-widescreen{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-widescreen{margin-left:0%}html.theme--documenter-dark .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-widescreen{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-widescreen{margin-left:25%}html.theme--documenter-dark .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-widescreen{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-widescreen{margin-left:50%}html.theme--documenter-dark .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-widescreen{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-widescreen{margin-left:75%}html.theme--documenter-dark .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-widescreen{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--documenter-dark .column.is-narrow-fullhd{flex:none;width:unset}html.theme--documenter-dark .column.is-full-fullhd{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-fullhd{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-fullhd{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--documenter-dark .column.is-0-fullhd{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-fullhd{margin-left:0%}html.theme--documenter-dark .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-fullhd{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-fullhd{margin-left:25%}html.theme--documenter-dark .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-fullhd{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-fullhd{margin-left:50%}html.theme--documenter-dark .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-fullhd{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-fullhd{margin-left:75%}html.theme--documenter-dark .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-fullhd{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-fullhd{margin-left:100%}}html.theme--documenter-dark .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--documenter-dark .columns:last-child{margin-bottom:-.75rem}html.theme--documenter-dark .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--documenter-dark .columns.is-centered{justify-content:center}html.theme--documenter-dark .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--documenter-dark .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--documenter-dark .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .columns.is-gapless:last-child{margin-bottom:0}html.theme--documenter-dark .columns.is-mobile{display:flex}html.theme--documenter-dark .columns.is-multiline{flex-wrap:wrap}html.theme--documenter-dark .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-desktop{display:flex}}html.theme--documenter-dark .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--documenter-dark .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--documenter-dark .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--documenter-dark .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--documenter-dark .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--documenter-dark .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--documenter-dark .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--documenter-dark .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--documenter-dark .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--documenter-dark .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--documenter-dark .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--documenter-dark .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--documenter-dark .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--documenter-dark .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--documenter-dark .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--documenter-dark .tile.is-child{margin:0 !important}html.theme--documenter-dark .tile.is-parent{padding:.75rem}html.theme--documenter-dark .tile.is-vertical{flex-direction:column}html.theme--documenter-dark .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--documenter-dark .tile:not(.is-child){display:flex}html.theme--documenter-dark .tile.is-1{flex:none;width:8.33333337%}html.theme--documenter-dark .tile.is-2{flex:none;width:16.66666674%}html.theme--documenter-dark .tile.is-3{flex:none;width:25%}html.theme--documenter-dark .tile.is-4{flex:none;width:33.33333337%}html.theme--documenter-dark .tile.is-5{flex:none;width:41.66666674%}html.theme--documenter-dark .tile.is-6{flex:none;width:50%}html.theme--documenter-dark .tile.is-7{flex:none;width:58.33333337%}html.theme--documenter-dark .tile.is-8{flex:none;width:66.66666674%}html.theme--documenter-dark .tile.is-9{flex:none;width:75%}html.theme--documenter-dark .tile.is-10{flex:none;width:83.33333337%}html.theme--documenter-dark .tile.is-11{flex:none;width:91.66666674%}html.theme--documenter-dark .tile.is-12{flex:none;width:100%}}html.theme--documenter-dark .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--documenter-dark .hero .navbar{background:none}html.theme--documenter-dark .hero .tabs ul{border-bottom:none}html.theme--documenter-dark .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-white strong{color:inherit}html.theme--documenter-dark .hero.is-white .title{color:#0a0a0a}html.theme--documenter-dark .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--documenter-dark .hero.is-white .subtitle a:not(.button),html.theme--documenter-dark .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-white .navbar-menu{background-color:#fff}}html.theme--documenter-dark .hero.is-white .navbar-item,html.theme--documenter-dark .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--documenter-dark .hero.is-white a.navbar-item:hover,html.theme--documenter-dark .hero.is-white a.navbar-item.is-active,html.theme--documenter-dark .hero.is-white .navbar-link:hover,html.theme--documenter-dark .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--documenter-dark .hero.is-white .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--documenter-dark .hero.is-white .tabs.is-boxed a,html.theme--documenter-dark .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--documenter-dark .hero.is-white .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--documenter-dark .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-black strong{color:inherit}html.theme--documenter-dark .hero.is-black .title{color:#fff}html.theme--documenter-dark .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-black .subtitle a:not(.button),html.theme--documenter-dark .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--documenter-dark .hero.is-black .navbar-item,html.theme--documenter-dark .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-black a.navbar-item:hover,html.theme--documenter-dark .hero.is-black a.navbar-item.is-active,html.theme--documenter-dark .hero.is-black .navbar-link:hover,html.theme--documenter-dark .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-black .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--documenter-dark .hero.is-black .tabs.is-boxed a,html.theme--documenter-dark .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-black .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--documenter-dark .hero.is-light{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-light strong{color:inherit}html.theme--documenter-dark .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--documenter-dark .hero.is-light .subtitle a:not(.button),html.theme--documenter-dark .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-light .navbar-menu{background-color:#ecf0f1}}html.theme--documenter-dark .hero.is-light .navbar-item,html.theme--documenter-dark .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light a.navbar-item:hover,html.theme--documenter-dark .hero.is-light a.navbar-item.is-active,html.theme--documenter-dark .hero.is-light .navbar-link:hover,html.theme--documenter-dark .hero.is-light .navbar-link.is-active{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--documenter-dark .hero.is-light .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-light .tabs li.is-active a{color:#ecf0f1 !important;opacity:1}html.theme--documenter-dark .hero.is-light .tabs.is-boxed a,html.theme--documenter-dark .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#ecf0f1}html.theme--documenter-dark .hero.is-light.is-bold{background-image:linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%)}}html.theme--documenter-dark .hero.is-dark,html.theme--documenter-dark .content kbd.hero{background-color:#282f2f;color:#fff}html.theme--documenter-dark .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-dark strong,html.theme--documenter-dark .content kbd.hero strong{color:inherit}html.theme--documenter-dark .hero.is-dark .title,html.theme--documenter-dark .content kbd.hero .title{color:#fff}html.theme--documenter-dark .hero.is-dark .subtitle,html.theme--documenter-dark .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-dark .subtitle a:not(.button),html.theme--documenter-dark .content kbd.hero .subtitle a:not(.button),html.theme--documenter-dark .hero.is-dark .subtitle strong,html.theme--documenter-dark .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-dark .navbar-menu,html.theme--documenter-dark .content kbd.hero .navbar-menu{background-color:#282f2f}}html.theme--documenter-dark .hero.is-dark .navbar-item,html.theme--documenter-dark .content kbd.hero .navbar-item,html.theme--documenter-dark .hero.is-dark .navbar-link,html.theme--documenter-dark .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-dark a.navbar-item:hover,html.theme--documenter-dark .content kbd.hero a.navbar-item:hover,html.theme--documenter-dark .hero.is-dark a.navbar-item.is-active,html.theme--documenter-dark .content kbd.hero a.navbar-item.is-active,html.theme--documenter-dark .hero.is-dark .navbar-link:hover,html.theme--documenter-dark .content kbd.hero .navbar-link:hover,html.theme--documenter-dark .hero.is-dark .navbar-link.is-active,html.theme--documenter-dark .content kbd.hero .navbar-link.is-active{background-color:#1d2122;color:#fff}html.theme--documenter-dark .hero.is-dark .tabs a,html.theme--documenter-dark .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-dark .tabs a:hover,html.theme--documenter-dark .content kbd.hero .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-dark .tabs li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs li.is-active a{color:#282f2f !important;opacity:1}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a:hover,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a:hover,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#282f2f}html.theme--documenter-dark .hero.is-dark.is-bold,html.theme--documenter-dark .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-dark.is-bold .navbar-menu,html.theme--documenter-dark .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%)}}html.theme--documenter-dark .hero.is-primary,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-primary strong,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--documenter-dark .hero.is-primary .title,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--documenter-dark .hero.is-primary .subtitle,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-primary .subtitle a:not(.button),html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--documenter-dark .hero.is-primary .subtitle strong,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-primary .navbar-menu,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#375a7f}}html.theme--documenter-dark .hero.is-primary .navbar-item,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--documenter-dark .hero.is-primary .navbar-link,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-primary a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--documenter-dark .hero.is-primary a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--documenter-dark .hero.is-primary .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--documenter-dark .hero.is-primary .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .hero.is-primary .tabs a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-primary .tabs a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-primary .tabs li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#375a7f !important;opacity:1}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#375a7f}html.theme--documenter-dark .hero.is-primary.is-bold,html.theme--documenter-dark .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-primary.is-bold .navbar-menu,html.theme--documenter-dark .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%)}}html.theme--documenter-dark .hero.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-link strong{color:inherit}html.theme--documenter-dark .hero.is-link .title{color:#fff}html.theme--documenter-dark .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-link .subtitle a:not(.button),html.theme--documenter-dark .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-link .navbar-menu{background-color:#1abc9c}}html.theme--documenter-dark .hero.is-link .navbar-item,html.theme--documenter-dark .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-link a.navbar-item:hover,html.theme--documenter-dark .hero.is-link a.navbar-item.is-active,html.theme--documenter-dark .hero.is-link .navbar-link:hover,html.theme--documenter-dark .hero.is-link .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-link .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-link .tabs li.is-active a{color:#1abc9c !important;opacity:1}html.theme--documenter-dark .hero.is-link .tabs.is-boxed a,html.theme--documenter-dark .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-link .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1abc9c}html.theme--documenter-dark .hero.is-link.is-bold{background-image:linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%)}}html.theme--documenter-dark .hero.is-info{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-info strong{color:inherit}html.theme--documenter-dark .hero.is-info .title{color:#fff}html.theme--documenter-dark .hero.is-info .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-info .subtitle a:not(.button),html.theme--documenter-dark .hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-info .navbar-menu{background-color:#3c5dcd}}html.theme--documenter-dark .hero.is-info .navbar-item,html.theme--documenter-dark .hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-info a.navbar-item:hover,html.theme--documenter-dark .hero.is-info a.navbar-item.is-active,html.theme--documenter-dark .hero.is-info .navbar-link:hover,html.theme--documenter-dark .hero.is-info .navbar-link.is-active{background-color:#3151bf;color:#fff}html.theme--documenter-dark .hero.is-info .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-info .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-info .tabs li.is-active a{color:#3c5dcd !important;opacity:1}html.theme--documenter-dark .hero.is-info .tabs.is-boxed a,html.theme--documenter-dark .hero.is-info .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-info .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3c5dcd}html.theme--documenter-dark .hero.is-info.is-bold{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}}html.theme--documenter-dark .hero.is-success{background-color:#259a12;color:#fff}html.theme--documenter-dark .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-success strong{color:inherit}html.theme--documenter-dark .hero.is-success .title{color:#fff}html.theme--documenter-dark .hero.is-success .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-success .subtitle a:not(.button),html.theme--documenter-dark .hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-success .navbar-menu{background-color:#259a12}}html.theme--documenter-dark .hero.is-success .navbar-item,html.theme--documenter-dark .hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-success a.navbar-item:hover,html.theme--documenter-dark .hero.is-success a.navbar-item.is-active,html.theme--documenter-dark .hero.is-success .navbar-link:hover,html.theme--documenter-dark .hero.is-success .navbar-link.is-active{background-color:#20830f;color:#fff}html.theme--documenter-dark .hero.is-success .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-success .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-success .tabs li.is-active a{color:#259a12 !important;opacity:1}html.theme--documenter-dark .hero.is-success .tabs.is-boxed a,html.theme--documenter-dark .hero.is-success .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-success .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#259a12}html.theme--documenter-dark .hero.is-success.is-bold{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}}html.theme--documenter-dark .hero.is-warning{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-warning strong{color:inherit}html.theme--documenter-dark .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--documenter-dark .hero.is-warning .subtitle a:not(.button),html.theme--documenter-dark .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-warning .navbar-menu{background-color:#f4c72f}}html.theme--documenter-dark .hero.is-warning .navbar-item,html.theme--documenter-dark .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning a.navbar-item:hover,html.theme--documenter-dark .hero.is-warning a.navbar-item.is-active,html.theme--documenter-dark .hero.is-warning .navbar-link:hover,html.theme--documenter-dark .hero.is-warning .navbar-link.is-active{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--documenter-dark .hero.is-warning .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-warning .tabs li.is-active a{color:#f4c72f !important;opacity:1}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f4c72f}html.theme--documenter-dark .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #f09100 0%, #f4c72f 71%, #faef42 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #f09100 0%, #f4c72f 71%, #faef42 100%)}}html.theme--documenter-dark .hero.is-danger{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-danger strong{color:inherit}html.theme--documenter-dark .hero.is-danger .title{color:#fff}html.theme--documenter-dark .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-danger .subtitle a:not(.button),html.theme--documenter-dark .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-danger .navbar-menu{background-color:#cb3c33}}html.theme--documenter-dark .hero.is-danger .navbar-item,html.theme--documenter-dark .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-danger a.navbar-item:hover,html.theme--documenter-dark .hero.is-danger a.navbar-item.is-active,html.theme--documenter-dark .hero.is-danger .navbar-link:hover,html.theme--documenter-dark .hero.is-danger .navbar-link.is-active{background-color:#b7362e;color:#fff}html.theme--documenter-dark .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-danger .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-danger .tabs li.is-active a{color:#cb3c33 !important;opacity:1}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#cb3c33}html.theme--documenter-dark .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}}html.theme--documenter-dark .hero.is-small .hero-body,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--documenter-dark .hero.is-halfheight .hero-body,html.theme--documenter-dark .hero.is-fullheight .hero-body,html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--documenter-dark .hero.is-halfheight .hero-body>.container,html.theme--documenter-dark .hero.is-fullheight .hero-body>.container,html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .hero.is-halfheight{min-height:50vh}html.theme--documenter-dark .hero.is-fullheight{min-height:100vh}html.theme--documenter-dark .hero-video{overflow:hidden}html.theme--documenter-dark .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--documenter-dark .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--documenter-dark .hero-video{display:none}}html.theme--documenter-dark .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .hero-buttons .button{display:flex}html.theme--documenter-dark .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero-buttons{display:flex;justify-content:center}html.theme--documenter-dark .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--documenter-dark .hero-head,html.theme--documenter-dark .hero-foot{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero-body{padding:3rem 3rem}}html.theme--documenter-dark .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--documenter-dark .section{padding:3rem 3rem}html.theme--documenter-dark .section.is-medium{padding:9rem 4.5rem}html.theme--documenter-dark .section.is-large{padding:18rem 6rem}}html.theme--documenter-dark .footer{background-color:#282f2f;padding:3rem 1.5rem 6rem}html.theme--documenter-dark hr{height:1px}html.theme--documenter-dark h6{text-transform:uppercase;letter-spacing:0.5px}html.theme--documenter-dark .hero{background-color:#343c3d}html.theme--documenter-dark a{transition:all 200ms ease}html.theme--documenter-dark .button{transition:all 200ms ease;border-width:1px;color:#fff}html.theme--documenter-dark .button.is-active,html.theme--documenter-dark .button.is-focused,html.theme--documenter-dark .button:active,html.theme--documenter-dark .button:focus{box-shadow:0 0 0 2px rgba(140,155,157,0.5)}html.theme--documenter-dark .button.is-white.is-hovered,html.theme--documenter-dark .button.is-white:hover{background-color:#fff}html.theme--documenter-dark .button.is-white.is-active,html.theme--documenter-dark .button.is-white.is-focused,html.theme--documenter-dark .button.is-white:active,html.theme--documenter-dark .button.is-white:focus{border-color:#fff;box-shadow:0 0 0 2px rgba(255,255,255,0.5)}html.theme--documenter-dark .button.is-black.is-hovered,html.theme--documenter-dark .button.is-black:hover{background-color:#1d1d1d}html.theme--documenter-dark .button.is-black.is-active,html.theme--documenter-dark .button.is-black.is-focused,html.theme--documenter-dark .button.is-black:active,html.theme--documenter-dark .button.is-black:focus{border-color:#0a0a0a;box-shadow:0 0 0 2px rgba(10,10,10,0.5)}html.theme--documenter-dark .button.is-light.is-hovered,html.theme--documenter-dark .button.is-light:hover{background-color:#fff}html.theme--documenter-dark .button.is-light.is-active,html.theme--documenter-dark .button.is-light.is-focused,html.theme--documenter-dark .button.is-light:active,html.theme--documenter-dark .button.is-light:focus{border-color:#ecf0f1;box-shadow:0 0 0 2px rgba(236,240,241,0.5)}html.theme--documenter-dark .button.is-dark.is-hovered,html.theme--documenter-dark .content kbd.button.is-hovered,html.theme--documenter-dark .button.is-dark:hover,html.theme--documenter-dark .content kbd.button:hover{background-color:#3a4344}html.theme--documenter-dark .button.is-dark.is-active,html.theme--documenter-dark .content kbd.button.is-active,html.theme--documenter-dark .button.is-dark.is-focused,html.theme--documenter-dark .content kbd.button.is-focused,html.theme--documenter-dark .button.is-dark:active,html.theme--documenter-dark .content kbd.button:active,html.theme--documenter-dark .button.is-dark:focus,html.theme--documenter-dark .content kbd.button:focus{border-color:#282f2f;box-shadow:0 0 0 2px rgba(40,47,47,0.5)}html.theme--documenter-dark .button.is-primary.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary:hover,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:hover{background-color:#436d9a}html.theme--documenter-dark .button.is-primary.is-active,html.theme--documenter-dark .docstring>section>a.button.is-active.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink,html.theme--documenter-dark .button.is-primary:active,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary:focus,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus{border-color:#375a7f;box-shadow:0 0 0 2px rgba(55,90,127,0.5)}html.theme--documenter-dark .button.is-link.is-hovered,html.theme--documenter-dark .button.is-link:hover{background-color:#1fdeb8}html.theme--documenter-dark .button.is-link.is-active,html.theme--documenter-dark .button.is-link.is-focused,html.theme--documenter-dark .button.is-link:active,html.theme--documenter-dark .button.is-link:focus{border-color:#1abc9c;box-shadow:0 0 0 2px rgba(26,188,156,0.5)}html.theme--documenter-dark .button.is-info.is-hovered,html.theme--documenter-dark .button.is-info:hover{background-color:#5a76d5}html.theme--documenter-dark .button.is-info.is-active,html.theme--documenter-dark .button.is-info.is-focused,html.theme--documenter-dark .button.is-info:active,html.theme--documenter-dark .button.is-info:focus{border-color:#3c5dcd;box-shadow:0 0 0 2px rgba(60,93,205,0.5)}html.theme--documenter-dark .button.is-success.is-hovered,html.theme--documenter-dark .button.is-success:hover{background-color:#2dbc16}html.theme--documenter-dark .button.is-success.is-active,html.theme--documenter-dark .button.is-success.is-focused,html.theme--documenter-dark .button.is-success:active,html.theme--documenter-dark .button.is-success:focus{border-color:#259a12;box-shadow:0 0 0 2px rgba(37,154,18,0.5)}html.theme--documenter-dark .button.is-warning.is-hovered,html.theme--documenter-dark .button.is-warning:hover{background-color:#f6d153}html.theme--documenter-dark .button.is-warning.is-active,html.theme--documenter-dark .button.is-warning.is-focused,html.theme--documenter-dark .button.is-warning:active,html.theme--documenter-dark .button.is-warning:focus{border-color:#f4c72f;box-shadow:0 0 0 2px rgba(244,199,47,0.5)}html.theme--documenter-dark .button.is-danger.is-hovered,html.theme--documenter-dark .button.is-danger:hover{background-color:#d35951}html.theme--documenter-dark .button.is-danger.is-active,html.theme--documenter-dark .button.is-danger.is-focused,html.theme--documenter-dark .button.is-danger:active,html.theme--documenter-dark .button.is-danger:focus{border-color:#cb3c33;box-shadow:0 0 0 2px rgba(203,60,51,0.5)}html.theme--documenter-dark .label{color:#dbdee0}html.theme--documenter-dark .button,html.theme--documenter-dark .control.has-icons-left .icon,html.theme--documenter-dark .control.has-icons-right .icon,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .select,html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea{height:2.5em}html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em}html.theme--documenter-dark .select:after,html.theme--documenter-dark .select select{border-width:1px}html.theme--documenter-dark .control.has-addons .button,html.theme--documenter-dark .control.has-addons .input,html.theme--documenter-dark .control.has-addons #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-addons form.docs-search>input,html.theme--documenter-dark .control.has-addons .select{margin-right:-1px}html.theme--documenter-dark .notification{background-color:#343c3d}html.theme--documenter-dark .card{box-shadow:none;border:1px solid #343c3d;background-color:#282f2f;border-radius:.4em}html.theme--documenter-dark .card .card-image img{border-radius:.4em .4em 0 0}html.theme--documenter-dark .card .card-header{box-shadow:none;background-color:rgba(18,18,18,0.2);border-radius:.4em .4em 0 0}html.theme--documenter-dark .card .card-footer{background-color:rgba(18,18,18,0.2)}html.theme--documenter-dark .card .card-footer,html.theme--documenter-dark .card .card-footer-item{border-width:1px;border-color:#343c3d}html.theme--documenter-dark .notification.is-white a:not(.button){color:#0a0a0a;text-decoration:underline}html.theme--documenter-dark .notification.is-black a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-light a:not(.button){color:rgba(0,0,0,0.7);text-decoration:underline}html.theme--documenter-dark .notification.is-dark a:not(.button),html.theme--documenter-dark .content kbd.notification a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-primary a:not(.button),html.theme--documenter-dark .docstring>section>a.notification.docs-sourcelink a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-link a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-info a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-success a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-warning a:not(.button){color:rgba(0,0,0,0.7);text-decoration:underline}html.theme--documenter-dark .notification.is-danger a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .tag,html.theme--documenter-dark .content kbd,html.theme--documenter-dark .docstring>section>a.docs-sourcelink{border-radius:.4em}html.theme--documenter-dark .menu-list a{transition:all 300ms ease}html.theme--documenter-dark .modal-card-body{background-color:#282f2f}html.theme--documenter-dark .modal-card-foot,html.theme--documenter-dark .modal-card-head{border-color:#343c3d}html.theme--documenter-dark .message-header{font-weight:700;background-color:#343c3d;color:#fff}html.theme--documenter-dark .message-body{border-width:1px;border-color:#343c3d}html.theme--documenter-dark .navbar{border-radius:.4em}html.theme--documenter-dark .navbar.is-transparent{background:none}html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1abc9c}@media screen and (max-width: 1055px){html.theme--documenter-dark .navbar .navbar-menu{background-color:#375a7f;border-radius:0 0 .4em .4em}}html.theme--documenter-dark .hero .navbar,html.theme--documenter-dark body>.navbar{border-radius:0}html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-previous{border-width:1px}html.theme--documenter-dark .panel-block,html.theme--documenter-dark .panel-heading,html.theme--documenter-dark .panel-tabs{border-width:1px}html.theme--documenter-dark .panel-block:first-child,html.theme--documenter-dark .panel-heading:first-child,html.theme--documenter-dark .panel-tabs:first-child{border-top-width:1px}html.theme--documenter-dark .panel-heading{font-weight:700}html.theme--documenter-dark .panel-tabs a{border-width:1px;margin-bottom:-1px}html.theme--documenter-dark .panel-tabs a.is-active{border-bottom-color:#17a689}html.theme--documenter-dark .panel-block:hover{color:#1dd2af}html.theme--documenter-dark .panel-block:hover .panel-icon{color:#1dd2af}html.theme--documenter-dark .panel-block.is-active .panel-icon{color:#17a689}html.theme--documenter-dark .tabs a{border-bottom-width:1px;margin-bottom:-1px}html.theme--documenter-dark .tabs ul{border-bottom-width:1px}html.theme--documenter-dark .tabs.is-boxed a{border-width:1px}html.theme--documenter-dark .tabs.is-boxed li.is-active a{background-color:#1f2424}html.theme--documenter-dark .tabs.is-toggle li a{border-width:1px;margin-bottom:0}html.theme--documenter-dark .tabs.is-toggle li+li{margin-left:-1px}html.theme--documenter-dark .hero.is-white .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-black .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-light .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-dark .navbar .navbar-dropdown .navbar-item:hover,html.theme--documenter-dark .content kbd.hero .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-primary .navbar .navbar-dropdown .navbar-item:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-link .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-info .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-success .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-warning .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-danger .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark h1 .docs-heading-anchor,html.theme--documenter-dark h1 .docs-heading-anchor:hover,html.theme--documenter-dark h1 .docs-heading-anchor:visited,html.theme--documenter-dark h2 .docs-heading-anchor,html.theme--documenter-dark h2 .docs-heading-anchor:hover,html.theme--documenter-dark h2 .docs-heading-anchor:visited,html.theme--documenter-dark h3 .docs-heading-anchor,html.theme--documenter-dark h3 .docs-heading-anchor:hover,html.theme--documenter-dark h3 .docs-heading-anchor:visited,html.theme--documenter-dark h4 .docs-heading-anchor,html.theme--documenter-dark h4 .docs-heading-anchor:hover,html.theme--documenter-dark h4 .docs-heading-anchor:visited,html.theme--documenter-dark h5 .docs-heading-anchor,html.theme--documenter-dark h5 .docs-heading-anchor:hover,html.theme--documenter-dark h5 .docs-heading-anchor:visited,html.theme--documenter-dark h6 .docs-heading-anchor,html.theme--documenter-dark h6 .docs-heading-anchor:hover,html.theme--documenter-dark h6 .docs-heading-anchor:visited{color:#f2f2f2}html.theme--documenter-dark h1 .docs-heading-anchor-permalink,html.theme--documenter-dark h2 .docs-heading-anchor-permalink,html.theme--documenter-dark h3 .docs-heading-anchor-permalink,html.theme--documenter-dark h4 .docs-heading-anchor-permalink,html.theme--documenter-dark h5 .docs-heading-anchor-permalink,html.theme--documenter-dark h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--documenter-dark h1 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h2 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h3 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h4 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h5 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--documenter-dark h1:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h2:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h3:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h4:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h5:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--documenter-dark .docs-light-only{display:none !important}html.theme--documenter-dark pre{position:relative;overflow:hidden}html.theme--documenter-dark pre code,html.theme--documenter-dark pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--documenter-dark pre code:first-of-type,html.theme--documenter-dark pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--documenter-dark pre code:last-of-type,html.theme--documenter-dark pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--documenter-dark pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#fff;cursor:pointer;text-align:center}html.theme--documenter-dark pre .copy-button:focus,html.theme--documenter-dark pre .copy-button:hover{opacity:1;background:rgba(255,255,255,0.1);color:#1abc9c}html.theme--documenter-dark pre .copy-button.success{color:#259a12;opacity:1}html.theme--documenter-dark pre .copy-button.error{color:#cb3c33;opacity:1}html.theme--documenter-dark pre:hover .copy-button{opacity:1}html.theme--documenter-dark .admonition{background-color:#282f2f;border-style:solid;border-width:2px;border-color:#dbdee0;border-radius:4px;font-size:1rem}html.theme--documenter-dark .admonition strong{color:currentColor}html.theme--documenter-dark .admonition.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--documenter-dark .admonition.is-medium{font-size:1.25rem}html.theme--documenter-dark .admonition.is-large{font-size:1.5rem}html.theme--documenter-dark .admonition.is-default{background-color:#282f2f;border-color:#dbdee0}html.theme--documenter-dark .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .admonition.is-default>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-info{background-color:#282f2f;border-color:#3c5dcd}html.theme--documenter-dark .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#3c5dcd}html.theme--documenter-dark .admonition.is-info>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-success{background-color:#282f2f;border-color:#259a12}html.theme--documenter-dark .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#259a12}html.theme--documenter-dark .admonition.is-success>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-warning{background-color:#282f2f;border-color:#f4c72f}html.theme--documenter-dark .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#f4c72f}html.theme--documenter-dark .admonition.is-warning>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-danger{background-color:#282f2f;border-color:#cb3c33}html.theme--documenter-dark .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#cb3c33}html.theme--documenter-dark .admonition.is-danger>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-compat{background-color:#282f2f;border-color:#3489da}html.theme--documenter-dark .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#3489da}html.theme--documenter-dark .admonition.is-compat>.admonition-body{color:#fff}html.theme--documenter-dark .admonition-header{color:#dbdee0;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--documenter-dark .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--documenter-dark details.admonition.is-details>.admonition-header{list-style:none}html.theme--documenter-dark details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--documenter-dark details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--documenter-dark .admonition-body{color:#fff;padding:0.5rem .75rem}html.theme--documenter-dark .admonition-body pre{background-color:#282f2f}html.theme--documenter-dark .admonition-body code{background-color:rgba(255,255,255,0.05)}html.theme--documenter-dark .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #5e6d6f;border-radius:4px;box-shadow:none;max-width:100%}html.theme--documenter-dark .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#282f2f;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #5e6d6f;overflow:auto}html.theme--documenter-dark .docstring>header code{background-color:transparent}html.theme--documenter-dark .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--documenter-dark .docstring>header .docstring-binding{margin-right:0.3em}html.theme--documenter-dark .docstring>header .docstring-category{margin-left:0.3em}html.theme--documenter-dark .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .docstring>section:last-child{border-bottom:none}html.theme--documenter-dark .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--documenter-dark .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--documenter-dark .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--documenter-dark .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--documenter-dark .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--documenter-dark .documenter-example-output{background-color:#1f2424}html.theme--documenter-dark .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#282f2f;color:#fff;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--documenter-dark .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--documenter-dark .outdated-warning-overlay a{color:#1abc9c}html.theme--documenter-dark .outdated-warning-overlay a:hover{color:#1dd2af}html.theme--documenter-dark .content pre{border:2px solid #5e6d6f;border-radius:4px}html.theme--documenter-dark .content code{font-weight:inherit}html.theme--documenter-dark .content a code{color:#1abc9c}html.theme--documenter-dark .content a:hover code{color:#1dd2af}html.theme--documenter-dark .content h1 code,html.theme--documenter-dark .content h2 code,html.theme--documenter-dark .content h3 code,html.theme--documenter-dark .content h4 code,html.theme--documenter-dark .content h5 code,html.theme--documenter-dark .content h6 code{color:#f2f2f2}html.theme--documenter-dark .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--documenter-dark .content blockquote>ul:first-child,html.theme--documenter-dark .content blockquote>ol:first-child,html.theme--documenter-dark .content .admonition-body>ul:first-child,html.theme--documenter-dark .content .admonition-body>ol:first-child{margin-top:0}html.theme--documenter-dark pre,html.theme--documenter-dark code{font-variant-ligatures:no-contextual}html.theme--documenter-dark .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--documenter-dark .breadcrumb a.is-disabled,html.theme--documenter-dark .breadcrumb a.is-disabled:hover{color:#f2f2f2}html.theme--documenter-dark .hljs{background:initial !important}html.theme--documenter-dark .katex .katex-mathml{top:0;right:0}html.theme--documenter-dark .katex-display,html.theme--documenter-dark mjx-container,html.theme--documenter-dark .MathJax_Display{margin:0.5em 0 !important}html.theme--documenter-dark html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--documenter-dark li.no-marker{list-style:none}html.theme--documenter-dark #documenter .docs-main>article{overflow-wrap:break-word}html.theme--documenter-dark #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main{width:100%}html.theme--documenter-dark #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--documenter-dark #documenter .docs-main>header,html.theme--documenter-dark #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--documenter-dark #documenter .docs-main header.docs-navbar{background-color:#1f2424;border-bottom:1px solid #5e6d6f;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--documenter-dark #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--documenter-dark #documenter .docs-main section.footnotes{border-top:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-main section.footnotes li .tag:first-child,html.theme--documenter-dark #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--documenter-dark #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--documenter-dark .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--documenter-dark #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #5e6d6f;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--documenter-dark #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--documenter-dark #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--documenter-dark #documenter .docs-sidebar{display:flex;flex-direction:column;color:#fff;background-color:#282f2f;border-right:1px solid #5e6d6f;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--documenter-dark #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar{left:0;top:0}}html.theme--documenter-dark #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a,html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a:hover{color:#fff}html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #5e6d6f;display:none;padding:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #5e6d6f;padding-bottom:1.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#fff;background:#282f2f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#fff;background-color:#32393a}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #5e6d6f;border-bottom:1px solid #5e6d6f;background-color:#1f2424}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#1f2424;color:#fff}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#32393a;color:#fff}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--documenter-dark #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--documenter-dark #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3b4445}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#4e5a5c}}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3b4445}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#4e5a5c}}html.theme--documenter-dark kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--documenter-dark .search-min-width-50{min-width:50%}html.theme--documenter-dark .search-min-height-100{min-height:100%}html.theme--documenter-dark .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--documenter-dark .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--documenter-dark .search-result-link:hover,html.theme--documenter-dark .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--documenter-dark .search-result-link .property-search-result-badge,html.theme--documenter-dark .search-result-link .search-filter{transition:all 300ms}html.theme--documenter-dark .property-search-result-badge,html.theme--documenter-dark .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--documenter-dark .search-result-link:hover .property-search-result-badge,html.theme--documenter-dark .search-result-link:hover .search-filter,html.theme--documenter-dark .search-result-link:focus .property-search-result-badge,html.theme--documenter-dark .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--documenter-dark .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--documenter-dark .search-filter:hover,html.theme--documenter-dark .search-filter:focus{color:#333}html.theme--documenter-dark .search-filter-selected{color:#f5f5f5;background-color:rgba(139,0,139,0.5)}html.theme--documenter-dark .search-filter-selected:hover,html.theme--documenter-dark .search-filter-selected:focus{color:#f5f5f5}html.theme--documenter-dark .search-result-highlight{background-color:#ffdd57;color:black}html.theme--documenter-dark .search-divider{border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .search-result-title{width:85%;color:#f5f5f5}html.theme--documenter-dark .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--documenter-dark #search-modal .modal-card-body::-webkit-scrollbar,html.theme--documenter-dark #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--documenter-dark #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--documenter-dark #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--documenter-dark #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--documenter-dark #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--documenter-dark .w-100{width:100%}html.theme--documenter-dark .gap-2{gap:0.5rem}html.theme--documenter-dark .gap-4{gap:1rem}html.theme--documenter-dark .gap-8{gap:2rem}html.theme--documenter-dark{background-color:#1f2424;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--documenter-dark .ansi span.sgr1{font-weight:bolder}html.theme--documenter-dark .ansi span.sgr2{font-weight:lighter}html.theme--documenter-dark .ansi span.sgr3{font-style:italic}html.theme--documenter-dark .ansi span.sgr4{text-decoration:underline}html.theme--documenter-dark .ansi span.sgr7{color:#1f2424;background-color:#fff}html.theme--documenter-dark .ansi span.sgr8{color:transparent}html.theme--documenter-dark .ansi span.sgr8 span{color:transparent}html.theme--documenter-dark .ansi span.sgr9{text-decoration:line-through}html.theme--documenter-dark .ansi span.sgr30{color:#242424}html.theme--documenter-dark .ansi span.sgr31{color:#f6705f}html.theme--documenter-dark .ansi span.sgr32{color:#4fb43a}html.theme--documenter-dark .ansi span.sgr33{color:#f4c72f}html.theme--documenter-dark .ansi span.sgr34{color:#7587f0}html.theme--documenter-dark .ansi span.sgr35{color:#bc89d3}html.theme--documenter-dark .ansi span.sgr36{color:#49b6ca}html.theme--documenter-dark .ansi span.sgr37{color:#b3bdbe}html.theme--documenter-dark .ansi span.sgr40{background-color:#242424}html.theme--documenter-dark .ansi span.sgr41{background-color:#f6705f}html.theme--documenter-dark .ansi span.sgr42{background-color:#4fb43a}html.theme--documenter-dark .ansi span.sgr43{background-color:#f4c72f}html.theme--documenter-dark .ansi span.sgr44{background-color:#7587f0}html.theme--documenter-dark .ansi span.sgr45{background-color:#bc89d3}html.theme--documenter-dark .ansi span.sgr46{background-color:#49b6ca}html.theme--documenter-dark .ansi span.sgr47{background-color:#b3bdbe}html.theme--documenter-dark .ansi span.sgr90{color:#92a0a2}html.theme--documenter-dark .ansi span.sgr91{color:#ff8674}html.theme--documenter-dark .ansi span.sgr92{color:#79d462}html.theme--documenter-dark .ansi span.sgr93{color:#ffe76b}html.theme--documenter-dark .ansi span.sgr94{color:#8a98ff}html.theme--documenter-dark .ansi span.sgr95{color:#d2a4e6}html.theme--documenter-dark .ansi span.sgr96{color:#6bc8db}html.theme--documenter-dark .ansi span.sgr97{color:#ecf0f1}html.theme--documenter-dark .ansi span.sgr100{background-color:#92a0a2}html.theme--documenter-dark .ansi span.sgr101{background-color:#ff8674}html.theme--documenter-dark .ansi span.sgr102{background-color:#79d462}html.theme--documenter-dark .ansi span.sgr103{background-color:#ffe76b}html.theme--documenter-dark .ansi span.sgr104{background-color:#8a98ff}html.theme--documenter-dark .ansi span.sgr105{background-color:#d2a4e6}html.theme--documenter-dark .ansi span.sgr106{background-color:#6bc8db}html.theme--documenter-dark .ansi span.sgr107{background-color:#ecf0f1}html.theme--documenter-dark code.language-julia-repl>span.hljs-meta{color:#4fb43a;font-weight:bolder}html.theme--documenter-dark .hljs{background:#2b2b2b;color:#f8f8f2}html.theme--documenter-dark .hljs-comment,html.theme--documenter-dark .hljs-quote{color:#d4d0ab}html.theme--documenter-dark .hljs-variable,html.theme--documenter-dark .hljs-template-variable,html.theme--documenter-dark .hljs-tag,html.theme--documenter-dark .hljs-name,html.theme--documenter-dark .hljs-selector-id,html.theme--documenter-dark .hljs-selector-class,html.theme--documenter-dark .hljs-regexp,html.theme--documenter-dark .hljs-deletion{color:#ffa07a}html.theme--documenter-dark .hljs-number,html.theme--documenter-dark .hljs-built_in,html.theme--documenter-dark .hljs-literal,html.theme--documenter-dark .hljs-type,html.theme--documenter-dark .hljs-params,html.theme--documenter-dark .hljs-meta,html.theme--documenter-dark .hljs-link{color:#f5ab35}html.theme--documenter-dark .hljs-attribute{color:#ffd700}html.theme--documenter-dark .hljs-string,html.theme--documenter-dark .hljs-symbol,html.theme--documenter-dark .hljs-bullet,html.theme--documenter-dark .hljs-addition{color:#abe338}html.theme--documenter-dark .hljs-title,html.theme--documenter-dark .hljs-section{color:#00e0e0}html.theme--documenter-dark .hljs-keyword,html.theme--documenter-dark .hljs-selector-tag{color:#dcc6e0}html.theme--documenter-dark .hljs-emphasis{font-style:italic}html.theme--documenter-dark .hljs-strong{font-weight:bold}@media screen and (-ms-high-contrast: active){html.theme--documenter-dark .hljs-addition,html.theme--documenter-dark .hljs-attribute,html.theme--documenter-dark .hljs-built_in,html.theme--documenter-dark .hljs-bullet,html.theme--documenter-dark .hljs-comment,html.theme--documenter-dark .hljs-link,html.theme--documenter-dark .hljs-literal,html.theme--documenter-dark .hljs-meta,html.theme--documenter-dark .hljs-number,html.theme--documenter-dark .hljs-params,html.theme--documenter-dark .hljs-string,html.theme--documenter-dark .hljs-symbol,html.theme--documenter-dark .hljs-type,html.theme--documenter-dark .hljs-quote{color:highlight}html.theme--documenter-dark .hljs-keyword,html.theme--documenter-dark .hljs-selector-tag{font-weight:bold}}html.theme--documenter-dark .hljs-subst{color:#f8f8f2}html.theme--documenter-dark .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--documenter-dark .search-result-link:hover,html.theme--documenter-dark .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--documenter-dark .search-result-link .property-search-result-badge,html.theme--documenter-dark .search-result-link .search-filter{transition:all 300ms}html.theme--documenter-dark .search-result-link:hover .property-search-result-badge,html.theme--documenter-dark .search-result-link:hover .search-filter,html.theme--documenter-dark .search-result-link:focus .property-search-result-badge,html.theme--documenter-dark .search-result-link:focus .search-filter{color:#333 !important;background-color:#f1f5f9 !important}html.theme--documenter-dark .search-result-title{color:whitesmoke}html.theme--documenter-dark .search-result-highlight{background-color:greenyellow;color:black}html.theme--documenter-dark .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--documenter-dark .w-100{width:100%}html.theme--documenter-dark .gap-2{gap:0.5rem}html.theme--documenter-dark .gap-4{gap:1rem} diff --git a/previews/PR873/assets/themes/documenter-light.css b/previews/PR873/assets/themes/documenter-light.css new file mode 100644 index 000000000..a435b3b63 --- /dev/null +++ b/previews/PR873/assets/themes/documenter-light.css @@ -0,0 +1,9 @@ +.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,#documenter .docs-sidebar form.docs-search>input,.button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,#documenter .docs-sidebar form.docs-search>input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,#documenter .docs-sidebar form.docs-search>input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.is-active.button{outline:none}.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],.file-cta[disabled],.file-name[disabled],.select select[disabled],.textarea[disabled],.input[disabled],#documenter .docs-sidebar form.docs-search>input[disabled],.button[disabled],fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] .button{cursor:not-allowed}.tabs,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.breadcrumb,.file,.button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}.admonition:not(:last-child),.tabs:not(:last-child),.pagination:not(:last-child),.message:not(:last-child),.level:not(:last-child),.breadcrumb:not(:last-child),.block:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child),.box:not(:last-child){margin-bottom:1.5rem}.modal-close,.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.modal-close::before,.delete::before,.modal-close::after,.delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.modal-close::before,.delete::before{height:2px;width:50%}.modal-close::after,.delete::after{height:50%;width:2px}.modal-close:hover,.delete:hover,.modal-close:focus,.delete:focus{background-color:rgba(10,10,10,0.3)}.modal-close:active,.delete:active{background-color:rgba(10,10,10,0.4)}.is-small.modal-close,#documenter .docs-sidebar form.docs-search>input.modal-close,.is-small.delete,#documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.modal-close,.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.modal-close,.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.hero-video,.modal-background,.modal,.image.is-square img,#documenter .docs-sidebar .docs-logo>img.is-square img,.image.is-square .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,.image.is-1by1 img,#documenter .docs-sidebar .docs-logo>img.is-1by1 img,.image.is-1by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,.image.is-5by4 img,#documenter .docs-sidebar .docs-logo>img.is-5by4 img,.image.is-5by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,.image.is-4by3 img,#documenter .docs-sidebar .docs-logo>img.is-4by3 img,.image.is-4by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,.image.is-3by2 img,#documenter .docs-sidebar .docs-logo>img.is-3by2 img,.image.is-3by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,.image.is-5by3 img,#documenter .docs-sidebar .docs-logo>img.is-5by3 img,.image.is-5by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,.image.is-16by9 img,#documenter .docs-sidebar .docs-logo>img.is-16by9 img,.image.is-16by9 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,.image.is-2by1 img,#documenter .docs-sidebar .docs-logo>img.is-2by1 img,.image.is-2by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,.image.is-3by1 img,#documenter .docs-sidebar .docs-logo>img.is-3by1 img,.image.is-3by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,.image.is-4by5 img,#documenter .docs-sidebar .docs-logo>img.is-4by5 img,.image.is-4by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,.image.is-3by4 img,#documenter .docs-sidebar .docs-logo>img.is-3by4 img,.image.is-3by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,.image.is-2by3 img,#documenter .docs-sidebar .docs-logo>img.is-2by3 img,.image.is-2by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,.image.is-3by5 img,#documenter .docs-sidebar .docs-logo>img.is-3by5 img,.image.is-3by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,.image.is-9by16 img,#documenter .docs-sidebar .docs-logo>img.is-9by16 img,.image.is-9by16 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,.image.is-1by2 img,#documenter .docs-sidebar .docs-logo>img.is-1by2 img,.image.is-1by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,.image.is-1by3 img,#documenter .docs-sidebar .docs-logo>img.is-1by3 img,.image.is-1by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}.navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#4eb5de !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#27a1d2 !important}.has-background-primary{background-color:#4eb5de !important}.has-text-primary-light{color:#eef8fc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#c3e6f4 !important}.has-background-primary-light{background-color:#eef8fc !important}.has-text-primary-dark{color:#1a6d8e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#228eb9 !important}.has-background-primary-dark{background-color:#1a6d8e !important}.has-text-link{color:#2e63b8 !important}a.has-text-link:hover,a.has-text-link:focus{color:#244d8f !important}.has-background-link{background-color:#2e63b8 !important}.has-text-link-light{color:#eff3fb !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c6d6f1 !important}.has-background-link-light{background-color:#eff3fb !important}.has-text-link-dark{color:#3169c4 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#5485d4 !important}.has-background-link-dark{background-color:#3169c4 !important}.has-text-info{color:#3c5dcd !important}a.has-text-info:hover,a.has-text-info:focus{color:#2c48aa !important}.has-background-info{background-color:#3c5dcd !important}.has-text-info-light{color:#eff2fb !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6d0f0 !important}.has-background-info-light{background-color:#eff2fb !important}.has-text-info-dark{color:#3253c3 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#5571d3 !important}.has-background-info-dark{background-color:#3253c3 !important}.has-text-success{color:#259a12 !important}a.has-text-success:hover,a.has-text-success:focus{color:#1a6c0d !important}.has-background-success{background-color:#259a12 !important}.has-text-success-light{color:#effded !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c7f8bf !important}.has-background-success-light{background-color:#effded !important}.has-text-success-dark{color:#2ec016 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#3fe524 !important}.has-background-success-dark{background-color:#2ec016 !important}.has-text-warning{color:#a98800 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#765f00 !important}.has-background-warning{background-color:#a98800 !important}.has-text-warning-light{color:#fffbeb !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fff1b8 !important}.has-background-warning-light{background-color:#fffbeb !important}.has-text-warning-dark{color:#cca400 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#ffcd00 !important}.has-background-warning-dark{background-color:#cca400 !important}.has-text-danger{color:#cb3c33 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a23029 !important}.has-background-danger{background-color:#cb3c33 !important}.has-text-danger-light{color:#fbefef !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f1c8c6 !important}.has-background-danger-light{background-color:#fbefef !important}.has-text-danger-dark{color:#c03930 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#d35850 !important}.has-background-danger-dark{background-color:#c03930 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#6b6b6b !important}.has-background-grey{background-color:#6b6b6b !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,.docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}body{color:#222;font-size:1em;font-weight:400;line-height:1.5}a{color:#2e63b8;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:rgba(0,0,0,0.05);color:#000;font-size:.875em;font-weight:normal;padding:.1em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type="checkbox"],input[type="radio"]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#222;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#222;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#222}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.box{background-color:#fff;border-radius:6px;box-shadow:#bbb;color:#222;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #2e63b8}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #2e63b8}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#222;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button #documenter .docs-sidebar form.docs-search>input.icon,#documenter .docs-sidebar .button form.docs-search>input.icon,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#3c5dcd;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#222;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#222}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#222}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#2e63b8;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#2e63b8;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}.button.is-dark,.content kbd.button{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.content kbd.button:hover,.button.is-dark.is-hovered,.content kbd.button.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.content kbd.button:focus,.button.is-dark.is-focused,.content kbd.button.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.content kbd.button:focus:not(:active),.button.is-dark.is-focused:not(:active),.content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.button.is-dark:active,.content kbd.button:active,.button.is-dark.is-active,.content kbd.button.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],.content kbd.button[disabled],fieldset[disabled] .button.is-dark,fieldset[disabled] .content kbd.button,.content fieldset[disabled] kbd.button{background-color:#363636;border-color:#363636;box-shadow:none}.button.is-dark.is-inverted,.content kbd.button.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.content kbd.button.is-inverted:hover,.button.is-dark.is-inverted.is-hovered,.content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],.content kbd.button.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted,fieldset[disabled] .content kbd.button.is-inverted,.content fieldset[disabled] kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after,.content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined,.content kbd.button.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.content kbd.button.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.content kbd.button.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.content kbd.button.is-outlined:focus,.button.is-dark.is-outlined.is-focused,.content kbd.button.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading::after,.content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.content kbd.button.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.content kbd.button.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.content kbd.button.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after,.content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined[disabled],.content kbd.button.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined,fieldset[disabled] .content kbd.button.is-outlined,.content fieldset[disabled] kbd.button.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined,.content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.content kbd.button.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.content kbd.button.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.content kbd.button.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused,.content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.content kbd.button.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.content kbd.button.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,.content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],.content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined,fieldset[disabled] .content kbd.button.is-inverted.is-outlined,.content fieldset[disabled] kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary,.docstring>section>a.button.docs-sourcelink{background-color:#4eb5de;border-color:transparent;color:#fff}.button.is-primary:hover,.docstring>section>a.button.docs-sourcelink:hover,.button.is-primary.is-hovered,.docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#43b1dc;border-color:transparent;color:#fff}.button.is-primary:focus,.docstring>section>a.button.docs-sourcelink:focus,.button.is-primary.is-focused,.docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.docstring>section>a.button.docs-sourcelink:focus:not(:active),.button.is-primary.is-focused:not(:active),.docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.button.is-primary:active,.docstring>section>a.button.docs-sourcelink:active,.button.is-primary.is-active,.docstring>section>a.button.is-active.docs-sourcelink{background-color:#39acda;border-color:transparent;color:#fff}.button.is-primary[disabled],.docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary,fieldset[disabled] .docstring>section>a.button.docs-sourcelink{background-color:#4eb5de;border-color:#4eb5de;box-shadow:none}.button.is-primary.is-inverted,.docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#4eb5de}.button.is-primary.is-inverted:hover,.docstring>section>a.button.is-inverted.docs-sourcelink:hover,.button.is-primary.is-inverted.is-hovered,.docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],.docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-inverted,fieldset[disabled] .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#4eb5de}.button.is-primary.is-loading::after,.docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined,.docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#4eb5de;color:#4eb5de}.button.is-primary.is-outlined:hover,.docstring>section>a.button.is-outlined.docs-sourcelink:hover,.button.is-primary.is-outlined.is-hovered,.docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,.button.is-primary.is-outlined:focus,.docstring>section>a.button.is-outlined.docs-sourcelink:focus,.button.is-primary.is-outlined.is-focused,.docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#4eb5de;border-color:#4eb5de;color:#fff}.button.is-primary.is-outlined.is-loading::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #4eb5de #4eb5de !important}.button.is-primary.is-outlined.is-loading:hover::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,.button.is-primary.is-outlined.is-loading:focus::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after,.docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],.docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-outlined,fieldset[disabled] .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#4eb5de;box-shadow:none;color:#4eb5de}.button.is-primary.is-inverted.is-outlined,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,.button.is-primary.is-inverted.is-outlined:focus,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,.button.is-primary.is-inverted.is-outlined.is-focused,.docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#4eb5de}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #4eb5de #4eb5de !important}.button.is-primary.is-inverted.is-outlined[disabled],.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined,fieldset[disabled] .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light,.docstring>section>a.button.is-light.docs-sourcelink{background-color:#eef8fc;color:#1a6d8e}.button.is-primary.is-light:hover,.docstring>section>a.button.is-light.docs-sourcelink:hover,.button.is-primary.is-light.is-hovered,.docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e3f3fa;border-color:transparent;color:#1a6d8e}.button.is-primary.is-light:active,.docstring>section>a.button.is-light.docs-sourcelink:active,.button.is-primary.is-light.is-active,.docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d8eff8;border-color:transparent;color:#1a6d8e}.button.is-link{background-color:#2e63b8;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#2b5eae;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.button.is-link:active,.button.is-link.is-active{background-color:#2958a4;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#2e63b8;border-color:#2e63b8;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#2e63b8}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#2e63b8}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#2e63b8;color:#2e63b8}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #2e63b8 #2e63b8 !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#2e63b8;box-shadow:none;color:#2e63b8}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#2e63b8}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #2e63b8 #2e63b8 !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff3fb;color:#3169c4}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e4ecf8;border-color:transparent;color:#3169c4}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dae5f6;border-color:transparent;color:#3169c4}.button.is-info{background-color:#3c5dcd;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3355c9;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3151bf;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3c5dcd;border-color:#3c5dcd;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3c5dcd}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3c5dcd}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;color:#3c5dcd}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;box-shadow:none;color:#3c5dcd}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3c5dcd}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff2fb;color:#3253c3}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e5e9f8;border-color:transparent;color:#3253c3}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae1f6;border-color:transparent;color:#3253c3}.button.is-success{background-color:#259a12;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#228f11;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}.button.is-success:active,.button.is-success.is-active{background-color:#20830f;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#259a12;border-color:#259a12;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#259a12}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#259a12}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#259a12;color:#259a12}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#259a12;border-color:#259a12;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #259a12 #259a12 !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#259a12;box-shadow:none;color:#259a12}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#259a12}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #259a12 #259a12 !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effded;color:#2ec016}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e5fce1;border-color:transparent;color:#2ec016}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dbfad6;border-color:transparent;color:#2ec016}.button.is-warning{background-color:#a98800;border-color:transparent;color:#fff}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#9c7d00;border-color:transparent;color:#fff}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:#fff}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(169,136,0,0.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#8f7300;border-color:transparent;color:#fff}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#a98800;border-color:#a98800;box-shadow:none}.button.is-warning.is-inverted{background-color:#fff;color:#a98800}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#a98800}.button.is-warning.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#a98800;color:#a98800}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#a98800;border-color:#a98800;color:#fff}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #a98800 #a98800 !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#a98800;box-shadow:none;color:#a98800}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:#fff;color:#a98800}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a98800 #a98800 !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-warning.is-light{background-color:#fffbeb;color:#cca400}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff9de;border-color:transparent;color:#cca400}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff6d1;border-color:transparent;color:#cca400}.button.is-danger{background-color:#cb3c33;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#c13930;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#b7362e;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#cb3c33;border-color:#cb3c33;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#cb3c33}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#cb3c33}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;color:#cb3c33}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#cb3c33;border-color:#cb3c33;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;box-shadow:none;color:#cb3c33}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#cb3c33}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#fbefef;color:#c03930}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#f8e6e5;border-color:transparent;color:#c03930}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#f6dcda;border-color:transparent;color:#c03930}.button.is-small,#documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}.button.is-small:not(.is-rounded),#documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#6b6b6b;box-shadow:none;pointer-events:none}.button.is-rounded,#documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:0.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-0.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){.button.is-responsive.is-small,#documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.button.is-responsive.is-small,#documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){.container{max-width:992px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:0.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#222;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:0.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:0.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:0.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:0.8em}.content h5{font-size:1.125em;margin-bottom:0.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}.content ol.is-lower-roman:not([type]){list-style-type:lower-roman}.content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}.content ol.is-upper-roman:not([type]){list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:0.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.content table th{color:#222}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#222}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#222}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small,#documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small,#documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image,#documenter .docs-sidebar .docs-logo>img{display:block;position:relative}.image img,#documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}.image img.is-rounded,#documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}.image.is-fullwidth,#documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}.image.is-square img,#documenter .docs-sidebar .docs-logo>img.is-square img,.image.is-square .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,.image.is-1by1 img,#documenter .docs-sidebar .docs-logo>img.is-1by1 img,.image.is-1by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,.image.is-5by4 img,#documenter .docs-sidebar .docs-logo>img.is-5by4 img,.image.is-5by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,.image.is-4by3 img,#documenter .docs-sidebar .docs-logo>img.is-4by3 img,.image.is-4by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,.image.is-3by2 img,#documenter .docs-sidebar .docs-logo>img.is-3by2 img,.image.is-3by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,.image.is-5by3 img,#documenter .docs-sidebar .docs-logo>img.is-5by3 img,.image.is-5by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,.image.is-16by9 img,#documenter .docs-sidebar .docs-logo>img.is-16by9 img,.image.is-16by9 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,.image.is-2by1 img,#documenter .docs-sidebar .docs-logo>img.is-2by1 img,.image.is-2by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,.image.is-3by1 img,#documenter .docs-sidebar .docs-logo>img.is-3by1 img,.image.is-3by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,.image.is-4by5 img,#documenter .docs-sidebar .docs-logo>img.is-4by5 img,.image.is-4by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,.image.is-3by4 img,#documenter .docs-sidebar .docs-logo>img.is-3by4 img,.image.is-3by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,.image.is-2by3 img,#documenter .docs-sidebar .docs-logo>img.is-2by3 img,.image.is-2by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,.image.is-3by5 img,#documenter .docs-sidebar .docs-logo>img.is-3by5 img,.image.is-3by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,.image.is-9by16 img,#documenter .docs-sidebar .docs-logo>img.is-9by16 img,.image.is-9by16 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,.image.is-1by2 img,#documenter .docs-sidebar .docs-logo>img.is-1by2 img,.image.is-1by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,.image.is-1by3 img,#documenter .docs-sidebar .docs-logo>img.is-1by3 img,.image.is-1by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,#documenter .docs-sidebar .docs-logo>img.is-square,.image.is-1by1,#documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}.image.is-5by4,#documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}.image.is-4by3,#documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}.image.is-3by2,#documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}.image.is-5by3,#documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}.image.is-16by9,#documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}.image.is-2by1,#documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}.image.is-3by1,#documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}.image.is-4by5,#documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}.image.is-3by4,#documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}.image.is-2by3,#documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}.image.is-3by5,#documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}.image.is-9by16,#documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}.image.is-1by2,#documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}.image.is-1by3,#documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}.image.is-16x16,#documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}.image.is-24x24,#documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}.image.is-32x32,#documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}.image.is-48x48,#documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}.image.is-64x64,#documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}.image.is-96x96,#documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}.image.is-128x128,#documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:0.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.notification.is-dark,.content kbd.notification{background-color:#363636;color:#fff}.notification.is-primary,.docstring>section>a.notification.docs-sourcelink{background-color:#4eb5de;color:#fff}.notification.is-primary.is-light,.docstring>section>a.notification.is-light.docs-sourcelink{background-color:#eef8fc;color:#1a6d8e}.notification.is-link{background-color:#2e63b8;color:#fff}.notification.is-link.is-light{background-color:#eff3fb;color:#3169c4}.notification.is-info{background-color:#3c5dcd;color:#fff}.notification.is-info.is-light{background-color:#eff2fb;color:#3253c3}.notification.is-success{background-color:#259a12;color:#fff}.notification.is-success.is-light{background-color:#effded;color:#2ec016}.notification.is-warning{background-color:#a98800;color:#fff}.notification.is-warning.is-light{background-color:#fffbeb;color:#cca400}.notification.is-danger{background-color:#cb3c33;color:#fff}.notification.is-danger.is-light{background-color:#fbefef;color:#c03930}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#222}.progress::-moz-progress-bar{background-color:#222}.progress::-ms-fill{background-color:#222;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #ededed 30%)}.progress.is-dark::-webkit-progress-value,.content kbd.progress::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar,.content kbd.progress::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill,.content kbd.progress::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate,.content kbd.progress:indeterminate{background-image:linear-gradient(to right, #363636 30%, #ededed 30%)}.progress.is-primary::-webkit-progress-value,.docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#4eb5de}.progress.is-primary::-moz-progress-bar,.docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#4eb5de}.progress.is-primary::-ms-fill,.docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#4eb5de}.progress.is-primary:indeterminate,.docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #4eb5de 30%, #ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#2e63b8}.progress.is-link::-moz-progress-bar{background-color:#2e63b8}.progress.is-link::-ms-fill{background-color:#2e63b8}.progress.is-link:indeterminate{background-image:linear-gradient(to right, #2e63b8 30%, #ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3c5dcd}.progress.is-info::-moz-progress-bar{background-color:#3c5dcd}.progress.is-info::-ms-fill{background-color:#3c5dcd}.progress.is-info:indeterminate{background-image:linear-gradient(to right, #3c5dcd 30%, #ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#259a12}.progress.is-success::-moz-progress-bar{background-color:#259a12}.progress.is-success::-ms-fill{background-color:#259a12}.progress.is-success:indeterminate{background-image:linear-gradient(to right, #259a12 30%, #ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#a98800}.progress.is-warning::-moz-progress-bar{background-color:#a98800}.progress.is-warning::-ms-fill{background-color:#a98800}.progress.is-warning:indeterminate{background-image:linear-gradient(to right, #a98800 30%, #ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#cb3c33}.progress.is-danger::-moz-progress-bar{background-color:#cb3c33}.progress.is-danger::-ms-fill{background-color:#cb3c33}.progress.is-danger:indeterminate{background-image:linear-gradient(to right, #cb3c33 30%, #ededed 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right, #222 30%, #ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small,#documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#222}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#4eb5de;border-color:#4eb5de;color:#fff}.table td.is-link,.table th.is-link{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.table td.is-info,.table th.is-info{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}.table td.is-success,.table th.is-success{background-color:#259a12;border-color:#259a12;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#a98800;border-color:#a98800;color:#fff}.table td.is-danger,.table th.is-danger{background-color:#cb3c33;border-color:#cb3c33;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#4eb5de;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#222}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#4eb5de;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:rgba(0,0,0,0)}.table thead td,.table thead th{border-width:0 0 2px;color:#222}.table tfoot{background-color:rgba(0,0,0,0)}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#222}.table tbody{background-color:rgba(0,0,0,0)}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:0.25em 0.5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag,.tags .content kbd,.content .tags kbd,.tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}.tags .tag:not(:last-child),.tags .content kbd:not(:last-child),.content .tags kbd:not(:last-child),.tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-0.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large),.tags.are-medium .content kbd:not(.is-normal):not(.is-large),.content .tags.are-medium kbd:not(.is-normal):not(.is-large),.tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium),.tags.are-large .content kbd:not(.is-normal):not(.is-medium),.content .tags.are-large kbd:not(.is-normal):not(.is-medium),.tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag,.tags.is-centered .content kbd,.content .tags.is-centered kbd,.tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child),.tags.is-right .content kbd:not(:first-child),.content .tags.is-right kbd:not(:first-child),.tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}.tags.is-right .tag:not(:last-child),.tags.is-right .content kbd:not(:last-child),.content .tags.is-right kbd:not(:last-child),.tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}.tags.has-addons .tag,.tags.has-addons .content kbd,.content .tags.has-addons kbd,.tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}.tags.has-addons .tag:not(:first-child),.tags.has-addons .content kbd:not(:first-child),.content .tags.has-addons kbd:not(:first-child),.tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child),.tags.has-addons .content kbd:not(:last-child),.content .tags.has-addons kbd:not(:last-child),.tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body),.content kbd:not(body),.docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#222;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}.tag:not(body) .delete,.content kbd:not(body) .delete,.docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag.is-white:not(body),.content kbd.is-white:not(body),.docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}.tag.is-black:not(body),.content kbd.is-black:not(body),.docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}.tag.is-light:not(body),.content kbd.is-light:not(body),.docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.tag.is-dark:not(body),.content kbd:not(body),.docstring>section>a.docs-sourcelink.is-dark:not(body),.content .docstring>section>kbd:not(body){background-color:#363636;color:#fff}.tag.is-primary:not(body),.content kbd.is-primary:not(body),.docstring>section>a.docs-sourcelink:not(body){background-color:#4eb5de;color:#fff}.tag.is-primary.is-light:not(body),.content kbd.is-primary.is-light:not(body),.docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#eef8fc;color:#1a6d8e}.tag.is-link:not(body),.content kbd.is-link:not(body),.docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#2e63b8;color:#fff}.tag.is-link.is-light:not(body),.content kbd.is-link.is-light:not(body),.docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#eff3fb;color:#3169c4}.tag.is-info:not(body),.content kbd.is-info:not(body),.docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#3c5dcd;color:#fff}.tag.is-info.is-light:not(body),.content kbd.is-info.is-light:not(body),.docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#eff2fb;color:#3253c3}.tag.is-success:not(body),.content kbd.is-success:not(body),.docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#259a12;color:#fff}.tag.is-success.is-light:not(body),.content kbd.is-success.is-light:not(body),.docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#effded;color:#2ec016}.tag.is-warning:not(body),.content kbd.is-warning:not(body),.docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#a98800;color:#fff}.tag.is-warning.is-light:not(body),.content kbd.is-warning.is-light:not(body),.docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fffbeb;color:#cca400}.tag.is-danger:not(body),.content kbd.is-danger:not(body),.docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#cb3c33;color:#fff}.tag.is-danger.is-light:not(body),.content kbd.is-danger.is-light:not(body),.docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fbefef;color:#c03930}.tag.is-normal:not(body),.content kbd.is-normal:not(body),.docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}.tag.is-medium:not(body),.content kbd.is-medium:not(body),.docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}.tag.is-large:not(body),.content kbd.is-large:not(body),.docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child),.content kbd:not(body) .icon:first-child:not(:last-child),.docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child),.content kbd:not(body) .icon:last-child:not(:first-child),.docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child,.content kbd:not(body) .icon:first-child:last-child,.docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag.is-delete:not(body),.content kbd.is-delete:not(body),.docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}.tag.is-delete:not(body)::before,.content kbd.is-delete:not(body)::before,.docstring>section>a.docs-sourcelink.is-delete:not(body)::before,.tag.is-delete:not(body)::after,.content kbd.is-delete:not(body)::after,.docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag.is-delete:not(body)::before,.content kbd.is-delete:not(body)::before,.docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}.tag.is-delete:not(body)::after,.content kbd.is-delete:not(body)::after,.docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}.tag.is-delete:not(body):hover,.content kbd.is-delete:not(body):hover,.docstring>section>a.docs-sourcelink.is-delete:not(body):hover,.tag.is-delete:not(body):focus,.content kbd.is-delete:not(body):focus,.docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#e8e8e8}.tag.is-delete:not(body):active,.content kbd.is-delete:not(body):active,.docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#dbdbdb}.tag.is-rounded:not(body),#documenter .docs-sidebar form.docs-search>input:not(body),.content kbd.is-rounded:not(body),#documenter .docs-sidebar .content form.docs-search>input:not(body),.docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}a.tag:hover,.docstring>section>a.docs-sourcelink:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub{font-size:.75em}.title sup,.subtitle sup{font-size:.75em}.title .tag,.title .content kbd,.content .title kbd,.title .docstring>section>a.docs-sourcelink,.subtitle .tag,.subtitle .content kbd,.content .subtitle kbd,.subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}.title{color:#222;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#222;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#222;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}.select select,.textarea,.input,#documenter .docs-sidebar form.docs-search>input{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#222}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder,#documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#707070}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder,#documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#707070}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder,#documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#707070}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder,#documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#707070}.select select:hover,.textarea:hover,.input:hover,#documenter .docs-sidebar form.docs-search>input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input,#documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#b5b5b5}.select select:focus,.textarea:focus,.input:focus,#documenter .docs-sidebar form.docs-search>input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.select select:active,.textarea:active,.input:active,#documenter .docs-sidebar form.docs-search>input:active,.select select.is-active,.is-active.textarea,.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{border-color:#2e63b8;box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.select select[disabled],.textarea[disabled],.input[disabled],#documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#6b6b6b}.select select[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.input[disabled]::-moz-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input::-moz-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input::-moz-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.input[disabled]::-webkit-input-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input::-webkit-input-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.input[disabled]:-moz-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input:-moz-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input:-moz-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.input[disabled]:-ms-input-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input:-ms-input-placeholder{color:rgba(107,107,107,0.3)}.textarea,.input,#documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}.textarea[readonly],.input[readonly],#documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}.is-white.textarea,.is-white.input,#documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}.is-white.textarea:focus,.is-white.input:focus,#documenter .docs-sidebar form.docs-search>input.is-white:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-white.textarea:active,.is-white.input:active,#documenter .docs-sidebar form.docs-search>input.is-white:active,.is-white.is-active.textarea,.is-white.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.is-black.textarea,.is-black.input,#documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}.is-black.textarea:focus,.is-black.input:focus,#documenter .docs-sidebar form.docs-search>input.is-black:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-black.textarea:active,.is-black.input:active,#documenter .docs-sidebar form.docs-search>input.is-black:active,.is-black.is-active.textarea,.is-black.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.is-light.textarea,.is-light.input,#documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}.is-light.textarea:focus,.is-light.input:focus,#documenter .docs-sidebar form.docs-search>input.is-light:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-light.textarea:active,.is-light.input:active,#documenter .docs-sidebar form.docs-search>input.is-light:active,.is-light.is-active.textarea,.is-light.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.is-dark.textarea,.content kbd.textarea,.is-dark.input,#documenter .docs-sidebar form.docs-search>input.is-dark,.content kbd.input{border-color:#363636}.is-dark.textarea:focus,.content kbd.textarea:focus,.is-dark.input:focus,#documenter .docs-sidebar form.docs-search>input.is-dark:focus,.content kbd.input:focus,.is-dark.is-focused.textarea,.content kbd.is-focused.textarea,.is-dark.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.content kbd.is-focused.input,#documenter .docs-sidebar .content form.docs-search>input.is-focused,.is-dark.textarea:active,.content kbd.textarea:active,.is-dark.input:active,#documenter .docs-sidebar form.docs-search>input.is-dark:active,.content kbd.input:active,.is-dark.is-active.textarea,.content kbd.is-active.textarea,.is-dark.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.content kbd.is-active.input,#documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.is-primary.textarea,.docstring>section>a.textarea.docs-sourcelink,.is-primary.input,#documenter .docs-sidebar form.docs-search>input.is-primary,.docstring>section>a.input.docs-sourcelink{border-color:#4eb5de}.is-primary.textarea:focus,.docstring>section>a.textarea.docs-sourcelink:focus,.is-primary.input:focus,#documenter .docs-sidebar form.docs-search>input.is-primary:focus,.docstring>section>a.input.docs-sourcelink:focus,.is-primary.is-focused.textarea,.docstring>section>a.is-focused.textarea.docs-sourcelink,.is-primary.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.docstring>section>a.is-focused.input.docs-sourcelink,.is-primary.textarea:active,.docstring>section>a.textarea.docs-sourcelink:active,.is-primary.input:active,#documenter .docs-sidebar form.docs-search>input.is-primary:active,.docstring>section>a.input.docs-sourcelink:active,.is-primary.is-active.textarea,.docstring>section>a.is-active.textarea.docs-sourcelink,.is-primary.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.is-link.textarea,.is-link.input,#documenter .docs-sidebar form.docs-search>input.is-link{border-color:#2e63b8}.is-link.textarea:focus,.is-link.input:focus,#documenter .docs-sidebar form.docs-search>input.is-link:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-link.textarea:active,.is-link.input:active,#documenter .docs-sidebar form.docs-search>input.is-link:active,.is-link.is-active.textarea,.is-link.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.is-info.textarea,.is-info.input,#documenter .docs-sidebar form.docs-search>input.is-info{border-color:#3c5dcd}.is-info.textarea:focus,.is-info.input:focus,#documenter .docs-sidebar form.docs-search>input.is-info:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-info.textarea:active,.is-info.input:active,#documenter .docs-sidebar form.docs-search>input.is-info:active,.is-info.is-active.textarea,.is-info.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}.is-success.textarea,.is-success.input,#documenter .docs-sidebar form.docs-search>input.is-success{border-color:#259a12}.is-success.textarea:focus,.is-success.input:focus,#documenter .docs-sidebar form.docs-search>input.is-success:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-success.textarea:active,.is-success.input:active,#documenter .docs-sidebar form.docs-search>input.is-success:active,.is-success.is-active.textarea,.is-success.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}.is-warning.textarea,.is-warning.input,#documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#a98800}.is-warning.textarea:focus,.is-warning.input:focus,#documenter .docs-sidebar form.docs-search>input.is-warning:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-warning.textarea:active,.is-warning.input:active,#documenter .docs-sidebar form.docs-search>input.is-warning:active,.is-warning.is-active.textarea,.is-warning.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(169,136,0,0.25)}.is-danger.textarea,.is-danger.input,#documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#cb3c33}.is-danger.textarea:focus,.is-danger.input:focus,#documenter .docs-sidebar form.docs-search>input.is-danger:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-danger.textarea:active,.is-danger.input:active,#documenter .docs-sidebar form.docs-search>input.is-danger:active,.is-danger.is-active.textarea,.is-danger.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}.is-small.textarea,.is-small.input,#documenter .docs-sidebar form.docs-search>input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input,#documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}.is-large.textarea,.is-large.input,#documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input,#documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}.is-inline.textarea,.is-inline.input,#documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}.input.is-rounded,#documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}.input.is-static,#documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:#222}.radio[disabled],.checkbox[disabled],fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:#6b6b6b;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#2e63b8;right:1.125em;z-index:4}.select.is-rounded select,#documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:0.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#222}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.select.is-dark:not(:hover)::after,.content kbd.select:not(:hover)::after{border-color:#363636}.select.is-dark select,.content kbd.select select{border-color:#363636}.select.is-dark select:hover,.content kbd.select select:hover,.select.is-dark select.is-hovered,.content kbd.select select.is-hovered{border-color:#292929}.select.is-dark select:focus,.content kbd.select select:focus,.select.is-dark select.is-focused,.content kbd.select select.is-focused,.select.is-dark select:active,.content kbd.select select:active,.select.is-dark select.is-active,.content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.select.is-primary:not(:hover)::after,.docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#4eb5de}.select.is-primary select,.docstring>section>a.select.docs-sourcelink select{border-color:#4eb5de}.select.is-primary select:hover,.docstring>section>a.select.docs-sourcelink select:hover,.select.is-primary select.is-hovered,.docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#39acda}.select.is-primary select:focus,.docstring>section>a.select.docs-sourcelink select:focus,.select.is-primary select.is-focused,.docstring>section>a.select.docs-sourcelink select.is-focused,.select.is-primary select:active,.docstring>section>a.select.docs-sourcelink select:active,.select.is-primary select.is-active,.docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.select.is-link:not(:hover)::after{border-color:#2e63b8}.select.is-link select{border-color:#2e63b8}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#2958a4}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.select.is-info:not(:hover)::after{border-color:#3c5dcd}.select.is-info select{border-color:#3c5dcd}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3151bf}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}.select.is-success:not(:hover)::after{border-color:#259a12}.select.is-success select{border-color:#259a12}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#20830f}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}.select.is-warning:not(:hover)::after{border-color:#a98800}.select.is-warning select{border-color:#a98800}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#8f7300}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(169,136,0,0.25)}.select.is-danger:not(:hover)::after{border-color:#cb3c33}.select.is-danger select{border-color:#cb3c33}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#b7362e}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}.select.is-small,#documenter .docs-sidebar form.docs-search>input.select{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#6b6b6b !important;opacity:0.5}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}.select.is-loading.is-small:after,#documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-dark .file-cta,.content kbd.file .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.content kbd.file:hover .file-cta,.file.is-dark.is-hovered .file-cta,.content kbd.file.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.content kbd.file:focus .file-cta,.file.is-dark.is-focused .file-cta,.content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(54,54,54,0.25);color:#fff}.file.is-dark:active .file-cta,.content kbd.file:active .file-cta,.file.is-dark.is-active .file-cta,.content kbd.file.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta,.docstring>section>a.file.docs-sourcelink .file-cta{background-color:#4eb5de;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.docstring>section>a.file.docs-sourcelink:hover .file-cta,.file.is-primary.is-hovered .file-cta,.docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#43b1dc;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.docstring>section>a.file.docs-sourcelink:focus .file-cta,.file.is-primary.is-focused .file-cta,.docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(78,181,222,0.25);color:#fff}.file.is-primary:active .file-cta,.docstring>section>a.file.docs-sourcelink:active .file-cta,.file.is-primary.is-active .file-cta,.docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#39acda;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#2e63b8;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#2b5eae;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(46,99,184,0.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#2958a4;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3c5dcd;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3355c9;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(60,93,205,0.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3151bf;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#259a12;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#228f11;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(37,154,18,0.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#20830f;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#a98800;border-color:transparent;color:#fff}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#9c7d00;border-color:transparent;color:#fff}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(169,136,0,0.25);color:#fff}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#8f7300;border-color:transparent;color:#fff}.file.is-danger .file-cta{background-color:#cb3c33;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#c13930;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(203,60,51,0.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#b7362e;border-color:transparent;color:#fff}.file.is-small,#documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa,#documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#222}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#222}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#222}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#222;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:0.5em}.label.is-small,#documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:0.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark,.content kbd.help{color:#363636}.help.is-primary,.docstring>section>a.help.docs-sourcelink{color:#4eb5de}.help.is-link{color:#2e63b8}.help.is-info{color:#3c5dcd}.help.is-success{color:#259a12}.help.is-warning{color:#a98800}.help.is-danger{color:#cb3c33}.field:not(:last-child){margin-bottom:0.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button.is-hovered:not([disabled]),.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,.field.has-addons .control .input.is-hovered:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button.is-focused:not([disabled]),.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button.is-active:not([disabled]),.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,.field.has-addons .control .input.is-focused:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,.field.has-addons .control .input.is-active:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select.is-focused:not([disabled]),.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select.is-active:not([disabled]){z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button.is-focused:not([disabled]):hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button.is-active:not([disabled]):hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,.field.has-addons .control .input.is-focused:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,.field.has-addons .control .input.is-active:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select.is-focused:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small,#documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}.field-label.is-normal{padding-top:0.375em}.field-label.is-medium{font-size:1.25rem;padding-top:0.375em}.field-label.is-large{font-size:1.5rem;padding-top:0.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#222}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}.control.is-loading.is-small:after,#documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#2e63b8;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#222;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small,#documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:"\02192"}.breadcrumb.has-bullet-separator li+li::before{content:"\02022"}.breadcrumb.has-dot-separator li+li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}.card{background-color:#fff;border-radius:.25rem;box-shadow:#bbb;color:#222;max-width:100%;position:relative}.card-footer:first-child,.card-content:first-child,.card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-footer:last-child,.card-content:last-child,.card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}.card-header-title{align-items:center;color:#222;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}.card-image{display:block;position:relative}.card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-content{background-color:rgba(0,0,0,0);padding:1.5rem}.card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:#bbb;padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#222;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#2e63b8;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,0.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,0.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small,#documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#222;display:block;padding:0.5em 0.75em}.menu-list a:hover{background-color:#f5f5f5;color:#222}.menu-list a.is-active{background-color:#2e63b8;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#6b6b6b;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small,#documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark,.content kbd.message{background-color:#fafafa}.message.is-dark .message-header,.content kbd.message .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body,.content kbd.message .message-body{border-color:#363636}.message.is-primary,.docstring>section>a.message.docs-sourcelink{background-color:#eef8fc}.message.is-primary .message-header,.docstring>section>a.message.docs-sourcelink .message-header{background-color:#4eb5de;color:#fff}.message.is-primary .message-body,.docstring>section>a.message.docs-sourcelink .message-body{border-color:#4eb5de;color:#1a6d8e}.message.is-link{background-color:#eff3fb}.message.is-link .message-header{background-color:#2e63b8;color:#fff}.message.is-link .message-body{border-color:#2e63b8;color:#3169c4}.message.is-info{background-color:#eff2fb}.message.is-info .message-header{background-color:#3c5dcd;color:#fff}.message.is-info .message-body{border-color:#3c5dcd;color:#3253c3}.message.is-success{background-color:#effded}.message.is-success .message-header{background-color:#259a12;color:#fff}.message.is-success .message-body{border-color:#259a12;color:#2ec016}.message.is-warning{background-color:#fffbeb}.message.is-warning .message-header{background-color:#a98800;color:#fff}.message.is-warning .message-body{border-color:#a98800;color:#cca400}.message.is-danger{background-color:#fbefef}.message.is-danger .message-header{background-color:#cb3c33;color:#fff}.message.is-danger .message-body{border-color:#cb3c33;color:#c03930}.message-header{align-items:center;background-color:#222;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#222;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:rgba(0,0,0,0)}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,0.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#222;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link::after,.navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link::after,.navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-start .navbar-link::after,.navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}.navbar.is-dark,.content kbd.navbar{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.content kbd.navbar .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link,.content kbd.navbar .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.content kbd.navbar .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.content kbd.navbar .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.content kbd.navbar .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.content kbd.navbar .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.content kbd.navbar .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active,.content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link::after,.content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-burger,.content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-dark .navbar-start>.navbar-item,.content kbd.navbar .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.content kbd.navbar .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.content kbd.navbar .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link,.content kbd.navbar .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.content kbd.navbar .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.content kbd.navbar .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.content kbd.navbar .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.content kbd.navbar .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.content kbd.navbar .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.content kbd.navbar .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.content kbd.navbar .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.content kbd.navbar .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.content kbd.navbar .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.content kbd.navbar .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.content kbd.navbar .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active,.content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link::after,.content kbd.navbar .navbar-start .navbar-link::after,.navbar.is-dark .navbar-end .navbar-link::after,.content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active,.content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary,.docstring>section>a.navbar.docs-sourcelink{background-color:#4eb5de;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-burger,.docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-primary .navbar-start>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-start .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,.navbar.is-primary .navbar-end .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#4eb5de;color:#fff}}.navbar.is-link{background-color:#2e63b8;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-start .navbar-link::after,.navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#2e63b8;color:#fff}}.navbar.is-info{background-color:#3c5dcd;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3151bf;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3151bf;color:#fff}.navbar.is-info .navbar-start .navbar-link::after,.navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3151bf;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3c5dcd;color:#fff}}.navbar.is-success{background-color:#259a12;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#20830f;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#20830f;color:#fff}.navbar.is-success .navbar-start .navbar-link::after,.navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#20830f;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#259a12;color:#fff}}.navbar.is-warning{background-color:#a98800;color:#fff}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:#fff}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#8f7300;color:#fff}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-warning .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:#fff}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#8f7300;color:#fff}.navbar.is-warning .navbar-start .navbar-link::after,.navbar.is-warning .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#8f7300;color:#fff}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#a98800;color:#fff}}.navbar.is-danger{background-color:#cb3c33;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#b7362e;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#b7362e;color:#fff}.navbar.is-danger .navbar-start .navbar-link::after,.navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#b7362e;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#cb3c33;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#222;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,0.05)}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#222;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#2e63b8}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(0.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#2e63b8}.navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#2e63b8;border-bottom-style:solid;border-bottom-width:3px;color:#2e63b8;padding-bottom:calc(0.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#2e63b8;margin-top:-0.375em;right:1.125em}.navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1056px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#2e63b8}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#2e63b8}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small,#documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,.pagination.is-rounded .pagination-next,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#222;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#3c5dcd}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#6b6b6b;opacity:0.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:#bbb;font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading,.content kbd.panel .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active,.content kbd.panel .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon,.content kbd.panel .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading,.docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#4eb5de;color:#fff}.panel.is-primary .panel-tabs a.is-active,.docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#4eb5de}.panel.is-primary .panel-block.is-active .panel-icon,.docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#4eb5de}.panel.is-link .panel-heading{background-color:#2e63b8;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#2e63b8}.panel.is-link .panel-block.is-active .panel-icon{color:#2e63b8}.panel.is-info .panel-heading{background-color:#3c5dcd;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3c5dcd}.panel.is-info .panel-block.is-active .panel-icon{color:#3c5dcd}.panel.is-success .panel-heading{background-color:#259a12;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#259a12}.panel.is-success .panel-block.is-active .panel-icon{color:#259a12}.panel.is-warning .panel-heading{background-color:#a98800;color:#fff}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#a98800}.panel.is-warning .panel-block.is-active .panel-icon{color:#a98800}.panel.is-danger .panel-heading{background-color:#cb3c33;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#cb3c33}.panel.is-danger .panel-block.is-active .panel-icon{color:#cb3c33}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#222;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:0.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#222}.panel-list a:hover{color:#2e63b8}.panel-block{align-items:center;color:#222;display:flex;justify-content:flex-start;padding:0.5em 0.75em}.panel-block input[type="checkbox"]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#2e63b8;color:#363636}.panel-block.is-active .panel-icon{color:#2e63b8}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#6b6b6b;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#222;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#222;color:#222}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#2e63b8;color:#2e63b8}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:0.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:rgba(0,0,0,0) !important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#2e63b8;border-color:#2e63b8;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}.tabs.is-small,#documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none;width:unset}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>.column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>.column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>.column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>.column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none;width:unset}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.33333337%}.column.is-offset-1-mobile{margin-left:8.33333337%}.column.is-2-mobile{flex:none;width:16.66666674%}.column.is-offset-2-mobile{margin-left:16.66666674%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333337%}.column.is-offset-4-mobile{margin-left:33.33333337%}.column.is-5-mobile{flex:none;width:41.66666674%}.column.is-offset-5-mobile{margin-left:41.66666674%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333337%}.column.is-offset-7-mobile{margin-left:58.33333337%}.column.is-8-mobile{flex:none;width:66.66666674%}.column.is-offset-8-mobile{margin-left:66.66666674%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333337%}.column.is-offset-10-mobile{margin-left:83.33333337%}.column.is-11-mobile{flex:none;width:91.66666674%}.column.is-offset-11-mobile{margin-left:91.66666674%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none;width:unset}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333337%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333337%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66666674%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66666674%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333337%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333337%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66666674%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66666674%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333337%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333337%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66666674%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66666674%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333337%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333337%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66666674%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66666674%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){.column.is-narrow-touch{flex:none;width:unset}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.33333337%}.column.is-offset-1-touch{margin-left:8.33333337%}.column.is-2-touch{flex:none;width:16.66666674%}.column.is-offset-2-touch{margin-left:16.66666674%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333337%}.column.is-offset-4-touch{margin-left:33.33333337%}.column.is-5-touch{flex:none;width:41.66666674%}.column.is-offset-5-touch{margin-left:41.66666674%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333337%}.column.is-offset-7-touch{margin-left:58.33333337%}.column.is-8-touch{flex:none;width:66.66666674%}.column.is-offset-8-touch{margin-left:66.66666674%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333337%}.column.is-offset-10-touch{margin-left:83.33333337%}.column.is-11-touch{flex:none;width:91.66666674%}.column.is-offset-11-touch{margin-left:91.66666674%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){.column.is-narrow-desktop{flex:none;width:unset}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.33333337%}.column.is-offset-1-desktop{margin-left:8.33333337%}.column.is-2-desktop{flex:none;width:16.66666674%}.column.is-offset-2-desktop{margin-left:16.66666674%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333337%}.column.is-offset-4-desktop{margin-left:33.33333337%}.column.is-5-desktop{flex:none;width:41.66666674%}.column.is-offset-5-desktop{margin-left:41.66666674%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333337%}.column.is-offset-7-desktop{margin-left:58.33333337%}.column.is-8-desktop{flex:none;width:66.66666674%}.column.is-offset-8-desktop{margin-left:66.66666674%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333337%}.column.is-offset-10-desktop{margin-left:83.33333337%}.column.is-11-desktop{flex:none;width:91.66666674%}.column.is-offset-11-desktop{margin-left:91.66666674%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none;width:unset}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.33333337%}.column.is-offset-1-widescreen{margin-left:8.33333337%}.column.is-2-widescreen{flex:none;width:16.66666674%}.column.is-offset-2-widescreen{margin-left:16.66666674%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333337%}.column.is-offset-4-widescreen{margin-left:33.33333337%}.column.is-5-widescreen{flex:none;width:41.66666674%}.column.is-offset-5-widescreen{margin-left:41.66666674%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333337%}.column.is-offset-7-widescreen{margin-left:58.33333337%}.column.is-8-widescreen{flex:none;width:66.66666674%}.column.is-offset-8-widescreen{margin-left:66.66666674%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333337%}.column.is-offset-10-widescreen{margin-left:83.33333337%}.column.is-11-widescreen{flex:none;width:91.66666674%}.column.is-offset-11-widescreen{margin-left:91.66666674%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none;width:unset}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.33333337%}.column.is-offset-1-fullhd{margin-left:8.33333337%}.column.is-2-fullhd{flex:none;width:16.66666674%}.column.is-offset-2-fullhd{margin-left:16.66666674%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333337%}.column.is-offset-4-fullhd{margin-left:33.33333337%}.column.is-5-fullhd{flex:none;width:41.66666674%}.column.is-offset-5-fullhd{margin-left:41.66666674%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333337%}.column.is-offset-7-fullhd{margin-left:58.33333337%}.column.is-8-fullhd{flex:none;width:66.66666674%}.column.is-offset-8-fullhd{margin-left:66.66666674%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333337%}.column.is-offset-10-fullhd{margin-left:83.33333337%}.column.is-11-fullhd{flex:none;width:91.66666674%}.column.is-offset-11-fullhd{margin-left:91.66666674%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0 !important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0 !important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333337%}.tile.is-2{flex:none;width:16.66666674%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333337%}.tile.is-5{flex:none;width:41.66666674%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333337%}.tile.is-8{flex:none;width:66.66666674%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333337%}.tile.is-11{flex:none;width:91.66666674%}.tile.is-12{flex:none;width:100%}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,0.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,0.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:0.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,0.7)}.hero.is-light .subtitle{color:rgba(0,0,0,0.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}.hero.is-dark,.content kbd.hero{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong,.content kbd.hero strong{color:inherit}.hero.is-dark .title,.content kbd.hero .title{color:#fff}.hero.is-dark .subtitle,.content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}.hero.is-dark .subtitle a:not(.button),.content kbd.hero .subtitle a:not(.button),.hero.is-dark .subtitle strong,.content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-dark .navbar-menu,.content kbd.hero .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.content kbd.hero .navbar-item,.hero.is-dark .navbar-link,.content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-dark a.navbar-item:hover,.content kbd.hero a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.content kbd.hero a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.content kbd.hero .navbar-link:hover,.hero.is-dark .navbar-link.is-active,.content kbd.hero .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a,.content kbd.hero .tabs a{color:#fff;opacity:0.9}.hero.is-dark .tabs a:hover,.content kbd.hero .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a,.content kbd.hero .tabs li.is-active a{color:#363636 !important;opacity:1}.hero.is-dark .tabs.is-boxed a,.content kbd.hero .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a,.content kbd.hero .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.content kbd.hero .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover,.content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.content kbd.hero .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.content kbd.hero .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold,.content kbd.hero.is-bold{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu,.content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}}.hero.is-primary,.docstring>section>a.hero.docs-sourcelink{background-color:#4eb5de;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong,.docstring>section>a.hero.docs-sourcelink strong{color:inherit}.hero.is-primary .title,.docstring>section>a.hero.docs-sourcelink .title{color:#fff}.hero.is-primary .subtitle,.docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}.hero.is-primary .subtitle a:not(.button),.docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),.hero.is-primary .subtitle strong,.docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-primary .navbar-menu,.docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#4eb5de}}.hero.is-primary .navbar-item,.docstring>section>a.hero.docs-sourcelink .navbar-item,.hero.is-primary .navbar-link,.docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-primary a.navbar-item:hover,.docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.docstring>section>a.hero.docs-sourcelink .navbar-link:hover,.hero.is-primary .navbar-link.is-active,.docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#39acda;color:#fff}.hero.is-primary .tabs a,.docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}.hero.is-primary .tabs a:hover,.docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#4eb5de !important;opacity:1}.hero.is-primary .tabs.is-boxed a,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#4eb5de}.hero.is-primary.is-bold,.docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu,.docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%)}}.hero.is-link{background-color:#2e63b8;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,0.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-link .navbar-menu{background-color:#2e63b8}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#2958a4;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:0.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{color:#2e63b8 !important;opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#2e63b8}.hero.is-link.is-bold{background-image:linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%)}}.hero.is-info{background-color:#3c5dcd;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,0.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-info .navbar-menu{background-color:#3c5dcd}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#3151bf;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:0.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{color:#3c5dcd !important;opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3c5dcd}.hero.is-info.is-bold{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}}.hero.is-success{background-color:#259a12;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,0.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-success .navbar-menu{background-color:#259a12}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#20830f;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:0.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{color:#259a12 !important;opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#259a12}.hero.is-success.is-bold{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}}.hero.is-warning{background-color:#a98800;color:#fff}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:#fff}.hero.is-warning .subtitle{color:rgba(255,255,255,0.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-warning .navbar-menu{background-color:#a98800}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#8f7300;color:#fff}.hero.is-warning .tabs a{color:#fff;opacity:0.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{color:#a98800 !important;opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:#fff}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#a98800}.hero.is-warning.is-bold{background-image:linear-gradient(141deg, #764b00 0%, #a98800 71%, #c2bd00 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #764b00 0%, #a98800 71%, #c2bd00 100%)}}.hero.is-danger{background-color:#cb3c33;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-danger .navbar-menu{background-color:#cb3c33}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#b7362e;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:0.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{color:#cb3c33 !important;opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#cb3c33}.hero.is-danger.is-bold{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}}.hero.is-small .hero-body,#documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 6rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}.hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{.hero-body{padding:3rem 3rem}}.section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){.section{padding:3rem 3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}h1 .docs-heading-anchor,h1 .docs-heading-anchor:hover,h1 .docs-heading-anchor:visited,h2 .docs-heading-anchor,h2 .docs-heading-anchor:hover,h2 .docs-heading-anchor:visited,h3 .docs-heading-anchor,h3 .docs-heading-anchor:hover,h3 .docs-heading-anchor:visited,h4 .docs-heading-anchor,h4 .docs-heading-anchor:hover,h4 .docs-heading-anchor:visited,h5 .docs-heading-anchor,h5 .docs-heading-anchor:hover,h5 .docs-heading-anchor:visited,h6 .docs-heading-anchor,h6 .docs-heading-anchor:hover,h6 .docs-heading-anchor:visited{color:#222}h1 .docs-heading-anchor-permalink,h2 .docs-heading-anchor-permalink,h3 .docs-heading-anchor-permalink,h4 .docs-heading-anchor-permalink,h5 .docs-heading-anchor-permalink,h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}h1 .docs-heading-anchor-permalink::before,h2 .docs-heading-anchor-permalink::before,h3 .docs-heading-anchor-permalink::before,h4 .docs-heading-anchor-permalink::before,h5 .docs-heading-anchor-permalink::before,h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}h1:hover .docs-heading-anchor-permalink,h2:hover .docs-heading-anchor-permalink,h3:hover .docs-heading-anchor-permalink,h4:hover .docs-heading-anchor-permalink,h5:hover .docs-heading-anchor-permalink,h6:hover .docs-heading-anchor-permalink{visibility:visible}.docs-dark-only{display:none !important}pre{position:relative;overflow:hidden}pre code,pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}pre code:first-of-type,pre code.hljs:first-of-type{padding-top:0.5rem !important}pre code:last-of-type,pre code.hljs:last-of-type{padding-bottom:0.5rem !important}pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#222;cursor:pointer;text-align:center}pre .copy-button:focus,pre .copy-button:hover{opacity:1;background:rgba(34,34,34,0.1);color:#2e63b8}pre .copy-button.success{color:#259a12;opacity:1}pre .copy-button.error{color:#cb3c33;opacity:1}pre:hover .copy-button{opacity:1}.admonition{background-color:#f5f5f5;border-style:solid;border-width:2px;border-color:#4a4a4a;border-radius:4px;font-size:1rem}.admonition strong{color:currentColor}.admonition.is-small,#documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}.admonition.is-medium{font-size:1.25rem}.admonition.is-large{font-size:1.5rem}.admonition.is-default{background-color:#f5f5f5;border-color:#4a4a4a}.admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#4a4a4a}.admonition.is-default>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-info{background-color:#f5f5f5;border-color:#3c5dcd}.admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#3c5dcd}.admonition.is-info>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-success{background-color:#f5f5f5;border-color:#259a12}.admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#259a12}.admonition.is-success>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-warning{background-color:#f5f5f5;border-color:#a98800}.admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#a98800}.admonition.is-warning>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-danger{background-color:#f5f5f5;border-color:#cb3c33}.admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#cb3c33}.admonition.is-danger>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-compat{background-color:#f5f5f5;border-color:#3489da}.admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#3489da}.admonition.is-compat>.admonition-body{color:rgba(0,0,0,0.7)}.admonition-header{color:#4a4a4a;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}details.admonition.is-details>.admonition-header{list-style:none}details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}.admonition-body{color:#222;padding:0.5rem .75rem}.admonition-body pre{background-color:#f5f5f5}.admonition-body code{background-color:rgba(0,0,0,0.05)}.docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(10,10,10,0.1);max-width:100%}.docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#f5f5f5;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #dbdbdb;overflow:auto}.docstring>header code{background-color:transparent}.docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}.docstring>header .docstring-binding{margin-right:0.3em}.docstring>header .docstring-category{margin-left:0.3em}.docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #dbdbdb}.docstring>section:last-child{border-bottom:none}.docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}.docstring>section>a.docs-sourcelink:focus{opacity:1 !important}.docstring:hover>section>a.docs-sourcelink{opacity:0.2}.docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}.docstring>section:hover a.docs-sourcelink{opacity:1}.documenter-example-output{background-color:#fff}.outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#f5f5f5;color:rgba(0,0,0,0.7);border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}.outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}.outdated-warning-overlay a{color:#2e63b8}.outdated-warning-overlay a:hover{color:#363636}.content pre{border:2px solid #dbdbdb;border-radius:4px}.content code{font-weight:inherit}.content a code{color:#2e63b8}.content a:hover code{color:#363636}.content h1 code,.content h2 code,.content h3 code,.content h4 code,.content h5 code,.content h6 code{color:#222}.content table{display:block;width:initial;max-width:100%;overflow-x:auto}.content blockquote>ul:first-child,.content blockquote>ol:first-child,.content .admonition-body>ul:first-child,.content .admonition-body>ol:first-child{margin-top:0}pre,code{font-variant-ligatures:no-contextual}.breadcrumb a.is-disabled{cursor:default;pointer-events:none}.breadcrumb a.is-disabled,.breadcrumb a.is-disabled:hover{color:#222}.hljs{background:initial !important}.katex .katex-mathml{top:0;right:0}.katex-display,mjx-container,.MathJax_Display{margin:0.5em 0 !important}html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}li.no-marker{list-style:none}#documenter .docs-main>article{overflow-wrap:break-word}#documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){#documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){#documenter .docs-main{width:100%}#documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}#documenter .docs-main>header,#documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}#documenter .docs-main header.docs-navbar{background-color:#fff;border-bottom:1px solid #dbdbdb;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}#documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}#documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}#documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}#documenter .docs-main header.docs-navbar .docs-right .docs-icon,#documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}#documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){#documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}#documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){#documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}#documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #bbb;transition-duration:0.7s;-webkit-transition-duration:0.7s}#documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}#documenter .docs-main section.footnotes{border-top:1px solid #dbdbdb}#documenter .docs-main section.footnotes li .tag:first-child,#documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,#documenter .docs-main section.footnotes li .content kbd:first-child,.content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}#documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #dbdbdb;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){#documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}#documenter .docs-main .docs-footer .docs-footer-nextpage,#documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}#documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}#documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}#documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}#documenter .docs-sidebar{display:flex;flex-direction:column;color:#0a0a0a;background-color:#f5f5f5;border-right:1px solid #dbdbdb;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}#documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #bbb}@media screen and (min-width: 1056px){#documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){#documenter .docs-sidebar{left:0;top:0}}#documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}#documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}#documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}#documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}#documenter .docs-sidebar .docs-package-name a,#documenter .docs-sidebar .docs-package-name a:hover{color:#0a0a0a}#documenter .docs-sidebar .docs-version-selector{border-top:1px solid #dbdbdb;display:none;padding:0.5rem}#documenter .docs-sidebar .docs-version-selector.visible{display:flex}#documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #dbdbdb;padding-bottom:1.5rem}#documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}#documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #dbdbdb}#documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}#documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}#documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}#documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}#documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}#documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}#documenter .docs-sidebar ul.docs-menu .tocitem,#documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#0a0a0a;background:#f5f5f5}#documenter .docs-sidebar ul.docs-menu a.tocitem:hover,#documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#0a0a0a;background-color:#ebebeb}#documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;background-color:#fff}#documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,#documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#fff;color:#0a0a0a}#documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#ebebeb;color:#0a0a0a}#documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}#documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #dbdbdb}#documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}#documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}#documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}#documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}#documenter .docs-sidebar form.docs-search>input{width:14.4rem}#documenter .docs-sidebar #documenter-search-query{color:#707070;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){#documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#e0e0e0}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#ccc}}@media screen and (max-width: 1055px){#documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}#documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}#documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#e0e0e0}#documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#ccc}}kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(0,0,0,0.6);box-shadow:0 2px 0 1px rgba(0,0,0,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}.search-min-width-50{min-width:50%}.search-min-height-100{min-height:100%}.search-modal-card-body{max-height:calc(100vh - 15rem)}.search-result-link{border-radius:0.7em;transition:all 300ms}.search-result-link:hover,.search-result-link:focus{background-color:rgba(0,128,128,0.1)}.search-result-link .property-search-result-badge,.search-result-link .search-filter{transition:all 300ms}.property-search-result-badge,.search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}.search-result-link:hover .property-search-result-badge,.search-result-link:hover .search-filter,.search-result-link:focus .property-search-result-badge,.search-result-link:focus .search-filter{color:#f1f5f9;background-color:#333}.search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}.search-filter:hover,.search-filter:focus{color:#333}.search-filter-selected{color:#f5f5f5;background-color:rgba(139,0,139,0.5)}.search-filter-selected:hover,.search-filter-selected:focus{color:#f5f5f5}.search-result-highlight{background-color:#ffdd57;color:black}.search-divider{border-bottom:1px solid #dbdbdb}.search-result-title{width:85%;color:#333}.search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}#search-modal .modal-card-body::-webkit-scrollbar,#search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}#search-modal .modal-card-body::-webkit-scrollbar-thumb,#search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}#search-modal .modal-card-body::-webkit-scrollbar-track,#search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}.w-100{width:100%}.gap-2{gap:0.5rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.ansi span.sgr1{font-weight:bolder}.ansi span.sgr2{font-weight:lighter}.ansi span.sgr3{font-style:italic}.ansi span.sgr4{text-decoration:underline}.ansi span.sgr7{color:#fff;background-color:#222}.ansi span.sgr8{color:transparent}.ansi span.sgr8 span{color:transparent}.ansi span.sgr9{text-decoration:line-through}.ansi span.sgr30{color:#242424}.ansi span.sgr31{color:#a7201f}.ansi span.sgr32{color:#066f00}.ansi span.sgr33{color:#856b00}.ansi span.sgr34{color:#2149b0}.ansi span.sgr35{color:#7d4498}.ansi span.sgr36{color:#007989}.ansi span.sgr37{color:gray}.ansi span.sgr40{background-color:#242424}.ansi span.sgr41{background-color:#a7201f}.ansi span.sgr42{background-color:#066f00}.ansi span.sgr43{background-color:#856b00}.ansi span.sgr44{background-color:#2149b0}.ansi span.sgr45{background-color:#7d4498}.ansi span.sgr46{background-color:#007989}.ansi span.sgr47{background-color:gray}.ansi span.sgr90{color:#616161}.ansi span.sgr91{color:#cb3c33}.ansi span.sgr92{color:#0e8300}.ansi span.sgr93{color:#a98800}.ansi span.sgr94{color:#3c5dcd}.ansi span.sgr95{color:#9256af}.ansi span.sgr96{color:#008fa3}.ansi span.sgr97{color:#f5f5f5}.ansi span.sgr100{background-color:#616161}.ansi span.sgr101{background-color:#cb3c33}.ansi span.sgr102{background-color:#0e8300}.ansi span.sgr103{background-color:#a98800}.ansi span.sgr104{background-color:#3c5dcd}.ansi span.sgr105{background-color:#9256af}.ansi span.sgr106{background-color:#008fa3}.ansi span.sgr107{background-color:#f5f5f5}code.language-julia-repl>span.hljs-meta{color:#066f00;font-weight:bolder}/*! + Theme: Default + Description: Original highlight.js style + Author: (c) Ivan Sagalaev + Maintainer: @highlightjs/core-team + Website: https://highlightjs.org/ + License: see project LICENSE + Touched: 2021 +*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#F3F3F3;color:#444}.hljs-comment{color:#697070}.hljs-tag,.hljs-punctuation{color:#444a}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#444}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-operator,.hljs-selector-pseudo{color:#ab5656}.hljs-literal{color:#695}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#38a}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}.gap-4{gap:1rem} diff --git a/previews/PR873/assets/themeswap.js b/previews/PR873/assets/themeswap.js new file mode 100644 index 000000000..9f5eebe6a --- /dev/null +++ b/previews/PR873/assets/themeswap.js @@ -0,0 +1,84 @@ +// Small function to quickly swap out themes. Gets put into the tag.. +function set_theme_from_local_storage() { + // Initialize the theme to null, which means default + var theme = null; + // If the browser supports the localstorage and is not disabled then try to get the + // documenter theme + if (window.localStorage != null) { + // Get the user-picked theme from localStorage. May be `null`, which means the default + // theme. + theme = window.localStorage.getItem("documenter-theme"); + } + // Check if the users preference is for dark color scheme + var darkPreference = + window.matchMedia("(prefers-color-scheme: dark)").matches === true; + // Initialize a few variables for the loop: + // + // - active: will contain the index of the theme that should be active. Note that there + // is no guarantee that localStorage contains sane values. If `active` stays `null` + // we either could not find the theme or it is the default (primary) theme anyway. + // Either way, we then need to stick to the primary theme. + // + // - disabled: style sheets that should be disabled (i.e. all the theme style sheets + // that are not the currently active theme) + var active = null; + var disabled = []; + var primaryLightTheme = null; + var primaryDarkTheme = null; + for (var i = 0; i < document.styleSheets.length; i++) { + var ss = document.styleSheets[i]; + // The tag of each style sheet is expected to have a data-theme-name attribute + // which must contain the name of the theme. The names in localStorage much match this. + var themename = ss.ownerNode.getAttribute("data-theme-name"); + // attribute not set => non-theme stylesheet => ignore + if (themename === null) continue; + // To distinguish the default (primary) theme, it needs to have the data-theme-primary + // attribute set. + if (ss.ownerNode.getAttribute("data-theme-primary") !== null) { + primaryLightTheme = themename; + } + // Check if the theme is primary dark theme so that we could store its name in darkTheme + if (ss.ownerNode.getAttribute("data-theme-primary-dark") !== null) { + primaryDarkTheme = themename; + } + // If we find a matching theme (and it's not the default), we'll set active to non-null + if (themename === theme) active = i; + // Store the style sheets of inactive themes so that we could disable them + if (themename !== theme) disabled.push(ss); + } + var activeTheme = null; + if (active !== null) { + // If we did find an active theme, we'll (1) add the theme--$(theme) class to + document.getElementsByTagName("html")[0].className = "theme--" + theme; + activeTheme = theme; + } else { + // If we did _not_ find an active theme, then we need to fall back to the primary theme + // which can either be dark or light, depending on the user's OS preference. + var activeTheme = darkPreference ? primaryDarkTheme : primaryLightTheme; + // In case it somehow happens that the relevant primary theme was not found in the + // preceding loop, we abort without doing anything. + if (activeTheme === null) { + console.error("Unable to determine primary theme."); + return; + } + // When switching to the primary light theme, then we must not have a class name + // for the tag. That's only for non-primary or the primary dark theme. + if (darkPreference) { + document.getElementsByTagName("html")[0].className = + "theme--" + activeTheme; + } else { + document.getElementsByTagName("html")[0].className = ""; + } + } + for (var i = 0; i < document.styleSheets.length; i++) { + var ss = document.styleSheets[i]; + // The tag of each style sheet is expected to have a data-theme-name attribute + // which must contain the name of the theme. The names in localStorage much match this. + var themename = ss.ownerNode.getAttribute("data-theme-name"); + // attribute not set => non-theme stylesheet => ignore + if (themename === null) continue; + // we'll disable all the stylesheets, except for the active one + ss.disabled = !(themename == activeTheme); + } +} +set_theme_from_local_storage(); diff --git a/previews/PR873/assets/warner.js b/previews/PR873/assets/warner.js new file mode 100644 index 000000000..3f6f5d008 --- /dev/null +++ b/previews/PR873/assets/warner.js @@ -0,0 +1,52 @@ +function maybeAddWarning() { + // DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE + // in siteinfo.js. + // If either of these are undefined something went horribly wrong, so we abort. + if ( + window.DOCUMENTER_NEWEST === undefined || + window.DOCUMENTER_CURRENT_VERSION === undefined || + window.DOCUMENTER_STABLE === undefined + ) { + return; + } + + // Current version is not a version number, so we can't tell if it's the newest version. Abort. + if (!/v(\d+\.)*\d+/.test(window.DOCUMENTER_CURRENT_VERSION)) { + return; + } + + // Current version is newest version, so no need to add a warning. + if (window.DOCUMENTER_NEWEST === window.DOCUMENTER_CURRENT_VERSION) { + return; + } + + // Add a noindex meta tag (unless one exists) so that search engines don't index this version of the docs. + if (document.body.querySelector('meta[name="robots"]') === null) { + const meta = document.createElement("meta"); + meta.name = "robots"; + meta.content = "noindex"; + + document.getElementsByTagName("head")[0].appendChild(meta); + } + + const div = document.createElement("div"); + div.classList.add("outdated-warning-overlay"); + const closer = document.createElement("button"); + closer.classList.add("outdated-warning-closer", "delete"); + closer.addEventListener("click", function () { + document.body.removeChild(div); + }); + const href = window.documenterBaseURL + "/../" + window.DOCUMENTER_STABLE; + div.innerHTML = + 'This documentation is not for the latest stable release, but for either the development version or an older release.
Click here to go to the documentation for the latest stable release.'; + div.appendChild(closer); + document.body.appendChild(div); +} + +if (document.readyState === "loading") { + document.addEventListener("DOMContentLoaded", maybeAddWarning); +} else { + maybeAddWarning(); +} diff --git a/previews/PR873/block_krylov/index.html b/previews/PR873/block_krylov/index.html new file mode 100644 index 000000000..3055dc32b --- /dev/null +++ b/previews/PR873/block_krylov/index.html @@ -0,0 +1,22 @@ + +Block-Krylov methods · Krylov.jl

Block-GMRES

Note

block_gmres works on GPUs with Julia 1.11.

If you want to use block_gmres on previous Julia versions, you can overload the function Krylov.copy_triangle with the following code:

using KernelAbstractions, Krylov
+
+@kernel function copy_triangle_kernel!(dest, src)
+  i, j = @index(Global, NTuple)
+  if j >= i
+    @inbounds dest[i, j] = src[i, j]
+  end
+end
+
+function Krylov.copy_triangle(Q::AbstractMatrix{FC}, R::AbstractMatrix{FC}, k::Int) where FC <: Krylov.FloatOrComplex
+  backend = get_backend(Q)
+  ndrange = (k, k)
+  copy_triangle_kernel!(backend)(R, Q; ndrange=ndrange)
+  KernelAbstractions.synchronize(backend)
+end
Krylov.block_gmresFunction
(X, stats) = block_gmres(A, b::AbstractMatrix{FC};
+                         memory::Int=20, M=I, N=I, ldiv::Bool=false,
+                         restart::Bool=false, reorthogonalization::Bool=false,
+                         atol::T=√eps(T), rtol::T=√eps(T), itmax::Int=0,
+                         timemax::Float64=Inf, verbose::Int=0, history::Bool=false,
+                         callback=solver->false, iostream::IO=kstdout)

T is an AbstractFloat such as Float32, Float64 or BigFloat. FC is T or Complex{T}.

(X, stats) = block_gmres(A, B, X0::AbstractMatrix; kwargs...)

Block-GMRES can be warm-started from an initial guess X0 where kwargs are the same keyword arguments as above.

Solve the linear system AX = B of size n with p right-hand sides using block-GMRES.

Input arguments

  • A: a linear operator that models a matrix of dimension n;
  • B: a matrix of size n × p.

Optional argument

  • X0: a matrix of size n × p that represents an initial guess of the solution X.

Keyword arguments

  • memory: if restart = true, the restarted version block-GMRES(k) is used with k = memory. If restart = false, the parameter memory should be used as a hint of the number of iterations to limit dynamic memory allocations. Additional storage will be allocated if the number of iterations exceeds memory;
  • M: linear operator that models a nonsingular matrix of size n used for left preconditioning;
  • N: linear operator that models a nonsingular matrix of size n used for right preconditioning;
  • ldiv: define whether the preconditioners use ldiv! or mul!;
  • restart: restart the method after memory iterations;
  • reorthogonalization: reorthogonalize the new matrices of the block-Krylov basis against all previous matrix;
  • atol: absolute stopping tolerance based on the residual norm;
  • rtol: relative stopping tolerance based on the residual norm;
  • itmax: the maximum number of iterations. If itmax=0, the default number of iterations is set to 2 * div(n,p);
  • timemax: the time limit in seconds;
  • verbose: additional details can be displayed if verbose mode is enabled (verbose > 0). Information will be displayed every verbose iterations;
  • history: collect additional statistics on the run such as residual norms;
  • callback: function or functor called as callback(solver) that returns true if the block-Krylov method should terminate, and false otherwise;
  • iostream: stream to which output is logged.

Output arguments

  • X: a dense matrix of size n × p;
  • stats: statistics collected on the run in a SimpleStats structure.
source
Krylov.block_gmres!Function
solver = block_gmres!(solver::BlockGmresSolver, B; kwargs...)
+solver = block_gmres!(solver::BlockGmresSolver, B, X0; kwargs...)

where kwargs are keyword arguments of block_gmres.

See BlockGmresSolver for more details about the solver.

source
diff --git a/previews/PR873/block_processes/index.html b/previews/PR873/block_processes/index.html new file mode 100644 index 000000000..6728e9459 --- /dev/null +++ b/previews/PR873/block_processes/index.html @@ -0,0 +1,102 @@ + +Block Krylov processes · Krylov.jl

Block Krylov processes

Block Hermitian Lanczos

If the vector $b$ in the Hermitian Lanczos process is replaced by a matrix $B$ with $p$ columns, we can derive the block Hermitian Lanczos process.

block_hermitian_lanczos

After $k$ iterations of the block Hermitian Lanczos process, the situation may be summarized as

\[\begin{align*} + A V_k &= V_{k+1} T_{k+1,k}, \\ + V_k^H V_k &= I_{pk}, +\end{align*}\]

where $V_k$ is an orthonormal basis of the block Krylov subspace $\mathcal{K}_k^{\square}(A,B)$,

\[T_{k+1,k} = +\begin{bmatrix} + \Omega_1 & \Psi_2^H & & \\ + \Psi_2 & \Omega_2 & \ddots & \\ + & \ddots & \ddots & \Psi_k^H \\ + & & \Psi_k & \Omega_k \\ + & & & \Psi_{k+1} +\end{bmatrix}.\]

The function hermitian_lanczos returns $V_{k+1}$, $\Psi_1$ and $T_{k+1,k}$.

Krylov.hermitian_lanczosMethod
V, Ψ, T = hermitian_lanczos(A, B, k; algo="householder")

Input arguments

  • A: a linear operator that models an Hermitian matrix of dimension n;
  • B: a matrix of size n × p;
  • k: the number of iterations of the block Hermitian Lanczos process.

Keyword arguments

  • algo: the algorithm to perform reduced QR factorizations ("gs", "mgs", "givens" or "householder").

Output arguments

  • V: a dense n × p(k+1) matrix;
  • Ψ: a dense p × p upper triangular matrix such that V₁Ψ = B;
  • T: a sparse p(k+1) × pk block tridiagonal matrix with a bandwidth p.
source

Block Non-Hermitian Lanczos

If the vectors $b$ and $c$ in the non-Hermitian Lanczos process are replaced by matrices $B$ and $C$ with both $p$ columns, we can derive the block non-Hermitian Lanczos process.

block_nonhermitian_lanczos

After $k$ iterations of the block non-Hermitian Lanczos process, the situation may be summarized as

\[\begin{align*} + A V_k &= V_{k+1} T_{k+1,k}, \\ + A^H U_k &= U_{k+1} T_{k,k+1}^H, \\ + V_k^H U_k &= U_k^H V_k = I_{pk}, +\end{align*}\]

where $V_k$ and $U_k$ are bases of the block Krylov subspaces $\mathcal{K}^{\square}_k(A,B)$ and $\mathcal{K}^{\square}_k (A^H,C)$, respectively,

\[T_{k+1,k} = +\begin{bmatrix} + \Omega_1 & \Phi_2 & & \\ + \Psi_2 & \Omega_2 & \ddots & \\ + & \ddots & \ddots & \Phi_k \\ + & & \Psi_k & \Omega_k \\ + & & & \Psi_{k+1} +\end{bmatrix} +, \qquad +T_{k,k+1}^H = +\begin{bmatrix} + \Omega_1^H & \Psi_2^H & & \\ + \Phi_2^H & \Omega_2^H & \ddots & \\ + & \ddots & \ddots & \Psi_k^H \\ + & & \Phi_k^H & \Omega_k^H \\ + & & & \Phi_{k+1}^H +\end{bmatrix}.\]

The function nonhermitian_lanczos returns $V_{k+1}$, $\Psi_1$, $T_{k+1,k}$, $U_{k+1}$ $\Phi_1^H$ and $T_{k,k+1}^H$.

Krylov.nonhermitian_lanczosMethod
V, Ψ, T, U, Φᴴ, Tᴴ = nonhermitian_lanczos(A, B, C, k)

Input arguments

  • A: a linear operator that models a square matrix of dimension n;
  • B: a matrix of size n × p;
  • C: a matrix of size n × p;
  • k: the number of iterations of the block non-Hermitian Lanczos process.

Output arguments

  • V: a dense n × p(k+1) matrix;
  • Ψ: a dense p × p upper triangular matrix such that V₁Ψ = B;
  • T: a sparse p(k+1) × pk block tridiagonal matrix with a bandwidth p;
  • U: a dense n × p(k+1) matrix;
  • Φᴴ: a dense p × p upper triangular matrix such that U₁Φᴴ = C;
  • Tᴴ: a sparse p(k+1) × pk block tridiagonal matrix with a bandwidth p.
source

Block Arnoldi

If the vector $b$ in the Arnoldi process is replaced by a matrix $B$ with $p$ columns, we can derive the block Arnoldi process.

block_arnoldi

After $k$ iterations of the block Arnoldi process, the situation may be summarized as

\[\begin{align*} + A V_k &= V_{k+1} H_{k+1,k}, \\ + V_k^H V_k &= I_{pk}, +\end{align*}\]

where $V_k$ is an orthonormal basis of the block Krylov subspace $\mathcal{K}_k^{\square}(A,B)$,

\[H_{k+1,k} = +\begin{bmatrix} + \Psi_{1,1}~ & \Psi_{1,2}~ & \ldots & \Psi_{1,k} \\ + \Psi_{2,1}~ & \ddots~ & \ddots & \vdots \\ + & \ddots~ & \ddots & \Psi_{k-1,k} \\ + & & \Psi_{k,k-1} & \Psi_{k,k} \\ + & & & \Psi_{k+1,k} +\end{bmatrix}.\]

The function arnoldi returns $V_{k+1}$, $\Gamma$, and $H_{k+1,k}$.

Related method: BLOCK-GMRES.

Krylov.arnoldiMethod
V, Γ, H = arnoldi(A, B, k; algo="householder", reorthogonalization=false)

Input arguments

  • A: a linear operator that models a square matrix of dimension n;
  • B: a matrix of size n × p;
  • k: the number of iterations of the block Arnoldi process.

Keyword arguments

  • algo: the algorithm to perform reduced QR factorizations ("gs", "mgs", "givens" or "householder").
  • reorthogonalization: reorthogonalize the new matrices of the block Krylov basis against all previous matrices.

Output arguments

  • V: a dense n × p(k+1) matrix;
  • Γ: a dense p × p upper triangular matrix such that V₁Γ = B;
  • H: a dense p(k+1) × pk block upper Hessenberg matrix with a lower bandwidth p.
source

Block Golub-Kahan

If the vector $b$ in the Golub-Kahan process is replaced by a matrix $B$ with $p$ columns, we can derive the block Golub-Kahan process.

block_golub_kahan

After $k$ iterations of the block Golub-Kahan process, the situation may be summarized as

\[\begin{align*} + A V_k &= U_{k+1} B_k, \\ + A^H U_{k+1} &= V_{k+1} L_{k+1}^H, \\ + V_k^H V_k &= U_k^H U_k = I_{pk}, +\end{align*}\]

where $V_k$ and $U_k$ are bases of the block Krylov subspaces $\mathcal{K}_k^{\square}(A^HA,A^HB)$ and $\mathcal{K}_k^{\square}(AA^H,B)$, respectively,

\[B_k = +\begin{bmatrix} + \Omega_1 & & & \\ + \Psi_2 & \Omega_2 & & \\ + & \ddots & \ddots & \\ + & & \Psi_k & \Omega_k \\ + & & & \Psi_{k+1} \\ +\end{bmatrix} +, \qquad +L_{k+1}^H = +\begin{bmatrix} + \Omega_1^H & \Psi_2^H & & & \\ + & \Omega_2^H & \ddots & & \\ + & & \ddots & \Psi_k^H & \\ + & & & \Omega_k^H & \Psi_{k+1}^H \\ + & & & & \Omega_{k+1}^H \\ +\end{bmatrix}.\]

The function golub_kahan returns $V_{k+1}$, $U_{k+1}$, $\Psi_1$ and $L_{k+1}$.

Krylov.golub_kahanMethod
V, U, Ψ, L = golub_kahan(A, B, k; algo="householder")

Input arguments

  • A: a linear operator that models a matrix of dimension m × n;
  • B: a matrix of size m × p;
  • k: the number of iterations of the block Golub-Kahan process.

Keyword argument

  • algo: the algorithm to perform reduced QR factorizations ("gs", "mgs", "givens" or "householder").

Output arguments

  • V: a dense n × p(k+1) matrix;
  • U: a dense m × p(k+1) matrix;
  • Ψ: a dense p × p upper triangular matrix such that U₁Ψ = B;
  • L: a sparse p(k+1) × p(k+1) block lower bidiagonal matrix with a lower bandwidth p.
source

Block Saunders-Simon-Yip

If the vectors $b$ and $c$ in the Saunders-Simon-Yip process are replaced by matrices $B$ and $C$ with both $p$ columns, we can derive the block Saunders-Simon-Yip process.

block_saunders_simon_yip

After $k$ iterations of the block Saunders-Simon-Yip process, the situation may be summarized as

\[\begin{align*} + A U_k &= V_{k+1} T_{k+1,k}, \\ + A^H V_k &= U_{k+1} T_{k,k+1}^H, \\ + V_k^H V_k &= U_k^H U_k = I_{pk}, +\end{align*}\]

where $\begin{bmatrix} V_k & 0 \\ 0 & U_k \end{bmatrix}$ is an orthonormal basis of the block Krylov subspace $\mathcal{K}^{\square}_k \left(\begin{bmatrix} 0 & A \\ A^H & 0 \end{bmatrix}, \begin{bmatrix} B & 0 \\ 0 & C \end{bmatrix}\right)$,

\[T_{k+1,k} = +\begin{bmatrix} + \Omega_1 & \Phi_2 & & \\ + \Psi_2 & \Omega_2 & \ddots & \\ + & \ddots & \ddots & \Phi_k \\ + & & \Psi_k & \Omega_k \\ + & & & \Psi_{k+1} +\end{bmatrix} +, \qquad +T_{k,k+1}^H = +\begin{bmatrix} + \Omega_1^H & \Psi_2^H & & \\ + \Phi_2^H & \Omega_2^H & \ddots & \\ + & \ddots & \ddots & \Psi_k^H \\ + & & \Phi_k^H & \Omega_k^H \\ + & & & \Phi_{k+1}^H +\end{bmatrix}.\]

The function saunders_simon_yip returns $V_{k+1}$, $\Psi_1$, $T_{k+1,k}$, $U_{k+1}$, $\Phi_1^H$ and $T_{k,k+1}^H$.

Krylov.saunders_simon_yipMethod
V, Ψ, T, U, Φᴴ, Tᴴ = saunders_simon_yip(A, B, C, k; algo="householder")

Input arguments

  • A: a linear operator that models a matrix of dimension m × n;
  • B: a matrix of size m × p;
  • C: a matrix of size n × p;
  • k: the number of iterations of the block Saunders-Simon-Yip process.

Keyword argument

  • algo: the algorithm to perform reduced QR factorizations ("gs", "mgs", "givens" or "householder").

Output arguments

  • V: a dense m × p(k+1) matrix;
  • Ψ: a dense p × p upper triangular matrix such that V₁Ψ = B;
  • T: a sparse p(k+1) × pk block tridiagonal matrix with a bandwidth p;
  • U: a dense n × p(k+1) matrix;
  • Φᴴ: a dense p × p upper triangular matrix such that U₁Φᴴ = C;
  • Tᴴ: a sparse p(k+1) × pk block tridiagonal matrix with a bandwidth p.
source

Block Montoison-Orban

If the vectors $b$ and $c$ in the Montoison-Orban process are replaced by matrices $D$ and $C$ with both $p$ columns, we can derive the block Montoison-Orban process.

block_montoison_orban

After $k$ iterations of the block Montoison-Orban process, the situation may be summarized as

\[\begin{align*} + A U_k &= V_{k+1} H_{k+1,k}, \\ + B V_k &= U_{k+1} F_{k+1,k}, \\ + V_k^H V_k &= U_k^H U_k = I_{pk}, +\end{align*}\]

where $\begin{bmatrix} V_k & 0 \\ 0 & U_k \end{bmatrix}$ is an orthonormal basis of the block Krylov subspace $\mathcal{K}^{\square}_k \left(\begin{bmatrix} 0 & A \\ B & 0 \end{bmatrix}, \begin{bmatrix} D & 0 \\ 0 & C \end{bmatrix}\right)$,

\[H_{k+1,k} = +\begin{bmatrix} + \Psi_{1,1}~ & \Psi_{1,2}~ & \ldots & \Psi_{1,k} \\ + \Psi_{2,1}~ & \ddots~ & \ddots & \vdots \\ + & \ddots~ & \ddots & \Psi_{k-1,k} \\ + & & \Psi_{k,k-1} & \Psi_{k,k} \\ + & & & \Psi_{k+1,k} +\end{bmatrix} +, \qquad +F_{k+1,k} = +\begin{bmatrix} + \Phi_{1,1}~ & \Phi_{1,2}~ & \ldots & \Phi_{1,k} \\ + \Phi_{2,1}~ & \ddots~ & \ddots & \vdots \\ + & \ddots~ & \ddots & \Phi_{k-1,k} \\ + & & \Phi_{k,k-1} & \Phi_{k,k} \\ + & & & \Phi_{k+1,k} +\end{bmatrix}.\]

The function montoison_orban returns $V_{k+1}$, $\Gamma$, $H_{k+1,k}$, $U_{k+1}$, $\Lambda$, and $F_{k+1,k}$.

Krylov.montoison_orbanMethod
V, Γ, H, U, Λ, F = montoison_orban(A, B, D, C, k; algo="householder", reorthogonalization=false)

Input arguments

  • A: a linear operator that models a matrix of dimension m × n;
  • B: a linear operator that models a matrix of dimension n × m;
  • D: a matrix of size m × p;
  • C: a matrix of size n × p;
  • k: the number of iterations of the block Montoison-Orban process.

Keyword arguments

  • algo: the algorithm to perform reduced QR factorizations ("gs", "mgs", "givens" or "householder").
  • reorthogonalization: reorthogonalize the new matrices of the block Krylov basis against all previous matrices.

Output arguments

  • V: a dense m × p(k+1) matrix;
  • Γ: a dense p × p upper triangular matrix such that V₁Γ = D;
  • H: a dense p(k+1) × pk block upper Hessenberg matrix with a lower bandwidth p;
  • U: a dense n × p(k+1) matrix;
  • Λ: a dense p × p upper triangular matrix such that U₁Λ = C;
  • F: a dense p(k+1) × pk block upper Hessenberg matrix with a lower bandwidth p.
source
diff --git a/previews/PR873/callbacks/index.html b/previews/PR873/callbacks/index.html new file mode 100644 index 000000000..67b471e91 --- /dev/null +++ b/previews/PR873/callbacks/index.html @@ -0,0 +1,53 @@ + +Callbacks · Krylov.jl

Callbacks

Each Krylov method is able to call a callback function as callback(solver) at each iteration. The callback should return true if the main loop should terminate, and false otherwise. If the method terminated because of the callback, the output status will be "user-requested exit". For example, if the user defines minres_callback(solver::MinresSolver), it can be passed to the solver using

(x, stats) = minres(A, b, callback = minres_callback)

If you need to write a callback that uses variables that are not in a KrylovSolver, use a closure:

function custom_stopping_condition(solver::KrylovSolver, A, b, r, tol)
+  mul!(r, A, solver.x)
+  r .-= b               # r := b - Ax
+  bool = norm(r) ≤ tol  # tolerance based on the 2-norm of the residual
+  return bool
+end
+
+cg_callback(solver) = custom_stopping_condition(solver, A, b, r, tol)
+(x, stats) = cg(A, b, callback = cg_callback)

Alternatively, use a structure and make it callable:

mutable struct CallbackWorkspace{T}
+  A::Matrix{T}
+  b::Vector{T}
+  r::Vector{T}
+  tol::T
+end
+
+function (workspace::CallbackWorkspace)(solver::KrylovSolver)
+  mul!(workspace.r, workspace.A, solver.x)
+  workspace.r .-= workspace.b
+  bool = norm(workspace.r) ≤ workspace.tol
+  return bool
+end
+
+bicgstab_callback = CallbackWorkspace(A, b, r, tol)
+(x, stats) = bicgstab(A, b, callback = bicgstab_callback)

Although the main goal of a callback is to add new stopping conditions, it can also retrieve information from the workspace of a Krylov method along the iterations. We now illustrate how to store all iterates $x_k$ of the GMRES method.

S = Krylov.ktypeof(b)
+global X = S[]  # Storage for GMRES iterates
+
+function gmres_callback(solver)
+  z = solver.z
+  k = solver.inner_iter
+  nr = sum(1:k)
+  V = solver.V
+  R = solver.R
+  y = copy(z)
+
+  # Solve Rk * yk = zk
+  for i = k : -1 : 1
+    pos = nr + i - k
+    for j = k : -1 : i+1
+      y[i] = y[i] - R[pos] * y[j]
+      pos = pos - j + 1
+    end
+    y[i] = y[i] / R[pos]
+  end
+
+  # xk = Vk * yk
+  xk = sum(V[i] * y[i] for i = 1:k)
+  push!(X, xk)
+
+  return false  # We don't want to add new stopping conditions
+end
+
+(x, stats) = gmres(A, b, callback = gmres_callback)
diff --git a/previews/PR873/examples/bicgstab/index.html b/previews/PR873/examples/bicgstab/index.html new file mode 100644 index 000000000..623e235aa --- /dev/null +++ b/previews/PR873/examples/bicgstab/index.html @@ -0,0 +1,54 @@ + +BICGSTAB · Krylov.jl
using Krylov, LinearOperators, IncompleteLU, HarwellRutherfordBoeing
+using LinearAlgebra, Printf, SuiteSparseMatrixCollection, SparseArrays
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "sherman5")
+path = fetch_ssmc(matrix, format="RB")
+
+n = matrix.nrows[1]
+A = RutherfordBoeingData(joinpath(path[1], "$(matrix.name[1]).rb")).data
+b = A * ones(n)
+
+F = ilu(A, τ = 0.05)
+
+@printf("nnz(ILU) / nnz(A): %7.1e\n", nnz(F) / nnz(A))
+
+# Solve Ax = b with BICGSTAB and an incomplete LU factorization
+# Remark: CGS can be used in the same way
+opM = LinearOperator(Float64, n, n, false, false, (y, v) -> forward_substitution!(y, F, v))
+opN = LinearOperator(Float64, n, n, false, false, (y, v) -> backward_substitution!(y, F, v))
+opP = LinearOperator(Float64, n, n, false, false, (y, v) -> ldiv!(y, F, v))
+
+# Without preconditioning
+x, stats = bicgstab(A, b, history=true)
+r = b - A * x
+@printf("[Without preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Without preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
+
+# Split preconditioning
+x, stats = bicgstab(A, b, history=true, M=opM, N=opN)
+r = b - A * x
+@printf("[Split preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Split preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
+
+# Left preconditioning
+x, stats = bicgstab(A, b, history=true, M=opP)
+r = b - A * x
+@printf("[Left preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Left preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
+
+# Right preconditioning
+x, stats = bicgstab(A, b, history=true, N=opP)
+r = b - A * x
+@printf("[Right preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Right preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
 Downloading artifact: HB/sherman5.RB
+nnz(ILU) / nnz(A): 3.1e+00
+[Without preconditioning] Residual norm:  5.0e-05
+[Without preconditioning] Number of iterations: 2679
+[Split preconditioning] Residual norm:  9.3e-07
+[Split preconditioning] Number of iterations:   9
+[Left preconditioning] Residual norm:  3.2e-07
+[Left preconditioning] Number of iterations:   9
+[Right preconditioning] Residual norm:  7.8e-06
+[Right preconditioning] Number of iterations:   8
diff --git a/previews/PR873/examples/block_gmres/index.html b/previews/PR873/examples/block_gmres/index.html new file mode 100644 index 000000000..0a19e8068 --- /dev/null +++ b/previews/PR873/examples/block_gmres/index.html @@ -0,0 +1,28 @@ + +BLOCK-GMRES · Krylov.jl
using Krylov, MatrixMarket, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "sherman2")
+path = fetch_ssmc(matrix, format="MM")
+
+n = matrix.nrows[1]
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+B = Matrix{Float64}(I, n, 5)
+B_norm = norm(B)
+
+# Solve Ax = B
+X, stats = block_gmres(A, B)
+show(stats)
+R = B - A * X
+@printf("Relative residual: %8.1e\n", norm(R) / B_norm)
 Downloading artifact: HB/sherman2.MM
+SimpleStats
+ niter: 172
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 245.84ms
+ status: solution good enough given atol and rtol
+Relative residual:  6.8e-09
diff --git a/previews/PR873/examples/car/index.html b/previews/PR873/examples/car/index.html new file mode 100644 index 000000000..d4570a682 --- /dev/null +++ b/previews/PR873/examples/car/index.html @@ -0,0 +1,28 @@ + +CAR · Krylov.jl
using Krylov, MatrixMarket, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "Nasa", "nasa2146")
+path = fetch_ssmc(matrix, format="MM")
+
+n = matrix.nrows[1]
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = ones(n)
+b_norm = norm(b)
+
+# Solve Ax = b.
+(x, stats) = car(A, b)
+show(stats)
+r = b - A * x
+@printf("Relative residual: %8.1e\n", norm(r) / b_norm)
 Downloading artifact: Nasa/nasa2146.MM
+SimpleStats
+ niter: 359
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 18.56ms
+ status: solution good enough given atol and rtol
+Relative residual:  1.5e-08
diff --git a/previews/PR873/examples/cg/index.html b/previews/PR873/examples/cg/index.html new file mode 100644 index 000000000..78692aa6e --- /dev/null +++ b/previews/PR873/examples/cg/index.html @@ -0,0 +1,28 @@ + +CG · Krylov.jl
using Krylov, MatrixMarket, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "bcsstk09")
+path = fetch_ssmc(matrix, format="MM")
+
+n = matrix.nrows[1]
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = ones(n)
+b_norm = norm(b)
+
+# Solve Ax = b.
+(x, stats) = cg(A, b)
+show(stats)
+r = b - A * x
+@printf("Relative residual: %8.1e\n", norm(r) / b_norm)
 Downloading artifact: HB/bcsstk09.MM
+SimpleStats
+ niter: 214
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 2.78ms
+ status: solution good enough given atol and rtol
+Relative residual:  1.2e-08
diff --git a/previews/PR873/examples/cg_lanczos_shift/index.html b/previews/PR873/examples/cg_lanczos_shift/index.html new file mode 100644 index 000000000..6d4152900 --- /dev/null +++ b/previews/PR873/examples/cg_lanczos_shift/index.html @@ -0,0 +1,39 @@ + +CG-LANCZOS-SHIFT · Krylov.jl
using Krylov, MatrixMarket, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+function residuals(A, b, shifts, x)
+  nshifts = length(shifts)
+  r = [ (b - A * x[i] - shifts[i] * x[i]) for i = 1 : nshifts ]
+  return r
+end
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "1138_bus")
+path = fetch_ssmc(matrix, format="MM")
+
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+n, m = size(A)
+b = ones(n)
+
+# Solve (A + αI)x = b.
+shifts = [1.0, 2.0, 3.0, 4.0]
+(x, stats) = cg_lanczos_shift(A, b, shifts)
+show(stats)
+r = residuals(A, b, shifts, x)
+resids = map(norm, r) / norm(b)
+@printf("Relative residuals with shifts:\n")
+for resid in resids
+  @printf(" %8.1e", resid)
+end
+@printf("\n")
 Downloading artifact: HB/1138_bus.MM
+LanczosShiftStats
+ niter: 735
+ solved: true
+ residuals: [Float64[], Float64[], Float64[], Float64[]]
+ indefinite: Bool[0, 1, 1, 1]
+ ‖A‖F: NaN
+ κ₂(A): NaN
+ timer: 5.00ms
+ status: solution good enough given atol and rtol
+Relative residuals with shifts:
+  1.4e-08  1.4e-08  1.3e-08  1.3e-08
diff --git a/previews/PR873/examples/cgls/index.html b/previews/PR873/examples/cgls/index.html new file mode 100644 index 000000000..b1a1a610a --- /dev/null +++ b/previews/PR873/examples/cgls/index.html @@ -0,0 +1,34 @@ + +CGLS · Krylov.jl
using MatrixMarket, SuiteSparseMatrixCollection
+using Krylov, LinearOperators
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "well1033")
+path = fetch_ssmc(matrix, format="MM")
+
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1])_b.mtx"))[:]
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+# Define a regularization parameter.
+λ = 1.0e-3
+
+(x, stats) = cgls(A, b, λ=λ)
+show(stats)
+resid = norm(A' * (A * x - b) + λ * x) / norm(b)
+@printf("CGLS: Relative residual: %8.1e\n", resid)
+@printf("CGLS: ‖x‖: %8.1e\n", norm(x))
 Downloading artifact: HB/well1033.MM
+System size: 1033 rows and 320 columns
+SimpleStats
+ niter: 121
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 1.01ms
+ status: solution good enough given atol and rtol
+CGLS: Relative residual:  1.8e-08
+CGLS: ‖x‖:  8.4e+03
diff --git a/previews/PR873/examples/cgne/index.html b/previews/PR873/examples/cgne/index.html new file mode 100644 index 000000000..bc3eb3d31 --- /dev/null +++ b/previews/PR873/examples/cgne/index.html @@ -0,0 +1,33 @@ + +CGNE · Krylov.jl
using Krylov, HarwellRutherfordBoeing, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "wm2")
+path = fetch_ssmc(matrix, format="RB")
+
+A = RutherfordBoeingData(joinpath(path[1], "$(matrix.name[1]).rb")).data
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+x_exact = A' * ones(m)
+x_exact_norm = norm(x_exact)
+x_exact /= x_exact_norm
+b = A * x_exact
+(x, stats) = cgne(A, b)
+show(stats)
+resid = norm(A * x - b) / norm(b)
+@printf("CGNE: Relative residual: %7.1e\n", resid)
+@printf("CGNE: ‖x - x*‖₂: %7.1e\n", norm(x - x_exact))
 Downloading artifact: HB/wm2.RB
+System size: 207 rows and 260 columns
+SimpleStats
+ niter: 216
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 990.06μs
+ status: solution good enough given atol and rtol
+CGNE: Relative residual: 1.5e-08
+CGNE: ‖x - x*‖₂: 3.0e-07
diff --git a/previews/PR873/examples/craig/index.html b/previews/PR873/examples/craig/index.html new file mode 100644 index 000000000..5ab68aee7 --- /dev/null +++ b/previews/PR873/examples/craig/index.html @@ -0,0 +1,43 @@ + +CRAIG · Krylov.jl
using Krylov
+using LinearAlgebra, Printf
+
+m = 5
+n = 8
+λ = 1.0e-3
+A = rand(m, n)
+b = A * ones(n)
+xy_exact = [A  λ*I] \ b # In Julia, this is the min-norm solution!
+
+(x, y, stats) = craig(A, b, λ=λ, atol=0.0, rtol=1.0e-20, verbose=1)
+show(stats)
+
+# Check that we have a minimum-norm solution.
+# When λ > 0 we solve min ‖(x,s)‖  s.t. Ax + λs = b, and we get s = λy.
+@printf("Primal feasibility: %7.1e\n", norm(b - A * x - λ^2 * y) / norm(b))
+@printf("Dual   feasibility: %7.1e\n", norm(x - A' * y) / norm(x))
+@printf("Error in x: %7.1e\n", norm(x - xy_exact[1:n]) / norm(xy_exact[1:n]))
+if λ > 0.0
+  @printf("Error in y: %7.1e\n", norm(λ * y - xy_exact[n+1:n+m]) / norm(xy_exact[n+1:n+m]))
+end
CRAIG: system of 5 equations in 8 variables
+    k       ‖r‖       ‖x‖       ‖A‖      κ(A)         α        β  timer
+    0  9.37e+00  0.00e+00  0.00e+00  0.00e+00   ✗ ✗ ✗ ✗  ✗ ✗ ✗ ✗  0.37s
+    1  3.18e-01  2.73e+00  3.43e+00  3.43e+00   3.4e+00  1.2e-01  0.76s
+    2  8.34e-02  2.77e+00  3.52e+00  4.97e+00   7.3e-01  1.9e-01  0.91s
+    3  1.05e-01  2.78e+00  3.57e+00  6.21e+00   3.7e-01  4.7e-01  0.92s
+    4  4.15e-02  2.78e+00  3.61e+00  7.79e+00   4.9e-01  2.0e-01  0.92s
+    5  6.13e-09  2.78e+00  3.65e+00  8.85e+00   5.9e-01  8.7e-08  0.92s
+
+SimpleStats
+ niter: 5
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 915.04ms
+ status: solution good enough for the tolerances given
+Primal feasibility: 6.5e-10
+Dual   feasibility: 1.6e-16
+Error in x: 6.4e-10
+Error in y: 2.9e-10
diff --git a/previews/PR873/examples/craigmr/index.html b/previews/PR873/examples/craigmr/index.html new file mode 100644 index 000000000..ba6f3c3ef --- /dev/null +++ b/previews/PR873/examples/craigmr/index.html @@ -0,0 +1,35 @@ + +CRAIGMR · Krylov.jl
using Krylov, HarwellRutherfordBoeing, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "wm1")
+path = fetch_ssmc(matrix, format="RB")
+
+A = RutherfordBoeingData(joinpath(path[1], "$(matrix.name[1]).rb")).data
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+x_exact = A' * ones(m)
+x_exact_norm = norm(x_exact)
+x_exact /= x_exact_norm
+b = A * x_exact
+(x, y, stats) = craigmr(A, b)
+show(stats)
+resid = norm(A * x - b) / norm(b)
+@printf("CRAIGMR: Relative residual: %7.1e\n", resid)
+@printf("CRAIGMR: ‖x - x*‖₂: %7.1e\n", norm(x - x_exact))
+@printf("CRAIGMR: %d iterations\n", length(stats.residuals))
 Downloading artifact: HB/wm1.RB
+System size: 207 rows and 277 columns
+SimpleStats
+ niter: 115
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 583.75μs
+ status: found approximate minimum-norm solution
+CRAIGMR: Relative residual: 1.4e-08
+CRAIGMR: ‖x - x*‖₂: 1.5e-05
+CRAIGMR: 0 iterations
diff --git a/previews/PR873/examples/crls/index.html b/previews/PR873/examples/crls/index.html new file mode 100644 index 000000000..ed65417a1 --- /dev/null +++ b/previews/PR873/examples/crls/index.html @@ -0,0 +1,34 @@ + +CRLS · Krylov.jl
using MatrixMarket, SuiteSparseMatrixCollection
+using Krylov, LinearOperators
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "well1850")
+path = fetch_ssmc(matrix, format="MM")
+
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1])_b.mtx"))[:]
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+# Define a regularization parameter.
+λ = 1.0e-3
+
+(x, stats) = crls(A, b, λ=λ)
+show(stats)
+resid = norm(A' * (A * x - b) + λ * x) / norm(b)
+@printf("CRLS: Relative residual: %8.1e\n", resid)
+@printf("CRLS: ‖x‖: %8.1e\n", norm(x))
 Downloading artifact: HB/well1850.MM
+System size: 1850 rows and 712 columns
+SimpleStats
+ niter: 259
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 4.10ms
+ status: solution good enough given atol and rtol
+CRLS: Relative residual:  2.1e-08
+CRLS: ‖x‖:  1.0e+04
diff --git a/previews/PR873/examples/crmr/index.html b/previews/PR873/examples/crmr/index.html new file mode 100644 index 000000000..6a21a6fe5 --- /dev/null +++ b/previews/PR873/examples/crmr/index.html @@ -0,0 +1,35 @@ + +CRMR · Krylov.jl
using Krylov, HarwellRutherfordBoeing, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "gemat1")
+path = fetch_ssmc(matrix, format="RB")
+
+A = RutherfordBoeingData(joinpath(path[1], "$(matrix.name[1]).rb")).data
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+x_exact = A' * ones(m)
+x_exact_norm = norm(x_exact)
+x_exact /= x_exact_norm
+b = A * x_exact
+(x, stats) = crmr(A, b)
+show(stats)
+resid = norm(A * x - b) / norm(b)
+@printf("CRMR: Relative residual: %7.1e\n", resid)
+@printf("CRMR: ‖x - x*‖₂: %7.1e\n", norm(x - x_exact))
 Downloading artifact: HB/gemat1.RB
+ Downloading artifact: HB/gemat11.RB
+ Downloading artifact: HB/gemat12.RB
+System size: 4929 rows and 10595 columns
+SimpleStats
+ niter: 7
+ solved: false
+ inconsistent: true
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 1.02ms
+ status: system probably inconsistent but least squares/norm solution found
+CRMR: Relative residual: 4.0e-06
+CRMR: ‖x - x*‖₂: 6.3e-03
diff --git a/previews/PR873/examples/dqgmres/index.html b/previews/PR873/examples/dqgmres/index.html new file mode 100644 index 000000000..cdf07548f --- /dev/null +++ b/previews/PR873/examples/dqgmres/index.html @@ -0,0 +1,54 @@ + +DQGMRES · Krylov.jl
using Krylov, LinearOperators, ILUZero, MatrixMarket
+using LinearAlgebra, Printf, SuiteSparseMatrixCollection
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "Simon", "raefsky1")
+path = fetch_ssmc(matrix, format="MM")
+
+n = matrix.nrows[1]
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = A * ones(n)
+
+F = ilu0(A)
+
+@printf("nnz(ILU) / nnz(A): %7.1e\n", nnz(F) / nnz(A))
+
+# Solve Ax = b with DQGMRES and an ILU(0) preconditioner
+# Remark: DIOM, FOM and GMRES can be used in the same way
+opM = LinearOperator(Float64, n, n, false, false, (y, v) -> forward_substitution!(y, F, v))
+opN = LinearOperator(Float64, n, n, false, false, (y, v) -> backward_substitution!(y, F, v))
+opP = LinearOperator(Float64, n, n, false, false, (y, v) -> ldiv!(y, F, v))
+
+# Without preconditioning
+x, stats = dqgmres(A, b, memory=50, history=true)
+r = b - A * x
+@printf("[Without preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Without preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
+
+# Split preconditioning
+x, stats = dqgmres(A, b, memory=50, history=true, M=opM, N=opN)
+r = b - A * x
+@printf("[Split preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Split preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
+
+# Left preconditioning
+x, stats = dqgmres(A, b, memory=50, history=true, M=opP)
+r = b - A * x
+@printf("[Left preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Left preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
+
+# Right preconditioning
+x, stats = dqgmres(A, b, memory=50, history=true, N=opP)
+r = b - A * x
+@printf("[Right preconditioning] Residual norm: %8.1e\n", norm(r))
+@printf("[Right preconditioning] Number of iterations: %3d\n", length(stats.residuals) - 1)
 Downloading artifact: Simon/raefsky1.MM
+nnz(ILU) / nnz(A): 1.0e+00
+[Without preconditioning] Residual norm:  3.4e-07
+[Without preconditioning] Number of iterations: 4540
+[Split preconditioning] Residual norm:  3.8e-07
+[Split preconditioning] Number of iterations:  33
+[Left preconditioning] Residual norm:  7.6e-08
+[Left preconditioning] Number of iterations:  34
+[Right preconditioning] Residual norm:  3.4e-07
+[Right preconditioning] Number of iterations:  33
diff --git a/previews/PR873/examples/lsmr/index.html b/previews/PR873/examples/lsmr/index.html new file mode 100644 index 000000000..48768a77f --- /dev/null +++ b/previews/PR873/examples/lsmr/index.html @@ -0,0 +1,38 @@ + +LSMR · Krylov.jl
using MatrixMarket, SuiteSparseMatrixCollection
+using Krylov, LinearOperators
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "illc1850")
+path = fetch_ssmc(matrix, format="MM")
+
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1])_b.mtx"))[:]
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+# Define a regularization parameter.
+λ = 1.0e-3
+
+(x, stats) = lsmr(A, b, λ=λ, atol=0.0, btol=0.0)
+show(stats)
+resid = norm(A' * (A * x - b) + λ * x) / norm(b)
+@printf("LSMR: Relative residual: %8.1e\n", resid)
+@printf("LSMR: ‖x‖: %8.1e\n", norm(x))
 Downloading artifact: HB/illc1850.MM
+System size: 1850 rows and 712 columns
+LsmrStats
+ niter: 1028
+ solved: true
+ inconsistent: true
+ residuals: []
+ Aresiduals: []
+ residual: 16.239115589155727
+ Aresidual: 0.003559142560311877
+ κ₂(A): 86.71320866451842
+ ‖A‖F: 43.722077889715436
+ xNorm: 16032.795019150253
+ timer: 15.95ms
+ status: truncated forward error small enough
+LSMR: Relative residual:  2.4e-03
+LSMR: ‖x‖:  1.6e+04
diff --git a/previews/PR873/examples/lsqr/index.html b/previews/PR873/examples/lsqr/index.html new file mode 100644 index 000000000..8a9400ee1 --- /dev/null +++ b/previews/PR873/examples/lsqr/index.html @@ -0,0 +1,34 @@ + +LSQR · Krylov.jl
using MatrixMarket, SuiteSparseMatrixCollection
+using Krylov, LinearOperators
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "HB", "illc1033")
+path = fetch_ssmc(matrix, format="MM")
+
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1])_b.mtx"))[:]
+(m, n) = size(A)
+@printf("System size: %d rows and %d columns\n", m, n)
+
+# Define a regularization parameter.
+λ = 1.0e-3
+
+(x, stats) = lsqr(A, b, λ=λ, atol=0.0, btol=0.0)
+show(stats)
+resid = norm(A' * (A * x - b) + λ * x) / norm(b)
+@printf("LSQR: Relative residual: %8.1e\n", resid)
+@printf("LSQR: ‖x‖: %8.1e\n", norm(x))
 Downloading artifact: HB/illc1033.MM
+System size: 1033 rows and 320 columns
+SimpleStats
+ niter: 1353
+ solved: false
+ inconsistent: true
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 10.87ms
+ status: maximum number of iterations exceeded
+LSQR: Relative residual:  1.4e-03
+LSQR: ‖x‖:  9.4e+03
diff --git a/previews/PR873/examples/minares/index.html b/previews/PR873/examples/minares/index.html new file mode 100644 index 000000000..88a256ccd --- /dev/null +++ b/previews/PR873/examples/minares/index.html @@ -0,0 +1,28 @@ + +MINARES · Krylov.jl
using Krylov, MatrixMarket, SuiteSparseMatrixCollection
+using LinearAlgebra, Printf
+
+ssmc = ssmc_db(verbose=false)
+matrix = ssmc_matrices(ssmc, "GHS_indef", "laser")
+path = fetch_ssmc(matrix, format="MM")
+
+n = matrix.nrows[1]
+A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
+b = ones(n)
+
+# Solve Ax = b.
+x, stats = minares(A, b)
+show(stats)
+r = b - A * x
+Ar = A * r
+@printf("Relative A-residual: %8.1e\n", norm(A * r) / norm(A * b))
 Downloading artifact: GHS_indef/laser.MM
+SimpleStats
+ niter: 49
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 994.78μs
+ status: solution good enough given atol, rtol and Artol
+Relative A-residual:  7.8e-09
diff --git a/previews/PR873/examples/minres_qlp/index.html b/previews/PR873/examples/minres_qlp/index.html new file mode 100644 index 000000000..dc7b6ef0f --- /dev/null +++ b/previews/PR873/examples/minres_qlp/index.html @@ -0,0 +1,20 @@ + +MINRES-QLP · Krylov.jl
using Krylov
+using LinearAlgebra, Printf
+
+A = diagm([1.0; 2.0; 3.0; 0.0])
+n = size(A, 1)
+b = [1.0; 2.0; 3.0; 4.0]
+b_norm = norm(b)
+
+# MINRES-QLP returns the minimum-norm solution of symmetric, singular and inconsistent systems
+(x, stats) = minres_qlp(A, b);
+r = b - A * x;
+
+@printf("Residual r: %s\n", Krylov.vec2str(r))
+@printf("Relative residual norm ‖r‖: %8.1e\n", norm(r) / b_norm)
+@printf("Solution x: %s\n", Krylov.vec2str(x))
+@printf("Minimum-norm solution? %s\n", x ≈ [1.0; 1.0; 1.0; 0.0])
Residual r: [-4.9e-15  2.4e-15  4.4e-16  4.0e+00 ]
+Relative residual norm ‖r‖:  7.3e-01
+Solution x: [ 1.0e+00  1.0e+00  1.0e+00 -2.0e-15 ]
+Minimum-norm solution? true
diff --git a/previews/PR873/examples/symmlq/index.html b/previews/PR873/examples/symmlq/index.html new file mode 100644 index 000000000..030050a6b --- /dev/null +++ b/previews/PR873/examples/symmlq/index.html @@ -0,0 +1,20 @@ + +SYMMLQ · Krylov.jl
using Krylov
+using LinearAlgebra, Printf
+
+A = diagm([1.0; 2.0; 3.0; 0.0])
+n = size(A, 1)
+b = [1.0; 2.0; 3.0; 0.0]
+b_norm = norm(b)
+
+# SYMMLQ returns the minimum-norm solution of symmetric, singular and consistent systems
+(x, stats) = symmlq(A, b, transfer_to_cg=false);
+r = b - A * x;
+
+@printf("Residual r: %s\n", Krylov.vec2str(r))
+@printf("Relative residual norm ‖r‖: %8.1e\n", norm(r) / b_norm)
+@printf("Solution x: %s\n", Krylov.vec2str(x))
+@printf("Minimum-norm solution? %s\n", x ≈ [1.0; 1.0; 1.0; 0.0])
Residual r: [ 0.0e+00  4.4e-16  0.0e+00  0.0e+00 ]
+Relative residual norm ‖r‖:  1.2e-16
+Solution x: [ 1.0e+00  1.0e+00  1.0e+00  0.0e+00 ]
+Minimum-norm solution? true
diff --git a/previews/PR873/examples/tricg/index.html b/previews/PR873/examples/tricg/index.html new file mode 100644 index 000000000..d5cfc97bc --- /dev/null +++ b/previews/PR873/examples/tricg/index.html @@ -0,0 +1,84 @@ + +TriCG · Krylov.jl
using Krylov, LinearOperators
+using LinearAlgebra, Printf, SparseArrays
+
+# Identity matrix.
+eye(n::Int) = sparse(1.0 * I, n, n)
+
+# Symmetric quasi-definite systems and variants
+n = m = 5
+A = [2^(i/j)*j + (-1)^(i-j) * n*(i-1) for i = 1:n, j = 1:n]
+b = ones(n)
+M = diagm(0 => [3.0 * i for i = 1:n])
+N = diagm(0 => [5.0 * i for i = 1:n])
+c = -b
+
+# [I   A] [x] = [b]
+# [Aᴴ -I] [y]   [c]
+(x, y, stats) = tricg(A, b, c)
+K = [eye(m) A; A' -eye(n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = norm(r)
+@printf("TriCG: Relative residual: %8.1e\n", resid)
+
+# [-I   A] [x] = [b]
+# [ Aᴴ  I] [y]   [c]
+(x, y, stats) = tricg(A, b, c, flip=true)
+K = [-eye(m) A; A' eye(n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = norm(r)
+@printf("TriCG: Relative residual: %8.1e\n", resid)
+
+# [I   A] [x] = [b]
+# [Aᴴ  I] [y]   [c]
+(x, y, stats) = tricg(A, b, c, spd=true)
+K = [eye(m) A; A' eye(n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = norm(r)
+@printf("TriCG: Relative residual: %8.1e\n", resid)
+
+# [-I    A] [x] = [b]
+# [ Aᴴ  -I] [y]   [c]
+(x, y, stats) = tricg(A, b, c, snd=true)
+K = [-eye(m) A; A' -eye(n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = norm(r)
+@printf("TriCG: Relative residual: %8.1e\n", resid)
+
+# [τI    A] [x] = [b]
+# [ Aᴴ  νI] [y]   [c]
+(τ, ν) = (1e-4, 1e2)
+(x, y, stats) = tricg(A, b, c, τ=τ, ν=ν)
+K = [τ*eye(m) A; A' ν*eye(n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = norm(r)
+@printf("TriCG: Relative residual: %8.1e\n", resid)
+
+# [M⁻¹  A  ] [x] = [b]
+# [Aᴴ  -N⁻¹] [y]   [c]
+(x, y, stats) = tricg(A, b, c, M=M, N=N, verbose=1)
+K = [inv(M) A; A' -inv(N)]
+H = BlockDiagonalOperator(M, N)
+B = [b; c]
+r = B - K * [x; y]
+resid = sqrt(dot(r, H * r))
+@printf("TriCG: Relative residual: %8.1e\n", resid)
TriCG: Relative residual:  2.3e-11
+TriCG: Relative residual:  7.6e-12
+TriCG: Relative residual:  1.0e-11
+TriCG: Relative residual:  3.6e-11
+TriCG: Relative residual:  3.9e-10
+TriCG: system of 10 equations in 10 variables
+    k     ‖rₖ‖     βₖ₊₁     γₖ₊₁  timer
+    0  1.1e+01  6.7e+00  8.7e+00  0.22s
+    1  5.8e+00  2.6e+02  3.0e+02  0.33s
+    2  2.5e+00  2.9e+02  2.2e+02  0.33s
+    3  1.2e+00  2.4e+01  5.5e+01  0.33s
+    4  1.9e-01  3.4e-01  8.1e-01  0.33s
+    5  1.2e-08  6.7e-08  7.7e-08  0.33s
+
+TriCG: Relative residual:  1.2e-08
diff --git a/previews/PR873/examples/trimr/index.html b/previews/PR873/examples/trimr/index.html new file mode 100644 index 000000000..befc0f303 --- /dev/null +++ b/previews/PR873/examples/trimr/index.html @@ -0,0 +1,68 @@ + +TriMR · Krylov.jl
using Krylov, LinearOperators, LDLFactorizations
+using LinearAlgebra, Printf, SparseArrays
+
+# Identity matrix.
+eye(n::Int) = sparse(1.0 * I, n, n)
+
+# Saddle-point systems
+n = m = 5
+A = [2^(i/j)*j + (-1)^(i-j) * n*(i-1) for i = 1:n, j = 1:n]
+b = ones(n)
+D = diagm(0 => [2.0 * i for i = 1:n])
+m, n = size(A)
+c = -b
+
+# [D   A] [x] = [b]
+# [Aᴴ  0] [y]   [c]
+llt_D = cholesky(D)
+opD⁻¹ = LinearOperator(Float64, 5, 5, true, true, (y, v) -> ldiv!(y, llt_D, v))
+opH⁻¹ = BlockDiagonalOperator(opD⁻¹, eye(n))
+(x, y, stats) = trimr(A, b, c, M=opD⁻¹, sp=true)
+K = [D A; A' zeros(n,n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = sqrt(dot(r, opH⁻¹ * r))
+@printf("TriMR: Relative residual: %8.1e\n", resid)
+
+# Symmetric quasi-definite systems
+n = m = 5
+A = [2^(i/j)*j + (-1)^(i-j) * n*(i-1) for i = 1:n, j = 1:n]
+b = ones(n)
+M = diagm(0 => [3.0 * i for i = 1:n])
+N = diagm(0 => [5.0 * i for i = 1:n])
+c = -b
+
+# [I   A] [x] = [b]
+# [Aᴴ -I] [y]   [c]
+(x, y, stats) = trimr(A, b, c)
+K = [eye(m) A; A' -eye(n)]
+B = [b; c]
+r = B - K * [x; y]
+resid = norm(r)
+@printf("TriMR: Relative residual: %8.1e\n", resid)
+
+# [M   A] [x] = [b]
+# [Aᴴ -N] [y]   [c]
+ldlt_M = ldl(M)
+ldlt_N = ldl(N)
+opM⁻¹ = LinearOperator(Float64, size(M,1), size(M,2), true, true, (y, v) -> ldiv!(y, ldlt_M, v))
+opN⁻¹ = LinearOperator(Float64, size(N,1), size(N,2), true, true, (y, v) -> ldiv!(y, ldlt_N, v))
+opH⁻¹ = BlockDiagonalOperator(opM⁻¹, opN⁻¹)
+(x, y, stats) = trimr(A, b, c, M=opM⁻¹, N=opN⁻¹, verbose=1)
+K = [M A; A' -N]
+B = [b; c]
+r = B - K * [x; y]
+resid = sqrt(dot(r, opH⁻¹ * r))
+@printf("TriMR: Relative residual: %8.1e\n", resid)
TriMR: Relative residual:  2.0e-09
+TriMR: Relative residual:  2.3e-11
+TriMR: system of 10 equations in 10 variables
+    k     ‖rₖ‖     βₖ₊₁     γₖ₊₁  timer
+    0  1.1e+00  8.7e-01  6.8e-01  0.19s
+    1  7.3e-01  4.0e+00  8.8e-01  0.19s
+    2  4.4e-01  2.2e+00  2.0e+00  0.19s
+    3  3.2e-01  9.3e-02  1.4e+00  0.19s
+    4  2.2e-03  1.0e-02  7.0e-03  0.19s
+    5  1.2e-13  3.5e-10  1.9e-11  0.19s
+
+TriMR: Relative residual:  1.2e-13
diff --git a/previews/PR873/factorization-free/index.html b/previews/PR873/factorization-free/index.html new file mode 100644 index 000000000..cc78a0e40 --- /dev/null +++ b/previews/PR873/factorization-free/index.html @@ -0,0 +1,90 @@ + +Factorization-free operators · Krylov.jl

Factorization-free operators

All methods are factorization-free, which means that you only need to provide operator-vector products.

The A or B input arguments of Krylov.jl solvers can be any object that represents a linear operator. That object must implement mul!, for multiplication with a vector, size() and eltype(). For certain methods it must also implement adjoint().

Some methods only require A * v products, whereas other ones also require A' * u products. In the latter case, adjoint(A) must also be implemented.

A * vA * v and A' * u
CG, CR, CARCGLS, CRLS, CGNE, CRMR
SYMMLQ, CG-LANCZOS, MINRES, MINRES-QLP, MINARESLSLQ, LSQR, LSMR, LNLQ, CRAIG, CRAIGMR
DIOM, FOM, DQGMRES, GMRES, FGMRES, BLOCK-GMRESBiLQ, QMR, BiLQR, USYMLQ, USYMQR, TriLQR
CGS, BICGSTABTriCG, TriMR
Info

GPMR is the only method that requires A * v and B * w products.

Preconditioners M, N, C, D, E or F can be also linear operators and must implement mul! or ldiv!.

We strongly recommend LinearOperators.jl to model matrix-free operators, but other packages such as LinearMaps.jl, DiffEqOperators.jl or your own operator can be used as well.

With LinearOperators.jl, operators are defined as

A = LinearOperator(type, nrows, ncols, symmetric, hermitian, prod, tprod, ctprod)

where

  • type is the operator element type;
  • nrow and ncol are its dimensions;
  • symmetric and hermitian should be set to true or false;
  • prod(y, v), tprod(y, w) and ctprod(u, w) are called when writing mul!(y, A, v), mul!(y, transpose(A), w), and mul!(y, A', u), respectively.

See the tutorial and the detailed documentation for more information on LinearOperators.jl.

Examples

In the field of nonlinear optimization, finding critical points of a continuous function frequently involves linear systems with a Hessian or Jacobian as coefficient. Materializing such operators as matrices is expensive in terms of operations and memory consumption and is unreasonable for high-dimensional problems. However, it is often possible to implement efficient Hessian-vector and Jacobian-vector products, for example with the help of automatic differentiation tools, and used within Krylov solvers. We now illustrate variants with explicit matrices and with matrix-free operators for two well-known optimization methods.

Example 1: Newton's Method for convex optimization

At each iteration of Newton's method applied to a $\mathcal{C}^2$ strictly convex function $f : \mathbb{R}^n \rightarrow \mathbb{R}$, a descent direction direction is determined by minimizing the quadratic Taylor model of $f$:

\[\min_{d \in \mathbb{R}^n}~~f(x_k) + \nabla f(x_k)^T d + \tfrac{1}{2}~d^T \nabla^2 f(x_k) d\]

which is equivalent to solving the symmetric and positive-definite system

\[\nabla^2 f(x_k) d = -\nabla f(x_k).\]

The system above can be solved with the conjugate gradient method as follows, using the explicit Hessian:

using ForwardDiff, Krylov
+
+xk = -ones(4)
+
+f(x) = (x[1] - 1)^2 + (x[2] - 2)^2 + (x[3] - 3)^2 + (x[4] - 4)^2
+
+g(x) = ForwardDiff.gradient(f, x)
+
+H(x) = ForwardDiff.hessian(f, x)
+
+d, stats = cg(H(xk), -g(xk))

The explicit Hessian can be replaced by a linear operator that only computes Hessian-vector products:

using ForwardDiff, LinearOperators, Krylov
+
+xk = -ones(4)
+
+f(x) = (x[1] - 1)^2 + (x[2] - 2)^2 + (x[3] - 3)^2 + (x[4] - 4)^2
+
+g(x) = ForwardDiff.gradient(f, x)
+
+H(y, v) = ForwardDiff.derivative!(y, t -> g(xk + t * v), 0)
+opH = LinearOperator(Float64, 4, 4, true, true, (y, v) -> H(y, v))
+
+cg(opH, -g(xk))
([2.0, 3.0, 4.0, 5.0], SimpleStats
+ niter: 1
+ solved: true
+ inconsistent: false
+ residuals: []
+ Aresiduals: []
+ κ₂(A): []
+ timer: 472.35ms
+ status: solution good enough given atol and rtol
+)

Example 2: The Gauss-Newton Method for Nonlinear Least Squares

At each iteration of the Gauss-Newton method applied to a nonlinear least-squares objective $f(x) = \tfrac{1}{2}\| F(x)\|^2$ where $F : \mathbb{R}^n \rightarrow \mathbb{R}^m$ is $\mathcal{C}^1$, we solve the subproblem:

\[\min_{d \in \mathbb{R}^n}~~\tfrac{1}{2}~\|J(x_k) d + F(x_k)\|^2,\]

where $J(x)$ is the Jacobian of $F$ at $x$.

An appropriate iterative method to solve the above linear least-squares problems is LSMR. We could pass the explicit Jacobian to LSMR as follows:

using ForwardDiff, Krylov
+
+xk = ones(2)
+
+F(x) = [x[1]^4 - 3; exp(x[2]) - 2; log(x[1]) - x[2]^2]
+
+J(x) = ForwardDiff.jacobian(F, x)
+
+d, stats = lsmr(J(xk), -F(xk))

However, the explicit Jacobian can be replaced by a linear operator that only computes Jacobian-vector and transposed Jacobian-vector products:

using LinearAlgebra, ForwardDiff, LinearOperators, Krylov
+
+xk = ones(2)
+
+F(x) = [x[1]^4 - 3; exp(x[2]) - 2; log(x[1]) - x[2]^2]
+
+J(y, v) = ForwardDiff.derivative!(y, t -> F(xk + t * v), 0)
+Jᵀ(y, u) = ForwardDiff.gradient!(y, x -> dot(F(x), u), xk)
+opJ = LinearOperator(Float64, 3, 2, false, false, (y, v) -> J(y, v),
+                                                  (y, w) -> Jᵀ(y, w),
+                                                  (y, u) -> Jᵀ(y, u))
+
+lsmr(opJ, -F(xk))
([0.49889007728348445, -0.2594343430903828], LsmrStats
+ niter: 2
+ solved: true
+ inconsistent: true
+ residuals: []
+ Aresiduals: []
+ residual: 0.022490204087080457
+ Aresidual: 2.0849695585298754e-15
+ κ₂(A): 1.2777264193293687
+ ‖A‖F: 5.328138145631234
+ xNorm: 0.5623144027914095
+ timer: 557.57ms
+ status: found approximate minimum least-squares solution
+)

Note that preconditioners can be also implemented as abstract operators. For instance, we could compute the Cholesky factorization of $M$ and $N$ and create linear operators that perform the forward and backsolves.

Krylov methods combined with factorization free operators allow to reduce computation time and memory requirements considerably by avoiding building and storing the system matrix. In the field of partial differential equations, the implementation of high-performance factorization free operators and assembly free preconditioning is a subject of active research.

diff --git a/previews/PR873/gpu/index.html b/previews/PR873/gpu/index.html new file mode 100644 index 000000000..8fc2e8409 --- /dev/null +++ b/previews/PR873/gpu/index.html @@ -0,0 +1,183 @@ + +GPU support · Krylov.jl

GPU support

Krylov methods are well suited for GPU computations because they only require matrix-vector products ($u \leftarrow Av$, $u \leftarrow A^{H}w$) and vector operations ($\|v\|$, $u^H v$, $v \leftarrow \alpha u + \beta v$), which are highly parallelizable.

The implementations in Krylov.jl are generic so as to take advantage of the multiple dispatch and broadcast features of Julia. Those allow the implementations to be specialized automatically by the compiler for both CPU and GPU. Thus, Krylov.jl works with GPU backends that build on GPUArrays.jl, such as CUDA.jl, AMDGPU.jl, oneAPI.jl or Metal.jl.

Nvidia GPUs

All solvers in Krylov.jl can be used with CUDA.jl and allow computations on Nvidia GPUs. Problems stored in CPU format (Matrix and Vector) must first be converted to the related GPU format (CuMatrix and CuVector).

using CUDA, Krylov
+
+if CUDA.functional()
+  # CPU Arrays
+  A_cpu = rand(20, 20)
+  b_cpu = rand(20)
+
+  # GPU Arrays
+  A_gpu = CuMatrix(A_cpu)
+  b_gpu = CuVector(b_cpu)
+
+  # Solve a square and dense system on an Nivida GPU
+  x, stats = bilq(A_gpu, b_gpu)
+end

Sparse matrices have a specific storage on Nvidia GPUs (CuSparseMatrixCSC, CuSparseMatrixCSR or CuSparseMatrixCOO):

using CUDA, Krylov
+using CUDA.CUSPARSE, SparseArrays
+
+if CUDA.functional()
+  # CPU Arrays
+  A_cpu = sprand(200, 100, 0.3)
+  b_cpu = rand(200)
+
+  # GPU Arrays
+  A_csc_gpu = CuSparseMatrixCSC(A_cpu)
+  A_csr_gpu = CuSparseMatrixCSR(A_cpu)
+  A_coo_gpu = CuSparseMatrixCOO(A_cpu)
+  b_gpu = CuVector(b_cpu)
+
+  # Solve a rectangular and sparse system on an Nvidia GPU
+  x_csc, stats_csc = lslq(A_csc_gpu, b_gpu)
+  x_csr, stats_csr = lsqr(A_csr_gpu, b_gpu)
+  x_coo, stats_coo = lsmr(A_coo_gpu, b_gpu)
+end

If you use a Krylov method that only requires A * v products (see here), the most efficient format is CuSparseMatrixCSR. Optimized operator-vector and operator-matrix products that exploit GPU features can be also used by means of linear operators.

For instance, when executing sparse matrix products on NVIDIA GPUs, the mul! function utilized by Krylov.jl internally calls three routines from CUSPARSE. The first one conducts an analysis of the sparse matrix's structure, the second one determines the size of the buffer that needs to be allocated, and the last one handles the product using the allocated buffer. To circumvent the need for repeated analysis computations and buffer allocation/deallocation with each product, we introduce a KrylovOperator in KrylovPreconditioners.jl. This operator performs the analysis and allocates the buffer only once.

using Krylov, KrylovPreconditioners
+
+# A_gpu can be a sparse COO, CSC or CSR matrix
+opA_gpu = KrylovOperator(A_gpu)
+x_gpu, stats = gmres(opA_gpu, b_gpu)

Preconditioners, especially incomplete Cholesky or Incomplete LU factorizations that involve triangular solves, can be applied directly on GPU thanks to efficient operators that take advantage of CUSPARSE routines.

Example with a symmetric positive-definite system

using SparseArrays, Krylov, LinearOperators
+using CUDA, CUDA.CUSPARSE
+
+if CUDA.functional()
+  # Transfer the linear system from the CPU to the GPU
+  A_gpu = CuSparseMatrixCSR(A_cpu)  # A_gpu = CuSparseMatrixCSC(A_cpu)
+  b_gpu = CuVector(b_cpu)
+
+  # IC(0) decomposition LLᴴ ≈ A for CuSparseMatrixCSC or CuSparseMatrixCSR matrices
+  P = ic02(A_gpu)
+
+  # Additional vector required for solving triangular systems
+  n = length(b_gpu)
+  T = eltype(b_gpu)
+  z = CUDA.zeros(T, n)
+
+  # Solve Py = x
+  function ldiv_ic0!(P::CuSparseMatrixCSR, x, y, z)
+    ldiv!(z, LowerTriangular(P), x)   # Forward substitution with L
+    ldiv!(y, LowerTriangular(P)', z)  # Backward substitution with Lᴴ
+    return y
+  end
+
+  function ldiv_ic0!(P::CuSparseMatrixCSC, x, y, z)
+    ldiv!(z, UpperTriangular(P)', x)  # Forward substitution with L
+    ldiv!(y, UpperTriangular(P), z)   # Backward substitution with Lᴴ
+    return y
+  end
+
+  # Operator that model P⁻¹
+  symmetric = hermitian = true
+  opM = LinearOperator(T, n, n, symmetric, hermitian, (y, x) -> ldiv_ic0!(P, x, y, z))
+
+  # Solve an Hermitian positive definite system with an IC(0) preconditioner on GPU
+  x, stats = cg(A_gpu, b_gpu, M=opM)
+end

Example with a general square system

using SparseArrays, Krylov, LinearOperators
+using CUDA, CUDA.CUSPARSE, CUDA.CUSOLVER
+
+if CUDA.functional()
+  # Optional -- Compute a permutation vector p such that A[:,p] has no zero diagonal
+  p = zfd(A_cpu)
+  p .+= 1
+  A_cpu = A_cpu[:,p]
+
+  # Transfer the linear system from the CPU to the GPU
+  A_gpu = CuSparseMatrixCSR(A_cpu)  # A_gpu = CuSparseMatrixCSC(A_cpu)
+  b_gpu = CuVector(b_cpu)
+
+  # ILU(0) decomposition LU ≈ A for CuSparseMatrixCSC or CuSparseMatrixCSR matrices
+  P = ilu02(A_gpu)
+
+  # Additional vector required for solving triangular systems
+  n = length(b_gpu)
+  T = eltype(b_gpu)
+  z = CUDA.zeros(T, n)
+
+  # Solve Py = x
+  function ldiv_ilu0!(P::CuSparseMatrixCSR, x, y, z)
+    ldiv!(z, UnitLowerTriangular(P), x)  # Forward substitution with L
+    ldiv!(y, UpperTriangular(P), z)      # Backward substitution with U
+    return y
+  end
+
+  function ldiv_ilu0!(P::CuSparseMatrixCSC, x, y, z)
+    ldiv!(z, LowerTriangular(P), x)      # Forward substitution with L
+    ldiv!(y, UnitUpperTriangular(P), z)  # Backward substitution with U
+    return y
+  end
+
+  # Operator that model P⁻¹
+  symmetric = hermitian = false
+  opM = LinearOperator(T, n, n, symmetric, hermitian, (y, x) -> ldiv_ilu0!(P, x, y, z))
+
+  # Solve a non-Hermitian system with an ILU(0) preconditioner on GPU
+  x̄, stats = bicgstab(A_gpu, b_gpu, M=opM)
+
+  # Recover the solution of Ax = b with the solution of A[:,p]x̄ = b
+  invp = invperm(p)
+  x = x̄[invp]
+end

AMD GPUs

All solvers in Krylov.jl can be used with AMDGPU.jl and allow computations on AMD GPUs. Problems stored in CPU format (Matrix and Vector) must first be converted to the related GPU format (ROCMatrix and ROCVector).

using Krylov, AMDGPU
+
+if AMDGPU.functional()
+  # CPU Arrays
+  A_cpu = rand(ComplexF64, 20, 20)
+  A_cpu = A_cpu + A_cpu'
+  b_cpu = rand(ComplexF64, 20)
+
+  A_gpu = ROCMatrix(A_cpu)
+  b_gpu = ROCVector(b_cpu)
+
+  # Solve a dense Hermitian system on an AMD GPU
+  x, stats = minres(A_gpu, b_gpu)
+end

Sparse matrices have a specific storage on AMD GPUs (ROCSparseMatrixCSC, ROCSparseMatrixCSR or ROCSparseMatrixCOO):

using AMDGPU, Krylov
+using AMDGPU.rocSPARSE, SparseArrays
+
+if AMDGPU.functional()
+  # CPU Arrays
+  A_cpu = sprand(100, 200, 0.3)
+  b_cpu = rand(100)
+
+  # GPU Arrays
+  A_csc_gpu = ROCSparseMatrixCSC(A_cpu)
+  A_csr_gpu = ROCSparseMatrixCSR(A_cpu)
+  A_coo_gpu = ROCSparseMatrixCOO(A_cpu)
+  b_gpu = ROCVector(b_cpu)
+
+  # Solve a rectangular and sparse system on an AMD GPU
+  x_csc, y_csc, stats_csc = lnlq(A_csc_gpu, b_gpu)
+  x_csr, y_csr, stats_csr = craig(A_csr_gpu, b_gpu)
+  x_coo, y_coo, stats_coo = craigmr(A_coo_gpu, b_gpu)
+end

When executing sparse products on AMD GPUs, the mul! function utilized by Krylov.jl internally calls three routines from rocSPARSE. The first one conducts an analysis of the sparse matrix's structure, the second one determines the size of the buffer that needs to be allocated, and the last one handles the product using the allocated buffer. To circumvent the need for repeated analysis computations and buffer allocation/deallocation with each product, we introduce a KrylovOperator in KrylovPreconditioners.jl. This operator performs the analysis and allocates the buffer only once.

using Krylov, KrylovPreconditioners
+
+# A_gpu can be a sparse COO, CSC or CSR matrix
+opA_gpu = KrylovOperator(A_gpu)
+x_gpu, stats = bicgstab(opA_gpu, b_gpu)

Intel GPUs

All solvers in Krylov.jl can be used with oneAPI.jl and allow computations on Intel GPUs. Problems stored in CPU format (Matrix and Vector) must first be converted to the related GPU format (oneMatrix and oneVector).

using Krylov, oneAPI
+
+if oneAPI.functional()
+  T = Float32  # oneAPI.jl also works with ComplexF32
+  m = 20
+  n = 10
+
+  # CPU Arrays
+  A_cpu = rand(T, m, n)
+  b_cpu = rand(T, m)
+
+  # GPU Arrays
+  A_gpu = oneMatrix(A_cpu)
+  b_gpu = oneVector(b_cpu)
+
+  # Solve a dense least-squares problem on an Intel GPU
+  x, stats = lsqr(A_gpu, b_gpu)
+end
Note

The library oneMKL is interfaced in oneAPI.jl and accelerates linear algebra operations on Intel GPUs. Only dense linear systems are supported for the time being because sparse linear algebra routines are not interfaced yet.

Apple M1 GPUs

All solvers in Krylov.jl can be used with Metal.jl and allow computations on Apple M1 GPUs. Problems stored in CPU format (Matrix and Vector) must first be converted to the related GPU format (MtlMatrix and MtlVector).

using Krylov, Metal
+
+T = Float32  # Metal.jl also works with ComplexF32
+n = 10
+m = 20
+
+# CPU Arrays
+A_cpu = rand(T, n, m)
+b_cpu = rand(T, n)
+
+# GPU Arrays
+A_gpu = MtlMatrix(A_cpu)
+b_gpu = MtlVector(b_cpu)
+
+# Solve a dense least-norm problem on an Apple M1 GPU
+x, stats = craig(A_gpu, b_gpu)
Warning

Metal.jl is under heavy development and is considered experimental for now.

diff --git a/previews/PR873/graphics/arnoldi.png b/previews/PR873/graphics/arnoldi.png new file mode 100644 index 0000000000000000000000000000000000000000..9644249d709789e6d5db5a44dd3b14e5c0f726d9 GIT binary patch literal 180677 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 z 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

XSU*yK6{+)sJ}4N+EBLQ`;3LU6V3pKG8X$X% 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 z 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

KY*_Q15bJMyv-!jw2W*di<-87$i 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 z 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 Z!h3*L%>d)B$Kr`K7iuqvnYV7={{#vLEw2Co literal 0 HcmV?d00001 diff --git a/previews/PR873/graphics/block_arnoldi.png b/previews/PR873/graphics/block_arnoldi.png new file mode 100644 index 0000000000000000000000000000000000000000..5248046ea56b43129eb480c83c3513f104242ef6 GIT binary patch literal 189043 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�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 z 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 literal 0 HcmV?d00001 diff --git a/previews/PR873/graphics/block_golub_kahan.png b/previews/PR873/graphics/block_golub_kahan.png new file mode 100644 index 0000000000000000000000000000000000000000..e749edc54d31b5903caaa89544d87cc30fa2025e GIT binary patch literal 218808 zcmaI81z1eV-y7i1p#R#rKKB2kuK>5C8ebs z?r+Wa-RC)ewSOq?x!~-ukPG-a2o{$#ZJ*{m!&Bvc4<&h{J!Up z&G<@S>P~!t;&;o7qOyPBAICqmpWxpQScxcF$(ZR{*=kzoQ0SSOndq=sYFX&$m|E(a zSxx>{D1;xPCqHz_LPyiez|8chtbvIRg|W5i(X(fdTI$?6%6^8O=_gkM=3-vUy!{UG}dKnB|9*`F(t+Lm*mA$$3@(JmA?Eks-Eq^z2pDc_sdO#mThiN zjvxKDN#rsc?d1oK$Btj~q1QjXtv+(|3-w>`Q*0g9shQmE(!a+`JW8r!CB2z>plW7J zFEq&C+dn?FcK+J+>+HYd0{{Jws8@9E-hY1?UnvtkUGUT2$=Y7*_tW37eY?2lXW#h3 zx=-WRpM9hAQLos~zJ4$FZZ7{X4*MT}o!IxY@0Z;a5D@4LzL@A|G8LJ+{ZQA<^P+Y1 zKl#a{(W&WA>O&6ZZ_#GUOi<;JKGPD<=WR*k`k&Y`*`F2Q%`HerxlWK*>x;)VEey6<8SWlghh5XN{;sB zpw#9xy~I@Yt05sF+(|FrE>3rw`q6uf;y*DlG4h*g;wftDO?(CPYE^ANSu0!!<8O}q z*;6Px(s|R-e{YMGe4VD`Q=?IChuccisy58!rn$t&5}CSw_;4Gm+ZrKMkad4<(Sis{je zEl%~t%EkFMiT?EC6pu4Ai*p$@SJ`xqcVrF>44jmblCrydH$ss4tAAUGgZmi?dT(q0 z-+uPXS#@3MUd$P4HGa0#>g_UJTmSV}@P#ji8T-__U+PQ^blqq8`N_goc!7M%ASwK zJg*{~ggb!VyL@od&whwPwK`<8k1qeuD`7uR8FsSq^BPltPXVZ@Q|04eT9SDKRLM9^qXKv-BKh|XafVH?J|49EQ4hE5j+G4N z<1Vc*JEzd@I`ik3yP~3^ZqJ^{e*O4JE?)7hZS;@zXSh{{#y^^0WAm0Rqdp4i_3$C;U#xQXBwv|sFTnJro7eY2xU zg^W15CJz4WI3+zpX9w*s64wso%aG#;TsDUuT{_)AQ=pKDk6yCB2#;bKB)5 zd1+}cUlx_9lVZO5C{=DxpC%iw4>v?xFV7mVD5qVk7v{0G8&7W`7q2AuJJ~6EA$C`; zdLH(ftz8ISRdp=St``dO3>uZBR#jlU8TMCRUf!6;-UA1Q?-{R`R#u9gy#DHrepS#& zg%48>F1C0w4vQn^HCP*(RN%Cd!~5g*z7r&%;&|Y|ftX{L9&0P#<1}tP)Aa7ha|3kxNExp@mp-Y^N!sE%4&wd)tG3iDvWJzN+3JYl1tvq!q zeGO`Ycx{Tys?|L12Ym@NE2w+&=ZVhXE1NfM+jnDbq-pMZ(e60YuAEqfq>vEDX;Hs@ zF~SR-mhA;jxeYD%M-vp2FJ8ECVM6jZs+>DtA4ExoCYlwl$+sk`rRsa2V*mQ+EFVa!{cX#xck21}Hl;DD*(psTgM*E+a$?wDmWp{n@gnY2%PW(G2_dDn*MBGj zcF#qM{j#TeV`5~Yb=#aO&g_r~;ACh4%v&sdcQc&Rd3Dja6ssnVFW0TFt;og6vrudM z^7NNj3f>zd72*5WB0k5(JMG*!gy|+7@@ly@O&qlX;nI=Uv(H|lsIllP+37UjrWe3x z9lK}m-fE8ovPRC!23TZCe4Jdi#X$e)XyAOF=6>>EYl8Ws$@;gY=_xSjKZ%QI$%<;gHBT2Za0NT9=561SD zddBHi2e4LbyC+DFF^Y+@fDk_U;pUyvr~@-zzuwDTTwbo|>Cq@CD43p`^TA^Y3lFEH zr42SXWh%C`v{YVMS=l@FSo1VDck|fm#l^b`%IVkR7Iw za8td-(=#(-)F&7juj7U+%7g|_1~H8nEtO?&qhyS@caMVd^o{eluj`_sH&ME8-@bil z*?#W(_ZOa?o{o-==<&lZUVFG%y5iq2^$lo0+D0jj>ay?1ky^VS`px-*!B(a^izhE$ z{0C)1u){o6uh!-QH^rf^ zPRlUqh{E68d4T=${rmU*6MbI1cyoY5_nrOR$VgXiCaY@Jm-nIN_*}}pd&3(WWpR>> zdJ3El@>)b(_hTJ@&-LYSSB`Z9U?U~A1#pmB)}0F+x>YyAuRQMzRxYp|tU8cx+$L>S zu%zqz$dAjg@w07@Q?&OfsgdVA-DMfy*_p`KUNOj6efxaOdaU)V$qEWlQ-+C3SDqb5 z*W%YAR~+5WsPt*}8lU;>6~|Y=TVj5!2HkmfhTVDDxiXb|xs6-jjJ70=0_*Zw4nD(0 zzxnn}zpKDWg-Ib%7R4aJP2tV?Uv}<4bDl{){_|8{srAad$;nfvDz(`e&Yrz__UzeM zmCVFT7M{3jC?~tQ)F@0$(W$J^W>*r-1W-`Uwus!Da(%KjS*tzWNa1n1m@o72Z2HMz zzyj=VKXfc{@qgBdl1W}450I)6;fh^lD^lLj-Aa*1J%{!#D3dsI9c0Tl3@Z`5Wsik}5}Pyz!)1 z)pE3#R-!EiD#(*@PpuF}aS2B`WuT|0Zy4H+Q^Z!Vc##~gyI0SNDyL{aU7j0_MiCH| z9&b-i*DTtM=6{p4>%CF}FAX#$uU&g0Q_Gu8IdpyHwK)BzO`C>GkGNFL+SOe3(A@uc zeQnaksN~s!HjkZu{BZ*XXrwWw??F}l_MJQBIxTQv3jt!e;x zV81$5>I42XJcGq+VoE||kN=^X|D888R2z5e!vj*laF)?Sakd$D@Afnv8qBWob6A*2 z&${~!=R`TjD#n{5MFUl~DPD<#%dA@!_aQUcoj-?WKZ<8*YioE7Szx2Fb@i<-&9Ew|c*V*m#G zq-tHqQ~mx?OmupBS~^KRKh0&s83&oJ(md0&OZvu*7t6E5;jOKTu0zK}(6O;YNnSG)pAG5UY-cx(A)LMPnT2w^Le)XS!v%|%aASqz0xmQ`m=j0fp1i} zoUv0RD?Tkfc<`X{z2+rAigRl6UCzwrqs=T^bbHsWiIb!#Df!@(>}Gr8>(!Ds}{br zU5|ItM4>0Y!{STU4%A&e(uB*dZ{~AZ&pXI%{0bhA^BH9oi z!-=83-t+xiBCq?T*qLJg(7qOJHto(E_OgzbL;1oZEDuYzV)#Y%#L=UFkImrEvX*OM zrAhH=J6pIq?QXv?VPd(UX<6aNHu?Q^8Sk&Z{nizHvEbJJ$G9`yjD|Vr06^e$ON)zH z%tG=@<=hp|_RRe&$M9aXi70z?8_317^}wAlQ|`XFa07Fwr&A zQ&gp<_uYz0U zLo{q`Y}DFb*=RpkPDut`TUn@ND~tz{8h-0~*g{1z+b4Tw&%a8xUF@O-Y6y3=%KKaQ zd;9umgLYC}WdQ6@zx#Dl;9$Y(bmguZddn@l4_lSq^F^y*-XI&p&?r zcqqq4lJVlBK6A%lGt^6E+=p+i%i>qpgF=p3+c_$}m7fZ2L<1RbK4ih)Ep~5>idFUX z#Faf-CC}>e>}F0^rT;nfBadDZ4Phu)oomrBnGmqW0bo%|`SjtyFLxry?)~MLU*xOp z`kwR5_Ipe5F@$gM+D-(8g@pwbc%;@v{$3V(kW>E+wT5He*lVmEM;4zz+;H2o6LBUf%r}qg6V1yb(z!5g7jjggB)xXy(YO%gK z(a*LjfUEL?KgFHLfT#v2yr@el`i{YT*0W1Pq5QmYF2-FsO(#ds(NI_Xy5x6K?SUVN zjiAGP)=?UY!M|KxM*%@!lxtVaE}@ef0en%p=vr`Ne^dwY%3zTvBsZNG;xOwLn49d; zKs&_=P|mxXym|NGv5B;4&H|Yqw3jlY>C00(Ku7ZNikb?~aIU|7`S5U8#UJ-Le&4jo zV6-_QRyEtgSBn&`yWelEO_d&DRDAzNY+4x|P^{UUoAuSE>7-L3cQ1k=mDzNnI0uLB zxW^nB6$Lh;?)KzKnMD=&tz3bl9ks4cK057aux+=w?Lms^mt?~w6)eX>CIa3|v!63W zJuT`o_yHVHSojOvbmY~mITRTY(Msz&;dj2KCCxyF_S~KG*a|n%6=kvYp~Ss2Zc7=d z3wO;h?TSTljMJ|RV=X@=B&1HmZG5L(nc@p`cXziTDs)C)bArmy17iwp9bn-06df_& zS{~ERbEQ<&q%AYbzI&0|K=EStGa4RAv-~+ld_HSR*b8RP^|Ju5@%44b5olW)C^SRZvHG=qa z`FB#-b%FrR;h~6mq0hyja1TE{6>`T?ere0UHehzaqD51zT+ZF8uuHcI*`uTTbS#-7 z%Og5^MN(()DM_o2c8`)rDd*R1dYl%NI433xH*75EDcCu{4N?o^I?|1zsaTY=&YT#{ zUz_hRUF+O@bdr6?CGC>l@HNXFz@5`zd zi>4b$%W>z+d1@W4+%1Ri{yjKpK=Hx{CzXJL@yScTXpJauv!KGcyc|FL?enI7aqetV zAp&H5bXvP}ZOwKb5$cS3O;#4Ha$I8P`NMtz0kJseIat&?uc7?l{?}I~ZE^n-y89nr z@jPr|BTnRxDvsK$(R$!1&Vm~`dHr5iR`Sn4kA z<(d6qC!=kT^j7+F=;_*Pwg6epHp)m1f7o&)je)g`?H6r56hZLo%-n`Mr^%_x1X

@e{=9a-2eSRR2=<5WR_-z^jf=dpa9>c>V-vKXDk+OtO$b`bcD=O^lKJwtmgu< z4NY(!^4P9(e{~%2xXr`v`-d$9U%!6EA?iG9P#csv z^rq`B+BBPSWl`yw!Rk36JEk*dK3DtyurL(UUaBgNOGUed2{=5EvHP&Vx$%va`SG}m zkG3h%@`H)FQ?aBl2~*fL)P-MdO4XA>eaYdc#G{IcpfhQGf2_mYX?fNhTyWx?^Jd;SLxtX3~)%2hd9wqmpU5Jm9ARA#t+%)89Lte%Lkr zyxAFx7C?swGB*AG`#XSFgAK?}Ss;BnGOJ|k2GQKhW8mbJtq$O7h!ped40e+tyVnJb zfVCk|xibM!7*Yl+)t)_GU=r$`hzoE!#rm&p-c!x(G}z2a#}KXeb&asJ$^*)=OGOCf#;Y-K0BD2@k2> zhe=@{HFdP>Vf$-1QwoL7YqC%jw@f~_Lv8$wvtb2b8_a8Y#Y;9tTNG;&AqaMx0PT~cTCQ3}pK`p0KL<5v*uZWp`7+@0zLrhL7Pnsw|8^SC#B zhWX`!nI7QTciQD%+{Hw}G40HHo0WAAQpk0kidW|4LeUWs5o=XiT3T{x`gLiccF;ol zv2$k+y~qSxJ=Jj*+EvdjR0UL)E`y^-QX>}Y{|vQOO#nKbkUS=qH+esZFlTfR z0$u1tk2o*BE%7`uIrt+5qOem+WG)B-&UtJC5#`{yJGUN>dkRcHIqWohbG$phW5gP; zS!62G2mK-4pn)Dj=_P)fvCpV}(3eeYB$uWKASQDOE`JNRABl->3=`R&T1*S_9U$nC zQLsG1q?UL0Y|)I%`cgFAu<*u`C%r^K1c5CD!4(&wT@V2TXn_FH_FUT}R*eGVx=ylo zP_GP|O!P^ITsZO%m?|Bf5sNN=h}sgD8^nhV5xFYAXi& zAKQ$zzQuVqgk*uAErbLSI;;q`BskxyMSduN+k`OBf!qhYihB6eWdOHoj~K8ep_MTX zYMp+2>|FAjX?nFGX{AukuzyeE1Bl{{4lDz%J4gN~cr+uLVQvGr5$>@4z2-xr%D7Xr zjr10~=Qu8<5T!g#|0WKOD4a)GF!H7-37Rg5Llcq*7S7qv>MP%W$(x<*-VfT$b|B{n z%m14N0Hh}+lEpP|vA{M0x}V6ED^Y@O`xtuDCQER6Ip%#=+LhJS)rmYL)0`p)gM$2V zToRN!Raxb`!OzJ2@lAiqs~^~@wo zNnVH7Nim|T1)noNUYR{q8`^^2Oi(BB4nPna;*tssZ?@C|7)rc8^I@>lgs8Sq!9+DR zHE~Mcw}oD?X--r#Y7j6pGt1nkp*sXPzPvh9n||xVucV=e@xFZdQaM%kIaGraqD1TM zzT3Bxpt)Vc&vFc#7$t)FniBW7Q91|l+e&IUPCWwPiwNW~)1_f!WtD{6QU~~whPw6q zAlG%GNup_SX_x(nG_BrFsBiUd)wQ9*W_3Xjr%c*XL?Dj5q{DY_u;qP!aOK(lw`dnC zdEC>kC=^5_;pQ)a)C5W_nJs!R_tB$A2H=$2cI|@4CmW>&T1gaB2$bIzdR$uIRgwM$ z<(BdE>1*IBX(LYK;#+nd`b^|`Xwear(b@yh-wZ-8(Gl`mj}?n`URxe`5_aEV4R}u8 zx}fG6v~}!>fj7^BCLuzk>Z^i$1qD6r1L1#%a@d|_9!?h{8zarC!k?5snK0L3Ryd3U zIlPUD!{JkLabzI%zI_o8nN`x8aS+}@;?vHR7Z(@Lv6B*Ej4u7mwrGvr=AKH6>|;$tg3VeJ0wS=F6~5l^1{;lrxNSD6Jo(g12r zm>8Os3Pf3dk2u*FFXc?r1W=|pNXkniB|qpiWuX>oQ#yC<+;qyaqZ3Z57*?#);NgpRNK*%XaIm0-H zr~B@uTA`Kr>LtGGx*`TJ5f9?%H&JVZo-@CQPTzP*s2_qNX^O)c? z!<5tA?vS6KPc8^OE$a-&P)C}9H@*1lHz=9W9qLKyf+zsW1dow&`tHUtwS0RyYBu#o ztW!E9QRx3Na4CqON@x(}!NpOKDrc7fh2H^b#oi2m4B!EWItI^t zyen4$R;%Bvlwa}NORgi~o&PQe>7*^Egiw|M4$@9p)a}uln1Q2VT)Mcl6a$^Q zMyh11&{F^2N3O1MFr*2vXlSW4nsiVh{(;NJTBcYt#K6}!6P?3e>4#t*i$IWShME)n z)j{Lwo|D9I1OWU7FzfdGxg1u0*P(N7@O<=Vzts_+f&6iv9!HKAs&9jwE^Bjs_(?x` z3hYq+T+=hJ_67+$$WP`kz{(qrPMbWASd)GK%d3rOk8&~6B5<^1l5ZDVElum7K}iC! z$O7^2D1sZWTAJX}{^!Hv#4#>Rr4fh*lBkV6gDSC^=010fBK=1vwg z5GM!A{|yE?vCQ;4YW}-lQDmP_WGV>awbXrVf~E^SNXFL^(p+PvnTCWvd-2HJKX_4x z9*>O+0t}ARnU0#x2Z_T)_BMHtqc+nU9RMJZiQ-YvUegW@566)1i55ue6aG?= z{4HXfqZsR>;ge-_USAqYyY1?L{$aKZ3y##K>JUK{VDA(Lv#VJPy?N;1#FkxIn3T%Q z2Mi^jg^h6<@;YfdN>n@$8s+ot=ju@$87L|>*&W!-dJ5FgC(FMtFMR)g!<$}W7IiTW zzf2kydJJIIVVpd@j$al?^=wOtluuM0o@dqeSNkgma>~v_=WalIlE~}=M1^yF6Cbf} z|NeJ)3a0^e!7CfkO+rnseg?Ny0k~))&q&B=S(|SVzRC!El&D~tIJvkevH$=mfI_d3 zN0JOW_ZBBxyJLVA-Yqf5;i7U{4vM?;eLg;UT|%O1J6qn1W*=@2=uAX&6Jxcq^#KCd zNy{hObw*goWpGE(Z2p87#E)&^9jc+e)Sz9RFs7~3N z%kinSbd>BI2)P_qeTg^TJ`h@8)FLv}*v``cQfcsh2%0YSJfZ;fj}jFL6m5Y0Z&hU- zj(gMLk3t>Go_FldGS{Mop)x$$pS~a%q&HL(46uE^eW3yUAP(zATom-h$UP^oM?B}+ zaS5P;K!t+EUiY*>okM(9*B}TL=;ERoWTHsY#F&#gC@v&xq`=l3f z!S4O?TfOOLg6f_h;*}U!(~><~jH*M0 zHHhd2`+K0TFMOgacNF+u9;gx;;!@hg3sUYfO@o0GyeB3v6PSbrO5!$Y|F*F{xgi@R zejvKvzr|BRm#2jYaovtH5~z|5QCgO$26Gc#Dh<(6E#PuQlJpzj{okkY3p-lg6+qON zuV3q9>1n_uN>GWPV|@&O!0>H3Ea*4_hhYZYb0*lbPB> z^D20-ZGAJS3;fn=m40kA*y&t>MZi3I#vK{eF?On8$(3`b#9x2;K8I>=_WS0|y63he zXcTsjDB>BH=!H7z-gR(@b|;><7S!EcwSpXY0-Vrh0>A40^VLsJ{w#s+nBbxCAbR3HpMVZA zA<1>Ma{Hvi)len}Pz6qt_D22I_iv}Lpo*&n+qP{>u}}Erx6S*39ymr?lFVcgb153C zh(Ap5WRsDE-_V`(6#Fzbmi^4vSM6LU zq$DZ#?RzzzOmIr^6lB@wh=OY$94g#cOWM2e$u3GVI3Qy;)Tk1d^_e3l5Gffs2YHSI zX$uMwxwfVps0f7 zA0Q5=O+NC0G(db*rTNyQzI8|t8TSFWwVs25@puV}84v$tF||gTq43^4d!Fs0<h?$BmG0Gg1tn4b(QeAK!1&VE}e4IEC-HmY^o$?mS+2YVf|QWh=d$J!1! z3;VFBG`D7&g{qk=#4Eo1syalZv#=MJTzBc5KJC4}6f_Go-%81U?AV99z+?4pFW{#p zu=aEAD5cgo_*nChkYnpR=}0$`p==-(8qz|N!5>esvepc8b?M-qsK)iM_qu`&J$w|p z7ixqQu3WuJ1E#?RXfBkR#HHfKHc3fIsq@!gf9>BbIQyb4T~*1^KOn$x$Dwm)OgaE< zOe~Z8A)q}&tJYDB#sY9trwq}1Fc+xi+9Z4(8uHT#B0}=&0p4gulqltws?Y$Rq35(w znjw|pzix~OT+lj?fMu~CA-$UWH#(~TLQN4#kq9KtSkpmtoh#68IMn)}_Sk+~@1NJQ zTwAt2aqe7e7CfWsf(_)0{J4i|dOja=GCnkw`-9DPXS0JFo1l*vyfhJ{Ys%i| z6y%AV1>!PpXeTWby0LLUpdTGV(x`Jp|7kOaM%CmgyiU|lr9-*UKf!VQfe))ZAkj6Y z)(XYFd-u+&g9atXrkl9?=B&g705$|))3Z^>F#Y^U{uRVBZelLY9Q?b z+GZRs15h`Ou>j`)C_V=G|Awc~^1B?X;V^@SCO6jD>P1GDRFt-KzcWB~h^Gu&}B6%oc_4mmdA~*EL0=7{MO8PS7LdyO7zcr>azXY*{e2msz?L|j`s!?-%9qFSod2l+0@$BTV2O3NY zA(ORFDr%b{b3r^NNHeL2_CmKuA&zqLs2xVVo@+NsVn7PYYqr~Aa`^t1!|#~}i2{S= z(`h{n(g~`lvt(B**9|aCqzYVL6HL3tNHOZTL272jGnJD}IQdPe(9~ zhx5joZEEP($+13?3I&^vJ`{*R-gswrL+suE25{#k{fyk$P*mdj`}=ovBrv>7i@Gsm zN+2Ur3QaT90f71nB#5Ms4LT6-p%Ei}k_21ZJopiee!M+U!+A-kDMsd0!xY5pI-{g~ zUGu}}94*L(RC!Fz%{5_nLN%6i@6(M0?IKbYplP)SAx|L=6TIk>ZTY%>tZK}BSN@r= zVNk0R0d7l&8*N1$)T3EG+Gh&npKO>%M*>P6p_Im2ut}hH9u~Ae4WjI2wXwE=s}gYwR6Rs!{lg(#39+&}`Y@ zuOBUHg-jAF6)Hs3EMlwU!Q>v(8uI5h33$BYfY;X&icqI{e;o3G7hEJ&3tv^BX#T8L z$u~qutjZ4B1_?PSlbqgc)KM^?1ORsv%P|sT$2liz78sV#yu*1ff=IMXFH7U0h-Xqm zC?y~rqC{i()!lXu4!PWCw^UB(p0ZW6uc?)qZeQt^!(@+Uo$cAH33DYhW?9-SmXOdQ zuqj0Ak)WCbWvD1BDoT6}g4G0_?A5UvoRdbV2dzhaZvvC1@lGHG&z?Wrgj34SvTnJl=nSzm32A|XzHRH)WSlPO z2z~>T*+^D5hj2FZM`}TU5XqmeU{Vq?WA`Url2jGTk>qTd&p(WY^iyVsEwba-01A}9 z&&R@GJ$;JJ^YZgqCa&2etvXMA22|%VX-_jQwX?HpTjlVL@Kd)h4>L!WK};b_0U@F_ z1OfmguQO#$PfguK;&2WR;2kz7RdFzsF)B9opz$n{>4qkhb~@@LS_r$-^ByA*Qv8}l zSpe!_rHwe|9*B(e{{0!zjYB<9RNvkC`qAHm4UrEyUJL>?$4=P_%znPaU43c(ipL@U z=BMG;ULFUI@u?OmK~=0yyT-$T8f>LMbP$FIgzKWPWE=w!I{9{y?nm3Ho5}fs!4=qS zS{L@HIM`)jyd#>#h*4JzI*=L?BN>pWbf{u16D5JDPB@XpQPy8n(RW@!x)s@tqzxsj zsviz=Q+-Veu+)bs@Pd}R{ty>sWiTxhg~JD$E^!^JRo z!y}+XR^OCE9jBj?U)Ee9`d3%3Ex-12cqW1{`TeOb2u*$3Yd=*?ZQ>D(3^ihzk=8xc zV@p961!eIv(`dShM7R3>Nn*F#zx(L)3IXnaSG+|_PfPV;|-u&{!Rn-^4PVg!? zx(cxGh@iq_)}6*+3UMNZIY1ra9|0*cstys5svyMp&Pq|2M~6DM4=N%Nq~x5bgtQJ6 zBohy(tLpsRgEa}@K=uPZ3ZSAv_QuYOU$;PvYdu8s-?g;Nz(Qnd0By$_g4T`>lWdh$ zkb2{s(`+NlgFZjHo>< z5BMcSQp%v_i;jvS*&(=&FUc+?ss=WCl_m8xc=9U9X%au3Lx6{1i0wrzM7xj@TB0kO z#~(oe7ba`_1edzYn)P^3p>UB6iHm^;C$<9WHG%$Ddn|!1k1H4bNd{qn)T7oqV8jup z4Ji&?%MXr{B#-T0a?^21*lx;c($Kg2eaW9BU!Ia)g^Yi5XSOBn`tl;|o`K29P)!H0 z4@B`EiEBhJwGjfx*9<@623kWsM8?$dZ$S|AAbLfNHV5tf$8tj3bVX+% zTcX$gwp-vRMycYOA!+I>5Aj>Vy*9NhEg2KQr~=h<8hkY>IOz}z*`*IfrQU>?f<%#ZP*jMr#oxd6PjTo|WIV>#19{9|A z{{q)0SQB_#9h-Cnbvtpq*(Ql7*=nw1{K&*5La92ZQw_hIzTqQARHalJ^DBd3?`kh8 z#iQ+0Q9J4p539{%>ihTiMmrr~PR44LdSDy6MYz;h2XdR#CKV3mxUea}LXtVf`a!--4D`PoV>0r(1fA0y3vh5a*Qv+C?2Dicq zDmX^4KHK+k#JL|$O}$;bjUa}o?CdsRd^p9Lb&5vY5>lk0iny1k6*#tOiX6w|{tWks z`QYf2kMZ$opf_RWxIF7?(GSKhi-<&8tCJ=QF~`Wp5gce1XG@P}0g$w;j=F5n7Scxm zr-9d{+e(%pHX;|yb%9<_t~HDgcYEYyqzo)Hpy9_e23dV-hn!%Ow54=rW=00`%(!!7 zf{FraiCn0V6DNWTBs_z^+l0es4cHc~!T}SQkU1?+!6-mmLzH^cc83*Ge$;Nxbs;Lz z-+25Z*s5-h6J#ecWF&DGy76$+f6=wcEj)(za0 z7=*#`9NnpBm2qQ{TE3_{gFomS6a@qwtOm4G2T;iw>1U~=? z3>A!3@V$1c)U>MCx!DciHREo69n+`xoQ zue=EOLd>Fi#11`zq*tqeSL2|X zVp2)7t`(m(jIAtLIiQXjktWi&jDQ$P)3v>gz~^F$(;EtZf7$Gp^MdxX?}rch`$NiB z6lhi}_Om5r@0*-VQc$-OfvM4egEhC&nmhUJ zUB&oDU+C;#dyc++c>4O@VUY{=&+o~8ps2qra=v1d!ASmtWtsCgWzYZTMa{`qf7HM1 zetA4!HKOJBU+Mm{M|x;sOQqunafzruyOYvWCgucI1ZqQgEu-Go2!Ze(RjVSL2e5!R zApQkkIw?_XwJhQRRd=c70##1Wif_!d-#Vkc81);WL!ipfJqBumJ4R~tED?ax&xp(P z^ptwcU#i!P2O)>fnHHE##swfR{zFQ=JX7H+6vdu%V>?n|IFuikl~a_!bS~xnD%1-e zCAyFoFK*3S2R6aliiPH5@W`iDVCETVG-+aA;940?(TiZr3#8YfT|%x?6fL#5XOW0( zjR&K0n6B4j-PyTpuYiknM)lkud_DSkap8FwyPK9buZO^o>K?!OXm2Hko?ug)=$a?m z0Ep#*kd~sNOUO^ud@g`AB?sB;af|aFgq!L{6dhDQ>5LZ-dX3ey^!Jy0b6YRk!xv%C zkK)C1PG_vSbw(eMWLNdT&1Rc{SBGsVNaZb98l*vA5e2|)gxzS#{dU-{X~1WiyPG z;`lG+K16)i5Y_)msT&oGVdk$!GQ_7wV9PxC5iT;P<}0x%ScRk@+K@={eABjkRi3lIopK|;`0xbqpKVWdb(0+I3yTU zsrofr5Tjln`dg8;VDHMF6ea#Ql;mL~WqoJgUjq~v*L5F(nPQqz8A3;k9%US@uRsC> z5*|pdK!CX5AJEfjsaIJz)aowCU%{92x2Kl3`JhKN;O%(E4-Djsp{bhV5`wk+)%)xdOtrqjns5g zGDHoFTl5>zpbhrJk$%SQ(crxY*|ndnBkV!iCNbPm338)T!fU)EKu`>!go`!X=uAa2 z9m$-1zgSP1b(#w8uo1ga7R)BR54sW|w-TW~iQ0+Y=`j;p^SUFOkKw%)%P<~I0*tU2 zBpy~iMb359Qk6kRMgj?O!OUX<)duj8LC%ZQVcwV&78{jPWz-pxrlLd)30QzwPQt6- zA9ihP>IzOT_OmLevL}zBjz^wY(dEhD0!X!Wza7mD#Q)7-8Voex`IAgYVl2gUYEXda z7?4`c%-4ye1Tt<@-V{P4G+61;x#jm^r@+&{HMjG%_*vV%WHL|3aN^lr1lPv7{jzJ< zT3cJiYipCs&sml}uKD4mC}r34)PnEvA}lAG$znUvi71Cw)X*-d4lvy~Z6{O%7l7Tu z06RE>i@d|I*ph0sx6UZi8hNt5isBpCFB7krES{wIl%?1YJ^M4%8uq5G%?BZ6T7Fx- za|BGEr){aK4%k&KC2{sU*FB#_K}H&O18t_D_Bk#a1?5wy1l<61MRw*^AdtE+ z>P-A_UdzF65FO~XmKXk~(G#w=mm{?X<)PYxKkkppdWnl9HYa!XD@1N9I5ysWxE>CN z3me{p0CpJ0e}pRUlfi;gXFwa!DS>H~S8N(W#8x)$#4-kV%b8=6gxJyz%_^Yd+o+iJ zt(fD27w!n@S%sv|3T5b4AH+aT&sV!FcLEEcq;qdf_#7_ak%WW`ynB|02Qz0RWr>VN zg?@n26OHd^K>|LXQ9wLOm%Ds>1>SooPZIzBjB&mAp=a%KZ?8 zkbQXDLRw2EU9g}-^B~P@?JEcXmnX;Dbe}Lvu_}6lW-h>0><3bo0<_6tJ##O!+g=QA z6v;l7?|=B=4eHVeqzR-os=g~v90z+R#}1Fj`s>F{B(90voeV+}piNeo4)b2&Te-4R zs;Ka#pqtizZ%_(tC$hj)R8il)eY5IVnH| ztEemTlo}H~g&HI>m-ECJl7M`1TVJ*?fQiIZ&1tWc^hI`DkV2wr9bQk+_vTpyqM7{0 zrg*W*H`pB{INVj}(xY8P=Ir4^x;nB|K0~1ipv8gDm6`s&0Q1rrnXb6OWGfE0cxlH2 z062J-j6y=)-xeWxLTe-cEh_iVR!5&r7&&8y+m5Ev$npN4HI#LQpMj}--&&KqZ|D8!=;-Q|PJ~$B7W*MivMZ2= z;)@V?OeD}GadC9}h>V4NM~6wlZ&0&N!$&rLmdaIIcmDOq4@|hD-lqj%1cYHf;yA{k8-6v4aS z|JII2%!K?EEJX}Z7p7W6F?h`h%lnk>>g<=+A9(kj+}=teR$`p{N-46v{r$#OE2yn$ z&TIA%m>Zj7&IQ2+fj915)t>UNL~^cE{Sxv#z$8pfO~hfT7Y6p-nX>u|lM5CVYo_z|&`8laet@ym*NF zU>_2JP(%rGAal6*yG$AyJ*Bsy*tYjkFrQ}vPYW4}bd`Xb3-r3)y2MT5Kk_=CJ8qiApoMV24Nixny1 z=J9ROyPXf|F^lgJr?1<4y2?jBUZ|Z0Hmjm61&-gp+$R?Cd~hM$aFWU=iWFYl;r)mg zf0DchgG0u8J3^5e`%`r)sY*|Ifv5aJ(z9f4*F71iEY!v9_Ud95Lp3Iu*<&ZUxS9r?EC#EF?};Do{q-Wn-JE?a%8jvEh3m_eAN&>B zczN5J7$SgF)Annf+0R^}IPz*f!sePgri)N>=tM~@52e95IWvr_Z2a401OwQCJJ zEL9&#=pit5N?ThUS`8eN7&5er{OFY)Y6x@@fXv^(a7XYK5p3*%2jZbZKbBL9s4Tgu z0pvq5nx$t|)zj1S)+H)uOwkMDiiqK94{8eEgi*wW>@nP`I%8G5WQk-raa)G)ZF4Z+ zmGc@$bp+mz3>Yd2$cCTwOk9B=W(57|fRKDif2Ciosb!lx7q!`j%&l8*eq*=$Cdx8F zL81LDJ@om6>=?-%D@4B-L~@i$3*N--vnBOf7TPUFdf#x~e3_NJ5>IrJHy452AM6@J z>Kw9Fhm71Oh)WD{Idy>lZCl&4tKfeboh`wL)u7$~*1^#emn~Q&@J!##Si)*#{W- zkBgIc4Vtf!A?P49G^3dUVk*Kx?jIT&x>waHrL7%7oaMON3uA5J;O0cfMV>Klda#;F z6tBjqhd{|LVo_mti>n+;T|G`V;zFWZ`mcsy+ zc=vz$%qAM|zemZ(m7Y<0dMH}>bBEd?FN8k_^}Xgm;;^9YuZJ|X^E#N-0s>;WMt2?%4ir?%P>L=T2Rz8awH2fuE+M94K}nn;%euS{^Sbx>uKcdcCPdjAg(2FFK@fQ`D%xhHH%M7= z7hk=6`5c|+)wcHXSj{b5*7^O5fe*r(O}58u z8JoXj{qaf<2qijJowv@AX;P}~2gg51yQU(Bro!bJndpo|oz8d4RvK4MIF<1QRm9Ob z@kSQnJAPXPEDb{;4j6mk-;{=T^5BG$ti42uF*q!mybK)bpx6Fu+WnhPDNW^FZMH&D zNbQSKKZ15-d6`d1Iz+$@2|rF4{vVAyfxC(BU=5}y>M!cYrXdg60m2h+cppFvp{?XK z6lp=<|5N&de0q=TP|xO1*GqEL!M0>DpkkrCOT=v-Ns_XsO~TF@3wrKA#A9ILhV@+d z284m(eROfCp=9pOf8-+^Qc5zXgI6##;^>mmF;}V$gd0ku?&|I1L(eISS|mpD1^>VO zQIo>4zXawp;V>#hZ~DSOdWu|7uC+N6gpM|Iv0}FQJv1~%Hmlh~A*qHTkW7om7Ga(w zNR%fan{^taK2&`uIEhH@glpk&jC5wF7C*?0$0c4O;~m9Wc>a9HXgYYOa~I!7?G>W_KbYpduZmRx z5YeF4CMOr{qQDfr+KEP0!uFuXv~@b&A;Wc;jYV}Dd{fm~^!lvU;gv}g1~D%nB@$XE zb`A6iq5#8+vz{MQ0tu1FCYJsmx_|-eNZ3|LS}>Y*=aF{?f?kpL_3)-W3_nX=VSsZ> zwxOIOCfA@@42+JBz7Jwn3tEu^LA!H<{!Tgul@+2XzA$Ky58VJT2Jh7j$EgEK242R(PlN*;bFKp%5Qv^1;3yg27EZgA&kH^(<&C;ZfQYa95u70lX?mp| zKO{@}JcY!oX`zFArWq z@ejJs-iK*lbjK@?=c`A$*p3L?eFM%QoH35!CkbjK2;ZXk#3AFnT@Ry8T zk((lU4E(8W+qX9$^xlLy2*hMsh93bJnQr#w6BDesb*5GIkO7m*5XM4UXkTqrt!@vy zMe#lwITjVlA=BU-c(j@}ol3#S!JU8$p{vW+>LlJ`f+9rbW}7Spp8`1~V9OvHvnb_@ zgnG$$+SiD^n*a6cqFA)8)+Z3)Xk& zGh#4OL1b+UNAz9E@;)p%eJLi0v>FyV5cUbA?ZMa$7AywxKse#`{de&arI3KIzc59v z%)EICHw_i_YXp|5ti}%&(e~t3+g}`CMVh`)DhF{C_kg@3j)4ftD*92Q`iQ6G^*d)x z7r%eq#qwDl%?4Aaw=5hnpby@jR;i5i;(>M?SO+p{jg}RT3vD~;cj}k_Qy*DW)g7|| zhQl{Gl3DESDRyY=SI9VR^$Oudv8>yrVzF(bIv~@jQ)}PWm@HUHl%Q^=MY35ln-Iyd z;_MCZ4j0#fU;B(1j$V_L%;3Yz%DB5SP;25Awoo{b#|@f<8cLfe?8`c4h8aD?};Uo z6S?;~-Xg^~8A-}*efbRu{}fg4$|zrM}nu5N#bMs#IuFuixNpyu-CjqW-+4>)9f)?iuQZ<~A|vXnwAVuDF;qbYdbzHee5bLav-PZ7l(fcu ziA##PH(!!K7Qg@GYCpc0)#9Jg&v_jBeOIX@|75Pc`f|KC7Ch)|;3Il0Y4H>qLc6UN zV%y1gM9y*e@a=iVdpT~*NFYs;#te;w6wra^55ngPxdF69r(ZVdhc)^z-TQaP5xGV1 z7+Z0@!%%Zcvtelrv$O~}z2Um)g)EoyIWO&g`nrFA`;2geWy><&p7OuAt_ujgRzxY(TQd6Eug%s@;v@^6+)EPRGJms1%S0P1HrG(qv0l%* z(o8EhG@hir zlxLQg$a+Rqx@P?pW#xM>C)$2V-UwW*?IY*hgYbJU`P;fnUbE*Jd4CGv7%QzrOno3t zS;l|vRFpD{?)>@{`X{lFx^}eE>Skr`V!pe@dS%Gjb|pFJxIG(QdnsNfc66JnVoo@) zTK`ITeT7-`q5)5X=`>TdlGhQ+Gd(;u%yOn4+)u%(NY4V9SG;uXwf657@#E_!Zu&~U zZ_b>%=GicszUkGg_}Fia^T?`jPkF&oq)?u0^{gL%x64kje#j;Pg`NMD77GXW*&VSS z^_L%dha3vS8$328#P9uqIU>H0G3c`#qcM8%S4_Kb`C70^`#R(qb&5YHfdj2Rm-4xQhj{a&NS z4?F+JR(TK^j@=vQ8EA6^67-AGopuKpAeh7CfO~-XiWS1A2psRc_9XG26ZUR?$;xnU zEDZDK5cM7I1r(%1cIe}z*4wyeeP=sWdU)zaE9*$2h5OvuxObOb{WP-H1TE7NoF9_n zh+nQP%LorVc5JRUE*e)uZ3J+A{%2%@MR`KQ@eh-sZHYTnF~-2Fv&tb`L}%~nb0?i~ z{)-DxA3Y$jD%YjJzhkLD3D|kux}SN)lp0*eTZHQP3?6f>Dm)5PZ#9${{r8l{&8vW- zE(l~sk2F4=zr?Jfw94*aQ(Z>9SX2bB5RWuCUXLB$LozUO{Bk`QxsbQA9BmE5favrS z?4So0KZb=lwI&Z0r9Rz?klg-CW6WWs2s`)Y6#>R?|31*kNDc2cmC6P^QfYx-diR}- zxtyHFzdL4x7zc6s_UubgIz*-ykRM4&6b$h*&>S&q1}Tf$l!%E0-iK85gS8}~JpBs` zDYK7HDh`@+Hx1K3P7QaUPJSaVlG657k2sy2C@Ai8%c(!9lKl#ZahNP7>(HAaOwnZtWwd5z=o~?g=Tl9{@aZYkF z>VBCv&*`-D(19Y(n9o8ZN3!<*v3P&nmWsYX>B=;#yroxtni^~4>rllh3l)7SoYwQk znlm@#ogY)*N6K8Fyx9o=A=b6Mhhxklw8_~CvLW>nerk3ZBV`qyLE&4PxhKSWVD&D~ zF+Dn3_Z<%^Iax5jg3lq}*P`Ec0QCeqErj|}E z=bzz_OC7RfV`92?>t=c3cD0seQpv+VOjhZfHj9rVD>DDyj^w3i(;kc2>=hkv|0ymh zb_z3SeWS?a2;qUxUPh%`R(U+ksZZJS;QaR^`}dBr{+l|aroiWEBA4TVj((&D1Lp^d?TSeL7I9usJ%ylVZ(CU`N zy>!!;j%1#a*$1~DedETBG@4s;`xnp-GpwG}0rnajY7xoY+z_vOE^t8?;mIAmf;e*t zJEEQI#M*A@(j4<_#PxfQ%HuU3e|Y2Gi#ycx7A_QcS!na!GL-S-*{^CA%K4OS>#^Z* zeof&c@lq2in4*SFD$Yqxu}bd&JH*!y&vt#Ab7clWXVk61Lx+k- zh*Jp~rv-!dm{UIqspDkEx$B4Zmpx>0z zcsI^HYQ>2$!2;*@ea~vaq41=XM-GzOA2=9I#xu#~&2c1d)woms=^lW;l34g#tsbQf zNO+tpyGw_Nz_b7)qIBV(f_{Ph|8vzRd7D4^l#bGaxncR<teUhK43+?&`JgbnP?BbxDUoN{H+SL41zL=j_z}>8H^yYj`*VwZsUA zPJD=IHfxHC>(!FNO~?iJn3GxPQ*b72uzX=|UN*)3tG}bAPrRpqRCG$YvGX|2h5JA# zfhfdN9q@a{?%f7>GVqbB)3%bu(4i4}GZ4oqX!yfH`J{y+^8(JZ^TgkUZMKl49yb0k zsLe8A0NB;`R=?6|l1Ea&j_wWgj%*^UqvQB0bp6!$`@l{wu9IG&%g@1s#h>Ni=;d1; zN)Mulb)x?wh14R@9PD6x);}Ko$+0hLe7lS^IvIzAzbRWcVq#!mU^RjxYfzPL<{H#A z$cY@ejeLUIlCG~KNadt~(`(wMn6lhhn{{ObzSTrE*Ov#Z*4#Do0l+>6(%ZXlHilV? zyYH)e_s&T9Gk4lRnAnf>t5i#P7*>xYVvoW}SxZM}F;8|>xB2fwAfrjg5>7ZOSfla z0^&9y1gBR8OJ<{-Ucj9b>6y;0x&D(Db017kW<lO zd6Kmi?RaI3djNT`AXPmNX82I}pCUTWj&9$n-xNc(o8$JK@tCFw4Rr+eCz8?&$%}f{ z?`0wK3o6)^>l-jNOE%x;a+%Jv7*LJMJvRimAJIQ$+j|YWhE(7Y&4SX*iwP^aJjW`G zRt_}0x^tGG^aB~YZvAgU+CucL3Tr|9TX-xw5%Zuh(F!ZwKU05Vx&J%Ucc(}dIKnp- zU8W@;Z@V-C#h6us&-XNcv_e*Q1WOuj=Gdgrx(Zc@VD;7P^Dp-Nrj z=ne)o4jG=;i##p=LQ_-Is(3{iK~M5hnq~So z3&7fuSqX*q8(1zZ9C3{+YJUI~*xB4zx9mgn=$wyR_w+}<+KV^gz&49_vZsRZ@7(t4 zfW?{NH}>szLl4-wyv>@job^=&At8r5{Voz1jv{!WchQFu$}vb>K=TPDz;Vg8;pFNI zky=IeiAZ6{+mgDaz~hv|1d6H{s?+92wi`r7RY)Z+Zrk$XlnW)4X8IvbXfKN>&KCh0 zp4~D21^3&PUNAxXo8G+<2@l8nKy*i`LV_qO0ni4f2mH|$vm{!lBd`q9>N0ImQ)5#) zW8PA@f5D`R$9s2xJ%s(Ncs>RfL?cR;1wu#;>fQVM6`9YYCp(qlX)$9%l?g>NB+CIPiuh7Cq^SrPVOvS2}; zAZ_ju$FzSI)?T5KmONMBc~bK*Vv5oG$5QBUWD3@eZjTb&PZWW*$5uFF-f;>T-v*>; zsQspAz|GttaZxc4qSS>lg0CFJ2|IEKh?lV3d~y4anJG7(Jti1Aw0=^f61O+tY-O%V z?#L#~(LMfE&tCzE+xhaozfJX0z&Yu)2uDIIh3vKbl1gl{M(v@@yxF3<7g`I~C1)bH z!55+pz*7*XWblT!R%ClWIy4h89x9}MrQfVYPWsI}rBr9- zlIKowZ3b#n+gr|6IW{$V2qB7imPV8di5r+WO-#5*p7l_SETZ3wzb6Xs>Cz5OYkE1F zy2}Gb%Fu-P`m)KykK4tE#EXwLBu^$6zZ)ue9-nGazI_gl@L}QWw!b|R`q%my1toTuUOHESB z@H5%ZKTNLO66d}?A(;@ih})s}%FLpHSYoWDyqd`_&F77_bMp4ADbKS%Cw_lF_}pj| zsMAqpKf&nc(a0tB&S35rU9fFd9Hl}w%R5;x3J~o9`HSx~`;(1=+aK`Vwg9+P%^k<8 z?UYNCr!-L=-au-z`q!O16CHA~2U~Y{gUFJy^Nltg3N)()7d~(wcG8^(q%_gbpD_)s zhnnTw?Hh_XEpP0uBm(^wsv&f-u)f{8y>!~`#uMypmYoy%qA=Omcv|l#F||uI-^1qX zNxHP+G1i8PfISonlLu$erd>JwFlTU2WXq8bl`N|sY;CL8lgmjWI|?PywUH4P*9F$@ z_+sAzI>qAV+RMWmifKp5=wv>_t3HyO$N(1gxApZwrSzRlZm@up%DQt!zne#+9NM!x zEuiF2SNr5S#BGaJh~qO0u2GTBm)COWbfRuzC?S>(Y(c+#{K2)HO=AEdwqx$*P@e-a zPDZ69tkChepM7J`+T7@Dw-eWvjplEAh}numu3Q%#Omn9u!ubvH=D~qvb=Ib)27i4V zcsgo?k_0`jGDLq@oluj<$}xWi;deW&ySql)3=DkFhpw)3gIsB#;85!v zClx`_)dXPE1E6}>lWx-PO$E${t#6g!?lCK=a%W7eKN2&m|+g;>$E?9C?y z{5Me(O7Bhj$MH>#ZrfjqwLgjTNe-Xvi8GZ(CqtItEHR)EmO(Txk`L#ljhHB2P!cgc zsO5TTxL$%2samw$>N1tTFdRf-W{SdI^t)t=i`icEto>?g=g~;c5IG$jyNR)TR$y&B z7BBT!#xF>TPpk=0-_Q1!W+4ccxB&0yt{TeL42CfvTn+l4)kNcYLy^XFIpn;gn`AAX?>ww1;fzX0fjXrQqQW9n$x;_$xG*0|fOt%>KP3*TtLuwD zE&{yH{id7}{v5^V?%3_ey$b#bdq>B~KAGc3I)B28MSZ+~u-B&ABy=|y@f})C3Q<=a z943jXM*76HtW#9x1{`{eY0$$jm`g;KYKsRgwpwD|6@?kjajyh-piy+mdFD1(o_dI@ zRC7TvWoljFAm{}%$m!D%2ak0uUW9SyVxHAP_P@+lleP$l>;vwqAQ|Gd&`jHy%@>pF zI8Be?zN_Kd4WG8@IG@KaOh{g&tauAH4eeo!jAS86HK5><8^J+Q#5ct%f2V$!segKP z9M9<>k|rKPfSnuz{?j~71^P>U?{*W;&Vlr8Ag`}P?GaFycjN<7)BeY?Z!eG_IF0;C zZ73_&$uAL)0OrqxoL)`=7gC`G)C=*c< zLt&mexjZHidm&9;AUv*1jwSkHK8iEwPti~Af5o9G^Kk?omBk0qaS@Z#&e?=g`_>$K z-7BKN<=uGPc|ulqT602}Q)F?;S|Z zPsn=Ywl8q^zQKEvcOzlpz`v29?rb-)t}=apa+@j7&( zV+5;I3?%ppivc?18i79Nvs?S@H-N`7GholXuCEBIB{Fais7{gV$srw6D&pb?1rK^r7N!Yp7xYg|Rr!S7-^?MVYYDxVjDA;{8O&^6r6X8Q zT7me#%=8X9Jwx5i)86yo4(;BIa-mHqxfy=P2RFU1Hn^FP5G26E1L_4V%kOs#`5IR} zIx9ASxZTV&S;iUUI@MS#Ne3Ur;_U6|m-a^=t}T0OIzq$!9+lD}0#Y@i`&F2iS>Fss z;V1!#8@qkvhF$Q!yk^S;ih9Rni#q0X`dF8zRJ5{3W>L4t$257{rng$brG61jhg#a}D;74GW zD>`2;JM{iHDl+wo+UzHp@^W*_80UwCt5K#gkF84>6;Z_bO+Jxs?nx$k*MD*Zm15u& zmp8-B;@r_B&D|e0pnDN+zrxklb<+XT8-c3`k-$KPL~`T?Dn=_Q-S3XJmo&Zvh?Pat zJbqDjIpH0?)k0pH+9*AL9*Qi}P~Gg~@Q79s%V_O6FIkYu&x(&IiPcETa~vEN@ysED zYEUy9PzHwT_SPk<3X}w&he7B_G~X6=89v;6-b8$O1f$`=ylj5bdtcgpH>-`*EAaIE z(nnQuf~SB~I@Fe#K+qQUG|DDdndwAECF=1t4|VxCxd37`X=UyCrg7CxbQ_8;C6EM- zBPE{CQ8Z`dirv5dI-hzC04jwrd6Bq8)|Th_ zQe8s@3}#K2;3OoYv37O)-fs^L1%yQ<&}O8LG0y^hcHE% z$vu|}a~}#8Nyte;_{)*(^atb8Xmt=-jF9(v-Md<$CGaJHt>B)FU3 z-9kDh6oqmYNz^{Xe`OGM9c~K;~;{wb5MDy*o6P0C5KV#?qYMoTQEz zX7Slae)x8K`DE-m(Z(P!9cHnDWuUm{-MeEOQN3$re&lDAF0|UAx}4G3XER@OY)l;S zbt?0|ly7k|Odj~LG1=4gY(z znD2Y10@Mw&_?x!o-#>NxJGl*EF>iK=;i0-E>rv8)4PUwbQvwS^Gb#G_d=C;Xso9}F zzxl{*X})Aj+74PAZ)&|$F)fm`Q}^yq!h7ezo}_(v5In{15OlB7;~$J__}4ocwZ7>) zI+zkirs_!|e{1ltVK(5IA~}T>TYPS*SnrY_5!+1Ux%IAxr6DdWPKGKUxvI@)cRtlN zd_?<86oFLJV|v5wo+F1l(9%QrJU~mnMd5VO#Jp9GVD|hYGRHvq%C9A#VT;qZxH32F zV^3=1Bp3Qly$0V|HhTE~!#UCo5Q~Qi?MjOTrrWbmTYX_*?)n!Opq0cew!IGfI9-OO zGRFoJsF8Fp-c&WjXXUYo6<5~H6uW7nxCrAwT{TJgFGl@(QEnMtD5l7KJ5HPZksC2R zeJuvs#O}n53FKkmKLLXjL~qG@DB7P2?&o$MlvsE+SKHgAA2&l z&y3M?FDl*IP|@`^sx3-xarHiKyL0#M3`%te^jNcI%_<`O59l~-Ik`u3~NUt?3k@f1uWHB`6tM_#5B>=HHUV>eAn z$$18Bz>oa8ItV(_NB+Cg#?L-JIbCTtq2pse@Z?Lz-+b&ZrfhloVMK0z*=9{*$;W=6 zqV3;>xc_-gKLXu<{_tPF`G41!$hS?tgSlY!;iiU!fWHrD`|CR$m+4=NFst)8Q&Bu_$ES##*4Pj!F}@Liv{?It@_ zH&DmW(aYTM_p#1@U31VI2gi>-f2Fdm|Ca^ur0Jq_!MaHq^-T$fGsdY|p6|H*`(IXS zefh1n*VtWZGcH{EYWH2FgLr<+p>+?pWoLz znZ!?PxaWIssh`b(7wh5`FZY+Y#^;vT+WeXP=QLN>kKGl!>Ho_zZnIVOW3N~G|M3r8 znFW4NvK|awb6!NthrH~|e0KPg^-}VYv!#(HGRPn+we+vG@jw4Id|q1AMrpdwm@#8y z!jud+5G)r3%Wt#ax)95SMe$BgSVoF4kGTOg56QG7T5DW1_f;!G>T^A|Wr#`XvE z@N9V2UkFoxYf~N%+?@RfH4S!{@Aucj@`E^|(Z!)0U~98FXD7;F}re?%ug` zkh@V^cj!UloF>&_PR`PK5rLaGZ;tWo8Ytg}+Xdoz0xk@Lh+H}C1MI&1@D|OV(c{8} z3-^3hs{2`tIk4ByFZk7~H5L{YBL)qc$q;TSHNb*iO>MwtM{GG#{hT5IEJgMtS`Oix zks{2C_^hjoj5I_+yXH)FWo0T5O}o{f%o6P~)+?V{SX$;@xC}X0lJ!qb@@JER$^649 zitReWKIZz0=nbfJo7VDlSgK0xCG*QUxp`g)FNOp@T$Q?ZKw$5>k#B@;0VQL0)7yk; zUC9yo;1WPXpUgEi4mQ*OaKJ%8x~%FMRx4K)LIGK~TvKW3a+0}sZB$R#>`~2k;pYDF z&~WUgJ~4E%1kR*OKSEh~t_%YTGH$VsyPD5>)^u6*#|sxP%A6q4iFBD#u^HY)e$oET z-&*n3ckkc7Yy_yP63?79yz1RmbbT+inPr?cTk)XlI9GjVCr?6q;hf zOQCd{3PeA7IQkl?l4xFkhrkzs67<*|CjBYzrA!nCj(ln1gwe2SAG3i%ROToMznbl5 z)wut|2dy+fYs^XuivvUMtWlTo-Q&j_WM*dGy?b}z?AhB>Qd5QOL1CZiv2n?ggOCAi z^-4kas#&3#j+;Q*WvBs71JT2=eO%(>8qKusCM7M_*Wb?qdef>6aHx!`mNAvItz~+Z zpreYzfpBo3F9cyzJ)cD%?lx_H3Rv|i$|PpcIhB*g1?evxY`B z&TAY$#xF?_syHxknS9mMP%zCurOW)Kh)t4@J~=U%Au1Vn6iREiNiTgx#ljVDEEf12 zIAHW-iP(-oWQ%@o8u;)O9WIS`&-ciT1rE%8_6n56G6YMYQl%D|=~e6B0_={Q8{KP{ zcu&YU7*Rok^E4asc*5WSnmb82964yvjcxv|W*L+2-f;W+>#zMEw^K5hfFwx9(*!$i zRo%HAq)s~ftwSU5jU*3ODIEx4gKI_#GC<>HN%RtB8rh^iWq+G#DmV2>SX;A~xcwV| zsHL%krC^Az0dkm6d;Y?NA?=6XVWU2;$mO3C&VQ{GIvUCRiJ&0k5aQKXGTNI@U9llF zu4~(|BNfp_Wp78YyXcei4wvoU)Z(e#?4PgQp)9IIrMW8T)G6F1kM^UORgWA$K4X^u zC$mKSC(^11xx~4Nk-e4f%lIIm;p-=}X#AWwaU$}{pqx-ZLF1+NprOWfzaJMzYbxvW zhL!2Y_KNha7A-zEbdbCCEHEL#(W7hm&77}?&RzS1=Jbd9sF@{*9gP)U^q%NXo+uj` z8Mz`msx;M{J$s1)eA30>@@K=&b&cyt)=pbMk@4Gc?$nZ{^R%=clA0?XwWt)1OyC25 zA#N?bfKeOt3`cKc77&IxE| z)}~FHV#df^GOWb9?#k)EHLc{+r>~p+Hbpwh8&>7XPW|Sa7tifB9}9yRn-%34jH9>F zvR#A=XmJeha{@h$44bIr)RU<}kQRn$F*Irc_Y>cr!9pcz{^)JryN}S~c)xrlfCxq_ zc)Vi^aAA08TeGY}`VRU~I{Ic!ri(Pp`O~glx=ek01ZToPF(-y;CR~7(qkAj@Tt=K} zB2W;U1of`byomNklw^BQst?g3ilxDY7^&rwd|}8|)ehse^Amv_v2V@uNXogoM%_3h zlF=8vTNYVet#aAK!`roQf7kDo#cq0K(MNh8*(h7Vtvoge|D$<6_^+-U>(k-$9a}hw z#jx2WY#0^e7>m2lV>@^1lm=ASK4;$B3l$)Z4>1txu(bBkBW*2u|Cg71jdWtWZi@$f zvuC?uld)rbc+>+P*7*^`m8O5D`t!Fd(VfVQxWO!{r8IA^SSyw&c~@BETUZyLcph0{ zK{S?5}1-H-=vnOp~3M(ub!-WyD&=qhxSUFpMFbY435mc!8kOF2~fnNFXEJ= zpxUokr_jq!B=<86fo$RZv76((Rkd_J*_c?-FuRb0VhU>9q6rW67^`c4r~*}gBF$Ikt=L0FH$3~+Ji}!!<rl7V#V3x(ghg+mn=%}t(f_iCoPL@& z&v~OgL+QVs{E5<4H8vB*dq-k2#8M0rAoIB@S(=IMJ6mVSTbd+9wKuj}t}d$tI#*D(#gaGT*Nl$oc2+%Uhp-1RqN8 zeJF7BcGV=yi;UD;eqLq-3zh0)k4)~f^t8Qd919=(Aa-|Upm?=WtXVjd8d^Ri#%xc^ z^SN2iwf|9Jv3%u-|GM2x_H--hu3j)yqX(y8-P#qm{cy?6&v9{!`uW&Xj!fxW&U8cU zYdy?)L%l8|mnl?{@)}9o31E-(UD?yqbDxUI68>Z$-AX1Qf~+Z0aT3+gFoA<1yg!b! zxkLA0`qz(aT~U+C^G*dpd1DH-+z@Wdy27)7Q++jD7g=7+EMwY7x|lo9tevxv%t>fP zY^Uhj?c2AX;k50X=b<2IhzqgB%9W2}f_Qm^N7%T3r@Wk|&|Arg=_wBKt6}BP=o*Px z4?ZuFR>PVx$vN+M^PP*A8?L`&%FD&RvpBB4?4n`+ufF;gdCu$lKKY5)hp-)JB#d0E z_*zf(*|TRtVp(#wh$A0;ZsAGq5AU1OkWccpdt*+Wb<~4s5C$mp^10nBb9Fx%IVf#u znMEnaJS^a>n0WI0<}@5G4P0;<(^t+JXLH)x(DuxNaL!jfLDQspIk#zFLi0wNVFWPN zPK4M-W_XBH0CR)^d+zM5&86EREPcP^x0rab>ZahQuLt;bxumf-C(}F`*=XV>MIJ`R zKZ;0#&gA;kg5|quHi}=AQz>-VG|B)OJs|A{5kAt;GO=Q`&g8D$cF~rnS>;$=yjZF_ z2p2B#x;i>Z9gIwys?9vjB>SVA-gRRfvjAlV7i+?XeIJDhbnd~2tC}lE3JP&i7Zo^N zRK?+6GnnS!-K9PBB!|@psd3>-msyUE1A{%P_SFlXQALT3@(jaGK^$x(s|=-F-j22JDJu@Iq*29 z9JQ@jR|)}H%&g>wi+KlpoP^?BdObGSIClQLTNtO4KNW_PvDJjt&`yL+FlD_nOI@EZ^gJynbW+iD{KMr|46jsZ_ip<>sW&Cl|)vESOWwn47By=OQ&;wQF^Ohd5Z# z-DHfiol*0+MHHFZLU~V!JG|c^GBT0}G(Y#VL}^7r$x|=w)Tz@DccZOcPgb0`vvMI< z!d#Zc%XDZ*%a~HX_bnCqa!P@E`1E&eqFks`;b_L^C&O%--L_%7F))Y|@ z-~6*K__yCWN|&D!?V(JKV1ozw+iE#ET}FU+R<2&AzfcgH8&tdrOG!zQfs35OW^&uo zE}EiYai6(-c;osF8|+(~Le59@xx4oCK;1b<3+L?7@B*~f)Yexasa;iIP_djsp zfEWpe(+O&2!-@~0JozG~1v+r$vwZE5BsVfKHM$mAz>hR6*ZrWmpWd#aR5V1;ef#(8 zFY~{)OuCmM(6WUfF5Al0HAFU6=^_|B}Mr#t2iNrq%3JvrWO zF0tsMiy1ru2!%n!c$v9?k4of;TWi#9XatGx2gRR%`9vY!^=O>_x+dd}uSDv+rbcJ3 z>Fvo{nS#f6HzlN>#-!|`dwg!FF{*8Ji3i5dda&STz6*mjk5Rs^(krFwR?X6!RK3Zt zI~WBVOl_avW(SJ78C_hzTCc5J4VMmcH`)jbbV>;5t$!e3_j7yoeP1REg?h+slj*OUH!F2_bPA@At^r@0Z|p0hug}-? zZ+gp}oOGO+KVr<7g(T36Idz0w328*gz7HYIo)yyp`Wn)x{@F@25O`dq@-+P4j}Rq- z3<2)9>FsiC$Zwz2;H{V^>Mny{hf}YMB9iWbobd9Kb(w{{%4=+qIZD5aK`nZv^Wh1R{8HGgvh0aw%Ou;0@+G58VK zz?X0;eTObDoTgDwPM2&EA2)k~+vsfuyV?|8qxSAX;kmKZ3)jzkyPoezhJ8TBI=N?* z@ciW)VhQZDZF9>#+C4w96?2*l`Jq$_eSwRU#J~C|q zTjzD!I<3x>fN)>JtQGF&V<~g&Y6!d6c9d%BbvGeBVX%hb+pQ)Pze+Qh9!8*f3h z7!?{l#{C^<{RkuhyESV5g>#O`dqlMAcga$R%2PN*GU(Pl0cL8LNCRZ_C4l9d+~hlV7SO#G!64&erZd^< zT(qY)r|dBRft*M3AY_CuU+?;9=l6_MdBNP*NWa_?!YtX&$@urB_WHxd<#wk06yuU| zM;czjArYaQeD~OB!8W1w>Xd7+mRIM+#mWH^Tp#9jT~ru!PM^nOQDGn!zO$bt^{hd8 zlhw7y{^NjYVl|}hS=ue4z=KfOxilLq3+}K?cJV6T?#N0d`M6i_+9>2d_*c=%=exz- z<1694W|DU!zt{fjzEI0W*`Zgit*xC(d>aSVpQSn}?;w3e^8OzyG*TbHFkU^ge}KxkMU8^@db|GoueS%h3t5Hkh9EYlrc6-m~==N#5cd<9nUJ`=-YbL97wVh@p!)5azA3Y(Eojof8KB7ba)t!g?()D zDN=Xt+)%h?!aPoT`shoZ)RpSS&IJ@9f0E%eG7#5*9}{C=5QK*PPfkFc6YV)6y%3@Z zsmW*8TC@o_XMa<4#~1w36_w@-;9+zNK$VKB<)eG-J#gT3RaKSWRL*!uye`qB%YeeW zw{M@Tw?m_%A%k2>LL$U_y}P?px=^^(b-X)JXcM(vvumZx%aOcb4W8lYc22@{s(vnpgdGs$TS)QCxFwoO{vfc9H|$4E%@R;y)(w@T z>^|{#l0m}k(+$}Q&v1Gc|AOC`Uzy`H{dE-bDMKK%3q4xZV+|wez!~n0lfMQY9}-kv z)(OINa{lfRD-K^R4o|1MF0*z~g(j5M;9$jBw|W=l0N_id=`=EqZb5rN%X41V6J1Vm zkSqxq>75+S>t&XPjHg!kK3sLFsJ4?gvtjmd)R8@1C=vnnplaXwzQWqsiuDM!goqKMW#L1a@YI4E?C1%HVxtvK1 zVG@(PQ~h^87zn-O9!Ys4@L?=aOr9_De)QdK9%SuOb}D0)5h(JsTCJ+mZmjI zP$`h*L6hl6o^64GD>dFNENWwy@JpAer+99DQ$5dauUvWsk?T(| z!uAsl*yr75whxt%#MV!KS%>^3sCK>>A{Nj9t3LU~wjopz56QP|p2S(cw>&fH96o)KzgLVHF zQ6T5kPhP6KW(NX-*w(de+jc%5nnp=3nq;v^;oe^2JYb4aM(BtglDYFn;nE4){rOk%iA-WIBHS(=S$ceW3gqjK4XQpw0U z1+5Vbh{qA0x?;sE{9L$PkC2C0SO50(ZA?>|*aOfX%3M@WmLV_itoXD9(y1UXbE4Fj zS5f}$d02R;|JMRsi-FOVve2s=BxRu%a{mPcs7MO8w0KWXws+Kt7B^t}9sT1seD6Ov zw|u4tX33IPlHRPSjFZt(#cA5YDW^GT@;E<grvYYh>VA zX;d@|&?zljocUBV`p-(OuDGlr0ZiCg*l>zBqg1&v-R0#u=XGwml>kVAa01mmZRT^3JW20;*S_noq`x636k*D zYVxUOQvl-@naXCL#O%~gUAxiK${@R_iim%&L!4AEuZMHel`u(S_|I*M_lN0fUVE8E zL)*9YzOuM_yWnxeZ++@942VsZ>7Xf99PMqOQyX0t8eO)&=-u#x;;K?Jd1rQ|ofiCc zPW55T1zRXJ4oMcjsJRD88U*dBvww%|SBhu@;^^;#AtL_JL{Z`IIu&G1&^Tm9RzH_; zW~?()Ycd1!!t?aERx^+Ca_L5if}vI&X!GyChA(JqmV1OpQ%7zuX^R|1cHrS z@pDVm)d4sEaY!sCSe7}H_O&Q_=U?cdp_sm0xRkL~DcVluZVc9tYO}jTl_&ep(jYeY zIs9NR-&4U%s5BmEJrLm)R<9VXH$g>Vkb`Bk*re>Rq;m|RF ze(6xEl#E0>7wQVi+ud=!%m)+Gubtz7#=2#c9(Xm(#80>V#u+Fq6wSA9!P})kgH&|) z-2C_LJ3%IxQ&ju-P575k00D?5zqd2A9O3T5W7+ts+=Nal70oL4R_k;+0gFJ$^*9K7 zPi}E)?d`f%wUSK8StRIU&t+1Nd^4EjGg|pGi}FS1fObyNyih5c}p5mQ9Pc=h0=OJk#x zt80k>mzBIAIw!IzL!7DQ`ff`^qx5ErGs+wi`DaU~Mphw@0nxo}*xpPZrj4`0(N~@W zNOW2+&BlQ(5A-!ZyuF|#B4cda!CFk}1zJP5l{GfxjwvOdQySylHH8tBTEDiN+qC{# zZ)#p@cPlgC_>Rak$_a4p+K-Ar%7f!J1M|Q&@4dLDt<|2M^%dQ>DY24Tu%x?QDJvo= zcM#kDaScm9xFJePYrmvVQ;ETj35FyrFGvnVnxmNpsgsUB=DM4s`SUtS!rI2_K`; z+-Z#+y;YUdcXjws;7#b}>t~MtaG`DX`L*Ii2SC@TSFbS1dK6j*%O&#E*99o4Ft&jL70L(&C8oMnF#}G;4?!(Lj_2Q&Kd! zhtHoqGe5t*;)I(-l+dL{g7TZGz3ah#Pm3=wb$>mJ##yRHrxvSj&fx35D#FTu@#T9+ zfo+CHL&XjC45nt^9OCgjVda=2)|rettpWuKhI}T)XqpFT)#Z`^0Lh72$8=D{mZVg6 zSTSm^Lmw zH9z$S6tykiS8eDimq zAouX9ZKV2fD*wmMoqCKz5JMU;=VC-1`c6(Yqa3B#PTj3zb#U%bVB)kg(^nR>WQn|a zZ#F>`J6krcM@J!sCOJbm66<28YO7!%^5UyMf2uMuTgEqME-krN@j@C1PTda4c|Bgt z0Ts(1@;$MnxgM%9gpqeX^o9SdbtUOza5V5zWg3pKK|LB?Cy2&Ec4kU_ z`@m*iQ|+VYiM)%j$@H7%O1qH4xpr*J@B2`mo&E2Hv)MrB+>$X$Si!`~d51%Ro%5<>f{c`Tel^b6gtAO7zXSHG&x1mEAz0H!&Noba zCRWdNg9xj5xx{LlDkd}1E}QT|`HC*}OPCBqpIJ-mQWp>J&ZVQY#3&S#JFSek1lR8t zIS-n*O$ZF~k)S#vY?fZ6j8GQ=p(uk=o2HJqr@T$|7x++{y#0p|-;m1%-#kd}tqU-{ zUQe@Sr1P#g(VEP_VPiS(`l|D71Q&`orXFdc(Q__!-kdoV_3j^juw;m zk7d4JuPGZVMwNRKRGj=T!VDD5dyyM$0il#S`P*yp(g2s2Ju%L>X>FC27;tr`+7>I~ z&AZ0PqZK0nr3N>X0{cOcl!mxh&Hk=v$YQL|*lyZ0M`NH&KaL8%?n^QEkd%*S`6{aMd9cZP{oR;EKufQFm6K1J7^ zpGDawuxn0Ej$dv$xN|>`ss+*aWqJ*0!BEIoe#PjXB%yiisJV%6SM^A5o{|5R7pqAj zE{$||jh@QjL?I9OylS7#NtRcmIA_Kh*sy+m*WSHL)~b%zZFeh)dCXYKAE=EYV_D7c zl+P#EO-qkUpj^>{oT?kEMv+$@Qwh{f<+PeaTQ@dh^ac7^KG{Kmx1i~;L(}P8j7k^R zC2?=#=*oH2^TRcuv{iK!?T5XbM^7pm#TI?38yz36_0`E*!tJVYU2CC-oxxN{UGZ8Z zi~J7C!G$D`Zw7-9@_ZH$pzRKvbEf69irv}Szc)QfagbQ#2cE;(D8q%0MjyBN;X3v5 zYFbF059ceBNxNe1XM2X?CRnj&v3(VE)#6>_b8ow8EW4`YSBt+w7#LCKyiN(<1QjS? z*P{M+xDo_HFgYe-LN;s<0FbqM6Vd`sM}_LslGs^ddGX!lxS)apcIkQRB^BV*#gE)N z1cH$pE_JqgyPjAoyaj3WH3PjeF9IU%?@xw&cwerT5)d9D-qm>fS+Z99JK~uH{z;*S7_cPoFjBX zj4sX=xchAb5ODKI8|zjtDYL{g3U8R4GB+9hC?Iehi9=uO)FD!N0$Lh|?4%#Z+U^r& zPC*9-=bT%0T|P}v*79kT8+T|F7aTb2-nbz`GP%ftyT-|UGi=eq;gXJpK7mc($l-}LRS z+$@Tawk}3NV35Om?rONw{=@sXcG^t%&qh(|ws-%plxpY}#C6)?bZi_jDUQA$hSUJ$ z2$uD^Gpzf+_C<;=(3&S48Ips zb$y%n@86GOIJrF7)vGoT;KdLRXx%+A3%)oYk9ppPCb zpNJjALr%%FxmK7eQMtNju(}p5Q(8-K7Dme(lX@DAf@cLg*Vok%$(*{`2uFlWdx=J( z(T*FHjUa==A;p$yo#Di~H~yUILJ2#~QKMZPUnv#zH0N zgRo3f4pNBMR`wKyGoY`NPAiq~c%j$@;y!fw>Op}P*t;r`O(Y(5kfOpl2Hvx?y4iGU z^NR?y=r8A_Pka91(oov$FzQ($oB|SXnGi;McucQdh%oePqsF?skoD3DdeE4ByR}$K zaD3g*e=j_XLA$3M<5512jR1Y9lYYrPwd9m@To z+t2T@Yqrow&@~1@Q9H^1zvHYxTp&DA?yUm`kUOoa`1)jN`eJ)kmgyq~bA-A&q7qFk zME<+`X;cB6o(2o0`zJDUM3ge{!Gqpf9XR6~#dsu@%;lLyY`c5s&iSIL23u8!6oo|O zrqFp_7Ji?Hj>=tHW3pOBQm%S-J&zC`nl8MH6tNRwnfuMKqso=pG6IeZA&@^tC~EoZ zDlpC5H;s~o+`fG~dusdu01;NzJ?Byip+|o9aYYxR!|FN6#P`EDZ$seIikNuDWQqVg zsai67@NFH>Yu{*6lFJ-evPW^vDxwv2&gFsyR9-ph#L+~M0iD!seg7beQ|{AGT_D9R zMEYtBX-g=&)DM48sFrVx%fJG7WzS1WMsfrqW6f41)22L1lk@7yEU@cUm=ikXY=~kp2Hj_sL?;sd74g$Y(Vb8=ncOIgs)bBWd~BM@R=!FO!@o>SgN_)6dL3 zFosU@UN9g@`TSOc-dD4?g2B5Y(n@F!RC54kX=tRHA|gyfXT*rV&wX=c^tw2AN?#{6 zxeT(DI0cc;YArn4)@%-LoIA&2Xb;O}()(8cjH{`eWn$=HZoC$~$@tO@?aZRayStby z*pyp(KzS*SIx+_<3Kt)LC(i}zo?QJzKy&c3y?0hdl~y9<7|TON-Sx1Y!laVYPRL*a z#wt?h+De0NeD21XLTxpv=LK)SGrYomtA4lV_`uMD?~BGSkCyX=L~*;+;|L4jx`6q?0x%oruu-; zv^3&NpPX>8y`D*{2HO)|vE(12*D0*>&6|Y;z;JFF#F<0^fLx#cW0<(R3Ct>ecKiA% zAeK1a3dRiLyx6qj!ssHnNkXdJ^uBJQ?Xgt^Pt4jK$WvdmRvm)mCVND|4K+B9rqD+C zuW~kbD-pH?Fvh;yNKQy^=OS@-o>Q^Vhu%Y_e=GONGM-NcXIgL-a{vuMu1j-e^GZID zHx4wG7L7ql_&*-aN~%V)pPU82$$te4XkUPYQmL;8FyHv0Ly;lD2W> z&j|kNhbeK6ajMXhE}xqUboNB}x#8n(dn?N@P2C0x+%Iz_7`xSsj&fzn&1+gOZ< zhyi0I+e7W=QM*=&-wX&^gqLcx7i0=JneG{YCsM*kqsE1HHmj?zkFK)0 zwJ;^dp(w@foolDIZP&i*o8C38Kmm_hz8GDjV3;MVxEygR1Yi~sIa_|hkiDjRHL4!W zJi}CaQV-lI&7OGCiv|VX_s1VcWwUMacveD@Di!HzL1-3AQ;f*KdAYAPzof)1wIn`n z*a-WlPOh%5reWYoE@9A}_E8HEKipd$7>sjjmrbw6C2^9IdPJfzBSX?gVM)Q=8 zBd?I-^5pMFk)F`PUK1rmqJA#wkaxt*N+|mPdvoT^Gaw=31!Afz#s%;(|E(NN`~C{_ z9%&%iM~8u3E+mqc+aCV3V5Ca&nl+C6(UZ89N% z#Assal&({6zHs?`=|CP}vk`C?=N1wRrS=^HgCyct9H(~t>D!OU;TyY%w08b6VO;q* zNMqzm3z%1FzTp=l;vbU5>L09yth8e7uomI)$hiUX{&UV^JRv;OujGwC_*LQA7M14a zuWZOf2rPOukA){cFQP@qMX7ze>&z}c@=w`_gHN;NfY)EI{TCYfr0KkK!RrNSwT%gR zcjgWqY4r1FGrqe1?SSFKcW!Rm_R3Mi+VIudAx`H*6qh1u(sQ$2-9jS5yM)a;tKT8i z@$=R{{x~c0_OY&Ce6?R`U^}C>nY9*{n>^nR8uIecoiS=wL-%A&4-KKeQd0pQ5 z%=JldIV^TKfBl;NukYFB_}#m61O)IoPF6ATYT93a|DS(vUN%E|CLMojs*i69zI<6- zW|jJAtF&{N_@CGO^_u~|Hs9e-b(b$c+7E81R!Wym6`xM*=S0!LHY(oSye=qEX} zPgbv9y^yU@#+6L>ZFv{BbZma<5t%n9-Q~eWEM35&g_}pVTrJnOS5W8m7+qXk?2uvN ztmQ)>s)m&^WR_vd-m>D})HJ0-vfTl{M1D0i?$R%z&q#i(it*Pm7S%u zIX4=ymE--11%;6Gk=xEWlGx&gDgB^wHat9Sl$KqDv5K#@Zjhd>t?g=C+r=9;Ts(O2 z;36}#FjDO{QTqS+xc~ai=6)lF51&u!-lww{1csFtGvzFTZ)BG@K4(kaf4%a5ep}Z` zHqb|Y1r7X29N=|pd;Ndm2i%Ty_{eu|bK&5@Uf~fDBjLt&_L4c37c$qJ%!pRl@gIXj zLUckxLRQ<@=%IqRenX?ydPC&WGiT54O|mR`oM;!}=043gG0nQaUlLYKTc=-6fFr=*B?e@uZPtBGcS0$ykzehz)N}U*yJt`>Gy4RH{CiplRxVf}94p0Gn z0F70cey;T1#L&hj*m$Alw~8VMr%SEu?CkXQ^!5~&l#HVgnV!)CjZjkBdT9IhHsi*P zI~^Nqf-vK|kt0*-o}b;nf4@pbXXyWwd!nWj*o~F<`0?X@t-tlx4dN}+Qc{l9)Hp3( zyts(UUz`r}t3_)@{R0(fz^osCylodTa_Ur5r^)Z1C{=ZVR)q%4=SIG?PEb5*`sS5Y z>?2?J@K@U-e2lLDNHV|>z-s466=-M9IqSTro$D{{PO{WPz@Bgz(uj&*l4Xy$LpTen zFs5T_>8DCZ2TXa;GQub+z4gt?TEf?K?Ad>^)0)G-_*!xdbxJ@c`8?G_=}7!Xx5j6G zQ0nyb-rZ~5-2ykr{?0uwW|s=SoLt*#bK_PCnjil9;z#K^Oqja<`A>(-Qgd@dxp6Ab zsO(sFQxzSQ>Uw`{uTB5r`{LPRI)Pf{aG9Q=;qai;OpBb1f%B9KcgxAy;@1zyE??H? z)|=dV|K+b^+q=}+s45lOfBdD_?@oV?iX!^A%u*+WUiI$(mzSQYurN0EqrI7HF$F9@ z-7hIfmgGlB04&L`W-Eq6+Q3lxNva2ae=Oyw-|7Qz3{|Sq{FvFv<^l8d^a43$RGu}q z{c%a!@~@TZMt=N$oE!6n^`qsfEFcXHMZy1m39aAwI^C+< zuYC|6FIlq0J<4~1mrk@Iw5rPCaM`Cy?|X9G3^WG>ll?C?e0}?l^15*p*GTX2ybRMS z?+C)W_xM2^6U`?@@U!@TofZDMyy2tAk53T*G%BusD)s!RM!!!#O~6&7D%kA(90<(o zC;9)ZqDdHFBDp?2A-K!?{Qbe$nvHG+qbthj{=qdr3BGsT7wy4A3ao}WPo%qR)cx{m zKiS;4rDDkD-yi1WoTWP1oc=|}<)a7eeP1-sb0PCOjwBY&H#QE=%F5E6RtRLD>T{gZ zO0hn1loaUTNyn8Ie<1GM+<0Bt-FhGTh&B$MN^R9;ZA_2<9(E?a2L>v>BOjb_2)=M( zp+KnpJR8;}VLQBg%9~%&FZ3+D@WEAovGvTEGmG@}QY{*OQ@j5FcYpUNArKxSynS{fnrQ*WyJ0L_mQiuz4N>8zFTB!8cIi0{N;de^jSW;({-SfBM=Gh zsb-0$*O+D#0@A(zidCS1r8f!1N@DI6!GyIG)62%9ZhV4{^AU-CyxIh%V`OSf>gN?1NqqbR_ zeM?n*59wNIE;}6=X{4j0b0#cIrkZ_fGE(X7Jv?27u}Q`57GnoSD|jGWRPzNEN--kW z7u?&Sk%~G!BCdMW;qsF8kyT)dg}(6(C+;RD>V)|*HbshR-l#6-L%Lj5^S~Qa@;oBR zI^pOg*I3)xrT1^F_&ickru&R0(4)T2Ir$eolm-|wSq!bnnZR}gb6TkzH3zBBbIo|! zPHDzJq1{&p_J4mWyF{c~TYRTaOHD~xF^Qq5$I-heRO`1>_*0=Sva<_K@X{CFpJ-FL zJq-&#;OktwUF2{kF3yx@s{m68vp>H&edVKfV-Q0GUDGZ~{36BR7vB_Lw&`@Mn(1tn zpHmd$z1015SW)R+KfOAPv#X{#5gf#_ zTWneHP#cY+~FJ7vhY z|Bi>tmbo%C@=;dS>Y@N@x4PH6J=YWkD76Yce*8z_929A6P?~a)0Ds9>VOMai-SlbC zSYNEIS=H6moAOHb8{0kP$-j@AH~LuGSDQac%wN0lP_47`6s5RY@@$twhq3J);`oz{ zRuOD{cSb{Y{ChvbwDOq`B2Uw*)vJpgE5K71!fL3|n>D>@1?rr;ci$9EW&5)4O2sZf&T8QX&@UI0^!gBD)0^5js-&d#4-KsuDhOyEv=R!mL*bke;~4&5K_ ze&Aoj3`iR0&tKMKZ;hsx&i^6q&BJQm+qUrvnTpJb%8)6Pp)_bBQ=$wFDy_0nDk_@i z46(N<3ZY>|6io}ws|g`Qb1ls!G-=R0_dBolzTb!2evaS!-+LeXxsPY>d#km+-_Pe7 z&g(qSi))y6by&I9&coNcS4y^Y_1wB2W zk?uqU1UGSTFkvENG(hi=bstQG-QupgsPE2B{XxLUMVQ~ZfW*%D#o5oZDgYCN3Wg1o z@d$r!Vxf^l-Bfhc&oC5rDx%us7uHT4mk*f-(Bq0I*qn9)3AGS|61ddzlIYrlg+22K8@0qY@zkS9p{m__& zR(%M1hAjb?!hb%BT$f1>cP@v8{#SmGJ{3{ET1*oFfrDsV&_ zj_`XA)5?{rR;^Mga>{J51@}W0Yg%*GK_kHwZjW62-ZO_n>LScso2L<)9Bi zX8`fUmn?Z*=OVpfLpboTti+5Okj*n((?sQC+9UHEs7lh;hatjfl@wCuIoosiF`Hd# zOKXHo1MO~k6?JO5+Km;EA}J)xt=U3^g-DR+kk%nQ^xagsNoLc-Z{JLYS{%{~K+oCj zvBK^>kcSB3f!%-anfrN#s~pJnyKk>~!Tv+T#yPii7vg4m-`$^spl2=)riC-p0H$xR zi@4hSAb)+j`0_Hhx!1}uwIJ0E0J#xk-U5JB9_awZ&-9Es_V%#*=-A1yaGH^g7ps|Qfrs#w=c*sRAO z*kV#c-2@|E&$8xXkKsBGb1YDhZ;FiROs*P|$X&v{Y2nJ1>Lkygis01@P1lsEW9IvB5S1) z?O<`0vh}|J9Nu*?-!>uixRDuSTW6ZXy19ShBYTRNGQ*t9HsHG#7Yb?W| zMxAlV1?;ugRM}8o143+^Ib$(2h_yg*#`;0T;#Rk@Di3)N!Q_Z@1&V<)@+pIWR2oSy zooPXU76~pD)^fGwW74CLJzm^336ls*)?8?6#@+n+uyb)4&rkEAWs1G7tnhGgG&gp0 z9c1SVp`y;|Q8m>GlJ3t&dx8cRn!x1CFlWoH5SlKj>V2 zdi)KPzogB*Ym;2T9X@G-CFmjj%#l7(Z;k>!)26baQ^1r(>HrEypm5E(Z|<4f9_|~P((z*vvdj0oDYTYQ0)~N zEdzsj^*)~Nb?}=i!qm;Ge`|VZ=r$Cr#r!hm#wU*kY3u4*V9tyK!5Zn8MBLkKaPs6+ zOrMX8o?sua{3V?NU|gO{T9>`jKR@hx$b(2WbXgy-n~tBc6O-8NgzR1RVX)ixqA@c=3d!#C6@>g$K+=a0_&!O$@P$4>`Iq7(v)T z#sY~DYsAD6R54{2!Wl!yrH5K6UKNxCFw$dGOQ30CGiiB z?%i5}rFqQEKCI;%eGm#>k{}R-Pn@yzfbNHp9(o zoqW0MADBfsrp-u4M<*e0pjsFaAqY4#>P*ZkQP3`5wCH|F#u2nTnPrcoZ--TumX#G1 z7l-0up*C6}ArW2H0W4COH4@fp*RNz$k%jgJSmj|BIG({Se~$62e9U6$Zr$qDps;DM za$*oOy#F!k^m>pg_ThnH$R!O73SWhny=uXOBPJ%!0S@wkXx=7=s~pB@&FqWGme0Ds z(=%5GRUwEDce2OdZ#wGal;r;7l96M|Hw-NDpmcJ(B>pq}q_UhSP%y=OO!`vmG}NV} zJ%{h(>gW%*k>C*Kch#Xwo50|iy=JniiHXU3P#fY!Pfw*JS)&J@{n4JwSFsR?EHIb2 za8F>Eu*QTPK_J|}+?l4^%&hvVL!k28caUsZk#>8Z)=E(`3D457s09{Qer!$m4 zc~)Af^H4;u!`R;Q2n0S|HCgy$tM#630VER2*~L^cgx}?K&6Z!j0u!sz^#RGDrIHF5 z!I3z#)b$RN$pR2s(5Ehubgp`dF?U49wR4hVE_f?)@g1-5l5|q67k1yr%{L!rQK&*g zFi9bMOGCRNZT1%*bt&`*aD}2Vz|E|$?JoQz4nspS$kz18Gu&PR@bQv(1LMSrDBvav z41i{T?3GqIHW?N;Szq(P9*hLNMPF5qX(^>OvoRin18Y zz>Pg>UFx^{mn8Cu01n7g-TasLa||T?Zdngnp(Xw!^1*{wwpSMj7+=9N9IXjx6$gB5 za(X%noz|{e^`UN{#wb$Bf(s3BM8tkTF%1e;9z7y8>eV9__=2<{S(G zgINm!3j(_$6nt=E_TAR90q=i^5z{V=xh*pfpfFE^xr9TR+S)?!Yg__k zoaHrwV`F0-1CaM;YxA6=7$%GbX10~#(SB&G+0|zz$HJ&TqYr#)V(sgvyQkv8A5q)= zbMT$uHri(+@U0Gi71Q2+sz6S@n!EV#3nQ*j-gBKtvqrtwugH|2Yk~w_kT(5tmlS6n zADkcC3Oh~%s&8Ku`LN*%hMlk>2nXL2mjY}DaI`0^XXT0&d6MowCNqnk!sz7$Y+kb* zRaMUd!*Gq)^gzo{donFGwc`FxHmAJ&`^g~DgIrZ@gi0YXUC;3A8^RSupj-n|W+FE%CGbWl#R$ z_mpPu#8LwVu+dJK&d+>rEKM;n3FS2Pm?B+?)SX@7T9TVveKIY1!3xiyK5Xq$$R1el znuH}zL+yU)gDL`*cWB4Iy@1MY|dKMiUArzOYFcTgFD8i>CRnsg)q6Sh6*NvtN|IZ}gcSY93# zOti$n5Fi(^i!ji_zZ4GqALtZ*HZ|^0uptDU3r-xLfFcphC}5mH1a<1_F2ji?SJTi? zGI^p}HLLQ4eX-7|!{`H+`8;T)jvBP_~<9^WfsSLlY^LZN{o}B%4 zS+HxvzTFb`ADhRTaq&6A<}(-1QdceC%45Kw0F0ufgV7R)0k*PIyYFhg^b>V$J6)5g zoc^v}l0DgI!-fs|T53HX+^^g1#OP}4O|E+%_xGLxXiM9gHG3?MA1@@AGa{P8dn~?2 z8k9>mNRA{BI`={H+t1fWAVp!^bqz0D9@JAswJ8}jPaaM0)J8HSC$r|N^r|+cQnW(U zp~uE*p&=esMx%xxJRBR5Zxz1@1KT!iSlRijIm7n4Fy4`FkpWeNY;q zM<6J`83J9}GWjt`apMB+2t05?pYg%Yi?-tSqY9%^8~mUfkUX;`dZulVk%)*33+I5qYPjxTpWtLRm9ZpuqP!CZ{-?BE5y(}$o5JpQWMF6@RnUrY5MCvHBL zazg5~CSW6A=~PB~dQ;1I15HT*od_1IM^+iQ*(GuA&AMu8e}R^DOuqF5Ckt&6J#`>` zR2GoU5}u>b@Md`+aPY8>17H>o&Z0Qzw-Kp7H`ks)?K3OQtgI5AOh1e!02ey7pj71> z>dzPBMUO$38o1dHRZ0;~r?hLYH9jTP(nyB%Wr=@_;tBS;o9Wjs@jG}QKz?u3HoOEd zW9vtTTSv6^?#){Zq~{)FI`E95z2me!7Ht<`k^5kphU4a7K#!L~4yQ0Zd;r$}K$M0@ zKPupX`EQ#3!T<(uYCz1@NxUr&vpq621Z|TpeR`BHKE}5 zL16^~7D%=6S9{3dRT@$Y5ze&BrYF4c&l(V(Z+3o7_qEBE+m1FDVSXRDV(@&FXvhlg zt%46*1srQg-^CdyE-r4w@+55xwjM~%b999|2=j>|Y>#c|>c5A}e&#HdQs7h{~^{$hRi;r)7 z=*MWZ9piy{7%`^N6U>tt4<_*B{!DZE znxNmMD$n}GxbueEz*}gU@i7QBgf|7FQU~9gX0X(exG}=gsqVz-L7}08`m2U>?#vk; z#8vybqJS`<4p)d~`uOBGarx@C9fml8j)=NsYT>k7S3rV;g2A>}&(uyX1|vgkQD?wU zWmlMnGlB_D>XR=i1jA4~Qun=$#)DST2bznZ1S3~vG{|N!P62bFkX$bikjqM8)w8{A zU;nci)gT0R)ryWJX2y-J)f*@y0xHb7)Ql=U+|VsAN3U^M39UcgOrU&aG#u2b1}b~V zX}PEp%~b1z&cJA}A?uYiPQQ`keo>40zDV6fqi%k%b}$~b>qnQlN{x+_O(X-$sygVX z*Us16y}OGY1kC8Ub-7858R83rRaFI3f9HUntz5;r!1=zN44SiQ#0As{uwO5#_#KkN zb$$7AGpzg?(RrjoCUu7n14NaLTBtT#WMN9`?;GU%U2cZQ3VP7u!t(PM+s* z`xg)nfwAabzy+BHzoWn2{HboZM^Cm;yaLVU!1fk;pTnT{ebL~M~n+y)dolL5r3KieU#pqaDs=R)AQ?q&8s;O7;+ z$7X2;N%KI%h{^^yaTv|4$3V2iyPl44YsKsH8mx3{3iXgTXE9E(rZ^>3W3H+sVZkx=b@Mq zD)m7mQum>B0j6#Gc8gG;2RKvv9X2MEMM26(=0pt6@gumOl6GH?11o55)!GB z0eeT+(C#Ks5pAIQ$U{O58Q0!6k@1o)FB@aJ!_bwIt6{#MXc$}$vZV%3bOxWsz>&4t z4WJeozt$Xd;P>L4p1q=Toa!7qj|r0}Pqv-tzIXrr!=EO0-#|M(Ibz~!yv{$<2fs@8 z=Xtw}g%zx5$O?;5K*>#|a1M|7&|gR~`!yAps1Z^QPt?nnRi6Rkc4Bl)SEF`?+P!Sc z1PcPZYcH=SvVwT-*Io?U|E?I);r>AT8mtDaV6aWAQo3MRZ+96bL?g)a9At)0AXkRz zeIKoQd1w9n=H2JanPW<~JYMC;%(Pv*cEvuK-nj*1b!5HDA9ZjnV~m%4D7o<-XyA{K z*?nx$PqHk4sZex>+t9E^EtD?ohERX!3cdAkG$S1Vl|W{$n8*{CL3QcvL-roeSZ6&d znstqgs(y^OGf9zaDW`J z8v*yf5rM1-sChW~>>@J?+n}JL07CzaOzP%U^`1Af_&IMsf4%|Qje;aVkGM$VJI}Wx zNEIXzPO);6CPW6I`~4y?3uSTcMWNn~Q8(QglDpd~vBEO7@0-8j89y{Z1jqpJ8i;KH z!vTBim(qCgGA2C@i2AuGcAB+6zWCfJ5gL|-$#0f>#W-cSxRf=aXF(Qmm}>zpEpP+P z^jm=G>mjwQUx($qw!4{1sk#-OnsLRuoRJ~<>m*V;_mS!@!kHE~XPg9U2#Bb2oc;0! zi9h>uJcbMI@BDz?$B3Y>4jktCu7aCfwkF-u9XB9I(c6~^aS{u5*FwX&oWjBfR_-1C zY(x}!w#F~?;k4q4p-W-P2NVQ8yqxXB<~M(?j}@>w7-5Dz1z^%+eg%$YwiuG<2X8u? z65b3Q80`v8zHDS)aun@leFqy2IY9oVbs~H{A^jKi7UYO>Uq(%;AuN&JNSqz7IgC$X zaUbQcJD0K&(00)~)rLXXpxPo} z=pWdt8^pf7vz@Ij&XrS>1ul~~{7#3OeW&jcWT zlmSB7I4|bNyR&t>B!gZugV^>jogtX~-f5a#0aMd2aP#8NOic>2KreIt&|B1lz+>Wa znu2@+0?L=z-UU<%4xPK`zDH3}(u4D3!7Q9QtQMpyit#q~PpUCF8z$@Zhs&KoNC$Bm zgWGQsHsl=W=vd{<;Ges03%V!6Hy5z{1zI_!D6>~|rU7@0OG;|`&`v1;c#bKGT81OjgN3xV$|quyowFrf(RG1;bYI zrPR!R8l!?C)em-y`H4e6Ck{aYpe(zSl`(cXaPVV#Y+T&vAUr5r>qQ6>f;!hzNpLpV zmq{NIV3XZY;EawSwC6m-HgBt&en-Ry`6nW`xSUG72o7z;4ID?b2T%MoC|987O2|*_WM|tv!7{ z+&hp<92zi4jt0}d+ma=@e0eS)c)mJIcEeIu`ogZ6#r`mh*R{AH1QIg@3njM0ur&$Q z-2H4bn8BG`^=Le#(8<#<&AWtCyC1qf)4fXqN!~3|H!@T;QXzHhXBh;SXYB`&)2Xu_J9 zZQF5%+ssddpgXmz$r_#=PsQHYA_!!yU|d*`ut*+N&E^MK6DXoE_xat_Dg|x?e^9nXVvOix-s6vrE zj$=O<7ZDp<5>*NQgxG_w?*mO~LXT*RY=8k4QZtLC@^f>IW!-^4F`K6?H({O~o?r|a zH;~FoYfC`&46l30LWg?uYpmbaSa&*A>?bS#`1p8DSz=%a$&6E?Tv0rqZq9SLg)a74%f#k5hXZeOmxe*0VQ5 zba)hwCa8y;e26!I;yVS?Kra=)*_}Zi!%i7Lu-};cG8rtZ*<$iAXT?5`@4y~Ri1t)- ze%`J+Cfu2&Wn>HviP+Xu8KfHmQt?KI=qnbtewYKQxBJj{VVfWxWC$U={bo*Zhh zR-5YRq@)t5-a9aoD=aKjin4eR9{%1MnA|+?_gR!N(Xhv9H@BK;oxK=0d$%e6TiQ2{&QSi zbIp!%bjUJvP^{fckSN&b!ppz+7++jVK1%N{poN&#@#oOzR zVMqH=Q??42?QPHZuW1hTw`_NI(-bZTQdHg5@74vWIJssze}9?@+F!nB(IFH30+LVe zt{dqLQ`T$G7+Qhy7U){f?z+~*+9}Y-y?y4)p7FhI^6kG1W2(Ef{(2hZdYFB(cH79D zU*-+mra0B1+-!m#qoO|MJ1dP0+7u)KVLEW&uOw8#>aEgzCV&w{RP|BNlED;kl1W27 z9wQ0E5Jj0m+}dBKJYpsk*+42Y0D&K^vumtv%gmw@!0b-@zDsa|$tFIJaZE)o$<(8> z(|{<%>cXF*$P8ffc^l-?4*6F{yVt%$Rcu}n)KXBjxrHclxM?mkohvXMsOd$r05R=T zozR&dhvyz=X$S1rePO>%(D4J$yD)*YPK?=}pG8~r+S(P0QHDo`#GMP0&GyNtubaC1 zQ)y~)NrJtj3Lki*dtUyhPf#|PIjyd60z*d%Oyi6sw6a6}ob>p}Td11MfU%voA)FT- z#`Y}p9}koRC5>P0H#VH)+Kaqhr6C7|{#Q1Raq!c!=DW%sX*CBSslxi2qk5|`pBWXT z9E5uxZI#ely$u17tOtq4{w$?L^~tlcX2mJe@_`yi@APZQ-I35uID1#_Lm#PWUV?2n zXwUfTX#FzAdCc#Nou+)?gBiN%z}Pc-vhPOA+DRD#(HS*u&NMj$c$Fb%byf$knP1k| zbpadE^rq-1gV8%$380`|HQDIA`KM4o*U(c0upjF$B;2O#)V( zq(ExAxOR`BVMVhvYQ))EzZ}@p$MA|n154otVqS8#U*`Cy;9Iw5XCx7xk2$Q5{ADcm z*#gAchy?CxC{BEHHp+C9m#;4bRb2y!8-%UFWQ2nnB_%o|a>hNeEI_{d;O?&3^K2jH zlSe#b z#0rGhCgW@V{uY9#pw?m7>677zSzB4-9;4+cI$r&9UN7e^ltP3;^_p#)mTtFciq5y8 zn$z5tu%`*NNyDzfuV3%jtNa}^nb8;^LBEOqTMP3%u&W-BDFjO6()bhp4U%$a3^7h2 z>JRR^T_5+Sucru00@#yG{x<2~jSd`mgwpUal5N&O%o`~2g0<3rw6(yiv5zNgC8+;y zJXdG-qN?Fz?(5RF-&pm_Ug77;;1Ch_lzir?y84DkMC&^U0dSAH2i3^pKijn7d<8## z-$8czb*kjyKm_D?l;1p3fw~dYF$hCsml+A<>#)i*(SY#^9 z_kpJrxfHgCN3d;q-~jDL0}7VY)UEX>RmbbIoL4EH`t4L+=JasGYf;;HxYis(K*D%g zSJOcD_5Se*Ag?&44mS*ASX=LqJ`mX83SJGtY5>~3?Z$jaxVDAI<_koVX3ZMb| zWylXqd899A;Haz>iVl4c6fBdQ<0T|TP%hk+vk4_Lt*=xO12!FiBB}3Ub7swYIL|WiMcs=e7JW8Q@%ZaNx3L9e zWq~;$F}5v)hbrJVLKIK@tYh#<2@PDX*oOhm=pcUe>L}e-2h0diCu|gUzggD2fuDb8 zKG^N9Z05~KzAv<8Y?KiwJmmr!{BK32z?=ciH?9l1eY@VybSKCcR>~U9&CR3b(_+_# zK!6@^zn&Upq%u6R`&Vum)E-k47oN^6P?24HZVDPeKtYJC2D-Z@EOwnJNN%u2X&(9z1mP!kPGHDdh zY_r_%%k_% zA7&RzrQTKL$l0t)ZB1<*xEgJ1`le2)2hiS^r@P(V(}n>9lerMLi-g-r_WY`}V<%1& z(eeQdAzB$(^6tHPq^%EY=ZV3DAwE=THx9%74ez3Mq9glpN_d7q1i-x5fS|jMaObC9F8d zb}nO839tQQOV#Ykv*=5hZZ#6TYXpX0UR&zB;z-B1`_5lr#-7?e4(6{bBc}@sM**gr za_qQ~vhN=4RKDV;Q)HmI#HnMsjT!Rq>WbO5W505P@I? z3xGN9nZ!jy#^fZI!DWk5b$?|~S{SHh$9K5znEQdYN)3U?KecDw=4i;!iMD`+zl6jn zf^1R4*r(FF(RAnala=uFI_g~(iIsMgM7ShA5Ab-} z^abazRH2xV5LIwEh^CzPaL49lF(tGz+zid!m}u7vZ)afO0GfjZs!8ydifIuPNF=PX zTQ_fZ$-9>1<<-PY{|X%%k9%Nf`tz4yUyPC0T|RCl-`vK&?$#=p;V)EFbbDU2Bcez= zte_!Ia{c-kPTgjs&31g7-6AuZp)zQ!uWu`r$z8M|?aY_cQ$7Suk=0PC?{yZge^s@u z8txZtGmPc%u~WOjQ+MLNlcAfq9)fQm*lo!y3`ddWNeBfcc#q%$1*)VQfLj+J?1d4x zgLbSDaR^kIojwpfg1b0$73_@4C5~oTN@bQWMkGyyOE0(_o$a5W>jA-Oxw;BhpipqP zNw7oJyhmh{gWvrl8HU1zNO{8de?e-vM%ICGLQ4h7qk=5Pz;bagLXd*1FU5txlW*oC z*tW@Opn$D(?buBeB#S36kE}C8N+j=9kciH<9~96-6ddj0@a7>63fZ2Xu))Yxd(jOt z*m94`@k6b{Jni)lLxnp~@`kG-%UCO&Xh~p=D3q?Ao#p9Wg4uaW{P-Abn&lRCL6ihK z%W}IH?kcCXGO%w_B_IzFh$WUEo^h~o21WB5I-t22HZDjvyTavq5Tl*#o8crG}xf>VQ^iDE@O(JpD+8tsF(sWO`Xj)q=dHiiv#8m_)glEY z>e&n5=cTt`S1TExftB5ew$>@pZ^oM8mwsq~!4TVAKfCrdK^IKcyg2uB*}7IOH*VgP4nApNVd2Jm%7xux zLlO-LS^?XFGk=3S>hPm#S$=o$7k)Uq&)ta&L6TAEO#r5lzZD`2vyaWad0Di<)KxG2 zRAkZ^Z4Z4#v4$I06;!w%rJ(YZi}Z|)`dI`0$2jn_C&z}Z20t+HX~IES(SoT^r@>mu z)vI?y>ug>>`+_HIkP9$yoY8W00T+=JaWi|rPwnxrrP(z^E8WSv5e+eNs`{@4;%NnY zX+Sx|FCuw1CS}^%U)?*kW-dYyz{4PeCj3#{oX4l+-bzVJ6ZLh!nHdP2$$-CT3lF#U zcF=jXfy71XSon4K_VzNoYgn?|f-}|yZr#Jq0_pv2+{>EjkJfwvcdw#o9vRW%)5d6a z@JqElb!cU{&kX_PDneh5f{-HG82!vWFHQ;#VnTVrwYOah zkZBELbNY>2xB8oxxz0UsPV%%RZXn#d#w(<;!u|HOj;ivniy`7!sW^CXd%iFR<;Zq=Nn*+H?|8rH`)`u(W6G)!_6%Y{&TaYeudbLH>?AA)BlMLxFkIW zdMDSc_y0()2C&2QPFKDDp3|hV41yduJk*B*leI{GVJz5oDNPK-`4^^D0dh8jEoGQo z6X%08o1eK^#&NU5oUx;Ww3c3l+z-#AmkTsYczsRC^`8~ES+_iN71l=>nfKJYG z%yke zi~0ryZXT}wP)jmMVWV6Y@=_UnXo2Z%v`!H4*G%^70C2QswX8{zq$xZmCGP~Heid80 zVrtuuS}&y=){aw_JFa-QxDejd1$9q$qy6Qy9j%Lt854&nihWvzA#On1i7d~vZhInP zr!#-?wyj&cl|BGR|i$>i#m6Z z_fLAb(IexZuD@zFvd!a=kc<$w1+IqsZ{NE0t;4DY~e50b(ZmHAiFM&sO41z?)0HRQF?J#Xoe&8#*0Pgb2)m>aFVjIEA z^cxXquzYc5+?e61>1jl1B0mZ^`t?_|U=&b@TQ3znvgK#wj>}W!aa7dJ3d^2StPM=$ zzET15D)w$UnEA`um@qTnWn~qhrcfyL_xB%2jmL8B-GtODmcm&b78)DsS0>w!^f{o! zZ|Sl-P606a{V^Dp!DPe@@5fax_xT0ZNo-qabVx^`!A@`4z4rp-q24>4$4ul`o z@G{20;Lt8A8Hb%wAgA74S(qum54*2PL#^(QJG>`28d?tv7qoFXXEc1Mleni8-Ozfm zcI;SY!lb;gN$~ndsZ4fe00k;efF=y!ya**fxh;=27V7FYJsa^pK0Q?>1rBFY9w;|N zi$s@CaI@j5cT1-Au($NKOZ|XPb$yUa%Sn%8Xa@5^-eQRkR*!ea3XhBw_FEr+|CMK7 zRJ*H|;GXMDxe!t%8Xc(wOdz~=@QF0Id&4aszZGN5)^ zT5MS}Q1NyC1GAq#(T{QlG2FF#VDg1P{owmD_x7&n#0ztr+=ZqWOn>)T?ZCU7hvD}cO85-};SXoC^)X`vL*Xxy%af}%iCDzI z@vR3VBo}`JrKW5VheJMD0N8wNpS|xx3?N?`yksl!*6vXnpcEc}Bh=_)PqhcvO6VVJ>PkLZx zX`i%F%>i-)_Z}mxZyLx}OsKFoNavjP_;Ks5vUZP*JJ;qc&V`2>_XeMjfY^hT$a?N@ zkc!bGmlm2mp83UaP4LFxEa~9j7uB~w_x(D6i$I1pG$$gaSL;b+r%vEO$>}n9bKt%V z%zF0pz$%8SzoNEd<2$f*6~)6)qZ6GNF7k78KV5&xk+w*EJRc+TXe=Kr8yW&Q6O9nV zEQ3JjAkpQUXJ6Wisc7nfD67ghAK$(EG4D@>xZDh4+C((K8&&6N0ofs%m^&?g7V6T+BZ(UdI-w3T=)`pV~s+G=Jn+IB8N<6Jt7!qm)Z#~Z@M{(IZhj)!FqUOm11FyV-x$TZk?)!gL0$LPZtRr6q~%1dcvEz$?`PIUDEUr`O}=90VSl;_jUQ2Yhd7 zoZGIAo=K3DxPeq)SjxwHHk#cij$a&A)pS`ZEn2l@_W~;nA6gE}V*D$@`UrANcWIEX z@A~SdI`k!qrRZGUERFW=t%?488<;0rt#0!m(1ak}%?wEmGykK4QYHZ4TVhP^JiHNB zGw3-s9*VGIXNz_s$T}lL-*02;jWi(pxSU&m(ermeKHi(26!g*nX1fk-AopZCR8E%EC#izdEpNHfxBYNZD{J<<`01rDZ?i%F^_D6n;T z#n`y<)hbMKQ}rH^rX5)5THVzX!g}$Y)`=Oewxg+RM&xj`a24uVbd}JVoG*706QCj| z5rVCvH>neKin6dEgxryc4We3H!D@0yItYOqxm3hrM-n5|k~r&zX{^Y|&c2|bXL z%G6PP54!li)i+Zxpc;Y@;6_0MU$2le+vNi!X*^1G#^5qrlLv%IGpGdxc+(XTYvtwT zJB>!VjEH256K03Ps3{$0sbsE?rYGmHi;=cq6q0TFh`SnkR$p=@?W(yGz(58D4pIo` zLCCw1DadS{bQFM|NfbZyO(s1LJAbkG^#(&baHy@Y*9zzL+D@)oqB3jb6XBvtS8$A6m&0$IS284z^$lv`n4~;eX zB%r+@T5%^WwmLIeg8am7G2dteY~Lf7jvbIB@x`FOajHk}+02TKKOa2L7x(exX^Sg9 z;%A4AIAZ|o_QK^l4qcIIto+z~#K_ty&%k1-r)vl3fte|XsSpin-0<*P;&Ix>t@=P~ z#l0t;N4O=j015zbRY;-hZQ+jHk)7lf1+Nz!mEyT-m$!u=J}Q<1M@Y47g$BmFNF0N3 zHJ??p)mbm6f!BcYl`+7(??>!@fXN)WWE=TFT1$((i~|@5wvsLL8pAI_cucuIax`{oG1MJYnhc}DnQVKc-*8q#^w3c1ck zX;kj2KrK!(x5Ea-wn$soZsJ3Sc5N+U=eaR(*RFz=*WW%q%pBe4y! zSoekL2pGek!hUGXA&wTjy6;n}Z`pwN2u(*5AopCrrfx0CpnwdOr4RWJOdVRL-1isx zAoZx#Vi`ms+|%Kv`MI)=#s!PL74pAciL9{XU|1WDL-QVeBGTLsJs*)}RrANyet{0U zC_?;>51GZ(Lmr14=Xvil0%ValIP?;A>BF+nPoO+Z;ff0H!G~`FJ7ox*6@GoaU+nA` zTw`DpM^9WNjF#}1eR73i+jEncF6T&S!O00C|DA;yvOQJ|tn_^+7Lr$=Cb$s`b})vU zJm~wv^VRFu4b*cmM+QyNI%3hZDlH(6rM=DAd1c|1wx0@3Y_ootHq>q4@M11NIs{7# z_&9JIgkjSbQh6be#U)4DkYUJ=b&jF!bx!pGFgel&+ttAteVWx(28f8nUs&6d%FBEH zBH`QUk_@ABkmdZbT_Epke=T5ZTCqe}nAi#kgQ!jAR2w@Wa3hk5G!v0^in8;1u<~fz z2V{9I@sM7AyuCJK$PJ)CrCX1ogETZKXOwhPzuO}G*5kDqhPMx4Ou+%mIU3e9j>nA* z4Wq!UU?*tq+)3-jE3}niF|dzzsv5d)Gf1%123R#P0Ho->TdED_Sv0R!Vr`t6DLawfrY*oMV?08P9M-g89|`Rgw}F6Cj`6dj%w}eti`E>G4e(7 z@9Vkn3PT%+E7WO&Ml_H^I77d;Odwx4tV#k2JoSrv$TirY!d6NPYzIxhlce4uT?nbc zQT|G(g`=9l$THGss8JW;Cm%Ix7kOaf$=?)HgdOFfi9)careb2u6vladxLQi2_5NXq zMJRX?gt$JjmV~q0|NN&u4z@f><5szV1K1ZCTdZd|?K(NIjSg(^MfW3~wum2wJv6kp zWE4*d3>dxq&E{^zybxovo=4_bAVC_36#(+8o1}!U5S5XHFy6itvU*H&@ z4<~m#ei-^okbVc(T^!(=JCq=ag2;Jvxw>XvH**Gmv*{P8X1Q@ zUkm;N(PIos1cduIQ1+gTKfOpeb7H+e!M0d>rv3bl1=t%1E!$o2h?p6E#8;M`4}Xzv z{asIhjRF^L&EG&i%;L9F^HNLg5Esxd+yL*s?kUe-ZAZEIM3oed*xcC_>fYRg{bi&X zEjAi%pF@H?AS%loOVo*O6`k}=sKR4p2>H(Uf$y>lw2|9X`W3!@1)7z9Fi%@L_#3IH zMl5N(fMH5H{aDs)mRd_6cZ-{kG%t0@6a$RMUqN-m>qx*YUG!^Z|fQS@*ZI&NTrdM zX&O)u0ED)0yi8U2pUVK}{VL310Dm7rpxEGF!O5}HiI5WHYq=oC4Pw@uhb7p!#5+<9+BmO918V zaVP}RH9cshoEEVEjf2b8uqBoH`!OA3#b7q1Llpv90tll^22s7%G4s`{dJK;WFf`m) z-S@#HhF%n$otwan-HU-7;wDPTZ_#^7u&2Qs=p86D_I~EK!U*fLgoP0q911UON*l&k zCTIsCsIiBA7MS8qd@FKCArn|E#2hLobye@@$*ckF6b-a1)}uYwobQ>qv0W9d?z&`h z01#eGjc6K}yXGEE{>Mjm;YV*io%zdxtuPIvw~$bV&5?>CVJ5~JA79#<7_yb+tNfV# zYy3YBu_ctS1_BJ4yYhD79M1J;&(?Xzqd4uZ%dC!ebqR;`eHBU^Xf{!@Yf{UW5}I+gCR2I%X%Oh!-Y6!N#43+7TV&IIK3-g&1tr)C z)pD}77uCNee#s&Iy+m1%L5V5k4w4vBwLE1pXbx!hBa@ z0Sbg2my$N8F~&c|tcrXo$YunvBS0N`3m}*wHsY?#`Vh9*>{yx(e_XB9Oz&yAMzBIT zHRnN7EUc#R_U)=G`kX}dMgw?r%#7)v=ub*kc*;mR88 zM+kU$zGIxnV1>;-RLX^lq1b=$e*7=cG2UG@(Ui~wnI!t&%hxP~Cs0w?IkgaayPTNnP^6Ao^qK`=c2s-3UF!Rn__<$>(cgcwh)AXy zSp4*G^|EDQMzh|+G(({j6C9?v#`sHX%YSjK`9FUi8%4wYd~W#paad0w8&NFXc6ELU z>nRVIbpPky`RV_uzp3ISiQx|{0UGm^U~oOWYGw7mTCH<=G8#nEF8}pcgKpe=I0M1T z#=D!)8V57(e|041;_7^agN(ysSPBew@!1!-bx%RctIg9vkj4>nXGvcBUw)N{9m{!z z8pd*NB4K!y2)>Q^CTj$3K~JII_pe(7@cZ5x^qzw1#!bYOv=6fL4NGyhq#gmSi=i-?%3l|r&WHlYkz*tG^RwMR3o)|9+#(eZJc=f$;;O4CPvq@0{mWQ z#ciPdPMI%TJzRNwLlZ>9%{E;h_WZt^!Fb0?NlDlY_Z(A(%v4Zk443CJM#Lh~%n5D6 zY30~i03@l|!3f-KBx3uC=CmO+zRa?K(2JxGo@+1sYBE8mVvPWl_j|zfc;Gw74#NgS zRD_Zy#C57yI75UQkgXp06;RWnxVV*f>_(pBvp2iZ4S>z8+KqgxI)|lw-TUy^&PbQu zbr^KhI#*(rP`ycmp;)s5h3*K{x>(%=bNkPh^I-Krr4RataV{l8+kSsw!SR@_xnX?a zR*9*k*~suvX}U)`XBg?A5pbMveLJploVh@?Aonn!lL&Yis~ezMAz>*ZtxfQv2&& z6MT<1JaA~;og?^bwBab9YK8Qg%!U>EHT+d!sf%hQ$Bm1te(FDOB+8{oT@91`n`jJ) zQU{c~5iTg&2+H^vit)QaK>(Jf4N5iEaR@{@(k-;!hFTVt#*||nb*UKG5JVjMGDG*A)r{`5bvta$G{qaA%pltu1se7}4$4iO>ee7*)`=M9!pOCVDu^rE1GYiZ_mA zgQsl=<5@y{`jLo-uC4`r1dc)mG{OaZ4_mLrF(s=)ejGXP0!aJrdQ**D=46GFuD@`` zMn9s!D$*4SDf0wv<(RrMaYtNKKV>k!;fx?-3^ z$5jp&f|dgN1f>B{tZRJfbm--ealbru`Wuxe=vJL$QNo=+wB#P5pX~12A5B325yu#P z=*fXqE!#2R#vwr!hF|r-ch)Shae=WUFS6Xeo%lGIs1;)30kII`qgP+a>Hj)n^jkcQ zm#aKLft*uqC70wt15EMf($x7S22 zkNr@?`2DBhpG-*i0D+L!;Nk1L@vgdb@gmB8G4Kuk&W`#p0Nwwmu8`~h@_ESdC!(k{ z;sk&#%*ZethC;jT_o(>y2ZIQcq860dKCl1y=cVIi;F1oIyAdQs2yOKKTuL@=`Yqm! z{*2|ImZMLsVQky7=6`vfT-X0~Q3@B=^A-P|ZMXuke&XLA&;QFm@N#|&j<|CxX*-aA z$e|Q{D(n)ez$Ak=JVb=~7sl7JzV5^E#W^Od+Q8swoPLEj>TdY2HDVgK2V?UpImkmI zQ1T;*oM@554nz8JD6H=6T8gbviZ_;pAtfz~VqySeP7kx-gc%P``{fKtxvN zw?`xZDiOEwHCY&9F+ktR4#!dIuS({1Hk5lZ&=?H zOTXDn9=9*GRmN7A|Mt;UM!;*lUdR#rZyO_)3> zQ{t>ZVBd6ShDw$7?+-S3WHbU98@rB+JTup}T{;ZSE0!Ui-5~idzhsTAl#~?ha)Lo1 zIucO-k@J-jFd_n502shE?CrpjhYjKpseV@NH(Pma0|Vg2UxKoZZy2b^0YCpvCYD{x z$t6|g%;H)!4ofx!U!gQ4k{QdbX2JmiM$yD>@}Hy9`rF49gnZ!BJ(_!4Fmb=~j@e#V z3>zrqM$QRTVvhi_4+M_N6~K4kq-8r{uz*SvVGMt9PJlyW0)@NoFyu%9Go=hwOSLvDK0Cg)}BkC0paWU zf^RG9Z{R|F|NcGrgB}`$4vnQ_BR$_f|L^lrzX^v1UA)=!}hINfQ_$?Vt-55V=VKxI$7oFh} zBnb?D?|j^Hi;K@a;2oE-z~t>W<&12Eu51HNqI|4_r(Q9e|Gy5ZsydeE`n|si`Aa{b zEQNTY_7T<%WXJvE;dOTaeSIHxN1KdS&dBhiy{4$jDp^ik#%o3+KK2NNhm(VMYPZ*7 zV=B$iwFG~h9PIF0gyM695(5ppNHaQ*CWp3s(A0!j&FD#|)GKfan2kP9vL<7?LFqrC zG^OUzqw&E#|MGKaHdO}A=DfBf9Cw9MWG!I0JW6x8woD%lVR#@Q7s7+n-rj!Cw^eXM zg*kmn_p~QGi^kObypsUW!}A_1Hnz}W08xxb-Wz2p%FXRAQ1v1AtJLv$?og%s_}E(O zPRIYxJ?V6c*meh;nlE3zcxLb4yLaJ*jG8==`fJO$wk)ELH37H`f+#K}cF3v9O*0==E{a>8j$wwDF!xswqcznZ3!lG@s zRUXiKv$NM&!8FSw8vHs_V7dS!{?|t$sa2DOtcB^#rw~OfL_!-Lj2|RMTe8k#;CG$V zZOj|!>cvKh2tAW%tP^*q$nQ@!$3Xf$kTQ_(#@hyg@d>StbL{w#mrLb&2-DIS;b4A~tC) z%mmo-@ZnbQbdbG}RcU`+qTj4FX*{C{B>?xN;16VG(YUdy@9Oqs%!}c3cxK%)fxpOs zxgO37l9ez#STYL73=L0ek35!%|o5-gU<3MJ#$qMi0)Qt=K`O z+7plS*$-qoj4XJ`z=PZ&z+78aofDOgLV=p-cDdb4egD4ir*~jcL?q_=q{gvkIp$d))sWQE`A-ScFJh_y_Pu}tW92&GP|E`WD8ST&y6W4Nwg z#WDT!4|KjwMkD(FA6s7n&E>kj{Zo`sQHG33G>AwjLIXky$($*K3?Y%36eUSCNJ5AV znaVtd3YkNugoHAsWGKmZJ)Qsg*4drYI%}P?*WRa{_kExHx$kSbm!|hGZ7%MeY;h2a z{7w`rKWo)}_%2n5_Wy`aNFX2JXL5px$c;o;^YoNJ&qUx`67EH|W-O0+R!(Y^KWElA z2?x;;YQC2w104>#ALF5zlm6EeY_CIbDQWH=I(s9mmB${cBK)F?UP3*ePw?qP5fTJr^;4DiC>)v(|7Ydl3qtD$#u>ECAIv)^2V2$x zJ@v8t*aOn?iy4Qz5X*~OK6Dn=zs!#A<3Sfsea`x3Mq z3jWnRo=2hF@W~JQuV;B#9v3R96gT7U#+afQgOTenCaPD>&jYqio&~g<`+5C>T8Whn z@*~;qOH5b4YoEF`CBW#8PvtxSC~$j`4Z}Ov{!0<^RdfRbZWlaB1nC&@U`lf>F0I?V zY12TCPcL@R@jk(&bDr#kW-z|rU`fseEJbF@9WGcpZcS1#KLl+pnT@!6_fLt>KO0RN zlrkQZgIiSyH&ZjR+A^8`D)s(f18cowBGgzW|2`(v2x^Tg1HBFb(o5SibFk%A2 zB$`yBdiXP7Z^i8lwHJYEq3a+r5!}SRrv%{${l5fmm~8MTizfk(H(6{cjK&yaJ%0Zf zDb?v*-mJZCdD#15XjbtJ(ajrDeqyW{1-lPA*|~Xy#7K%mTK}+VeGuAM+9)W^K3&_9 zF~#ZV@hR>KqQlq%9JQCe!4^#Rj}Ut>e&pM?tudsL#v2l6rncO9I%&eO*XhPW#wj~ zD?l1Jre6>4&48PU9sqp^04|Ksn{ajD5kTN)1p}Cq!x%m*aDqf7gF1tEa1n|u|Jh%Z z%dzb?6V6ivuSVCl_RTfFnxP$Dkx@~c&F&atw2}AR5_9JcCTHg6LJGt6cAM2IQ<~E5 zRd-rRdv>Y?+#WRZ$01db%SRK@@-qc1zA6981z5gThOtuHr^(E{FT{rtU% zWQCGNHMkf&4;rcdN9PI95Gga9Iqnx7(N-0q8F|;22^LzUWXk`~esmHlZ7R~RFQ!f%y*k7=$(nEg763-A$Mvm!ttLL zYm!ZU#`^>_W{S!WO8b9?HN8F)?E@LicIeX-c6^(JtLP0xY00`vv84-ZLQ`Kat^6HR zZ=tD@$xnStW8IMhyy9VeS2a&lDQ0Jl#Xr3^Z=}EA0Gq6faPZ_Z*DPMeg9oLzm0miq zOodiplkBE|HkIhezK!l;>xSQNkKA`*OYOppj2!*QJI}^VTO;?~g8lr**NmC3ir{4~rPdmF%y5At51Q$bciPb(^rTBK)q$ zi)ELEnXyQ+m+_xdLvzBG?w8hX^A)2oA9$SaUU!ZJz+8HM)G<+N=M7^DlZzZQ%o3cI zqdoZ|q)&;|vFJu`b9VN#A%eRZ5dUHs@#Cex8ePCLp!3;v50Zv+t&)Rl!k{0T0vkg` zF*GvzivDXYRxesM?bx<0Ywiv8*Z=XeBjh3kvZA0BA`m%-DDk)}JnbI}0X=a8KJGZk ziw}FFPU$_fTusp5A0-MFrBDGFmU*$G>voN*YHw#blBk&#N+tTECcDFeU21vQA?NLP zjwIX^XOh~VsCh<`ez*HKixnabrbDWH;dc%vRG5d#Zqd8;>oA%yE?kV8HzJlccqNY; zrO#&}{nIWS3cUiyO=U~JJ!?nU=%rC?)*d`~FuZ9cg-yg*0VAgA#^pL~$B}@t0V4** z4~^22yqA~EcMnI!hSFPROUmv+Uyh)ffi(}8(2Opgy zqfVq~buY46E8LjEr|lSFWtf;;SPL4^|^BLT##y;0inh z!G&ob5EK6BvBNkCEOr~ktr?5Xe>Tf^58{f;&St`zot%L$*a1RSQd+v&chB5yA?yVI z(M`_bKYnS}G&V}Imw+^{fEdZb=tTb6UQuL+wEPB~Mdq&oSgJ%sxJowoPyAI9**xzNLp1AiK@u}CoIgtS`_w7yOf%O{})7G zSds$)Ad8oC4+-~Tn?PVr4}a9iVS{v55bx{8Ii=4h8x8ZHdlV}7lNK%~%Kb~h7}R{z ze5@G$S4p#LZ*KNOlkgDPkXd~%U($d8c2d4m=(G4U4xd8&A_QuCFHAnTzJqV{U1RKi zkxm{C4x5M{8HR;?osE=xi?yX47BLSlD#xWhJCe8#3rxeC6cuKzc6!y0rJlxaQN2^A zHWBT&f}-N7_a*KmgyUvJ#8wZld`^ch3Q?|Jzkb^*W2_@{5QddM=XZS3%VOWZ&u?5D6)?-g6A<2CI+7TUJ*MGT zQa+r4N0^q5F5F3Cg3W|VfTXj_OxN#DPE8fdLH9(D0eRog*@@u(epB4Ed_bk(LxNG4 zUYz4t+Ac^*ufPox=g?P194DeM6&5bBE4V(x4x!*1V?Ftq(YkLWiKa}k8m%VHGpnXN zw|CI#vjDqJPDwdvZoV0E5(H3Pgq`BrZ!^`jb~8kyZVj$OYiU}4?sGRlm>La_;x;oKA!&u!YWWd#)#l}3t|= zXkJ?~P4)*bH7GQGAXD8y5mc}0^gbK+33}CbtoTPk#a}!ni#mUSw~Ajpd-m)G>;SpG zLyVP+>pIAs52#@Ni@;luRP%;Nw33$j>HkevPJdE)e@cjiNLXZZtfNeXnwf({6n}fh6i%VAS*|VoO zJyv-QMp9BJJRgLHu9cCIvCs>f0g5Ih-Pk7b=q!wO{!ldLoRLLW>3=Hu=1s}$Oi0{KvV+eDDgU>N*|TcU_XZ_ks_{p)(awA>d@V6Wk8DY78ANm6C~#U zyHw4_cZ@Z>-z;YOoZ{x;@j8dk3AJS1YR~}Cw1?fj8wgb}yRKqe;Z^P4XSxzHg{i;7 zb`{RuuU9>GOhRy;=K0Q3o%m?z@}7-uKfb^}d;h(Ehj!gpI_m_C$VX#j*zre#LI>CB z4xJ|l;4$lRE-fwH1w0Odo#iBt`ndJM%#J}Qt(CA44-4375!h4wi}UJ7(^RwW5TVt3 zr4LzKCo5JP6*y9%TCxTtA#;#iplE56+ikFJ@Of3$a@>$p-@jkJa%JVa-rj-HQJg-i zQscGJYFD7Vvli!oeDon)7gHv%J}9zCuUyS>89no%IF08G4e9M(!b@p7X>pn<49=4H zXc2!PYE`!+$V_)MO0pq7b9LA=uqTyh)mHoZ;tTE{9Ng^oq;M+HI8zDT`=gCJ|HmaT z8;(PR!yYA*bm7Z;vGi9tetr~c8k)!_-Oj+K0!4zxm7lCjEETlGV#~ew3Kx;f$BYUP z=(!uaK^!N#B_8a%pf)v+Y(aBa1JGt(#8`rE1MStt&Q85;%yhS$jf&2%!p9!CpoYZv zn~{-0$eyeigzhC6IsSN~9FvgqXxwaAI?MNTW1vW4)l}l@90Ot48qd-iV{0KD zG8qDKy=o8QPj?CvqZ@39*;pWx@Ea}%8YlsuqxWl0RAp0ntHz%X)Fb$Y^YBz+qAmWF zhcIU-3cOvue7W%NZe@}URgFer=R%1>qZz7Z;Mzx|K=D9R(PEDGR)0fRLxcCs|0<*w zB1wWO%lr(|^FICFQ;1uw)nZ;uL}V?V$fxeywCibnqcR^EU%}FRE1&9$z}r&b7J7DT8yQ(0ymRPB12mDnrPJ zu3~lKpsKurJqVl-*d1DY0!P!UrcQH0JjdzJS?V$Kbh}&Ep+wCAguOlYqgt+^t83M^ z1X9fm0>FC!zK%^ZN*w~WtXM7O>C&;&s7Q~w>`6w(-BS_@ZLCPOkbxG8ilQz%!wg{K zD9=V#))jxwuZRajRm9&nZW|By`$K8%_hq(V16NYJ-WEZ@*WqpqawR%xv*( zL!ijSZ zdi?5M&*Z{2Oa_qrHB}Mzh&v4d2uDQ$f3XWAy-Kw&w!#g3;46`UxDwFWl}FQI*(en< zh(xDlV0eM%ku<39kU(`cG*k)wY8E!IeL63#LZUgVfK&wI0($2?*LyW2+mM2 zyt=^Z9Ad7MaDx#fcIQzNdF}(q591$sz<0*=YXfPlNMk5qMYY zgBlcpN`>K*S5%Y{uuJ|}Zf6?@{BP*W=!zTV|9TGm5#Ujtk^XC4mfbO2skcrEC`7B0 ze!W=s5GMvK(hb>MaCVkQg8s+pgnczF-JYR~ayFv+Vx3vWSd zitpC^#Z@LZJQJrM-%hK%!bQIiwqM@vaptl3)po}9Pzjg9+npgcT!^yuNkhZOV? zVqCruAztT@c%5XUhl5m!%mV5K(yBke;MrilFN!RqyfH>QP=|oLN-Pm-Oxwg~3pK(Z zrnP;3!+zgkrhD@9^!38WxFxrTpnX3YE60s37aWich+>Z!@}HSOohz%V${QQ=K=gcO zukkh8uMOv=xzX{rrM_`PH%3ST1hO2F{IBP=8L^O2vajmuRB^(p!zB<-^*U=^e51S& z13L=~4IA5MbK0cJ2n!S3&-kK3Q84I@bD zSs2LBgjWwseY$`_3a}9`>1lEeLLk~$5hZC~2|?oOYBzWH0kXo}#rWVsDtKOBN;Y8C zrytI2q>Lqq1bdDib{EXq6%`ehp%8$d>vqge9H>Ko+wCr(V3CfUBDGUmNeGzj2lA3T z>ZMbbQ;vFFA0x|&;SHD2DBfI)*O0*5C6Wz;~M zYRB_;hpm*wuaMCC*+MVKCC4DW%X|YPU&^N$4<(U`?TEvr&Fk5bQ!$lDN-Osrfwg;i z-JR5vcOy?#ysN3hbu5Le)Ni(?ZI7A0K082vQ8brP!=K)!N7eoYk4&!iBs?B~n#%~_ zQczIP56IvEJhR<2|73h$GS*=$cLg0(Z_K_pM5IeOnb@{HV8r2GW3`f(qj$4o1Ejp;5<-=%7H5Ods)W{1bn?f^20)5C)gm&ou}plbj4#Z}we+iMq~9CCO$usI-N>>-EEXE&@}yOv$& z&|7@>%Eyi=o;|x0S2?M)VL+G8=$>$d`|RymLgIF+?wdoLGwb(~Ou z2nQdxl0PGA)CP?CT?_|L?(H$IQ_1YuynXvB+%Vg=ZSy;vaIv^}AKas)3?dyW$j9hO zq#b)i$FrlzjRzqiJJpiWYBE=0$` zz-F2Yc-oeQXV0G5$6UG(oe(uN;Z&4g3w=wht34@0l@G7tT{rk60sQFH> zuC}(zfTuB;=A4O+?nR)^SJ*bGC}cyz{SsDsS^ezv4zo>Q8JX-NJ}j60yO1Whqj&Z{ zZ6>rz`gM9z(yQ@Z+ycxUOwj+DA)1%GpZ-NTz;N4ygcJZv;6-FX#PoflhYf{Y)HCz0 z7LdW6h6R4;7vmwan7W5Li|4)x9WAhw&OCcgkGaVZbP|R;RvcK%iA-8x)# zxYgD`DVS@MnVznwrnUyyuH(<|XD|n?M%8d=$+4EGBVbX z=(dNgpG6U=0Qjc!%QAeQenuos+{7G#daMTP*V0B)!`-#Sb-(#)wKeB^}YSR zauicIVX?e}?I;hX9+A%XcX409jde37W@qOG6!9(@x&QhcXjZP=jKzN+cTGrmv2$?= zRUN5eE;SBCCSX6Fclx0S^mgczd0G#AjHw_tA{$js**9c<|G2=szoLUA7V)gH?m7;pe1BWM8cu3ar> z$8sJ6v~I|li`UiGjzfG<_|$1trD9`r+3zp`R4UZeVOJ!wbM6H{7fw5Jzwyr1Gjr%u#^kt;Z z;Mp!iJ`m%t#YODi$VOKnPsNT}SbtxF9_n(|^a}PlgEcsxkdo}9i2KGeaP4KpVV;_r zIsi-9K+F`1j~9$KWWwyxV)+W;So$F!VH_0#8Ie6ldA`akD`htU`AUtTIMxa0*F3#( zBM@c84XkB0x-&f14KpM+KK!<+g!XDCKhq!QpS}m|>-6=5;ic_DBRx}qjSe71-~}eyqdZn;0#u|>8aM6OQ8(^HOs<$7oY6vMBX=Fa z|J2Y6q1|!*9&Qn*CD@W{tNVSjmlN~25^4Zl-$J`P zK#SUjKKoWR^@D?IlnCgnWXhZ-me-UlS?ASRM42I-R0k1;2Mm0)(Ae1~eJMzQ{# zf3_!Ybw{R2HIixsOdglwid>D)7*FC7($q|OcR@TSdX<}pXAOYlTZ5RMTW%1(1Ytzp5C5&dd4v`EmON1?fQcrVGCRjqowj><>&%o^3aT2#te)d@Q^znt29qB0snM=oTa8X@3TlTzJc8!28DK9Jm~F2D>@yCR!U%qB_DVp2 zikP}pQj7Hz+TdjrEKLi-X0rBiDJ->MwOdO^XEQBLb^}>hT7E#+ziZSv@3EiqK+x70 zQO+{BazN3s0CD7NO|5_SXf!b`ZO3oKS=456h*`niIS(xhcPT^HnOp-%FL?p$V#j-V z7M7(biPXj!yAQEciJT;TEd!P(HJIyjl<|)dZUCbhH3bmpO58h=o;UPnoVN2E&4!|) z!ZlGd2=Be;e-t;YJ-9EsW&eH?G{G6Ta_xq&52L6yhhyCvT%))Z@&(WBLdxRNd!iL~ zi3fFcb;*5z(Jye}0wG9^OFi_ti*^a1bpX7o2(&Ry81oXjy}B0s06U1nc7x&RahnAt{1wwOx{uohNT!4ea<>-9Q z{aXv5=wK#vO3>@`&`!60A#l8)Px^+FJB;#mG;T908C|Tpo z4s+y^_@s>4|J*n^ky*DZMbB6B*-6k!RQJ^Qw;UdGBhYOG~$#1|1i9MXIM(mb8Le- z)>_idJpqjh$Fg0Rr7d^l7#vA!|A4-}68_qgG$MGLUy(YaukCjlv6DDoXWH`+S{q!Z z)N>0D5$!Aofwqd78Q0NYLs|ENvnQ~B2ni3!fd5rtG4)gtO>m1XV6Ht{BDoRx@y(Do zmhK-xXiX&RblGHps7B(ps1~&hHeaSW8GyLdep>JU&eL8UgAdtXKqc-Q0&l+XPY!1QXTu_X?^5 z_^FvDIKh^h>U*BRd=UsS91w7 zv()ho2ayaBvGl|INrS)emCqEkw zV|da29^nR=`?E84e~*h+Zyu{}B%5+_%Fz`9yTZQA^yh%M0@02? zB5RYB%c#~9!$QsP@896|4Xz%&iVvd|SO($5q48bD5%Q{~E*tNJ@UaR?N`tr&0*|!s zig!s$HD30{c)xVijj!BqD!@XS2hf8{0pd4XtY3ozojbT zfb$GNbU-Jy)(42JWZ2L=dFT*#E#Bct?Jy3kj&EQ13K#4q*k`n(G#INnFjXK!?$+@s z%@i$?@L|8RY&XURaM z`Xu1tn|OJjkA6Lh&4{l;_y4wT!|s!-p#0Nbae%NyzGg6-Ull&vt9GCJl3R+gfLB0( zhC*0T6!R#VGAI+XO0i)u^TbdE3hiCGwo^YoD0uRZ8O zjUI`r`4=^ZYULB0n0b8hGz&y#i-D}GWDB`uV`K`oPlDUC=lNGPfX;ABXl+dmX{JF6 zq$j>B+yF9Br&h`S&rCqfu`;08`ko9)DDOwxwK#!TP|Eusz-2%J(><%9i*DMS|&Y(5i!&!;U zxO+#_;-b*Nu?LtBe)#Z&V>4ixZEmY5Af>X;*n?JL6)M?By<0p_PeAj;bgtr=Gut6zSe~xalPZg50&rG- z`(R4DP0PXnCgEd!<$G>9XHJ~Kqo+`S&A{PT`7s;gO!_r}T(sjCGcz;WozbNQ4Ksn@ zNax8+=*R1ep18=${khL}^wbKN#iypHZ#nGZX4qjO9S3QHNsa@yi)f^^>x5XP9*GcG zkwl6 z63aMpuW)Jz+ekrI3bfi>t+`Fq=>@J69Dc(#*Dwd(v9kjho{QQ}d5)TV_PFCY@Na;X z{Jn{5*4{W&Z(eNIuCR@He*sg;RqRsd_=$3&+jpRnhT!&M8OnOFOVs{GkjZ9IQH`Yb z<_0x13Zq|er;Rp0>YR%co;w`_+oLE0J9=?+*!k}7Si!;{j%&prACCs7cO@rA8YiFv z31}C$pZSy-kn->XV(A_;(`0X+KDbkDdqP4f*$-@NN9r-W`vr|)!1%-vV zXX>M%PAEyD#fDNq*lY>h;+|(&4=j$6-}v<>xq2_A~b| zdd`D*R9x_!89hC7Z$ck(t$~oAAT4ZLq!5yH$FvxO{xOG92Ul}OainaIbB4?wjnn8y zP+29QCB;yzHe647b#~p;Ptd!8vu2!_o1J}y*-mKi+EwMFnwskf7C~v)SO8OluZpx> zRm7XxrY0pt~0>Tnt)b2 zei_@W1=_+7AN(PqKJlu(IfMwpDA~f`u|vA?P8@Ny<((SzcNLV*cRm_@n?(5d`}!E3$p zJ5ReEo-ECa;FRyj4k&R?FVquL&rlv&JA-Nnpsr`6M9&OR-rbrN=I2*gUrxV!Dx{RNgmF0j)P_Qc8)$&0$1egdPf}#* zxmxoZigIf=zILddf>4H3s`tzVe+1Bq2dFA-rF42CckjM^oLD``HeS5+d%^y``*!A0aq8_(FRO)b7miiDLuq#b}H=o z^8-<7x32|=B&K@l;^Q^o{ft=HtTT4m9dc5Y5fj1>ohRQ(Q5xFMH5jc2IIK{fhs4eN zGu%Y_6A=+H@CBkDfF@aI>SwQc9^x;@fOBgR0%x)GN9JbpZ-Pqjg9g$!G{|A8mSp)w zuHBXlB;u^13^0=!ZhL!<{8CN9JM$3HWPANM7aSA#6j7o8!Ykxdmu-HFMRStB+#$dS zzcKLyn*#)YQnLfhLR`q}lK8hr8}_3s5Hc*#c-77rb`POWtjNz@MtSEkmaYfo^hf7= zXwp`&y1*~6s^3}79;xq`|AQ`IuS7Y$;y8oq1yYRcV_?*z*I%I0& zqpseh<{X>&3`wVqb`FK1b(;8*=aFpd4+-cgqLd+C6v_Q=OK3%F>gv{yM`2@1)GKBT z--nlhwSTx)?-1L1_uS~66GwG4Zq4jee(*D&~BmwOs8Up^@*b|NbE#sv!KKkHN6 z&@5EP{3Kj|Z$WW!T>(c?q@L&`3iZ^tZ@CY zM!P>-4Im%G&2y|H#PJAM?U%cx0|Z3T%$W4rHe69nMBTo@@ZTO#=Xi z4twLaS5{Fu*jMI#+Js~%P{%4Srx0PtF30`@k-8T3U9;geOvcy`rlanT<)jB;u#taT z`8wi_ZQ&Z)unz_ZB0l|bc$jV$3bOaZU+pV8-2R%ap6&q{@(y<`D1#`|CCn$>>vSMw zVN2)Rz{(nkTfDA>uP8Ewu?NWS%?A&N1`caxI3U^6NE!F+`3X?3xw)CQ(@JGV!uD!_ zNWh``i6FfVZ;ThVVo{SyOCkUA|6@~B#W9}vrd`|}?&rrj>ss_<>M_RPAQvp-w(3n8b7#&BK@ zdH`sQTLN%cBBNZR$C69%K5J+KdbfW5v&e30h^TJ47Y>_veWk%*5sIwYa-w&hkPMZ; z(I7dh!Dae;a@Wq1rE3+lkZhD7sPWs*!+yIb1;XCp)0jeM)znfaYC5m!fo^mC#Gku> z$K=VV0EIj~$uaK>OJ={VpYlw$x#@`#*;rb^$Rt^Llw9^&*^Tk-VD|!M8B1`4v zhg~Jn6mO9?z}K|bv7bV`IY`~xH;+9C*{CmYqY!=}JR=c8VIbga<0sPEEz>gfRfW8^ zYil1;Vxo8GOf$QiGL@MAqA~(4i)5$~4hIG_`q_XhS2l0kR+IGgW!X-%%vR0DmiMU% z80Aj^8eyd|MvJ?H)Qg@}>3CrS|I5&}y;)p$zgj<2G1^J}f&2bsXDky0^*WU}(cNUe zN;(|FV6wyBdkrjS`WQnqr zumcSCn0*b>-wr>nQUMW|Y0S4=2_>;UZV36vS^y>MvD(AYKw4b=12))Q}M-qm!? zg)6IpXchM|bw>`Sy^q;#DdHUff1t3yUUoaCGuI6hV)!qsvn^I1&> z|LSjRm|)_$h!}(fJSlBYdwb!X#wFW+$lgjq_Yt%r3c8|8&CMEJZ{I)&WCr^Y0lgvB znu75tFKyIu7Bp`&FbV#xTcc!=alyA|4;vmR<-U9l8tf_{0Q_A|@T5W6K|6~Ro~b>w z`(z|tmof|MIcD7B|GHKDHyP#{*iU-_oB-10@2z>69>fz>wA$9r4nQkWug==oi2Zu- zPI{lws|7YZ0{8lJNEUu{6_5?hTVB=t`hWi4wTxJ7x7@WI&*kAuwNjfJEk@?XF zdzk^!&~;>uMS>2oTeI;%gPa;MnyA342J=$ z2}CAfx_9(Vkrlk^nqzz1v+vf8yp3%>IMnQdC3I&TSVE#%sv_2$gFsUT7XqOFKYR(U zVJ-rIC_6t@y3I#~hr7Ksiyc|J#V~!;t8xVTdvhoVfQ4L3#A-4J+KY9MVI7wsbjiA{65s#h6*CzXAvXl$f|lLV|^~M2magFZD#yP*W4PQD=dZ zc~o_0zQaab>NkixB}L1?yX!E9}gORc5Kasa$GZg{E39|1ExwhmLwxML@?Q_QaE=AEV&xPD9;)&)dgtiTI^J;gd zY&Hq*9*jBvaq;1->bOUDe1eYnT~54`KP+^lSfaMOC$M+Co3-KEGW6h_XbDNUw^8howidjO7@`>9@HsULHpsmB;lZc%J>UUvEi#xKL1|}aW7}HW z%6zQ!?h&J*dzoMV>U-OGu)0rHuguFmE!7Da7rynUTG5!?m`j4Z-W50zVZT=y3MMwL zts!ax5s_+CBe>A*o)&G&m4t8xjD}rr5ep^~dk&(_0JDq2o%iz{3}IJS7#CgmvQz)+ zg`rAhgpk~1gHna^ul;*}PR zWfUVW0q!nku`8XnDbTGz3%0$MD``q1=C2X_K}cq% z2m#uFl@@9*Ail|BmC2T^TRCYyL&8b^jK%f&;I;`GF-x;z1s^Uz0I~;R3O5@5vJLGu z6E}AVf^BiR1nb0$4*^1e(1#H_&7VjUb#J`4rj~R`m~kfC>eb5*V65hkR#!W>;u|JC zLM63j=%h8gPq1nPv4$Wu+qTJ(5i4iyBhSyzzj>Pp$LV@xr_wBJD6=ajUj~*RB^#yd zY~Hfv@Kbl_OehpUW&V(%YLB?)*@iv)qGHvv)~4@hfCz+_15l>pS`iHtIemWUH49-3 zwr$_OD`z#2%my?Bc|St&_eoyBo-I4hh^Qwtx*Fn0L&G$J!gwoqacLWxA_0}$uVZ& z5U0i0mVSt&P1U@99WGAc|2SO94v7=k|Imi^k1v2XRUm!?7#xO@LmC?76*Q-x+#^pr zg|g@xS)AYmcL@f_UEqyj0)T%NR6jkm)JS{^>zbbNkVQ0dAe?w@sqV*QMNLLU^`W}3 z?%X0H!v!5xc;i;Yi_leEJB#ZF?ccwzAOGOs;A7_Kt&FpbQu$Pp{9opk$sv~*y$DAx z3}R`$gA=-Nw)a;t z7@Tj@DBX;!_!hLeU|WeHC@>ET_sn7S!OwWE|F!Z}y_eg8&HcC))fgiiOc;9#h8gpj zAF^nsI@Dh?IYYSm0ZV17fM_~c_W;@=9=GDgD418Z&P)Iny97AQXoN<3(pcIby#!V@ zIKg}eo|#teW%A~8n6U_X1i6nFLNyRU==wdJKOZ}D06=jbm|o6+v<#84UyvIgm=@`L zB=4Ye7H;w6nF`uCV2Ty%0LDKh)**` z0sN;6{hrN;I>;e{`S3=8ttU3CRRD%Y$LN28;!fX>8Q1d_2YF=lD;*Hb@ z3=>wovko^Pbho>4`!+MBp>HLmJvsk)M-eG=0u*VByU&lqi*^vAFN`XEqkP#QaY16g z7=G-0(;K>0%`9(R6X6lPMtOGNT@N%h+~L`G4eL*sF!FGdz-@@3nmkkU$0{+nP-3UDfvET+bi9n}dX2$0?TpEr2Pmjhn*ZsmpM7&&FPzPY* zz^-C$NZ$eDS3sRG`AI-gO7)oaxpeBFHW-8f6&ZO^h`HW50X{di|R zT-T}Z%fFD0R?8CM7C~U$xgV0?qb|lRax_>>dSUHFt?qIXq-!OR| zb2#13wQ{sPrup4gGHsSV>365mvxa^7y@}K9^H&p{qEIJwV>c_Kc_X0v{?P5@)p_`wAtXN})<1zJ7;FDlZp4_^E> znoYiks9t~Y;R&u}6pBIY6@6Y$F{bLMxpG`hj!Rz~J|=s09ZyRLqDg`c2rz;6Wf?U`yaHh;3o^#&N|CLXALqUoGoUo zenVMK0;(NmjFzd3jnJWiD?8&XPy$mS^e)sC*cDdPV}bM2+&5ov`M0#S@po=*kNU!j zrsy(ct03?Ggv?gEZV~RwN8^PTMizYw%UwVV;RdY;5rt412I>eQC*1XRS>=f`O!5hYDD zbl01m*!g=n?SJ*U&JfJwhSY8*=>x zH^R;=#%%ltthG((gN6vBSygLmYmyUYWFngli z7W**Ifl8Ejcb5YDc?E{I7W05Z3Bq>iPY|iGV}6kZ(#fCGNv)q9F=2tPJq2XVl71f; zqs9Y5%{H~mX@yAC1jVns-1ka4ub{wW&@}q(h<;l|B{&s<)e^BYZiEClT5lMKx4+=A zZ1(S4cmq^i4TBS58wnJ1z~s3=f`e` z%7;IUb^d6Ywtwz6po^w7uuQ?pV*0fZ+CvKE&XLoSUJCZu_Y!~zIoyoviJuGII5dQI zsmX0XZDF8%n3tEQT@2#krTM+o@GUMhZFjHa_6Z>qCEW8qmtv~uM`$BW3o;?CSpyqz zo{ii|c|PIHV|&J6%&R>x1PiLur{+zRhPfCuguQ&%JF!XrWL1P&#qkp+5hot2ogyUd zeUm-M(z$Q?W=0=`@XoYYE0Ro}e`E%Z=oqKpJJCC;KZuQp(7m$ODy#X1-D(;ePTfMg!fx4#8JY|3DZ8HDFRW| zOfQzXgEe9eJ&poV@VF6;J=C~5O;)zbkA~zHq9Rj0R^_bmiK1`0Pq*UawD%5v?3~H! zZR;3%wT$|%R>o~lye!gOc|t72KbZf{lZ+}e-Xqa0b1!~i>k&Pq|B9f{YF}TQh&+<$ zkHHEzY74$9C6UL+UKqEYL@z50x3msU75i>WQ-~QTepqE;2D~+#ng%LeDhlo_$I)-^ zCZZuOwT_h#Xg{`n=gwESO;=Ogur-F?^I3mAd~6WMtC08cf2y3=F~DKalW`C;kl*kg z#o09`*i90w6YGoNqKdN;=vD1o#kNSq-t?zDjuHFi4ft6jg==9}Kt|>r(P`wZUvNy< z*v1IQ|Ma}@LHA8a3KMtFKt~MZjEX{nY#MC;>mb&J%sn0c_)(9m>^m%4=s zPpfd0JxNK~#oP#PW`mqp!OIbwTmyLl_3iX_&0oMHY}2Dcbme-F()UTJW{2j+4c7a^ z{f@kV0|?DJ4w;$5bkW(jnnqKWFvK}@Xp3ANjbmc+eve_6BxUppIc^~kySHQe!5_5V-u_)Kp9-Wi`6ik z7^nlEiQPkrWiQV!1MGqA4ovvRCAH*>kQkBWK5Yr{jH(#X9Z*pqdkDX-RQW>AtGJ** zd3M=%Bo`wcVI2<-j~=29`OT$^?;g1cA9p8${JY-F?upuW;cVJeVjFapj(EeA2K9_x zY-LPOp^2!9)&CK$%;CGx)5lQG6)kDc0oZr2p9M~^D{v$JA?WZdqN>^GP2NL!Y`LT! zfPMoI9}h+J^lRp*jzfRpG5l;mF5!yCNJ_N%B=_Lu$a~b^z^TN-Bm3SK?P3%MbCZ^8 zJUlcM2SvT#c^b(-MlQk&jE}uZ3_b?A(c!p8pd`22X#x}uAEpZwIXU??Tl?HOF%pr} zhER)Z=uCk_BtXSTx5Cy4;-NM2SQ!m#-KqoArEin2MO-a)h5WdSIlRd0hZuC6$31cS zYddaXzNv~OG6qTIWSunl*h%}4;CeELd3k|84&kRJc_b` zTIU)hxNi6Nfj-F()?b`NNW!hB-J)q=%5ViFNxHkm*$j^qT)wzsA;?HT<|O8CTKL1k zslnv45_6@8G3*8ex`clOdNq=@13Aw@V3Ytp>^(MIlEvc>gN#aM>iKe#Gx2Yybh?GW z*ohM-h@p~Vzt$vX--R_``GwV@r2}|mJ&2u}07Lv^W6JnAkjI6Owfon=FSNAt0PQIh z;(tU}YmWn6u{L{=2s=i-%Aa?kjJon}*7};VV`6pFN^7S1Ew&(>aACovk?U69 zVsGE#nvVLT=O#ydsQw*V?3c>S&QA7&De2Yrj!hxFAqk%rw#|>?!93Ly5{oQxWuUM>okN|2Xb<=KS11B7aX0LdK#ILV zsfSCD)2&((H(JEN*2dbgv|!R&B_{S2JX&J5YDc*m=yR7q9Df zQ6KbsTqYMLy4%yubFEtr0lIwoN^sqGS@&;`VA6hYcE?2D5U!aUnFJ3Vc1rze*uf0D zqFPlKi}#W=R(TFC?UNR|yLN;+d9PJ(OmJ$wkSY*s!?H4CwA8>LMyMMpm3S2 zAjclK7umg*&;D%rz`EjAwInJl@}rXSV4@pk}3k8d1wH zw8@{$08US~nBjqswj^AM!FWWMt{a7-_tHt}8nF}&85tbeO^C99@_HVm=%&rs_ZGE( zodI+Cx^xK=&B^)aI-HXqm$jY8Oy7!KCtQ7Gec6vIH&Z{P?iiH74KM6uwd1xrHbk@* ze?Z>r-qOLaVnBT}&_NfzGk&|V8U0-joF^&)(R%;?1Hp%46J@)48~#C~6+VWAu8XPd zHthf{OLSUuZND6nm#=G|cxCyFgfNFcLdPv}_Fbo~M4SeK@LIouuZ7a@$syY>P*Un; z?Us=-L}|K)O?t>hIpa>5v+g?2EYBl9f29kuFSd#zjdfEn|A z9vOMu+1aT%qN_9irmIjg@@V3F!zGw*q><=2949vkMruM{L=%r=w;5 zW#pR-ZK3Ym*64m~?bxyVeEj?`KF`nW?-;_&okk4If((n$DD({Gj&5#TrQvkiB`)*H zR3g@dg1}4!_?ZlQAqmceyt&J)L(8PZ?Km9B&fZ$X>y7?N_k))>KpR5~oC5*OCXI-oglMFeM~4}9~^k)8=x z{dAo!yF9a{(%G3@cR+8i5nv9YE!ew%yTkl9;D{a{!;~HbvH)*O*d!ll4QP7E;9153 zNth*f$%}c2`pMb=_najB5Ma2;Mui^>3uG7D*KVU&o8{mx0OhFyi`79KH>PnGPR=wO zwNywx=vJ)?%gl60xey6{|ALn{k}N`fYF&o_7KGFJc43Q)qx&8|+x_MEqmigX7>Xc; z8=qf(<6~EJ1m#yb^5i~sl>c_gHhJ`}G)+qzm3@axG5#cw1%2{6Nd+TMJ7&adG=qti zzCC#H?(YJAqL~$Pt95n%ClJvBJD8DO$&(C?(?6h#b-~bSW{#bE zWXUEN597F8TRPq7eZ8M0u|_TzNd?t&q+5f?$fyw({%eTaRK33Nzi|@IPy*&oizR)fo$R{Hjd=2%X%B|CQ^zo<613B;RuiYKV$2aGr z)D9J9sF1Brk2fU(Jn~@f%)7m;TIGBLIh@OOw^q<$AmuX$^Ju4#N)%8ea zy#!WrYThV?i3F8g5F$DZLE4vAtmaq2_@smUPNLCa@o5B(jK332mdj$?-Yzb#1%J#= zCvR`$BmhKa;pR@qfP<9-JD|ous$(+{0Igw{1?|M&{N;kRzzs;Ub@d$FSwF#u?U-;| zaVf5?*l{mb!oJfiRv_WJmqjvnqZxWUPzN@}8j}uBx)hcwS8o&~pD_S7t>jnT$z+^1 zxr+tWxD_&i+<4}^ohfhDY0I6#_T=odo-x?C;x@T|=|?Cr9aZ=4%)pUSm(bQCIr()D zZr!|jVE(B;GNDiMd2LsLL-gAx7Y_)zZ!}p)OS_!&dM+~hb3d!e7xFtisx(>WF*B+? z$?@-7koW?EnD_+aPWkUb%m)YRy9O$Y!D2MAHxWs0e!^< z>87*!*lwDFj}DWrKt{0eSW?f_QIKHEmM`b#7Ii54yan|=y>bkuXG7d1H@-m0HcJ=a zZfw4Gts0M`40OCe>^~h`xedA8u z`E$@*NMnETqsmvi8l|m@Mi~q66<2qly*ajv>bXo4ttUHTpX z{uf%=)qoOla?`DYX4c>`y$9PsM0Bk{Axq8NWh^X*G?!lmo(*Sek<2qloy@jZbslLfLQ|w#>ZF9qDS_seBx{A!?dyi1LJ#o-rUEii-_km_-tm}(HH~a-)JUub ziiS`YomEf zKVp}TW0mZY>%P#A3>p6^+~&w_OqsHzC1J{~?zlu<3SXgZn}PjLH5?H6z`2h9{D?Hx zi(5B8Khp_1PYEt|QiH&J8_8kM1i!nmSLB^LL-W$eX&G`teyIz-K`gY|Yp;B0{^_|5 z41s2=iR2tOu}o+O)(4Yp_RZ(Fu)L>Tgd;mcBO0t2hxB>tps)C_q<+V`vtpQmei_CTRuM5zapYrp&0z~ z!>9foDi}J2=Ds5Q(%4K0;Z7s{QbMYe5AexU~@EjuUA{ zL%!dc`*zAwsRog4ndt&4o!qwtfo;WiMpsa70|88gt$YmXl{Y|M+d(;@_NW8x-R@G3 zMdSzbdtIaCmVP-SFW}L;a*I1xy6kk$oqLJ~GzX8U6v^qMI5*fnHvWC5eg|&V82B(# zK&+18VdL%V96o$FcL9B1)g`;w|k2Vf<1ASdQVOj9!Cd+|+5!>DdE_*eH zc=8J`U86ftA>R;tR%@Q2AWk==7O==lEX)+K}pQrA^#Y0xS zVUbY!yD=hY1VGyXMIM(qTJnQ$l6>l*!p02y z-%z!1cc@|EQ0r->x-sqc!i*psc>!PFB{Opr*t6x5ofEFuywu3lZI5b}P9OJH{K5K% zzffJDp!<$spY6+ch{a!x&kPbVu;!_ReOBCQ(WO?s$UNdeM&C*9`vTiVMY9y1RmS(m zq}@s>qE8Ni$0n`A*fZVW#)Qz2$z3Gp+Csm)Ghh9lXdItFyFO6M4)E3KfEd~6f2JE1 z>!1L)k!9L8X*2kAY;o$k{~vp29@lf;{`)V+z71o|HbYqoS;|tvScb}yR$7fUl`Iu) z2xH4&BqBwYv`9^q_OcA2DWpXdSyS0b5;@N+Gxt4%`}}qOJRWn-egEzu-|y%1eqYP$ z^}1dcYYLQ0E7Lxvh*l%-6zd^%bf)6)I(_Ph7r#KRT10B^8!pS$GXu5b{%|EF$(SA6>5|5j z=QkvA=fW9mc2S}t5W7@ly}`6835Cmv2(p5pOSi=RnB=FxE^e*7BbyBPn@uSDX76Vr z&=BCtJbKi(Gy1j@hiqo|S+ymu)^i5EX!Xy`m}8Cd>6})G+Zl`eLbut0h~RM}@Hn6} z?7KE?4g)njTJ^DV6@?I68V;kef5fs!BUA?g%SzPB3KN`UH@mErjCcH#1;Cg$CO+6@ zk!&if>bWFrPB!SfTTmP-kW#a>cRQ~Y6Ki(Kf+Fh43$vozSS*6)V}NSowcmcU8VKOc zdhg$_yBH&!G@&i^w(5lw^g+3FP%O1Q2>Rz0Q^u~%*Volua^r1J>VCD;r526}YLyO#Om z=u2hWaq9b*`s@bOJ|DO6X3w>!gTNTAK-{NP>TqjJBP~lCJ(j|g8Z7c!RAZCXPIY~K zckDP6A3qH765GEn%{#&WuR3(78ST-zm8N<-_}+xzaP$yOTC~^&tzNrca4kOG6uD&E zQ%iICU!yp)6MfkE^vF4@V(5$kEK)~9b185?Yf9DLjHJBPrSGu&*sT0iZ#?Q;1_@lZk|G2km z@7`As4YCtvRLbI8FTV!ao)yP(Px^viLjBoqmrvf>4B zhh(^#%Alb{3pztXp!=NPe;%u8du23x1W*&Bh{yR-lS8u8l=#lh^Qx6fcdmS$=<&~b0ujB z&6$ztab1QfSyE*~X^F{sHZ9f8-+n88yW9@Z5oPjGsPwq4(=^6S^F1-;*L~3USNR+j zKv%>3`%8_ByF-(fE%T{fWRnR-aC)lAUDHMc#s>^k+Tza)Eea3q^a?M&j+FknVD1Pm zFY&49hao$hzd5HIhV=4X=AxB{fCbX0Q=Phy$n9W2x0d`){RuQRe%!c6Tv~5Lc*fV) zEoD1+lV;8Onq`_SiL?)=BDP~NU$%`>DR;St+*96XE`>jeWi{Fw)^<>33D`qB*emS0 z)++|PB!4FE8xweTcpdMX2~HtsKucpQz%~Mwg^$9PJK?M!LkTR+dRbX%#)k^*T25zq z?mX3t#lg+N+L4R)$(Hy%duG_(OAa6XHoIQW9lBBg@0!i7bJv*LvRr_dJ_jLN3`b3&h=SVneyy^X+7+KaiP7@<&nWO2++^&^)m*FVNg0WZR`Haf@y@ zS*PB-!CKlz5U}3rrYc4JX#Y{GQgMS(jhRB4OEGR`P>B+0A~X!-iWv}W#)fU%wy~Xy z--ANT>~Z2)hQehgism_92B&n_b<5#9>mc0mm{R$ovNE43 z&eueVf(PAJlERKKw?i_E!VT=>mtCDPqnqI0X!j)M-AtWw0`>@SO_%DJO##Um0-+A}nHXoqHYx#2sh z!9)1_OzkSWQ%w+;LV**Y;@JbW=8%)|f&=Rz4Jt~nO#qOOS{`V8=-@#O#;D0ClQ2~G zHNI{YX*<(E^|9A5G>)j#uFo~on$JawPs6#u{q>_euXXM)x~_7bj;iG1sI`m@>ir6IYvS=X8+)Eb zeod|&$gf!)wXR|0x&~Yy@7SUSWk-SK7Z%1(!|6=Iw5+I^Fy;p1V3mQT&Eo!ba^{nRa|B-_Ux>qTqI*U7;WMMItY5b-jEpYR z*-}rx+-965-W*6@5Tp_icgspN67?e->2Ys0 zLQKXb2B8wQD5UbSNmZb<);|<5?~XX{H2GAQtJh z?{8_qH|O`U5eP2fAmwxzVN8xeY{Qk2Vdc-p$36+jsd!b#H=X(a&XX5M?isSsJRvEd z3 ze(A1Igw6rub!X10^KFY`rgEa*u5e}APm1u_laJ<_FIZ*!PjpXVmjq5+!8uRN=xxN! zqWK8M)5Tis2R;N9ip;vY^W5|z7TA9I%j?FS zcaeTRZMt-Ma@CwvqjFv{^i}g)Uv3z${loF+Ebe4*uXtC zS$0cp)~M0*P>To5Vz5?K?^lf4&Rxq+W-Z>={y=Xdq7eg1-dkb;n1JUB?WLLhV>+cy zTP3BkB`a=?`}!hc-_pOnh1F9RuD>&tdo2jcA*_tih+;qV*Z#gs_xpMlkhzyeonVXG zjAMDTW}_E2WGVQFh(D{p{;j+QS#?X*=+KOULp@(fB3**h{OD*TJo%xKey!Pa^Oau) z>mf~80o<+=_(G!Vi-R}q=@9!NIAl%H)`1YMQct1ivOb#I>C3;@>pOC!%6V^Vv@ZK=l=s%}Q?houhPGbxeGmr;5Uc#9ynxt^F5HPB@F z7l+OuH_|#K9EMGIUHdgRSr<+2W?>3(!;os@+6N@>A&3j4T&1s|i1A}f^400r+xP0- zdm^ox$(s=hMQr)a!k-;*LJ^+Aj1JP_tJMr8wtXEe~T1Rpm_*PYtK|qfqTy z=Y{&aUGpZ+4xiV#eoqFn3Fot4Wq~A9dtjdjw*Wr{;h?41eeDUA>b1kVJ5GL%fgvIG*eg^z^P~*MEGhAiLU1huiz|#f$B=+oBhb2#79l z*t&K4r?p*d*M*;aFjAoycGhEB=9wymB`-Nx89$hdfUVTa(w}0j5Q?UtjJ%@qaL9t} zafm_;7=Wd2KdTxVf0y%9@dtsxYHJ)5;{WTzlodkdizp#HshMK5&iPM&pI%Arjj%}1 zXY|X6hSeGR8yzEZ3?m|_G1*uGJ!;EvwLE>hWj0e3*3tOG9J5TwE0A>reqoFLGE@AFmYLATd(hUW-``r_{{!$_M^^r?ATFC6q@%SIy&FPp9JztTeV6e z31FQmp;|WDpFiXIhUp3y;2*PhPGQf6`6&#RzxY>Xmd_b<64K}z6|R}XV?d)TEVj0p z+%^GCi7vO4F`ga3AlMqs(NJO~@TEe(=PCvndot&dfsM-sishJaYdhVW$vNnM?_cLY ze*Wl%vbhb?Yx%kJnD&H&ewrDLe|mJ{+ic_d6?H=AP{!l`!-ZKs;{E&gom=wAcnTNi z47!+}KEd$khU|F{$4X*CaU#!$)`EY@ax&RZmXUGv;e4~SuN=Tnf3Y*_g4VMs0!(Zs zwk0s;ET#6QlMQ`3sJMQBz9KZqbxT9}t^fFCU?D+o&m`|(e~s8TEBv?U#HRoFxBvaG znp4T*)Fa+ovddsNOZ9J1G8 zh=r!HaqOgAtN;Fu|M+jAE5Smq($>%sSvBa3%L+E0z1UJmNRb+qdL`nno?5rBhv*;> zzCN@a#}c@O{6nv{)6%2@D(4@6#ee>*Gx~H`2z{wEKr(nm_Zd>;@7kOB&~Pk3DC>Xdrvav4#@5=uOtbOVKdx8zFVjTrA87OA*E3{Lqc4MG z?H?HbKOTMWHD6ECqg#Fbg(|%N$JaFY=Kp_%zYk7OBO{mgiX0Vik$h^~ox693f{jY6 zCd&!|j+8WPgQz8rf<~}gEDD%JdB>)1KN{<>zK}T=AxjhWNyDKU%aW{sF4*;Molu!_ zXMLwO-+pV**yOVe9dz>hs`|#G+3d>(`h$$F3Ime}>wB}BTxZOr-CU)qSTSH$+5?F*LT#ZC$b56-Zer^eOg+V}ve3i~BE)lVx|Ea;Z*B^vjDw~K zL$>7=fMO6~?mZ~``#b;jp9Xt75I3I~{%rQ`-b}Wjhf_sLxuC8-l{r+5EAO5$3fhPj zV;P1iSGilDv}!S?)F1+Q=~UzxS%YK1;A6rwq)Vr|nl6##keIk{n2dVZr`N0+kw3eCO?s)jJItX!)W%5&$< zll944pQeD*N;3=mmXqw}1pZV;Vj<{$_Qn(nmkxLIPff-UD4$_Dc(+``5=z5gUFnYpD`km1z|P@OA4;cMAM4~|0~kZ4G9#|;>G7<5G&LMQ`pFAi z&q~=5D@n9LvkpNtw5H2-EAr4f#W1dR%sRzfbQWO2VXu1h=%LAEpWvjtZ?oysr?)j} z@~_9q{}I}<898T}E)WCj7eS~hj#Iy_)vB zWHx?6@k@W=?E)rj$X9AEtN2DJ&ilZ1jj1?TgIUn>5v+riFCm|d4Qk;65Uenbn0^2- z^pLk&eY*y1yx-8(eWEnovmR=pj16(kA$r(Qr5q4p`ctwV9Bb=g6&op34J@?@FrbvD!ft(|NHe?OQo|5$2w{76B zuc<{PAH<{L(#j?ZyC5P$7ZzTFBK`)fgZ~=eanu4(ZGob1mVXi1Lp!OqPSr5^amDCk zvDk-a1`I#(ryD=jsblh=)V!SCqLB~D$c6iw`tm-`mAb-iHnu)^t039!gthCP`U|iB zejrglta4>d)%?i;!=k5u8xBh+1dis?`xE)hf0nLf4`b~@ZzL2LmL2>Dd%htzZ7#T4(VMy@Fh0$|Cscn_8G&nJ1Tq{wx zpl9jwY}45F&8{-%+qP?0>qr;L9ccOu*d~$9f&iAvPMb9ae1D&NSs&JTltZ?@(fgpV zi$k<%y!^8WsR$iUMbV!hn|@4=gqn*7sEz=5$g<+{%CCiNvv}oooJoS=UBES!Mz}6+ zYgW(I1`Lz)S-9^u+DMAN1yn^lr?<77!ABJ`s*yDbWm;rUL{%B*A1q_yCE9Qg<{WP+1y|_eTaFS<1x@%+69sAG3si_ zht%R4&=tYQ${F-l26vqy~en{nB`|RnUa`sut-LOC!@Bo z*6#oLrwn@9-Lvtq?Qki1$v6tdJ>>6u#80|LVhL<;m;Oa=L^(uCU$a0jH4sggZvrDH zylw3=p6dfeYFsoosM)BG?@!1k%=AjGf@o`#R|cTq(?{a9tH5Dd;s$Wb)WPEs-D-U>b10GpI-lx_nf3`w4^z~`hI$0 zUu0E-5cUQ^h`M{=gVI-)7=% zl^I@8!Ce-Se}mVn_iMLVh;vyW92)aa=K0ficBywKL)B;BzDOoz)F7A8QrTSzTFv;2 z6#Fn2Cd=L8wsxrC?8KulkmYzg1sv6l~^ooJ z;V_y4b3pO*{rOL&Qw~FtGzF%V&m-h8A9_k$tJH4{c9L)Jyww7Q1`=E9c^lnJKdjEc z{$7?1WXykt-CJypXNVgqO>9~2y)R(EvUWbRt#?u7BEk(PY}Yc&*a1y=KB#ZsN#tHr zZe%X?Q2I#Wv3cgNF|G~e1_-t;yQRw9oAlmbUzF_SKL_}>e_SoeY1YWg{TVsEe_WSg zi${a>h-x$0{ZCGk-|+dQ4{M#CpFfhIr$2a>s?gbCd=Ma4P3T#QPbt*cQFN3lN|%LC zI8R*_><0v#GI$zbL*A&G7cHrfv!l0?M#zzx3?mj1CG;juia0-i-SKZz$4#cyEOAa| zT51ud}!17@-8FLCYKlbUUvR(E#UBblU^JgXcMA~=_m_B}! ziO*}SIZDZ9f{Nd?$8>c8jJd4b)^lLDVJ`mX1lVH%EVOt*Ed9t7De%Qo#HH9i-Hb>Z+}w z5tH+TV@G&wbd)<=p!3*=LS5d&|NNlQvTQq$bAd;50*?qU+T4EU25H<#j-J|KB41&w(L+=8$Ly2C-LLrOl8&8&j<&{$~2%YTg9K&)7 zwS>F==VnDeLSwk>?|Mm5Dio=Yiat4zO4g%dH?@t0SS5_HN5pDEVeH~j z1F5LiCY8l)x$^x{tBG>mjIMD)ITN_H3^JN?AeF;txcpg6CK5upZFkGt6_V0r*Verc zQ7vb;i)A=N+M)iddeXZ2`1ttJQi<;Ae5XY@GW9Pig{)-_;K7{|j&-jkl|)a5^7b0Z zQU9Azp|zP?Fce?MNj-0wD%u=A`9tpCT7aRbBPu8@@xfb1B*dTkFfpebne8#;L@6ti z-@bi2sKogEk~+qPBp+EgUn_!O5a4Dt?5rdXylby8)V@g6F7OI@2xyNW&M=#GuC39{ zuRKtf!K;nyUn(18xZS{pWMt*2KWWlySF0RrDl~uX<&jb?Q_d~8=%eCj70?A?0X*i; z;p#9VP7nVSWw2nqpfIk79yd8*4yp;VqPgVmIMJ@EnRTdwrts%|JWYNz#jofGdu=nT z=^WdmKsBy054n#y(X%HAQv@PvM6b>D&5g9uc6oe#8Z9cCi+r1!m+gh;XV%2B{=Pb1 ziQyD=?(9*FLHPdx*`K63iv@Kq0EzD!UV_tVsPF80&;LZmqv2RM40gGkZE_w7Yy7g< zA8t=!RmRvd#zaq>++KX{W?A`skAGiouN&*z&FyM;J2eFiRL|Kfsb|lg=kLX;TgDeJ zwP3?wdilX+a$w}{f^_ZFqR=Q4Fq3z#MM14z)p`=0!{IPoECNXd}j z^h4ARnV4-CWk>p#a`xK7eaY1rbRd$;=o_sChq!!npC zQ+8)Vw>-*womJfx20zYSr(UmaUD9KyYIuXu3kW??0!2`uFSTEZ$V=W6&5%&oc7^fL zxM~D3g7=8K1+#VxLCow_N(q+Wyv7Ik5s4?NRhoWo$(NC{`5pb1*ecn*fBWJclYe>+ zuaLB`CZX)b4biG59Ak2;Yt-huoP@UDep~EpLA!S?a&uO^`Pq(#u6~$zf-g+fo@XDG z(i2>(%wLWlQUWD;LXWP_i^NgJ zPKnz&)H8u`MLERq(|)k@H7u!k1Tv-8YC2XwBB~FfQ`0`Po2Qx0BhtXC=kmTr3ggjm z3ut`&3`;N!NzUniPZ54zl<}06eZU!V+#slOAZns05Muu9RLIn(J>94~4i>R&>PmMd zhzW*45#Y>Yz7EMm1jFT0E=8g1GmPc4Sm0EzOzfd|{hO>JnV^!5eSq zoN-H--My5V>GEzjker46?nyoU?1y>C&X;2@ne$GFW0nN=VC#S)Y~iE`N8G&JZOO^O zU^Q2y+=TCXw9CSA$#8Y3HJ)1jqLr^YK^r8b)M&Cd>NnAmAZ9~9Yz3W~OJ6>BP=a4| zf2GubfwO;#E`IRW#FP%Jezq1rpa*@8EIBFmjgVGb=NrBPsyY4OBxQY`AM4(%M{!IWB@zA6qh`IjexOF#GeXA;mf9hU% z&<3}^O^xtEntE({^cdn(?kWZ?0VJou2!$G?#}T<_tv*q1)$Pr=q8)yIA)p`j)VIM| z_GnZ@Yul>FPp+O3s7*c~IY&-x8TJZAY8ahuQepcDYjOwzZ{k^#epj!mrHpUqHpoeyv>UWYai2|2L1=Ifr3n)A)~;O02>!&SKUrP?sQax~EKnh&3)2U7XeJsmdFAku9){uhIl*7Vf(l}RI^%5{M3znD>;vvS z#(o7CqJJEhRFv9n&AVyduGeye!Mu{uaMTj_;IEH9e?fStz=1KG6d#-=1*L4K@LQeq zQg#@CNK-4HD427i;Pu_j>RRXB-#iWjyt`oAx9TMVmB^*JOK5(VW=4ep*~FlJ4!Ma^ zi06SAIagL}6g*ib7kU&gev{+0d=_ga<@|=7PN)U7?;@17Mtkl&Lq-+r9bRWKiNbSB z7j091a6hM~zudIr^gu zUc*zu>J-|GhfM|Zk@o4$n>EW}-(3V(Vwct;glf`swo|vZyfgdFqpM?))b(}QO80=g zpiQ@K>bkJ;f}sgU7xId*e#vAkfj>ht?T8Q?EcFX;bn4|HYj@|YDGwn$b)u@ zHZD&dwg46F>-6+v^zxFQr|qilmOg60fHgs0_gi?|_usSAB1FSaZ}PPqLnmDw^R5=k zmsFA>rtICb=goQb8*Hk^cbK}fs7O1>c02;qGKb9KCd8s$2(j2 zeop~n#4h^G1gelnqPtw$-SrwU)vHd$P3}E=7KN|GjVIM{_W4t!lZKj^VOvB!&dDAm zTE*ZG%$RMCh@RfpJl4*nrUY`n@9Wq3yk_m>RXbHpApGwwUZKk~9FpWTUeiWKtwc?z zT*`sX1J7x4Y^ttqpFvac%k+-u(+81vFme~0^ygs$V{pDxx7LZjkG}N^Li+j3Qvq4r zk?tn%ZgeVF%-lAt%40dm3<{oQf&bS zmI$7i+kLWcTuG>)17Nn<(sa=4g`;EBaNhO35JHoB8f|w$BT{*N(-vv+U)EVzdO1Qw z8B8WlSZcXFFfee{nC;NSC^L<1SAcj(dx?iz_x!GuEf#}zeM34Kk`8@6!}dfOKc3!b zBFKq zUV^YfjRCRzfr|KIYKvUb>IfLV;C~su2b&26@GCAn%AVZ zP%MC67&6tB&TgxuANrld7_so658Hd&)h$*)cR&ND1uNpSZiR)M6f4QD8Lhti?hu`f zwy`#Ir<{+=vuD&qg66l#l_^C+j8U-OPKPWcapPqrhN@}Aqb%2vCs5PSx)%hT$oEX3 zY!R8Y=#hvcuX*=cF2|qVzqmtqq~=|;jQO$odBPO~J*iyN8(dQ|7$l{m5+k|U_JTUy}r}LWkCzLr%ey>b7j~0$TfqXYFGzF%s_n~VS4mz1+8mR!)vY$ zzc|u!8)o{AgyoLGGKEPcGm=osy#7FuQ*|nQC9yIv6!+LH=j_R?BYtgqc?QGFXJctE zXtOJ3DuoezTI5I4nm~}en(04^O|cz{CgF0=RzMdT^0RezU(k+^ z`%H|}Tl-Psiy+>yJx5M!aj_R(aiaf)j29^_C|7=tX}Ga2Y=cZ%k=+aZ4`D#KZeMCP zB~IMah9#J}7Tmc3W$ZfO;{E`)(bbGKz({T*Q{Ov1&XDd>CvoM1ox~CFkJAqeb3?4n zkC`$xU?ROZ=K#OhFroBN4&Cx@qHvT_CWSp4LrUa|GASE0DR5~s-=DB}g1tO=wgN5t z>zPW=?%evk=6)Phl|2@y5!Ajt)$efQ+c2YYa8SKEULGWHD5cV}l5Q-Dk9*cQofVz7 zG#)MTJ>Jdfd@-S6Oz^0w7hb%scY_i)WkSCCG3J6N)ZU+@Y|lN6Z_4u}D*GI!Rj_8! zVC%`c3cX_-VVUk4QbNyo4A>u`zw7X}UTGGXOdC}o4)3aWSLe%U&`-n0ohD@?Tgb0@<08+iA;BEmf-Y!7z;~ZhOAkvcc#5x`+BVsSTfGeV_up zA_53AYq#-qzRaWjHuC-RvGf!dHaD(wDuvM#8aH*oqPDv`F?hy0m{2c;il2Z0)J)}FmDWqzjpQNTm-p;gqWo+`&=ZGimnapOnbmRknMG(BadO#$PpMuO zULwlxsVfr_@;7p~-1>A>#M@X~?|WDIZ2zju&av{CIFtcpO?|)Ra)5|0Ez{&;yfXOO zS#o$$>EiV=f*<7maL@eL`#-*)08Tz`brnTyIELJUy%ilNqI{6m2m%0+aSyyW{tZhC zyo@TC^%|>NbN6w*8}ROeQ*X$AAJ%uoug@GQ<<{+sbPj%ToS*HzWeY<}hQPsbck6iF zL}1Zw*!E1=dAj9n+Ug$MW4mqzj2a!IDa3 zu1eJ`GJckJlYm6esdy1jWh!)g;v5M`&0Bypy&W*7?1Jig!xdkumF< zbe(wD>Z>Px*Y{F~iA}-GLc7>9Nu!{zrE86!A0~5GX^p9KZus!W6i8hszVt&Zvn|p_ ziKLPFv@mqqA!jmh`(Xn$I6brlhlHo3J+t6uNl@adj0k9_@TRqLai>d)>bQC1#w#*t z(XgxQsR?0T z_iNF0PW91V{xk>mPSo(QI2zn{VBxvw`@8k5XVBqjZrN*l?`z7_v%gHHwVzN}64_B+ zLPq*&Ti0U%03O5Jju1n&{8mkVpWc_pZy2n{!|QeE>Z9mb{iC?mNkcoNq~_L~8Bx|c z(%Q@4DO{A40YmaV*l)$?k~Ra<7kcceb83dnh$8)sTriK3j;q|K9Hb-i`Fuf7-)gOy z`t=W2S4t?fK0`_bx&pFv8{TR}FgG!EtAW?WIZNMZ0>8f*?K29(*wx`lwjBk~vZ=~t z*P{;=<%`1+B>NQ#Lx+{y3Sel2O#>B3?5Cz^GXcFAwj+@_IXUm6<(b2h2nE`5N1esv z+!m(Z{~`rA9H=_}4GA{aYI)Jz<#>#&V;KF-tnRLt*wj{Hyn=W@5L7{%S(SLw#XK4cp%+8A6)0Rc*6dRxD7qm_-=*C{A_3oa-=Zhey=CRkPy? zmu?oF8m3V^qT*1Pi*@VQYgH)mE)QtjI-A0Fynp^0T`=a=+{X9@%ujMcVhfG>VwRGt z9$7XZe3VO>FQ4k%txeuB>*NyD~y@oYo-7RbT*PL4=v zn2OSmepP4m5-M96_yYXM>{fo|z*@q4prhS!wgT(Q!JvjCB$Q3bg>k;VwSZ2 zk7Q+YZKmiej?Fmn6PL`fU^dsvoqdYZ)j*si&Yi3{DJfiBJkD0&xKK&zFaFwl&#upN zmBCRufWnnp6Uh)w0!I;zEh^V85`ntNuJ%l7k-Hz`93;^{9lAPu5B*JGxcXyX)A-xe zAd4!~{Gi>2$C}b@IVQjOiH_mKsX`DR>j2l_EHOSJ166CSpQ`h=c&!LKJiFApLcxP? z#LM@W`E*eL^6?e(Z_&6b%j~4fO@D=h=v_>ste-4iF(bb6E1z9bO?GcEV)j)r7;8j9 zNS_rZun^mk*4})>43@g{NFALbwO+xePB1npNd1O#Tw|`aG|XJu#nRnrCu)xa>EXH znyUTV5CrV^e7WgnCm-9?Z<1wKd6Pzq->0m+H0G7cmz8kSUN-H{f=H9XeeBP#{7_*g zvs-NQnns^%d8-GU=>>m6l3(TOXL45YL|7irvC?H=s%wVR^Wq;j*mr`WK|1B$w`r5( z`JNK9a>I<$ODmw<9JcPwoCh8@yw*AZ(fI-a)k;6CI7ZbkDyOK~iU&8y9-1rPzkPoh zM(QXX?eOP&};?0^xI;_G7w@f(Bp?ve?)%0DI%*eSGwaDMrMLTac&cLws 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�}HX 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 yFK~2?O2q8bc2e3w19LOAPv$YrKEI& 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

|?E_9uR(@&8Lo#9;3A+(2`Q>Ekfjdny#X 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 literal 0 HcmV?d00001 diff --git a/previews/PR873/graphics/block_montoison_orban.png b/previews/PR873/graphics/block_montoison_orban.png new file mode 100644 index 0000000000000000000000000000000000000000..48d4d754c72b7a064a927bbabf00b8ad366cd79f GIT binary patch literal 284447 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